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")) {
259 return config_error_nonbool(var
);
260 free(unset_environment_variables
);
261 unset_environment_variables
= xstrdup(value
);
265 if (!strcmp(var
, "core.restrictinheritedhandles")) {
266 if (value
&& !strcasecmp(value
, "auto"))
267 core_restrict_inherited_handles
= -1;
269 core_restrict_inherited_handles
=
270 git_config_bool(var
, value
);
277 /* Normalizes NT paths as returned by some low-level APIs. */
278 static wchar_t *normalize_ntpath(wchar_t *wbuf
)
281 /* fix absolute path prefixes */
282 if (wbuf
[0] == '\\') {
283 /* strip NT namespace prefixes */
284 if (!wcsncmp(wbuf
, L
"\\??\\", 4) ||
285 !wcsncmp(wbuf
, L
"\\\\?\\", 4))
287 else if (!wcsnicmp(wbuf
, L
"\\DosDevices\\", 12))
289 /* replace remaining '...UNC\' with '\\' */
290 if (!wcsnicmp(wbuf
, L
"UNC\\", 4)) {
295 /* convert backslashes to slashes */
296 for (i
= 0; wbuf
[i
]; i
++)
302 int mingw_unlink(const char *pathname
)
305 wchar_t wpathname
[MAX_PATH
];
306 if (xutftowcs_path(wpathname
, pathname
) < 0)
309 if (DeleteFileW(wpathname
))
312 /* read-only files cannot be removed */
313 _wchmod(wpathname
, 0666);
314 while ((ret
= _wunlink(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
315 if (!is_file_in_use_error(GetLastError()))
318 * We assume that some other process had the source or
319 * destination file open at the wrong moment and retry.
320 * In order to give the other process a higher chance to
321 * complete its operation, we give up our time slice now.
322 * If we have to retry again, we do sleep a bit.
327 while (ret
== -1 && is_file_in_use_error(GetLastError()) &&
328 ask_yes_no_if_possible("Unlink of file '%s' failed. "
329 "Should I try again?", pathname
))
330 ret
= _wunlink(wpathname
);
334 static int is_dir_empty(const wchar_t *wpath
)
336 WIN32_FIND_DATAW findbuf
;
338 wchar_t wbuf
[MAX_PATH
+ 2];
340 wcscat(wbuf
, L
"\\*");
341 handle
= FindFirstFileW(wbuf
, &findbuf
);
342 if (handle
== INVALID_HANDLE_VALUE
)
343 return GetLastError() == ERROR_NO_MORE_FILES
;
345 while (!wcscmp(findbuf
.cFileName
, L
".") ||
346 !wcscmp(findbuf
.cFileName
, L
".."))
347 if (!FindNextFileW(handle
, &findbuf
)) {
348 DWORD err
= GetLastError();
350 return err
== ERROR_NO_MORE_FILES
;
356 int mingw_rmdir(const char *pathname
)
359 wchar_t wpathname
[MAX_PATH
];
363 * Contrary to Linux' `rmdir()`, Windows' _wrmdir() and _rmdir()
364 * (and `RemoveDirectoryW()`) will attempt to remove the target of a
365 * symbolic link (if it points to a directory).
367 * This behavior breaks the assumption of e.g. `remove_path()` which
368 * upon successful deletion of a file will attempt to remove its parent
369 * directories recursively until failure (which usually happens when
370 * the directory is not empty).
372 * Therefore, before calling `_wrmdir()`, we first check if the path is
373 * a symbolic link. If it is, we exit and return the same error as
374 * Linux' `rmdir()` would, i.e. `ENOTDIR`.
376 if (!mingw_lstat(pathname
, &st
) && S_ISLNK(st
.st_mode
)) {
381 if (xutftowcs_path(wpathname
, pathname
) < 0)
384 while ((ret
= _wrmdir(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
385 if (!is_file_in_use_error(GetLastError()))
386 errno
= err_win_to_posix(GetLastError());
389 if (!is_dir_empty(wpathname
)) {
394 * We assume that some other process had the source or
395 * destination file open at the wrong moment and retry.
396 * In order to give the other process a higher chance to
397 * complete its operation, we give up our time slice now.
398 * If we have to retry again, we do sleep a bit.
403 while (ret
== -1 && errno
== EACCES
&& is_file_in_use_error(GetLastError()) &&
404 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
405 "Should I try again?", pathname
))
406 ret
= _wrmdir(wpathname
);
408 invalidate_lstat_cache();
412 static inline int needs_hiding(const char *path
)
414 const char *basename
;
416 if (hide_dotfiles
== HIDE_DOTFILES_FALSE
)
419 /* We cannot use basename(), as it would remove trailing slashes */
420 win32_skip_dos_drive_prefix((char **)&path
);
424 for (basename
= path
; *path
; path
++)
425 if (is_dir_sep(*path
)) {
428 } while (is_dir_sep(*path
));
429 /* ignore trailing slashes */
436 if (hide_dotfiles
== HIDE_DOTFILES_TRUE
)
437 return *basename
== '.';
439 assert(hide_dotfiles
== HIDE_DOTFILES_DOTGITONLY
);
440 return !strncasecmp(".git", basename
, 4) &&
441 (!basename
[4] || is_dir_sep(basename
[4]));
444 static int set_hidden_flag(const wchar_t *path
, int set
)
446 DWORD original
= GetFileAttributesW(path
), modified
;
448 modified
= original
| FILE_ATTRIBUTE_HIDDEN
;
450 modified
= original
& ~FILE_ATTRIBUTE_HIDDEN
;
451 if (original
== modified
|| SetFileAttributesW(path
, modified
))
453 errno
= err_win_to_posix(GetLastError());
457 int mingw_mkdir(const char *path
, int mode
)
460 wchar_t wpath
[MAX_PATH
];
462 if (!is_valid_win32_path(path
, 0)) {
467 if (xutftowcs_path(wpath
, path
) < 0)
469 ret
= _wmkdir(wpath
);
470 if (!ret
&& needs_hiding(path
))
471 return set_hidden_flag(wpath
, 1);
476 * Calling CreateFile() using FILE_APPEND_DATA and without FILE_WRITE_DATA
477 * is documented in [1] as opening a writable file handle in append mode.
478 * (It is believed that) this is atomic since it is maintained by the
479 * kernel unlike the O_APPEND flag which is racily maintained by the CRT.
481 * [1] https://docs.microsoft.com/en-us/windows/desktop/fileio/file-access-rights-constants
483 * This trick does not appear to work for named pipes. Instead it creates
484 * a named pipe client handle that cannot be written to. Callers should
485 * just use the regular _wopen() for them. (And since client handle gets
486 * bound to a unique server handle, it isn't really an issue.)
488 static int mingw_open_append(wchar_t const *wfilename
, int oflags
, ...)
492 DWORD create
= (oflags
& O_CREAT
) ? OPEN_ALWAYS
: OPEN_EXISTING
;
494 /* only these flags are supported */
495 if ((oflags
& ~O_CREAT
) != (O_WRONLY
| O_APPEND
))
496 return errno
= ENOSYS
, -1;
499 * FILE_SHARE_WRITE is required to permit child processes
500 * to append to the file.
502 handle
= CreateFileW(wfilename
, FILE_APPEND_DATA
,
503 FILE_SHARE_WRITE
| FILE_SHARE_READ
,
504 NULL
, create
, FILE_ATTRIBUTE_NORMAL
, NULL
);
505 if (handle
== INVALID_HANDLE_VALUE
) {
506 DWORD err
= GetLastError();
509 * Some network storage solutions (e.g. Isilon) might return
510 * ERROR_INVALID_PARAMETER instead of expected error
511 * ERROR_PATH_NOT_FOUND, which results in an unknown error. If
512 * so, let's turn the error to ERROR_PATH_NOT_FOUND instead.
514 if (err
== ERROR_INVALID_PARAMETER
)
515 err
= ERROR_PATH_NOT_FOUND
;
517 errno
= err_win_to_posix(err
);
522 * No O_APPEND here, because the CRT uses it only to reset the
523 * file pointer to EOF before each write(); but that is not
524 * necessary (and may lead to races) for a file created with
527 fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
534 * Does the pathname map to the local named pipe filesystem?
535 * That is, does it have a "//./pipe/" prefix?
537 static int is_local_named_pipe_path(const char *filename
)
539 return (is_dir_sep(filename
[0]) &&
540 is_dir_sep(filename
[1]) &&
541 filename
[2] == '.' &&
542 is_dir_sep(filename
[3]) &&
543 !strncasecmp(filename
+4, "pipe", 4) &&
544 is_dir_sep(filename
[8]) &&
548 int mingw_open (const char *filename
, int oflags
, ...)
550 typedef int (*open_fn_t
)(wchar_t const *wfilename
, int oflags
, ...);
553 int fd
, create
= (oflags
& (O_CREAT
| O_EXCL
)) == (O_CREAT
| O_EXCL
);
554 wchar_t wfilename
[MAX_PATH
];
557 va_start(args
, oflags
);
558 mode
= va_arg(args
, int);
561 if (!is_valid_win32_path(filename
, !create
)) {
562 errno
= create
? EINVAL
: ENOENT
;
566 if ((oflags
& O_APPEND
) && !is_local_named_pipe_path(filename
))
567 open_fn
= mingw_open_append
;
571 if (filename
&& !strcmp(filename
, "/dev/null"))
572 wcscpy(wfilename
, L
"nul");
573 else if (xutftowcs_path(wfilename
, filename
) < 0)
576 fd
= open_fn(wfilename
, oflags
, mode
);
578 if (fd
< 0 && (oflags
& O_ACCMODE
) != O_RDONLY
&& errno
== EACCES
) {
579 DWORD attrs
= GetFileAttributesW(wfilename
);
580 if (attrs
!= INVALID_FILE_ATTRIBUTES
&& (attrs
& FILE_ATTRIBUTE_DIRECTORY
))
583 if ((oflags
& O_CREAT
) && needs_hiding(filename
)) {
585 * Internally, _wopen() uses the CreateFile() API which errors
586 * out with an ERROR_ACCESS_DENIED if CREATE_ALWAYS was
587 * specified and an already existing file's attributes do not
588 * match *exactly*. As there is no mode or flag we can set that
589 * would correspond to FILE_ATTRIBUTE_HIDDEN, let's just try
590 * again *without* the O_CREAT flag (that corresponds to the
591 * CREATE_ALWAYS flag of CreateFile()).
593 if (fd
< 0 && errno
== EACCES
)
594 fd
= open_fn(wfilename
, oflags
& ~O_CREAT
, mode
);
595 if (fd
>= 0 && set_hidden_flag(wfilename
, 1))
596 warning("could not mark '%s' as hidden.", filename
);
601 static BOOL WINAPI
ctrl_ignore(DWORD type
)
607 int mingw_fgetc(FILE *stream
)
610 if (!isatty(_fileno(stream
)))
611 return fgetc(stream
);
613 SetConsoleCtrlHandler(ctrl_ignore
, TRUE
);
616 if (ch
!= EOF
|| GetLastError() != ERROR_OPERATION_ABORTED
)
619 /* Ctrl+C was pressed, simulate SIGINT and retry */
622 SetConsoleCtrlHandler(ctrl_ignore
, FALSE
);
627 FILE *mingw_fopen (const char *filename
, const char *otype
)
629 int hide
= needs_hiding(filename
);
631 wchar_t wfilename
[MAX_PATH
], wotype
[4];
632 if (filename
&& !strcmp(filename
, "/dev/null"))
633 wcscpy(wfilename
, L
"nul");
634 else if (!is_valid_win32_path(filename
, 1)) {
635 int create
= otype
&& strchr(otype
, 'w');
636 errno
= create
? EINVAL
: ENOENT
;
638 } else if (xutftowcs_path(wfilename
, filename
) < 0)
641 if (xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
644 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
645 error("could not unhide %s", filename
);
648 file
= _wfopen(wfilename
, wotype
);
649 if (!file
&& GetLastError() == ERROR_INVALID_NAME
)
651 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
652 warning("could not mark '%s' as hidden.", filename
);
656 FILE *mingw_freopen (const char *filename
, const char *otype
, FILE *stream
)
658 int hide
= needs_hiding(filename
);
660 wchar_t wfilename
[MAX_PATH
], wotype
[4];
661 if (filename
&& !strcmp(filename
, "/dev/null"))
662 wcscpy(wfilename
, L
"nul");
663 else if (!is_valid_win32_path(filename
, 1)) {
664 int create
= otype
&& strchr(otype
, 'w');
665 errno
= create
? EINVAL
: ENOENT
;
667 } else if (xutftowcs_path(wfilename
, filename
) < 0)
670 if (xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
673 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
674 error("could not unhide %s", filename
);
677 file
= _wfreopen(wfilename
, wotype
, stream
);
678 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
679 warning("could not mark '%s' as hidden.", filename
);
684 int mingw_fflush(FILE *stream
)
686 int ret
= fflush(stream
);
689 * write() is used behind the scenes of stdio output functions.
690 * Since git code does not check for errors after each stdio write
691 * operation, it can happen that write() is called by a later
692 * stdio function even if an earlier write() call failed. In the
693 * case of a pipe whose readable end was closed, only the first
694 * call to write() reports EPIPE on Windows. Subsequent write()
695 * calls report EINVAL. It is impossible to notice whether this
696 * fflush invocation triggered such a case, therefore, we have to
697 * catch all EINVAL errors whole-sale.
699 if (ret
&& errno
== EINVAL
)
706 ssize_t
mingw_write(int fd
, const void *buf
, size_t len
)
708 ssize_t result
= write(fd
, buf
, len
);
710 if (result
< 0 && (errno
== EINVAL
|| errno
== ENOSPC
) && buf
) {
713 /* check if fd is a pipe */
714 HANDLE h
= (HANDLE
) _get_osfhandle(fd
);
715 if (GetFileType(h
) != FILE_TYPE_PIPE
)
717 else if (orig
== EINVAL
)
722 if (!GetNamedPipeInfo(h
, NULL
, NULL
, &buf_size
, NULL
))
725 return write(fd
, buf
, buf_size
);
733 int mingw_access(const char *filename
, int mode
)
735 wchar_t wfilename
[MAX_PATH
];
736 if (!strcmp("nul", filename
) || !strcmp("/dev/null", filename
))
738 if (xutftowcs_path(wfilename
, filename
) < 0)
740 /* X_OK is not supported by the MSVCRT version */
741 return _waccess(wfilename
, mode
& ~X_OK
);
744 int mingw_chdir(const char *dirname
)
746 wchar_t wdirname
[MAX_PATH
];
747 if (xutftowcs_path(wdirname
, dirname
) < 0)
749 return _wchdir(wdirname
);
752 int mingw_chmod(const char *filename
, int mode
)
754 wchar_t wfilename
[MAX_PATH
];
755 if (xutftowcs_path(wfilename
, filename
) < 0)
757 return _wchmod(wfilename
, mode
);
761 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
762 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
764 static inline long long filetime_to_hnsec(const FILETIME
*ft
)
766 long long winTime
= ((long long)ft
->dwHighDateTime
<< 32) + ft
->dwLowDateTime
;
767 /* Windows to Unix Epoch conversion */
768 return winTime
- 116444736000000000LL;
771 static inline void filetime_to_timespec(const FILETIME
*ft
, struct timespec
*ts
)
773 long long hnsec
= filetime_to_hnsec(ft
);
774 ts
->tv_sec
= (time_t)(hnsec
/ 10000000);
775 ts
->tv_nsec
= (hnsec
% 10000000) * 100;
779 * Verifies that safe_create_leading_directories() would succeed.
781 static int has_valid_directory_prefix(wchar_t *wfilename
)
783 int n
= wcslen(wfilename
);
786 wchar_t c
= wfilename
[--n
];
792 wfilename
[n
] = L
'\0';
793 attributes
= GetFileAttributesW(wfilename
);
796 (FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_DEVICE
))
798 if (attributes
== INVALID_FILE_ATTRIBUTES
)
799 switch (GetLastError()) {
800 case ERROR_PATH_NOT_FOUND
:
802 case ERROR_FILE_NOT_FOUND
:
803 /* This implies parent directory exists. */
811 /* We keep the do_lstat code in a separate function to avoid recursion.
812 * When a path ends with a slash, the stat will fail with ENOENT. In
813 * this case, we strip the trailing slashes and stat again.
815 * If follow is true then act like stat() and report on the link
816 * target. Otherwise report on the link itself.
818 static int do_lstat(int follow
, const char *file_name
, struct stat
*buf
)
820 WIN32_FILE_ATTRIBUTE_DATA fdata
;
821 wchar_t wfilename
[MAX_PATH
];
822 if (xutftowcs_path(wfilename
, file_name
) < 0)
825 if (GetFileAttributesExW(wfilename
, GetFileExInfoStandard
, &fdata
)) {
830 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
831 buf
->st_size
= fdata
.nFileSizeLow
|
832 (((off_t
)fdata
.nFileSizeHigh
)<<32);
833 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
834 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
835 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
836 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
837 if (fdata
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) {
838 WIN32_FIND_DATAW findbuf
;
839 HANDLE handle
= FindFirstFileW(wfilename
, &findbuf
);
840 if (handle
!= INVALID_HANDLE_VALUE
) {
841 if ((findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) &&
842 (findbuf
.dwReserved0
== IO_REPARSE_TAG_SYMLINK
)) {
844 char buffer
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
845 buf
->st_size
= readlink(file_name
, buffer
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
);
847 buf
->st_mode
= S_IFLNK
;
849 buf
->st_mode
|= S_IREAD
;
850 if (!(findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
851 buf
->st_mode
|= S_IWRITE
;
858 switch (GetLastError()) {
859 case ERROR_ACCESS_DENIED
:
860 case ERROR_SHARING_VIOLATION
:
861 case ERROR_LOCK_VIOLATION
:
862 case ERROR_SHARING_BUFFER_EXCEEDED
:
865 case ERROR_BUFFER_OVERFLOW
:
866 errno
= ENAMETOOLONG
;
868 case ERROR_NOT_ENOUGH_MEMORY
:
871 case ERROR_PATH_NOT_FOUND
:
872 if (!has_valid_directory_prefix(wfilename
)) {
884 /* We provide our own lstat/fstat functions, since the provided
885 * lstat/fstat functions are so slow. These stat functions are
886 * tailored for Git's usage (read: fast), and are not meant to be
887 * complete. Note that Git stat()s are redirected to mingw_lstat()
888 * too, since Windows doesn't really handle symlinks that well.
890 static int do_stat_internal(int follow
, const char *file_name
, struct stat
*buf
)
893 char alt_name
[PATH_MAX
];
895 if (!do_lstat(follow
, file_name
, buf
))
898 /* if file_name ended in a '/', Windows returned ENOENT;
899 * try again without trailing slashes
904 namelen
= strlen(file_name
);
905 if (namelen
&& file_name
[namelen
-1] != '/')
907 while (namelen
&& file_name
[namelen
-1] == '/')
909 if (!namelen
|| namelen
>= PATH_MAX
)
912 memcpy(alt_name
, file_name
, namelen
);
913 alt_name
[namelen
] = 0;
914 return do_lstat(follow
, alt_name
, buf
);
917 static int get_file_info_by_handle(HANDLE hnd
, struct stat
*buf
)
919 BY_HANDLE_FILE_INFORMATION fdata
;
921 if (!GetFileInformationByHandle(hnd
, &fdata
)) {
922 errno
= err_win_to_posix(GetLastError());
930 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
931 buf
->st_size
= fdata
.nFileSizeLow
|
932 (((off_t
)fdata
.nFileSizeHigh
)<<32);
933 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
934 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
935 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
936 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
940 int mingw_lstat(const char *file_name
, struct stat
*buf
)
942 return do_stat_internal(0, file_name
, buf
);
944 int mingw_stat(const char *file_name
, struct stat
*buf
)
946 return do_stat_internal(1, file_name
, buf
);
949 int mingw_fstat(int fd
, struct stat
*buf
)
951 HANDLE fh
= (HANDLE
)_get_osfhandle(fd
);
952 DWORD avail
, type
= GetFileType(fh
) & ~FILE_TYPE_REMOTE
;
956 return get_file_info_by_handle(fh
, buf
);
960 /* initialize stat fields */
961 memset(buf
, 0, sizeof(*buf
));
964 if (type
== FILE_TYPE_CHAR
) {
965 buf
->st_mode
= _S_IFCHR
;
967 buf
->st_mode
= _S_IFIFO
;
968 if (PeekNamedPipe(fh
, NULL
, 0, NULL
, &avail
, NULL
))
969 buf
->st_size
= avail
;
979 static inline void time_t_to_filetime(time_t t
, FILETIME
*ft
)
981 long long winTime
= t
* 10000000LL + 116444736000000000LL;
982 ft
->dwLowDateTime
= winTime
;
983 ft
->dwHighDateTime
= winTime
>> 32;
986 int mingw_utime (const char *file_name
, const struct utimbuf
*times
)
991 wchar_t wfilename
[MAX_PATH
];
994 if (xutftowcs_path(wfilename
, file_name
) < 0)
997 /* must have write permission */
998 attrs
= GetFileAttributesW(wfilename
);
999 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
1000 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
1001 /* ignore errors here; open() will report them */
1002 SetFileAttributesW(wfilename
, attrs
& ~FILE_ATTRIBUTE_READONLY
);
1005 osfilehandle
= CreateFileW(wfilename
,
1006 FILE_WRITE_ATTRIBUTES
,
1007 0 /*FileShare.None*/,
1010 (attrs
!= INVALID_FILE_ATTRIBUTES
&&
1011 (attrs
& FILE_ATTRIBUTE_DIRECTORY
)) ?
1012 FILE_FLAG_BACKUP_SEMANTICS
: 0,
1014 if (osfilehandle
== INVALID_HANDLE_VALUE
) {
1015 errno
= err_win_to_posix(GetLastError());
1021 time_t_to_filetime(times
->modtime
, &mft
);
1022 time_t_to_filetime(times
->actime
, &aft
);
1024 GetSystemTimeAsFileTime(&mft
);
1028 if (!SetFileTime(osfilehandle
, NULL
, &aft
, &mft
)) {
1034 if (osfilehandle
!= INVALID_HANDLE_VALUE
)
1035 CloseHandle(osfilehandle
);
1038 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
1039 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
1040 /* ignore errors again */
1041 SetFileAttributesW(wfilename
, attrs
);
1047 size_t mingw_strftime(char *s
, size_t max
,
1048 const char *format
, const struct tm
*tm
)
1050 /* a pointer to the original strftime in case we can't find the UCRT version */
1051 static size_t (*fallback
)(char *, size_t, const char *, const struct tm
*) = strftime
;
1053 DECLARE_PROC_ADDR(ucrtbase
.dll
, size_t, __cdecl
, strftime
, char *, size_t,
1054 const char *, const struct tm
*);
1056 if (INIT_PROC_ADDR(strftime
))
1057 ret
= strftime(s
, max
, format
, tm
);
1059 ret
= fallback(s
, max
, format
, tm
);
1061 if (!ret
&& errno
== EINVAL
)
1062 die("invalid strftime format: '%s'", format
);
1066 unsigned int sleep (unsigned int seconds
)
1068 Sleep(seconds
*1000);
1072 char *mingw_mktemp(char *template)
1074 wchar_t wtemplate
[MAX_PATH
];
1075 if (xutftowcs_path(wtemplate
, template) < 0)
1077 if (!_wmktemp(wtemplate
))
1079 if (xwcstoutf(template, wtemplate
, strlen(template) + 1) < 0)
1084 int mkstemp(char *template)
1086 return git_mkstemp_mode(template, 0600);
1089 int gettimeofday(struct timeval
*tv
, void *tz
)
1094 GetSystemTimeAsFileTime(&ft
);
1095 hnsec
= filetime_to_hnsec(&ft
);
1096 tv
->tv_sec
= hnsec
/ 10000000;
1097 tv
->tv_usec
= (hnsec
% 10000000) / 10;
1101 int pipe(int filedes
[2])
1105 /* this creates non-inheritable handles */
1106 if (!CreatePipe(&h
[0], &h
[1], NULL
, 8192)) {
1107 errno
= err_win_to_posix(GetLastError());
1110 filedes
[0] = _open_osfhandle(HCAST(int, h
[0]), O_NOINHERIT
);
1111 if (filedes
[0] < 0) {
1116 filedes
[1] = _open_osfhandle(HCAST(int, h
[1]), O_NOINHERIT
);
1117 if (filedes
[1] < 0) {
1126 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
1128 if (gmtime_s(result
, timep
) == 0)
1133 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
1135 if (localtime_s(result
, timep
) == 0)
1141 char *mingw_getcwd(char *pointer
, int len
)
1143 wchar_t cwd
[MAX_PATH
], wpointer
[MAX_PATH
];
1144 DWORD ret
= GetCurrentDirectoryW(ARRAY_SIZE(cwd
), cwd
);
1146 if (!ret
|| ret
>= ARRAY_SIZE(cwd
)) {
1147 errno
= ret
? ENAMETOOLONG
: err_win_to_posix(GetLastError());
1150 ret
= GetLongPathNameW(cwd
, wpointer
, ARRAY_SIZE(wpointer
));
1151 if (!ret
&& GetLastError() == ERROR_ACCESS_DENIED
) {
1152 HANDLE hnd
= CreateFileW(cwd
, 0,
1153 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
, NULL
,
1154 OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
1155 if (hnd
== INVALID_HANDLE_VALUE
)
1157 ret
= GetFinalPathNameByHandleW(hnd
, wpointer
, ARRAY_SIZE(wpointer
), 0);
1159 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1161 if (xwcstoutf(pointer
, normalize_ntpath(wpointer
), len
) < 0)
1165 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1167 if (GetFileAttributesW(wpointer
) == INVALID_FILE_ATTRIBUTES
) {
1171 if (xwcstoutf(pointer
, wpointer
, len
) < 0)
1173 convert_slashes(pointer
);
1178 * See "Parsing C++ Command-Line Arguments" at Microsoft's Docs:
1179 * https://docs.microsoft.com/en-us/cpp/cpp/parsing-cpp-command-line-arguments
1181 static const char *quote_arg_msvc(const char *arg
)
1183 /* count chars to quote */
1185 int force_quotes
= 0;
1187 const char *p
= arg
;
1188 if (!*p
) force_quotes
= 1;
1190 if (isspace(*p
) || *p
== '*' || *p
== '?' || *p
== '{' || *p
== '\'')
1194 else if (*p
== '\\') {
1196 while (*p
== '\\') {
1201 if (*p
== '"' || !*p
)
1208 if (!force_quotes
&& n
== 0)
1211 /* insert \ where necessary */
1212 d
= q
= xmalloc(st_add3(len
, n
, 3));
1217 else if (*arg
== '\\') {
1219 while (*arg
== '\\') {
1223 if (*arg
== '"' || !*arg
) {
1226 /* don't escape the surrounding end quote */
1241 static const char *quote_arg_msys2(const char *arg
)
1243 struct strbuf buf
= STRBUF_INIT
;
1244 const char *p2
= arg
, *p
;
1246 for (p
= arg
; *p
; p
++) {
1247 int ws
= isspace(*p
);
1248 if (!ws
&& *p
!= '\\' && *p
!= '"' && *p
!= '{' && *p
!= '\'' &&
1249 *p
!= '?' && *p
!= '*' && *p
!= '~')
1252 strbuf_addch(&buf
, '"');
1254 strbuf_add(&buf
, p2
, p
- p2
);
1255 if (*p
== '\\' || *p
== '"')
1256 strbuf_addch(&buf
, '\\');
1261 strbuf_addch(&buf
, '"');
1265 strbuf_add(&buf
, p2
, p
- p2
);
1267 strbuf_addch(&buf
, '"');
1268 return strbuf_detach(&buf
, 0);
1271 static const char *parse_interpreter(const char *cmd
)
1273 static char buf
[100];
1277 /* don't even try a .exe */
1279 if (n
>= 4 && !strcasecmp(cmd
+n
-4, ".exe"))
1282 fd
= open(cmd
, O_RDONLY
);
1285 n
= read(fd
, buf
, sizeof(buf
)-1);
1287 if (n
< 4) /* at least '#!/x' and not error */
1290 if (buf
[0] != '#' || buf
[1] != '!')
1293 p
= buf
+ strcspn(buf
, "\r\n");
1298 if (!(p
= strrchr(buf
+2, '/')) && !(p
= strrchr(buf
+2, '\\')))
1301 if ((opt
= strchr(p
+1, ' ')))
1307 * exe_only means that we only want to detect .exe files, but not scripts
1308 * (which do not have an extension)
1310 static char *lookup_prog(const char *dir
, int dirlen
, const char *cmd
,
1311 int isexe
, int exe_only
)
1313 char path
[MAX_PATH
];
1314 wchar_t wpath
[MAX_PATH
];
1315 snprintf(path
, sizeof(path
), "%.*s\\%s.exe", dirlen
, dir
, cmd
);
1317 if (xutftowcs_path(wpath
, path
) < 0)
1320 if (!isexe
&& _waccess(wpath
, F_OK
) == 0)
1321 return xstrdup(path
);
1322 wpath
[wcslen(wpath
)-4] = '\0';
1323 if ((!exe_only
|| isexe
) && _waccess(wpath
, F_OK
) == 0) {
1324 if (!(GetFileAttributesW(wpath
) & FILE_ATTRIBUTE_DIRECTORY
)) {
1325 path
[strlen(path
)-4] = '\0';
1326 return xstrdup(path
);
1333 * Determines the absolute path of cmd using the split path in path.
1334 * If cmd contains a slash or backslash, no lookup is performed.
1336 static char *path_lookup(const char *cmd
, int exe_only
)
1340 int len
= strlen(cmd
);
1341 int isexe
= len
>= 4 && !strcasecmp(cmd
+len
-4, ".exe");
1343 if (strpbrk(cmd
, "/\\"))
1344 return xstrdup(cmd
);
1346 path
= mingw_getenv("PATH");
1351 const char *sep
= strchrnul(path
, ';');
1352 int dirlen
= sep
- path
;
1354 prog
= lookup_prog(path
, dirlen
, cmd
, isexe
, exe_only
);
1363 char *mingw_locate_in_PATH(const char *cmd
)
1365 return path_lookup(cmd
, 0);
1368 static const wchar_t *wcschrnul(const wchar_t *s
, wchar_t c
)
1370 while (*s
&& *s
!= c
)
1375 /* Compare only keys */
1376 static int wenvcmp(const void *a
, const void *b
)
1378 wchar_t *p
= *(wchar_t **)a
, *q
= *(wchar_t **)b
;
1379 size_t p_len
, q_len
;
1382 p_len
= wcschrnul(p
, L
'=') - p
;
1383 q_len
= wcschrnul(q
, L
'=') - q
;
1385 /* If the length differs, include the shorter key's NUL */
1388 else if (p_len
> q_len
)
1391 return _wcsnicmp(p
, q
, p_len
);
1395 * Build an environment block combining the inherited environment
1396 * merged with the given list of settings.
1398 * Values of the form "KEY=VALUE" in deltaenv override inherited values.
1399 * Values of the form "KEY" in deltaenv delete inherited values.
1401 * Multiple entries in deltaenv for the same key are explicitly allowed.
1403 * We return a contiguous block of UNICODE strings with a final trailing
1406 static wchar_t *make_environment_block(char **deltaenv
)
1408 wchar_t *wenv
= GetEnvironmentStringsW(), *wdeltaenv
, *result
, *p
;
1409 size_t wlen
, s
, delta_size
, size
;
1411 wchar_t **array
= NULL
;
1412 size_t alloc
= 0, nr
= 0, i
;
1414 size
= 1; /* for extra NUL at the end */
1416 /* If there is no deltaenv to apply, simply return a copy. */
1417 if (!deltaenv
|| !*deltaenv
) {
1418 for (p
= wenv
; p
&& *p
; ) {
1419 size_t s
= wcslen(p
) + 1;
1424 DUP_ARRAY(result
, wenv
, size
);
1425 FreeEnvironmentStringsW(wenv
);
1430 * If there is a deltaenv, let's accumulate all keys into `array`,
1431 * sort them using the stable git_stable_qsort() and then copy,
1432 * skipping duplicate keys
1434 for (p
= wenv
; p
&& *p
; ) {
1435 ALLOC_GROW(array
, nr
+ 1, alloc
);
1442 /* (over-)assess size needed for wchar version of deltaenv */
1443 for (delta_size
= 0, i
= 0; deltaenv
[i
]; i
++)
1444 delta_size
+= strlen(deltaenv
[i
]) * 2 + 1;
1445 ALLOC_ARRAY(wdeltaenv
, delta_size
);
1447 /* convert the deltaenv, appending to array */
1448 for (i
= 0, p
= wdeltaenv
; deltaenv
[i
]; i
++) {
1449 ALLOC_GROW(array
, nr
+ 1, alloc
);
1450 wlen
= xutftowcs(p
, deltaenv
[i
], wdeltaenv
+ delta_size
- p
);
1455 git_stable_qsort(array
, nr
, sizeof(*array
), wenvcmp
);
1456 ALLOC_ARRAY(result
, size
+ delta_size
);
1458 for (p
= result
, i
= 0; i
< nr
; i
++) {
1459 /* Skip any duplicate keys; last one wins */
1460 while (i
+ 1 < nr
&& !wenvcmp(array
+ i
, array
+ i
+ 1))
1463 /* Skip "to delete" entry */
1464 if (!wcschr(array
[i
], L
'='))
1467 size
= wcslen(array
[i
]) + 1;
1468 COPY_ARRAY(p
, array
[i
], size
);
1475 FreeEnvironmentStringsW(wenv
);
1479 static void do_unset_environment_variables(void)
1482 char *p
= unset_environment_variables
;
1489 char *comma
= strchr(p
, ',');
1501 struct pinfo_t
*next
;
1505 static struct pinfo_t
*pinfo
= NULL
;
1506 CRITICAL_SECTION pinfo_cs
;
1508 /* Used to match and chomp off path components */
1509 static inline int match_last_path_component(const char *path
, size_t *len
,
1510 const char *component
)
1512 size_t component_len
= strlen(component
);
1513 if (*len
< component_len
+ 1 ||
1514 !is_dir_sep(path
[*len
- component_len
- 1]) ||
1515 fspathncmp(path
+ *len
- component_len
, component
, component_len
))
1517 *len
-= component_len
+ 1;
1518 /* chomp off repeated dir separators */
1519 while (*len
> 0 && is_dir_sep(path
[*len
- 1]))
1524 static int is_msys2_sh(const char *cmd
)
1529 if (!strcmp(cmd
, "sh")) {
1530 static int ret
= -1;
1536 p
= path_lookup(cmd
, 0);
1540 size_t len
= strlen(p
);
1542 ret
= match_last_path_component(p
, &len
, "sh.exe") &&
1543 match_last_path_component(p
, &len
, "bin") &&
1544 match_last_path_component(p
, &len
, "usr");
1550 if (ends_with(cmd
, "\\sh.exe")) {
1554 sh
= path_lookup("sh", 0);
1556 return !fspathcmp(cmd
, sh
);
1562 static pid_t
mingw_spawnve_fd(const char *cmd
, const char **argv
, char **deltaenv
,
1564 int prepend_cmd
, int fhin
, int fhout
, int fherr
)
1566 static int restrict_handle_inheritance
= -1;
1568 PROCESS_INFORMATION pi
;
1569 LPPROC_THREAD_ATTRIBUTE_LIST attr_list
= NULL
;
1570 HANDLE stdhandles
[3];
1571 DWORD stdhandles_count
= 0;
1574 wchar_t wcmd
[MAX_PATH
], wdir
[MAX_PATH
], *wargs
, *wenvblk
= NULL
;
1575 unsigned flags
= CREATE_UNICODE_ENVIRONMENT
;
1578 const char *(*quote_arg
)(const char *arg
) =
1579 is_msys2_sh(cmd
? cmd
: *argv
) ?
1580 quote_arg_msys2
: quote_arg_msvc
;
1581 const char *strace_env
;
1583 /* Make sure to override previous errors, if any */
1586 if (restrict_handle_inheritance
< 0)
1587 restrict_handle_inheritance
= core_restrict_inherited_handles
;
1589 * The following code to restrict which handles are inherited seems
1590 * to work properly only on Windows 7 and later, so let's disable it
1591 * on Windows Vista and 2008.
1593 if (restrict_handle_inheritance
< 0)
1594 restrict_handle_inheritance
= GetVersion() >> 16 >= 7601;
1596 do_unset_environment_variables();
1598 /* Determine whether or not we are associated to a console */
1599 cons
= CreateFileW(L
"CONOUT$", GENERIC_WRITE
,
1600 FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1601 FILE_ATTRIBUTE_NORMAL
, NULL
);
1602 if (cons
== INVALID_HANDLE_VALUE
) {
1603 /* There is no console associated with this process.
1604 * Since the child is a console process, Windows
1605 * would normally create a console window. But
1606 * since we'll be redirecting std streams, we do
1607 * not need the console.
1608 * It is necessary to use DETACHED_PROCESS
1609 * instead of CREATE_NO_WINDOW to make ssh
1610 * recognize that it has no console.
1612 flags
|= DETACHED_PROCESS
;
1614 /* There is already a console. If we specified
1615 * DETACHED_PROCESS here, too, Windows would
1616 * disassociate the child from the console.
1617 * The same is true for CREATE_NO_WINDOW.
1622 memset(&si
, 0, sizeof(si
));
1623 si
.StartupInfo
.cb
= sizeof(si
);
1624 si
.StartupInfo
.hStdInput
= winansi_get_osfhandle(fhin
);
1625 si
.StartupInfo
.hStdOutput
= winansi_get_osfhandle(fhout
);
1626 si
.StartupInfo
.hStdError
= winansi_get_osfhandle(fherr
);
1628 /* The list of handles cannot contain duplicates */
1629 if (si
.StartupInfo
.hStdInput
!= INVALID_HANDLE_VALUE
)
1630 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdInput
;
1631 if (si
.StartupInfo
.hStdOutput
!= INVALID_HANDLE_VALUE
&&
1632 si
.StartupInfo
.hStdOutput
!= si
.StartupInfo
.hStdInput
)
1633 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdOutput
;
1634 if (si
.StartupInfo
.hStdError
!= INVALID_HANDLE_VALUE
&&
1635 si
.StartupInfo
.hStdError
!= si
.StartupInfo
.hStdInput
&&
1636 si
.StartupInfo
.hStdError
!= si
.StartupInfo
.hStdOutput
)
1637 stdhandles
[stdhandles_count
++] = si
.StartupInfo
.hStdError
;
1638 if (stdhandles_count
)
1639 si
.StartupInfo
.dwFlags
|= STARTF_USESTDHANDLES
;
1641 if (*argv
&& !strcmp(cmd
, *argv
))
1643 else if (xutftowcs_path(wcmd
, cmd
) < 0)
1645 if (dir
&& xutftowcs_path(wdir
, dir
) < 0)
1648 /* concatenate argv, quoting args as we go */
1649 strbuf_init(&args
, 0);
1651 char *quoted
= (char *)quote_arg(cmd
);
1652 strbuf_addstr(&args
, quoted
);
1656 for (; *argv
; argv
++) {
1657 char *quoted
= (char *)quote_arg(*argv
);
1659 strbuf_addch(&args
, ' ');
1660 strbuf_addstr(&args
, quoted
);
1661 if (quoted
!= *argv
)
1665 strace_env
= getenv("GIT_STRACE_COMMANDS");
1667 char *p
= path_lookup("strace.exe", 1);
1669 return error("strace not found!");
1670 if (xutftowcs_path(wcmd
, p
) < 0) {
1675 if (!strcmp("1", strace_env
) ||
1676 !strcasecmp("yes", strace_env
) ||
1677 !strcasecmp("true", strace_env
))
1678 strbuf_insert(&args
, 0, "strace ", 7);
1680 const char *quoted
= quote_arg(strace_env
);
1681 struct strbuf buf
= STRBUF_INIT
;
1682 strbuf_addf(&buf
, "strace -o %s ", quoted
);
1683 if (quoted
!= strace_env
)
1684 free((char *)quoted
);
1685 strbuf_insert(&args
, 0, buf
.buf
, buf
.len
);
1686 strbuf_release(&buf
);
1690 ALLOC_ARRAY(wargs
, st_add(st_mult(2, args
.len
), 1));
1691 xutftowcs(wargs
, args
.buf
, 2 * args
.len
+ 1);
1692 strbuf_release(&args
);
1694 wenvblk
= make_environment_block(deltaenv
);
1696 memset(&pi
, 0, sizeof(pi
));
1697 if (restrict_handle_inheritance
&& stdhandles_count
&&
1698 (InitializeProcThreadAttributeList(NULL
, 1, 0, &size
) ||
1699 GetLastError() == ERROR_INSUFFICIENT_BUFFER
) &&
1700 (attr_list
= (LPPROC_THREAD_ATTRIBUTE_LIST
)
1701 (HeapAlloc(GetProcessHeap(), 0, size
))) &&
1702 InitializeProcThreadAttributeList(attr_list
, 1, 0, &size
) &&
1703 UpdateProcThreadAttribute(attr_list
, 0,
1704 PROC_THREAD_ATTRIBUTE_HANDLE_LIST
,
1706 stdhandles_count
* sizeof(HANDLE
),
1708 si
.lpAttributeList
= attr_list
;
1709 flags
|= EXTENDED_STARTUPINFO_PRESENT
;
1712 ret
= CreateProcessW(*wcmd
? wcmd
: NULL
, wargs
, NULL
, NULL
,
1713 stdhandles_count
? TRUE
: FALSE
,
1714 flags
, wenvblk
, dir
? wdir
: NULL
,
1715 &si
.StartupInfo
, &pi
);
1718 * On Windows 2008 R2, it seems that specifying certain types of handles
1719 * (such as FILE_TYPE_CHAR or FILE_TYPE_PIPE) will always produce an
1720 * error. Rather than playing finicky and fragile games, let's just try
1721 * to detect this situation and simply try again without restricting any
1722 * handle inheritance. This is still better than failing to create
1725 if (!ret
&& restrict_handle_inheritance
&& stdhandles_count
) {
1726 DWORD err
= GetLastError();
1727 struct strbuf buf
= STRBUF_INIT
;
1729 if (err
!= ERROR_NO_SYSTEM_RESOURCES
&&
1731 * On Windows 7 and earlier, handles on pipes and character
1732 * devices are inherited automatically, and cannot be
1733 * specified in the thread handle list. Rather than trying
1734 * to catch each and every corner case (and running the
1735 * chance of *still* forgetting a few), let's just fall
1736 * back to creating the process without trying to limit the
1737 * handle inheritance.
1739 !(err
== ERROR_INVALID_PARAMETER
&&
1740 GetVersion() >> 16 < 9200) &&
1741 !getenv("SUPPRESS_HANDLE_INHERITANCE_WARNING")) {
1745 setenv("SUPPRESS_HANDLE_INHERITANCE_WARNING", "1", 1);
1747 for (i
= 0; i
< stdhandles_count
; i
++) {
1748 HANDLE h
= stdhandles
[i
];
1749 strbuf_addf(&buf
, "handle #%d: %p (type %lx, "
1750 "handle info (%d) %lx\n", i
, h
,
1752 GetHandleInformation(h
, &fl
),
1755 strbuf_addstr(&buf
, "\nThis is a bug; please report it "
1756 "at\nhttps://github.com/git-for-windows/"
1757 "git/issues/new\n\n"
1758 "To suppress this warning, please set "
1759 "the environment variable\n\n"
1760 "\tSUPPRESS_HANDLE_INHERITANCE_WARNING=1"
1763 restrict_handle_inheritance
= 0;
1764 flags
&= ~EXTENDED_STARTUPINFO_PRESENT
;
1765 ret
= CreateProcessW(*wcmd
? wcmd
: NULL
, wargs
, NULL
, NULL
,
1766 TRUE
, flags
, wenvblk
, dir
? wdir
: NULL
,
1767 &si
.StartupInfo
, &pi
);
1769 errno
= err_win_to_posix(GetLastError());
1770 if (ret
&& buf
.len
) {
1771 warning("failed to restrict file handles (%ld)\n\n%s",
1774 strbuf_release(&buf
);
1776 errno
= err_win_to_posix(GetLastError());
1778 if (si
.lpAttributeList
)
1779 DeleteProcThreadAttributeList(si
.lpAttributeList
);
1781 HeapFree(GetProcessHeap(), 0, attr_list
);
1789 CloseHandle(pi
.hThread
);
1792 * The process ID is the human-readable identifier of the process
1793 * that we want to present in log and error messages. The handle
1794 * is not useful for this purpose. But we cannot close it, either,
1795 * because it is not possible to turn a process ID into a process
1796 * handle after the process terminated.
1797 * Keep the handle in a list for waitpid.
1799 EnterCriticalSection(&pinfo_cs
);
1801 struct pinfo_t
*info
= xmalloc(sizeof(struct pinfo_t
));
1802 info
->pid
= pi
.dwProcessId
;
1803 info
->proc
= pi
.hProcess
;
1807 LeaveCriticalSection(&pinfo_cs
);
1809 return (pid_t
)pi
.dwProcessId
;
1812 static pid_t
mingw_spawnv(const char *cmd
, const char **argv
, int prepend_cmd
)
1814 return mingw_spawnve_fd(cmd
, argv
, NULL
, NULL
, prepend_cmd
, 0, 1, 2);
1817 pid_t
mingw_spawnvpe(const char *cmd
, const char **argv
, char **deltaenv
,
1819 int fhin
, int fhout
, int fherr
)
1822 char *prog
= path_lookup(cmd
, 0);
1829 const char *interpr
= parse_interpreter(prog
);
1832 const char *argv0
= argv
[0];
1833 char *iprog
= path_lookup(interpr
, 1);
1840 pid
= mingw_spawnve_fd(iprog
, argv
, deltaenv
, dir
, 1,
1841 fhin
, fhout
, fherr
);
1847 pid
= mingw_spawnve_fd(prog
, argv
, deltaenv
, dir
, 0,
1848 fhin
, fhout
, fherr
);
1854 static int try_shell_exec(const char *cmd
, char *const *argv
)
1856 const char *interpr
= parse_interpreter(cmd
);
1862 prog
= path_lookup(interpr
, 1);
1867 while (argv
[argc
]) argc
++;
1868 ALLOC_ARRAY(argv2
, argc
+ 1);
1869 argv2
[0] = (char *)cmd
; /* full path to the script file */
1870 COPY_ARRAY(&argv2
[1], &argv
[1], argc
);
1871 exec_id
= trace2_exec(prog
, (const char **)argv2
);
1872 pid
= mingw_spawnv(prog
, (const char **)argv2
, 1);
1875 if (waitpid(pid
, &status
, 0) < 0)
1877 trace2_exec_result(exec_id
, status
);
1880 trace2_exec_result(exec_id
, -1);
1881 pid
= 1; /* indicate that we tried but failed */
1888 int mingw_execv(const char *cmd
, char *const *argv
)
1890 /* check if git_command is a shell script */
1891 if (!try_shell_exec(cmd
, argv
)) {
1895 exec_id
= trace2_exec(cmd
, (const char **)argv
);
1896 pid
= mingw_spawnv(cmd
, (const char **)argv
, 0);
1898 trace2_exec_result(exec_id
, -1);
1901 if (waitpid(pid
, &status
, 0) < 0)
1903 trace2_exec_result(exec_id
, status
);
1909 int mingw_execvp(const char *cmd
, char *const *argv
)
1911 char *prog
= path_lookup(cmd
, 0);
1914 mingw_execv(prog
, argv
);
1922 int mingw_kill(pid_t pid
, int sig
)
1924 if (pid
> 0 && sig
== SIGTERM
) {
1925 HANDLE h
= OpenProcess(PROCESS_TERMINATE
, FALSE
, pid
);
1927 if (TerminateProcess(h
, -1)) {
1932 errno
= err_win_to_posix(GetLastError());
1935 } else if (pid
> 0 && sig
== 0) {
1936 HANDLE h
= OpenProcess(PROCESS_QUERY_INFORMATION
, FALSE
, pid
);
1948 * UTF-8 versions of getenv(), putenv() and unsetenv().
1949 * Internally, they use the CRT's stock UNICODE routines
1950 * to avoid data loss.
1952 char *mingw_getenv(const char *name
)
1954 #define GETENV_MAX_RETAIN 64
1955 static char *values
[GETENV_MAX_RETAIN
];
1956 static int value_counter
;
1957 int len_key
, len_value
;
1960 wchar_t w_value
[32768];
1962 if (!name
|| !*name
)
1965 len_key
= strlen(name
) + 1;
1966 /* We cannot use xcalloc() here because that uses getenv() itself */
1967 w_key
= calloc(len_key
, sizeof(wchar_t));
1969 die("Out of memory, (tried to allocate %u wchar_t's)", len_key
);
1970 xutftowcs(w_key
, name
, len_key
);
1971 /* GetEnvironmentVariableW() only sets the last error upon failure */
1972 SetLastError(ERROR_SUCCESS
);
1973 len_value
= GetEnvironmentVariableW(w_key
, w_value
, ARRAY_SIZE(w_value
));
1974 if (!len_value
&& GetLastError() == ERROR_ENVVAR_NOT_FOUND
) {
1980 len_value
= len_value
* 3 + 1;
1981 /* We cannot use xcalloc() here because that uses getenv() itself */
1982 value
= calloc(len_value
, sizeof(char));
1984 die("Out of memory, (tried to allocate %u bytes)", len_value
);
1985 xwcstoutf(value
, w_value
, len_value
);
1988 * We return `value` which is an allocated value and the caller is NOT
1989 * expecting to have to free it, so we keep a round-robin array,
1990 * invalidating the buffer after GETENV_MAX_RETAIN getenv() calls.
1992 free(values
[value_counter
]);
1993 values
[value_counter
++] = value
;
1994 if (value_counter
>= ARRAY_SIZE(values
))
2000 int mingw_putenv(const char *namevalue
)
2003 wchar_t *wide
, *equal
;
2006 if (!namevalue
|| !*namevalue
)
2009 size
= strlen(namevalue
) * 2 + 1;
2010 wide
= calloc(size
, sizeof(wchar_t));
2012 die("Out of memory, (tried to allocate %u wchar_t's)", size
);
2013 xutftowcs(wide
, namevalue
, size
);
2014 equal
= wcschr(wide
, L
'=');
2016 result
= SetEnvironmentVariableW(wide
, NULL
);
2019 result
= SetEnvironmentVariableW(wide
, equal
+ 1);
2024 errno
= err_win_to_posix(GetLastError());
2026 return result
? 0 : -1;
2029 static void ensure_socket_initialization(void)
2032 static int initialized
= 0;
2037 if (WSAStartup(MAKEWORD(2,2), &wsa
))
2038 die("unable to initialize winsock subsystem, error %d",
2041 atexit((void(*)(void)) WSACleanup
);
2046 int mingw_gethostname(char *name
, int namelen
)
2048 ensure_socket_initialization();
2049 return gethostname(name
, namelen
);
2052 #undef gethostbyname
2053 struct hostent
*mingw_gethostbyname(const char *host
)
2055 ensure_socket_initialization();
2056 return gethostbyname(host
);
2060 int mingw_getaddrinfo(const char *node
, const char *service
,
2061 const struct addrinfo
*hints
, struct addrinfo
**res
)
2063 ensure_socket_initialization();
2064 return getaddrinfo(node
, service
, hints
, res
);
2067 int mingw_socket(int domain
, int type
, int protocol
)
2072 ensure_socket_initialization();
2073 s
= WSASocket(domain
, type
, protocol
, NULL
, 0, 0);
2074 if (s
== INVALID_SOCKET
) {
2076 * WSAGetLastError() values are regular BSD error codes
2077 * biased by WSABASEERR.
2078 * However, strerror() does not know about networking
2079 * specific errors, which are values beginning at 38 or so.
2080 * Therefore, we choose to leave the biased error code
2081 * in errno so that _if_ someone looks up the code somewhere,
2082 * then it is at least the number that are usually listed.
2084 errno
= WSAGetLastError();
2087 /* convert into a file descriptor */
2088 if ((sockfd
= _open_osfhandle(s
, O_RDWR
|O_BINARY
)) < 0) {
2090 return error("unable to make a socket file descriptor: %s",
2097 int mingw_connect(int sockfd
, struct sockaddr
*sa
, size_t sz
)
2099 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2100 return connect(s
, sa
, sz
);
2104 int mingw_bind(int sockfd
, struct sockaddr
*sa
, size_t sz
)
2106 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2107 return bind(s
, sa
, sz
);
2111 int mingw_setsockopt(int sockfd
, int lvl
, int optname
, void *optval
, int optlen
)
2113 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2114 return setsockopt(s
, lvl
, optname
, (const char*)optval
, optlen
);
2118 int mingw_shutdown(int sockfd
, int how
)
2120 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2121 return shutdown(s
, how
);
2125 int mingw_listen(int sockfd
, int backlog
)
2127 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
2128 return listen(s
, backlog
);
2132 int mingw_accept(int sockfd1
, struct sockaddr
*sa
, socklen_t
*sz
)
2136 SOCKET s1
= (SOCKET
)_get_osfhandle(sockfd1
);
2137 SOCKET s2
= accept(s1
, sa
, sz
);
2139 /* convert into a file descriptor */
2140 if ((sockfd2
= _open_osfhandle(s2
, O_RDWR
|O_BINARY
)) < 0) {
2143 return error("unable to make a socket file descriptor: %s",
2150 int mingw_rename(const char *pold
, const char *pnew
)
2154 wchar_t wpold
[MAX_PATH
], wpnew
[MAX_PATH
];
2155 if (xutftowcs_path(wpold
, pold
) < 0 || xutftowcs_path(wpnew
, pnew
) < 0)
2159 * Try native rename() first to get errno right.
2160 * It is based on MoveFile(), which cannot overwrite existing files.
2162 if (!_wrename(wpold
, wpnew
))
2164 if (errno
!= EEXIST
)
2167 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
2169 /* TODO: translate more errors */
2170 gle
= GetLastError();
2171 if (gle
== ERROR_ACCESS_DENIED
&&
2172 (attrs
= GetFileAttributesW(wpnew
)) != INVALID_FILE_ATTRIBUTES
) {
2173 if (attrs
& FILE_ATTRIBUTE_DIRECTORY
) {
2174 DWORD attrsold
= GetFileAttributesW(wpold
);
2175 if (attrsold
== INVALID_FILE_ATTRIBUTES
||
2176 !(attrsold
& FILE_ATTRIBUTE_DIRECTORY
))
2178 else if (!_wrmdir(wpnew
))
2182 if ((attrs
& FILE_ATTRIBUTE_READONLY
) &&
2183 SetFileAttributesW(wpnew
, attrs
& ~FILE_ATTRIBUTE_READONLY
)) {
2184 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
2186 gle
= GetLastError();
2187 /* revert file attributes on failure */
2188 SetFileAttributesW(wpnew
, attrs
);
2191 if (tries
< ARRAY_SIZE(delay
) && gle
== ERROR_ACCESS_DENIED
) {
2193 * We assume that some other process had the source or
2194 * destination file open at the wrong moment and retry.
2195 * In order to give the other process a higher chance to
2196 * complete its operation, we give up our time slice now.
2197 * If we have to retry again, we do sleep a bit.
2199 Sleep(delay
[tries
]);
2203 if (gle
== ERROR_ACCESS_DENIED
&&
2204 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
2205 "Should I try again?", pold
, pnew
))
2213 * Note that this doesn't return the actual pagesize, but
2214 * the allocation granularity. If future Windows specific git code
2215 * needs the real getpagesize function, we need to find another solution.
2217 int mingw_getpagesize(void)
2221 return si
.dwAllocationGranularity
;
2224 /* See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724435.aspx */
2225 enum EXTENDED_NAME_FORMAT
{
2227 NameUserPrincipal
= 8
2230 static char *get_extended_user_info(enum EXTENDED_NAME_FORMAT type
)
2232 DECLARE_PROC_ADDR(secur32
.dll
, BOOL
, SEC_ENTRY
, GetUserNameExW
,
2233 enum EXTENDED_NAME_FORMAT
, LPCWSTR
, PULONG
);
2234 static wchar_t wbuffer
[1024];
2237 if (!INIT_PROC_ADDR(GetUserNameExW
))
2240 len
= ARRAY_SIZE(wbuffer
);
2241 if (GetUserNameExW(type
, wbuffer
, &len
)) {
2242 char *converted
= xmalloc((len
*= 3));
2243 if (xwcstoutf(converted
, wbuffer
, len
) >= 0)
2251 char *mingw_query_user_email(void)
2253 return get_extended_user_info(NameUserPrincipal
);
2256 struct passwd
*getpwuid(int uid
)
2258 static unsigned initialized
;
2259 static char user_name
[100];
2260 static struct passwd
*p
;
2267 len
= ARRAY_SIZE(buf
);
2268 if (!GetUserNameW(buf
, &len
)) {
2273 if (xwcstoutf(user_name
, buf
, sizeof(user_name
)) < 0) {
2278 p
= xmalloc(sizeof(*p
));
2279 p
->pw_name
= user_name
;
2280 p
->pw_gecos
= get_extended_user_info(NameDisplay
);
2282 p
->pw_gecos
= "unknown";
2289 static HANDLE timer_event
;
2290 static HANDLE timer_thread
;
2291 static int timer_interval
;
2292 static int one_shot
;
2293 static sig_handler_t timer_fn
= SIG_DFL
, sigint_fn
= SIG_DFL
;
2295 /* The timer works like this:
2296 * The thread, ticktack(), is a trivial routine that most of the time
2297 * only waits to receive the signal to terminate. The main thread tells
2298 * the thread to terminate by setting the timer_event to the signalled
2300 * But ticktack() interrupts the wait state after the timer's interval
2301 * length to call the signal handler.
2304 static unsigned __stdcall
ticktack(void *dummy
)
2306 while (WaitForSingleObject(timer_event
, timer_interval
) == WAIT_TIMEOUT
) {
2307 mingw_raise(SIGALRM
);
2314 static int start_timer_thread(void)
2316 timer_event
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
2318 timer_thread
= (HANDLE
) _beginthreadex(NULL
, 0, ticktack
, NULL
, 0, NULL
);
2320 return errno
= ENOMEM
,
2321 error("cannot start timer thread");
2323 return errno
= ENOMEM
,
2324 error("cannot allocate resources for timer");
2328 static void stop_timer_thread(void)
2331 SetEvent(timer_event
); /* tell thread to terminate */
2333 int rc
= WaitForSingleObject(timer_thread
, 10000);
2334 if (rc
== WAIT_TIMEOUT
)
2335 error("timer thread did not terminate timely");
2336 else if (rc
!= WAIT_OBJECT_0
)
2337 error("waiting for timer thread failed: %lu",
2339 CloseHandle(timer_thread
);
2342 CloseHandle(timer_event
);
2344 timer_thread
= NULL
;
2347 static inline int is_timeval_eq(const struct timeval
*i1
, const struct timeval
*i2
)
2349 return i1
->tv_sec
== i2
->tv_sec
&& i1
->tv_usec
== i2
->tv_usec
;
2352 int setitimer(int type
, struct itimerval
*in
, struct itimerval
*out
)
2354 static const struct timeval zero
;
2355 static int atexit_done
;
2358 return errno
= EINVAL
,
2359 error("setitimer param 3 != NULL not implemented");
2360 if (!is_timeval_eq(&in
->it_interval
, &zero
) &&
2361 !is_timeval_eq(&in
->it_interval
, &in
->it_value
))
2362 return errno
= EINVAL
,
2363 error("setitimer: it_interval must be zero or eq it_value");
2366 stop_timer_thread();
2368 if (is_timeval_eq(&in
->it_value
, &zero
) &&
2369 is_timeval_eq(&in
->it_interval
, &zero
))
2372 timer_interval
= in
->it_value
.tv_sec
* 1000 + in
->it_value
.tv_usec
/ 1000;
2373 one_shot
= is_timeval_eq(&in
->it_interval
, &zero
);
2375 atexit(stop_timer_thread
);
2378 return start_timer_thread();
2381 int sigaction(int sig
, struct sigaction
*in
, struct sigaction
*out
)
2384 return errno
= EINVAL
,
2385 error("sigaction only implemented for SIGALRM");
2387 return errno
= EINVAL
,
2388 error("sigaction: param 3 != NULL not implemented");
2390 timer_fn
= in
->sa_handler
;
2395 sig_handler_t
mingw_signal(int sig
, sig_handler_t handler
)
2407 sigint_fn
= handler
;
2411 return signal(sig
, handler
);
2418 int mingw_raise(int sig
)
2422 if (timer_fn
== SIG_DFL
) {
2423 if (isatty(STDERR_FILENO
))
2424 fputs("Alarm clock\n", stderr
);
2425 exit(128 + SIGALRM
);
2426 } else if (timer_fn
!= SIG_IGN
)
2431 if (sigint_fn
== SIG_DFL
)
2433 else if (sigint_fn
!= SIG_IGN
)
2437 #if defined(_MSC_VER)
2444 case SIGABRT_COMPAT
:
2446 * The <signal.h> header in the MS C Runtime defines 8 signals
2447 * as being supported on the platform. Anything else causes an
2448 * "Invalid signal or error" (which in DEBUG builds causes the
2449 * Abort/Retry/Ignore dialog). We by-pass the CRT for things we
2450 * already know will fail.
2467 int link(const char *oldpath
, const char *newpath
)
2469 wchar_t woldpath
[MAX_PATH
], wnewpath
[MAX_PATH
];
2470 if (xutftowcs_path(woldpath
, oldpath
) < 0 ||
2471 xutftowcs_path(wnewpath
, newpath
) < 0)
2474 if (!CreateHardLinkW(wnewpath
, woldpath
, NULL
)) {
2475 errno
= err_win_to_posix(GetLastError());
2481 pid_t
waitpid(pid_t pid
, int *status
, int options
)
2483 HANDLE h
= OpenProcess(SYNCHRONIZE
| PROCESS_QUERY_INFORMATION
,
2490 if (pid
> 0 && options
& WNOHANG
) {
2491 if (WAIT_OBJECT_0
!= WaitForSingleObject(h
, 0)) {
2495 options
&= ~WNOHANG
;
2499 struct pinfo_t
**ppinfo
;
2500 if (WaitForSingleObject(h
, INFINITE
) != WAIT_OBJECT_0
) {
2506 GetExitCodeProcess(h
, (LPDWORD
)status
);
2508 EnterCriticalSection(&pinfo_cs
);
2512 struct pinfo_t
*info
= *ppinfo
;
2513 if (info
->pid
== pid
) {
2514 CloseHandle(info
->proc
);
2515 *ppinfo
= info
->next
;
2519 ppinfo
= &info
->next
;
2522 LeaveCriticalSection(&pinfo_cs
);
2533 int xutftowcsn(wchar_t *wcs
, const char *utfs
, size_t wcslen
, int utflen
)
2535 int upos
= 0, wpos
= 0;
2536 const unsigned char *utf
= (const unsigned char*) utfs
;
2537 if (!utf
|| !wcs
|| wcslen
< 1) {
2541 /* reserve space for \0 */
2546 while (upos
< utflen
) {
2547 int c
= utf
[upos
++] & 0xff;
2548 if (utflen
== INT_MAX
&& c
== 0)
2551 if (wpos
>= wcslen
) {
2560 } else if (c
>= 0xc2 && c
< 0xe0 && upos
< utflen
&&
2561 (utf
[upos
] & 0xc0) == 0x80) {
2563 c
= ((c
& 0x1f) << 6);
2564 c
|= (utf
[upos
++] & 0x3f);
2566 } else if (c
>= 0xe0 && c
< 0xf0 && upos
+ 1 < utflen
&&
2567 !(c
== 0xe0 && utf
[upos
] < 0xa0) && /* over-long encoding */
2568 (utf
[upos
] & 0xc0) == 0x80 &&
2569 (utf
[upos
+ 1] & 0xc0) == 0x80) {
2571 c
= ((c
& 0x0f) << 12);
2572 c
|= ((utf
[upos
++] & 0x3f) << 6);
2573 c
|= (utf
[upos
++] & 0x3f);
2575 } else if (c
>= 0xf0 && c
< 0xf5 && upos
+ 2 < utflen
&&
2576 wpos
+ 1 < wcslen
&&
2577 !(c
== 0xf0 && utf
[upos
] < 0x90) && /* over-long encoding */
2578 !(c
== 0xf4 && utf
[upos
] >= 0x90) && /* > \u10ffff */
2579 (utf
[upos
] & 0xc0) == 0x80 &&
2580 (utf
[upos
+ 1] & 0xc0) == 0x80 &&
2581 (utf
[upos
+ 2] & 0xc0) == 0x80) {
2582 /* 4-byte utf-8: convert to \ud8xx \udcxx surrogate pair */
2583 c
= ((c
& 0x07) << 18);
2584 c
|= ((utf
[upos
++] & 0x3f) << 12);
2585 c
|= ((utf
[upos
++] & 0x3f) << 6);
2586 c
|= (utf
[upos
++] & 0x3f);
2588 wcs
[wpos
++] = 0xd800 | (c
>> 10);
2589 wcs
[wpos
++] = 0xdc00 | (c
& 0x3ff);
2590 } else if (c
>= 0xa0) {
2591 /* invalid utf-8 byte, printable unicode char: convert 1:1 */
2594 /* invalid utf-8 byte, non-printable unicode: convert to hex */
2595 static const char *hex
= "0123456789abcdef";
2596 wcs
[wpos
++] = hex
[c
>> 4];
2598 wcs
[wpos
++] = hex
[c
& 0x0f];
2605 int xwcstoutf(char *utf
, const wchar_t *wcs
, size_t utflen
)
2607 if (!wcs
|| !utf
|| utflen
< 1) {
2611 utflen
= WideCharToMultiByte(CP_UTF8
, 0, wcs
, -1, utf
, utflen
, NULL
, NULL
);
2618 static void setup_windows_environment(void)
2620 char *tmp
= getenv("TMPDIR");
2622 /* on Windows it is TMP and TEMP */
2624 if (!(tmp
= getenv("TMP")))
2625 tmp
= getenv("TEMP");
2627 setenv("TMPDIR", tmp
, 1);
2628 tmp
= getenv("TMPDIR");
2634 * Convert all dir separators to forward slashes,
2635 * to help shell commands called from the Git
2636 * executable (by not mistaking the dir separators
2637 * for escape characters).
2639 convert_slashes(tmp
);
2642 /* simulate TERM to enable auto-color (see color.c) */
2643 if (!getenv("TERM"))
2644 setenv("TERM", "cygwin", 1);
2646 /* calculate HOME if not set */
2647 if (!getenv("HOME")) {
2649 * try $HOMEDRIVE$HOMEPATH - the home share may be a network
2650 * location, thus also check if the path exists (i.e. is not
2653 if ((tmp
= getenv("HOMEDRIVE"))) {
2654 struct strbuf buf
= STRBUF_INIT
;
2655 strbuf_addstr(&buf
, tmp
);
2656 if ((tmp
= getenv("HOMEPATH"))) {
2657 strbuf_addstr(&buf
, tmp
);
2658 if (is_directory(buf
.buf
))
2659 setenv("HOME", buf
.buf
, 1);
2661 tmp
= NULL
; /* use $USERPROFILE */
2663 strbuf_release(&buf
);
2665 /* use $USERPROFILE if the home share is not available */
2666 if (!tmp
&& (tmp
= getenv("USERPROFILE")))
2667 setenv("HOME", tmp
, 1);
2671 static PSID
get_current_user_sid(void)
2677 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &token
))
2680 if (!GetTokenInformation(token
, TokenUser
, NULL
, 0, &len
)) {
2681 TOKEN_USER
*info
= xmalloc((size_t)len
);
2682 if (GetTokenInformation(token
, TokenUser
, info
, len
, &len
)) {
2683 len
= GetLengthSid(info
->User
.Sid
);
2684 result
= xmalloc(len
);
2685 if (!CopySid(len
, result
, info
->User
.Sid
)) {
2686 error(_("failed to copy SID (%ld)"),
2688 FREE_AND_NULL(result
);
2691 FREE_AND_NULL(info
);
2698 static BOOL
user_sid_to_user_name(PSID sid
, LPSTR
*str
)
2700 SID_NAME_USE pe_use
;
2701 DWORD len_user
= 0, len_domain
= 0;
2702 BOOL translate_sid_to_user
;
2705 * returns only FALSE, because the string pointers are NULL
2707 LookupAccountSidA(NULL
, sid
, NULL
, &len_user
, NULL
, &len_domain
,
2710 * Alloc needed space of the strings
2712 ALLOC_ARRAY((*str
), (size_t)len_domain
+ (size_t)len_user
);
2713 translate_sid_to_user
= LookupAccountSidA(NULL
, sid
,
2714 (*str
) + len_domain
, &len_user
, *str
, &len_domain
, &pe_use
);
2715 if (!translate_sid_to_user
)
2716 FREE_AND_NULL(*str
);
2718 (*str
)[len_domain
] = '/';
2719 return translate_sid_to_user
;
2722 static int acls_supported(const char *path
)
2724 size_t offset
= offset_1st_component(path
);
2725 WCHAR wroot
[MAX_PATH
];
2726 DWORD file_system_flags
;
2729 xutftowcsn(wroot
, path
, MAX_PATH
, offset
) > 0 &&
2730 GetVolumeInformationW(wroot
, NULL
, 0, NULL
, NULL
,
2731 &file_system_flags
, NULL
, 0))
2732 return !!(file_system_flags
& FILE_PERSISTENT_ACLS
);
2737 int is_path_owned_by_current_sid(const char *path
, struct strbuf
*report
)
2739 WCHAR wpath
[MAX_PATH
];
2741 PSECURITY_DESCRIPTOR descriptor
= NULL
;
2744 static wchar_t home
[MAX_PATH
];
2748 if (xutftowcs_path(wpath
, path
) < 0)
2752 * On Windows, the home directory is owned by the administrator, but for
2753 * all practical purposes, it belongs to the user. Do pretend that it is
2754 * owned by the user.
2757 DWORD size
= ARRAY_SIZE(home
);
2758 DWORD len
= GetEnvironmentVariableW(L
"HOME", home
, size
);
2759 if (!len
|| len
> size
)
2760 wcscpy(home
, L
"::N/A::");
2762 if (!wcsicmp(wpath
, home
))
2765 /* Get the owner SID */
2766 err
= GetNamedSecurityInfoW(wpath
, SE_FILE_OBJECT
,
2767 OWNER_SECURITY_INFORMATION
|
2768 DACL_SECURITY_INFORMATION
,
2769 &sid
, NULL
, NULL
, NULL
, &descriptor
);
2771 if (err
!= ERROR_SUCCESS
)
2772 error(_("failed to get owner for '%s' (%ld)"), path
, err
);
2773 else if (sid
&& IsValidSid(sid
)) {
2774 /* Now, verify that the SID matches the current user's */
2775 static PSID current_user_sid
;
2778 if (!current_user_sid
)
2779 current_user_sid
= get_current_user_sid();
2781 if (current_user_sid
&&
2782 IsValidSid(current_user_sid
) &&
2783 EqualSid(sid
, current_user_sid
))
2785 else if (IsWellKnownSid(sid
, WinBuiltinAdministratorsSid
) &&
2786 CheckTokenMembership(NULL
, sid
, &is_member
) &&
2789 * If owned by the Administrators group, and the
2790 * current user is an administrator, we consider that
2795 IsWellKnownSid(sid
, WinWorldSid
) &&
2796 !acls_supported(path
)) {
2798 * On FAT32 volumes, ownership is not actually recorded.
2800 strbuf_addf(report
, "'%s' is on a file system that does "
2801 "not record ownership\n", path
);
2802 } else if (report
) {
2803 LPSTR str1
, str2
, str3
, str4
, to_free1
= NULL
,
2804 to_free3
= NULL
, to_local_free2
= NULL
,
2805 to_local_free4
= NULL
;
2807 if (user_sid_to_user_name(sid
, &str1
))
2810 str1
= "(inconvertible)";
2811 if (ConvertSidToStringSidA(sid
, &str2
))
2812 to_local_free2
= str2
;
2814 str2
= "(inconvertible)";
2816 if (!current_user_sid
) {
2820 else if (!IsValidSid(current_user_sid
)) {
2824 if (user_sid_to_user_name(current_user_sid
,
2828 str3
= "(inconvertible)";
2829 if (ConvertSidToStringSidA(current_user_sid
,
2831 to_local_free4
= str4
;
2833 str4
= "(inconvertible)";
2836 "'%s' is owned by:\n"
2837 "\t%s (%s)\nbut the current user is:\n"
2839 path
, str1
, str2
, str3
, str4
);
2841 LocalFree(to_local_free2
);
2843 LocalFree(to_local_free4
);
2848 * We can release the security descriptor struct only now because `sid`
2849 * actually points into this struct.
2852 LocalFree(descriptor
);
2857 int is_valid_win32_path(const char *path
, int allow_literal_nul
)
2859 const char *p
= path
;
2860 int preceding_space_or_period
= 0, i
= 0, periods
= 0;
2865 skip_dos_drive_prefix((char **)&path
);
2872 case '/': case '\\':
2873 /* cannot end in ` ` or `.`, except for `.` and `..` */
2874 if (preceding_space_or_period
&&
2875 (i
!= periods
|| periods
> 2))
2880 i
= periods
= preceding_space_or_period
= 0;
2884 case 'a': case 'A': /* AUX */
2885 if (((c
= path
[++i
]) != 'u' && c
!= 'U') ||
2886 ((c
= path
[++i
]) != 'x' && c
!= 'X')) {
2887 not_a_reserved_name
:
2893 /* COM1 ... COM9, CON, CONIN$, CONOUT$ */
2894 if ((c
= path
[++i
]) != 'o' && c
!= 'O')
2895 goto not_a_reserved_name
;
2897 if (c
== 'm' || c
== 'M') { /* COM1 ... COM9 */
2899 if (c
< '1' || c
> '9')
2900 goto not_a_reserved_name
;
2901 } else if (c
== 'n' || c
== 'N') { /* CON */
2903 if ((c
== 'i' || c
== 'I') &&
2904 ((c
= path
[i
+ 2]) == 'n' ||
2907 i
+= 3; /* CONIN$ */
2908 else if ((c
== 'o' || c
== 'O') &&
2909 ((c
= path
[i
+ 2]) == 'u' ||
2911 ((c
= path
[i
+ 3]) == 't' ||
2914 i
+= 4; /* CONOUT$ */
2916 goto not_a_reserved_name
;
2918 case 'l': case 'L': /* LPT<N> */
2919 if (((c
= path
[++i
]) != 'p' && c
!= 'P') ||
2920 ((c
= path
[++i
]) != 't' && c
!= 'T') ||
2921 !isdigit(path
[++i
]))
2922 goto not_a_reserved_name
;
2924 case 'n': case 'N': /* NUL */
2925 if (((c
= path
[++i
]) != 'u' && c
!= 'U') ||
2926 ((c
= path
[++i
]) != 'l' && c
!= 'L') ||
2927 (allow_literal_nul
&&
2928 !path
[i
+ 1] && p
== path
))
2929 goto not_a_reserved_name
;
2931 case 'p': case 'P': /* PRN */
2932 if (((c
= path
[++i
]) != 'r' && c
!= 'R') ||
2933 ((c
= path
[++i
]) != 'n' && c
!= 'N'))
2934 goto not_a_reserved_name
;
2941 * So far, this looks like a reserved name. Let's see
2942 * whether it actually is one: trailing spaces, a file
2943 * extension, or an NTFS Alternate Data Stream do not
2944 * matter, the name is still reserved if any of those
2945 * follow immediately after the actual name.
2948 if (path
[i
] == ' ') {
2949 preceding_space_or_period
= 1;
2950 while (path
[++i
] == ' ')
2951 ; /* skip all spaces */
2955 if (c
&& c
!= '.' && c
!= ':' && !is_xplatform_dir_sep(c
))
2956 goto not_a_reserved_name
;
2958 /* contains reserved name */
2964 preceding_space_or_period
= 1;
2967 case ':': /* DOS drive prefix was already skipped */
2968 case '<': case '>': case '"': case '|': case '?': case '*':
2969 /* illegal character */
2972 if (c
> '\0' && c
< '\x20')
2973 /* illegal character */
2976 preceding_space_or_period
= 0;
2981 #if !defined(_MSC_VER)
2983 * Disable MSVCRT command line wildcard expansion (__getmainargs called from
2984 * mingw startup code, see init.c in mingw runtime).
2989 static NORETURN
void die_startup(void)
2991 fputs("fatal: not enough memory for initialization", stderr
);
2995 static void *malloc_startup(size_t size
)
2997 void *result
= malloc(size
);
3003 static char *wcstoutfdup_startup(char *buffer
, const wchar_t *wcs
, size_t len
)
3005 len
= xwcstoutf(buffer
, wcs
, len
) + 1;
3006 return memcpy(malloc_startup(len
), buffer
, len
);
3009 static void maybe_redirect_std_handle(const wchar_t *key
, DWORD std_id
, int fd
,
3010 DWORD desired_access
, DWORD flags
)
3012 DWORD create_flag
= fd
? OPEN_ALWAYS
: OPEN_EXISTING
;
3013 wchar_t buf
[MAX_PATH
];
3014 DWORD max
= ARRAY_SIZE(buf
);
3016 DWORD ret
= GetEnvironmentVariableW(key
, buf
, max
);
3018 if (!ret
|| ret
>= max
)
3021 /* make sure this does not leak into child processes */
3022 SetEnvironmentVariableW(key
, NULL
);
3023 if (!wcscmp(buf
, L
"off")) {
3025 handle
= GetStdHandle(std_id
);
3026 if (handle
!= INVALID_HANDLE_VALUE
)
3027 CloseHandle(handle
);
3030 if (std_id
== STD_ERROR_HANDLE
&& !wcscmp(buf
, L
"2>&1")) {
3031 handle
= GetStdHandle(STD_OUTPUT_HANDLE
);
3032 if (handle
== INVALID_HANDLE_VALUE
) {
3034 handle
= GetStdHandle(std_id
);
3035 if (handle
!= INVALID_HANDLE_VALUE
)
3036 CloseHandle(handle
);
3038 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
3039 SetStdHandle(std_id
, handle
);
3041 /* do *not* close the new_fd: that would close stdout */
3045 handle
= CreateFileW(buf
, desired_access
, 0, NULL
, create_flag
,
3047 if (handle
!= INVALID_HANDLE_VALUE
) {
3048 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
3049 SetStdHandle(std_id
, handle
);
3055 static void maybe_redirect_std_handles(void)
3057 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDIN", STD_INPUT_HANDLE
, 0,
3058 GENERIC_READ
, FILE_ATTRIBUTE_NORMAL
);
3059 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDOUT", STD_OUTPUT_HANDLE
, 1,
3060 GENERIC_WRITE
, FILE_ATTRIBUTE_NORMAL
);
3061 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDERR", STD_ERROR_HANDLE
, 2,
3062 GENERIC_WRITE
, FILE_FLAG_NO_BUFFERING
);
3072 * We implement wmain() and compile with -municode, which would
3073 * normally ignore main(), but we call the latter from the former
3074 * so that we can handle non-ASCII command-line parameters
3077 * To be more compatible with the core git code, we convert
3078 * argv into UTF8 and pass them directly to main().
3080 int wmain(int argc
, const wchar_t **wargv
)
3082 int i
, maxlen
, exit_status
;
3083 char *buffer
, **save
;
3086 trace2_initialize_clock();
3090 _CrtSetReportMode(_CRT_ASSERT
, _CRTDBG_MODE_DEBUG
);
3093 #ifdef USE_MSVC_CRTDBG
3094 _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF
| _CRTDBG_LEAK_CHECK_DF
);
3098 maybe_redirect_std_handles();
3100 /* determine size of argv and environ conversion buffer */
3101 maxlen
= wcslen(wargv
[0]);
3102 for (i
= 1; i
< argc
; i
++)
3103 maxlen
= max(maxlen
, wcslen(wargv
[i
]));
3105 /* allocate buffer (wchar_t encodes to max 3 UTF-8 bytes) */
3106 maxlen
= 3 * maxlen
+ 1;
3107 buffer
= malloc_startup(maxlen
);
3110 * Create a UTF-8 version of w_argv. Also create a "save" copy
3111 * to remember all the string pointers because parse_options()
3112 * will remove claimed items from the argv that we pass down.
3114 ALLOC_ARRAY(argv
, argc
+ 1);
3115 ALLOC_ARRAY(save
, argc
+ 1);
3116 for (i
= 0; i
< argc
; i
++)
3117 argv
[i
] = save
[i
] = wcstoutfdup_startup(buffer
, wargv
[i
], maxlen
);
3118 argv
[i
] = save
[i
] = NULL
;
3121 /* fix Windows specific environment settings */
3122 setup_windows_environment();
3124 unset_environment_variables
= xstrdup("PERL5LIB");
3126 /* initialize critical section for waitpid pinfo_t list */
3127 InitializeCriticalSection(&pinfo_cs
);
3129 /* set up default file mode and file modes for stdin/out/err */
3131 _setmode(_fileno(stdin
), _O_BINARY
);
3132 _setmode(_fileno(stdout
), _O_BINARY
);
3133 _setmode(_fileno(stderr
), _O_BINARY
);
3135 /* initialize Unicode console */
3138 /* invoke the real main() using our utf8 version of argv. */
3139 exit_status
= main(argc
, argv
);
3141 for (i
= 0; i
< argc
; i
++)
3149 int uname(struct utsname
*buf
)
3151 unsigned v
= (unsigned)GetVersion();
3152 memset(buf
, 0, sizeof(*buf
));
3153 xsnprintf(buf
->sysname
, sizeof(buf
->sysname
), "Windows");
3154 xsnprintf(buf
->release
, sizeof(buf
->release
),
3155 "%u.%u", v
& 0xff, (v
>> 8) & 0xff);
3156 /* assuming NT variants only.. */
3157 xsnprintf(buf
->version
, sizeof(buf
->version
),
3158 "%u", (v
>> 16) & 0x7fff);
3162 int mingw_have_unix_sockets(void)
3164 SC_HANDLE scm
, srvc
;
3165 SERVICE_STATUS_PROCESS status
;
3168 scm
= OpenSCManagerA(NULL
, NULL
, SC_MANAGER_CONNECT
);
3170 srvc
= OpenServiceA(scm
, "afunix", SERVICE_QUERY_STATUS
);
3172 if(QueryServiceStatusEx(srvc
, SC_STATUS_PROCESS_INFO
, (LPBYTE
)&status
, sizeof(SERVICE_STATUS_PROCESS
), &bytes
))
3173 ret
= status
.dwCurrentState
== SERVICE_RUNNING
;
3174 CloseServiceHandle(srvc
);
3176 CloseServiceHandle(scm
);