1 #include "../git-compat-util.h"
6 #include "../run-command.h"
8 #include "win32/lazyload.h"
11 #define HCAST(type, handle) ((type)(intptr_t)handle)
13 static const int delay
[] = { 0, 1, 10, 20, 40 };
15 int err_win_to_posix(DWORD winerr
)
19 case ERROR_ACCESS_DENIED
: error
= EACCES
; break;
20 case ERROR_ACCOUNT_DISABLED
: error
= EACCES
; break;
21 case ERROR_ACCOUNT_RESTRICTION
: error
= EACCES
; break;
22 case ERROR_ALREADY_ASSIGNED
: error
= EBUSY
; break;
23 case ERROR_ALREADY_EXISTS
: error
= EEXIST
; break;
24 case ERROR_ARITHMETIC_OVERFLOW
: error
= ERANGE
; break;
25 case ERROR_BAD_COMMAND
: error
= EIO
; break;
26 case ERROR_BAD_DEVICE
: error
= ENODEV
; break;
27 case ERROR_BAD_DRIVER_LEVEL
: error
= ENXIO
; break;
28 case ERROR_BAD_EXE_FORMAT
: error
= ENOEXEC
; break;
29 case ERROR_BAD_FORMAT
: error
= ENOEXEC
; break;
30 case ERROR_BAD_LENGTH
: error
= EINVAL
; break;
31 case ERROR_BAD_PATHNAME
: error
= ENOENT
; break;
32 case ERROR_BAD_PIPE
: error
= EPIPE
; break;
33 case ERROR_BAD_UNIT
: error
= ENODEV
; break;
34 case ERROR_BAD_USERNAME
: error
= EINVAL
; break;
35 case ERROR_BROKEN_PIPE
: error
= EPIPE
; break;
36 case ERROR_BUFFER_OVERFLOW
: error
= ENAMETOOLONG
; break;
37 case ERROR_BUSY
: error
= EBUSY
; break;
38 case ERROR_BUSY_DRIVE
: error
= EBUSY
; break;
39 case ERROR_CALL_NOT_IMPLEMENTED
: error
= ENOSYS
; break;
40 case ERROR_CANNOT_MAKE
: error
= EACCES
; break;
41 case ERROR_CANTOPEN
: error
= EIO
; break;
42 case ERROR_CANTREAD
: error
= EIO
; break;
43 case ERROR_CANTWRITE
: error
= EIO
; break;
44 case ERROR_CRC
: error
= EIO
; break;
45 case ERROR_CURRENT_DIRECTORY
: error
= EACCES
; break;
46 case ERROR_DEVICE_IN_USE
: error
= EBUSY
; break;
47 case ERROR_DEV_NOT_EXIST
: error
= ENODEV
; break;
48 case ERROR_DIRECTORY
: error
= EINVAL
; break;
49 case ERROR_DIR_NOT_EMPTY
: error
= ENOTEMPTY
; break;
50 case ERROR_DISK_CHANGE
: error
= EIO
; break;
51 case ERROR_DISK_FULL
: error
= ENOSPC
; break;
52 case ERROR_DRIVE_LOCKED
: error
= EBUSY
; break;
53 case ERROR_ENVVAR_NOT_FOUND
: error
= EINVAL
; break;
54 case ERROR_EXE_MARKED_INVALID
: error
= ENOEXEC
; break;
55 case ERROR_FILENAME_EXCED_RANGE
: error
= ENAMETOOLONG
; break;
56 case ERROR_FILE_EXISTS
: error
= EEXIST
; break;
57 case ERROR_FILE_INVALID
: error
= ENODEV
; break;
58 case ERROR_FILE_NOT_FOUND
: error
= ENOENT
; break;
59 case ERROR_GEN_FAILURE
: error
= EIO
; break;
60 case ERROR_HANDLE_DISK_FULL
: error
= ENOSPC
; break;
61 case ERROR_INSUFFICIENT_BUFFER
: error
= ENOMEM
; break;
62 case ERROR_INVALID_ACCESS
: error
= EACCES
; break;
63 case ERROR_INVALID_ADDRESS
: error
= EFAULT
; break;
64 case ERROR_INVALID_BLOCK
: error
= EFAULT
; break;
65 case ERROR_INVALID_DATA
: error
= EINVAL
; break;
66 case ERROR_INVALID_DRIVE
: error
= ENODEV
; break;
67 case ERROR_INVALID_EXE_SIGNATURE
: error
= ENOEXEC
; break;
68 case ERROR_INVALID_FLAGS
: error
= EINVAL
; break;
69 case ERROR_INVALID_FUNCTION
: error
= ENOSYS
; break;
70 case ERROR_INVALID_HANDLE
: error
= EBADF
; break;
71 case ERROR_INVALID_LOGON_HOURS
: error
= EACCES
; break;
72 case ERROR_INVALID_NAME
: error
= EINVAL
; break;
73 case ERROR_INVALID_OWNER
: error
= EINVAL
; break;
74 case ERROR_INVALID_PARAMETER
: error
= EINVAL
; break;
75 case ERROR_INVALID_PASSWORD
: error
= EPERM
; break;
76 case ERROR_INVALID_PRIMARY_GROUP
: error
= EINVAL
; break;
77 case ERROR_INVALID_SIGNAL_NUMBER
: error
= EINVAL
; break;
78 case ERROR_INVALID_TARGET_HANDLE
: error
= EIO
; break;
79 case ERROR_INVALID_WORKSTATION
: error
= EACCES
; break;
80 case ERROR_IO_DEVICE
: error
= EIO
; break;
81 case ERROR_IO_INCOMPLETE
: error
= EINTR
; break;
82 case ERROR_LOCKED
: error
= EBUSY
; break;
83 case ERROR_LOCK_VIOLATION
: error
= EACCES
; break;
84 case ERROR_LOGON_FAILURE
: error
= EACCES
; break;
85 case ERROR_MAPPED_ALIGNMENT
: error
= EINVAL
; break;
86 case ERROR_META_EXPANSION_TOO_LONG
: error
= E2BIG
; break;
87 case ERROR_MORE_DATA
: error
= EPIPE
; break;
88 case ERROR_NEGATIVE_SEEK
: error
= ESPIPE
; break;
89 case ERROR_NOACCESS
: error
= EFAULT
; break;
90 case ERROR_NONE_MAPPED
: error
= EINVAL
; break;
91 case ERROR_NOT_ENOUGH_MEMORY
: error
= ENOMEM
; break;
92 case ERROR_NOT_READY
: error
= EAGAIN
; break;
93 case ERROR_NOT_SAME_DEVICE
: error
= EXDEV
; break;
94 case ERROR_NO_DATA
: error
= EPIPE
; break;
95 case ERROR_NO_MORE_SEARCH_HANDLES
: error
= EIO
; break;
96 case ERROR_NO_PROC_SLOTS
: error
= EAGAIN
; break;
97 case ERROR_NO_SUCH_PRIVILEGE
: error
= EACCES
; break;
98 case ERROR_OPEN_FAILED
: error
= EIO
; break;
99 case ERROR_OPEN_FILES
: error
= EBUSY
; break;
100 case ERROR_OPERATION_ABORTED
: error
= EINTR
; break;
101 case ERROR_OUTOFMEMORY
: error
= ENOMEM
; break;
102 case ERROR_PASSWORD_EXPIRED
: error
= EACCES
; break;
103 case ERROR_PATH_BUSY
: error
= EBUSY
; break;
104 case ERROR_PATH_NOT_FOUND
: error
= ENOENT
; break;
105 case ERROR_PIPE_BUSY
: error
= EBUSY
; break;
106 case ERROR_PIPE_CONNECTED
: error
= EPIPE
; break;
107 case ERROR_PIPE_LISTENING
: error
= EPIPE
; break;
108 case ERROR_PIPE_NOT_CONNECTED
: error
= EPIPE
; break;
109 case ERROR_PRIVILEGE_NOT_HELD
: error
= EACCES
; break;
110 case ERROR_READ_FAULT
: error
= EIO
; break;
111 case ERROR_SEEK
: error
= EIO
; break;
112 case ERROR_SEEK_ON_DEVICE
: error
= ESPIPE
; break;
113 case ERROR_SHARING_BUFFER_EXCEEDED
: error
= ENFILE
; break;
114 case ERROR_SHARING_VIOLATION
: error
= EACCES
; break;
115 case ERROR_STACK_OVERFLOW
: error
= ENOMEM
; break;
116 case ERROR_SWAPERROR
: error
= ENOENT
; break;
117 case ERROR_TOO_MANY_MODULES
: error
= EMFILE
; break;
118 case ERROR_TOO_MANY_OPEN_FILES
: error
= EMFILE
; break;
119 case ERROR_UNRECOGNIZED_MEDIA
: error
= ENXIO
; break;
120 case ERROR_UNRECOGNIZED_VOLUME
: error
= ENODEV
; break;
121 case ERROR_WAIT_NO_CHILDREN
: error
= ECHILD
; break;
122 case ERROR_WRITE_FAULT
: error
= EIO
; break;
123 case ERROR_WRITE_PROTECT
: error
= EROFS
; break;
128 static inline int is_file_in_use_error(DWORD errcode
)
131 case ERROR_SHARING_VIOLATION
:
132 case ERROR_ACCESS_DENIED
:
139 static int read_yes_no_answer(void)
143 if (fgets(answer
, sizeof(answer
), stdin
)) {
144 size_t answer_len
= strlen(answer
);
145 int got_full_line
= 0, c
;
147 /* remove the newline */
148 if (answer_len
>= 2 && answer
[answer_len
-2] == '\r') {
149 answer
[answer_len
-2] = '\0';
151 } else if (answer_len
>= 1 && answer
[answer_len
-1] == '\n') {
152 answer
[answer_len
-1] = '\0';
155 /* flush the buffer in case we did not get the full line */
157 while ((c
= getchar()) != EOF
&& c
!= '\n')
160 /* we could not read, return the
161 * default answer which is no */
164 if (tolower(answer
[0]) == 'y' && !answer
[1])
166 if (!strncasecmp(answer
, "yes", sizeof(answer
)))
168 if (tolower(answer
[0]) == 'n' && !answer
[1])
170 if (!strncasecmp(answer
, "no", sizeof(answer
)))
173 /* did not find an answer we understand */
177 static int ask_yes_no_if_possible(const char *format
, ...)
180 const char *retry_hook
[] = { NULL
, NULL
, NULL
};
183 va_start(args
, format
);
184 vsnprintf(question
, sizeof(question
), format
, args
);
187 if ((retry_hook
[0] = mingw_getenv("GIT_ASK_YESNO"))) {
188 retry_hook
[1] = question
;
189 return !run_command_v_opt(retry_hook
, 0);
192 if (!isatty(_fileno(stdin
)) || !isatty(_fileno(stderr
)))
197 fprintf(stderr
, "%s (y/n) ", question
);
199 if ((answer
= read_yes_no_answer()) >= 0)
202 fprintf(stderr
, "Sorry, I did not understand your answer. "
203 "Please type 'y' or 'n'\n");
208 enum hide_dotfiles_type
{
209 HIDE_DOTFILES_FALSE
= 0,
211 HIDE_DOTFILES_DOTGITONLY
214 static enum hide_dotfiles_type hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
215 static char *unset_environment_variables
;
217 int mingw_core_config(const char *var
, const char *value
, void *cb
)
219 if (!strcmp(var
, "core.hidedotfiles")) {
220 if (value
&& !strcasecmp(value
, "dotgitonly"))
221 hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
223 hide_dotfiles
= git_config_bool(var
, value
);
227 if (!strcmp(var
, "core.unsetenvvars")) {
228 free(unset_environment_variables
);
229 unset_environment_variables
= xstrdup(value
);
236 /* Normalizes NT paths as returned by some low-level APIs. */
237 static wchar_t *normalize_ntpath(wchar_t *wbuf
)
240 /* fix absolute path prefixes */
241 if (wbuf
[0] == '\\') {
242 /* strip NT namespace prefixes */
243 if (!wcsncmp(wbuf
, L
"\\??\\", 4) ||
244 !wcsncmp(wbuf
, L
"\\\\?\\", 4))
246 else if (!wcsnicmp(wbuf
, L
"\\DosDevices\\", 12))
248 /* replace remaining '...UNC\' with '\\' */
249 if (!wcsnicmp(wbuf
, L
"UNC\\", 4)) {
254 /* convert backslashes to slashes */
255 for (i
= 0; wbuf
[i
]; i
++)
261 int mingw_unlink(const char *pathname
)
264 wchar_t wpathname
[MAX_PATH
];
265 if (xutftowcs_path(wpathname
, pathname
) < 0)
268 /* read-only files cannot be removed */
269 _wchmod(wpathname
, 0666);
270 while ((ret
= _wunlink(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
271 if (!is_file_in_use_error(GetLastError()))
274 * We assume that some other process had the source or
275 * destination file open at the wrong moment and retry.
276 * In order to give the other process a higher chance to
277 * complete its operation, we give up our time slice now.
278 * If we have to retry again, we do sleep a bit.
283 while (ret
== -1 && is_file_in_use_error(GetLastError()) &&
284 ask_yes_no_if_possible("Unlink of file '%s' failed. "
285 "Should I try again?", pathname
))
286 ret
= _wunlink(wpathname
);
290 static int is_dir_empty(const wchar_t *wpath
)
292 WIN32_FIND_DATAW findbuf
;
294 wchar_t wbuf
[MAX_PATH
+ 2];
296 wcscat(wbuf
, L
"\\*");
297 handle
= FindFirstFileW(wbuf
, &findbuf
);
298 if (handle
== INVALID_HANDLE_VALUE
)
299 return GetLastError() == ERROR_NO_MORE_FILES
;
301 while (!wcscmp(findbuf
.cFileName
, L
".") ||
302 !wcscmp(findbuf
.cFileName
, L
".."))
303 if (!FindNextFileW(handle
, &findbuf
)) {
304 DWORD err
= GetLastError();
306 return err
== ERROR_NO_MORE_FILES
;
312 int mingw_rmdir(const char *pathname
)
315 wchar_t wpathname
[MAX_PATH
];
316 if (xutftowcs_path(wpathname
, pathname
) < 0)
319 while ((ret
= _wrmdir(wpathname
)) == -1 && tries
< ARRAY_SIZE(delay
)) {
320 if (!is_file_in_use_error(GetLastError()))
321 errno
= err_win_to_posix(GetLastError());
324 if (!is_dir_empty(wpathname
)) {
329 * We assume that some other process had the source or
330 * destination file open at the wrong moment and retry.
331 * In order to give the other process a higher chance to
332 * complete its operation, we give up our time slice now.
333 * If we have to retry again, we do sleep a bit.
338 while (ret
== -1 && errno
== EACCES
&& is_file_in_use_error(GetLastError()) &&
339 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
340 "Should I try again?", pathname
))
341 ret
= _wrmdir(wpathname
);
345 static inline int needs_hiding(const char *path
)
347 const char *basename
;
349 if (hide_dotfiles
== HIDE_DOTFILES_FALSE
)
352 /* We cannot use basename(), as it would remove trailing slashes */
353 win32_skip_dos_drive_prefix((char **)&path
);
357 for (basename
= path
; *path
; path
++)
358 if (is_dir_sep(*path
)) {
361 } while (is_dir_sep(*path
));
362 /* ignore trailing slashes */
367 if (hide_dotfiles
== HIDE_DOTFILES_TRUE
)
368 return *basename
== '.';
370 assert(hide_dotfiles
== HIDE_DOTFILES_DOTGITONLY
);
371 return !strncasecmp(".git", basename
, 4) &&
372 (!basename
[4] || is_dir_sep(basename
[4]));
375 static int set_hidden_flag(const wchar_t *path
, int set
)
377 DWORD original
= GetFileAttributesW(path
), modified
;
379 modified
= original
| FILE_ATTRIBUTE_HIDDEN
;
381 modified
= original
& ~FILE_ATTRIBUTE_HIDDEN
;
382 if (original
== modified
|| SetFileAttributesW(path
, modified
))
384 errno
= err_win_to_posix(GetLastError());
388 int mingw_mkdir(const char *path
, int mode
)
391 wchar_t wpath
[MAX_PATH
];
392 if (xutftowcs_path(wpath
, path
) < 0)
394 ret
= _wmkdir(wpath
);
395 if (!ret
&& needs_hiding(path
))
396 return set_hidden_flag(wpath
, 1);
401 * Calling CreateFile() using FILE_APPEND_DATA and without FILE_WRITE_DATA
402 * is documented in [1] as opening a writable file handle in append mode.
403 * (It is believed that) this is atomic since it is maintained by the
404 * kernel unlike the O_APPEND flag which is racily maintained by the CRT.
406 * [1] https://docs.microsoft.com/en-us/windows/desktop/fileio/file-access-rights-constants
408 * This trick does not appear to work for named pipes. Instead it creates
409 * a named pipe client handle that cannot be written to. Callers should
410 * just use the regular _wopen() for them. (And since client handle gets
411 * bound to a unique server handle, it isn't really an issue.)
413 static int mingw_open_append(wchar_t const *wfilename
, int oflags
, ...)
417 DWORD create
= (oflags
& O_CREAT
) ? OPEN_ALWAYS
: OPEN_EXISTING
;
419 /* only these flags are supported */
420 if ((oflags
& ~O_CREAT
) != (O_WRONLY
| O_APPEND
))
421 return errno
= ENOSYS
, -1;
424 * FILE_SHARE_WRITE is required to permit child processes
425 * to append to the file.
427 handle
= CreateFileW(wfilename
, FILE_APPEND_DATA
,
428 FILE_SHARE_WRITE
| FILE_SHARE_READ
,
429 NULL
, create
, FILE_ATTRIBUTE_NORMAL
, NULL
);
430 if (handle
== INVALID_HANDLE_VALUE
)
431 return errno
= err_win_to_posix(GetLastError()), -1;
434 * No O_APPEND here, because the CRT uses it only to reset the
435 * file pointer to EOF before each write(); but that is not
436 * necessary (and may lead to races) for a file created with
439 fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
446 * Does the pathname map to the local named pipe filesystem?
447 * That is, does it have a "//./pipe/" prefix?
449 static int is_local_named_pipe_path(const char *filename
)
451 return (is_dir_sep(filename
[0]) &&
452 is_dir_sep(filename
[1]) &&
453 filename
[2] == '.' &&
454 is_dir_sep(filename
[3]) &&
455 !strncasecmp(filename
+4, "pipe", 4) &&
456 is_dir_sep(filename
[8]) &&
460 int mingw_open (const char *filename
, int oflags
, ...)
462 typedef int (*open_fn_t
)(wchar_t const *wfilename
, int oflags
, ...);
466 wchar_t wfilename
[MAX_PATH
];
469 va_start(args
, oflags
);
470 mode
= va_arg(args
, int);
473 if (filename
&& !strcmp(filename
, "/dev/null"))
476 if ((oflags
& O_APPEND
) && !is_local_named_pipe_path(filename
))
477 open_fn
= mingw_open_append
;
481 if (xutftowcs_path(wfilename
, filename
) < 0)
483 fd
= open_fn(wfilename
, oflags
, mode
);
485 if (fd
< 0 && (oflags
& O_ACCMODE
) != O_RDONLY
&& errno
== EACCES
) {
486 DWORD attrs
= GetFileAttributesW(wfilename
);
487 if (attrs
!= INVALID_FILE_ATTRIBUTES
&& (attrs
& FILE_ATTRIBUTE_DIRECTORY
))
490 if ((oflags
& O_CREAT
) && needs_hiding(filename
)) {
492 * Internally, _wopen() uses the CreateFile() API which errors
493 * out with an ERROR_ACCESS_DENIED if CREATE_ALWAYS was
494 * specified and an already existing file's attributes do not
495 * match *exactly*. As there is no mode or flag we can set that
496 * would correspond to FILE_ATTRIBUTE_HIDDEN, let's just try
497 * again *without* the O_CREAT flag (that corresponds to the
498 * CREATE_ALWAYS flag of CreateFile()).
500 if (fd
< 0 && errno
== EACCES
)
501 fd
= open_fn(wfilename
, oflags
& ~O_CREAT
, mode
);
502 if (fd
>= 0 && set_hidden_flag(wfilename
, 1))
503 warning("could not mark '%s' as hidden.", filename
);
508 static BOOL WINAPI
ctrl_ignore(DWORD type
)
514 int mingw_fgetc(FILE *stream
)
517 if (!isatty(_fileno(stream
)))
518 return fgetc(stream
);
520 SetConsoleCtrlHandler(ctrl_ignore
, TRUE
);
523 if (ch
!= EOF
|| GetLastError() != ERROR_OPERATION_ABORTED
)
526 /* Ctrl+C was pressed, simulate SIGINT and retry */
529 SetConsoleCtrlHandler(ctrl_ignore
, FALSE
);
534 FILE *mingw_fopen (const char *filename
, const char *otype
)
536 int hide
= needs_hiding(filename
);
538 wchar_t wfilename
[MAX_PATH
], wotype
[4];
539 if (filename
&& !strcmp(filename
, "/dev/null"))
541 if (xutftowcs_path(wfilename
, filename
) < 0 ||
542 xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
544 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
545 error("could not unhide %s", filename
);
548 file
= _wfopen(wfilename
, wotype
);
549 if (!file
&& GetLastError() == ERROR_INVALID_NAME
)
551 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
552 warning("could not mark '%s' as hidden.", filename
);
556 FILE *mingw_freopen (const char *filename
, const char *otype
, FILE *stream
)
558 int hide
= needs_hiding(filename
);
560 wchar_t wfilename
[MAX_PATH
], wotype
[4];
561 if (filename
&& !strcmp(filename
, "/dev/null"))
563 if (xutftowcs_path(wfilename
, filename
) < 0 ||
564 xutftowcs(wotype
, otype
, ARRAY_SIZE(wotype
)) < 0)
566 if (hide
&& !access(filename
, F_OK
) && set_hidden_flag(wfilename
, 0)) {
567 error("could not unhide %s", filename
);
570 file
= _wfreopen(wfilename
, wotype
, stream
);
571 if (file
&& hide
&& set_hidden_flag(wfilename
, 1))
572 warning("could not mark '%s' as hidden.", filename
);
577 int mingw_fflush(FILE *stream
)
579 int ret
= fflush(stream
);
582 * write() is used behind the scenes of stdio output functions.
583 * Since git code does not check for errors after each stdio write
584 * operation, it can happen that write() is called by a later
585 * stdio function even if an earlier write() call failed. In the
586 * case of a pipe whose readable end was closed, only the first
587 * call to write() reports EPIPE on Windows. Subsequent write()
588 * calls report EINVAL. It is impossible to notice whether this
589 * fflush invocation triggered such a case, therefore, we have to
590 * catch all EINVAL errors whole-sale.
592 if (ret
&& errno
== EINVAL
)
599 ssize_t
mingw_write(int fd
, const void *buf
, size_t len
)
601 ssize_t result
= write(fd
, buf
, len
);
603 if (result
< 0 && errno
== EINVAL
&& buf
) {
604 /* check if fd is a pipe */
605 HANDLE h
= (HANDLE
) _get_osfhandle(fd
);
606 if (GetFileType(h
) == FILE_TYPE_PIPE
)
615 int mingw_access(const char *filename
, int mode
)
617 wchar_t wfilename
[MAX_PATH
];
618 if (xutftowcs_path(wfilename
, filename
) < 0)
620 /* X_OK is not supported by the MSVCRT version */
621 return _waccess(wfilename
, mode
& ~X_OK
);
624 int mingw_chdir(const char *dirname
)
626 wchar_t wdirname
[MAX_PATH
];
627 if (xutftowcs_path(wdirname
, dirname
) < 0)
629 return _wchdir(wdirname
);
632 int mingw_chmod(const char *filename
, int mode
)
634 wchar_t wfilename
[MAX_PATH
];
635 if (xutftowcs_path(wfilename
, filename
) < 0)
637 return _wchmod(wfilename
, mode
);
641 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
642 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
644 static inline long long filetime_to_hnsec(const FILETIME
*ft
)
646 long long winTime
= ((long long)ft
->dwHighDateTime
<< 32) + ft
->dwLowDateTime
;
647 /* Windows to Unix Epoch conversion */
648 return winTime
- 116444736000000000LL;
651 static inline void filetime_to_timespec(const FILETIME
*ft
, struct timespec
*ts
)
653 long long hnsec
= filetime_to_hnsec(ft
);
654 ts
->tv_sec
= (time_t)(hnsec
/ 10000000);
655 ts
->tv_nsec
= (hnsec
% 10000000) * 100;
659 * Verifies that safe_create_leading_directories() would succeed.
661 static int has_valid_directory_prefix(wchar_t *wfilename
)
663 int n
= wcslen(wfilename
);
666 wchar_t c
= wfilename
[--n
];
672 wfilename
[n
] = L
'\0';
673 attributes
= GetFileAttributesW(wfilename
);
675 if (attributes
== FILE_ATTRIBUTE_DIRECTORY
||
676 attributes
== FILE_ATTRIBUTE_DEVICE
)
678 if (attributes
== INVALID_FILE_ATTRIBUTES
)
679 switch (GetLastError()) {
680 case ERROR_PATH_NOT_FOUND
:
682 case ERROR_FILE_NOT_FOUND
:
683 /* This implies parent directory exists. */
691 /* We keep the do_lstat code in a separate function to avoid recursion.
692 * When a path ends with a slash, the stat will fail with ENOENT. In
693 * this case, we strip the trailing slashes and stat again.
695 * If follow is true then act like stat() and report on the link
696 * target. Otherwise report on the link itself.
698 static int do_lstat(int follow
, const char *file_name
, struct stat
*buf
)
700 WIN32_FILE_ATTRIBUTE_DATA fdata
;
701 wchar_t wfilename
[MAX_PATH
];
702 if (xutftowcs_path(wfilename
, file_name
) < 0)
705 if (GetFileAttributesExW(wfilename
, GetFileExInfoStandard
, &fdata
)) {
710 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
711 buf
->st_size
= fdata
.nFileSizeLow
|
712 (((off_t
)fdata
.nFileSizeHigh
)<<32);
713 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
714 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
715 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
716 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
717 if (fdata
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) {
718 WIN32_FIND_DATAW findbuf
;
719 HANDLE handle
= FindFirstFileW(wfilename
, &findbuf
);
720 if (handle
!= INVALID_HANDLE_VALUE
) {
721 if ((findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_REPARSE_POINT
) &&
722 (findbuf
.dwReserved0
== IO_REPARSE_TAG_SYMLINK
)) {
724 char buffer
[MAXIMUM_REPARSE_DATA_BUFFER_SIZE
];
725 buf
->st_size
= readlink(file_name
, buffer
, MAXIMUM_REPARSE_DATA_BUFFER_SIZE
);
727 buf
->st_mode
= S_IFLNK
;
729 buf
->st_mode
|= S_IREAD
;
730 if (!(findbuf
.dwFileAttributes
& FILE_ATTRIBUTE_READONLY
))
731 buf
->st_mode
|= S_IWRITE
;
738 switch (GetLastError()) {
739 case ERROR_ACCESS_DENIED
:
740 case ERROR_SHARING_VIOLATION
:
741 case ERROR_LOCK_VIOLATION
:
742 case ERROR_SHARING_BUFFER_EXCEEDED
:
745 case ERROR_BUFFER_OVERFLOW
:
746 errno
= ENAMETOOLONG
;
748 case ERROR_NOT_ENOUGH_MEMORY
:
751 case ERROR_PATH_NOT_FOUND
:
752 if (!has_valid_directory_prefix(wfilename
)) {
764 /* We provide our own lstat/fstat functions, since the provided
765 * lstat/fstat functions are so slow. These stat functions are
766 * tailored for Git's usage (read: fast), and are not meant to be
767 * complete. Note that Git stat()s are redirected to mingw_lstat()
768 * too, since Windows doesn't really handle symlinks that well.
770 static int do_stat_internal(int follow
, const char *file_name
, struct stat
*buf
)
773 char alt_name
[PATH_MAX
];
775 if (!do_lstat(follow
, file_name
, buf
))
778 /* if file_name ended in a '/', Windows returned ENOENT;
779 * try again without trailing slashes
784 namelen
= strlen(file_name
);
785 if (namelen
&& file_name
[namelen
-1] != '/')
787 while (namelen
&& file_name
[namelen
-1] == '/')
789 if (!namelen
|| namelen
>= PATH_MAX
)
792 memcpy(alt_name
, file_name
, namelen
);
793 alt_name
[namelen
] = 0;
794 return do_lstat(follow
, alt_name
, buf
);
797 static int get_file_info_by_handle(HANDLE hnd
, struct stat
*buf
)
799 BY_HANDLE_FILE_INFORMATION fdata
;
801 if (!GetFileInformationByHandle(hnd
, &fdata
)) {
802 errno
= err_win_to_posix(GetLastError());
810 buf
->st_mode
= file_attr_to_st_mode(fdata
.dwFileAttributes
);
811 buf
->st_size
= fdata
.nFileSizeLow
|
812 (((off_t
)fdata
.nFileSizeHigh
)<<32);
813 buf
->st_dev
= buf
->st_rdev
= 0; /* not used by Git */
814 filetime_to_timespec(&(fdata
.ftLastAccessTime
), &(buf
->st_atim
));
815 filetime_to_timespec(&(fdata
.ftLastWriteTime
), &(buf
->st_mtim
));
816 filetime_to_timespec(&(fdata
.ftCreationTime
), &(buf
->st_ctim
));
820 int mingw_lstat(const char *file_name
, struct stat
*buf
)
822 return do_stat_internal(0, file_name
, buf
);
824 int mingw_stat(const char *file_name
, struct stat
*buf
)
826 return do_stat_internal(1, file_name
, buf
);
829 int mingw_fstat(int fd
, struct stat
*buf
)
831 HANDLE fh
= (HANDLE
)_get_osfhandle(fd
);
832 DWORD avail
, type
= GetFileType(fh
) & ~FILE_TYPE_REMOTE
;
836 return get_file_info_by_handle(fh
, buf
);
840 /* initialize stat fields */
841 memset(buf
, 0, sizeof(*buf
));
844 if (type
== FILE_TYPE_CHAR
) {
845 buf
->st_mode
= _S_IFCHR
;
847 buf
->st_mode
= _S_IFIFO
;
848 if (PeekNamedPipe(fh
, NULL
, 0, NULL
, &avail
, NULL
))
849 buf
->st_size
= avail
;
859 static inline void time_t_to_filetime(time_t t
, FILETIME
*ft
)
861 long long winTime
= t
* 10000000LL + 116444736000000000LL;
862 ft
->dwLowDateTime
= winTime
;
863 ft
->dwHighDateTime
= winTime
>> 32;
866 int mingw_utime (const char *file_name
, const struct utimbuf
*times
)
871 wchar_t wfilename
[MAX_PATH
];
872 if (xutftowcs_path(wfilename
, file_name
) < 0)
875 /* must have write permission */
876 attrs
= GetFileAttributesW(wfilename
);
877 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
878 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
879 /* ignore errors here; open() will report them */
880 SetFileAttributesW(wfilename
, attrs
& ~FILE_ATTRIBUTE_READONLY
);
883 if ((fh
= _wopen(wfilename
, O_RDWR
| O_BINARY
)) < 0) {
889 time_t_to_filetime(times
->modtime
, &mft
);
890 time_t_to_filetime(times
->actime
, &aft
);
892 GetSystemTimeAsFileTime(&mft
);
895 if (!SetFileTime((HANDLE
)_get_osfhandle(fh
), NULL
, &aft
, &mft
)) {
903 if (attrs
!= INVALID_FILE_ATTRIBUTES
&&
904 (attrs
& FILE_ATTRIBUTE_READONLY
)) {
905 /* ignore errors again */
906 SetFileAttributesW(wfilename
, attrs
);
912 size_t mingw_strftime(char *s
, size_t max
,
913 const char *format
, const struct tm
*tm
)
915 size_t ret
= strftime(s
, max
, format
, tm
);
917 if (!ret
&& errno
== EINVAL
)
918 die("invalid strftime format: '%s'", format
);
922 unsigned int sleep (unsigned int seconds
)
928 char *mingw_mktemp(char *template)
930 wchar_t wtemplate
[MAX_PATH
];
931 if (xutftowcs_path(wtemplate
, template) < 0)
933 if (!_wmktemp(wtemplate
))
935 if (xwcstoutf(template, wtemplate
, strlen(template) + 1) < 0)
940 int mkstemp(char *template)
942 char *filename
= mktemp(template);
943 if (filename
== NULL
)
945 return open(filename
, O_RDWR
| O_CREAT
, 0600);
948 int gettimeofday(struct timeval
*tv
, void *tz
)
953 GetSystemTimeAsFileTime(&ft
);
954 hnsec
= filetime_to_hnsec(&ft
);
955 tv
->tv_sec
= hnsec
/ 10000000;
956 tv
->tv_usec
= (hnsec
% 10000000) / 10;
960 int pipe(int filedes
[2])
964 /* this creates non-inheritable handles */
965 if (!CreatePipe(&h
[0], &h
[1], NULL
, 8192)) {
966 errno
= err_win_to_posix(GetLastError());
969 filedes
[0] = _open_osfhandle(HCAST(int, h
[0]), O_NOINHERIT
);
970 if (filedes
[0] < 0) {
975 filedes
[1] = _open_osfhandle(HCAST(int, h
[1]), O_NOINHERIT
);
976 if (filedes
[1] < 0) {
984 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
986 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
987 memcpy(result
, gmtime(timep
), sizeof(struct tm
));
991 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
993 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
994 memcpy(result
, localtime(timep
), sizeof(struct tm
));
998 char *mingw_getcwd(char *pointer
, int len
)
1000 wchar_t cwd
[MAX_PATH
], wpointer
[MAX_PATH
];
1001 DWORD ret
= GetCurrentDirectoryW(ARRAY_SIZE(cwd
), cwd
);
1003 if (!ret
|| ret
>= ARRAY_SIZE(cwd
)) {
1004 errno
= ret
? ENAMETOOLONG
: err_win_to_posix(GetLastError());
1007 ret
= GetLongPathNameW(cwd
, wpointer
, ARRAY_SIZE(wpointer
));
1008 if (!ret
&& GetLastError() == ERROR_ACCESS_DENIED
) {
1009 HANDLE hnd
= CreateFileW(cwd
, 0,
1010 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
, NULL
,
1011 OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
1012 if (hnd
== INVALID_HANDLE_VALUE
)
1014 ret
= GetFinalPathNameByHandleW(hnd
, wpointer
, ARRAY_SIZE(wpointer
), 0);
1016 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1018 if (xwcstoutf(pointer
, normalize_ntpath(wpointer
), len
) < 0)
1022 if (!ret
|| ret
>= ARRAY_SIZE(wpointer
))
1024 if (xwcstoutf(pointer
, wpointer
, len
) < 0)
1026 convert_slashes(pointer
);
1031 * See "Parsing C++ Command-Line Arguments" at Microsoft's Docs:
1032 * https://docs.microsoft.com/en-us/cpp/cpp/parsing-cpp-command-line-arguments
1034 static const char *quote_arg(const char *arg
)
1036 /* count chars to quote */
1038 int force_quotes
= 0;
1040 const char *p
= arg
;
1041 if (!*p
) force_quotes
= 1;
1043 if (isspace(*p
) || *p
== '*' || *p
== '?' || *p
== '{' || *p
== '\'')
1047 else if (*p
== '\\') {
1049 while (*p
== '\\') {
1061 if (!force_quotes
&& n
== 0)
1064 /* insert \ where necessary */
1065 d
= q
= xmalloc(st_add3(len
, n
, 3));
1070 else if (*arg
== '\\') {
1072 while (*arg
== '\\') {
1089 static const char *parse_interpreter(const char *cmd
)
1091 static char buf
[100];
1095 /* don't even try a .exe */
1097 if (n
>= 4 && !strcasecmp(cmd
+n
-4, ".exe"))
1100 fd
= open(cmd
, O_RDONLY
);
1103 n
= read(fd
, buf
, sizeof(buf
)-1);
1105 if (n
< 4) /* at least '#!/x' and not error */
1108 if (buf
[0] != '#' || buf
[1] != '!')
1111 p
= buf
+ strcspn(buf
, "\r\n");
1116 if (!(p
= strrchr(buf
+2, '/')) && !(p
= strrchr(buf
+2, '\\')))
1119 if ((opt
= strchr(p
+1, ' ')))
1125 * exe_only means that we only want to detect .exe files, but not scripts
1126 * (which do not have an extension)
1128 static char *lookup_prog(const char *dir
, int dirlen
, const char *cmd
,
1129 int isexe
, int exe_only
)
1131 char path
[MAX_PATH
];
1132 snprintf(path
, sizeof(path
), "%.*s\\%s.exe", dirlen
, dir
, cmd
);
1134 if (!isexe
&& access(path
, F_OK
) == 0)
1135 return xstrdup(path
);
1136 path
[strlen(path
)-4] = '\0';
1137 if ((!exe_only
|| isexe
) && access(path
, F_OK
) == 0)
1138 if (!(GetFileAttributes(path
) & FILE_ATTRIBUTE_DIRECTORY
))
1139 return xstrdup(path
);
1144 * Determines the absolute path of cmd using the split path in path.
1145 * If cmd contains a slash or backslash, no lookup is performed.
1147 static char *path_lookup(const char *cmd
, int exe_only
)
1151 int len
= strlen(cmd
);
1152 int isexe
= len
>= 4 && !strcasecmp(cmd
+len
-4, ".exe");
1154 if (strchr(cmd
, '/') || strchr(cmd
, '\\'))
1155 return xstrdup(cmd
);
1157 path
= mingw_getenv("PATH");
1162 const char *sep
= strchrnul(path
, ';');
1163 int dirlen
= sep
- path
;
1165 prog
= lookup_prog(path
, dirlen
, cmd
, isexe
, exe_only
);
1174 static const wchar_t *wcschrnul(const wchar_t *s
, wchar_t c
)
1176 while (*s
&& *s
!= c
)
1181 /* Compare only keys */
1182 static int wenvcmp(const void *a
, const void *b
)
1184 wchar_t *p
= *(wchar_t **)a
, *q
= *(wchar_t **)b
;
1185 size_t p_len
, q_len
;
1188 p_len
= wcschrnul(p
, L
'=') - p
;
1189 q_len
= wcschrnul(q
, L
'=') - q
;
1191 /* If the length differs, include the shorter key's NUL */
1194 else if (p_len
> q_len
)
1197 return _wcsnicmp(p
, q
, p_len
);
1200 /* We need a stable sort to convert the environment between UTF-16 <-> UTF-8 */
1201 #ifndef INTERNAL_QSORT
1206 * Build an environment block combining the inherited environment
1207 * merged with the given list of settings.
1209 * Values of the form "KEY=VALUE" in deltaenv override inherited values.
1210 * Values of the form "KEY" in deltaenv delete inherited values.
1212 * Multiple entries in deltaenv for the same key are explicitly allowed.
1214 * We return a contiguous block of UNICODE strings with a final trailing
1217 static wchar_t *make_environment_block(char **deltaenv
)
1219 wchar_t *wenv
= GetEnvironmentStringsW(), *wdeltaenv
, *result
, *p
;
1220 size_t wlen
, s
, delta_size
, size
;
1222 wchar_t **array
= NULL
;
1223 size_t alloc
= 0, nr
= 0, i
;
1225 size
= 1; /* for extra NUL at the end */
1227 /* If there is no deltaenv to apply, simply return a copy. */
1228 if (!deltaenv
|| !*deltaenv
) {
1229 for (p
= wenv
; p
&& *p
; ) {
1230 size_t s
= wcslen(p
) + 1;
1235 ALLOC_ARRAY(result
, size
);
1236 memcpy(result
, wenv
, size
* sizeof(*wenv
));
1237 FreeEnvironmentStringsW(wenv
);
1242 * If there is a deltaenv, let's accumulate all keys into `array`,
1243 * sort them using the stable git_qsort() and then copy, skipping
1246 for (p
= wenv
; p
&& *p
; ) {
1247 ALLOC_GROW(array
, nr
+ 1, alloc
);
1254 /* (over-)assess size needed for wchar version of deltaenv */
1255 for (delta_size
= 0, i
= 0; deltaenv
[i
]; i
++)
1256 delta_size
+= strlen(deltaenv
[i
]) * 2 + 1;
1257 ALLOC_ARRAY(wdeltaenv
, delta_size
);
1259 /* convert the deltaenv, appending to array */
1260 for (i
= 0, p
= wdeltaenv
; deltaenv
[i
]; i
++) {
1261 ALLOC_GROW(array
, nr
+ 1, alloc
);
1262 wlen
= xutftowcs(p
, deltaenv
[i
], wdeltaenv
+ delta_size
- p
);
1267 git_qsort(array
, nr
, sizeof(*array
), wenvcmp
);
1268 ALLOC_ARRAY(result
, size
+ delta_size
);
1270 for (p
= result
, i
= 0; i
< nr
; i
++) {
1271 /* Skip any duplicate keys; last one wins */
1272 while (i
+ 1 < nr
&& !wenvcmp(array
+ i
, array
+ i
+ 1))
1275 /* Skip "to delete" entry */
1276 if (!wcschr(array
[i
], L
'='))
1279 size
= wcslen(array
[i
]) + 1;
1280 memcpy(p
, array
[i
], size
* sizeof(*p
));
1287 FreeEnvironmentStringsW(wenv
);
1291 static void do_unset_environment_variables(void)
1294 char *p
= unset_environment_variables
;
1301 char *comma
= strchr(p
, ',');
1313 struct pinfo_t
*next
;
1317 static struct pinfo_t
*pinfo
= NULL
;
1318 CRITICAL_SECTION pinfo_cs
;
1320 static pid_t
mingw_spawnve_fd(const char *cmd
, const char **argv
, char **deltaenv
,
1322 int prepend_cmd
, int fhin
, int fhout
, int fherr
)
1325 PROCESS_INFORMATION pi
;
1327 wchar_t wcmd
[MAX_PATH
], wdir
[MAX_PATH
], *wargs
, *wenvblk
= NULL
;
1328 unsigned flags
= CREATE_UNICODE_ENVIRONMENT
;
1332 do_unset_environment_variables();
1334 /* Determine whether or not we are associated to a console */
1335 cons
= CreateFile("CONOUT$", GENERIC_WRITE
,
1336 FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
1337 FILE_ATTRIBUTE_NORMAL
, NULL
);
1338 if (cons
== INVALID_HANDLE_VALUE
) {
1339 /* There is no console associated with this process.
1340 * Since the child is a console process, Windows
1341 * would normally create a console window. But
1342 * since we'll be redirecting std streams, we do
1343 * not need the console.
1344 * It is necessary to use DETACHED_PROCESS
1345 * instead of CREATE_NO_WINDOW to make ssh
1346 * recognize that it has no console.
1348 flags
|= DETACHED_PROCESS
;
1350 /* There is already a console. If we specified
1351 * DETACHED_PROCESS here, too, Windows would
1352 * disassociate the child from the console.
1353 * The same is true for CREATE_NO_WINDOW.
1358 memset(&si
, 0, sizeof(si
));
1360 si
.dwFlags
= STARTF_USESTDHANDLES
;
1361 si
.hStdInput
= winansi_get_osfhandle(fhin
);
1362 si
.hStdOutput
= winansi_get_osfhandle(fhout
);
1363 si
.hStdError
= winansi_get_osfhandle(fherr
);
1365 if (xutftowcs_path(wcmd
, cmd
) < 0)
1367 if (dir
&& xutftowcs_path(wdir
, dir
) < 0)
1370 /* concatenate argv, quoting args as we go */
1371 strbuf_init(&args
, 0);
1373 char *quoted
= (char *)quote_arg(cmd
);
1374 strbuf_addstr(&args
, quoted
);
1378 for (; *argv
; argv
++) {
1379 char *quoted
= (char *)quote_arg(*argv
);
1381 strbuf_addch(&args
, ' ');
1382 strbuf_addstr(&args
, quoted
);
1383 if (quoted
!= *argv
)
1387 ALLOC_ARRAY(wargs
, st_add(st_mult(2, args
.len
), 1));
1388 xutftowcs(wargs
, args
.buf
, 2 * args
.len
+ 1);
1389 strbuf_release(&args
);
1391 wenvblk
= make_environment_block(deltaenv
);
1393 memset(&pi
, 0, sizeof(pi
));
1394 ret
= CreateProcessW(wcmd
, wargs
, NULL
, NULL
, TRUE
, flags
,
1395 wenvblk
, dir
? wdir
: NULL
, &si
, &pi
);
1404 CloseHandle(pi
.hThread
);
1407 * The process ID is the human-readable identifier of the process
1408 * that we want to present in log and error messages. The handle
1409 * is not useful for this purpose. But we cannot close it, either,
1410 * because it is not possible to turn a process ID into a process
1411 * handle after the process terminated.
1412 * Keep the handle in a list for waitpid.
1414 EnterCriticalSection(&pinfo_cs
);
1416 struct pinfo_t
*info
= xmalloc(sizeof(struct pinfo_t
));
1417 info
->pid
= pi
.dwProcessId
;
1418 info
->proc
= pi
.hProcess
;
1422 LeaveCriticalSection(&pinfo_cs
);
1424 return (pid_t
)pi
.dwProcessId
;
1427 static pid_t
mingw_spawnv(const char *cmd
, const char **argv
, int prepend_cmd
)
1429 return mingw_spawnve_fd(cmd
, argv
, NULL
, NULL
, prepend_cmd
, 0, 1, 2);
1432 pid_t
mingw_spawnvpe(const char *cmd
, const char **argv
, char **deltaenv
,
1434 int fhin
, int fhout
, int fherr
)
1437 char *prog
= path_lookup(cmd
, 0);
1444 const char *interpr
= parse_interpreter(prog
);
1447 const char *argv0
= argv
[0];
1448 char *iprog
= path_lookup(interpr
, 1);
1455 pid
= mingw_spawnve_fd(iprog
, argv
, deltaenv
, dir
, 1,
1456 fhin
, fhout
, fherr
);
1462 pid
= mingw_spawnve_fd(prog
, argv
, deltaenv
, dir
, 0,
1463 fhin
, fhout
, fherr
);
1469 static int try_shell_exec(const char *cmd
, char *const *argv
)
1471 const char *interpr
= parse_interpreter(cmd
);
1477 prog
= path_lookup(interpr
, 1);
1481 while (argv
[argc
]) argc
++;
1482 ALLOC_ARRAY(argv2
, argc
+ 1);
1483 argv2
[0] = (char *)cmd
; /* full path to the script file */
1484 memcpy(&argv2
[1], &argv
[1], sizeof(*argv
) * argc
);
1485 pid
= mingw_spawnv(prog
, argv2
, 1);
1488 if (waitpid(pid
, &status
, 0) < 0)
1492 pid
= 1; /* indicate that we tried but failed */
1499 int mingw_execv(const char *cmd
, char *const *argv
)
1501 /* check if git_command is a shell script */
1502 if (!try_shell_exec(cmd
, argv
)) {
1505 pid
= mingw_spawnv(cmd
, (const char **)argv
, 0);
1508 if (waitpid(pid
, &status
, 0) < 0)
1515 int mingw_execvp(const char *cmd
, char *const *argv
)
1517 char *prog
= path_lookup(cmd
, 0);
1520 mingw_execv(prog
, argv
);
1528 int mingw_kill(pid_t pid
, int sig
)
1530 if (pid
> 0 && sig
== SIGTERM
) {
1531 HANDLE h
= OpenProcess(PROCESS_TERMINATE
, FALSE
, pid
);
1533 if (TerminateProcess(h
, -1)) {
1538 errno
= err_win_to_posix(GetLastError());
1541 } else if (pid
> 0 && sig
== 0) {
1542 HANDLE h
= OpenProcess(PROCESS_QUERY_INFORMATION
, FALSE
, pid
);
1554 * UTF-8 versions of getenv(), putenv() and unsetenv().
1555 * Internally, they use the CRT's stock UNICODE routines
1556 * to avoid data loss.
1558 char *mingw_getenv(const char *name
)
1560 #define GETENV_MAX_RETAIN 30
1561 static char *values
[GETENV_MAX_RETAIN
];
1562 static int value_counter
;
1563 int len_key
, len_value
;
1566 wchar_t w_value
[32768];
1568 if (!name
|| !*name
)
1571 len_key
= strlen(name
) + 1;
1572 /* We cannot use xcalloc() here because that uses getenv() itself */
1573 w_key
= calloc(len_key
, sizeof(wchar_t));
1575 die("Out of memory, (tried to allocate %u wchar_t's)", len_key
);
1576 xutftowcs(w_key
, name
, len_key
);
1577 len_value
= GetEnvironmentVariableW(w_key
, w_value
, ARRAY_SIZE(w_value
));
1578 if (!len_value
&& GetLastError() == ERROR_ENVVAR_NOT_FOUND
) {
1584 len_value
= len_value
* 3 + 1;
1585 /* We cannot use xcalloc() here because that uses getenv() itself */
1586 value
= calloc(len_value
, sizeof(char));
1588 die("Out of memory, (tried to allocate %u bytes)", len_value
);
1589 xwcstoutf(value
, w_value
, len_value
);
1592 * We return `value` which is an allocated value and the caller is NOT
1593 * expecting to have to free it, so we keep a round-robin array,
1594 * invalidating the buffer after GETENV_MAX_RETAIN getenv() calls.
1596 free(values
[value_counter
]);
1597 values
[value_counter
++] = value
;
1598 if (value_counter
>= ARRAY_SIZE(values
))
1604 int mingw_putenv(const char *namevalue
)
1607 wchar_t *wide
, *equal
;
1610 if (!namevalue
|| !*namevalue
)
1613 size
= strlen(namevalue
) * 2 + 1;
1614 wide
= calloc(size
, sizeof(wchar_t));
1616 die("Out of memory, (tried to allocate %u wchar_t's)", size
);
1617 xutftowcs(wide
, namevalue
, size
);
1618 equal
= wcschr(wide
, L
'=');
1620 result
= SetEnvironmentVariableW(wide
, NULL
);
1623 result
= SetEnvironmentVariableW(wide
, equal
+ 1);
1628 errno
= err_win_to_posix(GetLastError());
1630 return result
? 0 : -1;
1634 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1635 * that service contains a numerical port, or that it is null. It
1636 * does a simple search using gethostbyname, and returns one IPv4 host
1639 static int WSAAPI
getaddrinfo_stub(const char *node
, const char *service
,
1640 const struct addrinfo
*hints
,
1641 struct addrinfo
**res
)
1643 struct hostent
*h
= NULL
;
1644 struct addrinfo
*ai
;
1645 struct sockaddr_in
*sin
;
1648 h
= gethostbyname(node
);
1650 return WSAGetLastError();
1653 ai
= xmalloc(sizeof(struct addrinfo
));
1656 ai
->ai_family
= AF_INET
;
1657 ai
->ai_socktype
= hints
? hints
->ai_socktype
: 0;
1658 switch (ai
->ai_socktype
) {
1660 ai
->ai_protocol
= IPPROTO_TCP
;
1663 ai
->ai_protocol
= IPPROTO_UDP
;
1666 ai
->ai_protocol
= 0;
1669 ai
->ai_addrlen
= sizeof(struct sockaddr_in
);
1670 if (hints
&& (hints
->ai_flags
& AI_CANONNAME
))
1671 ai
->ai_canonname
= h
? xstrdup(h
->h_name
) : NULL
;
1673 ai
->ai_canonname
= NULL
;
1675 sin
= xcalloc(1, ai
->ai_addrlen
);
1676 sin
->sin_family
= AF_INET
;
1677 /* Note: getaddrinfo is supposed to allow service to be a string,
1678 * which should be looked up using getservbyname. This is
1679 * currently not implemented */
1681 sin
->sin_port
= htons(atoi(service
));
1683 sin
->sin_addr
= *(struct in_addr
*)h
->h_addr
;
1684 else if (hints
&& (hints
->ai_flags
& AI_PASSIVE
))
1685 sin
->sin_addr
.s_addr
= INADDR_ANY
;
1687 sin
->sin_addr
.s_addr
= INADDR_LOOPBACK
;
1688 ai
->ai_addr
= (struct sockaddr
*)sin
;
1693 static void WSAAPI
freeaddrinfo_stub(struct addrinfo
*res
)
1695 free(res
->ai_canonname
);
1700 static int WSAAPI
getnameinfo_stub(const struct sockaddr
*sa
, socklen_t salen
,
1701 char *host
, DWORD hostlen
,
1702 char *serv
, DWORD servlen
, int flags
)
1704 const struct sockaddr_in
*sin
= (const struct sockaddr_in
*)sa
;
1705 if (sa
->sa_family
!= AF_INET
)
1710 if (host
&& hostlen
> 0) {
1711 struct hostent
*ent
= NULL
;
1712 if (!(flags
& NI_NUMERICHOST
))
1713 ent
= gethostbyaddr((const char *)&sin
->sin_addr
,
1714 sizeof(sin
->sin_addr
), AF_INET
);
1717 snprintf(host
, hostlen
, "%s", ent
->h_name
);
1718 else if (flags
& NI_NAMEREQD
)
1721 snprintf(host
, hostlen
, "%s", inet_ntoa(sin
->sin_addr
));
1724 if (serv
&& servlen
> 0) {
1725 struct servent
*ent
= NULL
;
1726 if (!(flags
& NI_NUMERICSERV
))
1727 ent
= getservbyport(sin
->sin_port
,
1728 flags
& NI_DGRAM
? "udp" : "tcp");
1731 snprintf(serv
, servlen
, "%s", ent
->s_name
);
1733 snprintf(serv
, servlen
, "%d", ntohs(sin
->sin_port
));
1739 static HMODULE ipv6_dll
= NULL
;
1740 static void (WSAAPI
*ipv6_freeaddrinfo
)(struct addrinfo
*res
);
1741 static int (WSAAPI
*ipv6_getaddrinfo
)(const char *node
, const char *service
,
1742 const struct addrinfo
*hints
,
1743 struct addrinfo
**res
);
1744 static int (WSAAPI
*ipv6_getnameinfo
)(const struct sockaddr
*sa
, socklen_t salen
,
1745 char *host
, DWORD hostlen
,
1746 char *serv
, DWORD servlen
, int flags
);
1748 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1749 * don't need to try to load that one dynamically.
1752 static void socket_cleanup(void)
1756 FreeLibrary(ipv6_dll
);
1758 ipv6_freeaddrinfo
= freeaddrinfo_stub
;
1759 ipv6_getaddrinfo
= getaddrinfo_stub
;
1760 ipv6_getnameinfo
= getnameinfo_stub
;
1763 static void ensure_socket_initialization(void)
1766 static int initialized
= 0;
1767 const char *libraries
[] = { "ws2_32.dll", "wship6.dll", NULL
};
1773 if (WSAStartup(MAKEWORD(2,2), &wsa
))
1774 die("unable to initialize winsock subsystem, error %d",
1777 for (name
= libraries
; *name
; name
++) {
1778 ipv6_dll
= LoadLibraryExA(*name
, NULL
,
1779 LOAD_LIBRARY_SEARCH_SYSTEM32
);
1783 ipv6_freeaddrinfo
= (void (WSAAPI
*)(struct addrinfo
*))
1784 GetProcAddress(ipv6_dll
, "freeaddrinfo");
1785 ipv6_getaddrinfo
= (int (WSAAPI
*)(const char *, const char *,
1786 const struct addrinfo
*,
1787 struct addrinfo
**))
1788 GetProcAddress(ipv6_dll
, "getaddrinfo");
1789 ipv6_getnameinfo
= (int (WSAAPI
*)(const struct sockaddr
*,
1790 socklen_t
, char *, DWORD
,
1791 char *, DWORD
, int))
1792 GetProcAddress(ipv6_dll
, "getnameinfo");
1793 if (!ipv6_freeaddrinfo
|| !ipv6_getaddrinfo
|| !ipv6_getnameinfo
) {
1794 FreeLibrary(ipv6_dll
);
1799 if (!ipv6_freeaddrinfo
|| !ipv6_getaddrinfo
|| !ipv6_getnameinfo
) {
1800 ipv6_freeaddrinfo
= freeaddrinfo_stub
;
1801 ipv6_getaddrinfo
= getaddrinfo_stub
;
1802 ipv6_getnameinfo
= getnameinfo_stub
;
1805 atexit(socket_cleanup
);
1810 int mingw_gethostname(char *name
, int namelen
)
1812 ensure_socket_initialization();
1813 return gethostname(name
, namelen
);
1816 #undef gethostbyname
1817 struct hostent
*mingw_gethostbyname(const char *host
)
1819 ensure_socket_initialization();
1820 return gethostbyname(host
);
1823 void mingw_freeaddrinfo(struct addrinfo
*res
)
1825 ipv6_freeaddrinfo(res
);
1828 int mingw_getaddrinfo(const char *node
, const char *service
,
1829 const struct addrinfo
*hints
, struct addrinfo
**res
)
1831 ensure_socket_initialization();
1832 return ipv6_getaddrinfo(node
, service
, hints
, res
);
1835 int mingw_getnameinfo(const struct sockaddr
*sa
, socklen_t salen
,
1836 char *host
, DWORD hostlen
, char *serv
, DWORD servlen
,
1839 ensure_socket_initialization();
1840 return ipv6_getnameinfo(sa
, salen
, host
, hostlen
, serv
, servlen
, flags
);
1843 int mingw_socket(int domain
, int type
, int protocol
)
1848 ensure_socket_initialization();
1849 s
= WSASocket(domain
, type
, protocol
, NULL
, 0, 0);
1850 if (s
== INVALID_SOCKET
) {
1852 * WSAGetLastError() values are regular BSD error codes
1853 * biased by WSABASEERR.
1854 * However, strerror() does not know about networking
1855 * specific errors, which are values beginning at 38 or so.
1856 * Therefore, we choose to leave the biased error code
1857 * in errno so that _if_ someone looks up the code somewhere,
1858 * then it is at least the number that are usually listed.
1860 errno
= WSAGetLastError();
1863 /* convert into a file descriptor */
1864 if ((sockfd
= _open_osfhandle(s
, O_RDWR
|O_BINARY
)) < 0) {
1866 return error("unable to make a socket file descriptor: %s",
1873 int mingw_connect(int sockfd
, struct sockaddr
*sa
, size_t sz
)
1875 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
1876 return connect(s
, sa
, sz
);
1880 int mingw_bind(int sockfd
, struct sockaddr
*sa
, size_t sz
)
1882 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
1883 return bind(s
, sa
, sz
);
1887 int mingw_setsockopt(int sockfd
, int lvl
, int optname
, void *optval
, int optlen
)
1889 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
1890 return setsockopt(s
, lvl
, optname
, (const char*)optval
, optlen
);
1894 int mingw_shutdown(int sockfd
, int how
)
1896 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
1897 return shutdown(s
, how
);
1901 int mingw_listen(int sockfd
, int backlog
)
1903 SOCKET s
= (SOCKET
)_get_osfhandle(sockfd
);
1904 return listen(s
, backlog
);
1908 int mingw_accept(int sockfd1
, struct sockaddr
*sa
, socklen_t
*sz
)
1912 SOCKET s1
= (SOCKET
)_get_osfhandle(sockfd1
);
1913 SOCKET s2
= accept(s1
, sa
, sz
);
1915 /* convert into a file descriptor */
1916 if ((sockfd2
= _open_osfhandle(s2
, O_RDWR
|O_BINARY
)) < 0) {
1919 return error("unable to make a socket file descriptor: %s",
1926 int mingw_rename(const char *pold
, const char *pnew
)
1930 wchar_t wpold
[MAX_PATH
], wpnew
[MAX_PATH
];
1931 if (xutftowcs_path(wpold
, pold
) < 0 || xutftowcs_path(wpnew
, pnew
) < 0)
1935 * Try native rename() first to get errno right.
1936 * It is based on MoveFile(), which cannot overwrite existing files.
1938 if (!_wrename(wpold
, wpnew
))
1940 if (errno
!= EEXIST
)
1943 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
1945 /* TODO: translate more errors */
1946 gle
= GetLastError();
1947 if (gle
== ERROR_ACCESS_DENIED
&&
1948 (attrs
= GetFileAttributesW(wpnew
)) != INVALID_FILE_ATTRIBUTES
) {
1949 if (attrs
& FILE_ATTRIBUTE_DIRECTORY
) {
1950 DWORD attrsold
= GetFileAttributesW(wpold
);
1951 if (attrsold
== INVALID_FILE_ATTRIBUTES
||
1952 !(attrsold
& FILE_ATTRIBUTE_DIRECTORY
))
1954 else if (!_wrmdir(wpnew
))
1958 if ((attrs
& FILE_ATTRIBUTE_READONLY
) &&
1959 SetFileAttributesW(wpnew
, attrs
& ~FILE_ATTRIBUTE_READONLY
)) {
1960 if (MoveFileExW(wpold
, wpnew
, MOVEFILE_REPLACE_EXISTING
))
1962 gle
= GetLastError();
1963 /* revert file attributes on failure */
1964 SetFileAttributesW(wpnew
, attrs
);
1967 if (tries
< ARRAY_SIZE(delay
) && gle
== ERROR_ACCESS_DENIED
) {
1969 * We assume that some other process had the source or
1970 * destination file open at the wrong moment and retry.
1971 * In order to give the other process a higher chance to
1972 * complete its operation, we give up our time slice now.
1973 * If we have to retry again, we do sleep a bit.
1975 Sleep(delay
[tries
]);
1979 if (gle
== ERROR_ACCESS_DENIED
&&
1980 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
1981 "Should I try again?", pold
, pnew
))
1989 * Note that this doesn't return the actual pagesize, but
1990 * the allocation granularity. If future Windows specific git code
1991 * needs the real getpagesize function, we need to find another solution.
1993 int mingw_getpagesize(void)
1997 return si
.dwAllocationGranularity
;
2000 /* See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724435.aspx */
2001 enum EXTENDED_NAME_FORMAT
{
2003 NameUserPrincipal
= 8
2006 static char *get_extended_user_info(enum EXTENDED_NAME_FORMAT type
)
2008 DECLARE_PROC_ADDR(secur32
.dll
, BOOL
, GetUserNameExW
,
2009 enum EXTENDED_NAME_FORMAT
, LPCWSTR
, PULONG
);
2010 static wchar_t wbuffer
[1024];
2013 if (!INIT_PROC_ADDR(GetUserNameExW
))
2016 len
= ARRAY_SIZE(wbuffer
);
2017 if (GetUserNameExW(type
, wbuffer
, &len
)) {
2018 char *converted
= xmalloc((len
*= 3));
2019 if (xwcstoutf(converted
, wbuffer
, len
) >= 0)
2027 char *mingw_query_user_email(void)
2029 return get_extended_user_info(NameUserPrincipal
);
2032 struct passwd
*getpwuid(int uid
)
2034 static unsigned initialized
;
2035 static char user_name
[100];
2036 static struct passwd
*p
;
2042 len
= sizeof(user_name
);
2043 if (!GetUserName(user_name
, &len
)) {
2048 p
= xmalloc(sizeof(*p
));
2049 p
->pw_name
= user_name
;
2050 p
->pw_gecos
= get_extended_user_info(NameDisplay
);
2052 p
->pw_gecos
= "unknown";
2059 static HANDLE timer_event
;
2060 static HANDLE timer_thread
;
2061 static int timer_interval
;
2062 static int one_shot
;
2063 static sig_handler_t timer_fn
= SIG_DFL
, sigint_fn
= SIG_DFL
;
2065 /* The timer works like this:
2066 * The thread, ticktack(), is a trivial routine that most of the time
2067 * only waits to receive the signal to terminate. The main thread tells
2068 * the thread to terminate by setting the timer_event to the signalled
2070 * But ticktack() interrupts the wait state after the timer's interval
2071 * length to call the signal handler.
2074 static unsigned __stdcall
ticktack(void *dummy
)
2076 while (WaitForSingleObject(timer_event
, timer_interval
) == WAIT_TIMEOUT
) {
2077 mingw_raise(SIGALRM
);
2084 static int start_timer_thread(void)
2086 timer_event
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
2088 timer_thread
= (HANDLE
) _beginthreadex(NULL
, 0, ticktack
, NULL
, 0, NULL
);
2090 return errno
= ENOMEM
,
2091 error("cannot start timer thread");
2093 return errno
= ENOMEM
,
2094 error("cannot allocate resources for timer");
2098 static void stop_timer_thread(void)
2101 SetEvent(timer_event
); /* tell thread to terminate */
2103 int rc
= WaitForSingleObject(timer_thread
, 1000);
2104 if (rc
== WAIT_TIMEOUT
)
2105 error("timer thread did not terminate timely");
2106 else if (rc
!= WAIT_OBJECT_0
)
2107 error("waiting for timer thread failed: %lu",
2109 CloseHandle(timer_thread
);
2112 CloseHandle(timer_event
);
2114 timer_thread
= NULL
;
2117 static inline int is_timeval_eq(const struct timeval
*i1
, const struct timeval
*i2
)
2119 return i1
->tv_sec
== i2
->tv_sec
&& i1
->tv_usec
== i2
->tv_usec
;
2122 int setitimer(int type
, struct itimerval
*in
, struct itimerval
*out
)
2124 static const struct timeval zero
;
2125 static int atexit_done
;
2128 return errno
= EINVAL
,
2129 error("setitimer param 3 != NULL not implemented");
2130 if (!is_timeval_eq(&in
->it_interval
, &zero
) &&
2131 !is_timeval_eq(&in
->it_interval
, &in
->it_value
))
2132 return errno
= EINVAL
,
2133 error("setitimer: it_interval must be zero or eq it_value");
2136 stop_timer_thread();
2138 if (is_timeval_eq(&in
->it_value
, &zero
) &&
2139 is_timeval_eq(&in
->it_interval
, &zero
))
2142 timer_interval
= in
->it_value
.tv_sec
* 1000 + in
->it_value
.tv_usec
/ 1000;
2143 one_shot
= is_timeval_eq(&in
->it_interval
, &zero
);
2145 atexit(stop_timer_thread
);
2148 return start_timer_thread();
2151 int sigaction(int sig
, struct sigaction
*in
, struct sigaction
*out
)
2154 return errno
= EINVAL
,
2155 error("sigaction only implemented for SIGALRM");
2157 return errno
= EINVAL
,
2158 error("sigaction: param 3 != NULL not implemented");
2160 timer_fn
= in
->sa_handler
;
2165 sig_handler_t
mingw_signal(int sig
, sig_handler_t handler
)
2177 sigint_fn
= handler
;
2181 return signal(sig
, handler
);
2188 int mingw_raise(int sig
)
2192 if (timer_fn
== SIG_DFL
) {
2193 if (isatty(STDERR_FILENO
))
2194 fputs("Alarm clock\n", stderr
);
2195 exit(128 + SIGALRM
);
2196 } else if (timer_fn
!= SIG_IGN
)
2201 if (sigint_fn
== SIG_DFL
)
2203 else if (sigint_fn
!= SIG_IGN
)
2212 int link(const char *oldpath
, const char *newpath
)
2214 wchar_t woldpath
[MAX_PATH
], wnewpath
[MAX_PATH
];
2215 if (xutftowcs_path(woldpath
, oldpath
) < 0 ||
2216 xutftowcs_path(wnewpath
, newpath
) < 0)
2219 if (!CreateHardLinkW(wnewpath
, woldpath
, NULL
)) {
2220 errno
= err_win_to_posix(GetLastError());
2226 pid_t
waitpid(pid_t pid
, int *status
, int options
)
2228 HANDLE h
= OpenProcess(SYNCHRONIZE
| PROCESS_QUERY_INFORMATION
,
2235 if (pid
> 0 && options
& WNOHANG
) {
2236 if (WAIT_OBJECT_0
!= WaitForSingleObject(h
, 0)) {
2240 options
&= ~WNOHANG
;
2244 struct pinfo_t
**ppinfo
;
2245 if (WaitForSingleObject(h
, INFINITE
) != WAIT_OBJECT_0
) {
2251 GetExitCodeProcess(h
, (LPDWORD
)status
);
2253 EnterCriticalSection(&pinfo_cs
);
2257 struct pinfo_t
*info
= *ppinfo
;
2258 if (info
->pid
== pid
) {
2259 CloseHandle(info
->proc
);
2260 *ppinfo
= info
->next
;
2264 ppinfo
= &info
->next
;
2267 LeaveCriticalSection(&pinfo_cs
);
2278 int xutftowcsn(wchar_t *wcs
, const char *utfs
, size_t wcslen
, int utflen
)
2280 int upos
= 0, wpos
= 0;
2281 const unsigned char *utf
= (const unsigned char*) utfs
;
2282 if (!utf
|| !wcs
|| wcslen
< 1) {
2286 /* reserve space for \0 */
2291 while (upos
< utflen
) {
2292 int c
= utf
[upos
++] & 0xff;
2293 if (utflen
== INT_MAX
&& c
== 0)
2296 if (wpos
>= wcslen
) {
2305 } else if (c
>= 0xc2 && c
< 0xe0 && upos
< utflen
&&
2306 (utf
[upos
] & 0xc0) == 0x80) {
2308 c
= ((c
& 0x1f) << 6);
2309 c
|= (utf
[upos
++] & 0x3f);
2311 } else if (c
>= 0xe0 && c
< 0xf0 && upos
+ 1 < utflen
&&
2312 !(c
== 0xe0 && utf
[upos
] < 0xa0) && /* over-long encoding */
2313 (utf
[upos
] & 0xc0) == 0x80 &&
2314 (utf
[upos
+ 1] & 0xc0) == 0x80) {
2316 c
= ((c
& 0x0f) << 12);
2317 c
|= ((utf
[upos
++] & 0x3f) << 6);
2318 c
|= (utf
[upos
++] & 0x3f);
2320 } else if (c
>= 0xf0 && c
< 0xf5 && upos
+ 2 < utflen
&&
2321 wpos
+ 1 < wcslen
&&
2322 !(c
== 0xf0 && utf
[upos
] < 0x90) && /* over-long encoding */
2323 !(c
== 0xf4 && utf
[upos
] >= 0x90) && /* > \u10ffff */
2324 (utf
[upos
] & 0xc0) == 0x80 &&
2325 (utf
[upos
+ 1] & 0xc0) == 0x80 &&
2326 (utf
[upos
+ 2] & 0xc0) == 0x80) {
2327 /* 4-byte utf-8: convert to \ud8xx \udcxx surrogate pair */
2328 c
= ((c
& 0x07) << 18);
2329 c
|= ((utf
[upos
++] & 0x3f) << 12);
2330 c
|= ((utf
[upos
++] & 0x3f) << 6);
2331 c
|= (utf
[upos
++] & 0x3f);
2333 wcs
[wpos
++] = 0xd800 | (c
>> 10);
2334 wcs
[wpos
++] = 0xdc00 | (c
& 0x3ff);
2335 } else if (c
>= 0xa0) {
2336 /* invalid utf-8 byte, printable unicode char: convert 1:1 */
2339 /* invalid utf-8 byte, non-printable unicode: convert to hex */
2340 static const char *hex
= "0123456789abcdef";
2341 wcs
[wpos
++] = hex
[c
>> 4];
2343 wcs
[wpos
++] = hex
[c
& 0x0f];
2350 int xwcstoutf(char *utf
, const wchar_t *wcs
, size_t utflen
)
2352 if (!wcs
|| !utf
|| utflen
< 1) {
2356 utflen
= WideCharToMultiByte(CP_UTF8
, 0, wcs
, -1, utf
, utflen
, NULL
, NULL
);
2363 static void setup_windows_environment(void)
2365 char *tmp
= getenv("TMPDIR");
2367 /* on Windows it is TMP and TEMP */
2369 if (!(tmp
= getenv("TMP")))
2370 tmp
= getenv("TEMP");
2372 setenv("TMPDIR", tmp
, 1);
2373 tmp
= getenv("TMPDIR");
2379 * Convert all dir separators to forward slashes,
2380 * to help shell commands called from the Git
2381 * executable (by not mistaking the dir separators
2382 * for escape characters).
2384 convert_slashes(tmp
);
2387 /* simulate TERM to enable auto-color (see color.c) */
2388 if (!getenv("TERM"))
2389 setenv("TERM", "cygwin", 1);
2393 * Disable MSVCRT command line wildcard expansion (__getmainargs called from
2394 * mingw startup code, see init.c in mingw runtime).
2402 extern int __wgetmainargs(int *argc
, wchar_t ***argv
, wchar_t ***env
, int glob
,
2405 static NORETURN
void die_startup(void)
2407 fputs("fatal: not enough memory for initialization", stderr
);
2411 static void *malloc_startup(size_t size
)
2413 void *result
= malloc(size
);
2419 static char *wcstoutfdup_startup(char *buffer
, const wchar_t *wcs
, size_t len
)
2421 len
= xwcstoutf(buffer
, wcs
, len
) + 1;
2422 return memcpy(malloc_startup(len
), buffer
, len
);
2425 static void maybe_redirect_std_handle(const wchar_t *key
, DWORD std_id
, int fd
,
2426 DWORD desired_access
, DWORD flags
)
2428 DWORD create_flag
= fd
? OPEN_ALWAYS
: OPEN_EXISTING
;
2429 wchar_t buf
[MAX_PATH
];
2430 DWORD max
= ARRAY_SIZE(buf
);
2432 DWORD ret
= GetEnvironmentVariableW(key
, buf
, max
);
2434 if (!ret
|| ret
>= max
)
2437 /* make sure this does not leak into child processes */
2438 SetEnvironmentVariableW(key
, NULL
);
2439 if (!wcscmp(buf
, L
"off")) {
2441 handle
= GetStdHandle(std_id
);
2442 if (handle
!= INVALID_HANDLE_VALUE
)
2443 CloseHandle(handle
);
2446 if (std_id
== STD_ERROR_HANDLE
&& !wcscmp(buf
, L
"2>&1")) {
2447 handle
= GetStdHandle(STD_OUTPUT_HANDLE
);
2448 if (handle
== INVALID_HANDLE_VALUE
) {
2450 handle
= GetStdHandle(std_id
);
2451 if (handle
!= INVALID_HANDLE_VALUE
)
2452 CloseHandle(handle
);
2454 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
2455 SetStdHandle(std_id
, handle
);
2457 /* do *not* close the new_fd: that would close stdout */
2461 handle
= CreateFileW(buf
, desired_access
, 0, NULL
, create_flag
,
2463 if (handle
!= INVALID_HANDLE_VALUE
) {
2464 int new_fd
= _open_osfhandle((intptr_t)handle
, O_BINARY
);
2465 SetStdHandle(std_id
, handle
);
2471 static void maybe_redirect_std_handles(void)
2473 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDIN", STD_INPUT_HANDLE
, 0,
2474 GENERIC_READ
, FILE_ATTRIBUTE_NORMAL
);
2475 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDOUT", STD_OUTPUT_HANDLE
, 1,
2476 GENERIC_WRITE
, FILE_ATTRIBUTE_NORMAL
);
2477 maybe_redirect_std_handle(L
"GIT_REDIRECT_STDERR", STD_ERROR_HANDLE
, 2,
2478 GENERIC_WRITE
, FILE_FLAG_NO_BUFFERING
);
2481 void mingw_startup(void)
2483 int i
, maxlen
, argc
;
2485 wchar_t **wenv
, **wargv
;
2488 maybe_redirect_std_handles();
2490 /* get wide char arguments and environment */
2492 if (__wgetmainargs(&argc
, &wargv
, &wenv
, _CRT_glob
, &si
) < 0)
2495 /* determine size of argv and environ conversion buffer */
2496 maxlen
= wcslen(wargv
[0]);
2497 for (i
= 1; i
< argc
; i
++)
2498 maxlen
= max(maxlen
, wcslen(wargv
[i
]));
2500 /* allocate buffer (wchar_t encodes to max 3 UTF-8 bytes) */
2501 maxlen
= 3 * maxlen
+ 1;
2502 buffer
= malloc_startup(maxlen
);
2504 /* convert command line arguments and environment to UTF-8 */
2505 for (i
= 0; i
< argc
; i
++)
2506 __argv
[i
] = wcstoutfdup_startup(buffer
, wargv
[i
], maxlen
);
2509 /* fix Windows specific environment settings */
2510 setup_windows_environment();
2512 unset_environment_variables
= xstrdup("PERL5LIB");
2514 /* initialize critical section for waitpid pinfo_t list */
2515 InitializeCriticalSection(&pinfo_cs
);
2517 /* set up default file mode and file modes for stdin/out/err */
2519 _setmode(_fileno(stdin
), _O_BINARY
);
2520 _setmode(_fileno(stdout
), _O_BINARY
);
2521 _setmode(_fileno(stderr
), _O_BINARY
);
2523 /* initialize Unicode console */
2527 int uname(struct utsname
*buf
)
2529 unsigned v
= (unsigned)GetVersion();
2530 memset(buf
, 0, sizeof(*buf
));
2531 xsnprintf(buf
->sysname
, sizeof(buf
->sysname
), "Windows");
2532 xsnprintf(buf
->release
, sizeof(buf
->release
),
2533 "%u.%u", v
& 0xff, (v
>> 8) & 0xff);
2534 /* assuming NT variants only.. */
2535 xsnprintf(buf
->version
, sizeof(buf
->version
),
2536 "%u", (v
>> 16) & 0x7fff);