1 #include "../git-compat-util.h"
8 #include "../run-command.h"
9 #include "../abspath.h"
11 #include "win32/lazyload.h"
12 #include "../config.h"
13 #include "../environment.h"
14 #include "../trace2.h"
15 #include "../symlinks.h"
16 #include "../wrapper.h"
19 #define SECURITY_WIN32
22 #define HCAST(type, handle) ((type)(intptr_t)handle)
24 static const int delay
[] = { 0, 1, 10, 20, 40 };
26 void open_in_gdb(void)
28 static struct child_process cp
= CHILD_PROCESS_INIT
;
31 strvec_pushl(&cp
.args
, "mintty", "gdb", NULL
);
32 strvec_pushf(&cp
.args
, "--pid=%d", getpid());
34 if (start_command(&cp
) < 0)
35 die_errno("Could not start gdb");
39 int err_win_to_posix(DWORD winerr
)
43 case ERROR_ACCESS_DENIED
: error
= EACCES
; break;
44 case ERROR_ACCOUNT_DISABLED
: error
= EACCES
; break;
45 case ERROR_ACCOUNT_RESTRICTION
: error
= EACCES
; break;
46 case ERROR_ALREADY_ASSIGNED
: error
= EBUSY
; break;
47 case ERROR_ALREADY_EXISTS
: error
= EEXIST
; break;
48 case ERROR_ARITHMETIC_OVERFLOW
: error
= ERANGE
; break;
49 case ERROR_BAD_COMMAND
: error
= EIO
; break;
50 case ERROR_BAD_DEVICE
: error
= ENODEV
; break;
51 case ERROR_BAD_DRIVER_LEVEL
: error
= ENXIO
; break;
52 case ERROR_BAD_EXE_FORMAT
: error
= ENOEXEC
; break;
53 case ERROR_BAD_FORMAT
: error
= ENOEXEC
; break;
54 case ERROR_BAD_LENGTH
: error
= EINVAL
; break;
55 case ERROR_BAD_PATHNAME
: error
= ENOENT
; break;
56 case ERROR_BAD_PIPE
: error
= EPIPE
; break;
57 case ERROR_BAD_UNIT
: error
= ENODEV
; break;
58 case ERROR_BAD_USERNAME
: error
= EINVAL
; break;
59 case ERROR_BROKEN_PIPE
: error
= EPIPE
; break;
60 case ERROR_BUFFER_OVERFLOW
: error
= ENAMETOOLONG
; break;
61 case ERROR_BUSY
: error
= EBUSY
; break;
62 case ERROR_BUSY_DRIVE
: error
= EBUSY
; break;
63 case ERROR_CALL_NOT_IMPLEMENTED
: error
= ENOSYS
; break;
64 case ERROR_CANNOT_MAKE
: error
= EACCES
; break;
65 case ERROR_CANTOPEN
: error
= EIO
; break;
66 case ERROR_CANTREAD
: error
= EIO
; break;
67 case ERROR_CANTWRITE
: error
= EIO
; break;
68 case ERROR_CRC
: error
= EIO
; break;
69 case ERROR_CURRENT_DIRECTORY
: error
= EACCES
; break;
70 case ERROR_DEVICE_IN_USE
: error
= EBUSY
; break;
71 case ERROR_DEV_NOT_EXIST
: error
= ENODEV
; break;
72 case ERROR_DIRECTORY
: error
= EINVAL
; break;
73 case ERROR_DIR_NOT_EMPTY
: error
= ENOTEMPTY
; break;
74 case ERROR_DISK_CHANGE
: error
= EIO
; break;
75 case ERROR_DISK_FULL
: error
= ENOSPC
; break;
76 case ERROR_DRIVE_LOCKED
: error
= EBUSY
; break;
77 case ERROR_ENVVAR_NOT_FOUND
: error
= EINVAL
; break;
78 case ERROR_EXE_MARKED_INVALID
: error
= ENOEXEC
; break;
79 case ERROR_FILENAME_EXCED_RANGE
: error
= ENAMETOOLONG
; break;
80 case ERROR_FILE_EXISTS
: error
= EEXIST
; break;
81 case ERROR_FILE_INVALID
: error
= ENODEV
; break;
82 case ERROR_FILE_NOT_FOUND
: error
= ENOENT
; break;
83 case ERROR_GEN_FAILURE
: error
= EIO
; break;
84 case ERROR_HANDLE_DISK_FULL
: error
= ENOSPC
; break;
85 case ERROR_INSUFFICIENT_BUFFER
: error
= ENOMEM
; break;
86 case ERROR_INVALID_ACCESS
: error
= EACCES
; break;
87 case ERROR_INVALID_ADDRESS
: error
= EFAULT
; break;
88 case ERROR_INVALID_BLOCK
: error
= EFAULT
; break;
89 case ERROR_INVALID_DATA
: error
= EINVAL
; break;
90 case ERROR_INVALID_DRIVE
: error
= ENODEV
; break;
91 case ERROR_INVALID_EXE_SIGNATURE
: error
= ENOEXEC
; break;
92 case ERROR_INVALID_FLAGS
: error
= EINVAL
; break;
93 case ERROR_INVALID_FUNCTION
: error
= ENOSYS
; break;
94 case ERROR_INVALID_HANDLE
: error
= EBADF
; break;
95 case ERROR_INVALID_LOGON_HOURS
: error
= EACCES
; break;
96 case ERROR_INVALID_NAME
: error
= EINVAL
; break;
97 case ERROR_INVALID_OWNER
: error
= EINVAL
; break;
98 case ERROR_INVALID_PARAMETER
: error
= EINVAL
; break;
99 case ERROR_INVALID_PASSWORD
: error
= EPERM
; break;
100 case ERROR_INVALID_PRIMARY_GROUP
: error
= EINVAL
; break;
101 case ERROR_INVALID_SIGNAL_NUMBER
: error
= EINVAL
; break;
102 case ERROR_INVALID_TARGET_HANDLE
: error
= EIO
; break;
103 case ERROR_INVALID_WORKSTATION
: error
= EACCES
; break;
104 case ERROR_IO_DEVICE
: error
= EIO
; break;
105 case ERROR_IO_INCOMPLETE
: error
= EINTR
; break;
106 case ERROR_LOCKED
: error
= EBUSY
; break;
107 case ERROR_LOCK_VIOLATION
: error
= EACCES
; break;
108 case ERROR_LOGON_FAILURE
: error
= EACCES
; break;
109 case ERROR_MAPPED_ALIGNMENT
: error
= EINVAL
; break;
110 case ERROR_META_EXPANSION_TOO_LONG
: error
= E2BIG
; break;
111 case ERROR_MORE_DATA
: error
= EPIPE
; break;
112 case ERROR_NEGATIVE_SEEK
: error
= ESPIPE
; break;
113 case ERROR_NOACCESS
: error
= EFAULT
; break;
114 case ERROR_NONE_MAPPED
: error
= EINVAL
; break;
115 case ERROR_NOT_ENOUGH_MEMORY
: error
= ENOMEM
; break;
116 case ERROR_NOT_READY
: error
= EAGAIN
; break;
117 case ERROR_NOT_SAME_DEVICE
: error
= EXDEV
; break;
118 case ERROR_NO_DATA
: error
= EPIPE
; break;
119 case ERROR_NO_MORE_SEARCH_HANDLES
: error
= EIO
; break;
120 case ERROR_NO_PROC_SLOTS
: error
= EAGAIN
; break;
121 case ERROR_NO_SUCH_PRIVILEGE
: error
= EACCES
; break;
122 case ERROR_OPEN_FAILED
: error
= EIO
; break;
123 case ERROR_OPEN_FILES
: error
= EBUSY
; break;
124 case ERROR_OPERATION_ABORTED
: error
= EINTR
; break;
125 case ERROR_OUTOFMEMORY
: error
= ENOMEM
; break;
126 case ERROR_PASSWORD_EXPIRED
: error
= EACCES
; break;
127 case ERROR_PATH_BUSY
: error
= EBUSY
; break;
128 case ERROR_PATH_NOT_FOUND
: error
= ENOENT
; break;
129 case ERROR_PIPE_BUSY
: error
= EBUSY
; break;
130 case ERROR_PIPE_CONNECTED
: error
= EPIPE
; break;
131 case ERROR_PIPE_LISTENING
: error
= EPIPE
; break;
132 case ERROR_PIPE_NOT_CONNECTED
: error
= EPIPE
; break;
133 case ERROR_PRIVILEGE_NOT_HELD
: error
= EACCES
; break;
134 case ERROR_READ_FAULT
: error
= EIO
; break;
135 case ERROR_SEEK
: error
= EIO
; break;
136 case ERROR_SEEK_ON_DEVICE
: error
= ESPIPE
; break;
137 case ERROR_SHARING_BUFFER_EXCEEDED
: error
= ENFILE
; break;
138 case ERROR_SHARING_VIOLATION
: error
= EACCES
; break;
139 case ERROR_STACK_OVERFLOW
: error
= ENOMEM
; break;
140 case ERROR_SUCCESS
: BUG("err_win_to_posix() called without an error!");
141 case ERROR_SWAPERROR
: error
= ENOENT
; break;
142 case ERROR_TOO_MANY_MODULES
: error
= EMFILE
; break;
143 case ERROR_TOO_MANY_OPEN_FILES
: error
= EMFILE
; break;
144 case ERROR_UNRECOGNIZED_MEDIA
: error
= ENXIO
; break;
145 case ERROR_UNRECOGNIZED_VOLUME
: error
= ENODEV
; break;
146 case ERROR_WAIT_NO_CHILDREN
: error
= ECHILD
; break;
147 case ERROR_WRITE_FAULT
: error
= EIO
; break;
148 case ERROR_WRITE_PROTECT
: error
= EROFS
; break;
153 static inline int is_file_in_use_error(DWORD errcode
)
156 case ERROR_SHARING_VIOLATION
:
157 case ERROR_ACCESS_DENIED
:
164 static int read_yes_no_answer(void)
168 if (fgets(answer
, sizeof(answer
), stdin
)) {
169 size_t answer_len
= strlen(answer
);
170 int got_full_line
= 0, c
;
172 /* remove the newline */
173 if (answer_len
>= 2 && answer
[answer_len
-2] == '\r') {
174 answer
[answer_len
-2] = '\0';
176 } else if (answer_len
>= 1 && answer
[answer_len
-1] == '\n') {
177 answer
[answer_len
-1] = '\0';
180 /* flush the buffer in case we did not get the full line */
182 while ((c
= getchar()) != EOF
&& c
!= '\n')
185 /* we could not read, return the
186 * default answer which is no */
189 if (tolower(answer
[0]) == 'y' && !answer
[1])
191 if (!strncasecmp(answer
, "yes", sizeof(answer
)))
193 if (tolower(answer
[0]) == 'n' && !answer
[1])
195 if (!strncasecmp(answer
, "no", sizeof(answer
)))
198 /* did not find an answer we understand */
202 static int ask_yes_no_if_possible(const char *format
, ...)
205 const char *retry_hook
;
208 va_start(args
, format
);
209 vsnprintf(question
, sizeof(question
), format
, args
);
212 retry_hook
= mingw_getenv("GIT_ASK_YESNO");
214 struct child_process cmd
= CHILD_PROCESS_INIT
;
216 strvec_pushl(&cmd
.args
, retry_hook
, question
, NULL
);
217 return !run_command(&cmd
);
220 if (!isatty(_fileno(stdin
)) || !isatty(_fileno(stderr
)))
225 fprintf(stderr
, "%s (y/n) ", question
);
227 if ((answer
= read_yes_no_answer()) >= 0)
230 fprintf(stderr
, "Sorry, I did not understand your answer. "
231 "Please type 'y' or 'n'\n");
236 enum hide_dotfiles_type
{
237 HIDE_DOTFILES_FALSE
= 0,
239 HIDE_DOTFILES_DOTGITONLY
242 static int core_restrict_inherited_handles
= -1;
243 static enum hide_dotfiles_type hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
244 static char *unset_environment_variables
;
246 int mingw_core_config(const char *var
, const char *value
,
247 const struct config_context
*ctx
, void *cb
)
249 if (!strcmp(var
, "core.hidedotfiles")) {
250 if (value
&& !strcasecmp(value
, "dotgitonly"))
251 hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
253 hide_dotfiles
= git_config_bool(var
, value
);
257 if (!strcmp(var
, "core.unsetenvvars")) {
258 free(unset_environment_variables
);
259 unset_environment_variables
= xstrdup(value
);
263 if (!strcmp(var
, "core.restrictinheritedhandles")) {
264 if (value
&& !strcasecmp(value
, "auto"))
265 core_restrict_inherited_handles
= -1;
267 core_restrict_inherited_handles
=
268 git_config_bool(var
, value
);
275 /* Normalizes NT paths as returned by some low-level APIs. */
276 static wchar_t *normalize_ntpath(wchar_t *wbuf
)
279 /* fix absolute path prefixes */
280 if (wbuf
[0] == '\\') {
281 /* strip NT namespace prefixes */
282 if (!wcsncmp(wbuf
, L
"\\??\\", 4) ||
283 !wcsncmp(wbuf
, L
"\\\\?\\", 4))
285 else if (!wcsnicmp(wbuf
, L
"\\DosDevices\\", 12))
287 /* replace remaining '...UNC\' with '\\' */
288 if (!wcsnicmp(wbuf
, L
"UNC\\", 4)) {
293 /* convert backslashes to slashes */
294 for (i
= 0; wbuf
[i
]; i
++)
300 int mingw_unlink(const char *pathname
)
303 wchar_t wpathname
[MAX_PATH
];
304 if (xutftowcs_path(wpathname
, pathname
) < 0)
307 if (DeleteFileW(wpathname
))
310 /* read-only files cannot be removed */
311 _wchmod(wpathname
, 0666);
312 while ((ret
= _wunlink(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
313 if (!is_file_in_use_error(GetLastError()))
316 * We assume that some other process had the source or
317 * destination file open at the wrong moment and retry.
318 * In order to give the other process a higher chance to
319 * complete its operation, we give up our time slice now.
320 * If we have to retry again, we do sleep a bit.
325 while (ret
== -1 && is_file_in_use_error(GetLastError()) &&
326 ask_yes_no_if_possible("Unlink of file '%s' failed. "
327 "Should I try again?", pathname
))
328 ret
= _wunlink(wpathname
);
332 static int is_dir_empty(const wchar_t *wpath
)
334 WIN32_FIND_DATAW findbuf
;
336 wchar_t wbuf
[MAX_PATH
+ 2];
338 wcscat(wbuf
, L
"\\*");
339 handle
= FindFirstFileW(wbuf
, &findbuf
);
340 if (handle
== INVALID_HANDLE_VALUE
)
341 return GetLastError() == ERROR_NO_MORE_FILES
;
343 while (!wcscmp(findbuf
.cFileName
, L
".") ||
344 !wcscmp(findbuf
.cFileName
, L
".."))
345 if (!FindNextFileW(handle
, &findbuf
)) {
346 DWORD err
= GetLastError();
348 return err
== ERROR_NO_MORE_FILES
;
354 int mingw_rmdir(const char *pathname
)
357 wchar_t wpathname
[MAX_PATH
];
361 * Contrary to Linux' `rmdir()`, Windows' _wrmdir() and _rmdir()
362 * (and `RemoveDirectoryW()`) will attempt to remove the target of a
363 * symbolic link (if it points to a directory).
365 * This behavior breaks the assumption of e.g. `remove_path()` which
366 * upon successful deletion of a file will attempt to remove its parent
367 * directories recursively until failure (which usually happens when
368 * the directory is not empty).
370 * Therefore, before calling `_wrmdir()`, we first check if the path is
371 * a symbolic link. If it is, we exit and return the same error as
372 * Linux' `rmdir()` would, i.e. `ENOTDIR`.
374 if (!mingw_lstat(pathname
, &st
) && S_ISLNK(st
.st_mode
)) {
379 if (xutftowcs_path(wpathname
, pathname
) < 0)
382 while ((ret
= _wrmdir(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
383 if (!is_file_in_use_error(GetLastError()))
384 errno
= err_win_to_posix(GetLastError());
387 if (!is_dir_empty(wpathname
)) {
392 * We assume that some other process had the source or
393 * destination file open at the wrong moment and retry.
394 * In order to give the other process a higher chance to
395 * complete its operation, we give up our time slice now.
396 * If we have to retry again, we do sleep a bit.
401 while (ret
== -1 && errno
== EACCES
&& is_file_in_use_error(GetLastError()) &&
402 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
403 "Should I try again?", pathname
))
404 ret
= _wrmdir(wpathname
);
406 invalidate_lstat_cache();
410 static inline int needs_hiding(const char *path
)
412 const char *basename
;
414 if (hide_dotfiles
== HIDE_DOTFILES_FALSE
)
417 /* We cannot use basename(), as it would remove trailing slashes */
418 win32_skip_dos_drive_prefix((char **)&path
);
422 for (basename
= path
; *path
; path
++)
423 if (is_dir_sep(*path
)) {
426 } while (is_dir_sep(*path
));
427 /* ignore trailing slashes */
434 if (hide_dotfiles
== HIDE_DOTFILES_TRUE
)
435 return *basename
== '.';
437 assert(hide_dotfiles
== HIDE_DOTFILES_DOTGITONLY
);
438 return !strncasecmp(".git", basename
, 4) &&
439 (!basename
[4] || is_dir_sep(basename
[4]));
442 static int set_hidden_flag(const wchar_t *path
, int set
)
444 DWORD original
= GetFileAttributesW(path
), modified
;
446 modified
= original
| FILE_ATTRIBUTE_HIDDEN
;
448 modified
= original
& ~FILE_ATTRIBUTE_HIDDEN
;
449 if (original
== modified
|| SetFileAttributesW(path
, modified
))
451 errno
= err_win_to_posix(GetLastError());
455 int mingw_mkdir(const char *path
, int mode
)
458 wchar_t wpath
[MAX_PATH
];
460 if (!is_valid_win32_path(path
, 0)) {
465 if (xutftowcs_path(wpath
, path
) < 0)
467 ret
= _wmkdir(wpath
);
468 if (!ret
&& needs_hiding(path
))
469 return set_hidden_flag(wpath
, 1);
474 * Calling CreateFile() using FILE_APPEND_DATA and without FILE_WRITE_DATA
475 * is documented in [1] as opening a writable file handle in append mode.
476 * (It is believed that) this is atomic since it is maintained by the
477 * kernel unlike the O_APPEND flag which is racily maintained by the CRT.
479 * [1] https://docs.microsoft.com/en-us/windows/desktop/fileio/file-access-rights-constants
481 * This trick does not appear to work for named pipes. Instead it creates
482 * a named pipe client handle that cannot be written to. Callers should
483 * just use the regular _wopen() for them. (And since client handle gets
484 * bound to a unique server handle, it isn't really an issue.)
486 static int mingw_open_append(wchar_t const *wfilename
, int oflags
, ...)
490 DWORD create
= (oflags
& O_CREAT
) ? OPEN_ALWAYS
: OPEN_EXISTING
;
492 /* only these flags are supported */
493 if ((oflags
& ~O_CREAT
) != (O_WRONLY
| O_APPEND
))
494 return errno
= ENOSYS
, -1;
497 * FILE_SHARE_WRITE is required to permit child processes
498 * to append to the file.
500 handle
= CreateFileW(wfilename
, FILE_APPEND_DATA
,
501 FILE_SHARE_WRITE
| FILE_SHARE_READ
,
502 NULL
, create
, FILE_ATTRIBUTE_NORMAL
, NULL
);
503 if (handle
== INVALID_HANDLE_VALUE
) {
504 DWORD err
= GetLastError();
507 * Some network storage solutions (e.g. Isilon) might return
508 * ERROR_INVALID_PARAMETER instead of expected error
509 * ERROR_PATH_NOT_FOUND, which results in an unknown error. If
510 * so, let's turn the error to ERROR_PATH_NOT_FOUND instead.
512 if (err
== ERROR_INVALID_PARAMETER
)
513 err
= ERROR_PATH_NOT_FOUND
;
515 errno
= err_win_to_posix(err
);
520 * No O_APPEND here, because the CRT uses it only to reset the
521 * file pointer to EOF before each write(); but that is not
522 * necessary (and may lead to races) for a file created with
525 fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
532 * Does the pathname map to the local named pipe filesystem?
533 * That is, does it have a "//./pipe/" prefix?
535 static int is_local_named_pipe_path(const char *filename
)
537 return (is_dir_sep(filename
[0]) &&
538 is_dir_sep(filename
[1]) &&
539 filename
[2] == '.' &&
540 is_dir_sep(filename
[3]) &&
541 !strncasecmp(filename
+4, "pipe", 4) &&
542 is_dir_sep(filename
[8]) &&
546 int mingw_open (const char *filename
, int oflags
, ...)
548 typedef int (*open_fn_t
)(wchar_t const *wfilename
, int oflags
, ...);
551 int fd
, create
= (oflags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
);
552 wchar_t wfilename
[MAX_PATH
];
555 va_start(args
, oflags
);
556 mode
= va_arg(args
, int);
559 if (!is_valid_win32_path(filename
, !create
)) {
560 errno
= create
? EINVAL
: ENOENT
;
564 if ((oflags
& O_APPEND
) && !is_local_named_pipe_path(filename
))
565 open_fn
= mingw_open_append
;
569 if (filename
&& !strcmp(filename
, "/dev/null"))
570 wcscpy(wfilename
, L
"nul");
571 else if (xutftowcs_path(wfilename
, filename
) < 0)
574 fd
= open_fn(wfilename
, oflags
, mode
);
576 if (fd
< 0 && (oflags
& O_ACCMODE
) != O_RDONLY
&& errno
== EACCES
) {
577 DWORD attrs
= GetFileAttributesW(wfilename
);
578 if (attrs
!= INVALID_FILE_ATTRIBUTES
&& (attrs
& FILE_ATTRIBUTE_DIRECTORY
))
581 if ((oflags
& O_CREAT
) && needs_hiding(filename
)) {
583 * Internally, _wopen() uses the CreateFile() API which errors
584 * out with an ERROR_ACCESS_DENIED if CREATE_ALWAYS was
585 * specified and an already existing file's attributes do not
586 * match *exactly*. As there is no mode or flag we can set that
587 * would correspond to FILE_ATTRIBUTE_HIDDEN, let's just try
588 * again *without* the O_CREAT flag (that corresponds to the
589 * CREATE_ALWAYS flag of CreateFile()).
591 if (fd
< 0 && errno
== EACCES
)
592 fd
= open_fn(wfilename
, oflags
& ~O_CREAT
, mode
);
593 if (fd
>= 0 && set_hidden_flag(wfilename
, 1))
594 warning("could not mark '%s' as hidden.", filename
);
599 static BOOL WINAPI
ctrl_ignore(DWORD type
)
605 int mingw_fgetc(FILE *stream
)
608 if (!isatty(_fileno(stream
)))
609 return fgetc(stream
);
611 SetConsoleCtrlHandler(ctrl_ignore
, TRUE
);
614 if (ch
!= EOF
|| GetLastError() != ERROR_OPERATION_ABORTED
)
617 /* Ctrl+C was pressed, simulate SIGINT and retry */
620 SetConsoleCtrlHandler(ctrl_ignore
, FALSE
);
625 FILE *mingw_fopen (const char *filename
, const char *otype
)
627 int hide
= needs_hiding(filename
);
629 wchar_t wfilename
[MAX_PATH
], wotype
[4];
630 if (filename
&& !strcmp(filename
, "/dev/null"))
631 wcscpy(wfilename
, L
"nul");
632 else if (!is_valid_win32_path(filename
, 1)) {
633 int create
= otype
&& strchr(otype
, 'w');
634 errno
= create
? EINVAL
: ENOENT
;
636 } else if (xutftowcs_path(wfilename
, filename
) < 0)
639 if (xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
642 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
643 error("could not unhide %s", filename
);
646 file
= _wfopen(wfilename
, wotype
);
647 if (!file
&& GetLastError() == ERROR_INVALID_NAME
)
649 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
650 warning("could not mark '%s' as hidden.", filename
);
654 FILE *mingw_freopen (const char *filename
, const char *otype
, FILE *stream
)
656 int hide
= needs_hiding(filename
);
658 wchar_t wfilename
[MAX_PATH
], wotype
[4];
659 if (filename
&& !strcmp(filename
, "/dev/null"))
660 wcscpy(wfilename
, L
"nul");
661 else if (!is_valid_win32_path(filename
, 1)) {
662 int create
= otype
&& strchr(otype
, 'w');
663 errno
= create
? EINVAL
: ENOENT
;
665 } else if (xutftowcs_path(wfilename
, filename
) < 0)
668 if (xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
671 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
672 error("could not unhide %s", filename
);
675 file
= _wfreopen(wfilename
, wotype
, stream
);
676 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
677 warning("could not mark '%s' as hidden.", filename
);
682 int mingw_fflush(FILE *stream
)
684 int ret
= fflush(stream
);
687 * write() is used behind the scenes of stdio output functions.
688 * Since git code does not check for errors after each stdio write
689 * operation, it can happen that write() is called by a later
690 * stdio function even if an earlier write() call failed. In the
691 * case of a pipe whose readable end was closed, only the first
692 * call to write() reports EPIPE on Windows. Subsequent write()
693 * calls report EINVAL. It is impossible to notice whether this
694 * fflush invocation triggered such a case, therefore, we have to
695 * catch all EINVAL errors whole-sale.
697 if (ret
&& errno
== EINVAL
)
704 ssize_t
mingw_write(int fd
, const void *buf
, size_t len
)
706 ssize_t result
= write(fd
, buf
, len
);
708 if (result
< 0 && errno
== EINVAL
&& buf
) {
709 /* check if fd is a pipe */
710 HANDLE h
= (HANDLE
) _get_osfhandle(fd
);
711 if (GetFileType(h
) == FILE_TYPE_PIPE
)
720 int mingw_access(const char *filename
, int mode
)
722 wchar_t wfilename
[MAX_PATH
];
723 if (!strcmp("nul", filename
) || !strcmp("/dev/null", filename
))
725 if (xutftowcs_path(wfilename
, filename
) < 0)
727 /* X_OK is not supported by the MSVCRT version */
728 return _waccess(wfilename
, mode
& ~X_OK
);
731 int mingw_chdir(const char *dirname
)
733 wchar_t wdirname
[MAX_PATH
];
734 if (xutftowcs_path(wdirname
, dirname
) < 0)
736 return _wchdir(wdirname
);
739 int mingw_chmod(const char *filename
, int mode
)
741 wchar_t wfilename
[MAX_PATH
];
742 if (xutftowcs_path(wfilename
, filename
) < 0)
744 return _wchmod(wfilename
, mode
);
748 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
749 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
751 static inline long long filetime_to_hnsec(const FILETIME
*ft
)
753 long long winTime
= ((long long)ft
->dwHighDateTime
<< 32) + ft
->dwLowDateTime
;
754 /* Windows to Unix Epoch conversion */
755 return winTime
- 116444736000000000LL;
758 static inline void filetime_to_timespec(const FILETIME
*ft
, struct timespec
*ts
)
760 long long hnsec
= filetime_to_hnsec(ft
);
761 ts
->tv_sec
= (time_t)(hnsec
/ 10000000);
762 ts
->tv_nsec
= (hnsec
% 10000000) * 100;
766 * Verifies that safe_create_leading_directories() would succeed.
768 static int has_valid_directory_prefix(wchar_t *wfilename
)
770 int n
= wcslen(wfilename
);
773 wchar_t c
= wfilename
[--n
];
779 wfilename
[n
] = L
'\0';
780 attributes
= GetFileAttributesW(wfilename
);
783 (FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_DEVICE
))
785 if (attributes
== INVALID_FILE_ATTRIBUTES
)
786 switch (GetLastError()) {
787 case ERROR_PATH_NOT_FOUND
:
789 case ERROR_FILE_NOT_FOUND
:
790 /* This implies parent directory exists. */
798 /* We keep the do_lstat code in a separate function to avoid recursion.
799 * When a path ends with a slash, the stat will fail with ENOENT. In
800 * this case, we strip the trailing slashes and stat again.
802 * If follow is true then act like stat() and report on the link
803 * target. Otherwise report on the link itself.
805 static int do_lstat(int follow
, const char *file_name
, struct stat
*buf
)
807 WIN32_FILE_ATTRIBUTE_DATA fdata
;
808 wchar_t wfilename
[MAX_PATH
];
809 if (xutftowcs_path(wfilename
, file_name
) < 0)
812 if (GetFileAttributesExW(wfilename
, GetFileExInfoStandard
, &fdata
)) {
817 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
818 buf
->st_size
= fdata
.nFileSizeLow
|
819 (((off_t
)fdata
.nFileSizeHigh
)<<32);
820 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
821 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
822 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
823 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
824 if (fdata
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) {
825 WIN32_FIND_DATAW findbuf
;
826 HANDLE handle
= FindFirstFileW(wfilename
, &findbuf
);
827 if (handle
!= INVALID_HANDLE_VALUE
) {
828 if ((findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) &&
829 (findbuf
.dwReserved0
== IO_REPARSE_TAG_SYMLINK
)) {
831 char buffer
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
832 buf
->st_size
= readlink(file_name
, buffer
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
);
834 buf
->st_mode
= S_IFLNK
;
836 buf
->st_mode
|= S_IREAD
;
837 if (!(findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
838 buf
->st_mode
|= S_IWRITE
;
845 switch (GetLastError()) {
846 case ERROR_ACCESS_DENIED
:
847 case ERROR_SHARING_VIOLATION
:
848 case ERROR_LOCK_VIOLATION
:
849 case ERROR_SHARING_BUFFER_EXCEEDED
:
852 case ERROR_BUFFER_OVERFLOW
:
853 errno
= ENAMETOOLONG
;
855 case ERROR_NOT_ENOUGH_MEMORY
:
858 case ERROR_PATH_NOT_FOUND
:
859 if (!has_valid_directory_prefix(wfilename
)) {
871 /* We provide our own lstat/fstat functions, since the provided
872 * lstat/fstat functions are so slow. These stat functions are
873 * tailored for Git's usage (read: fast), and are not meant to be
874 * complete. Note that Git stat()s are redirected to mingw_lstat()
875 * too, since Windows doesn't really handle symlinks that well.
877 static int do_stat_internal(int follow
, const char *file_name
, struct stat
*buf
)
880 char alt_name
[PATH_MAX
];
882 if (!do_lstat(follow
, file_name
, buf
))
885 /* if file_name ended in a '/', Windows returned ENOENT;
886 * try again without trailing slashes
891 namelen
= strlen(file_name
);
892 if (namelen
&& file_name
[namelen
-1] != '/')
894 while (namelen
&& file_name
[namelen
-1] == '/')
896 if (!namelen
|| namelen
>= PATH_MAX
)
899 memcpy(alt_name
, file_name
, namelen
);
900 alt_name
[namelen
] = 0;
901 return do_lstat(follow
, alt_name
, buf
);
904 static int get_file_info_by_handle(HANDLE hnd
, struct stat
*buf
)
906 BY_HANDLE_FILE_INFORMATION fdata
;
908 if (!GetFileInformationByHandle(hnd
, &fdata
)) {
909 errno
= err_win_to_posix(GetLastError());
917 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
918 buf
->st_size
= fdata
.nFileSizeLow
|
919 (((off_t
)fdata
.nFileSizeHigh
)<<32);
920 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
921 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
922 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
923 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
927 int mingw_lstat(const char *file_name
, struct stat
*buf
)
929 return do_stat_internal(0, file_name
, buf
);
931 int mingw_stat(const char *file_name
, struct stat
*buf
)
933 return do_stat_internal(1, file_name
, buf
);
936 int mingw_fstat(int fd
, struct stat
*buf
)
938 HANDLE fh
= (HANDLE
)_get_osfhandle(fd
);
939 DWORD avail
, type
= GetFileType(fh
) & ~FILE_TYPE_REMOTE
;
943 return get_file_info_by_handle(fh
, buf
);
947 /* initialize stat fields */
948 memset(buf
, 0, sizeof(*buf
));
951 if (type
== FILE_TYPE_CHAR
) {
952 buf
->st_mode
= _S_IFCHR
;
954 buf
->st_mode
= _S_IFIFO
;
955 if (PeekNamedPipe(fh
, NULL
, 0, NULL
, &avail
, NULL
))
956 buf
->st_size
= avail
;
966 static inline void time_t_to_filetime(time_t t
, FILETIME
*ft
)
968 long long winTime
= t
* 10000000LL + 116444736000000000LL;
969 ft
->dwLowDateTime
= winTime
;
970 ft
->dwHighDateTime
= winTime
>> 32;
973 int mingw_utime (const char *file_name
, const struct utimbuf
*times
)
978 wchar_t wfilename
[MAX_PATH
];
981 if (xutftowcs_path(wfilename
, file_name
) < 0)
984 /* must have write permission */
985 attrs
= GetFileAttributesW(wfilename
);
986 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
987 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
988 /* ignore errors here; open() will report them */
989 SetFileAttributesW(wfilename
, attrs
& ~FILE_ATTRIBUTE_READONLY
);
992 osfilehandle
= CreateFileW(wfilename
,
993 FILE_WRITE_ATTRIBUTES
,
994 0 /*FileShare.None*/,
997 (attrs
!= INVALID_FILE_ATTRIBUTES
&&
998 (attrs
& FILE_ATTRIBUTE_DIRECTORY
)) ?
999 FILE_FLAG_BACKUP_SEMANTICS
: 0,
1001 if (osfilehandle
== INVALID_HANDLE_VALUE
) {
1002 errno
= err_win_to_posix(GetLastError());
1008 time_t_to_filetime(times
->modtime
, &mft
);
1009 time_t_to_filetime(times
->actime
, &aft
);
1011 GetSystemTimeAsFileTime(&mft
);
1015 if (!SetFileTime(osfilehandle
, NULL
, &aft
, &mft
)) {
1021 if (osfilehandle
!= INVALID_HANDLE_VALUE
)
1022 CloseHandle(osfilehandle
);
1025 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
1026 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
1027 /* ignore errors again */
1028 SetFileAttributesW(wfilename
, attrs
);
1034 size_t mingw_strftime(char *s
, size_t max
,
1035 const char *format
, const struct tm
*tm
)
1037 /* a pointer to the original strftime in case we can't find the UCRT version */
1038 static size_t (*fallback
)(char *, size_t, const char *, const struct tm
*) = strftime
;
1040 DECLARE_PROC_ADDR(ucrtbase
.dll
, size_t, __cdecl
, strftime
, char *, size_t,
1041 const char *, const struct tm
*);
1043 if (INIT_PROC_ADDR(strftime
))
1044 ret
= strftime(s
, max
, format
, tm
);
1046 ret
= fallback(s
, max
, format
, tm
);
1048 if (!ret
&& errno
== EINVAL
)
1049 die("invalid strftime format: '%s'", format
);
1053 unsigned int sleep (unsigned int seconds
)
1055 Sleep(seconds
*1000);
1059 char *mingw_mktemp(char *template)
1061 wchar_t wtemplate
[MAX_PATH
];
1062 if (xutftowcs_path(wtemplate
, template) < 0)
1064 if (!_wmktemp(wtemplate
))
1066 if (xwcstoutf(template, wtemplate
, strlen(template) + 1) < 0)
1071 int mkstemp(char *template)
1073 return git_mkstemp_mode(template, 0600);
1076 int gettimeofday(struct timeval
*tv
, void *tz
)
1081 GetSystemTimeAsFileTime(&ft
);
1082 hnsec
= filetime_to_hnsec(&ft
);
1083 tv
->tv_sec
= hnsec
/ 10000000;
1084 tv
->tv_usec
= (hnsec
% 10000000) / 10;
1088 int pipe(int filedes
[2])
1092 /* this creates non-inheritable handles */
1093 if (!CreatePipe(&h
[0], &h
[1], NULL
, 8192)) {
1094 errno
= err_win_to_posix(GetLastError());
1097 filedes
[0] = _open_osfhandle(HCAST(int, h
[0]), O_NOINHERIT
);
1098 if (filedes
[0] < 0) {
1103 filedes
[1] = _open_osfhandle(HCAST(int, h
[1]), O_NOINHERIT
);
1104 if (filedes
[1] < 0) {
1113 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
1115 if (gmtime_s(result
, timep
) == 0)
1120 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
1122 if (localtime_s(result
, timep
) == 0)
1128 char *mingw_getcwd(char *pointer
, int len
)
1130 wchar_t cwd
[MAX_PATH
], wpointer
[MAX_PATH
];
1131 DWORD ret
= GetCurrentDirectoryW(ARRAY_SIZE(cwd
), cwd
);
1133 if (!ret
|| ret
>= ARRAY_SIZE(cwd
)) {
1134 errno
= ret
? ENAMETOOLONG
: err_win_to_posix(GetLastError());
1137 ret
= GetLongPathNameW(cwd
, wpointer
, ARRAY_SIZE(wpointer
));
1138 if (!ret
&& GetLastError() == ERROR_ACCESS_DENIED
) {
1139 HANDLE hnd
= CreateFileW(cwd
, 0,
1140 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
, NULL
,
1141 OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
1142 if (hnd
== INVALID_HANDLE_VALUE
)
1144 ret
= GetFinalPathNameByHandleW(hnd
, wpointer
, ARRAY_SIZE(wpointer
), 0);
1146 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1148 if (xwcstoutf(pointer
, normalize_ntpath(wpointer
), len
) < 0)
1152 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1154 if (GetFileAttributesW(wpointer
) == INVALID_FILE_ATTRIBUTES
) {
1158 if (xwcstoutf(pointer
, wpointer
, len
) < 0)
1160 convert_slashes(pointer
);
1165 * See "Parsing C++ Command-Line Arguments" at Microsoft's Docs:
1166 * https://docs.microsoft.com/en-us/cpp/cpp/parsing-cpp-command-line-arguments
1168 static const char *quote_arg_msvc(const char *arg
)
1170 /* count chars to quote */
1172 int force_quotes
= 0;
1174 const char *p
= arg
;
1175 if (!*p
) force_quotes
= 1;
1177 if (isspace(*p
) || *p
== '*' || *p
== '?' || *p
== '{' || *p
== '\'')
1181 else if (*p
== '\\') {
1183 while (*p
== '\\') {
1188 if (*p
== '"' || !*p
)
1195 if (!force_quotes
&& n
== 0)
1198 /* insert \ where necessary */
1199 d
= q
= xmalloc(st_add3(len
, n
, 3));
1204 else if (*arg
== '\\') {
1206 while (*arg
== '\\') {
1210 if (*arg
== '"' || !*arg
) {
1213 /* don't escape the surrounding end quote */
1228 static const char *quote_arg_msys2(const char *arg
)
1230 struct strbuf buf
= STRBUF_INIT
;
1231 const char *p2
= arg
, *p
;
1233 for (p
= arg
; *p
; p
++) {
1234 int ws
= isspace(*p
);
1235 if (!ws
&& *p
!= '\\' && *p
!= '"' && *p
!= '{' && *p
!= '\'' &&
1236 *p
!= '?' && *p
!= '*' && *p
!= '~')
1239 strbuf_addch(&buf
, '"');
1241 strbuf_add(&buf
, p2
, p
- p2
);
1242 if (*p
== '\\' || *p
== '"')
1243 strbuf_addch(&buf
, '\\');
1248 strbuf_addch(&buf
, '"');
1252 strbuf_add(&buf
, p2
, p
- p2
);
1254 strbuf_addch(&buf
, '"');
1255 return strbuf_detach(&buf
, 0);
1258 static const char *parse_interpreter(const char *cmd
)
1260 static char buf
[100];
1264 /* don't even try a .exe */
1266 if (n
>= 4 && !strcasecmp(cmd
+n
-4, ".exe"))
1269 fd
= open(cmd
, O_RDONLY
);
1272 n
= read(fd
, buf
, sizeof(buf
)-1);
1274 if (n
< 4) /* at least '#!/x' and not error */
1277 if (buf
[0] != '#' || buf
[1] != '!')
1280 p
= buf
+ strcspn(buf
, "\r\n");
1285 if (!(p
= strrchr(buf
+2, '/')) && !(p
= strrchr(buf
+2, '\\')))
1288 if ((opt
= strchr(p
+1, ' ')))
1294 * exe_only means that we only want to detect .exe files, but not scripts
1295 * (which do not have an extension)
1297 static char *lookup_prog(const char *dir
, int dirlen
, const char *cmd
,
1298 int isexe
, int exe_only
)
1300 char path
[MAX_PATH
];
1301 wchar_t wpath
[MAX_PATH
];
1302 snprintf(path
, sizeof(path
), "%.*s\\%s.exe", dirlen
, dir
, cmd
);
1304 if (xutftowcs_path(wpath
, path
) < 0)
1307 if (!isexe
&& _waccess(wpath
, F_OK
) == 0)
1308 return xstrdup(path
);
1309 wpath
[wcslen(wpath
)-4] = '\0';
1310 if ((!exe_only
|| isexe
) && _waccess(wpath
, F_OK
) == 0) {
1311 if (!(GetFileAttributesW(wpath
) & FILE_ATTRIBUTE_DIRECTORY
)) {
1312 path
[strlen(path
)-4] = '\0';
1313 return xstrdup(path
);
1320 * Determines the absolute path of cmd using the split path in path.
1321 * If cmd contains a slash or backslash, no lookup is performed.
1323 static char *path_lookup(const char *cmd
, int exe_only
)
1327 int len
= strlen(cmd
);
1328 int isexe
= len
>= 4 && !strcasecmp(cmd
+len
-4, ".exe");
1330 if (strpbrk(cmd
, "/\\"))
1331 return xstrdup(cmd
);
1333 path
= mingw_getenv("PATH");
1338 const char *sep
= strchrnul(path
, ';');
1339 int dirlen
= sep
- path
;
1341 prog
= lookup_prog(path
, dirlen
, cmd
, isexe
, exe_only
);
1350 char *mingw_locate_in_PATH(const char *cmd
)
1352 return path_lookup(cmd
, 0);
1355 static const wchar_t *wcschrnul(const wchar_t *s
, wchar_t c
)
1357 while (*s
&& *s
!= c
)
1362 /* Compare only keys */
1363 static int wenvcmp(const void *a
, const void *b
)
1365 wchar_t *p
= *(wchar_t **)a
, *q
= *(wchar_t **)b
;
1366 size_t p_len
, q_len
;
1369 p_len
= wcschrnul(p
, L
'=') - p
;
1370 q_len
= wcschrnul(q
, L
'=') - q
;
1372 /* If the length differs, include the shorter key's NUL */
1375 else if (p_len
> q_len
)
1378 return _wcsnicmp(p
, q
, p_len
);
1382 * Build an environment block combining the inherited environment
1383 * merged with the given list of settings.
1385 * Values of the form "KEY=VALUE" in deltaenv override inherited values.
1386 * Values of the form "KEY" in deltaenv delete inherited values.
1388 * Multiple entries in deltaenv for the same key are explicitly allowed.
1390 * We return a contiguous block of UNICODE strings with a final trailing
1393 static wchar_t *make_environment_block(char **deltaenv
)
1395 wchar_t *wenv
= GetEnvironmentStringsW(), *wdeltaenv
, *result
, *p
;
1396 size_t wlen
, s
, delta_size
, size
;
1398 wchar_t **array
= NULL
;
1399 size_t alloc
= 0, nr
= 0, i
;
1401 size
= 1; /* for extra NUL at the end */
1403 /* If there is no deltaenv to apply, simply return a copy. */
1404 if (!deltaenv
|| !*deltaenv
) {
1405 for (p
= wenv
; p
&& *p
; ) {
1406 size_t s
= wcslen(p
) + 1;
1411 DUP_ARRAY(result
, wenv
, size
);
1412 FreeEnvironmentStringsW(wenv
);
1417 * If there is a deltaenv, let's accumulate all keys into `array`,
1418 * sort them using the stable git_stable_qsort() and then copy,
1419 * skipping duplicate keys
1421 for (p
= wenv
; p
&& *p
; ) {
1422 ALLOC_GROW(array
, nr
+ 1, alloc
);
1429 /* (over-)assess size needed for wchar version of deltaenv */
1430 for (delta_size
= 0, i
= 0; deltaenv
[i
]; i
++)
1431 delta_size
+= strlen(deltaenv
[i
]) * 2 + 1;
1432 ALLOC_ARRAY(wdeltaenv
, delta_size
);
1434 /* convert the deltaenv, appending to array */
1435 for (i
= 0, p
= wdeltaenv
; deltaenv
[i
]; i
++) {
1436 ALLOC_GROW(array
, nr
+ 1, alloc
);
1437 wlen
= xutftowcs(p
, deltaenv
[i
], wdeltaenv
+ delta_size
- p
);
1442 git_stable_qsort(array
, nr
, sizeof(*array
), wenvcmp
);
1443 ALLOC_ARRAY(result
, size
+ delta_size
);
1445 for (p
= result
, i
= 0; i
< nr
; i
++) {
1446 /* Skip any duplicate keys; last one wins */
1447 while (i
+ 1 < nr
&& !wenvcmp(array
+ i
, array
+ i
+ 1))
1450 /* Skip "to delete" entry */
1451 if (!wcschr(array
[i
], L
'='))
1454 size
= wcslen(array
[i
]) + 1;
1455 COPY_ARRAY(p
, array
[i
], size
);
1462 FreeEnvironmentStringsW(wenv
);
1466 static void do_unset_environment_variables(void)
1469 char *p
= unset_environment_variables
;
1476 char *comma
= strchr(p
, ',');
1488 struct pinfo_t
*next
;
1492 static struct pinfo_t
*pinfo
= NULL
;
1493 CRITICAL_SECTION pinfo_cs
;
1495 /* Used to match and chomp off path components */
1496 static inline int match_last_path_component(const char *path
, size_t *len
,
1497 const char *component
)
1499 size_t component_len
= strlen(component
);
1500 if (*len
< component_len
+ 1 ||
1501 !is_dir_sep(path
[*len
- component_len
- 1]) ||
1502 fspathncmp(path
+ *len
- component_len
, component
, component_len
))
1504 *len
-= component_len
+ 1;
1505 /* chomp off repeated dir separators */
1506 while (*len
> 0 && is_dir_sep(path
[*len
- 1]))
1511 static int is_msys2_sh(const char *cmd
)
1516 if (!strcmp(cmd
, "sh")) {
1517 static int ret
= -1;
1523 p
= path_lookup(cmd
, 0);
1527 size_t len
= strlen(p
);
1529 ret
= match_last_path_component(p
, &len
, "sh.exe") &&
1530 match_last_path_component(p
, &len
, "bin") &&
1531 match_last_path_component(p
, &len
, "usr");
1537 if (ends_with(cmd
, "\\sh.exe")) {
1541 sh
= path_lookup("sh", 0);
1543 return !fspathcmp(cmd
, sh
);
1549 static pid_t
mingw_spawnve_fd(const char *cmd
, const char **argv
, char **deltaenv
,
1551 int prepend_cmd
, int fhin
, int fhout
, int fherr
)
1553 static int restrict_handle_inheritance
= -1;
1555 PROCESS_INFORMATION pi
;
1556 LPPROC_THREAD_ATTRIBUTE_LIST attr_list
= NULL
;
1557 HANDLE stdhandles
[3];
1558 DWORD stdhandles_count
= 0;
1561 wchar_t wcmd
[MAX_PATH
], wdir
[MAX_PATH
], *wargs
, *wenvblk
= NULL
;
1562 unsigned flags
= CREATE_UNICODE_ENVIRONMENT
;
1565 const char *(*quote_arg
)(const char *arg
) =
1566 is_msys2_sh(cmd
? cmd
: *argv
) ?
1567 quote_arg_msys2
: quote_arg_msvc
;
1568 const char *strace_env
;
1570 /* Make sure to override previous errors, if any */
1573 if (restrict_handle_inheritance
< 0)
1574 restrict_handle_inheritance
= core_restrict_inherited_handles
;
1576 * The following code to restrict which handles are inherited seems
1577 * to work properly only on Windows 7 and later, so let's disable it
1578 * on Windows Vista and 2008.
1580 if (restrict_handle_inheritance
< 0)
1581 restrict_handle_inheritance
= GetVersion() >> 16 >= 7601;
1583 do_unset_environment_variables();
1585 /* Determine whether or not we are associated to a console */
1586 cons
= CreateFileW(L
"CONOUT$", GENERIC_WRITE
,
1587 FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1588 FILE_ATTRIBUTE_NORMAL
, NULL
);
1589 if (cons
== INVALID_HANDLE_VALUE
) {
1590 /* There is no console associated with this process.
1591 * Since the child is a console process, Windows
1592 * would normally create a console window. But
1593 * since we'll be redirecting std streams, we do
1594 * not need the console.
1595 * It is necessary to use DETACHED_PROCESS
1596 * instead of CREATE_NO_WINDOW to make ssh
1597 * recognize that it has no console.
1599 flags
|= DETACHED_PROCESS
;
1601 /* There is already a console. If we specified
1602 * DETACHED_PROCESS here, too, Windows would
1603 * disassociate the child from the console.
1604 * The same is true for CREATE_NO_WINDOW.
1609 memset(&si
, 0, sizeof(si
));
1610 si
.StartupInfo
.cb
= sizeof(si
);
1611 si
.StartupInfo
.hStdInput
= winansi_get_osfhandle(fhin
);
1612 si
.StartupInfo
.hStdOutput
= winansi_get_osfhandle(fhout
);
1613 si
.StartupInfo
.hStdError
= winansi_get_osfhandle(fherr
);
1615 /* The list of handles cannot contain duplicates */
1616 if (si
.StartupInfo
.hStdInput
!= INVALID_HANDLE_VALUE
)
1617 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdInput
;
1618 if (si
.StartupInfo
.hStdOutput
!= INVALID_HANDLE_VALUE
&&
1619 si
.StartupInfo
.hStdOutput
!= si
.StartupInfo
.hStdInput
)
1620 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdOutput
;
1621 if (si
.StartupInfo
.hStdError
!= INVALID_HANDLE_VALUE
&&
1622 si
.StartupInfo
.hStdError
!= si
.StartupInfo
.hStdInput
&&
1623 si
.StartupInfo
.hStdError
!= si
.StartupInfo
.hStdOutput
)
1624 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdError
;
1625 if (stdhandles_count
)
1626 si
.StartupInfo
.dwFlags
|= STARTF_USESTDHANDLES
;
1628 if (*argv
&& !strcmp(cmd
, *argv
))
1630 else if (xutftowcs_path(wcmd
, cmd
) < 0)
1632 if (dir
&& xutftowcs_path(wdir
, dir
) < 0)
1635 /* concatenate argv, quoting args as we go */
1636 strbuf_init(&args
, 0);
1638 char *quoted
= (char *)quote_arg(cmd
);
1639 strbuf_addstr(&args
, quoted
);
1643 for (; *argv
; argv
++) {
1644 char *quoted
= (char *)quote_arg(*argv
);
1646 strbuf_addch(&args
, ' ');
1647 strbuf_addstr(&args
, quoted
);
1648 if (quoted
!= *argv
)
1652 strace_env
= getenv("GIT_STRACE_COMMANDS");
1654 char *p
= path_lookup("strace.exe", 1);
1656 return error("strace not found!");
1657 if (xutftowcs_path(wcmd
, p
) < 0) {
1662 if (!strcmp("1", strace_env
) ||
1663 !strcasecmp("yes", strace_env
) ||
1664 !strcasecmp("true", strace_env
))
1665 strbuf_insert(&args
, 0, "strace ", 7);
1667 const char *quoted
= quote_arg(strace_env
);
1668 struct strbuf buf
= STRBUF_INIT
;
1669 strbuf_addf(&buf
, "strace -o %s ", quoted
);
1670 if (quoted
!= strace_env
)
1671 free((char *)quoted
);
1672 strbuf_insert(&args
, 0, buf
.buf
, buf
.len
);
1673 strbuf_release(&buf
);
1677 ALLOC_ARRAY(wargs
, st_add(st_mult(2, args
.len
), 1));
1678 xutftowcs(wargs
, args
.buf
, 2 * args
.len
+ 1);
1679 strbuf_release(&args
);
1681 wenvblk
= make_environment_block(deltaenv
);
1683 memset(&pi
, 0, sizeof(pi
));
1684 if (restrict_handle_inheritance
&& stdhandles_count
&&
1685 (InitializeProcThreadAttributeList(NULL
, 1, 0, &size
) ||
1686 GetLastError() == ERROR_INSUFFICIENT_BUFFER
) &&
1687 (attr_list
= (LPPROC_THREAD_ATTRIBUTE_LIST
)
1688 (HeapAlloc(GetProcessHeap(), 0, size
))) &&
1689 InitializeProcThreadAttributeList(attr_list
, 1, 0, &size
) &&
1690 UpdateProcThreadAttribute(attr_list
, 0,
1691 PROC_THREAD_ATTRIBUTE_HANDLE_LIST
,
1693 stdhandles_count
* sizeof(HANDLE
),
1695 si
.lpAttributeList
= attr_list
;
1696 flags
|= EXTENDED_STARTUPINFO_PRESENT
;
1699 ret
= CreateProcessW(*wcmd
? wcmd
: NULL
, wargs
, NULL
, NULL
,
1700 stdhandles_count
? TRUE
: FALSE
,
1701 flags
, wenvblk
, dir
? wdir
: NULL
,
1702 &si
.StartupInfo
, &pi
);
1705 * On Windows 2008 R2, it seems that specifying certain types of handles
1706 * (such as FILE_TYPE_CHAR or FILE_TYPE_PIPE) will always produce an
1707 * error. Rather than playing finicky and fragile games, let's just try
1708 * to detect this situation and simply try again without restricting any
1709 * handle inheritance. This is still better than failing to create
1712 if (!ret
&& restrict_handle_inheritance
&& stdhandles_count
) {
1713 DWORD err
= GetLastError();
1714 struct strbuf buf
= STRBUF_INIT
;
1716 if (err
!= ERROR_NO_SYSTEM_RESOURCES
&&
1718 * On Windows 7 and earlier, handles on pipes and character
1719 * devices are inherited automatically, and cannot be
1720 * specified in the thread handle list. Rather than trying
1721 * to catch each and every corner case (and running the
1722 * chance of *still* forgetting a few), let's just fall
1723 * back to creating the process without trying to limit the
1724 * handle inheritance.
1726 !(err
== ERROR_INVALID_PARAMETER
&&
1727 GetVersion() >> 16 < 9200) &&
1728 !getenv("SUPPRESS_HANDLE_INHERITANCE_WARNING")) {
1732 setenv("SUPPRESS_HANDLE_INHERITANCE_WARNING", "1", 1);
1734 for (i
= 0; i
< stdhandles_count
; i
++) {
1735 HANDLE h
= stdhandles
[i
];
1736 strbuf_addf(&buf
, "handle #%d: %p (type %lx, "
1737 "handle info (%d) %lx\n", i
, h
,
1739 GetHandleInformation(h
, &fl
),
1742 strbuf_addstr(&buf
, "\nThis is a bug; please report it "
1743 "at\nhttps://github.com/git-for-windows/"
1744 "git/issues/new\n\n"
1745 "To suppress this warning, please set "
1746 "the environment variable\n\n"
1747 "\tSUPPRESS_HANDLE_INHERITANCE_WARNING=1"
1750 restrict_handle_inheritance
= 0;
1751 flags
&= ~EXTENDED_STARTUPINFO_PRESENT
;
1752 ret
= CreateProcessW(*wcmd
? wcmd
: NULL
, wargs
, NULL
, NULL
,
1753 TRUE
, flags
, wenvblk
, dir
? wdir
: NULL
,
1754 &si
.StartupInfo
, &pi
);
1756 errno
= err_win_to_posix(GetLastError());
1757 if (ret
&& buf
.len
) {
1758 warning("failed to restrict file handles (%ld)\n\n%s",
1761 strbuf_release(&buf
);
1763 errno
= err_win_to_posix(GetLastError());
1765 if (si
.lpAttributeList
)
1766 DeleteProcThreadAttributeList(si
.lpAttributeList
);
1768 HeapFree(GetProcessHeap(), 0, attr_list
);
1776 CloseHandle(pi
.hThread
);
1779 * The process ID is the human-readable identifier of the process
1780 * that we want to present in log and error messages. The handle
1781 * is not useful for this purpose. But we cannot close it, either,
1782 * because it is not possible to turn a process ID into a process
1783 * handle after the process terminated.
1784 * Keep the handle in a list for waitpid.
1786 EnterCriticalSection(&pinfo_cs
);
1788 struct pinfo_t
*info
= xmalloc(sizeof(struct pinfo_t
));
1789 info
->pid
= pi
.dwProcessId
;
1790 info
->proc
= pi
.hProcess
;
1794 LeaveCriticalSection(&pinfo_cs
);
1796 return (pid_t
)pi
.dwProcessId
;
1799 static pid_t
mingw_spawnv(const char *cmd
, const char **argv
, int prepend_cmd
)
1801 return mingw_spawnve_fd(cmd
, argv
, NULL
, NULL
, prepend_cmd
, 0, 1, 2);
1804 pid_t
mingw_spawnvpe(const char *cmd
, const char **argv
, char **deltaenv
,
1806 int fhin
, int fhout
, int fherr
)
1809 char *prog
= path_lookup(cmd
, 0);
1816 const char *interpr
= parse_interpreter(prog
);
1819 const char *argv0
= argv
[0];
1820 char *iprog
= path_lookup(interpr
, 1);
1827 pid
= mingw_spawnve_fd(iprog
, argv
, deltaenv
, dir
, 1,
1828 fhin
, fhout
, fherr
);
1834 pid
= mingw_spawnve_fd(prog
, argv
, deltaenv
, dir
, 0,
1835 fhin
, fhout
, fherr
);
1841 static int try_shell_exec(const char *cmd
, char *const *argv
)
1843 const char *interpr
= parse_interpreter(cmd
);
1849 prog
= path_lookup(interpr
, 1);
1854 while (argv
[argc
]) argc
++;
1855 ALLOC_ARRAY(argv2
, argc
+ 1);
1856 argv2
[0] = (char *)cmd
; /* full path to the script file */
1857 COPY_ARRAY(&argv2
[1], &argv
[1], argc
);
1858 exec_id
= trace2_exec(prog
, (const char **)argv2
);
1859 pid
= mingw_spawnv(prog
, (const char **)argv2
, 1);
1862 if (waitpid(pid
, &status
, 0) < 0)
1864 trace2_exec_result(exec_id
, status
);
1867 trace2_exec_result(exec_id
, -1);
1868 pid
= 1; /* indicate that we tried but failed */
1875 int mingw_execv(const char *cmd
, char *const *argv
)
1877 /* check if git_command is a shell script */
1878 if (!try_shell_exec(cmd
, argv
)) {
1882 exec_id
= trace2_exec(cmd
, (const char **)argv
);
1883 pid
= mingw_spawnv(cmd
, (const char **)argv
, 0);
1885 trace2_exec_result(exec_id
, -1);
1888 if (waitpid(pid
, &status
, 0) < 0)
1890 trace2_exec_result(exec_id
, status
);
1896 int mingw_execvp(const char *cmd
, char *const *argv
)
1898 char *prog
= path_lookup(cmd
, 0);
1901 mingw_execv(prog
, argv
);
1909 int mingw_kill(pid_t pid
, int sig
)
1911 if (pid
> 0 && sig
== SIGTERM
) {
1912 HANDLE h
= OpenProcess(PROCESS_TERMINATE
, FALSE
, pid
);
1914 if (TerminateProcess(h
, -1)) {
1919 errno
= err_win_to_posix(GetLastError());
1922 } else if (pid
> 0 && sig
== 0) {
1923 HANDLE h
= OpenProcess(PROCESS_QUERY_INFORMATION
, FALSE
, pid
);
1935 * UTF-8 versions of getenv(), putenv() and unsetenv().
1936 * Internally, they use the CRT's stock UNICODE routines
1937 * to avoid data loss.
1939 char *mingw_getenv(const char *name
)
1941 #define GETENV_MAX_RETAIN 64
1942 static char *values
[GETENV_MAX_RETAIN
];
1943 static int value_counter
;
1944 int len_key
, len_value
;
1947 wchar_t w_value
[32768];
1949 if (!name
|| !*name
)
1952 len_key
= strlen(name
) + 1;
1953 /* We cannot use xcalloc() here because that uses getenv() itself */
1954 w_key
= calloc(len_key
, sizeof(wchar_t));
1956 die("Out of memory, (tried to allocate %u wchar_t's)", len_key
);
1957 xutftowcs(w_key
, name
, len_key
);
1958 /* GetEnvironmentVariableW() only sets the last error upon failure */
1959 SetLastError(ERROR_SUCCESS
);
1960 len_value
= GetEnvironmentVariableW(w_key
, w_value
, ARRAY_SIZE(w_value
));
1961 if (!len_value
&& GetLastError() == ERROR_ENVVAR_NOT_FOUND
) {
1967 len_value
= len_value
* 3 + 1;
1968 /* We cannot use xcalloc() here because that uses getenv() itself */
1969 value
= calloc(len_value
, sizeof(char));
1971 die("Out of memory, (tried to allocate %u bytes)", len_value
);
1972 xwcstoutf(value
, w_value
, len_value
);
1975 * We return `value` which is an allocated value and the caller is NOT
1976 * expecting to have to free it, so we keep a round-robin array,
1977 * invalidating the buffer after GETENV_MAX_RETAIN getenv() calls.
1979 free(values
[value_counter
]);
1980 values
[value_counter
++] = value
;
1981 if (value_counter
>= ARRAY_SIZE(values
))
1987 int mingw_putenv(const char *namevalue
)
1990 wchar_t *wide
, *equal
;
1993 if (!namevalue
|| !*namevalue
)
1996 size
= strlen(namevalue
) * 2 + 1;
1997 wide
= calloc(size
, sizeof(wchar_t));
1999 die("Out of memory, (tried to allocate %u wchar_t's)", size
);
2000 xutftowcs(wide
, namevalue
, size
);
2001 equal
= wcschr(wide
, L
'=');
2003 result
= SetEnvironmentVariableW(wide
, NULL
);
2006 result
= SetEnvironmentVariableW(wide
, equal
+ 1);
2011 errno
= err_win_to_posix(GetLastError());
2013 return result
? 0 : -1;
2016 static void ensure_socket_initialization(void)
2019 static int initialized
= 0;
2024 if (WSAStartup(MAKEWORD(2,2), &wsa
))
2025 die("unable to initialize winsock subsystem, error %d",
2028 atexit((void(*)(void)) WSACleanup
);
2033 int mingw_gethostname(char *name
, int namelen
)
2035 ensure_socket_initialization();
2036 return gethostname(name
, namelen
);
2039 #undef gethostbyname
2040 struct hostent
*mingw_gethostbyname(const char *host
)
2042 ensure_socket_initialization();
2043 return gethostbyname(host
);
2047 int mingw_getaddrinfo(const char *node
, const char *service
,
2048 const struct addrinfo
*hints
, struct addrinfo
**res
)
2050 ensure_socket_initialization();
2051 return getaddrinfo(node
, service
, hints
, res
);
2054 int mingw_socket(int domain
, int type
, int protocol
)
2059 ensure_socket_initialization();
2060 s
= WSASocket(domain
, type
, protocol
, NULL
, 0, 0);
2061 if (s
== INVALID_SOCKET
) {
2063 * WSAGetLastError() values are regular BSD error codes
2064 * biased by WSABASEERR.
2065 * However, strerror() does not know about networking
2066 * specific errors, which are values beginning at 38 or so.
2067 * Therefore, we choose to leave the biased error code
2068 * in errno so that _if_ someone looks up the code somewhere,
2069 * then it is at least the number that are usually listed.
2071 errno
= WSAGetLastError();
2074 /* convert into a file descriptor */
2075 if ((sockfd
= _open_osfhandle(s
, O_RDWR
|O_BINARY
)) < 0) {
2077 return error("unable to make a socket file descriptor: %s",
2084 int mingw_connect(int sockfd
, struct sockaddr
*sa
, size_t sz
)
2086 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2087 return connect(s
, sa
, sz
);
2091 int mingw_bind(int sockfd
, struct sockaddr
*sa
, size_t sz
)
2093 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2094 return bind(s
, sa
, sz
);
2098 int mingw_setsockopt(int sockfd
, int lvl
, int optname
, void *optval
, int optlen
)
2100 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2101 return setsockopt(s
, lvl
, optname
, (const char*)optval
, optlen
);
2105 int mingw_shutdown(int sockfd
, int how
)
2107 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2108 return shutdown(s
, how
);
2112 int mingw_listen(int sockfd
, int backlog
)
2114 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2115 return listen(s
, backlog
);
2119 int mingw_accept(int sockfd1
, struct sockaddr
*sa
, socklen_t
*sz
)
2123 SOCKET s1
= (SOCKET
)_get_osfhandle(sockfd1
);
2124 SOCKET s2
= accept(s1
, sa
, sz
);
2126 /* convert into a file descriptor */
2127 if ((sockfd2
= _open_osfhandle(s2
, O_RDWR
|O_BINARY
)) < 0) {
2130 return error("unable to make a socket file descriptor: %s",
2137 int mingw_rename(const char *pold
, const char *pnew
)
2141 wchar_t wpold
[MAX_PATH
], wpnew
[MAX_PATH
];
2142 if (xutftowcs_path(wpold
, pold
) < 0 || xutftowcs_path(wpnew
, pnew
) < 0)
2146 * Try native rename() first to get errno right.
2147 * It is based on MoveFile(), which cannot overwrite existing files.
2149 if (!_wrename(wpold
, wpnew
))
2151 if (errno
!= EEXIST
)
2154 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
2156 /* TODO: translate more errors */
2157 gle
= GetLastError();
2158 if (gle
== ERROR_ACCESS_DENIED
&&
2159 (attrs
= GetFileAttributesW(wpnew
)) != INVALID_FILE_ATTRIBUTES
) {
2160 if (attrs
& FILE_ATTRIBUTE_DIRECTORY
) {
2161 DWORD attrsold
= GetFileAttributesW(wpold
);
2162 if (attrsold
== INVALID_FILE_ATTRIBUTES
||
2163 !(attrsold
& FILE_ATTRIBUTE_DIRECTORY
))
2165 else if (!_wrmdir(wpnew
))
2169 if ((attrs
& FILE_ATTRIBUTE_READONLY
) &&
2170 SetFileAttributesW(wpnew
, attrs
& ~FILE_ATTRIBUTE_READONLY
)) {
2171 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
2173 gle
= GetLastError();
2174 /* revert file attributes on failure */
2175 SetFileAttributesW(wpnew
, attrs
);
2178 if (tries
< ARRAY_SIZE(delay
) && gle
== ERROR_ACCESS_DENIED
) {
2180 * We assume that some other process had the source or
2181 * destination file open at the wrong moment and retry.
2182 * In order to give the other process a higher chance to
2183 * complete its operation, we give up our time slice now.
2184 * If we have to retry again, we do sleep a bit.
2186 Sleep(delay
[tries
]);
2190 if (gle
== ERROR_ACCESS_DENIED
&&
2191 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
2192 "Should I try again?", pold
, pnew
))
2200 * Note that this doesn't return the actual pagesize, but
2201 * the allocation granularity. If future Windows specific git code
2202 * needs the real getpagesize function, we need to find another solution.
2204 int mingw_getpagesize(void)
2208 return si
.dwAllocationGranularity
;
2211 /* See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724435.aspx */
2212 enum EXTENDED_NAME_FORMAT
{
2214 NameUserPrincipal
= 8
2217 static char *get_extended_user_info(enum EXTENDED_NAME_FORMAT type
)
2219 DECLARE_PROC_ADDR(secur32
.dll
, BOOL
, SEC_ENTRY
, GetUserNameExW
,
2220 enum EXTENDED_NAME_FORMAT
, LPCWSTR
, PULONG
);
2221 static wchar_t wbuffer
[1024];
2224 if (!INIT_PROC_ADDR(GetUserNameExW
))
2227 len
= ARRAY_SIZE(wbuffer
);
2228 if (GetUserNameExW(type
, wbuffer
, &len
)) {
2229 char *converted
= xmalloc((len
*= 3));
2230 if (xwcstoutf(converted
, wbuffer
, len
) >= 0)
2238 char *mingw_query_user_email(void)
2240 return get_extended_user_info(NameUserPrincipal
);
2243 struct passwd
*getpwuid(int uid
)
2245 static unsigned initialized
;
2246 static char user_name
[100];
2247 static struct passwd
*p
;
2254 len
= ARRAY_SIZE(buf
);
2255 if (!GetUserNameW(buf
, &len
)) {
2260 if (xwcstoutf(user_name
, buf
, sizeof(user_name
)) < 0) {
2265 p
= xmalloc(sizeof(*p
));
2266 p
->pw_name
= user_name
;
2267 p
->pw_gecos
= get_extended_user_info(NameDisplay
);
2269 p
->pw_gecos
= "unknown";
2276 static HANDLE timer_event
;
2277 static HANDLE timer_thread
;
2278 static int timer_interval
;
2279 static int one_shot
;
2280 static sig_handler_t timer_fn
= SIG_DFL
, sigint_fn
= SIG_DFL
;
2282 /* The timer works like this:
2283 * The thread, ticktack(), is a trivial routine that most of the time
2284 * only waits to receive the signal to terminate. The main thread tells
2285 * the thread to terminate by setting the timer_event to the signalled
2287 * But ticktack() interrupts the wait state after the timer's interval
2288 * length to call the signal handler.
2291 static unsigned __stdcall
ticktack(void *dummy
)
2293 while (WaitForSingleObject(timer_event
, timer_interval
) == WAIT_TIMEOUT
) {
2294 mingw_raise(SIGALRM
);
2301 static int start_timer_thread(void)
2303 timer_event
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
2305 timer_thread
= (HANDLE
) _beginthreadex(NULL
, 0, ticktack
, NULL
, 0, NULL
);
2307 return errno
= ENOMEM
,
2308 error("cannot start timer thread");
2310 return errno
= ENOMEM
,
2311 error("cannot allocate resources for timer");
2315 static void stop_timer_thread(void)
2318 SetEvent(timer_event
); /* tell thread to terminate */
2320 int rc
= WaitForSingleObject(timer_thread
, 10000);
2321 if (rc
== WAIT_TIMEOUT
)
2322 error("timer thread did not terminate timely");
2323 else if (rc
!= WAIT_OBJECT_0
)
2324 error("waiting for timer thread failed: %lu",
2326 CloseHandle(timer_thread
);
2329 CloseHandle(timer_event
);
2331 timer_thread
= NULL
;
2334 static inline int is_timeval_eq(const struct timeval
*i1
, const struct timeval
*i2
)
2336 return i1
->tv_sec
== i2
->tv_sec
&& i1
->tv_usec
== i2
->tv_usec
;
2339 int setitimer(int type
, struct itimerval
*in
, struct itimerval
*out
)
2341 static const struct timeval zero
;
2342 static int atexit_done
;
2345 return errno
= EINVAL
,
2346 error("setitimer param 3 != NULL not implemented");
2347 if (!is_timeval_eq(&in
->it_interval
, &zero
) &&
2348 !is_timeval_eq(&in
->it_interval
, &in
->it_value
))
2349 return errno
= EINVAL
,
2350 error("setitimer: it_interval must be zero or eq it_value");
2353 stop_timer_thread();
2355 if (is_timeval_eq(&in
->it_value
, &zero
) &&
2356 is_timeval_eq(&in
->it_interval
, &zero
))
2359 timer_interval
= in
->it_value
.tv_sec
* 1000 + in
->it_value
.tv_usec
/ 1000;
2360 one_shot
= is_timeval_eq(&in
->it_interval
, &zero
);
2362 atexit(stop_timer_thread
);
2365 return start_timer_thread();
2368 int sigaction(int sig
, struct sigaction
*in
, struct sigaction
*out
)
2371 return errno
= EINVAL
,
2372 error("sigaction only implemented for SIGALRM");
2374 return errno
= EINVAL
,
2375 error("sigaction: param 3 != NULL not implemented");
2377 timer_fn
= in
->sa_handler
;
2382 sig_handler_t
mingw_signal(int sig
, sig_handler_t handler
)
2394 sigint_fn
= handler
;
2398 return signal(sig
, handler
);
2405 int mingw_raise(int sig
)
2409 if (timer_fn
== SIG_DFL
) {
2410 if (isatty(STDERR_FILENO
))
2411 fputs("Alarm clock\n", stderr
);
2412 exit(128 + SIGALRM
);
2413 } else if (timer_fn
!= SIG_IGN
)
2418 if (sigint_fn
== SIG_DFL
)
2420 else if (sigint_fn
!= SIG_IGN
)
2424 #if defined(_MSC_VER)
2431 case SIGABRT_COMPAT
:
2433 * The <signal.h> header in the MS C Runtime defines 8 signals
2434 * as being supported on the platform. Anything else causes an
2435 * "Invalid signal or error" (which in DEBUG builds causes the
2436 * Abort/Retry/Ignore dialog). We by-pass the CRT for things we
2437 * already know will fail.
2454 int link(const char *oldpath
, const char *newpath
)
2456 wchar_t woldpath
[MAX_PATH
], wnewpath
[MAX_PATH
];
2457 if (xutftowcs_path(woldpath
, oldpath
) < 0 ||
2458 xutftowcs_path(wnewpath
, newpath
) < 0)
2461 if (!CreateHardLinkW(wnewpath
, woldpath
, NULL
)) {
2462 errno
= err_win_to_posix(GetLastError());
2468 pid_t
waitpid(pid_t pid
, int *status
, int options
)
2470 HANDLE h
= OpenProcess(SYNCHRONIZE
| PROCESS_QUERY_INFORMATION
,
2477 if (pid
> 0 && options
& WNOHANG
) {
2478 if (WAIT_OBJECT_0
!= WaitForSingleObject(h
, 0)) {
2482 options
&= ~WNOHANG
;
2486 struct pinfo_t
**ppinfo
;
2487 if (WaitForSingleObject(h
, INFINITE
) != WAIT_OBJECT_0
) {
2493 GetExitCodeProcess(h
, (LPDWORD
)status
);
2495 EnterCriticalSection(&pinfo_cs
);
2499 struct pinfo_t
*info
= *ppinfo
;
2500 if (info
->pid
== pid
) {
2501 CloseHandle(info
->proc
);
2502 *ppinfo
= info
->next
;
2506 ppinfo
= &info
->next
;
2509 LeaveCriticalSection(&pinfo_cs
);
2520 int xutftowcsn(wchar_t *wcs
, const char *utfs
, size_t wcslen
, int utflen
)
2522 int upos
= 0, wpos
= 0;
2523 const unsigned char *utf
= (const unsigned char*) utfs
;
2524 if (!utf
|| !wcs
|| wcslen
< 1) {
2528 /* reserve space for \0 */
2533 while (upos
< utflen
) {
2534 int c
= utf
[upos
++] & 0xff;
2535 if (utflen
== INT_MAX
&& c
== 0)
2538 if (wpos
>= wcslen
) {
2547 } else if (c
>= 0xc2 && c
< 0xe0 && upos
< utflen
&&
2548 (utf
[upos
] & 0xc0) == 0x80) {
2550 c
= ((c
& 0x1f) << 6);
2551 c
|= (utf
[upos
++] & 0x3f);
2553 } else if (c
>= 0xe0 && c
< 0xf0 && upos
+ 1 < utflen
&&
2554 !(c
== 0xe0 && utf
[upos
] < 0xa0) && /* over-long encoding */
2555 (utf
[upos
] & 0xc0) == 0x80 &&
2556 (utf
[upos
+ 1] & 0xc0) == 0x80) {
2558 c
= ((c
& 0x0f) << 12);
2559 c
|= ((utf
[upos
++] & 0x3f) << 6);
2560 c
|= (utf
[upos
++] & 0x3f);
2562 } else if (c
>= 0xf0 && c
< 0xf5 && upos
+ 2 < utflen
&&
2563 wpos
+ 1 < wcslen
&&
2564 !(c
== 0xf0 && utf
[upos
] < 0x90) && /* over-long encoding */
2565 !(c
== 0xf4 && utf
[upos
] >= 0x90) && /* > \u10ffff */
2566 (utf
[upos
] & 0xc0) == 0x80 &&
2567 (utf
[upos
+ 1] & 0xc0) == 0x80 &&
2568 (utf
[upos
+ 2] & 0xc0) == 0x80) {
2569 /* 4-byte utf-8: convert to \ud8xx \udcxx surrogate pair */
2570 c
= ((c
& 0x07) << 18);
2571 c
|= ((utf
[upos
++] & 0x3f) << 12);
2572 c
|= ((utf
[upos
++] & 0x3f) << 6);
2573 c
|= (utf
[upos
++] & 0x3f);
2575 wcs
[wpos
++] = 0xd800 | (c
>> 10);
2576 wcs
[wpos
++] = 0xdc00 | (c
& 0x3ff);
2577 } else if (c
>= 0xa0) {
2578 /* invalid utf-8 byte, printable unicode char: convert 1:1 */
2581 /* invalid utf-8 byte, non-printable unicode: convert to hex */
2582 static const char *hex
= "0123456789abcdef";
2583 wcs
[wpos
++] = hex
[c
>> 4];
2585 wcs
[wpos
++] = hex
[c
& 0x0f];
2592 int xwcstoutf(char *utf
, const wchar_t *wcs
, size_t utflen
)
2594 if (!wcs
|| !utf
|| utflen
< 1) {
2598 utflen
= WideCharToMultiByte(CP_UTF8
, 0, wcs
, -1, utf
, utflen
, NULL
, NULL
);
2605 static void setup_windows_environment(void)
2607 char *tmp
= getenv("TMPDIR");
2609 /* on Windows it is TMP and TEMP */
2611 if (!(tmp
= getenv("TMP")))
2612 tmp
= getenv("TEMP");
2614 setenv("TMPDIR", tmp
, 1);
2615 tmp
= getenv("TMPDIR");
2621 * Convert all dir separators to forward slashes,
2622 * to help shell commands called from the Git
2623 * executable (by not mistaking the dir separators
2624 * for escape characters).
2626 convert_slashes(tmp
);
2629 /* simulate TERM to enable auto-color (see color.c) */
2630 if (!getenv("TERM"))
2631 setenv("TERM", "cygwin", 1);
2633 /* calculate HOME if not set */
2634 if (!getenv("HOME")) {
2636 * try $HOMEDRIVE$HOMEPATH - the home share may be a network
2637 * location, thus also check if the path exists (i.e. is not
2640 if ((tmp
= getenv("HOMEDRIVE"))) {
2641 struct strbuf buf
= STRBUF_INIT
;
2642 strbuf_addstr(&buf
, tmp
);
2643 if ((tmp
= getenv("HOMEPATH"))) {
2644 strbuf_addstr(&buf
, tmp
);
2645 if (is_directory(buf
.buf
))
2646 setenv("HOME", buf
.buf
, 1);
2648 tmp
= NULL
; /* use $USERPROFILE */
2650 strbuf_release(&buf
);
2652 /* use $USERPROFILE if the home share is not available */
2653 if (!tmp
&& (tmp
= getenv("USERPROFILE")))
2654 setenv("HOME", tmp
, 1);
2658 static PSID
get_current_user_sid(void)
2664 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &token
))
2667 if (!GetTokenInformation(token
, TokenUser
, NULL
, 0, &len
)) {
2668 TOKEN_USER
*info
= xmalloc((size_t)len
);
2669 if (GetTokenInformation(token
, TokenUser
, info
, len
, &len
)) {
2670 len
= GetLengthSid(info
->User
.Sid
);
2671 result
= xmalloc(len
);
2672 if (!CopySid(len
, result
, info
->User
.Sid
)) {
2673 error(_("failed to copy SID (%ld)"),
2675 FREE_AND_NULL(result
);
2678 FREE_AND_NULL(info
);
2685 static int acls_supported(const char *path
)
2687 size_t offset
= offset_1st_component(path
);
2688 WCHAR wroot
[MAX_PATH
];
2689 DWORD file_system_flags
;
2692 xutftowcsn(wroot
, path
, MAX_PATH
, offset
) > 0 &&
2693 GetVolumeInformationW(wroot
, NULL
, 0, NULL
, NULL
,
2694 &file_system_flags
, NULL
, 0))
2695 return !!(file_system_flags
& FILE_PERSISTENT_ACLS
);
2700 int is_path_owned_by_current_sid(const char *path
, struct strbuf
*report
)
2702 WCHAR wpath
[MAX_PATH
];
2704 PSECURITY_DESCRIPTOR descriptor
= NULL
;
2707 static wchar_t home
[MAX_PATH
];
2711 if (xutftowcs_path(wpath
, path
) < 0)
2715 * On Windows, the home directory is owned by the administrator, but for
2716 * all practical purposes, it belongs to the user. Do pretend that it is
2717 * owned by the user.
2720 DWORD size
= ARRAY_SIZE(home
);
2721 DWORD len
= GetEnvironmentVariableW(L
"HOME", home
, size
);
2722 if (!len
|| len
> size
)
2723 wcscpy(home
, L
"::N/A::");
2725 if (!wcsicmp(wpath
, home
))
2728 /* Get the owner SID */
2729 err
= GetNamedSecurityInfoW(wpath
, SE_FILE_OBJECT
,
2730 OWNER_SECURITY_INFORMATION
|
2731 DACL_SECURITY_INFORMATION
,
2732 &sid
, NULL
, NULL
, NULL
, &descriptor
);
2734 if (err
!= ERROR_SUCCESS
)
2735 error(_("failed to get owner for '%s' (%ld)"), path
, err
);
2736 else if (sid
&& IsValidSid(sid
)) {
2737 /* Now, verify that the SID matches the current user's */
2738 static PSID current_user_sid
;
2741 if (!current_user_sid
)
2742 current_user_sid
= get_current_user_sid();
2744 if (current_user_sid
&&
2745 IsValidSid(current_user_sid
) &&
2746 EqualSid(sid
, current_user_sid
))
2748 else if (IsWellKnownSid(sid
, WinBuiltinAdministratorsSid
) &&
2749 CheckTokenMembership(NULL
, sid
, &is_member
) &&
2752 * If owned by the Administrators group, and the
2753 * current user is an administrator, we consider that
2758 IsWellKnownSid(sid
, WinWorldSid
) &&
2759 !acls_supported(path
)) {
2761 * On FAT32 volumes, ownership is not actually recorded.
2763 strbuf_addf(report
, "'%s' is on a file system that does "
2764 "not record ownership\n", path
);
2765 } else if (report
) {
2766 LPSTR str1
, str2
, to_free1
= NULL
, to_free2
= NULL
;
2768 if (ConvertSidToStringSidA(sid
, &str1
))
2771 str1
= "(inconvertible)";
2773 if (!current_user_sid
)
2775 else if (!IsValidSid(current_user_sid
))
2777 else if (ConvertSidToStringSidA(current_user_sid
, &str2
))
2780 str2
= "(inconvertible)";
2782 "'%s' is owned by:\n"
2783 "\t'%s'\nbut the current user is:\n"
2784 "\t'%s'\n", path
, str1
, str2
);
2785 LocalFree(to_free1
);
2786 LocalFree(to_free2
);
2791 * We can release the security descriptor struct only now because `sid`
2792 * actually points into this struct.
2795 LocalFree(descriptor
);
2800 int is_valid_win32_path(const char *path
, int allow_literal_nul
)
2802 const char *p
= path
;
2803 int preceding_space_or_period
= 0, i
= 0, periods
= 0;
2808 skip_dos_drive_prefix((char **)&path
);
2815 case '/': case '\\':
2816 /* cannot end in ` ` or `.`, except for `.` and `..` */
2817 if (preceding_space_or_period
&&
2818 (i
!= periods
|| periods
> 2))
2823 i
= periods
= preceding_space_or_period
= 0;
2827 case 'a': case 'A': /* AUX */
2828 if (((c
= path
[++i
]) != 'u' && c
!= 'U') ||
2829 ((c
= path
[++i
]) != 'x' && c
!= 'X')) {
2830 not_a_reserved_name
:
2836 /* COM1 ... COM9, CON, CONIN$, CONOUT$ */
2837 if ((c
= path
[++i
]) != 'o' && c
!= 'O')
2838 goto not_a_reserved_name
;
2840 if (c
== 'm' || c
== 'M') { /* COM1 ... COM9 */
2842 if (c
< '1' || c
> '9')
2843 goto not_a_reserved_name
;
2844 } else if (c
== 'n' || c
== 'N') { /* CON */
2846 if ((c
== 'i' || c
== 'I') &&
2847 ((c
= path
[i
+ 2]) == 'n' ||
2850 i
+= 3; /* CONIN$ */
2851 else if ((c
== 'o' || c
== 'O') &&
2852 ((c
= path
[i
+ 2]) == 'u' ||
2854 ((c
= path
[i
+ 3]) == 't' ||
2857 i
+= 4; /* CONOUT$ */
2859 goto not_a_reserved_name
;
2861 case 'l': case 'L': /* LPT<N> */
2862 if (((c
= path
[++i
]) != 'p' && c
!= 'P') ||
2863 ((c
= path
[++i
]) != 't' && c
!= 'T') ||
2864 !isdigit(path
[++i
]))
2865 goto not_a_reserved_name
;
2867 case 'n': case 'N': /* NUL */
2868 if (((c
= path
[++i
]) != 'u' && c
!= 'U') ||
2869 ((c
= path
[++i
]) != 'l' && c
!= 'L') ||
2870 (allow_literal_nul
&&
2871 !path
[i
+ 1] && p
== path
))
2872 goto not_a_reserved_name
;
2874 case 'p': case 'P': /* PRN */
2875 if (((c
= path
[++i
]) != 'r' && c
!= 'R') ||
2876 ((c
= path
[++i
]) != 'n' && c
!= 'N'))
2877 goto not_a_reserved_name
;
2884 * So far, this looks like a reserved name. Let's see
2885 * whether it actually is one: trailing spaces, a file
2886 * extension, or an NTFS Alternate Data Stream do not
2887 * matter, the name is still reserved if any of those
2888 * follow immediately after the actual name.
2891 if (path
[i
] == ' ') {
2892 preceding_space_or_period
= 1;
2893 while (path
[++i
] == ' ')
2894 ; /* skip all spaces */
2898 if (c
&& c
!= '.' && c
!= ':' && !is_xplatform_dir_sep(c
))
2899 goto not_a_reserved_name
;
2901 /* contains reserved name */
2907 preceding_space_or_period
= 1;
2910 case ':': /* DOS drive prefix was already skipped */
2911 case '<': case '>': case '"': case '|': case '?': case '*':
2912 /* illegal character */
2915 if (c
> '\0' && c
< '\x20')
2916 /* illegal character */
2919 preceding_space_or_period
= 0;
2924 #if !defined(_MSC_VER)
2926 * Disable MSVCRT command line wildcard expansion (__getmainargs called from
2927 * mingw startup code, see init.c in mingw runtime).
2932 static NORETURN
void die_startup(void)
2934 fputs("fatal: not enough memory for initialization", stderr
);
2938 static void *malloc_startup(size_t size
)
2940 void *result
= malloc(size
);
2946 static char *wcstoutfdup_startup(char *buffer
, const wchar_t *wcs
, size_t len
)
2948 len
= xwcstoutf(buffer
, wcs
, len
) + 1;
2949 return memcpy(malloc_startup(len
), buffer
, len
);
2952 static void maybe_redirect_std_handle(const wchar_t *key
, DWORD std_id
, int fd
,
2953 DWORD desired_access
, DWORD flags
)
2955 DWORD create_flag
= fd
? OPEN_ALWAYS
: OPEN_EXISTING
;
2956 wchar_t buf
[MAX_PATH
];
2957 DWORD max
= ARRAY_SIZE(buf
);
2959 DWORD ret
= GetEnvironmentVariableW(key
, buf
, max
);
2961 if (!ret
|| ret
>= max
)
2964 /* make sure this does not leak into child processes */
2965 SetEnvironmentVariableW(key
, NULL
);
2966 if (!wcscmp(buf
, L
"off")) {
2968 handle
= GetStdHandle(std_id
);
2969 if (handle
!= INVALID_HANDLE_VALUE
)
2970 CloseHandle(handle
);
2973 if (std_id
== STD_ERROR_HANDLE
&& !wcscmp(buf
, L
"2>&1")) {
2974 handle
= GetStdHandle(STD_OUTPUT_HANDLE
);
2975 if (handle
== INVALID_HANDLE_VALUE
) {
2977 handle
= GetStdHandle(std_id
);
2978 if (handle
!= INVALID_HANDLE_VALUE
)
2979 CloseHandle(handle
);
2981 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
2982 SetStdHandle(std_id
, handle
);
2984 /* do *not* close the new_fd: that would close stdout */
2988 handle
= CreateFileW(buf
, desired_access
, 0, NULL
, create_flag
,
2990 if (handle
!= INVALID_HANDLE_VALUE
) {
2991 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
2992 SetStdHandle(std_id
, handle
);
2998 static void maybe_redirect_std_handles(void)
3000 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDIN", STD_INPUT_HANDLE
, 0,
3001 GENERIC_READ
, FILE_ATTRIBUTE_NORMAL
);
3002 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDOUT", STD_OUTPUT_HANDLE
, 1,
3003 GENERIC_WRITE
, FILE_ATTRIBUTE_NORMAL
);
3004 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDERR", STD_ERROR_HANDLE
, 2,
3005 GENERIC_WRITE
, FILE_FLAG_NO_BUFFERING
);
3015 * We implement wmain() and compile with -municode, which would
3016 * normally ignore main(), but we call the latter from the former
3017 * so that we can handle non-ASCII command-line parameters
3020 * To be more compatible with the core git code, we convert
3021 * argv into UTF8 and pass them directly to main().
3023 int wmain(int argc
, const wchar_t **wargv
)
3025 int i
, maxlen
, exit_status
;
3026 char *buffer
, **save
;
3029 trace2_initialize_clock();
3033 _CrtSetReportMode(_CRT_ASSERT
, _CRTDBG_MODE_DEBUG
);
3036 #ifdef USE_MSVC_CRTDBG
3037 _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF
| _CRTDBG_LEAK_CHECK_DF
);
3041 maybe_redirect_std_handles();
3043 /* determine size of argv and environ conversion buffer */
3044 maxlen
= wcslen(wargv
[0]);
3045 for (i
= 1; i
< argc
; i
++)
3046 maxlen
= max(maxlen
, wcslen(wargv
[i
]));
3048 /* allocate buffer (wchar_t encodes to max 3 UTF-8 bytes) */
3049 maxlen
= 3 * maxlen
+ 1;
3050 buffer
= malloc_startup(maxlen
);
3053 * Create a UTF-8 version of w_argv. Also create a "save" copy
3054 * to remember all the string pointers because parse_options()
3055 * will remove claimed items from the argv that we pass down.
3057 ALLOC_ARRAY(argv
, argc
+ 1);
3058 ALLOC_ARRAY(save
, argc
+ 1);
3059 for (i
= 0; i
< argc
; i
++)
3060 argv
[i
] = save
[i
] = wcstoutfdup_startup(buffer
, wargv
[i
], maxlen
);
3061 argv
[i
] = save
[i
] = NULL
;
3064 /* fix Windows specific environment settings */
3065 setup_windows_environment();
3067 unset_environment_variables
= xstrdup("PERL5LIB");
3069 /* initialize critical section for waitpid pinfo_t list */
3070 InitializeCriticalSection(&pinfo_cs
);
3072 /* set up default file mode and file modes for stdin/out/err */
3074 _setmode(_fileno(stdin
), _O_BINARY
);
3075 _setmode(_fileno(stdout
), _O_BINARY
);
3076 _setmode(_fileno(stderr
), _O_BINARY
);
3078 /* initialize Unicode console */
3081 /* invoke the real main() using our utf8 version of argv. */
3082 exit_status
= main(argc
, argv
);
3084 for (i
= 0; i
< argc
; i
++)
3092 int uname(struct utsname
*buf
)
3094 unsigned v
= (unsigned)GetVersion();
3095 memset(buf
, 0, sizeof(*buf
));
3096 xsnprintf(buf
->sysname
, sizeof(buf
->sysname
), "Windows");
3097 xsnprintf(buf
->release
, sizeof(buf
->release
),
3098 "%u.%u", v
& 0xff, (v
>> 8) & 0xff);
3099 /* assuming NT variants only.. */
3100 xsnprintf(buf
->version
, sizeof(buf
->version
),
3101 "%u", (v
>> 16) & 0x7fff);