1 #include "../git-compat-util.h"
8 #include "../run-command.h"
10 #include "win32/lazyload.h"
11 #include "../config.h"
13 #define SECURITY_WIN32
16 #define HCAST(type, handle) ((type)(intptr_t)handle)
18 static const int delay
[] = { 0, 1, 10, 20, 40 };
20 void open_in_gdb(void)
22 static struct child_process cp
= CHILD_PROCESS_INIT
;
25 strvec_pushl(&cp
.args
, "mintty", "gdb", NULL
);
26 strvec_pushf(&cp
.args
, "--pid=%d", getpid());
28 if (start_command(&cp
) < 0)
29 die_errno("Could not start gdb");
33 int err_win_to_posix(DWORD winerr
)
37 case ERROR_ACCESS_DENIED
: error
= EACCES
; break;
38 case ERROR_ACCOUNT_DISABLED
: error
= EACCES
; break;
39 case ERROR_ACCOUNT_RESTRICTION
: error
= EACCES
; break;
40 case ERROR_ALREADY_ASSIGNED
: error
= EBUSY
; break;
41 case ERROR_ALREADY_EXISTS
: error
= EEXIST
; break;
42 case ERROR_ARITHMETIC_OVERFLOW
: error
= ERANGE
; break;
43 case ERROR_BAD_COMMAND
: error
= EIO
; break;
44 case ERROR_BAD_DEVICE
: error
= ENODEV
; break;
45 case ERROR_BAD_DRIVER_LEVEL
: error
= ENXIO
; break;
46 case ERROR_BAD_EXE_FORMAT
: error
= ENOEXEC
; break;
47 case ERROR_BAD_FORMAT
: error
= ENOEXEC
; break;
48 case ERROR_BAD_LENGTH
: error
= EINVAL
; break;
49 case ERROR_BAD_PATHNAME
: error
= ENOENT
; break;
50 case ERROR_BAD_PIPE
: error
= EPIPE
; break;
51 case ERROR_BAD_UNIT
: error
= ENODEV
; break;
52 case ERROR_BAD_USERNAME
: error
= EINVAL
; break;
53 case ERROR_BROKEN_PIPE
: error
= EPIPE
; break;
54 case ERROR_BUFFER_OVERFLOW
: error
= ENAMETOOLONG
; break;
55 case ERROR_BUSY
: error
= EBUSY
; break;
56 case ERROR_BUSY_DRIVE
: error
= EBUSY
; break;
57 case ERROR_CALL_NOT_IMPLEMENTED
: error
= ENOSYS
; break;
58 case ERROR_CANNOT_MAKE
: error
= EACCES
; break;
59 case ERROR_CANTOPEN
: error
= EIO
; break;
60 case ERROR_CANTREAD
: error
= EIO
; break;
61 case ERROR_CANTWRITE
: error
= EIO
; break;
62 case ERROR_CRC
: error
= EIO
; break;
63 case ERROR_CURRENT_DIRECTORY
: error
= EACCES
; break;
64 case ERROR_DEVICE_IN_USE
: error
= EBUSY
; break;
65 case ERROR_DEV_NOT_EXIST
: error
= ENODEV
; break;
66 case ERROR_DIRECTORY
: error
= EINVAL
; break;
67 case ERROR_DIR_NOT_EMPTY
: error
= ENOTEMPTY
; break;
68 case ERROR_DISK_CHANGE
: error
= EIO
; break;
69 case ERROR_DISK_FULL
: error
= ENOSPC
; break;
70 case ERROR_DRIVE_LOCKED
: error
= EBUSY
; break;
71 case ERROR_ENVVAR_NOT_FOUND
: error
= EINVAL
; break;
72 case ERROR_EXE_MARKED_INVALID
: error
= ENOEXEC
; break;
73 case ERROR_FILENAME_EXCED_RANGE
: error
= ENAMETOOLONG
; break;
74 case ERROR_FILE_EXISTS
: error
= EEXIST
; break;
75 case ERROR_FILE_INVALID
: error
= ENODEV
; break;
76 case ERROR_FILE_NOT_FOUND
: error
= ENOENT
; break;
77 case ERROR_GEN_FAILURE
: error
= EIO
; break;
78 case ERROR_HANDLE_DISK_FULL
: error
= ENOSPC
; break;
79 case ERROR_INSUFFICIENT_BUFFER
: error
= ENOMEM
; break;
80 case ERROR_INVALID_ACCESS
: error
= EACCES
; break;
81 case ERROR_INVALID_ADDRESS
: error
= EFAULT
; break;
82 case ERROR_INVALID_BLOCK
: error
= EFAULT
; break;
83 case ERROR_INVALID_DATA
: error
= EINVAL
; break;
84 case ERROR_INVALID_DRIVE
: error
= ENODEV
; break;
85 case ERROR_INVALID_EXE_SIGNATURE
: error
= ENOEXEC
; break;
86 case ERROR_INVALID_FLAGS
: error
= EINVAL
; break;
87 case ERROR_INVALID_FUNCTION
: error
= ENOSYS
; break;
88 case ERROR_INVALID_HANDLE
: error
= EBADF
; break;
89 case ERROR_INVALID_LOGON_HOURS
: error
= EACCES
; break;
90 case ERROR_INVALID_NAME
: error
= EINVAL
; break;
91 case ERROR_INVALID_OWNER
: error
= EINVAL
; break;
92 case ERROR_INVALID_PARAMETER
: error
= EINVAL
; break;
93 case ERROR_INVALID_PASSWORD
: error
= EPERM
; break;
94 case ERROR_INVALID_PRIMARY_GROUP
: error
= EINVAL
; break;
95 case ERROR_INVALID_SIGNAL_NUMBER
: error
= EINVAL
; break;
96 case ERROR_INVALID_TARGET_HANDLE
: error
= EIO
; break;
97 case ERROR_INVALID_WORKSTATION
: error
= EACCES
; break;
98 case ERROR_IO_DEVICE
: error
= EIO
; break;
99 case ERROR_IO_INCOMPLETE
: error
= EINTR
; break;
100 case ERROR_LOCKED
: error
= EBUSY
; break;
101 case ERROR_LOCK_VIOLATION
: error
= EACCES
; break;
102 case ERROR_LOGON_FAILURE
: error
= EACCES
; break;
103 case ERROR_MAPPED_ALIGNMENT
: error
= EINVAL
; break;
104 case ERROR_META_EXPANSION_TOO_LONG
: error
= E2BIG
; break;
105 case ERROR_MORE_DATA
: error
= EPIPE
; break;
106 case ERROR_NEGATIVE_SEEK
: error
= ESPIPE
; break;
107 case ERROR_NOACCESS
: error
= EFAULT
; break;
108 case ERROR_NONE_MAPPED
: error
= EINVAL
; break;
109 case ERROR_NOT_ENOUGH_MEMORY
: error
= ENOMEM
; break;
110 case ERROR_NOT_READY
: error
= EAGAIN
; break;
111 case ERROR_NOT_SAME_DEVICE
: error
= EXDEV
; break;
112 case ERROR_NO_DATA
: error
= EPIPE
; break;
113 case ERROR_NO_MORE_SEARCH_HANDLES
: error
= EIO
; break;
114 case ERROR_NO_PROC_SLOTS
: error
= EAGAIN
; break;
115 case ERROR_NO_SUCH_PRIVILEGE
: error
= EACCES
; break;
116 case ERROR_OPEN_FAILED
: error
= EIO
; break;
117 case ERROR_OPEN_FILES
: error
= EBUSY
; break;
118 case ERROR_OPERATION_ABORTED
: error
= EINTR
; break;
119 case ERROR_OUTOFMEMORY
: error
= ENOMEM
; break;
120 case ERROR_PASSWORD_EXPIRED
: error
= EACCES
; break;
121 case ERROR_PATH_BUSY
: error
= EBUSY
; break;
122 case ERROR_PATH_NOT_FOUND
: error
= ENOENT
; break;
123 case ERROR_PIPE_BUSY
: error
= EBUSY
; break;
124 case ERROR_PIPE_CONNECTED
: error
= EPIPE
; break;
125 case ERROR_PIPE_LISTENING
: error
= EPIPE
; break;
126 case ERROR_PIPE_NOT_CONNECTED
: error
= EPIPE
; break;
127 case ERROR_PRIVILEGE_NOT_HELD
: error
= EACCES
; break;
128 case ERROR_READ_FAULT
: error
= EIO
; break;
129 case ERROR_SEEK
: error
= EIO
; break;
130 case ERROR_SEEK_ON_DEVICE
: error
= ESPIPE
; break;
131 case ERROR_SHARING_BUFFER_EXCEEDED
: error
= ENFILE
; break;
132 case ERROR_SHARING_VIOLATION
: error
= EACCES
; break;
133 case ERROR_STACK_OVERFLOW
: error
= ENOMEM
; break;
134 case ERROR_SUCCESS
: BUG("err_win_to_posix() called without an error!");
135 case ERROR_SWAPERROR
: error
= ENOENT
; break;
136 case ERROR_TOO_MANY_MODULES
: error
= EMFILE
; break;
137 case ERROR_TOO_MANY_OPEN_FILES
: error
= EMFILE
; break;
138 case ERROR_UNRECOGNIZED_MEDIA
: error
= ENXIO
; break;
139 case ERROR_UNRECOGNIZED_VOLUME
: error
= ENODEV
; break;
140 case ERROR_WAIT_NO_CHILDREN
: error
= ECHILD
; break;
141 case ERROR_WRITE_FAULT
: error
= EIO
; break;
142 case ERROR_WRITE_PROTECT
: error
= EROFS
; break;
147 static inline int is_file_in_use_error(DWORD errcode
)
150 case ERROR_SHARING_VIOLATION
:
151 case ERROR_ACCESS_DENIED
:
158 static int read_yes_no_answer(void)
162 if (fgets(answer
, sizeof(answer
), stdin
)) {
163 size_t answer_len
= strlen(answer
);
164 int got_full_line
= 0, c
;
166 /* remove the newline */
167 if (answer_len
>= 2 && answer
[answer_len
-2] == '\r') {
168 answer
[answer_len
-2] = '\0';
170 } else if (answer_len
>= 1 && answer
[answer_len
-1] == '\n') {
171 answer
[answer_len
-1] = '\0';
174 /* flush the buffer in case we did not get the full line */
176 while ((c
= getchar()) != EOF
&& c
!= '\n')
179 /* we could not read, return the
180 * default answer which is no */
183 if (tolower(answer
[0]) == 'y' && !answer
[1])
185 if (!strncasecmp(answer
, "yes", sizeof(answer
)))
187 if (tolower(answer
[0]) == 'n' && !answer
[1])
189 if (!strncasecmp(answer
, "no", sizeof(answer
)))
192 /* did not find an answer we understand */
196 static int ask_yes_no_if_possible(const char *format
, ...)
199 const char *retry_hook
[] = { NULL
, NULL
, NULL
};
202 va_start(args
, format
);
203 vsnprintf(question
, sizeof(question
), format
, args
);
206 if ((retry_hook
[0] = mingw_getenv("GIT_ASK_YESNO"))) {
207 retry_hook
[1] = question
;
208 return !run_command_v_opt(retry_hook
, 0);
211 if (!isatty(_fileno(stdin
)) || !isatty(_fileno(stderr
)))
216 fprintf(stderr
, "%s (y/n) ", question
);
218 if ((answer
= read_yes_no_answer()) >= 0)
221 fprintf(stderr
, "Sorry, I did not understand your answer. "
222 "Please type 'y' or 'n'\n");
227 enum hide_dotfiles_type
{
228 HIDE_DOTFILES_FALSE
= 0,
230 HIDE_DOTFILES_DOTGITONLY
233 static int core_restrict_inherited_handles
= -1;
234 static enum hide_dotfiles_type hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
235 static char *unset_environment_variables
;
237 int mingw_core_config(const char *var
, const char *value
, void *cb
)
239 if (!strcmp(var
, "core.hidedotfiles")) {
240 if (value
&& !strcasecmp(value
, "dotgitonly"))
241 hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
243 hide_dotfiles
= git_config_bool(var
, value
);
247 if (!strcmp(var
, "core.unsetenvvars")) {
248 free(unset_environment_variables
);
249 unset_environment_variables
= xstrdup(value
);
253 if (!strcmp(var
, "core.restrictinheritedhandles")) {
254 if (value
&& !strcasecmp(value
, "auto"))
255 core_restrict_inherited_handles
= -1;
257 core_restrict_inherited_handles
=
258 git_config_bool(var
, value
);
265 /* Normalizes NT paths as returned by some low-level APIs. */
266 static wchar_t *normalize_ntpath(wchar_t *wbuf
)
269 /* fix absolute path prefixes */
270 if (wbuf
[0] == '\\') {
271 /* strip NT namespace prefixes */
272 if (!wcsncmp(wbuf
, L
"\\??\\", 4) ||
273 !wcsncmp(wbuf
, L
"\\\\?\\", 4))
275 else if (!wcsnicmp(wbuf
, L
"\\DosDevices\\", 12))
277 /* replace remaining '...UNC\' with '\\' */
278 if (!wcsnicmp(wbuf
, L
"UNC\\", 4)) {
283 /* convert backslashes to slashes */
284 for (i
= 0; wbuf
[i
]; i
++)
290 int mingw_unlink(const char *pathname
)
293 wchar_t wpathname
[MAX_PATH
];
294 if (xutftowcs_path(wpathname
, pathname
) < 0)
297 if (DeleteFileW(wpathname
))
300 /* read-only files cannot be removed */
301 _wchmod(wpathname
, 0666);
302 while ((ret
= _wunlink(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
303 if (!is_file_in_use_error(GetLastError()))
306 * We assume that some other process had the source or
307 * destination file open at the wrong moment and retry.
308 * In order to give the other process a higher chance to
309 * complete its operation, we give up our time slice now.
310 * If we have to retry again, we do sleep a bit.
315 while (ret
== -1 && is_file_in_use_error(GetLastError()) &&
316 ask_yes_no_if_possible("Unlink of file '%s' failed. "
317 "Should I try again?", pathname
))
318 ret
= _wunlink(wpathname
);
322 static int is_dir_empty(const wchar_t *wpath
)
324 WIN32_FIND_DATAW findbuf
;
326 wchar_t wbuf
[MAX_PATH
+ 2];
328 wcscat(wbuf
, L
"\\*");
329 handle
= FindFirstFileW(wbuf
, &findbuf
);
330 if (handle
== INVALID_HANDLE_VALUE
)
331 return GetLastError() == ERROR_NO_MORE_FILES
;
333 while (!wcscmp(findbuf
.cFileName
, L
".") ||
334 !wcscmp(findbuf
.cFileName
, L
".."))
335 if (!FindNextFileW(handle
, &findbuf
)) {
336 DWORD err
= GetLastError();
338 return err
== ERROR_NO_MORE_FILES
;
344 int mingw_rmdir(const char *pathname
)
347 wchar_t wpathname
[MAX_PATH
];
351 * Contrary to Linux' `rmdir()`, Windows' _wrmdir() and _rmdir()
352 * (and `RemoveDirectoryW()`) will attempt to remove the target of a
353 * symbolic link (if it points to a directory).
355 * This behavior breaks the assumption of e.g. `remove_path()` which
356 * upon successful deletion of a file will attempt to remove its parent
357 * directories recursively until failure (which usually happens when
358 * the directory is not empty).
360 * Therefore, before calling `_wrmdir()`, we first check if the path is
361 * a symbolic link. If it is, we exit and return the same error as
362 * Linux' `rmdir()` would, i.e. `ENOTDIR`.
364 if (!mingw_lstat(pathname
, &st
) && S_ISLNK(st
.st_mode
)) {
369 if (xutftowcs_path(wpathname
, pathname
) < 0)
372 while ((ret
= _wrmdir(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
373 if (!is_file_in_use_error(GetLastError()))
374 errno
= err_win_to_posix(GetLastError());
377 if (!is_dir_empty(wpathname
)) {
382 * We assume that some other process had the source or
383 * destination file open at the wrong moment and retry.
384 * In order to give the other process a higher chance to
385 * complete its operation, we give up our time slice now.
386 * If we have to retry again, we do sleep a bit.
391 while (ret
== -1 && errno
== EACCES
&& is_file_in_use_error(GetLastError()) &&
392 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
393 "Should I try again?", pathname
))
394 ret
= _wrmdir(wpathname
);
396 invalidate_lstat_cache();
400 static inline int needs_hiding(const char *path
)
402 const char *basename
;
404 if (hide_dotfiles
== HIDE_DOTFILES_FALSE
)
407 /* We cannot use basename(), as it would remove trailing slashes */
408 win32_skip_dos_drive_prefix((char **)&path
);
412 for (basename
= path
; *path
; path
++)
413 if (is_dir_sep(*path
)) {
416 } while (is_dir_sep(*path
));
417 /* ignore trailing slashes */
424 if (hide_dotfiles
== HIDE_DOTFILES_TRUE
)
425 return *basename
== '.';
427 assert(hide_dotfiles
== HIDE_DOTFILES_DOTGITONLY
);
428 return !strncasecmp(".git", basename
, 4) &&
429 (!basename
[4] || is_dir_sep(basename
[4]));
432 static int set_hidden_flag(const wchar_t *path
, int set
)
434 DWORD original
= GetFileAttributesW(path
), modified
;
436 modified
= original
| FILE_ATTRIBUTE_HIDDEN
;
438 modified
= original
& ~FILE_ATTRIBUTE_HIDDEN
;
439 if (original
== modified
|| SetFileAttributesW(path
, modified
))
441 errno
= err_win_to_posix(GetLastError());
445 int mingw_mkdir(const char *path
, int mode
)
448 wchar_t wpath
[MAX_PATH
];
450 if (!is_valid_win32_path(path
, 0)) {
455 if (xutftowcs_path(wpath
, path
) < 0)
457 ret
= _wmkdir(wpath
);
458 if (!ret
&& needs_hiding(path
))
459 return set_hidden_flag(wpath
, 1);
464 * Calling CreateFile() using FILE_APPEND_DATA and without FILE_WRITE_DATA
465 * is documented in [1] as opening a writable file handle in append mode.
466 * (It is believed that) this is atomic since it is maintained by the
467 * kernel unlike the O_APPEND flag which is racily maintained by the CRT.
469 * [1] https://docs.microsoft.com/en-us/windows/desktop/fileio/file-access-rights-constants
471 * This trick does not appear to work for named pipes. Instead it creates
472 * a named pipe client handle that cannot be written to. Callers should
473 * just use the regular _wopen() for them. (And since client handle gets
474 * bound to a unique server handle, it isn't really an issue.)
476 static int mingw_open_append(wchar_t const *wfilename
, int oflags
, ...)
480 DWORD create
= (oflags
& O_CREAT
) ? OPEN_ALWAYS
: OPEN_EXISTING
;
482 /* only these flags are supported */
483 if ((oflags
& ~O_CREAT
) != (O_WRONLY
| O_APPEND
))
484 return errno
= ENOSYS
, -1;
487 * FILE_SHARE_WRITE is required to permit child processes
488 * to append to the file.
490 handle
= CreateFileW(wfilename
, FILE_APPEND_DATA
,
491 FILE_SHARE_WRITE
| FILE_SHARE_READ
,
492 NULL
, create
, FILE_ATTRIBUTE_NORMAL
, NULL
);
493 if (handle
== INVALID_HANDLE_VALUE
) {
494 DWORD err
= GetLastError();
497 * Some network storage solutions (e.g. Isilon) might return
498 * ERROR_INVALID_PARAMETER instead of expected error
499 * ERROR_PATH_NOT_FOUND, which results in an unknown error. If
500 * so, let's turn the error to ERROR_PATH_NOT_FOUND instead.
502 if (err
== ERROR_INVALID_PARAMETER
)
503 err
= ERROR_PATH_NOT_FOUND
;
505 errno
= err_win_to_posix(err
);
510 * No O_APPEND here, because the CRT uses it only to reset the
511 * file pointer to EOF before each write(); but that is not
512 * necessary (and may lead to races) for a file created with
515 fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
522 * Does the pathname map to the local named pipe filesystem?
523 * That is, does it have a "//./pipe/" prefix?
525 static int is_local_named_pipe_path(const char *filename
)
527 return (is_dir_sep(filename
[0]) &&
528 is_dir_sep(filename
[1]) &&
529 filename
[2] == '.' &&
530 is_dir_sep(filename
[3]) &&
531 !strncasecmp(filename
+4, "pipe", 4) &&
532 is_dir_sep(filename
[8]) &&
536 int mingw_open (const char *filename
, int oflags
, ...)
538 typedef int (*open_fn_t
)(wchar_t const *wfilename
, int oflags
, ...);
541 int fd
, create
= (oflags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
);
542 wchar_t wfilename
[MAX_PATH
];
545 va_start(args
, oflags
);
546 mode
= va_arg(args
, int);
549 if (!is_valid_win32_path(filename
, !create
)) {
550 errno
= create
? EINVAL
: ENOENT
;
554 if ((oflags
& O_APPEND
) && !is_local_named_pipe_path(filename
))
555 open_fn
= mingw_open_append
;
559 if (filename
&& !strcmp(filename
, "/dev/null"))
560 wcscpy(wfilename
, L
"nul");
561 else if (xutftowcs_path(wfilename
, filename
) < 0)
564 fd
= open_fn(wfilename
, oflags
, mode
);
566 if (fd
< 0 && (oflags
& O_ACCMODE
) != O_RDONLY
&& errno
== EACCES
) {
567 DWORD attrs
= GetFileAttributesW(wfilename
);
568 if (attrs
!= INVALID_FILE_ATTRIBUTES
&& (attrs
& FILE_ATTRIBUTE_DIRECTORY
))
571 if ((oflags
& O_CREAT
) && needs_hiding(filename
)) {
573 * Internally, _wopen() uses the CreateFile() API which errors
574 * out with an ERROR_ACCESS_DENIED if CREATE_ALWAYS was
575 * specified and an already existing file's attributes do not
576 * match *exactly*. As there is no mode or flag we can set that
577 * would correspond to FILE_ATTRIBUTE_HIDDEN, let's just try
578 * again *without* the O_CREAT flag (that corresponds to the
579 * CREATE_ALWAYS flag of CreateFile()).
581 if (fd
< 0 && errno
== EACCES
)
582 fd
= open_fn(wfilename
, oflags
& ~O_CREAT
, mode
);
583 if (fd
>= 0 && set_hidden_flag(wfilename
, 1))
584 warning("could not mark '%s' as hidden.", filename
);
589 static BOOL WINAPI
ctrl_ignore(DWORD type
)
595 int mingw_fgetc(FILE *stream
)
598 if (!isatty(_fileno(stream
)))
599 return fgetc(stream
);
601 SetConsoleCtrlHandler(ctrl_ignore
, TRUE
);
604 if (ch
!= EOF
|| GetLastError() != ERROR_OPERATION_ABORTED
)
607 /* Ctrl+C was pressed, simulate SIGINT and retry */
610 SetConsoleCtrlHandler(ctrl_ignore
, FALSE
);
615 FILE *mingw_fopen (const char *filename
, const char *otype
)
617 int hide
= needs_hiding(filename
);
619 wchar_t wfilename
[MAX_PATH
], wotype
[4];
620 if (filename
&& !strcmp(filename
, "/dev/null"))
621 wcscpy(wfilename
, L
"nul");
622 else if (!is_valid_win32_path(filename
, 1)) {
623 int create
= otype
&& strchr(otype
, 'w');
624 errno
= create
? EINVAL
: ENOENT
;
626 } else if (xutftowcs_path(wfilename
, filename
) < 0)
629 if (xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
632 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
633 error("could not unhide %s", filename
);
636 file
= _wfopen(wfilename
, wotype
);
637 if (!file
&& GetLastError() == ERROR_INVALID_NAME
)
639 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
640 warning("could not mark '%s' as hidden.", filename
);
644 FILE *mingw_freopen (const char *filename
, const char *otype
, FILE *stream
)
646 int hide
= needs_hiding(filename
);
648 wchar_t wfilename
[MAX_PATH
], wotype
[4];
649 if (filename
&& !strcmp(filename
, "/dev/null"))
650 wcscpy(wfilename
, L
"nul");
651 else if (!is_valid_win32_path(filename
, 1)) {
652 int create
= otype
&& strchr(otype
, 'w');
653 errno
= create
? EINVAL
: ENOENT
;
655 } else if (xutftowcs_path(wfilename
, filename
) < 0)
658 if (xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
661 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
662 error("could not unhide %s", filename
);
665 file
= _wfreopen(wfilename
, wotype
, stream
);
666 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
667 warning("could not mark '%s' as hidden.", filename
);
672 int mingw_fflush(FILE *stream
)
674 int ret
= fflush(stream
);
677 * write() is used behind the scenes of stdio output functions.
678 * Since git code does not check for errors after each stdio write
679 * operation, it can happen that write() is called by a later
680 * stdio function even if an earlier write() call failed. In the
681 * case of a pipe whose readable end was closed, only the first
682 * call to write() reports EPIPE on Windows. Subsequent write()
683 * calls report EINVAL. It is impossible to notice whether this
684 * fflush invocation triggered such a case, therefore, we have to
685 * catch all EINVAL errors whole-sale.
687 if (ret
&& errno
== EINVAL
)
694 ssize_t
mingw_write(int fd
, const void *buf
, size_t len
)
696 ssize_t result
= write(fd
, buf
, len
);
698 if (result
< 0 && errno
== EINVAL
&& buf
) {
699 /* check if fd is a pipe */
700 HANDLE h
= (HANDLE
) _get_osfhandle(fd
);
701 if (GetFileType(h
) == FILE_TYPE_PIPE
)
710 int mingw_access(const char *filename
, int mode
)
712 wchar_t wfilename
[MAX_PATH
];
713 if (!strcmp("nul", filename
) || !strcmp("/dev/null", filename
))
715 if (xutftowcs_path(wfilename
, filename
) < 0)
717 /* X_OK is not supported by the MSVCRT version */
718 return _waccess(wfilename
, mode
& ~X_OK
);
721 int mingw_chdir(const char *dirname
)
723 wchar_t wdirname
[MAX_PATH
];
724 if (xutftowcs_path(wdirname
, dirname
) < 0)
726 return _wchdir(wdirname
);
729 int mingw_chmod(const char *filename
, int mode
)
731 wchar_t wfilename
[MAX_PATH
];
732 if (xutftowcs_path(wfilename
, filename
) < 0)
734 return _wchmod(wfilename
, mode
);
738 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
739 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
741 static inline long long filetime_to_hnsec(const FILETIME
*ft
)
743 long long winTime
= ((long long)ft
->dwHighDateTime
<< 32) + ft
->dwLowDateTime
;
744 /* Windows to Unix Epoch conversion */
745 return winTime
- 116444736000000000LL;
748 static inline void filetime_to_timespec(const FILETIME
*ft
, struct timespec
*ts
)
750 long long hnsec
= filetime_to_hnsec(ft
);
751 ts
->tv_sec
= (time_t)(hnsec
/ 10000000);
752 ts
->tv_nsec
= (hnsec
% 10000000) * 100;
756 * Verifies that safe_create_leading_directories() would succeed.
758 static int has_valid_directory_prefix(wchar_t *wfilename
)
760 int n
= wcslen(wfilename
);
763 wchar_t c
= wfilename
[--n
];
769 wfilename
[n
] = L
'\0';
770 attributes
= GetFileAttributesW(wfilename
);
773 (FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_DEVICE
))
775 if (attributes
== INVALID_FILE_ATTRIBUTES
)
776 switch (GetLastError()) {
777 case ERROR_PATH_NOT_FOUND
:
779 case ERROR_FILE_NOT_FOUND
:
780 /* This implies parent directory exists. */
788 /* We keep the do_lstat code in a separate function to avoid recursion.
789 * When a path ends with a slash, the stat will fail with ENOENT. In
790 * this case, we strip the trailing slashes and stat again.
792 * If follow is true then act like stat() and report on the link
793 * target. Otherwise report on the link itself.
795 static int do_lstat(int follow
, const char *file_name
, struct stat
*buf
)
797 WIN32_FILE_ATTRIBUTE_DATA fdata
;
798 wchar_t wfilename
[MAX_PATH
];
799 if (xutftowcs_path(wfilename
, file_name
) < 0)
802 if (GetFileAttributesExW(wfilename
, GetFileExInfoStandard
, &fdata
)) {
807 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
808 buf
->st_size
= fdata
.nFileSizeLow
|
809 (((off_t
)fdata
.nFileSizeHigh
)<<32);
810 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
811 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
812 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
813 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
814 if (fdata
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) {
815 WIN32_FIND_DATAW findbuf
;
816 HANDLE handle
= FindFirstFileW(wfilename
, &findbuf
);
817 if (handle
!= INVALID_HANDLE_VALUE
) {
818 if ((findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) &&
819 (findbuf
.dwReserved0
== IO_REPARSE_TAG_SYMLINK
)) {
821 char buffer
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
822 buf
->st_size
= readlink(file_name
, buffer
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
);
824 buf
->st_mode
= S_IFLNK
;
826 buf
->st_mode
|= S_IREAD
;
827 if (!(findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
828 buf
->st_mode
|= S_IWRITE
;
835 switch (GetLastError()) {
836 case ERROR_ACCESS_DENIED
:
837 case ERROR_SHARING_VIOLATION
:
838 case ERROR_LOCK_VIOLATION
:
839 case ERROR_SHARING_BUFFER_EXCEEDED
:
842 case ERROR_BUFFER_OVERFLOW
:
843 errno
= ENAMETOOLONG
;
845 case ERROR_NOT_ENOUGH_MEMORY
:
848 case ERROR_PATH_NOT_FOUND
:
849 if (!has_valid_directory_prefix(wfilename
)) {
861 /* We provide our own lstat/fstat functions, since the provided
862 * lstat/fstat functions are so slow. These stat functions are
863 * tailored for Git's usage (read: fast), and are not meant to be
864 * complete. Note that Git stat()s are redirected to mingw_lstat()
865 * too, since Windows doesn't really handle symlinks that well.
867 static int do_stat_internal(int follow
, const char *file_name
, struct stat
*buf
)
870 char alt_name
[PATH_MAX
];
872 if (!do_lstat(follow
, file_name
, buf
))
875 /* if file_name ended in a '/', Windows returned ENOENT;
876 * try again without trailing slashes
881 namelen
= strlen(file_name
);
882 if (namelen
&& file_name
[namelen
-1] != '/')
884 while (namelen
&& file_name
[namelen
-1] == '/')
886 if (!namelen
|| namelen
>= PATH_MAX
)
889 memcpy(alt_name
, file_name
, namelen
);
890 alt_name
[namelen
] = 0;
891 return do_lstat(follow
, alt_name
, buf
);
894 static int get_file_info_by_handle(HANDLE hnd
, struct stat
*buf
)
896 BY_HANDLE_FILE_INFORMATION fdata
;
898 if (!GetFileInformationByHandle(hnd
, &fdata
)) {
899 errno
= err_win_to_posix(GetLastError());
907 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
908 buf
->st_size
= fdata
.nFileSizeLow
|
909 (((off_t
)fdata
.nFileSizeHigh
)<<32);
910 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
911 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
912 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
913 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
917 int mingw_lstat(const char *file_name
, struct stat
*buf
)
919 return do_stat_internal(0, file_name
, buf
);
921 int mingw_stat(const char *file_name
, struct stat
*buf
)
923 return do_stat_internal(1, file_name
, buf
);
926 int mingw_fstat(int fd
, struct stat
*buf
)
928 HANDLE fh
= (HANDLE
)_get_osfhandle(fd
);
929 DWORD avail
, type
= GetFileType(fh
) & ~FILE_TYPE_REMOTE
;
933 return get_file_info_by_handle(fh
, buf
);
937 /* initialize stat fields */
938 memset(buf
, 0, sizeof(*buf
));
941 if (type
== FILE_TYPE_CHAR
) {
942 buf
->st_mode
= _S_IFCHR
;
944 buf
->st_mode
= _S_IFIFO
;
945 if (PeekNamedPipe(fh
, NULL
, 0, NULL
, &avail
, NULL
))
946 buf
->st_size
= avail
;
956 static inline void time_t_to_filetime(time_t t
, FILETIME
*ft
)
958 long long winTime
= t
* 10000000LL + 116444736000000000LL;
959 ft
->dwLowDateTime
= winTime
;
960 ft
->dwHighDateTime
= winTime
>> 32;
963 int mingw_utime (const char *file_name
, const struct utimbuf
*times
)
968 wchar_t wfilename
[MAX_PATH
];
971 if (xutftowcs_path(wfilename
, file_name
) < 0)
974 /* must have write permission */
975 attrs
= GetFileAttributesW(wfilename
);
976 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
977 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
978 /* ignore errors here; open() will report them */
979 SetFileAttributesW(wfilename
, attrs
& ~FILE_ATTRIBUTE_READONLY
);
982 osfilehandle
= CreateFileW(wfilename
,
983 FILE_WRITE_ATTRIBUTES
,
984 0 /*FileShare.None*/,
987 (attrs
!= INVALID_FILE_ATTRIBUTES
&&
988 (attrs
& FILE_ATTRIBUTE_DIRECTORY
)) ?
989 FILE_FLAG_BACKUP_SEMANTICS
: 0,
991 if (osfilehandle
== INVALID_HANDLE_VALUE
) {
992 errno
= err_win_to_posix(GetLastError());
998 time_t_to_filetime(times
->modtime
, &mft
);
999 time_t_to_filetime(times
->actime
, &aft
);
1001 GetSystemTimeAsFileTime(&mft
);
1005 if (!SetFileTime(osfilehandle
, NULL
, &aft
, &mft
)) {
1011 if (osfilehandle
!= INVALID_HANDLE_VALUE
)
1012 CloseHandle(osfilehandle
);
1015 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
1016 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
1017 /* ignore errors again */
1018 SetFileAttributesW(wfilename
, attrs
);
1024 size_t mingw_strftime(char *s
, size_t max
,
1025 const char *format
, const struct tm
*tm
)
1027 /* a pointer to the original strftime in case we can't find the UCRT version */
1028 static size_t (*fallback
)(char *, size_t, const char *, const struct tm
*) = strftime
;
1030 DECLARE_PROC_ADDR(ucrtbase
.dll
, size_t, __cdecl
, strftime
, char *, size_t,
1031 const char *, const struct tm
*);
1033 if (INIT_PROC_ADDR(strftime
))
1034 ret
= strftime(s
, max
, format
, tm
);
1036 ret
= fallback(s
, max
, format
, tm
);
1038 if (!ret
&& errno
== EINVAL
)
1039 die("invalid strftime format: '%s'", format
);
1043 unsigned int sleep (unsigned int seconds
)
1045 Sleep(seconds
*1000);
1049 char *mingw_mktemp(char *template)
1051 wchar_t wtemplate
[MAX_PATH
];
1052 if (xutftowcs_path(wtemplate
, template) < 0)
1054 if (!_wmktemp(wtemplate
))
1056 if (xwcstoutf(template, wtemplate
, strlen(template) + 1) < 0)
1061 int mkstemp(char *template)
1063 return git_mkstemp_mode(template, 0600);
1066 int gettimeofday(struct timeval
*tv
, void *tz
)
1071 GetSystemTimeAsFileTime(&ft
);
1072 hnsec
= filetime_to_hnsec(&ft
);
1073 tv
->tv_sec
= hnsec
/ 10000000;
1074 tv
->tv_usec
= (hnsec
% 10000000) / 10;
1078 int pipe(int filedes
[2])
1082 /* this creates non-inheritable handles */
1083 if (!CreatePipe(&h
[0], &h
[1], NULL
, 8192)) {
1084 errno
= err_win_to_posix(GetLastError());
1087 filedes
[0] = _open_osfhandle(HCAST(int, h
[0]), O_NOINHERIT
);
1088 if (filedes
[0] < 0) {
1093 filedes
[1] = _open_osfhandle(HCAST(int, h
[1]), O_NOINHERIT
);
1094 if (filedes
[1] < 0) {
1103 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
1105 if (gmtime_s(result
, timep
) == 0)
1110 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
1112 if (localtime_s(result
, timep
) == 0)
1118 char *mingw_getcwd(char *pointer
, int len
)
1120 wchar_t cwd
[MAX_PATH
], wpointer
[MAX_PATH
];
1121 DWORD ret
= GetCurrentDirectoryW(ARRAY_SIZE(cwd
), cwd
);
1123 if (!ret
|| ret
>= ARRAY_SIZE(cwd
)) {
1124 errno
= ret
? ENAMETOOLONG
: err_win_to_posix(GetLastError());
1127 ret
= GetLongPathNameW(cwd
, wpointer
, ARRAY_SIZE(wpointer
));
1128 if (!ret
&& GetLastError() == ERROR_ACCESS_DENIED
) {
1129 HANDLE hnd
= CreateFileW(cwd
, 0,
1130 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
, NULL
,
1131 OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
1132 if (hnd
== INVALID_HANDLE_VALUE
)
1134 ret
= GetFinalPathNameByHandleW(hnd
, wpointer
, ARRAY_SIZE(wpointer
), 0);
1136 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1138 if (xwcstoutf(pointer
, normalize_ntpath(wpointer
), len
) < 0)
1142 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1144 if (GetFileAttributesW(wpointer
) == INVALID_FILE_ATTRIBUTES
) {
1148 if (xwcstoutf(pointer
, wpointer
, len
) < 0)
1150 convert_slashes(pointer
);
1155 * See "Parsing C++ Command-Line Arguments" at Microsoft's Docs:
1156 * https://docs.microsoft.com/en-us/cpp/cpp/parsing-cpp-command-line-arguments
1158 static const char *quote_arg_msvc(const char *arg
)
1160 /* count chars to quote */
1162 int force_quotes
= 0;
1164 const char *p
= arg
;
1165 if (!*p
) force_quotes
= 1;
1167 if (isspace(*p
) || *p
== '*' || *p
== '?' || *p
== '{' || *p
== '\'')
1171 else if (*p
== '\\') {
1173 while (*p
== '\\') {
1178 if (*p
== '"' || !*p
)
1185 if (!force_quotes
&& n
== 0)
1188 /* insert \ where necessary */
1189 d
= q
= xmalloc(st_add3(len
, n
, 3));
1194 else if (*arg
== '\\') {
1196 while (*arg
== '\\') {
1200 if (*arg
== '"' || !*arg
) {
1203 /* don't escape the surrounding end quote */
1218 static const char *quote_arg_msys2(const char *arg
)
1220 struct strbuf buf
= STRBUF_INIT
;
1221 const char *p2
= arg
, *p
;
1223 for (p
= arg
; *p
; p
++) {
1224 int ws
= isspace(*p
);
1225 if (!ws
&& *p
!= '\\' && *p
!= '"' && *p
!= '{' && *p
!= '\'' &&
1226 *p
!= '?' && *p
!= '*' && *p
!= '~')
1229 strbuf_addch(&buf
, '"');
1231 strbuf_add(&buf
, p2
, p
- p2
);
1232 if (*p
== '\\' || *p
== '"')
1233 strbuf_addch(&buf
, '\\');
1238 strbuf_addch(&buf
, '"');
1242 strbuf_add(&buf
, p2
, p
- p2
);
1244 strbuf_addch(&buf
, '"');
1245 return strbuf_detach(&buf
, 0);
1248 static const char *parse_interpreter(const char *cmd
)
1250 static char buf
[100];
1254 /* don't even try a .exe */
1256 if (n
>= 4 && !strcasecmp(cmd
+n
-4, ".exe"))
1259 fd
= open(cmd
, O_RDONLY
);
1262 n
= read(fd
, buf
, sizeof(buf
)-1);
1264 if (n
< 4) /* at least '#!/x' and not error */
1267 if (buf
[0] != '#' || buf
[1] != '!')
1270 p
= buf
+ strcspn(buf
, "\r\n");
1275 if (!(p
= strrchr(buf
+2, '/')) && !(p
= strrchr(buf
+2, '\\')))
1278 if ((opt
= strchr(p
+1, ' ')))
1284 * exe_only means that we only want to detect .exe files, but not scripts
1285 * (which do not have an extension)
1287 static char *lookup_prog(const char *dir
, int dirlen
, const char *cmd
,
1288 int isexe
, int exe_only
)
1290 char path
[MAX_PATH
];
1291 wchar_t wpath
[MAX_PATH
];
1292 snprintf(path
, sizeof(path
), "%.*s\\%s.exe", dirlen
, dir
, cmd
);
1294 if (xutftowcs_path(wpath
, path
) < 0)
1297 if (!isexe
&& _waccess(wpath
, F_OK
) == 0)
1298 return xstrdup(path
);
1299 wpath
[wcslen(wpath
)-4] = '\0';
1300 if ((!exe_only
|| isexe
) && _waccess(wpath
, F_OK
) == 0) {
1301 if (!(GetFileAttributesW(wpath
) & FILE_ATTRIBUTE_DIRECTORY
)) {
1302 path
[strlen(path
)-4] = '\0';
1303 return xstrdup(path
);
1310 * Determines the absolute path of cmd using the split path in path.
1311 * If cmd contains a slash or backslash, no lookup is performed.
1313 static char *path_lookup(const char *cmd
, int exe_only
)
1317 int len
= strlen(cmd
);
1318 int isexe
= len
>= 4 && !strcasecmp(cmd
+len
-4, ".exe");
1320 if (strpbrk(cmd
, "/\\"))
1321 return xstrdup(cmd
);
1323 path
= mingw_getenv("PATH");
1328 const char *sep
= strchrnul(path
, ';');
1329 int dirlen
= sep
- path
;
1331 prog
= lookup_prog(path
, dirlen
, cmd
, isexe
, exe_only
);
1340 static const wchar_t *wcschrnul(const wchar_t *s
, wchar_t c
)
1342 while (*s
&& *s
!= c
)
1347 /* Compare only keys */
1348 static int wenvcmp(const void *a
, const void *b
)
1350 wchar_t *p
= *(wchar_t **)a
, *q
= *(wchar_t **)b
;
1351 size_t p_len
, q_len
;
1354 p_len
= wcschrnul(p
, L
'=') - p
;
1355 q_len
= wcschrnul(q
, L
'=') - q
;
1357 /* If the length differs, include the shorter key's NUL */
1360 else if (p_len
> q_len
)
1363 return _wcsnicmp(p
, q
, p_len
);
1367 * Build an environment block combining the inherited environment
1368 * merged with the given list of settings.
1370 * Values of the form "KEY=VALUE" in deltaenv override inherited values.
1371 * Values of the form "KEY" in deltaenv delete inherited values.
1373 * Multiple entries in deltaenv for the same key are explicitly allowed.
1375 * We return a contiguous block of UNICODE strings with a final trailing
1378 static wchar_t *make_environment_block(char **deltaenv
)
1380 wchar_t *wenv
= GetEnvironmentStringsW(), *wdeltaenv
, *result
, *p
;
1381 size_t wlen
, s
, delta_size
, size
;
1383 wchar_t **array
= NULL
;
1384 size_t alloc
= 0, nr
= 0, i
;
1386 size
= 1; /* for extra NUL at the end */
1388 /* If there is no deltaenv to apply, simply return a copy. */
1389 if (!deltaenv
|| !*deltaenv
) {
1390 for (p
= wenv
; p
&& *p
; ) {
1391 size_t s
= wcslen(p
) + 1;
1396 ALLOC_ARRAY(result
, size
);
1397 COPY_ARRAY(result
, wenv
, size
);
1398 FreeEnvironmentStringsW(wenv
);
1403 * If there is a deltaenv, let's accumulate all keys into `array`,
1404 * sort them using the stable git_stable_qsort() and then copy,
1405 * skipping duplicate keys
1407 for (p
= wenv
; p
&& *p
; ) {
1408 ALLOC_GROW(array
, nr
+ 1, alloc
);
1415 /* (over-)assess size needed for wchar version of deltaenv */
1416 for (delta_size
= 0, i
= 0; deltaenv
[i
]; i
++)
1417 delta_size
+= strlen(deltaenv
[i
]) * 2 + 1;
1418 ALLOC_ARRAY(wdeltaenv
, delta_size
);
1420 /* convert the deltaenv, appending to array */
1421 for (i
= 0, p
= wdeltaenv
; deltaenv
[i
]; i
++) {
1422 ALLOC_GROW(array
, nr
+ 1, alloc
);
1423 wlen
= xutftowcs(p
, deltaenv
[i
], wdeltaenv
+ delta_size
- p
);
1428 git_stable_qsort(array
, nr
, sizeof(*array
), wenvcmp
);
1429 ALLOC_ARRAY(result
, size
+ delta_size
);
1431 for (p
= result
, i
= 0; i
< nr
; i
++) {
1432 /* Skip any duplicate keys; last one wins */
1433 while (i
+ 1 < nr
&& !wenvcmp(array
+ i
, array
+ i
+ 1))
1436 /* Skip "to delete" entry */
1437 if (!wcschr(array
[i
], L
'='))
1440 size
= wcslen(array
[i
]) + 1;
1441 COPY_ARRAY(p
, array
[i
], size
);
1448 FreeEnvironmentStringsW(wenv
);
1452 static void do_unset_environment_variables(void)
1455 char *p
= unset_environment_variables
;
1462 char *comma
= strchr(p
, ',');
1474 struct pinfo_t
*next
;
1478 static struct pinfo_t
*pinfo
= NULL
;
1479 CRITICAL_SECTION pinfo_cs
;
1481 /* Used to match and chomp off path components */
1482 static inline int match_last_path_component(const char *path
, size_t *len
,
1483 const char *component
)
1485 size_t component_len
= strlen(component
);
1486 if (*len
< component_len
+ 1 ||
1487 !is_dir_sep(path
[*len
- component_len
- 1]) ||
1488 fspathncmp(path
+ *len
- component_len
, component
, component_len
))
1490 *len
-= component_len
+ 1;
1491 /* chomp off repeated dir separators */
1492 while (*len
> 0 && is_dir_sep(path
[*len
- 1]))
1497 static int is_msys2_sh(const char *cmd
)
1502 if (!strcmp(cmd
, "sh")) {
1503 static int ret
= -1;
1509 p
= path_lookup(cmd
, 0);
1513 size_t len
= strlen(p
);
1515 ret
= match_last_path_component(p
, &len
, "sh.exe") &&
1516 match_last_path_component(p
, &len
, "bin") &&
1517 match_last_path_component(p
, &len
, "usr");
1523 if (ends_with(cmd
, "\\sh.exe")) {
1527 sh
= path_lookup("sh", 0);
1529 return !fspathcmp(cmd
, sh
);
1535 static pid_t
mingw_spawnve_fd(const char *cmd
, const char **argv
, char **deltaenv
,
1537 int prepend_cmd
, int fhin
, int fhout
, int fherr
)
1539 static int restrict_handle_inheritance
= -1;
1541 PROCESS_INFORMATION pi
;
1542 LPPROC_THREAD_ATTRIBUTE_LIST attr_list
= NULL
;
1543 HANDLE stdhandles
[3];
1544 DWORD stdhandles_count
= 0;
1547 wchar_t wcmd
[MAX_PATH
], wdir
[MAX_PATH
], *wargs
, *wenvblk
= NULL
;
1548 unsigned flags
= CREATE_UNICODE_ENVIRONMENT
;
1551 const char *(*quote_arg
)(const char *arg
) =
1552 is_msys2_sh(cmd
? cmd
: *argv
) ?
1553 quote_arg_msys2
: quote_arg_msvc
;
1554 const char *strace_env
;
1556 /* Make sure to override previous errors, if any */
1559 if (restrict_handle_inheritance
< 0)
1560 restrict_handle_inheritance
= core_restrict_inherited_handles
;
1562 * The following code to restrict which handles are inherited seems
1563 * to work properly only on Windows 7 and later, so let's disable it
1564 * on Windows Vista and 2008.
1566 if (restrict_handle_inheritance
< 0)
1567 restrict_handle_inheritance
= GetVersion() >> 16 >= 7601;
1569 do_unset_environment_variables();
1571 /* Determine whether or not we are associated to a console */
1572 cons
= CreateFileW(L
"CONOUT$", GENERIC_WRITE
,
1573 FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1574 FILE_ATTRIBUTE_NORMAL
, NULL
);
1575 if (cons
== INVALID_HANDLE_VALUE
) {
1576 /* There is no console associated with this process.
1577 * Since the child is a console process, Windows
1578 * would normally create a console window. But
1579 * since we'll be redirecting std streams, we do
1580 * not need the console.
1581 * It is necessary to use DETACHED_PROCESS
1582 * instead of CREATE_NO_WINDOW to make ssh
1583 * recognize that it has no console.
1585 flags
|= DETACHED_PROCESS
;
1587 /* There is already a console. If we specified
1588 * DETACHED_PROCESS here, too, Windows would
1589 * disassociate the child from the console.
1590 * The same is true for CREATE_NO_WINDOW.
1595 memset(&si
, 0, sizeof(si
));
1596 si
.StartupInfo
.cb
= sizeof(si
);
1597 si
.StartupInfo
.hStdInput
= winansi_get_osfhandle(fhin
);
1598 si
.StartupInfo
.hStdOutput
= winansi_get_osfhandle(fhout
);
1599 si
.StartupInfo
.hStdError
= winansi_get_osfhandle(fherr
);
1601 /* The list of handles cannot contain duplicates */
1602 if (si
.StartupInfo
.hStdInput
!= INVALID_HANDLE_VALUE
)
1603 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdInput
;
1604 if (si
.StartupInfo
.hStdOutput
!= INVALID_HANDLE_VALUE
&&
1605 si
.StartupInfo
.hStdOutput
!= si
.StartupInfo
.hStdInput
)
1606 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdOutput
;
1607 if (si
.StartupInfo
.hStdError
!= INVALID_HANDLE_VALUE
&&
1608 si
.StartupInfo
.hStdError
!= si
.StartupInfo
.hStdInput
&&
1609 si
.StartupInfo
.hStdError
!= si
.StartupInfo
.hStdOutput
)
1610 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdError
;
1611 if (stdhandles_count
)
1612 si
.StartupInfo
.dwFlags
|= STARTF_USESTDHANDLES
;
1614 if (*argv
&& !strcmp(cmd
, *argv
))
1616 else if (xutftowcs_path(wcmd
, cmd
) < 0)
1618 if (dir
&& xutftowcs_path(wdir
, dir
) < 0)
1621 /* concatenate argv, quoting args as we go */
1622 strbuf_init(&args
, 0);
1624 char *quoted
= (char *)quote_arg(cmd
);
1625 strbuf_addstr(&args
, quoted
);
1629 for (; *argv
; argv
++) {
1630 char *quoted
= (char *)quote_arg(*argv
);
1632 strbuf_addch(&args
, ' ');
1633 strbuf_addstr(&args
, quoted
);
1634 if (quoted
!= *argv
)
1638 strace_env
= getenv("GIT_STRACE_COMMANDS");
1640 char *p
= path_lookup("strace.exe", 1);
1642 return error("strace not found!");
1643 if (xutftowcs_path(wcmd
, p
) < 0) {
1648 if (!strcmp("1", strace_env
) ||
1649 !strcasecmp("yes", strace_env
) ||
1650 !strcasecmp("true", strace_env
))
1651 strbuf_insert(&args
, 0, "strace ", 7);
1653 const char *quoted
= quote_arg(strace_env
);
1654 struct strbuf buf
= STRBUF_INIT
;
1655 strbuf_addf(&buf
, "strace -o %s ", quoted
);
1656 if (quoted
!= strace_env
)
1657 free((char *)quoted
);
1658 strbuf_insert(&args
, 0, buf
.buf
, buf
.len
);
1659 strbuf_release(&buf
);
1663 ALLOC_ARRAY(wargs
, st_add(st_mult(2, args
.len
), 1));
1664 xutftowcs(wargs
, args
.buf
, 2 * args
.len
+ 1);
1665 strbuf_release(&args
);
1667 wenvblk
= make_environment_block(deltaenv
);
1669 memset(&pi
, 0, sizeof(pi
));
1670 if (restrict_handle_inheritance
&& stdhandles_count
&&
1671 (InitializeProcThreadAttributeList(NULL
, 1, 0, &size
) ||
1672 GetLastError() == ERROR_INSUFFICIENT_BUFFER
) &&
1673 (attr_list
= (LPPROC_THREAD_ATTRIBUTE_LIST
)
1674 (HeapAlloc(GetProcessHeap(), 0, size
))) &&
1675 InitializeProcThreadAttributeList(attr_list
, 1, 0, &size
) &&
1676 UpdateProcThreadAttribute(attr_list
, 0,
1677 PROC_THREAD_ATTRIBUTE_HANDLE_LIST
,
1679 stdhandles_count
* sizeof(HANDLE
),
1681 si
.lpAttributeList
= attr_list
;
1682 flags
|= EXTENDED_STARTUPINFO_PRESENT
;
1685 ret
= CreateProcessW(*wcmd
? wcmd
: NULL
, wargs
, NULL
, NULL
,
1686 stdhandles_count
? TRUE
: FALSE
,
1687 flags
, wenvblk
, dir
? wdir
: NULL
,
1688 &si
.StartupInfo
, &pi
);
1691 * On Windows 2008 R2, it seems that specifying certain types of handles
1692 * (such as FILE_TYPE_CHAR or FILE_TYPE_PIPE) will always produce an
1693 * error. Rather than playing finicky and fragile games, let's just try
1694 * to detect this situation and simply try again without restricting any
1695 * handle inheritance. This is still better than failing to create
1698 if (!ret
&& restrict_handle_inheritance
&& stdhandles_count
) {
1699 DWORD err
= GetLastError();
1700 struct strbuf buf
= STRBUF_INIT
;
1702 if (err
!= ERROR_NO_SYSTEM_RESOURCES
&&
1704 * On Windows 7 and earlier, handles on pipes and character
1705 * devices are inherited automatically, and cannot be
1706 * specified in the thread handle list. Rather than trying
1707 * to catch each and every corner case (and running the
1708 * chance of *still* forgetting a few), let's just fall
1709 * back to creating the process without trying to limit the
1710 * handle inheritance.
1712 !(err
== ERROR_INVALID_PARAMETER
&&
1713 GetVersion() >> 16 < 9200) &&
1714 !getenv("SUPPRESS_HANDLE_INHERITANCE_WARNING")) {
1718 setenv("SUPPRESS_HANDLE_INHERITANCE_WARNING", "1", 1);
1720 for (i
= 0; i
< stdhandles_count
; i
++) {
1721 HANDLE h
= stdhandles
[i
];
1722 strbuf_addf(&buf
, "handle #%d: %p (type %lx, "
1723 "handle info (%d) %lx\n", i
, h
,
1725 GetHandleInformation(h
, &fl
),
1728 strbuf_addstr(&buf
, "\nThis is a bug; please report it "
1729 "at\nhttps://github.com/git-for-windows/"
1730 "git/issues/new\n\n"
1731 "To suppress this warning, please set "
1732 "the environment variable\n\n"
1733 "\tSUPPRESS_HANDLE_INHERITANCE_WARNING=1"
1736 restrict_handle_inheritance
= 0;
1737 flags
&= ~EXTENDED_STARTUPINFO_PRESENT
;
1738 ret
= CreateProcessW(*wcmd
? wcmd
: NULL
, wargs
, NULL
, NULL
,
1739 TRUE
, flags
, wenvblk
, dir
? wdir
: NULL
,
1740 &si
.StartupInfo
, &pi
);
1742 errno
= err_win_to_posix(GetLastError());
1743 if (ret
&& buf
.len
) {
1744 warning("failed to restrict file handles (%ld)\n\n%s",
1747 strbuf_release(&buf
);
1749 errno
= err_win_to_posix(GetLastError());
1751 if (si
.lpAttributeList
)
1752 DeleteProcThreadAttributeList(si
.lpAttributeList
);
1754 HeapFree(GetProcessHeap(), 0, attr_list
);
1762 CloseHandle(pi
.hThread
);
1765 * The process ID is the human-readable identifier of the process
1766 * that we want to present in log and error messages. The handle
1767 * is not useful for this purpose. But we cannot close it, either,
1768 * because it is not possible to turn a process ID into a process
1769 * handle after the process terminated.
1770 * Keep the handle in a list for waitpid.
1772 EnterCriticalSection(&pinfo_cs
);
1774 struct pinfo_t
*info
= xmalloc(sizeof(struct pinfo_t
));
1775 info
->pid
= pi
.dwProcessId
;
1776 info
->proc
= pi
.hProcess
;
1780 LeaveCriticalSection(&pinfo_cs
);
1782 return (pid_t
)pi
.dwProcessId
;
1785 static pid_t
mingw_spawnv(const char *cmd
, const char **argv
, int prepend_cmd
)
1787 return mingw_spawnve_fd(cmd
, argv
, NULL
, NULL
, prepend_cmd
, 0, 1, 2);
1790 pid_t
mingw_spawnvpe(const char *cmd
, const char **argv
, char **deltaenv
,
1792 int fhin
, int fhout
, int fherr
)
1795 char *prog
= path_lookup(cmd
, 0);
1802 const char *interpr
= parse_interpreter(prog
);
1805 const char *argv0
= argv
[0];
1806 char *iprog
= path_lookup(interpr
, 1);
1813 pid
= mingw_spawnve_fd(iprog
, argv
, deltaenv
, dir
, 1,
1814 fhin
, fhout
, fherr
);
1820 pid
= mingw_spawnve_fd(prog
, argv
, deltaenv
, dir
, 0,
1821 fhin
, fhout
, fherr
);
1827 static int try_shell_exec(const char *cmd
, char *const *argv
)
1829 const char *interpr
= parse_interpreter(cmd
);
1835 prog
= path_lookup(interpr
, 1);
1843 while (argv
[argc
]) argc
++;
1844 ALLOC_ARRAY(argv2
, argc
+ 1);
1845 argv2
[0] = (char *)cmd
; /* full path to the script file */
1846 COPY_ARRAY(&argv2
[1], &argv
[1], argc
);
1847 exec_id
= trace2_exec(prog
, argv2
);
1848 pid
= mingw_spawnv(prog
, argv2
, 1);
1851 if (waitpid(pid
, &status
, 0) < 0)
1853 trace2_exec_result(exec_id
, status
);
1856 trace2_exec_result(exec_id
, -1);
1857 pid
= 1; /* indicate that we tried but failed */
1864 int mingw_execv(const char *cmd
, char *const *argv
)
1866 /* check if git_command is a shell script */
1867 if (!try_shell_exec(cmd
, argv
)) {
1871 exec_id
= trace2_exec(cmd
, (const char **)argv
);
1872 pid
= mingw_spawnv(cmd
, (const char **)argv
, 0);
1874 trace2_exec_result(exec_id
, -1);
1877 if (waitpid(pid
, &status
, 0) < 0)
1879 trace2_exec_result(exec_id
, status
);
1885 int mingw_execvp(const char *cmd
, char *const *argv
)
1887 char *prog
= path_lookup(cmd
, 0);
1890 mingw_execv(prog
, argv
);
1898 int mingw_kill(pid_t pid
, int sig
)
1900 if (pid
> 0 && sig
== SIGTERM
) {
1901 HANDLE h
= OpenProcess(PROCESS_TERMINATE
, FALSE
, pid
);
1903 if (TerminateProcess(h
, -1)) {
1908 errno
= err_win_to_posix(GetLastError());
1911 } else if (pid
> 0 && sig
== 0) {
1912 HANDLE h
= OpenProcess(PROCESS_QUERY_INFORMATION
, FALSE
, pid
);
1924 * UTF-8 versions of getenv(), putenv() and unsetenv().
1925 * Internally, they use the CRT's stock UNICODE routines
1926 * to avoid data loss.
1928 char *mingw_getenv(const char *name
)
1930 #define GETENV_MAX_RETAIN 64
1931 static char *values
[GETENV_MAX_RETAIN
];
1932 static int value_counter
;
1933 int len_key
, len_value
;
1936 wchar_t w_value
[32768];
1938 if (!name
|| !*name
)
1941 len_key
= strlen(name
) + 1;
1942 /* We cannot use xcalloc() here because that uses getenv() itself */
1943 w_key
= calloc(len_key
, sizeof(wchar_t));
1945 die("Out of memory, (tried to allocate %u wchar_t's)", len_key
);
1946 xutftowcs(w_key
, name
, len_key
);
1947 /* GetEnvironmentVariableW() only sets the last error upon failure */
1948 SetLastError(ERROR_SUCCESS
);
1949 len_value
= GetEnvironmentVariableW(w_key
, w_value
, ARRAY_SIZE(w_value
));
1950 if (!len_value
&& GetLastError() == ERROR_ENVVAR_NOT_FOUND
) {
1956 len_value
= len_value
* 3 + 1;
1957 /* We cannot use xcalloc() here because that uses getenv() itself */
1958 value
= calloc(len_value
, sizeof(char));
1960 die("Out of memory, (tried to allocate %u bytes)", len_value
);
1961 xwcstoutf(value
, w_value
, len_value
);
1964 * We return `value` which is an allocated value and the caller is NOT
1965 * expecting to have to free it, so we keep a round-robin array,
1966 * invalidating the buffer after GETENV_MAX_RETAIN getenv() calls.
1968 free(values
[value_counter
]);
1969 values
[value_counter
++] = value
;
1970 if (value_counter
>= ARRAY_SIZE(values
))
1976 int mingw_putenv(const char *namevalue
)
1979 wchar_t *wide
, *equal
;
1982 if (!namevalue
|| !*namevalue
)
1985 size
= strlen(namevalue
) * 2 + 1;
1986 wide
= calloc(size
, sizeof(wchar_t));
1988 die("Out of memory, (tried to allocate %u wchar_t's)", size
);
1989 xutftowcs(wide
, namevalue
, size
);
1990 equal
= wcschr(wide
, L
'=');
1992 result
= SetEnvironmentVariableW(wide
, NULL
);
1995 result
= SetEnvironmentVariableW(wide
, equal
+ 1);
2000 errno
= err_win_to_posix(GetLastError());
2002 return result
? 0 : -1;
2005 static void ensure_socket_initialization(void)
2008 static int initialized
= 0;
2013 if (WSAStartup(MAKEWORD(2,2), &wsa
))
2014 die("unable to initialize winsock subsystem, error %d",
2017 atexit((void(*)(void)) WSACleanup
);
2022 int mingw_gethostname(char *name
, int namelen
)
2024 ensure_socket_initialization();
2025 return gethostname(name
, namelen
);
2028 #undef gethostbyname
2029 struct hostent
*mingw_gethostbyname(const char *host
)
2031 ensure_socket_initialization();
2032 return gethostbyname(host
);
2036 int mingw_getaddrinfo(const char *node
, const char *service
,
2037 const struct addrinfo
*hints
, struct addrinfo
**res
)
2039 ensure_socket_initialization();
2040 return getaddrinfo(node
, service
, hints
, res
);
2043 int mingw_socket(int domain
, int type
, int protocol
)
2048 ensure_socket_initialization();
2049 s
= WSASocket(domain
, type
, protocol
, NULL
, 0, 0);
2050 if (s
== INVALID_SOCKET
) {
2052 * WSAGetLastError() values are regular BSD error codes
2053 * biased by WSABASEERR.
2054 * However, strerror() does not know about networking
2055 * specific errors, which are values beginning at 38 or so.
2056 * Therefore, we choose to leave the biased error code
2057 * in errno so that _if_ someone looks up the code somewhere,
2058 * then it is at least the number that are usually listed.
2060 errno
= WSAGetLastError();
2063 /* convert into a file descriptor */
2064 if ((sockfd
= _open_osfhandle(s
, O_RDWR
|O_BINARY
)) < 0) {
2066 return error("unable to make a socket file descriptor: %s",
2073 int mingw_connect(int sockfd
, struct sockaddr
*sa
, size_t sz
)
2075 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2076 return connect(s
, sa
, sz
);
2080 int mingw_bind(int sockfd
, struct sockaddr
*sa
, size_t sz
)
2082 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2083 return bind(s
, sa
, sz
);
2087 int mingw_setsockopt(int sockfd
, int lvl
, int optname
, void *optval
, int optlen
)
2089 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2090 return setsockopt(s
, lvl
, optname
, (const char*)optval
, optlen
);
2094 int mingw_shutdown(int sockfd
, int how
)
2096 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2097 return shutdown(s
, how
);
2101 int mingw_listen(int sockfd
, int backlog
)
2103 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2104 return listen(s
, backlog
);
2108 int mingw_accept(int sockfd1
, struct sockaddr
*sa
, socklen_t
*sz
)
2112 SOCKET s1
= (SOCKET
)_get_osfhandle(sockfd1
);
2113 SOCKET s2
= accept(s1
, sa
, sz
);
2115 /* convert into a file descriptor */
2116 if ((sockfd2
= _open_osfhandle(s2
, O_RDWR
|O_BINARY
)) < 0) {
2119 return error("unable to make a socket file descriptor: %s",
2126 int mingw_rename(const char *pold
, const char *pnew
)
2130 wchar_t wpold
[MAX_PATH
], wpnew
[MAX_PATH
];
2131 if (xutftowcs_path(wpold
, pold
) < 0 || xutftowcs_path(wpnew
, pnew
) < 0)
2135 * Try native rename() first to get errno right.
2136 * It is based on MoveFile(), which cannot overwrite existing files.
2138 if (!_wrename(wpold
, wpnew
))
2140 if (errno
!= EEXIST
)
2143 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
2145 /* TODO: translate more errors */
2146 gle
= GetLastError();
2147 if (gle
== ERROR_ACCESS_DENIED
&&
2148 (attrs
= GetFileAttributesW(wpnew
)) != INVALID_FILE_ATTRIBUTES
) {
2149 if (attrs
& FILE_ATTRIBUTE_DIRECTORY
) {
2150 DWORD attrsold
= GetFileAttributesW(wpold
);
2151 if (attrsold
== INVALID_FILE_ATTRIBUTES
||
2152 !(attrsold
& FILE_ATTRIBUTE_DIRECTORY
))
2154 else if (!_wrmdir(wpnew
))
2158 if ((attrs
& FILE_ATTRIBUTE_READONLY
) &&
2159 SetFileAttributesW(wpnew
, attrs
& ~FILE_ATTRIBUTE_READONLY
)) {
2160 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
2162 gle
= GetLastError();
2163 /* revert file attributes on failure */
2164 SetFileAttributesW(wpnew
, attrs
);
2167 if (tries
< ARRAY_SIZE(delay
) && gle
== ERROR_ACCESS_DENIED
) {
2169 * We assume that some other process had the source or
2170 * destination file open at the wrong moment and retry.
2171 * In order to give the other process a higher chance to
2172 * complete its operation, we give up our time slice now.
2173 * If we have to retry again, we do sleep a bit.
2175 Sleep(delay
[tries
]);
2179 if (gle
== ERROR_ACCESS_DENIED
&&
2180 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
2181 "Should I try again?", pold
, pnew
))
2189 * Note that this doesn't return the actual pagesize, but
2190 * the allocation granularity. If future Windows specific git code
2191 * needs the real getpagesize function, we need to find another solution.
2193 int mingw_getpagesize(void)
2197 return si
.dwAllocationGranularity
;
2200 /* See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724435.aspx */
2201 enum EXTENDED_NAME_FORMAT
{
2203 NameUserPrincipal
= 8
2206 static char *get_extended_user_info(enum EXTENDED_NAME_FORMAT type
)
2208 DECLARE_PROC_ADDR(secur32
.dll
, BOOL
, SEC_ENTRY
, GetUserNameExW
,
2209 enum EXTENDED_NAME_FORMAT
, LPCWSTR
, PULONG
);
2210 static wchar_t wbuffer
[1024];
2213 if (!INIT_PROC_ADDR(GetUserNameExW
))
2216 len
= ARRAY_SIZE(wbuffer
);
2217 if (GetUserNameExW(type
, wbuffer
, &len
)) {
2218 char *converted
= xmalloc((len
*= 3));
2219 if (xwcstoutf(converted
, wbuffer
, len
) >= 0)
2227 char *mingw_query_user_email(void)
2229 return get_extended_user_info(NameUserPrincipal
);
2232 struct passwd
*getpwuid(int uid
)
2234 static unsigned initialized
;
2235 static char user_name
[100];
2236 static struct passwd
*p
;
2243 len
= ARRAY_SIZE(buf
);
2244 if (!GetUserNameW(buf
, &len
)) {
2249 if (xwcstoutf(user_name
, buf
, sizeof(user_name
)) < 0) {
2254 p
= xmalloc(sizeof(*p
));
2255 p
->pw_name
= user_name
;
2256 p
->pw_gecos
= get_extended_user_info(NameDisplay
);
2258 p
->pw_gecos
= "unknown";
2265 static HANDLE timer_event
;
2266 static HANDLE timer_thread
;
2267 static int timer_interval
;
2268 static int one_shot
;
2269 static sig_handler_t timer_fn
= SIG_DFL
, sigint_fn
= SIG_DFL
;
2271 /* The timer works like this:
2272 * The thread, ticktack(), is a trivial routine that most of the time
2273 * only waits to receive the signal to terminate. The main thread tells
2274 * the thread to terminate by setting the timer_event to the signalled
2276 * But ticktack() interrupts the wait state after the timer's interval
2277 * length to call the signal handler.
2280 static unsigned __stdcall
ticktack(void *dummy
)
2282 while (WaitForSingleObject(timer_event
, timer_interval
) == WAIT_TIMEOUT
) {
2283 mingw_raise(SIGALRM
);
2290 static int start_timer_thread(void)
2292 timer_event
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
2294 timer_thread
= (HANDLE
) _beginthreadex(NULL
, 0, ticktack
, NULL
, 0, NULL
);
2296 return errno
= ENOMEM
,
2297 error("cannot start timer thread");
2299 return errno
= ENOMEM
,
2300 error("cannot allocate resources for timer");
2304 static void stop_timer_thread(void)
2307 SetEvent(timer_event
); /* tell thread to terminate */
2309 int rc
= WaitForSingleObject(timer_thread
, 10000);
2310 if (rc
== WAIT_TIMEOUT
)
2311 error("timer thread did not terminate timely");
2312 else if (rc
!= WAIT_OBJECT_0
)
2313 error("waiting for timer thread failed: %lu",
2315 CloseHandle(timer_thread
);
2318 CloseHandle(timer_event
);
2320 timer_thread
= NULL
;
2323 static inline int is_timeval_eq(const struct timeval
*i1
, const struct timeval
*i2
)
2325 return i1
->tv_sec
== i2
->tv_sec
&& i1
->tv_usec
== i2
->tv_usec
;
2328 int setitimer(int type
, struct itimerval
*in
, struct itimerval
*out
)
2330 static const struct timeval zero
;
2331 static int atexit_done
;
2334 return errno
= EINVAL
,
2335 error("setitimer param 3 != NULL not implemented");
2336 if (!is_timeval_eq(&in
->it_interval
, &zero
) &&
2337 !is_timeval_eq(&in
->it_interval
, &in
->it_value
))
2338 return errno
= EINVAL
,
2339 error("setitimer: it_interval must be zero or eq it_value");
2342 stop_timer_thread();
2344 if (is_timeval_eq(&in
->it_value
, &zero
) &&
2345 is_timeval_eq(&in
->it_interval
, &zero
))
2348 timer_interval
= in
->it_value
.tv_sec
* 1000 + in
->it_value
.tv_usec
/ 1000;
2349 one_shot
= is_timeval_eq(&in
->it_interval
, &zero
);
2351 atexit(stop_timer_thread
);
2354 return start_timer_thread();
2357 int sigaction(int sig
, struct sigaction
*in
, struct sigaction
*out
)
2360 return errno
= EINVAL
,
2361 error("sigaction only implemented for SIGALRM");
2363 return errno
= EINVAL
,
2364 error("sigaction: param 3 != NULL not implemented");
2366 timer_fn
= in
->sa_handler
;
2371 sig_handler_t
mingw_signal(int sig
, sig_handler_t handler
)
2383 sigint_fn
= handler
;
2387 return signal(sig
, handler
);
2394 int mingw_raise(int sig
)
2398 if (timer_fn
== SIG_DFL
) {
2399 if (isatty(STDERR_FILENO
))
2400 fputs("Alarm clock\n", stderr
);
2401 exit(128 + SIGALRM
);
2402 } else if (timer_fn
!= SIG_IGN
)
2407 if (sigint_fn
== SIG_DFL
)
2409 else if (sigint_fn
!= SIG_IGN
)
2413 #if defined(_MSC_VER)
2420 case SIGABRT_COMPAT
:
2422 * The <signal.h> header in the MS C Runtime defines 8 signals
2423 * as being supported on the platform. Anything else causes an
2424 * "Invalid signal or error" (which in DEBUG builds causes the
2425 * Abort/Retry/Ignore dialog). We by-pass the CRT for things we
2426 * already know will fail.
2443 int link(const char *oldpath
, const char *newpath
)
2445 wchar_t woldpath
[MAX_PATH
], wnewpath
[MAX_PATH
];
2446 if (xutftowcs_path(woldpath
, oldpath
) < 0 ||
2447 xutftowcs_path(wnewpath
, newpath
) < 0)
2450 if (!CreateHardLinkW(wnewpath
, woldpath
, NULL
)) {
2451 errno
= err_win_to_posix(GetLastError());
2457 pid_t
waitpid(pid_t pid
, int *status
, int options
)
2459 HANDLE h
= OpenProcess(SYNCHRONIZE
| PROCESS_QUERY_INFORMATION
,
2466 if (pid
> 0 && options
& WNOHANG
) {
2467 if (WAIT_OBJECT_0
!= WaitForSingleObject(h
, 0)) {
2471 options
&= ~WNOHANG
;
2475 struct pinfo_t
**ppinfo
;
2476 if (WaitForSingleObject(h
, INFINITE
) != WAIT_OBJECT_0
) {
2482 GetExitCodeProcess(h
, (LPDWORD
)status
);
2484 EnterCriticalSection(&pinfo_cs
);
2488 struct pinfo_t
*info
= *ppinfo
;
2489 if (info
->pid
== pid
) {
2490 CloseHandle(info
->proc
);
2491 *ppinfo
= info
->next
;
2495 ppinfo
= &info
->next
;
2498 LeaveCriticalSection(&pinfo_cs
);
2509 int xutftowcsn(wchar_t *wcs
, const char *utfs
, size_t wcslen
, int utflen
)
2511 int upos
= 0, wpos
= 0;
2512 const unsigned char *utf
= (const unsigned char*) utfs
;
2513 if (!utf
|| !wcs
|| wcslen
< 1) {
2517 /* reserve space for \0 */
2522 while (upos
< utflen
) {
2523 int c
= utf
[upos
++] & 0xff;
2524 if (utflen
== INT_MAX
&& c
== 0)
2527 if (wpos
>= wcslen
) {
2536 } else if (c
>= 0xc2 && c
< 0xe0 && upos
< utflen
&&
2537 (utf
[upos
] & 0xc0) == 0x80) {
2539 c
= ((c
& 0x1f) << 6);
2540 c
|= (utf
[upos
++] & 0x3f);
2542 } else if (c
>= 0xe0 && c
< 0xf0 && upos
+ 1 < utflen
&&
2543 !(c
== 0xe0 && utf
[upos
] < 0xa0) && /* over-long encoding */
2544 (utf
[upos
] & 0xc0) == 0x80 &&
2545 (utf
[upos
+ 1] & 0xc0) == 0x80) {
2547 c
= ((c
& 0x0f) << 12);
2548 c
|= ((utf
[upos
++] & 0x3f) << 6);
2549 c
|= (utf
[upos
++] & 0x3f);
2551 } else if (c
>= 0xf0 && c
< 0xf5 && upos
+ 2 < utflen
&&
2552 wpos
+ 1 < wcslen
&&
2553 !(c
== 0xf0 && utf
[upos
] < 0x90) && /* over-long encoding */
2554 !(c
== 0xf4 && utf
[upos
] >= 0x90) && /* > \u10ffff */
2555 (utf
[upos
] & 0xc0) == 0x80 &&
2556 (utf
[upos
+ 1] & 0xc0) == 0x80 &&
2557 (utf
[upos
+ 2] & 0xc0) == 0x80) {
2558 /* 4-byte utf-8: convert to \ud8xx \udcxx surrogate pair */
2559 c
= ((c
& 0x07) << 18);
2560 c
|= ((utf
[upos
++] & 0x3f) << 12);
2561 c
|= ((utf
[upos
++] & 0x3f) << 6);
2562 c
|= (utf
[upos
++] & 0x3f);
2564 wcs
[wpos
++] = 0xd800 | (c
>> 10);
2565 wcs
[wpos
++] = 0xdc00 | (c
& 0x3ff);
2566 } else if (c
>= 0xa0) {
2567 /* invalid utf-8 byte, printable unicode char: convert 1:1 */
2570 /* invalid utf-8 byte, non-printable unicode: convert to hex */
2571 static const char *hex
= "0123456789abcdef";
2572 wcs
[wpos
++] = hex
[c
>> 4];
2574 wcs
[wpos
++] = hex
[c
& 0x0f];
2581 int xwcstoutf(char *utf
, const wchar_t *wcs
, size_t utflen
)
2583 if (!wcs
|| !utf
|| utflen
< 1) {
2587 utflen
= WideCharToMultiByte(CP_UTF8
, 0, wcs
, -1, utf
, utflen
, NULL
, NULL
);
2594 static void setup_windows_environment(void)
2596 char *tmp
= getenv("TMPDIR");
2598 /* on Windows it is TMP and TEMP */
2600 if (!(tmp
= getenv("TMP")))
2601 tmp
= getenv("TEMP");
2603 setenv("TMPDIR", tmp
, 1);
2604 tmp
= getenv("TMPDIR");
2610 * Convert all dir separators to forward slashes,
2611 * to help shell commands called from the Git
2612 * executable (by not mistaking the dir separators
2613 * for escape characters).
2615 convert_slashes(tmp
);
2618 /* simulate TERM to enable auto-color (see color.c) */
2619 if (!getenv("TERM"))
2620 setenv("TERM", "cygwin", 1);
2622 /* calculate HOME if not set */
2623 if (!getenv("HOME")) {
2625 * try $HOMEDRIVE$HOMEPATH - the home share may be a network
2626 * location, thus also check if the path exists (i.e. is not
2629 if ((tmp
= getenv("HOMEDRIVE"))) {
2630 struct strbuf buf
= STRBUF_INIT
;
2631 strbuf_addstr(&buf
, tmp
);
2632 if ((tmp
= getenv("HOMEPATH"))) {
2633 strbuf_addstr(&buf
, tmp
);
2634 if (is_directory(buf
.buf
))
2635 setenv("HOME", buf
.buf
, 1);
2637 tmp
= NULL
; /* use $USERPROFILE */
2639 strbuf_release(&buf
);
2641 /* use $USERPROFILE if the home share is not available */
2642 if (!tmp
&& (tmp
= getenv("USERPROFILE")))
2643 setenv("HOME", tmp
, 1);
2647 static PSID
get_current_user_sid(void)
2653 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &token
))
2656 if (!GetTokenInformation(token
, TokenUser
, NULL
, 0, &len
)) {
2657 TOKEN_USER
*info
= xmalloc((size_t)len
);
2658 if (GetTokenInformation(token
, TokenUser
, info
, len
, &len
)) {
2659 len
= GetLengthSid(info
->User
.Sid
);
2660 result
= xmalloc(len
);
2661 if (!CopySid(len
, result
, info
->User
.Sid
)) {
2662 error(_("failed to copy SID (%ld)"),
2664 FREE_AND_NULL(result
);
2667 FREE_AND_NULL(info
);
2674 static int acls_supported(const char *path
)
2676 size_t offset
= offset_1st_component(path
);
2677 WCHAR wroot
[MAX_PATH
];
2678 DWORD file_system_flags
;
2681 xutftowcsn(wroot
, path
, MAX_PATH
, offset
) > 0 &&
2682 GetVolumeInformationW(wroot
, NULL
, 0, NULL
, NULL
,
2683 &file_system_flags
, NULL
, 0))
2684 return !!(file_system_flags
& FILE_PERSISTENT_ACLS
);
2689 int is_path_owned_by_current_sid(const char *path
, struct strbuf
*report
)
2691 WCHAR wpath
[MAX_PATH
];
2693 PSECURITY_DESCRIPTOR descriptor
= NULL
;
2696 static wchar_t home
[MAX_PATH
];
2700 if (xutftowcs_path(wpath
, path
) < 0)
2704 * On Windows, the home directory is owned by the administrator, but for
2705 * all practical purposes, it belongs to the user. Do pretend that it is
2706 * owned by the user.
2709 DWORD size
= ARRAY_SIZE(home
);
2710 DWORD len
= GetEnvironmentVariableW(L
"HOME", home
, size
);
2711 if (!len
|| len
> size
)
2712 wcscpy(home
, L
"::N/A::");
2714 if (!wcsicmp(wpath
, home
))
2717 /* Get the owner SID */
2718 err
= GetNamedSecurityInfoW(wpath
, SE_FILE_OBJECT
,
2719 OWNER_SECURITY_INFORMATION
|
2720 DACL_SECURITY_INFORMATION
,
2721 &sid
, NULL
, NULL
, NULL
, &descriptor
);
2723 if (err
!= ERROR_SUCCESS
)
2724 error(_("failed to get owner for '%s' (%ld)"), path
, err
);
2725 else if (sid
&& IsValidSid(sid
)) {
2726 /* Now, verify that the SID matches the current user's */
2727 static PSID current_user_sid
;
2730 if (!current_user_sid
)
2731 current_user_sid
= get_current_user_sid();
2733 if (current_user_sid
&&
2734 IsValidSid(current_user_sid
) &&
2735 EqualSid(sid
, current_user_sid
))
2737 else if (IsWellKnownSid(sid
, WinBuiltinAdministratorsSid
) &&
2738 CheckTokenMembership(NULL
, sid
, &is_member
) &&
2741 * If owned by the Administrators group, and the
2742 * current user is an administrator, we consider that
2747 IsWellKnownSid(sid
, WinWorldSid
) &&
2748 !acls_supported(path
)) {
2750 * On FAT32 volumes, ownership is not actually recorded.
2752 strbuf_addf(report
, "'%s' is on a file system that does"
2753 "not record ownership\n", path
);
2754 } else if (report
) {
2755 LPSTR str1
, str2
, to_free1
= NULL
, to_free2
= NULL
;
2757 if (ConvertSidToStringSidA(sid
, &str1
))
2760 str1
= "(inconvertible)";
2762 if (!current_user_sid
)
2764 else if (!IsValidSid(current_user_sid
))
2766 else if (ConvertSidToStringSidA(current_user_sid
, &str2
))
2769 str2
= "(inconvertible)";
2771 "'%s' is owned by:\n"
2772 "\t'%s'\nbut the current user is:\n"
2773 "\t'%s'\n", path
, str1
, str2
);
2774 LocalFree(to_free1
);
2775 LocalFree(to_free2
);
2780 * We can release the security descriptor struct only now because `sid`
2781 * actually points into this struct.
2784 LocalFree(descriptor
);
2789 int is_valid_win32_path(const char *path
, int allow_literal_nul
)
2791 const char *p
= path
;
2792 int preceding_space_or_period
= 0, i
= 0, periods
= 0;
2797 skip_dos_drive_prefix((char **)&path
);
2804 case '/': case '\\':
2805 /* cannot end in ` ` or `.`, except for `.` and `..` */
2806 if (preceding_space_or_period
&&
2807 (i
!= periods
|| periods
> 2))
2812 i
= periods
= preceding_space_or_period
= 0;
2816 case 'a': case 'A': /* AUX */
2817 if (((c
= path
[++i
]) != 'u' && c
!= 'U') ||
2818 ((c
= path
[++i
]) != 'x' && c
!= 'X')) {
2819 not_a_reserved_name
:
2825 /* COM1 ... COM9, CON, CONIN$, CONOUT$ */
2826 if ((c
= path
[++i
]) != 'o' && c
!= 'O')
2827 goto not_a_reserved_name
;
2829 if (c
== 'm' || c
== 'M') { /* COM1 ... COM9 */
2831 if (c
< '1' || c
> '9')
2832 goto not_a_reserved_name
;
2833 } else if (c
== 'n' || c
== 'N') { /* CON */
2835 if ((c
== 'i' || c
== 'I') &&
2836 ((c
= path
[i
+ 2]) == 'n' ||
2839 i
+= 3; /* CONIN$ */
2840 else if ((c
== 'o' || c
== 'O') &&
2841 ((c
= path
[i
+ 2]) == 'u' ||
2843 ((c
= path
[i
+ 3]) == 't' ||
2846 i
+= 4; /* CONOUT$ */
2848 goto not_a_reserved_name
;
2850 case 'l': case 'L': /* LPT<N> */
2851 if (((c
= path
[++i
]) != 'p' && c
!= 'P') ||
2852 ((c
= path
[++i
]) != 't' && c
!= 'T') ||
2853 !isdigit(path
[++i
]))
2854 goto not_a_reserved_name
;
2856 case 'n': case 'N': /* NUL */
2857 if (((c
= path
[++i
]) != 'u' && c
!= 'U') ||
2858 ((c
= path
[++i
]) != 'l' && c
!= 'L') ||
2859 (allow_literal_nul
&&
2860 !path
[i
+ 1] && p
== path
))
2861 goto not_a_reserved_name
;
2863 case 'p': case 'P': /* PRN */
2864 if (((c
= path
[++i
]) != 'r' && c
!= 'R') ||
2865 ((c
= path
[++i
]) != 'n' && c
!= 'N'))
2866 goto not_a_reserved_name
;
2873 * So far, this looks like a reserved name. Let's see
2874 * whether it actually is one: trailing spaces, a file
2875 * extension, or an NTFS Alternate Data Stream do not
2876 * matter, the name is still reserved if any of those
2877 * follow immediately after the actual name.
2880 if (path
[i
] == ' ') {
2881 preceding_space_or_period
= 1;
2882 while (path
[++i
] == ' ')
2883 ; /* skip all spaces */
2887 if (c
&& c
!= '.' && c
!= ':' && !is_xplatform_dir_sep(c
))
2888 goto not_a_reserved_name
;
2890 /* contains reserved name */
2896 preceding_space_or_period
= 1;
2899 case ':': /* DOS drive prefix was already skipped */
2900 case '<': case '>': case '"': case '|': case '?': case '*':
2901 /* illegal character */
2904 if (c
> '\0' && c
< '\x20')
2905 /* illegal character */
2908 preceding_space_or_period
= 0;
2913 #if !defined(_MSC_VER)
2915 * Disable MSVCRT command line wildcard expansion (__getmainargs called from
2916 * mingw startup code, see init.c in mingw runtime).
2921 static NORETURN
void die_startup(void)
2923 fputs("fatal: not enough memory for initialization", stderr
);
2927 static void *malloc_startup(size_t size
)
2929 void *result
= malloc(size
);
2935 static char *wcstoutfdup_startup(char *buffer
, const wchar_t *wcs
, size_t len
)
2937 len
= xwcstoutf(buffer
, wcs
, len
) + 1;
2938 return memcpy(malloc_startup(len
), buffer
, len
);
2941 static void maybe_redirect_std_handle(const wchar_t *key
, DWORD std_id
, int fd
,
2942 DWORD desired_access
, DWORD flags
)
2944 DWORD create_flag
= fd
? OPEN_ALWAYS
: OPEN_EXISTING
;
2945 wchar_t buf
[MAX_PATH
];
2946 DWORD max
= ARRAY_SIZE(buf
);
2948 DWORD ret
= GetEnvironmentVariableW(key
, buf
, max
);
2950 if (!ret
|| ret
>= max
)
2953 /* make sure this does not leak into child processes */
2954 SetEnvironmentVariableW(key
, NULL
);
2955 if (!wcscmp(buf
, L
"off")) {
2957 handle
= GetStdHandle(std_id
);
2958 if (handle
!= INVALID_HANDLE_VALUE
)
2959 CloseHandle(handle
);
2962 if (std_id
== STD_ERROR_HANDLE
&& !wcscmp(buf
, L
"2>&1")) {
2963 handle
= GetStdHandle(STD_OUTPUT_HANDLE
);
2964 if (handle
== INVALID_HANDLE_VALUE
) {
2966 handle
= GetStdHandle(std_id
);
2967 if (handle
!= INVALID_HANDLE_VALUE
)
2968 CloseHandle(handle
);
2970 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
2971 SetStdHandle(std_id
, handle
);
2973 /* do *not* close the new_fd: that would close stdout */
2977 handle
= CreateFileW(buf
, desired_access
, 0, NULL
, create_flag
,
2979 if (handle
!= INVALID_HANDLE_VALUE
) {
2980 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
2981 SetStdHandle(std_id
, handle
);
2987 static void maybe_redirect_std_handles(void)
2989 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDIN", STD_INPUT_HANDLE
, 0,
2990 GENERIC_READ
, FILE_ATTRIBUTE_NORMAL
);
2991 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDOUT", STD_OUTPUT_HANDLE
, 1,
2992 GENERIC_WRITE
, FILE_ATTRIBUTE_NORMAL
);
2993 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDERR", STD_ERROR_HANDLE
, 2,
2994 GENERIC_WRITE
, FILE_FLAG_NO_BUFFERING
);
3004 * We implement wmain() and compile with -municode, which would
3005 * normally ignore main(), but we call the latter from the former
3006 * so that we can handle non-ASCII command-line parameters
3009 * To be more compatible with the core git code, we convert
3010 * argv into UTF8 and pass them directly to main().
3012 int wmain(int argc
, const wchar_t **wargv
)
3014 int i
, maxlen
, exit_status
;
3015 char *buffer
, **save
;
3018 trace2_initialize_clock();
3022 _CrtSetReportMode(_CRT_ASSERT
, _CRTDBG_MODE_DEBUG
);
3025 #ifdef USE_MSVC_CRTDBG
3026 _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF
| _CRTDBG_LEAK_CHECK_DF
);
3030 maybe_redirect_std_handles();
3032 /* determine size of argv and environ conversion buffer */
3033 maxlen
= wcslen(wargv
[0]);
3034 for (i
= 1; i
< argc
; i
++)
3035 maxlen
= max(maxlen
, wcslen(wargv
[i
]));
3037 /* allocate buffer (wchar_t encodes to max 3 UTF-8 bytes) */
3038 maxlen
= 3 * maxlen
+ 1;
3039 buffer
= malloc_startup(maxlen
);
3042 * Create a UTF-8 version of w_argv. Also create a "save" copy
3043 * to remember all the string pointers because parse_options()
3044 * will remove claimed items from the argv that we pass down.
3046 ALLOC_ARRAY(argv
, argc
+ 1);
3047 ALLOC_ARRAY(save
, argc
+ 1);
3048 for (i
= 0; i
< argc
; i
++)
3049 argv
[i
] = save
[i
] = wcstoutfdup_startup(buffer
, wargv
[i
], maxlen
);
3050 argv
[i
] = save
[i
] = NULL
;
3053 /* fix Windows specific environment settings */
3054 setup_windows_environment();
3056 unset_environment_variables
= xstrdup("PERL5LIB");
3058 /* initialize critical section for waitpid pinfo_t list */
3059 InitializeCriticalSection(&pinfo_cs
);
3061 /* set up default file mode and file modes for stdin/out/err */
3063 _setmode(_fileno(stdin
), _O_BINARY
);
3064 _setmode(_fileno(stdout
), _O_BINARY
);
3065 _setmode(_fileno(stderr
), _O_BINARY
);
3067 /* initialize Unicode console */
3070 /* invoke the real main() using our utf8 version of argv. */
3071 exit_status
= main(argc
, argv
);
3073 for (i
= 0; i
< argc
; i
++)
3081 int uname(struct utsname
*buf
)
3083 unsigned v
= (unsigned)GetVersion();
3084 memset(buf
, 0, sizeof(*buf
));
3085 xsnprintf(buf
->sysname
, sizeof(buf
->sysname
), "Windows");
3086 xsnprintf(buf
->release
, sizeof(buf
->release
),
3087 "%u.%u", v
& 0xff, (v
>> 8) & 0xff);
3088 /* assuming NT variants only.. */
3089 xsnprintf(buf
->version
, sizeof(buf
->version
),
3090 "%u", (v
>> 16) & 0x7fff);