Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase to v3.6.0 #89

Merged
merged 509 commits into from
Mar 23, 2025
Merged

Rebase to v3.6.0 #89

merged 509 commits into from
Mar 23, 2025

Conversation

dscho
Copy link
Member

@dscho dscho commented Mar 21, 2025

Range-diff relative to main (modulo MSYS2's patches)

I used this command-line, skipping MSYS2's patches on top of Cygwin (41 patches in total, they can be viewed in the corresponding msys2/msys2-runtime PR):

git range-diff \
  HEAD^{/^Start.the}^2^{/^"Merge branch 'msys2"}..HEAD^{/^Start.the}^2 \
  HEAD^{/^"Merge branch 'msys2"}..
  • 1: 0fa4f1f = 1: b5d23e4 Bump actions/checkout from 2 to 4

  • 2: 3afd831 = 2: f243132 dependabot: help keeping GitHub Actions versions up to date

  • 3: af960b4 = 3: b5c2356 Do not try to sync with Cygwin

  • 4: 0892beb = 4: 97464c9 Handle 8-bit characters under LOCALE=C

  • 5: eb8177c = 5: 59ad9ab Mention the extremely useful small_printf() function

  • 6: e030390 = 6: a08ccc1 Fixed path converting with non ascii char.

  • 8: 81bbbde ! 7: ad8042a Allow native symlinks to non-existing targets in 'nativestrict' mode

    @@ winsup/cygwin/path.cc: symlink_native (const char *oldpath, path_conv &win32_new
     -  DWORD flags;
     +  DWORD flags = 0;
      
    -   if (isabspath (oldpath))
    -     {
    +   if (resolve_symlink_target (oldpath, win32_newpath, win32_oldpath))
    +     final_oldpath = win32_oldpath.get_nt_native_path ();
     @@ winsup/cygwin/path.cc: symlink_native (const char *oldpath, path_conv &win32_newpath)
      	  wcpcpy (e_old, c_old);
      	}
  • 7: 71f006f ! 8: bc48a82 Make paths' WCS->MBS conversion explicit

    @@ winsup/cygwin/fhandler/disk_file.cc: fhandler_disk_file::readdir_helper (DIR *di
     
      ## winsup/cygwin/fhandler/netdrive.cc ##
     @@ winsup/cygwin/fhandler/netdrive.cc: fhandler_netdrive::readdir (DIR *dir, dirent *de)
    - 	  tp.u_get (&ds);
    - 	  RtlInitUnicodeString (&ss, bs);
    - 	  RtlDowncaseUnicodeString (&ds, &ss, FALSE);
    --	  sys_wcstombs (de->d_name, sizeof de->d_name,
    -+	  sys_wcstombs_path (de->d_name, sizeof de->d_name,
    - 			ds.Buffer, ds.Length / sizeof (WCHAR));
    - 	  de->d_ino = hash_path_name (get_ino (), de->d_name);
    - 	}
    -       else
    - 	{
    --	  sys_wcstombs (de->d_name, sizeof de->d_name, bs);
    -+	  sys_wcstombs_path (de->d_name, sizeof de->d_name, bs);
    - 	  char *rpath = tp.c_get ();
    --	  sys_wcstombs (rpath, NT_MAX_PATH, nro->lpRemoteName);
    -+	  sys_wcstombs_path (rpath, NT_MAX_PATH, nro->lpRemoteName);
    - 	  de->d_ino = readdir_get_ino (rpath, false);
    - 	  /* We can't trust remote inode numbers of only 32 bit.  That means,
    - 	     remote NT4 NTFS, as well as shares of Samba version < 3.0. */
    +       goto out;
    +     }
    + 
    +-  sys_wcstombs (de->d_name, sizeof de->d_name, DIR_cache[dir->__d_position]);
    ++  sys_wcstombs_path (de->d_name, sizeof de->d_name, DIR_cache[dir->__d_position]);
    +   if (strlen (dir->__d_dirname) == 2)
    +     de->d_ino = hash_path_name (get_ino (), de->d_name);
    +   else
     
      ## winsup/cygwin/fhandler/process.cc ##
     @@ winsup/cygwin/fhandler/process.cc: static off_t
    @@ winsup/cygwin/mount.cc: mount_info::from_fstab_line (char *line, bool user)
      
      	  mount_flags |= MOUNT_USER_TEMP;
      	  int res = mount_table->add_item (mb_tmp, posix_path, mount_flags);
    +@@ winsup/cygwin/mount.cc: mount_info::cygdrive_getmntent ()
    +   if (wide_path)
    +     {
    +       win32_path = tp.c_get ();
    +-      sys_wcstombs (win32_path, NT_MAX_PATH, wide_path);
    ++      sys_wcstombs_path (win32_path, NT_MAX_PATH, wide_path);
    +       posix_path = tp.c_get ();
    +       cygdrive_posix_path (win32_path, posix_path, 0);
    +       return fillout_mntent (win32_path, posix_path, cygdrive_flags);
     
      ## winsup/cygwin/nlsfuncs.cc ##
     @@ winsup/cygwin/nlsfuncs.cc: internal_setlocale ()
    @@ winsup/cygwin/path.cc: symlink_info::check_sysfile (HANDLE h)
      	    debug_printf ("symlink string too long");
      	  else
     @@ winsup/cygwin/path.cc: symlink_info::check_reparse_point (HANDLE h, bool remote)
    -   path_flags |= ret;
    +   path_flags (path_flags () | ret);
        if (ret & PATH_SYMLINK)
          {
     -      sys_wcstombs (srcbuf, SYMLINK_MAX + 7, symbuf.Buffer,
    @@ winsup/cygwin/path.cc: symlink_info::check_reparse_point (HANDLE h, bool remote)
     +      sys_wcstombs_path (srcbuf, SYMLINK_MAX + 7, symbuf.Buffer,
     +		         symbuf.Length / sizeof (WCHAR));
            /* A symlink is never a directory. */
    -       fileattr &= ~FILE_ATTRIBUTE_DIRECTORY;
    +       fileattr (fileattr () & ~FILE_ATTRIBUTE_DIRECTORY);
            return posixify (srcbuf);
     @@ winsup/cygwin/path.cc: symlink_info::check_nfs_symlink (HANDLE h)
          {
    @@ winsup/cygwin/path.cc: symlink_info::check_nfs_symlink (HANDLE h)
     -      res = sys_wcstombs (contents, SYMLINK_MAX + 1,
     +      res = sys_wcstombs_path (contents, SYMLINK_MAX + 1,
      			  spath, pffei->EaValueLength);
    -       path_flags |= PATH_SYMLINK;
    +       path_flags (path_flags () | PATH_SYMLINK);
          }
     @@ winsup/cygwin/path.cc: cygwin_conv_path (cygwin_conv_path_t what, const void *from, void *to,
      	      }
  • 9: 1b93522 = 9: 534d62a Use MB_CUR_MAX == 6 by default

  • 10: bbe7e2b = 10: 3b45aa8 Change the default base address for x86_64

  • 11: 7f68fa3 ! 11: d58b759 msys2-runtime: restore fast path for current user primary group

    @@ winsup/cygwin/uinfo.cc: pwdgrp::fetch_account_from_windows (fetch_user_arg_t &ar
      
      	  if (is_domain_account)
     @@ winsup/cygwin/uinfo.cc: pwdgrp::fetch_account_from_windows (fetch_user_arg_t &arg, cyg_ldap *pldap)
    - 	      /* On AD machines, use LDAP to fetch domain account infos. */
    - 	      if (cygheap->dom.primary_dns_name ())
    + 	      /* Skip this when creating group entries and for non-users. */
    + 	      if (is_group() || acc_type != SidTypeUser)
    + 		break;
    +-	      /* Fetch primary group from AD and overwrite the one we
    +-		 just guessed above. */
    +-	      if (cldap->fetch_ad_account (sid, false, domain))
    ++	      /* For the current user we got correctly cased username and
    ++		 the primary group via process token.  For any other user
    ++		 we fetch it from AD and overwrite it. */
    ++	      if (!get_default_group_from_current_user_token
    ++		  && cldap->fetch_ad_account (sid, false, domain))
      		{
    --		  /* Fetch primary group from AD and overwrite the one we
    --		     just guessed above. */
    --		  if (cldap->fetch_ad_account (sid, false, domain))
    -+		  /* For the current user we got correctly cased username and
    -+		     the primary group via process token.  For any other user
    -+		     we fetch it from AD and overwrite it. */
    -+		  if (!get_default_group_from_current_user_token
    -+		      && cldap->fetch_ad_account (sid, false, domain))
    - 		    {
    - 		      if ((val = cldap->get_account_name ()))
    - 			wcscpy (name, val);
    + 		  if ((val = cldap->get_account_name ()))
    + 		    wcscpy (name, val);
     
      ## winsup/doc/ntsec.xml ##
     @@ winsup/doc/ntsec.xml: The two lines starting with the keywords <literal>passwd:</literal> and
  • 12: f92c1e9 (upstream: 11a84cc) < -: ---------- Fix SSH hangs

  • 13: 454f7a4 = 12: 66a0df8 ci: run Git's entire test suite

  • 14: b80da35 (upstream: a937131) < -: ---------- Cygwin: Adjust CWD magic to accommodate for the latest Windows previews

  • 15: 463ebcd (upstream: 3312f2d) < -: ---------- Cygwin: console: Redesign mode set strategy on close().

Apart from some resolving sys_wcstombs_path()-related conflicts and the (complex-looking, but really quite straight-forward) get_default_group_from_current_user_token conflict, there is:

  • a commit that made it upstream to Cygwin: f92c1e9 (upstream: 11a84cc) Fix SSH hangs
  • a commit that made it upstream to MSYS2: b80da35 (upstream: a937131) Cygwin: Adjust CWD magic to accommodate for the latest Windows previews
  • a commit that was a backport from Cygwin: 463ebcd (upstream: 3312f2d) Cygwin: console: Redesign mode set strategy on close().

This fixes git-for-windows/git#5494

tyan0 and others added 30 commits December 4, 2024 00:03
Previously, the sig thread ran in THREAD_PRIORITY_HIGHEST priority.
This causes a critical delay in the signal handling in the main
thread if too many signals are received rapidly and the CPU is very
busy. In this case, most of the CPU time is allocated to the sig
thread, so the main thread cannot have a chance of handling signals.
With this patch, to avoid such a situation, the priority of the sig
thread is set to THREAD_PRIORITY_NORMAL priority.

Addresses: https://cygwin.com/pipermail/cygwin/2024-November/256744.html
Fixes: 53ad6f1 ("(cygthread::cygthread): Use three only arguments for detached threads, and start the thread via QueueUserAPC/async_create.")
Reported-by: Christian Franke <[email protected]>
Reviewed-by: Corinna Vinschen <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
If the process() fails and the signal remains in the queue, the most
possible reason is that the target thread is already armed by another
signal and does not handle it yet. With this patch, to increase the
chance of handling it in the other threads, call yield() before
retrying process().

Addresses: https://cygwin.com/pipermail/cygwin/2024-November/256744.html
Fixes: e10f822 ("Cygwin: signal: Handle queued signal without explicit __SIGFLUSH")
Reported-by: Christian Franke <[email protected]>
Reviewed-by:
Signed-off-by: Takashi Yano <[email protected]>
Currently, the buffer of 128KB is passed to GetConsoleProcessList().
This causes page fault in the select() loop for console due to:
microsoft/terminal#18264
because the previous code calls GetConsoleProcessList() with large
buffer and PeekConsoleInput() with small buffer alternately.
With this patch, the minimum buffer size is used that is determined
by GetConsoleProcessList() with small buffer passed.

Addresses: https://cygwin.com/pipermail/cygwin/2024-December/256841.html
Fixes: 7277014 ("Cygwin: pty: Prevent pty from changing code page of parent console.")
Reported-by: Steven Buehler <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
If SCHED_OTHER is selected, set the Windows priority according to the
nice value.  If SCHED_FIFO or SCHED_RR is selected, preserve the nice
value and set the Windows priority according to the sched_priority
parameter.

Signed-off-by: Christian Franke <[email protected]>
Document the long standing mapping from nice or sched_priority
values to Windows priority classes and the new behavior of
sched_setpolicy(8).

Signed-off-by: Christian Franke <[email protected]>
Add SCHED_IDLE to <sys/sched.h>.  If SCHED_IDLE is selected, preserve
the nice value and set the Windows priority to IDLE_PRIORITY_CLASS.

Signed-off-by: Christian Franke <[email protected]>
Since commit 314c2d2 ("* syscalls.cc (try_to_bin): Handle remote
shares as well.") try_to_bin() transposes the .cyg prefix for temporary
files to invalid low surrogate halfs on filesystems setting the
FILE_UNICODE_ON_DISK flag.

This works on NTFS, but not necessarily on other filesystems, which often
require all chars in a filename to be valid Unicode chars.  Fix this by
transposing into the private use area instead.

Fixes: 314c2d2 ("* syscalls.cc (try_to_bin): Handle remote shares as well.")
Signed-off-by: Corinna Vinschen <[email protected]>
Commit 0b6fbd3 ("* exceptions.cc (_cygtls::interrupt_now): Revert
to checking for "spinning" when choosing to defer signal.") introduced
a bug in the loop inside the stabilize_sig_stack subroutine:

First, stabilize_sig_stack grabs the stacklock. The _cygtls::incyg
flag is then incremented before checking if a signal has to be handled
for the current thread.

If no signal waits, the code simply jumps out, decrements _cygtls::incyg
and returns to the caller, which eventually releases the stacklock.

However, if a signal is waiting, stabilize_sig_stack releases the
stacklock, calls _cygtls::call_signal_handler(), and returns to
the start of the subroutine, trying to grab the lock.

After grabbing the lock, it increments _cygtls::incyg... wait...
again?

The loop does not decrement _cygtls::incyg after
_cygtls::call_signal_handler(), which returns with _cygtls::incyg
set to 1.  So it increments incyg to 2.  If no other signal is
waiting, stabilize_sig_stack jumps out and decrements _cygtls::incyg
to 1.  Eventually, setjmp or longjmp both will return to user
code with _cygtls::incyg set to 1.  This *may* be fixed at some later
point when signals arrive, but there will be a time when the application
runs in user code with broken signal handling.

Fixes: 0b6fbd3 ("* exceptions.cc (_cygtls::interrupt_now): Revert to checking for "spinning" when choosing to defer signal.")
Signed-off-by: Corinna Vinschen <[email protected]>
Given that spinning is only checked once at the start of a
_cygtls::interrupt_now() which is called in a loop, it's probably
not necessary to mark _cygtls::spinning as volatile.

However, spinning is changed from assembler code and we don't
want the compiler to make funny assumptions, so, better safe than
sorry.

Signed-off-by: Corinna Vinschen <[email protected]>
Per the comment in _cygtls::interrupt_now(), the spinning flag
is supposed to guard that the targeted thread is about to enter
the Cygwin DLL.  Setting spinning has then been added to _sigfe,
_sigbe, sigdelayed and stabilize_sig_stack, the latter being called
from setjmp/longjmp.

However, setjmp/longjmp only enter the DLL in case of a pending
signal, calling _cygtls::call_signal_handler(). This in turn is
already guarded by setting the incyg flag, and there's no other
action in stabilize_sig_stack which might interfere with the
signal setup.  All the rest of setjmp/longjmp is plain userspace.

Therefore, drop setting the spinning flag from stabilize_sig_stack,
because it results in dropped signals in tight longjmp loops.

Fixes: edc4f86 ("* Makefile.in (clean): Remove sigfe.s.")
Signed-off-by: Corinna Vinschen <[email protected]>
The queue is cleaned up by removing the entries having si_signo == 0
while processing the queued signals, however, sigpacket::process() may
set si_signo in the queue to 0 of the entry already processed but not
succeed by calling sig_clear(). This patch ensures the sig_clear()
to remove the entry from the queue chain. For this purpose, the pointer
prev has been added to the sigpacket. This is to handle the following
case appropriately.

Consider the queued signal chain of:
A->B->C->D
without pointer prev. Assume that the pointer 'q' and 'qnext' point to
C, and process() is processing C. If B is cleared in process(), A->next
should be set to to C in sigpacket::clear().

Then, if process() for C succeeds, C should be removed from the queue,
so A->next should be set to D. However, we cannot do that because we do
not have the pointer to A in the while loop in wait_sig().

With the pointer prev, we can easily access A and C in sigpacket::clear()
as well as A and D in the while loop in wait_sig() using the pointer prev
and next without pursuing the chain.

Addresses: https://cygwin.com/pipermail/cygwin/2024-November/256744.html
Fixes: 9d21550 ("(wait_sig): Define variable q to be the start of the signal queue.  Just iterate through sigq queue, deleting processed or zeroed signals")
Reported-by: Christian Franke <[email protected]>
Reviewed-by: Corinna Vinschen <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
Currently, the signal queue is touched by the thread sig as well as
other threads that call sigaction_worker(). This potentially has
a possibility to destroy the signal queue chain. A possible worst
result may be a self-loop chain which causes infinite loop. With
this patch, lock()/unlock() are introduce to avoid such a situation.

Fixes: 474048c ("* sigproc.cc (pending_signals::add): Just index directly into signal array rather than treating the array as a heap.")
Suggested-by: Corinna Vinschen <[email protected]>
Reviewed-by: Corinna Vinschen <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
We're using the cygthread class in a considerable number of
scenarios, but we don't keep track for which purposes we
use them.

Add a comment at the head of cygthread.cc to describe what
cygthreads we maintain.

This is supposed to be kept up-to-date if some cygthread is
added, modified, or removed (wishful thinking).

Signed-off-by: Corinna Vinschen <[email protected]>
Given the number of scenarios we're using cygthreads, it just doesn't
make sense to run all of them with HIGHEST priority in preemptive
obedience.

Drop setting the cygthread priority and let the cygthreads decide
by themselves.  For the time being, run all cygthreads with normal
priority.  Change this locally in the thread function, if required.

Signed-off-by: Corinna Vinschen <[email protected]>
There seems to be no rationale reason for _cygtls::spinning to exist,
so it has been removed. _cygtls::spinning was introduced in the commit
edc4f86ad282A, and this flag means that another thread is waiting to
acquire _cygtls::stacklock. It is checked in the sig thread in _cygtls::
interrupt_now(), and if spinning is true, the interrupt will be delayed.
However, in this case, _cygtls::incyg is also set, so it is supposed to
be covered by _cygtls::incyg flag and does not seem to add any value.

If some problems happen in the signal handling, it might be a good idea
to revert this commit and check if the issue will be fixed.

Reviewed-by: Corinna Vinschen <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
Recent vim throughs the sequence CSI '0%m' that cannot be handled
appropriately by psuedo console for a test purpose. This patch
removes the intermediate byte ('%') from the sequence.

Signed-off-by: Takashi Yano <[email protected]>
init_reopen_attr() doesn't guard against a NULL handle.  However,
there are scenarios calling functions deliberately with a NULL handle,
for instance, av::setup() calling check_file_access() only if opening
the file did NOT succeed.

So check for a NULL handle in init_reopen_attr() and if so, use the
name based approach filling the OBJECT_ATTRIBUTES struct, just as in
the has_buggy_reopen() case.

Fixes: 4c9d01f ("* mount.h (class fs_info): Add has_buggy_reopen flag and accessor methods.")
Signed-off-by: Corinna Vinschen <[email protected]>
Previously, access() and eaccess() does not determine the permissions
for files on samba/SMB share correctly. Even if the user logs-in as
the owner of the file, access() and eaccess() referes to others'
permissions. With this patch, to determine the permissions correctly,
NtOpenFile() with desired access mask is used.

Fixes: cf762b0 ("* security.cc (check_file_access): Create.")
Reviewed-by: Corinna Vinschen <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
…refix

cygpath automatically adds the root-local prefix \\?\ automatically
for paths exceeding 260 bytes.  However, it does not add the root-local
prefix if the path contains path components invalid in DOS paths, for
instance path components with trailing dots or spaces.

Add the -r option to always add the root-local prefix to the path.

Add the option to the documentation and improve the help text.

Signed-off-by: Corinna Vinschen <[email protected]>
Add SCHED_BATCH to <sys/sched.h>.  SCHED_BATCH is similar to SCHED_OTHER,
except that the nice value is mapped to a one step lower Windows priority.
Rework the mapping functions to ease the addition of this functionality.

Signed-off-by: Christian Franke <[email protected]>
Add SCHED_RESET_ON_FORK to <sys/sched.h>.  If this flag is set, SCHED_FIFO
and SCHED_RR are reset to SCHED_OTHER and negative nice values are reset to
zero in each child process created with fork(2).

Signed-off-by: Christian Franke <[email protected]>
The commit e10f822 has a problem that CPU load gets high if
pending signal is not processed successfully for a long time.
With this patch, wait_sig() calls Sleep(1), rather than yield(),
if the pending signal has not been processed successfully for a
predetermined time to prevent CPU from high load.

Addresses: https://cygwin.com/pipermail/cygwin/2024-December/256884.html
Fixes: e10f822 ("Cygwin: signal: Handle queued signal without explicit __SIGFLUSH")
Reported-by: 凯夏 <[email protected]>
Reviewed-by: Corinna Vinschen <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
Fixes: 1d1451c ("Cygwin: signal: Fix high load when retrying to process pending signal")
Reported-by: Jon Turney <[email protected]>
Signed-off-by: Takashi Yano <[email protected]>
dscho and others added 18 commits March 21, 2025 17:59
Even when the character set is specified as ASCII, we should handle data
outside the 7-bit range gracefully by simply copying it, even if it is
technically no longer ASCII.

This fixes several of Git for Windows' tests, e.g. t7400.

Signed-off-by: Johannes Schindelin <[email protected]>
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
It came in real handy while debugging an issue that strace 'fixed'.

Signed-off-by: Johannes Schindelin <[email protected]>
When a non ascii char is at the beginning of a path the current conversion
destroys the path. This fix will prevent this with an extra check for
non-ascii UTF-8 characters.

Helped-by: Johannes Schindelin <[email protected]>
Signed-off-by: 마누엘 <[email protected]>
Windows native symlinks must match the type of their target (file or
directory), otherwise native Windows tools will fail. Creating symlinks in
'nativestrict' mode currently requires the target to exist in order to
check its type.

However, the target of a symlink can change at any time after the symlink
has been created. Thus users of native symlinks must be prepared to deal
with type mismatches anyway. Checking the target type at symlink creation
time is not a good reason to violate the symlink() API specification.

In 'nativestrict' mode, always create native symlinks. Choose the symlink
type according to the target if it exists. Otherwise check the target path
for a trailing '/' as hint to create a directory symlink.

This allows callers to explicitly specify the expected target type, e.g.:

  $ ln -s test/ link-to-test
  $ mkdir test

Signed-off-by: Karsten Blees <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
This is a forked repository...

Signed-off-by: Johannes Schindelin <[email protected]>
	* dcrt0.cc (dll_crt0_1), dtable.cc (handle_to_fn), environ.cc
	(environ_init, getwinenveq, build_env), external.cc
	(fillout_pinfo), fhandler_disk_file.cc (__DIR_mounts::eval_ino,
	fhandler_disk_file::readdir_helper), fhandler_netdrive.cc
	(fhandler_netdrive::readdir), fhandler_process.cc
	(format_process_winexename, format_process_maps,
	format_process_stat, format_process_status), fhandler_procsys.cc
	(fill_filebuf, fhandler_procsys::readdir), mount.cc
	(fs_info::update, mount_info::create_root_entry,
	mount_info::conv_to_posix_path, mount_info::from_fstab_line),
	nlsfuncs.cc (internal_setlocale), path.cc (path_conv::check,
	sysmlink_info::check_shortcut, symlink_info::check_sysfile,
	symlink_info::check_reparse_point,
	symlink_info::check_nfs_symlink, cygwin_conv_path,
	cygwin_conv_path_list, cwdstuff::get_error_desc, cwdstuff::get),
	strfuncs.cc (sys_wcstombs_no_path, sys_wcstombs_alloc_no_path),
	uinfo.cc (ontherange, fetch_from_path, cygheap_pwdgrp::get_home,
	cygheap_pwdgrp::get_shell, cygheap_pwdgrp::get_gecos), wchar.h
	(sys_wcstombs_no_path, sys_wcstombs_alloc_no_path): Convert call
	sites of the sys_wcstombs*() family to specify explicitly when the
	parameter refers to a path or file name, to avoid future
	misconversions.

Detailed explanation:

The sys_wcstombs() function contains special handling for paths/file
names, to work around file name restriction on Windows that are
unexpected in the POSIX context of Cygwin.

We actually do not want that special handling for WCS strings that
do *not* refer to paths or file names.

Neither do we want to convert those special file names unless they come
from inside Cygwin: if the source of the string value is the Windows API,
we *know* it cannot be such a special file name because Windows itself
would not be able to handle it in the way Cygwin does.

So let's switch the previous sys_wcstombs()/sys_wcstombs_no_path() (and
the *_alloc* variant) around to sys_wcstombs_path()/sys_wcstombs(). We do
this for several reasons:

- whenever a call site wants to convert a WCS representation of a path or
  file name to an MBS one, it should be made very clear that we *want* the
  special file name conversion to happen.

- it is shorter to read and write.

- future calls to sys_wcstombs() will not incur unwanted conversion by
  accident (it is easy for unsuspecting programmers to assume that the
  function name "sys_wcstombs()" refers to a regular text conversion that
  has nothing to do with paths or filenames).

By keeping the name sys_wcstombs() (and not switching to
sys_wcstombs_path()), the following call sites are implicitly changed to
*exclude* the special path/file name conversion:

cygheap.h (get_drive):
	Cannot contain special characters

external.cc (cygwin_internal):
	Refers to user/domain names, not paths

fhandler_clipboard.cc (fhandler_dev_clipboard::read):
	Is not a path or file name but characters from the Windows
	clipboard

fhandler_console.cc: (dev_console::con_to_str):
	Is not a path or file name but characters from the console

fhandler_registry.cc (encode_regname):
	Is a registry key, not a path or filename

fhandler_registry.cc (multi_wcstombs):
	All call sites pass registry values, not paths or filenames

fhandler_registry.cc (fstat):
	Is a registry value, not a path or filename

fhandler_registry.cc (fill_filebuf):
	Is a registry value, not a path or filename

net.cc (get_ipv4fromreg):
	Is a registry value, not a path or filename

net.cc (get_friendlyname):
	Is a device name, not a path or filename

netdb.cc (open_system_file):
	Is from outside Cygwin

smallprint.cc (__small_vsprintf):
	Is a free text, not a path or filename

strfuncs.cc (strlwr):
	Should preserve the characters from the private page if there
	are any

strfuncs.cc (strupr):
	Should preserve the characters from the private page if there
	are any

uinfo.cc (cygheap_user::init):
	Refers to a user name, not a path or filename

uinfo.cc (pwdgrp::fetch_account_from_windows):
	Refers to value from outside Cygwin

By keeping the function name sys_wcstombs_alloc() (and not changing it to
sys_wcstombs_alloc_path()), the following call sites are implicitly
changed to *exclude* the special path/file name conversion:

ldap.cc (cyg_ldap::remap_uid):
	Refers to a user name, not a path or filename

ldap.cc (cyg_ldap::remap_gid):
	Refers to a group name, not a path or filename

pinfo.cc (_pinfo::cmdline):
	Refers to a command line from Windows, outside Cygwin

uinfo.cc (cygheap_user::env_logsrv):
	Is a server name, not a path or filename

uinfo.cc (cygheap_user::env_domain):
	Refers to the user/domain name, not a path or filename

uinfo.cc (cygheap_user::env_userprofile):
	Refers to Windows' idea of a path, outside Cygwin

uinfo.cc (cygheap_user::env_systemroot):
	Refers to Windows' idea of a path, outside Cygwin

uinfo.cc (fetch_from_description):
	Refers to values from outside of Cygwin

uinfo.cc (cygheap_pwdgrp::get_gecos):
	Refers to user/domain name and email address, not path nor filename

Signed-off-by: Johannes Schindelin <[email protected]>
Internally, Cygwin already uses __utf8_mbtowc(), even if it still claims
to use the "ASCII" charset.

But the `MB_CUR_MAX` value (which is not actually a constant, but
dependent on the current locale) was still 1, which broke the initial
`globify()` call while parsing the the command-line in `build_argv()`
for non-ASCII arguments.

This fixes git-for-windows/git#2189

Signed-off-by: Johannes Schindelin <[email protected]>
Allow native symlinks to non-existing targets in 'nativestrict' mode
This might break things, but it turns out several Windows libraries like
to be loaded at 0x180000000.

This causes a problem, because `msys-2.0.dll` loads at `0x180040000` and
expects `0x180000000-0x180040000` to be available. A problem arises when
Antiviruses (or other DLL hooking mechanisms) load a DLL whose preferred
load address is `0x180000000` and fits in size before `0x180010000`:

1. `msys-2.0.dll` loads and fills `0x180010000-0x180040000` assuming no
   shared console structure is going to be needed.

2. Another DLL loads and fills `0x180000000-0x18000xxxx`

3. `msys-2.0.dll` tries to load `0x180000000-0x180010000` but it's not
   available. It falls back to another address, but down the line
   something else fails.

This bug triggers when using subshells (e.g.: `git clone --recursive`).

The MSYS2 runtime should be able to work around the address conflict,
but the code is failing in some way or other...

Signed-off-by: Johannes Schindelin <[email protected]>
Signed-off-by: Mikael Larsson <[email protected]>
This topic branch fixes the problem where a UTF-16 command-line was
converted to UTF-8 in an incorrect way (because Cygwin treated it as if
it was a file name and applied some magic that is intended to allow for
otherwise invalid file names on Windows).

Signed-off-by: Johannes Schindelin <[email protected]>
Commit a5bcfe6 removed an optimization that fetches the
default group from the current user token, as it is sometimes
not accurate such as when groups like the builtin
Administrators group is the primary group.

However, removing this optimization causes extremely poor
performance when connected to some Active Directory
environments.

Restored this optimization as the default behaviour, and
added a `group: db-accurate` option to `nsswitch.conf` that
can be used to disable the optimization in cases where
accurate group information is required.

This fixes git-for-windows/git#4459

Signed-off-by: Richard Glidden <[email protected]>
Workaround certain anti-malware programs

Signed-off-by: Johannes Schindelin <[email protected]>
One particularly important part of Git for Windows' MSYS2 runtime is
that it is used to run Git's tests, and regressions happened there: For
example, the first iteration of MSYS2 runtime v3.5.5 caused plenty of
hangs. This was realized unfortunately only after deploying the
msys2-runtime Pacman package, and some painful vacation-time scrambling
was required to revert to v3.5.4.This was realized unfortunately only
after deploying the msys2-runtime Pacman package, and some painful
vacation-time scrambling was required to revert to v3.5.4.

To verify that this does not happen anymore, let's reuse what
`setup-git-for-windows-sdk` uses in Git's very own CI:

- determine the latest successful `ci-artifacts` workflow run in
  git-for-windows/git-sdk-64

- download its Git files and build artifacts

- download its minimal-sdk

- overwrite the MSYS2 runtime in the minimal-sdk

- run the test suite and the assorted validations just like the
  `ci-artifacts` workflow (from which these jobs are copied)

This obviously adds a hefty time penalty (around 7 minutes!) to every
MSYS2 runtime PR in the git-for-windows org. Happily, these days we
don't need many of those, and the balance between things like the v3.5.5
scramble and waiting a little longer for the CI to finish is clearly in
favor of the latter.

Signed-off-by: Johannes Schindelin <[email protected]>
msys2-runtime: restore fast path for current user primary group
@dscho
Copy link
Member Author

dscho commented Mar 23, 2025

/open pr

The workflow run was started

@dscho dscho merged commit 9300298 into git-for-windows:main Mar 23, 2025
21 checks passed
@dscho dscho deleted the rebase-to-v3.6.0 branch March 23, 2025 09:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[New cygwin version] cygwin-3.6.0