]> git.ipfire.org Git - thirdparty/git.git/blob - compat/mingw.c
2c09c5bffee006f8904c2aa0f9ee9eb60841bfaf
[thirdparty/git.git] / compat / mingw.c
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <aclapi.h>
4 #include <sddl.h>
5 #include <conio.h>
6 #include <wchar.h>
7 #include "../strbuf.h"
8 #include "../run-command.h"
9 #include "../cache.h"
10 #include "win32/lazyload.h"
11 #include "../config.h"
12 #include "dir.h"
13 #define SECURITY_WIN32
14 #include <sspi.h>
15
16 #define HCAST(type, handle) ((type)(intptr_t)handle)
17
18 static const int delay[] = { 0, 1, 10, 20, 40 };
19
20 void open_in_gdb(void)
21 {
22 static struct child_process cp = CHILD_PROCESS_INIT;
23 extern char *_pgmptr;
24
25 strvec_pushl(&cp.args, "mintty", "gdb", NULL);
26 strvec_pushf(&cp.args, "--pid=%d", getpid());
27 cp.clean_on_exit = 1;
28 if (start_command(&cp) < 0)
29 die_errno("Could not start gdb");
30 sleep(1);
31 }
32
33 int err_win_to_posix(DWORD winerr)
34 {
35 int error = ENOSYS;
36 switch(winerr) {
37 case ERROR_ACCESS_DENIED: error = EACCES; break;
38 case ERROR_ACCOUNT_DISABLED: error = EACCES; break;
39 case ERROR_ACCOUNT_RESTRICTION: error = EACCES; break;
40 case ERROR_ALREADY_ASSIGNED: error = EBUSY; break;
41 case ERROR_ALREADY_EXISTS: error = EEXIST; break;
42 case ERROR_ARITHMETIC_OVERFLOW: error = ERANGE; break;
43 case ERROR_BAD_COMMAND: error = EIO; break;
44 case ERROR_BAD_DEVICE: error = ENODEV; break;
45 case ERROR_BAD_DRIVER_LEVEL: error = ENXIO; break;
46 case ERROR_BAD_EXE_FORMAT: error = ENOEXEC; break;
47 case ERROR_BAD_FORMAT: error = ENOEXEC; break;
48 case ERROR_BAD_LENGTH: error = EINVAL; break;
49 case ERROR_BAD_PATHNAME: error = ENOENT; break;
50 case ERROR_BAD_PIPE: error = EPIPE; break;
51 case ERROR_BAD_UNIT: error = ENODEV; break;
52 case ERROR_BAD_USERNAME: error = EINVAL; break;
53 case ERROR_BROKEN_PIPE: error = EPIPE; break;
54 case ERROR_BUFFER_OVERFLOW: error = ENAMETOOLONG; break;
55 case ERROR_BUSY: error = EBUSY; break;
56 case ERROR_BUSY_DRIVE: error = EBUSY; break;
57 case ERROR_CALL_NOT_IMPLEMENTED: error = ENOSYS; break;
58 case ERROR_CANNOT_MAKE: error = EACCES; break;
59 case ERROR_CANTOPEN: error = EIO; break;
60 case ERROR_CANTREAD: error = EIO; break;
61 case ERROR_CANTWRITE: error = EIO; break;
62 case ERROR_CRC: error = EIO; break;
63 case ERROR_CURRENT_DIRECTORY: error = EACCES; break;
64 case ERROR_DEVICE_IN_USE: error = EBUSY; break;
65 case ERROR_DEV_NOT_EXIST: error = ENODEV; break;
66 case ERROR_DIRECTORY: error = EINVAL; break;
67 case ERROR_DIR_NOT_EMPTY: error = ENOTEMPTY; break;
68 case ERROR_DISK_CHANGE: error = EIO; break;
69 case ERROR_DISK_FULL: error = ENOSPC; break;
70 case ERROR_DRIVE_LOCKED: error = EBUSY; break;
71 case ERROR_ENVVAR_NOT_FOUND: error = EINVAL; break;
72 case ERROR_EXE_MARKED_INVALID: error = ENOEXEC; break;
73 case ERROR_FILENAME_EXCED_RANGE: error = ENAMETOOLONG; break;
74 case ERROR_FILE_EXISTS: error = EEXIST; break;
75 case ERROR_FILE_INVALID: error = ENODEV; break;
76 case ERROR_FILE_NOT_FOUND: error = ENOENT; break;
77 case ERROR_GEN_FAILURE: error = EIO; break;
78 case ERROR_HANDLE_DISK_FULL: error = ENOSPC; break;
79 case ERROR_INSUFFICIENT_BUFFER: error = ENOMEM; break;
80 case ERROR_INVALID_ACCESS: error = EACCES; break;
81 case ERROR_INVALID_ADDRESS: error = EFAULT; break;
82 case ERROR_INVALID_BLOCK: error = EFAULT; break;
83 case ERROR_INVALID_DATA: error = EINVAL; break;
84 case ERROR_INVALID_DRIVE: error = ENODEV; break;
85 case ERROR_INVALID_EXE_SIGNATURE: error = ENOEXEC; break;
86 case ERROR_INVALID_FLAGS: error = EINVAL; break;
87 case ERROR_INVALID_FUNCTION: error = ENOSYS; break;
88 case ERROR_INVALID_HANDLE: error = EBADF; break;
89 case ERROR_INVALID_LOGON_HOURS: error = EACCES; break;
90 case ERROR_INVALID_NAME: error = EINVAL; break;
91 case ERROR_INVALID_OWNER: error = EINVAL; break;
92 case ERROR_INVALID_PARAMETER: error = EINVAL; break;
93 case ERROR_INVALID_PASSWORD: error = EPERM; break;
94 case ERROR_INVALID_PRIMARY_GROUP: error = EINVAL; break;
95 case ERROR_INVALID_SIGNAL_NUMBER: error = EINVAL; break;
96 case ERROR_INVALID_TARGET_HANDLE: error = EIO; break;
97 case ERROR_INVALID_WORKSTATION: error = EACCES; break;
98 case ERROR_IO_DEVICE: error = EIO; break;
99 case ERROR_IO_INCOMPLETE: error = EINTR; break;
100 case ERROR_LOCKED: error = EBUSY; break;
101 case ERROR_LOCK_VIOLATION: error = EACCES; break;
102 case ERROR_LOGON_FAILURE: error = EACCES; break;
103 case ERROR_MAPPED_ALIGNMENT: error = EINVAL; break;
104 case ERROR_META_EXPANSION_TOO_LONG: error = E2BIG; break;
105 case ERROR_MORE_DATA: error = EPIPE; break;
106 case ERROR_NEGATIVE_SEEK: error = ESPIPE; break;
107 case ERROR_NOACCESS: error = EFAULT; break;
108 case ERROR_NONE_MAPPED: error = EINVAL; break;
109 case ERROR_NOT_ENOUGH_MEMORY: error = ENOMEM; break;
110 case ERROR_NOT_READY: error = EAGAIN; break;
111 case ERROR_NOT_SAME_DEVICE: error = EXDEV; break;
112 case ERROR_NO_DATA: error = EPIPE; break;
113 case ERROR_NO_MORE_SEARCH_HANDLES: error = EIO; break;
114 case ERROR_NO_PROC_SLOTS: error = EAGAIN; break;
115 case ERROR_NO_SUCH_PRIVILEGE: error = EACCES; break;
116 case ERROR_OPEN_FAILED: error = EIO; break;
117 case ERROR_OPEN_FILES: error = EBUSY; break;
118 case ERROR_OPERATION_ABORTED: error = EINTR; break;
119 case ERROR_OUTOFMEMORY: error = ENOMEM; break;
120 case ERROR_PASSWORD_EXPIRED: error = EACCES; break;
121 case ERROR_PATH_BUSY: error = EBUSY; break;
122 case ERROR_PATH_NOT_FOUND: error = ENOENT; break;
123 case ERROR_PIPE_BUSY: error = EBUSY; break;
124 case ERROR_PIPE_CONNECTED: error = EPIPE; break;
125 case ERROR_PIPE_LISTENING: error = EPIPE; break;
126 case ERROR_PIPE_NOT_CONNECTED: error = EPIPE; break;
127 case ERROR_PRIVILEGE_NOT_HELD: error = EACCES; break;
128 case ERROR_READ_FAULT: error = EIO; break;
129 case ERROR_SEEK: error = EIO; break;
130 case ERROR_SEEK_ON_DEVICE: error = ESPIPE; break;
131 case ERROR_SHARING_BUFFER_EXCEEDED: error = ENFILE; break;
132 case ERROR_SHARING_VIOLATION: error = EACCES; break;
133 case ERROR_STACK_OVERFLOW: error = ENOMEM; break;
134 case ERROR_SUCCESS: BUG("err_win_to_posix() called without an error!");
135 case ERROR_SWAPERROR: error = ENOENT; break;
136 case ERROR_TOO_MANY_MODULES: error = EMFILE; break;
137 case ERROR_TOO_MANY_OPEN_FILES: error = EMFILE; break;
138 case ERROR_UNRECOGNIZED_MEDIA: error = ENXIO; break;
139 case ERROR_UNRECOGNIZED_VOLUME: error = ENODEV; break;
140 case ERROR_WAIT_NO_CHILDREN: error = ECHILD; break;
141 case ERROR_WRITE_FAULT: error = EIO; break;
142 case ERROR_WRITE_PROTECT: error = EROFS; break;
143 }
144 return error;
145 }
146
147 static inline int is_file_in_use_error(DWORD errcode)
148 {
149 switch (errcode) {
150 case ERROR_SHARING_VIOLATION:
151 case ERROR_ACCESS_DENIED:
152 return 1;
153 }
154
155 return 0;
156 }
157
158 static int read_yes_no_answer(void)
159 {
160 char answer[1024];
161
162 if (fgets(answer, sizeof(answer), stdin)) {
163 size_t answer_len = strlen(answer);
164 int got_full_line = 0, c;
165
166 /* remove the newline */
167 if (answer_len >= 2 && answer[answer_len-2] == '\r') {
168 answer[answer_len-2] = '\0';
169 got_full_line = 1;
170 } else if (answer_len >= 1 && answer[answer_len-1] == '\n') {
171 answer[answer_len-1] = '\0';
172 got_full_line = 1;
173 }
174 /* flush the buffer in case we did not get the full line */
175 if (!got_full_line)
176 while ((c = getchar()) != EOF && c != '\n')
177 ;
178 } else
179 /* we could not read, return the
180 * default answer which is no */
181 return 0;
182
183 if (tolower(answer[0]) == 'y' && !answer[1])
184 return 1;
185 if (!strncasecmp(answer, "yes", sizeof(answer)))
186 return 1;
187 if (tolower(answer[0]) == 'n' && !answer[1])
188 return 0;
189 if (!strncasecmp(answer, "no", sizeof(answer)))
190 return 0;
191
192 /* did not find an answer we understand */
193 return -1;
194 }
195
196 static int ask_yes_no_if_possible(const char *format, ...)
197 {
198 char question[4096];
199 const char *retry_hook[] = { NULL, NULL, NULL };
200 va_list args;
201
202 va_start(args, format);
203 vsnprintf(question, sizeof(question), format, args);
204 va_end(args);
205
206 if ((retry_hook[0] = mingw_getenv("GIT_ASK_YESNO"))) {
207 retry_hook[1] = question;
208 return !run_command_v_opt(retry_hook, 0);
209 }
210
211 if (!isatty(_fileno(stdin)) || !isatty(_fileno(stderr)))
212 return 0;
213
214 while (1) {
215 int answer;
216 fprintf(stderr, "%s (y/n) ", question);
217
218 if ((answer = read_yes_no_answer()) >= 0)
219 return answer;
220
221 fprintf(stderr, "Sorry, I did not understand your answer. "
222 "Please type 'y' or 'n'\n");
223 }
224 }
225
226 /* Windows only */
227 enum hide_dotfiles_type {
228 HIDE_DOTFILES_FALSE = 0,
229 HIDE_DOTFILES_TRUE,
230 HIDE_DOTFILES_DOTGITONLY
231 };
232
233 static int core_restrict_inherited_handles = -1;
234 static enum hide_dotfiles_type hide_dotfiles = HIDE_DOTFILES_DOTGITONLY;
235 static char *unset_environment_variables;
236
237 int mingw_core_config(const char *var, const char *value, void *cb)
238 {
239 if (!strcmp(var, "core.hidedotfiles")) {
240 if (value && !strcasecmp(value, "dotgitonly"))
241 hide_dotfiles = HIDE_DOTFILES_DOTGITONLY;
242 else
243 hide_dotfiles = git_config_bool(var, value);
244 return 0;
245 }
246
247 if (!strcmp(var, "core.unsetenvvars")) {
248 free(unset_environment_variables);
249 unset_environment_variables = xstrdup(value);
250 return 0;
251 }
252
253 if (!strcmp(var, "core.restrictinheritedhandles")) {
254 if (value && !strcasecmp(value, "auto"))
255 core_restrict_inherited_handles = -1;
256 else
257 core_restrict_inherited_handles =
258 git_config_bool(var, value);
259 return 0;
260 }
261
262 return 0;
263 }
264
265 /* Normalizes NT paths as returned by some low-level APIs. */
266 static wchar_t *normalize_ntpath(wchar_t *wbuf)
267 {
268 int i;
269 /* fix absolute path prefixes */
270 if (wbuf[0] == '\\') {
271 /* strip NT namespace prefixes */
272 if (!wcsncmp(wbuf, L"\\??\\", 4) ||
273 !wcsncmp(wbuf, L"\\\\?\\", 4))
274 wbuf += 4;
275 else if (!wcsnicmp(wbuf, L"\\DosDevices\\", 12))
276 wbuf += 12;
277 /* replace remaining '...UNC\' with '\\' */
278 if (!wcsnicmp(wbuf, L"UNC\\", 4)) {
279 wbuf += 2;
280 *wbuf = '\\';
281 }
282 }
283 /* convert backslashes to slashes */
284 for (i = 0; wbuf[i]; i++)
285 if (wbuf[i] == '\\')
286 wbuf[i] = '/';
287 return wbuf;
288 }
289
290 int mingw_unlink(const char *pathname)
291 {
292 int ret, tries = 0;
293 wchar_t wpathname[MAX_PATH];
294 if (xutftowcs_path(wpathname, pathname) < 0)
295 return -1;
296
297 if (DeleteFileW(wpathname))
298 return 0;
299
300 /* read-only files cannot be removed */
301 _wchmod(wpathname, 0666);
302 while ((ret = _wunlink(wpathname)) == -1 && tries < ARRAY_SIZE(delay)) {
303 if (!is_file_in_use_error(GetLastError()))
304 break;
305 /*
306 * We assume that some other process had the source or
307 * destination file open at the wrong moment and retry.
308 * In order to give the other process a higher chance to
309 * complete its operation, we give up our time slice now.
310 * If we have to retry again, we do sleep a bit.
311 */
312 Sleep(delay[tries]);
313 tries++;
314 }
315 while (ret == -1 && is_file_in_use_error(GetLastError()) &&
316 ask_yes_no_if_possible("Unlink of file '%s' failed. "
317 "Should I try again?", pathname))
318 ret = _wunlink(wpathname);
319 return ret;
320 }
321
322 static int is_dir_empty(const wchar_t *wpath)
323 {
324 WIN32_FIND_DATAW findbuf;
325 HANDLE handle;
326 wchar_t wbuf[MAX_PATH + 2];
327 wcscpy(wbuf, wpath);
328 wcscat(wbuf, L"\\*");
329 handle = FindFirstFileW(wbuf, &findbuf);
330 if (handle == INVALID_HANDLE_VALUE)
331 return GetLastError() == ERROR_NO_MORE_FILES;
332
333 while (!wcscmp(findbuf.cFileName, L".") ||
334 !wcscmp(findbuf.cFileName, L".."))
335 if (!FindNextFileW(handle, &findbuf)) {
336 DWORD err = GetLastError();
337 FindClose(handle);
338 return err == ERROR_NO_MORE_FILES;
339 }
340 FindClose(handle);
341 return 0;
342 }
343
344 int mingw_rmdir(const char *pathname)
345 {
346 int ret, tries = 0;
347 wchar_t wpathname[MAX_PATH];
348 struct stat st;
349
350 /*
351 * Contrary to Linux' `rmdir()`, Windows' _wrmdir() and _rmdir()
352 * (and `RemoveDirectoryW()`) will attempt to remove the target of a
353 * symbolic link (if it points to a directory).
354 *
355 * This behavior breaks the assumption of e.g. `remove_path()` which
356 * upon successful deletion of a file will attempt to remove its parent
357 * directories recursively until failure (which usually happens when
358 * the directory is not empty).
359 *
360 * Therefore, before calling `_wrmdir()`, we first check if the path is
361 * a symbolic link. If it is, we exit and return the same error as
362 * Linux' `rmdir()` would, i.e. `ENOTDIR`.
363 */
364 if (!mingw_lstat(pathname, &st) && S_ISLNK(st.st_mode)) {
365 errno = ENOTDIR;
366 return -1;
367 }
368
369 if (xutftowcs_path(wpathname, pathname) < 0)
370 return -1;
371
372 while ((ret = _wrmdir(wpathname)) == -1 && tries < ARRAY_SIZE(delay)) {
373 if (!is_file_in_use_error(GetLastError()))
374 errno = err_win_to_posix(GetLastError());
375 if (errno != EACCES)
376 break;
377 if (!is_dir_empty(wpathname)) {
378 errno = ENOTEMPTY;
379 break;
380 }
381 /*
382 * We assume that some other process had the source or
383 * destination file open at the wrong moment and retry.
384 * In order to give the other process a higher chance to
385 * complete its operation, we give up our time slice now.
386 * If we have to retry again, we do sleep a bit.
387 */
388 Sleep(delay[tries]);
389 tries++;
390 }
391 while (ret == -1 && errno == EACCES && is_file_in_use_error(GetLastError()) &&
392 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
393 "Should I try again?", pathname))
394 ret = _wrmdir(wpathname);
395 if (!ret)
396 invalidate_lstat_cache();
397 return ret;
398 }
399
400 static inline int needs_hiding(const char *path)
401 {
402 const char *basename;
403
404 if (hide_dotfiles == HIDE_DOTFILES_FALSE)
405 return 0;
406
407 /* We cannot use basename(), as it would remove trailing slashes */
408 win32_skip_dos_drive_prefix((char **)&path);
409 if (!*path)
410 return 0;
411
412 for (basename = path; *path; path++)
413 if (is_dir_sep(*path)) {
414 do {
415 path++;
416 } while (is_dir_sep(*path));
417 /* ignore trailing slashes */
418 if (*path)
419 basename = path;
420 else
421 break;
422 }
423
424 if (hide_dotfiles == HIDE_DOTFILES_TRUE)
425 return *basename == '.';
426
427 assert(hide_dotfiles == HIDE_DOTFILES_DOTGITONLY);
428 return !strncasecmp(".git", basename, 4) &&
429 (!basename[4] || is_dir_sep(basename[4]));
430 }
431
432 static int set_hidden_flag(const wchar_t *path, int set)
433 {
434 DWORD original = GetFileAttributesW(path), modified;
435 if (set)
436 modified = original | FILE_ATTRIBUTE_HIDDEN;
437 else
438 modified = original & ~FILE_ATTRIBUTE_HIDDEN;
439 if (original == modified || SetFileAttributesW(path, modified))
440 return 0;
441 errno = err_win_to_posix(GetLastError());
442 return -1;
443 }
444
445 int mingw_mkdir(const char *path, int mode)
446 {
447 int ret;
448 wchar_t wpath[MAX_PATH];
449
450 if (!is_valid_win32_path(path, 0)) {
451 errno = EINVAL;
452 return -1;
453 }
454
455 if (xutftowcs_path(wpath, path) < 0)
456 return -1;
457 ret = _wmkdir(wpath);
458 if (!ret && needs_hiding(path))
459 return set_hidden_flag(wpath, 1);
460 return ret;
461 }
462
463 /*
464 * Calling CreateFile() using FILE_APPEND_DATA and without FILE_WRITE_DATA
465 * is documented in [1] as opening a writable file handle in append mode.
466 * (It is believed that) this is atomic since it is maintained by the
467 * kernel unlike the O_APPEND flag which is racily maintained by the CRT.
468 *
469 * [1] https://docs.microsoft.com/en-us/windows/desktop/fileio/file-access-rights-constants
470 *
471 * This trick does not appear to work for named pipes. Instead it creates
472 * a named pipe client handle that cannot be written to. Callers should
473 * just use the regular _wopen() for them. (And since client handle gets
474 * bound to a unique server handle, it isn't really an issue.)
475 */
476 static int mingw_open_append(wchar_t const *wfilename, int oflags, ...)
477 {
478 HANDLE handle;
479 int fd;
480 DWORD create = (oflags & O_CREAT) ? OPEN_ALWAYS : OPEN_EXISTING;
481
482 /* only these flags are supported */
483 if ((oflags & ~O_CREAT) != (O_WRONLY | O_APPEND))
484 return errno = ENOSYS, -1;
485
486 /*
487 * FILE_SHARE_WRITE is required to permit child processes
488 * to append to the file.
489 */
490 handle = CreateFileW(wfilename, FILE_APPEND_DATA,
491 FILE_SHARE_WRITE | FILE_SHARE_READ,
492 NULL, create, FILE_ATTRIBUTE_NORMAL, NULL);
493 if (handle == INVALID_HANDLE_VALUE) {
494 DWORD err = GetLastError();
495
496 /*
497 * Some network storage solutions (e.g. Isilon) might return
498 * ERROR_INVALID_PARAMETER instead of expected error
499 * ERROR_PATH_NOT_FOUND, which results in an unknown error. If
500 * so, let's turn the error to ERROR_PATH_NOT_FOUND instead.
501 */
502 if (err == ERROR_INVALID_PARAMETER)
503 err = ERROR_PATH_NOT_FOUND;
504
505 errno = err_win_to_posix(err);
506 return -1;
507 }
508
509 /*
510 * No O_APPEND here, because the CRT uses it only to reset the
511 * file pointer to EOF before each write(); but that is not
512 * necessary (and may lead to races) for a file created with
513 * FILE_APPEND_DATA.
514 */
515 fd = _open_osfhandle((intptr_t)handle, O_BINARY);
516 if (fd < 0)
517 CloseHandle(handle);
518 return fd;
519 }
520
521 /*
522 * Does the pathname map to the local named pipe filesystem?
523 * That is, does it have a "//./pipe/" prefix?
524 */
525 static int is_local_named_pipe_path(const char *filename)
526 {
527 return (is_dir_sep(filename[0]) &&
528 is_dir_sep(filename[1]) &&
529 filename[2] == '.' &&
530 is_dir_sep(filename[3]) &&
531 !strncasecmp(filename+4, "pipe", 4) &&
532 is_dir_sep(filename[8]) &&
533 filename[9]);
534 }
535
536 int mingw_open (const char *filename, int oflags, ...)
537 {
538 typedef int (*open_fn_t)(wchar_t const *wfilename, int oflags, ...);
539 va_list args;
540 unsigned mode;
541 int fd, create = (oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL);
542 wchar_t wfilename[MAX_PATH];
543 open_fn_t open_fn;
544
545 va_start(args, oflags);
546 mode = va_arg(args, int);
547 va_end(args);
548
549 if (!is_valid_win32_path(filename, !create)) {
550 errno = create ? EINVAL : ENOENT;
551 return -1;
552 }
553
554 if ((oflags & O_APPEND) && !is_local_named_pipe_path(filename))
555 open_fn = mingw_open_append;
556 else
557 open_fn = _wopen;
558
559 if (filename && !strcmp(filename, "/dev/null"))
560 wcscpy(wfilename, L"nul");
561 else if (xutftowcs_path(wfilename, filename) < 0)
562 return -1;
563
564 fd = open_fn(wfilename, oflags, mode);
565
566 if (fd < 0 && (oflags & O_ACCMODE) != O_RDONLY && errno == EACCES) {
567 DWORD attrs = GetFileAttributesW(wfilename);
568 if (attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY))
569 errno = EISDIR;
570 }
571 if ((oflags & O_CREAT) && needs_hiding(filename)) {
572 /*
573 * Internally, _wopen() uses the CreateFile() API which errors
574 * out with an ERROR_ACCESS_DENIED if CREATE_ALWAYS was
575 * specified and an already existing file's attributes do not
576 * match *exactly*. As there is no mode or flag we can set that
577 * would correspond to FILE_ATTRIBUTE_HIDDEN, let's just try
578 * again *without* the O_CREAT flag (that corresponds to the
579 * CREATE_ALWAYS flag of CreateFile()).
580 */
581 if (fd < 0 && errno == EACCES)
582 fd = open_fn(wfilename, oflags & ~O_CREAT, mode);
583 if (fd >= 0 && set_hidden_flag(wfilename, 1))
584 warning("could not mark '%s' as hidden.", filename);
585 }
586 return fd;
587 }
588
589 static BOOL WINAPI ctrl_ignore(DWORD type)
590 {
591 return TRUE;
592 }
593
594 #undef fgetc
595 int mingw_fgetc(FILE *stream)
596 {
597 int ch;
598 if (!isatty(_fileno(stream)))
599 return fgetc(stream);
600
601 SetConsoleCtrlHandler(ctrl_ignore, TRUE);
602 while (1) {
603 ch = fgetc(stream);
604 if (ch != EOF || GetLastError() != ERROR_OPERATION_ABORTED)
605 break;
606
607 /* Ctrl+C was pressed, simulate SIGINT and retry */
608 mingw_raise(SIGINT);
609 }
610 SetConsoleCtrlHandler(ctrl_ignore, FALSE);
611 return ch;
612 }
613
614 #undef fopen
615 FILE *mingw_fopen (const char *filename, const char *otype)
616 {
617 int hide = needs_hiding(filename);
618 FILE *file;
619 wchar_t wfilename[MAX_PATH], wotype[4];
620 if (filename && !strcmp(filename, "/dev/null"))
621 wcscpy(wfilename, L"nul");
622 else if (!is_valid_win32_path(filename, 1)) {
623 int create = otype && strchr(otype, 'w');
624 errno = create ? EINVAL : ENOENT;
625 return NULL;
626 } else if (xutftowcs_path(wfilename, filename) < 0)
627 return NULL;
628
629 if (xutftowcs(wotype, otype, ARRAY_SIZE(wotype)) < 0)
630 return NULL;
631
632 if (hide && !access(filename, F_OK) && set_hidden_flag(wfilename, 0)) {
633 error("could not unhide %s", filename);
634 return NULL;
635 }
636 file = _wfopen(wfilename, wotype);
637 if (!file && GetLastError() == ERROR_INVALID_NAME)
638 errno = ENOENT;
639 if (file && hide && set_hidden_flag(wfilename, 1))
640 warning("could not mark '%s' as hidden.", filename);
641 return file;
642 }
643
644 FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream)
645 {
646 int hide = needs_hiding(filename);
647 FILE *file;
648 wchar_t wfilename[MAX_PATH], wotype[4];
649 if (filename && !strcmp(filename, "/dev/null"))
650 wcscpy(wfilename, L"nul");
651 else if (!is_valid_win32_path(filename, 1)) {
652 int create = otype && strchr(otype, 'w');
653 errno = create ? EINVAL : ENOENT;
654 return NULL;
655 } else if (xutftowcs_path(wfilename, filename) < 0)
656 return NULL;
657
658 if (xutftowcs(wotype, otype, ARRAY_SIZE(wotype)) < 0)
659 return NULL;
660
661 if (hide && !access(filename, F_OK) && set_hidden_flag(wfilename, 0)) {
662 error("could not unhide %s", filename);
663 return NULL;
664 }
665 file = _wfreopen(wfilename, wotype, stream);
666 if (file && hide && set_hidden_flag(wfilename, 1))
667 warning("could not mark '%s' as hidden.", filename);
668 return file;
669 }
670
671 #undef fflush
672 int mingw_fflush(FILE *stream)
673 {
674 int ret = fflush(stream);
675
676 /*
677 * write() is used behind the scenes of stdio output functions.
678 * Since git code does not check for errors after each stdio write
679 * operation, it can happen that write() is called by a later
680 * stdio function even if an earlier write() call failed. In the
681 * case of a pipe whose readable end was closed, only the first
682 * call to write() reports EPIPE on Windows. Subsequent write()
683 * calls report EINVAL. It is impossible to notice whether this
684 * fflush invocation triggered such a case, therefore, we have to
685 * catch all EINVAL errors whole-sale.
686 */
687 if (ret && errno == EINVAL)
688 errno = EPIPE;
689
690 return ret;
691 }
692
693 #undef write
694 ssize_t mingw_write(int fd, const void *buf, size_t len)
695 {
696 ssize_t result = write(fd, buf, len);
697
698 if (result < 0 && errno == EINVAL && buf) {
699 /* check if fd is a pipe */
700 HANDLE h = (HANDLE) _get_osfhandle(fd);
701 if (GetFileType(h) == FILE_TYPE_PIPE)
702 errno = EPIPE;
703 else
704 errno = EINVAL;
705 }
706
707 return result;
708 }
709
710 int mingw_access(const char *filename, int mode)
711 {
712 wchar_t wfilename[MAX_PATH];
713 if (!strcmp("nul", filename) || !strcmp("/dev/null", filename))
714 return 0;
715 if (xutftowcs_path(wfilename, filename) < 0)
716 return -1;
717 /* X_OK is not supported by the MSVCRT version */
718 return _waccess(wfilename, mode & ~X_OK);
719 }
720
721 int mingw_chdir(const char *dirname)
722 {
723 wchar_t wdirname[MAX_PATH];
724 if (xutftowcs_path(wdirname, dirname) < 0)
725 return -1;
726 return _wchdir(wdirname);
727 }
728
729 int mingw_chmod(const char *filename, int mode)
730 {
731 wchar_t wfilename[MAX_PATH];
732 if (xutftowcs_path(wfilename, filename) < 0)
733 return -1;
734 return _wchmod(wfilename, mode);
735 }
736
737 /*
738 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
739 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
740 */
741 static inline long long filetime_to_hnsec(const FILETIME *ft)
742 {
743 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
744 /* Windows to Unix Epoch conversion */
745 return winTime - 116444736000000000LL;
746 }
747
748 static inline void filetime_to_timespec(const FILETIME *ft, struct timespec *ts)
749 {
750 long long hnsec = filetime_to_hnsec(ft);
751 ts->tv_sec = (time_t)(hnsec / 10000000);
752 ts->tv_nsec = (hnsec % 10000000) * 100;
753 }
754
755 /**
756 * Verifies that safe_create_leading_directories() would succeed.
757 */
758 static int has_valid_directory_prefix(wchar_t *wfilename)
759 {
760 int n = wcslen(wfilename);
761
762 while (n > 0) {
763 wchar_t c = wfilename[--n];
764 DWORD attributes;
765
766 if (!is_dir_sep(c))
767 continue;
768
769 wfilename[n] = L'\0';
770 attributes = GetFileAttributesW(wfilename);
771 wfilename[n] = c;
772 if (attributes == FILE_ATTRIBUTE_DIRECTORY ||
773 attributes == FILE_ATTRIBUTE_DEVICE)
774 return 1;
775 if (attributes == INVALID_FILE_ATTRIBUTES)
776 switch (GetLastError()) {
777 case ERROR_PATH_NOT_FOUND:
778 continue;
779 case ERROR_FILE_NOT_FOUND:
780 /* This implies parent directory exists. */
781 return 1;
782 }
783 return 0;
784 }
785 return 1;
786 }
787
788 /* We keep the do_lstat code in a separate function to avoid recursion.
789 * When a path ends with a slash, the stat will fail with ENOENT. In
790 * this case, we strip the trailing slashes and stat again.
791 *
792 * If follow is true then act like stat() and report on the link
793 * target. Otherwise report on the link itself.
794 */
795 static int do_lstat(int follow, const char *file_name, struct stat *buf)
796 {
797 WIN32_FILE_ATTRIBUTE_DATA fdata;
798 wchar_t wfilename[MAX_PATH];
799 if (xutftowcs_path(wfilename, file_name) < 0)
800 return -1;
801
802 if (GetFileAttributesExW(wfilename, GetFileExInfoStandard, &fdata)) {
803 buf->st_ino = 0;
804 buf->st_gid = 0;
805 buf->st_uid = 0;
806 buf->st_nlink = 1;
807 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
808 buf->st_size = fdata.nFileSizeLow |
809 (((off_t)fdata.nFileSizeHigh)<<32);
810 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
811 filetime_to_timespec(&(fdata.ftLastAccessTime), &(buf->st_atim));
812 filetime_to_timespec(&(fdata.ftLastWriteTime), &(buf->st_mtim));
813 filetime_to_timespec(&(fdata.ftCreationTime), &(buf->st_ctim));
814 if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
815 WIN32_FIND_DATAW findbuf;
816 HANDLE handle = FindFirstFileW(wfilename, &findbuf);
817 if (handle != INVALID_HANDLE_VALUE) {
818 if ((findbuf.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) &&
819 (findbuf.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) {
820 if (follow) {
821 char buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
822 buf->st_size = readlink(file_name, buffer, MAXIMUM_REPARSE_DATA_BUFFER_SIZE);
823 } else {
824 buf->st_mode = S_IFLNK;
825 }
826 buf->st_mode |= S_IREAD;
827 if (!(findbuf.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
828 buf->st_mode |= S_IWRITE;
829 }
830 FindClose(handle);
831 }
832 }
833 return 0;
834 }
835 switch (GetLastError()) {
836 case ERROR_ACCESS_DENIED:
837 case ERROR_SHARING_VIOLATION:
838 case ERROR_LOCK_VIOLATION:
839 case ERROR_SHARING_BUFFER_EXCEEDED:
840 errno = EACCES;
841 break;
842 case ERROR_BUFFER_OVERFLOW:
843 errno = ENAMETOOLONG;
844 break;
845 case ERROR_NOT_ENOUGH_MEMORY:
846 errno = ENOMEM;
847 break;
848 case ERROR_PATH_NOT_FOUND:
849 if (!has_valid_directory_prefix(wfilename)) {
850 errno = ENOTDIR;
851 break;
852 }
853 /* fallthru */
854 default:
855 errno = ENOENT;
856 break;
857 }
858 return -1;
859 }
860
861 /* We provide our own lstat/fstat functions, since the provided
862 * lstat/fstat functions are so slow. These stat functions are
863 * tailored for Git's usage (read: fast), and are not meant to be
864 * complete. Note that Git stat()s are redirected to mingw_lstat()
865 * too, since Windows doesn't really handle symlinks that well.
866 */
867 static int do_stat_internal(int follow, const char *file_name, struct stat *buf)
868 {
869 int namelen;
870 char alt_name[PATH_MAX];
871
872 if (!do_lstat(follow, file_name, buf))
873 return 0;
874
875 /* if file_name ended in a '/', Windows returned ENOENT;
876 * try again without trailing slashes
877 */
878 if (errno != ENOENT)
879 return -1;
880
881 namelen = strlen(file_name);
882 if (namelen && file_name[namelen-1] != '/')
883 return -1;
884 while (namelen && file_name[namelen-1] == '/')
885 --namelen;
886 if (!namelen || namelen >= PATH_MAX)
887 return -1;
888
889 memcpy(alt_name, file_name, namelen);
890 alt_name[namelen] = 0;
891 return do_lstat(follow, alt_name, buf);
892 }
893
894 static int get_file_info_by_handle(HANDLE hnd, struct stat *buf)
895 {
896 BY_HANDLE_FILE_INFORMATION fdata;
897
898 if (!GetFileInformationByHandle(hnd, &fdata)) {
899 errno = err_win_to_posix(GetLastError());
900 return -1;
901 }
902
903 buf->st_ino = 0;
904 buf->st_gid = 0;
905 buf->st_uid = 0;
906 buf->st_nlink = 1;
907 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
908 buf->st_size = fdata.nFileSizeLow |
909 (((off_t)fdata.nFileSizeHigh)<<32);
910 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
911 filetime_to_timespec(&(fdata.ftLastAccessTime), &(buf->st_atim));
912 filetime_to_timespec(&(fdata.ftLastWriteTime), &(buf->st_mtim));
913 filetime_to_timespec(&(fdata.ftCreationTime), &(buf->st_ctim));
914 return 0;
915 }
916
917 int mingw_lstat(const char *file_name, struct stat *buf)
918 {
919 return do_stat_internal(0, file_name, buf);
920 }
921 int mingw_stat(const char *file_name, struct stat *buf)
922 {
923 return do_stat_internal(1, file_name, buf);
924 }
925
926 int mingw_fstat(int fd, struct stat *buf)
927 {
928 HANDLE fh = (HANDLE)_get_osfhandle(fd);
929 DWORD avail, type = GetFileType(fh) & ~FILE_TYPE_REMOTE;
930
931 switch (type) {
932 case FILE_TYPE_DISK:
933 return get_file_info_by_handle(fh, buf);
934
935 case FILE_TYPE_CHAR:
936 case FILE_TYPE_PIPE:
937 /* initialize stat fields */
938 memset(buf, 0, sizeof(*buf));
939 buf->st_nlink = 1;
940
941 if (type == FILE_TYPE_CHAR) {
942 buf->st_mode = _S_IFCHR;
943 } else {
944 buf->st_mode = _S_IFIFO;
945 if (PeekNamedPipe(fh, NULL, 0, NULL, &avail, NULL))
946 buf->st_size = avail;
947 }
948 return 0;
949
950 default:
951 errno = EBADF;
952 return -1;
953 }
954 }
955
956 static inline void time_t_to_filetime(time_t t, FILETIME *ft)
957 {
958 long long winTime = t * 10000000LL + 116444736000000000LL;
959 ft->dwLowDateTime = winTime;
960 ft->dwHighDateTime = winTime >> 32;
961 }
962
963 int mingw_utime (const char *file_name, const struct utimbuf *times)
964 {
965 FILETIME mft, aft;
966 int rc;
967 DWORD attrs;
968 wchar_t wfilename[MAX_PATH];
969 HANDLE osfilehandle;
970
971 if (xutftowcs_path(wfilename, file_name) < 0)
972 return -1;
973
974 /* must have write permission */
975 attrs = GetFileAttributesW(wfilename);
976 if (attrs != INVALID_FILE_ATTRIBUTES &&
977 (attrs & FILE_ATTRIBUTE_READONLY)) {
978 /* ignore errors here; open() will report them */
979 SetFileAttributesW(wfilename, attrs & ~FILE_ATTRIBUTE_READONLY);
980 }
981
982 osfilehandle = CreateFileW(wfilename,
983 FILE_WRITE_ATTRIBUTES,
984 0 /*FileShare.None*/,
985 NULL,
986 OPEN_EXISTING,
987 (attrs != INVALID_FILE_ATTRIBUTES &&
988 (attrs & FILE_ATTRIBUTE_DIRECTORY)) ?
989 FILE_FLAG_BACKUP_SEMANTICS : 0,
990 NULL);
991 if (osfilehandle == INVALID_HANDLE_VALUE) {
992 errno = err_win_to_posix(GetLastError());
993 rc = -1;
994 goto revert_attrs;
995 }
996
997 if (times) {
998 time_t_to_filetime(times->modtime, &mft);
999 time_t_to_filetime(times->actime, &aft);
1000 } else {
1001 GetSystemTimeAsFileTime(&mft);
1002 aft = mft;
1003 }
1004
1005 if (!SetFileTime(osfilehandle, NULL, &aft, &mft)) {
1006 errno = EINVAL;
1007 rc = -1;
1008 } else
1009 rc = 0;
1010
1011 if (osfilehandle != INVALID_HANDLE_VALUE)
1012 CloseHandle(osfilehandle);
1013
1014 revert_attrs:
1015 if (attrs != INVALID_FILE_ATTRIBUTES &&
1016 (attrs & FILE_ATTRIBUTE_READONLY)) {
1017 /* ignore errors again */
1018 SetFileAttributesW(wfilename, attrs);
1019 }
1020 return rc;
1021 }
1022
1023 #undef strftime
1024 size_t mingw_strftime(char *s, size_t max,
1025 const char *format, const struct tm *tm)
1026 {
1027 /* a pointer to the original strftime in case we can't find the UCRT version */
1028 static size_t (*fallback)(char *, size_t, const char *, const struct tm *) = strftime;
1029 size_t ret;
1030 DECLARE_PROC_ADDR(ucrtbase.dll, size_t, __cdecl, strftime, char *, size_t,
1031 const char *, const struct tm *);
1032
1033 if (INIT_PROC_ADDR(strftime))
1034 ret = strftime(s, max, format, tm);
1035 else
1036 ret = fallback(s, max, format, tm);
1037
1038 if (!ret && errno == EINVAL)
1039 die("invalid strftime format: '%s'", format);
1040 return ret;
1041 }
1042
1043 unsigned int sleep (unsigned int seconds)
1044 {
1045 Sleep(seconds*1000);
1046 return 0;
1047 }
1048
1049 char *mingw_mktemp(char *template)
1050 {
1051 wchar_t wtemplate[MAX_PATH];
1052 if (xutftowcs_path(wtemplate, template) < 0)
1053 return NULL;
1054 if (!_wmktemp(wtemplate))
1055 return NULL;
1056 if (xwcstoutf(template, wtemplate, strlen(template) + 1) < 0)
1057 return NULL;
1058 return template;
1059 }
1060
1061 int mkstemp(char *template)
1062 {
1063 char *filename = mktemp(template);
1064 if (!filename)
1065 return -1;
1066 return open(filename, O_RDWR | O_CREAT, 0600);
1067 }
1068
1069 int gettimeofday(struct timeval *tv, void *tz)
1070 {
1071 FILETIME ft;
1072 long long hnsec;
1073
1074 GetSystemTimeAsFileTime(&ft);
1075 hnsec = filetime_to_hnsec(&ft);
1076 tv->tv_sec = hnsec / 10000000;
1077 tv->tv_usec = (hnsec % 10000000) / 10;
1078 return 0;
1079 }
1080
1081 int pipe(int filedes[2])
1082 {
1083 HANDLE h[2];
1084
1085 /* this creates non-inheritable handles */
1086 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
1087 errno = err_win_to_posix(GetLastError());
1088 return -1;
1089 }
1090 filedes[0] = _open_osfhandle(HCAST(int, h[0]), O_NOINHERIT);
1091 if (filedes[0] < 0) {
1092 CloseHandle(h[0]);
1093 CloseHandle(h[1]);
1094 return -1;
1095 }
1096 filedes[1] = _open_osfhandle(HCAST(int, h[1]), O_NOINHERIT);
1097 if (filedes[1] < 0) {
1098 close(filedes[0]);
1099 CloseHandle(h[1]);
1100 return -1;
1101 }
1102 return 0;
1103 }
1104
1105 #ifndef __MINGW64__
1106 struct tm *gmtime_r(const time_t *timep, struct tm *result)
1107 {
1108 if (gmtime_s(result, timep) == 0)
1109 return result;
1110 return NULL;
1111 }
1112
1113 struct tm *localtime_r(const time_t *timep, struct tm *result)
1114 {
1115 if (localtime_s(result, timep) == 0)
1116 return result;
1117 return NULL;
1118 }
1119 #endif
1120
1121 char *mingw_getcwd(char *pointer, int len)
1122 {
1123 wchar_t cwd[MAX_PATH], wpointer[MAX_PATH];
1124 DWORD ret = GetCurrentDirectoryW(ARRAY_SIZE(cwd), cwd);
1125
1126 if (!ret || ret >= ARRAY_SIZE(cwd)) {
1127 errno = ret ? ENAMETOOLONG : err_win_to_posix(GetLastError());
1128 return NULL;
1129 }
1130 ret = GetLongPathNameW(cwd, wpointer, ARRAY_SIZE(wpointer));
1131 if (!ret && GetLastError() == ERROR_ACCESS_DENIED) {
1132 HANDLE hnd = CreateFileW(cwd, 0,
1133 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL,
1134 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
1135 if (hnd == INVALID_HANDLE_VALUE)
1136 return NULL;
1137 ret = GetFinalPathNameByHandleW(hnd, wpointer, ARRAY_SIZE(wpointer), 0);
1138 CloseHandle(hnd);
1139 if (!ret || ret >= ARRAY_SIZE(wpointer))
1140 return NULL;
1141 if (xwcstoutf(pointer, normalize_ntpath(wpointer), len) < 0)
1142 return NULL;
1143 return pointer;
1144 }
1145 if (!ret || ret >= ARRAY_SIZE(wpointer))
1146 return NULL;
1147 if (GetFileAttributesW(wpointer) == INVALID_FILE_ATTRIBUTES) {
1148 errno = ENOENT;
1149 return NULL;
1150 }
1151 if (xwcstoutf(pointer, wpointer, len) < 0)
1152 return NULL;
1153 convert_slashes(pointer);
1154 return pointer;
1155 }
1156
1157 /*
1158 * See "Parsing C++ Command-Line Arguments" at Microsoft's Docs:
1159 * https://docs.microsoft.com/en-us/cpp/cpp/parsing-cpp-command-line-arguments
1160 */
1161 static const char *quote_arg_msvc(const char *arg)
1162 {
1163 /* count chars to quote */
1164 int len = 0, n = 0;
1165 int force_quotes = 0;
1166 char *q, *d;
1167 const char *p = arg;
1168 if (!*p) force_quotes = 1;
1169 while (*p) {
1170 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
1171 force_quotes = 1;
1172 else if (*p == '"')
1173 n++;
1174 else if (*p == '\\') {
1175 int count = 0;
1176 while (*p == '\\') {
1177 count++;
1178 p++;
1179 len++;
1180 }
1181 if (*p == '"' || !*p)
1182 n += count*2 + 1;
1183 continue;
1184 }
1185 len++;
1186 p++;
1187 }
1188 if (!force_quotes && n == 0)
1189 return arg;
1190
1191 /* insert \ where necessary */
1192 d = q = xmalloc(st_add3(len, n, 3));
1193 *d++ = '"';
1194 while (*arg) {
1195 if (*arg == '"')
1196 *d++ = '\\';
1197 else if (*arg == '\\') {
1198 int count = 0;
1199 while (*arg == '\\') {
1200 count++;
1201 *d++ = *arg++;
1202 }
1203 if (*arg == '"' || !*arg) {
1204 while (count-- > 0)
1205 *d++ = '\\';
1206 /* don't escape the surrounding end quote */
1207 if (!*arg)
1208 break;
1209 *d++ = '\\';
1210 }
1211 }
1212 *d++ = *arg++;
1213 }
1214 *d++ = '"';
1215 *d++ = '\0';
1216 return q;
1217 }
1218
1219 #include "quote.h"
1220
1221 static const char *quote_arg_msys2(const char *arg)
1222 {
1223 struct strbuf buf = STRBUF_INIT;
1224 const char *p2 = arg, *p;
1225
1226 for (p = arg; *p; p++) {
1227 int ws = isspace(*p);
1228 if (!ws && *p != '\\' && *p != '"' && *p != '{' && *p != '\'' &&
1229 *p != '?' && *p != '*' && *p != '~')
1230 continue;
1231 if (!buf.len)
1232 strbuf_addch(&buf, '"');
1233 if (p != p2)
1234 strbuf_add(&buf, p2, p - p2);
1235 if (*p == '\\' || *p == '"')
1236 strbuf_addch(&buf, '\\');
1237 p2 = p;
1238 }
1239
1240 if (p == arg)
1241 strbuf_addch(&buf, '"');
1242 else if (!buf.len)
1243 return arg;
1244 else
1245 strbuf_add(&buf, p2, p - p2);
1246
1247 strbuf_addch(&buf, '"');
1248 return strbuf_detach(&buf, 0);
1249 }
1250
1251 static const char *parse_interpreter(const char *cmd)
1252 {
1253 static char buf[100];
1254 char *p, *opt;
1255 int n, fd;
1256
1257 /* don't even try a .exe */
1258 n = strlen(cmd);
1259 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
1260 return NULL;
1261
1262 fd = open(cmd, O_RDONLY);
1263 if (fd < 0)
1264 return NULL;
1265 n = read(fd, buf, sizeof(buf)-1);
1266 close(fd);
1267 if (n < 4) /* at least '#!/x' and not error */
1268 return NULL;
1269
1270 if (buf[0] != '#' || buf[1] != '!')
1271 return NULL;
1272 buf[n] = '\0';
1273 p = buf + strcspn(buf, "\r\n");
1274 if (!*p)
1275 return NULL;
1276
1277 *p = '\0';
1278 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
1279 return NULL;
1280 /* strip options */
1281 if ((opt = strchr(p+1, ' ')))
1282 *opt = '\0';
1283 return p+1;
1284 }
1285
1286 /*
1287 * exe_only means that we only want to detect .exe files, but not scripts
1288 * (which do not have an extension)
1289 */
1290 static char *lookup_prog(const char *dir, int dirlen, const char *cmd,
1291 int isexe, int exe_only)
1292 {
1293 char path[MAX_PATH];
1294 wchar_t wpath[MAX_PATH];
1295 snprintf(path, sizeof(path), "%.*s\\%s.exe", dirlen, dir, cmd);
1296
1297 if (xutftowcs_path(wpath, path) < 0)
1298 return NULL;
1299
1300 if (!isexe && _waccess(wpath, F_OK) == 0)
1301 return xstrdup(path);
1302 wpath[wcslen(wpath)-4] = '\0';
1303 if ((!exe_only || isexe) && _waccess(wpath, F_OK) == 0) {
1304 if (!(GetFileAttributesW(wpath) & FILE_ATTRIBUTE_DIRECTORY)) {
1305 path[strlen(path)-4] = '\0';
1306 return xstrdup(path);
1307 }
1308 }
1309 return NULL;
1310 }
1311
1312 /*
1313 * Determines the absolute path of cmd using the split path in path.
1314 * If cmd contains a slash or backslash, no lookup is performed.
1315 */
1316 static char *path_lookup(const char *cmd, int exe_only)
1317 {
1318 const char *path;
1319 char *prog = NULL;
1320 int len = strlen(cmd);
1321 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
1322
1323 if (strpbrk(cmd, "/\\"))
1324 return xstrdup(cmd);
1325
1326 path = mingw_getenv("PATH");
1327 if (!path)
1328 return NULL;
1329
1330 while (!prog) {
1331 const char *sep = strchrnul(path, ';');
1332 int dirlen = sep - path;
1333 if (dirlen)
1334 prog = lookup_prog(path, dirlen, cmd, isexe, exe_only);
1335 if (!*sep)
1336 break;
1337 path = sep + 1;
1338 }
1339
1340 return prog;
1341 }
1342
1343 static const wchar_t *wcschrnul(const wchar_t *s, wchar_t c)
1344 {
1345 while (*s && *s != c)
1346 s++;
1347 return s;
1348 }
1349
1350 /* Compare only keys */
1351 static int wenvcmp(const void *a, const void *b)
1352 {
1353 wchar_t *p = *(wchar_t **)a, *q = *(wchar_t **)b;
1354 size_t p_len, q_len;
1355
1356 /* Find the keys */
1357 p_len = wcschrnul(p, L'=') - p;
1358 q_len = wcschrnul(q, L'=') - q;
1359
1360 /* If the length differs, include the shorter key's NUL */
1361 if (p_len < q_len)
1362 p_len++;
1363 else if (p_len > q_len)
1364 p_len = q_len + 1;
1365
1366 return _wcsnicmp(p, q, p_len);
1367 }
1368
1369 /*
1370 * Build an environment block combining the inherited environment
1371 * merged with the given list of settings.
1372 *
1373 * Values of the form "KEY=VALUE" in deltaenv override inherited values.
1374 * Values of the form "KEY" in deltaenv delete inherited values.
1375 *
1376 * Multiple entries in deltaenv for the same key are explicitly allowed.
1377 *
1378 * We return a contiguous block of UNICODE strings with a final trailing
1379 * zero word.
1380 */
1381 static wchar_t *make_environment_block(char **deltaenv)
1382 {
1383 wchar_t *wenv = GetEnvironmentStringsW(), *wdeltaenv, *result, *p;
1384 size_t wlen, s, delta_size, size;
1385
1386 wchar_t **array = NULL;
1387 size_t alloc = 0, nr = 0, i;
1388
1389 size = 1; /* for extra NUL at the end */
1390
1391 /* If there is no deltaenv to apply, simply return a copy. */
1392 if (!deltaenv || !*deltaenv) {
1393 for (p = wenv; p && *p; ) {
1394 size_t s = wcslen(p) + 1;
1395 size += s;
1396 p += s;
1397 }
1398
1399 ALLOC_ARRAY(result, size);
1400 COPY_ARRAY(result, wenv, size);
1401 FreeEnvironmentStringsW(wenv);
1402 return result;
1403 }
1404
1405 /*
1406 * If there is a deltaenv, let's accumulate all keys into `array`,
1407 * sort them using the stable git_stable_qsort() and then copy,
1408 * skipping duplicate keys
1409 */
1410 for (p = wenv; p && *p; ) {
1411 ALLOC_GROW(array, nr + 1, alloc);
1412 s = wcslen(p) + 1;
1413 array[nr++] = p;
1414 p += s;
1415 size += s;
1416 }
1417
1418 /* (over-)assess size needed for wchar version of deltaenv */
1419 for (delta_size = 0, i = 0; deltaenv[i]; i++)
1420 delta_size += strlen(deltaenv[i]) * 2 + 1;
1421 ALLOC_ARRAY(wdeltaenv, delta_size);
1422
1423 /* convert the deltaenv, appending to array */
1424 for (i = 0, p = wdeltaenv; deltaenv[i]; i++) {
1425 ALLOC_GROW(array, nr + 1, alloc);
1426 wlen = xutftowcs(p, deltaenv[i], wdeltaenv + delta_size - p);
1427 array[nr++] = p;
1428 p += wlen + 1;
1429 }
1430
1431 git_stable_qsort(array, nr, sizeof(*array), wenvcmp);
1432 ALLOC_ARRAY(result, size + delta_size);
1433
1434 for (p = result, i = 0; i < nr; i++) {
1435 /* Skip any duplicate keys; last one wins */
1436 while (i + 1 < nr && !wenvcmp(array + i, array + i + 1))
1437 i++;
1438
1439 /* Skip "to delete" entry */
1440 if (!wcschr(array[i], L'='))
1441 continue;
1442
1443 size = wcslen(array[i]) + 1;
1444 COPY_ARRAY(p, array[i], size);
1445 p += size;
1446 }
1447 *p = L'\0';
1448
1449 free(array);
1450 free(wdeltaenv);
1451 FreeEnvironmentStringsW(wenv);
1452 return result;
1453 }
1454
1455 static void do_unset_environment_variables(void)
1456 {
1457 static int done;
1458 char *p = unset_environment_variables;
1459
1460 if (done || !p)
1461 return;
1462 done = 1;
1463
1464 for (;;) {
1465 char *comma = strchr(p, ',');
1466
1467 if (comma)
1468 *comma = '\0';
1469 unsetenv(p);
1470 if (!comma)
1471 break;
1472 p = comma + 1;
1473 }
1474 }
1475
1476 struct pinfo_t {
1477 struct pinfo_t *next;
1478 pid_t pid;
1479 HANDLE proc;
1480 };
1481 static struct pinfo_t *pinfo = NULL;
1482 CRITICAL_SECTION pinfo_cs;
1483
1484 /* Used to match and chomp off path components */
1485 static inline int match_last_path_component(const char *path, size_t *len,
1486 const char *component)
1487 {
1488 size_t component_len = strlen(component);
1489 if (*len < component_len + 1 ||
1490 !is_dir_sep(path[*len - component_len - 1]) ||
1491 fspathncmp(path + *len - component_len, component, component_len))
1492 return 0;
1493 *len -= component_len + 1;
1494 /* chomp off repeated dir separators */
1495 while (*len > 0 && is_dir_sep(path[*len - 1]))
1496 (*len)--;
1497 return 1;
1498 }
1499
1500 static int is_msys2_sh(const char *cmd)
1501 {
1502 if (!cmd)
1503 return 0;
1504
1505 if (!strcmp(cmd, "sh")) {
1506 static int ret = -1;
1507 char *p;
1508
1509 if (ret >= 0)
1510 return ret;
1511
1512 p = path_lookup(cmd, 0);
1513 if (!p)
1514 ret = 0;
1515 else {
1516 size_t len = strlen(p);
1517
1518 ret = match_last_path_component(p, &len, "sh.exe") &&
1519 match_last_path_component(p, &len, "bin") &&
1520 match_last_path_component(p, &len, "usr");
1521 free(p);
1522 }
1523 return ret;
1524 }
1525
1526 if (ends_with(cmd, "\\sh.exe")) {
1527 static char *sh;
1528
1529 if (!sh)
1530 sh = path_lookup("sh", 0);
1531
1532 return !fspathcmp(cmd, sh);
1533 }
1534
1535 return 0;
1536 }
1537
1538 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **deltaenv,
1539 const char *dir,
1540 int prepend_cmd, int fhin, int fhout, int fherr)
1541 {
1542 static int restrict_handle_inheritance = -1;
1543 STARTUPINFOEXW si;
1544 PROCESS_INFORMATION pi;
1545 LPPROC_THREAD_ATTRIBUTE_LIST attr_list = NULL;
1546 HANDLE stdhandles[3];
1547 DWORD stdhandles_count = 0;
1548 SIZE_T size;
1549 struct strbuf args;
1550 wchar_t wcmd[MAX_PATH], wdir[MAX_PATH], *wargs, *wenvblk = NULL;
1551 unsigned flags = CREATE_UNICODE_ENVIRONMENT;
1552 BOOL ret;
1553 HANDLE cons;
1554 const char *(*quote_arg)(const char *arg) =
1555 is_msys2_sh(cmd ? cmd : *argv) ?
1556 quote_arg_msys2 : quote_arg_msvc;
1557 const char *strace_env;
1558
1559 /* Make sure to override previous errors, if any */
1560 errno = 0;
1561
1562 if (restrict_handle_inheritance < 0)
1563 restrict_handle_inheritance = core_restrict_inherited_handles;
1564 /*
1565 * The following code to restrict which handles are inherited seems
1566 * to work properly only on Windows 7 and later, so let's disable it
1567 * on Windows Vista and 2008.
1568 */
1569 if (restrict_handle_inheritance < 0)
1570 restrict_handle_inheritance = GetVersion() >> 16 >= 7601;
1571
1572 do_unset_environment_variables();
1573
1574 /* Determine whether or not we are associated to a console */
1575 cons = CreateFileW(L"CONOUT$", GENERIC_WRITE,
1576 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
1577 FILE_ATTRIBUTE_NORMAL, NULL);
1578 if (cons == INVALID_HANDLE_VALUE) {
1579 /* There is no console associated with this process.
1580 * Since the child is a console process, Windows
1581 * would normally create a console window. But
1582 * since we'll be redirecting std streams, we do
1583 * not need the console.
1584 * It is necessary to use DETACHED_PROCESS
1585 * instead of CREATE_NO_WINDOW to make ssh
1586 * recognize that it has no console.
1587 */
1588 flags |= DETACHED_PROCESS;
1589 } else {
1590 /* There is already a console. If we specified
1591 * DETACHED_PROCESS here, too, Windows would
1592 * disassociate the child from the console.
1593 * The same is true for CREATE_NO_WINDOW.
1594 * Go figure!
1595 */
1596 CloseHandle(cons);
1597 }
1598 memset(&si, 0, sizeof(si));
1599 si.StartupInfo.cb = sizeof(si);
1600 si.StartupInfo.hStdInput = winansi_get_osfhandle(fhin);
1601 si.StartupInfo.hStdOutput = winansi_get_osfhandle(fhout);
1602 si.StartupInfo.hStdError = winansi_get_osfhandle(fherr);
1603
1604 /* The list of handles cannot contain duplicates */
1605 if (si.StartupInfo.hStdInput != INVALID_HANDLE_VALUE)
1606 stdhandles[stdhandles_count++] = si.StartupInfo.hStdInput;
1607 if (si.StartupInfo.hStdOutput != INVALID_HANDLE_VALUE &&
1608 si.StartupInfo.hStdOutput != si.StartupInfo.hStdInput)
1609 stdhandles[stdhandles_count++] = si.StartupInfo.hStdOutput;
1610 if (si.StartupInfo.hStdError != INVALID_HANDLE_VALUE &&
1611 si.StartupInfo.hStdError != si.StartupInfo.hStdInput &&
1612 si.StartupInfo.hStdError != si.StartupInfo.hStdOutput)
1613 stdhandles[stdhandles_count++] = si.StartupInfo.hStdError;
1614 if (stdhandles_count)
1615 si.StartupInfo.dwFlags |= STARTF_USESTDHANDLES;
1616
1617 if (*argv && !strcmp(cmd, *argv))
1618 wcmd[0] = L'\0';
1619 else if (xutftowcs_path(wcmd, cmd) < 0)
1620 return -1;
1621 if (dir && xutftowcs_path(wdir, dir) < 0)
1622 return -1;
1623
1624 /* concatenate argv, quoting args as we go */
1625 strbuf_init(&args, 0);
1626 if (prepend_cmd) {
1627 char *quoted = (char *)quote_arg(cmd);
1628 strbuf_addstr(&args, quoted);
1629 if (quoted != cmd)
1630 free(quoted);
1631 }
1632 for (; *argv; argv++) {
1633 char *quoted = (char *)quote_arg(*argv);
1634 if (*args.buf)
1635 strbuf_addch(&args, ' ');
1636 strbuf_addstr(&args, quoted);
1637 if (quoted != *argv)
1638 free(quoted);
1639 }
1640
1641 strace_env = getenv("GIT_STRACE_COMMANDS");
1642 if (strace_env) {
1643 char *p = path_lookup("strace.exe", 1);
1644 if (!p)
1645 return error("strace not found!");
1646 if (xutftowcs_path(wcmd, p) < 0) {
1647 free(p);
1648 return -1;
1649 }
1650 free(p);
1651 if (!strcmp("1", strace_env) ||
1652 !strcasecmp("yes", strace_env) ||
1653 !strcasecmp("true", strace_env))
1654 strbuf_insert(&args, 0, "strace ", 7);
1655 else {
1656 const char *quoted = quote_arg(strace_env);
1657 struct strbuf buf = STRBUF_INIT;
1658 strbuf_addf(&buf, "strace -o %s ", quoted);
1659 if (quoted != strace_env)
1660 free((char *)quoted);
1661 strbuf_insert(&args, 0, buf.buf, buf.len);
1662 strbuf_release(&buf);
1663 }
1664 }
1665
1666 ALLOC_ARRAY(wargs, st_add(st_mult(2, args.len), 1));
1667 xutftowcs(wargs, args.buf, 2 * args.len + 1);
1668 strbuf_release(&args);
1669
1670 wenvblk = make_environment_block(deltaenv);
1671
1672 memset(&pi, 0, sizeof(pi));
1673 if (restrict_handle_inheritance && stdhandles_count &&
1674 (InitializeProcThreadAttributeList(NULL, 1, 0, &size) ||
1675 GetLastError() == ERROR_INSUFFICIENT_BUFFER) &&
1676 (attr_list = (LPPROC_THREAD_ATTRIBUTE_LIST)
1677 (HeapAlloc(GetProcessHeap(), 0, size))) &&
1678 InitializeProcThreadAttributeList(attr_list, 1, 0, &size) &&
1679 UpdateProcThreadAttribute(attr_list, 0,
1680 PROC_THREAD_ATTRIBUTE_HANDLE_LIST,
1681 stdhandles,
1682 stdhandles_count * sizeof(HANDLE),
1683 NULL, NULL)) {
1684 si.lpAttributeList = attr_list;
1685 flags |= EXTENDED_STARTUPINFO_PRESENT;
1686 }
1687
1688 ret = CreateProcessW(*wcmd ? wcmd : NULL, wargs, NULL, NULL,
1689 stdhandles_count ? TRUE : FALSE,
1690 flags, wenvblk, dir ? wdir : NULL,
1691 &si.StartupInfo, &pi);
1692
1693 /*
1694 * On Windows 2008 R2, it seems that specifying certain types of handles
1695 * (such as FILE_TYPE_CHAR or FILE_TYPE_PIPE) will always produce an
1696 * error. Rather than playing finicky and fragile games, let's just try
1697 * to detect this situation and simply try again without restricting any
1698 * handle inheritance. This is still better than failing to create
1699 * processes.
1700 */
1701 if (!ret && restrict_handle_inheritance && stdhandles_count) {
1702 DWORD err = GetLastError();
1703 struct strbuf buf = STRBUF_INIT;
1704
1705 if (err != ERROR_NO_SYSTEM_RESOURCES &&
1706 /*
1707 * On Windows 7 and earlier, handles on pipes and character
1708 * devices are inherited automatically, and cannot be
1709 * specified in the thread handle list. Rather than trying
1710 * to catch each and every corner case (and running the
1711 * chance of *still* forgetting a few), let's just fall
1712 * back to creating the process without trying to limit the
1713 * handle inheritance.
1714 */
1715 !(err == ERROR_INVALID_PARAMETER &&
1716 GetVersion() >> 16 < 9200) &&
1717 !getenv("SUPPRESS_HANDLE_INHERITANCE_WARNING")) {
1718 DWORD fl = 0;
1719 int i;
1720
1721 setenv("SUPPRESS_HANDLE_INHERITANCE_WARNING", "1", 1);
1722
1723 for (i = 0; i < stdhandles_count; i++) {
1724 HANDLE h = stdhandles[i];
1725 strbuf_addf(&buf, "handle #%d: %p (type %lx, "
1726 "handle info (%d) %lx\n", i, h,
1727 GetFileType(h),
1728 GetHandleInformation(h, &fl),
1729 fl);
1730 }
1731 strbuf_addstr(&buf, "\nThis is a bug; please report it "
1732 "at\nhttps://github.com/git-for-windows/"
1733 "git/issues/new\n\n"
1734 "To suppress this warning, please set "
1735 "the environment variable\n\n"
1736 "\tSUPPRESS_HANDLE_INHERITANCE_WARNING=1"
1737 "\n");
1738 }
1739 restrict_handle_inheritance = 0;
1740 flags &= ~EXTENDED_STARTUPINFO_PRESENT;
1741 ret = CreateProcessW(*wcmd ? wcmd : NULL, wargs, NULL, NULL,
1742 TRUE, flags, wenvblk, dir ? wdir : NULL,
1743 &si.StartupInfo, &pi);
1744 if (!ret)
1745 errno = err_win_to_posix(GetLastError());
1746 if (ret && buf.len) {
1747 warning("failed to restrict file handles (%ld)\n\n%s",
1748 err, buf.buf);
1749 }
1750 strbuf_release(&buf);
1751 } else if (!ret)
1752 errno = err_win_to_posix(GetLastError());
1753
1754 if (si.lpAttributeList)
1755 DeleteProcThreadAttributeList(si.lpAttributeList);
1756 if (attr_list)
1757 HeapFree(GetProcessHeap(), 0, attr_list);
1758
1759 free(wenvblk);
1760 free(wargs);
1761
1762 if (!ret)
1763 return -1;
1764
1765 CloseHandle(pi.hThread);
1766
1767 /*
1768 * The process ID is the human-readable identifier of the process
1769 * that we want to present in log and error messages. The handle
1770 * is not useful for this purpose. But we cannot close it, either,
1771 * because it is not possible to turn a process ID into a process
1772 * handle after the process terminated.
1773 * Keep the handle in a list for waitpid.
1774 */
1775 EnterCriticalSection(&pinfo_cs);
1776 {
1777 struct pinfo_t *info = xmalloc(sizeof(struct pinfo_t));
1778 info->pid = pi.dwProcessId;
1779 info->proc = pi.hProcess;
1780 info->next = pinfo;
1781 pinfo = info;
1782 }
1783 LeaveCriticalSection(&pinfo_cs);
1784
1785 return (pid_t)pi.dwProcessId;
1786 }
1787
1788 static pid_t mingw_spawnv(const char *cmd, const char **argv, int prepend_cmd)
1789 {
1790 return mingw_spawnve_fd(cmd, argv, NULL, NULL, prepend_cmd, 0, 1, 2);
1791 }
1792
1793 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **deltaenv,
1794 const char *dir,
1795 int fhin, int fhout, int fherr)
1796 {
1797 pid_t pid;
1798 char *prog = path_lookup(cmd, 0);
1799
1800 if (!prog) {
1801 errno = ENOENT;
1802 pid = -1;
1803 }
1804 else {
1805 const char *interpr = parse_interpreter(prog);
1806
1807 if (interpr) {
1808 const char *argv0 = argv[0];
1809 char *iprog = path_lookup(interpr, 1);
1810 argv[0] = prog;
1811 if (!iprog) {
1812 errno = ENOENT;
1813 pid = -1;
1814 }
1815 else {
1816 pid = mingw_spawnve_fd(iprog, argv, deltaenv, dir, 1,
1817 fhin, fhout, fherr);
1818 free(iprog);
1819 }
1820 argv[0] = argv0;
1821 }
1822 else
1823 pid = mingw_spawnve_fd(prog, argv, deltaenv, dir, 0,
1824 fhin, fhout, fherr);
1825 free(prog);
1826 }
1827 return pid;
1828 }
1829
1830 static int try_shell_exec(const char *cmd, char *const *argv)
1831 {
1832 const char *interpr = parse_interpreter(cmd);
1833 char *prog;
1834 int pid = 0;
1835
1836 if (!interpr)
1837 return 0;
1838 prog = path_lookup(interpr, 1);
1839 if (prog) {
1840 int exec_id;
1841 int argc = 0;
1842 #ifndef _MSC_VER
1843 const
1844 #endif
1845 char **argv2;
1846 while (argv[argc]) argc++;
1847 ALLOC_ARRAY(argv2, argc + 1);
1848 argv2[0] = (char *)cmd; /* full path to the script file */
1849 COPY_ARRAY(&argv2[1], &argv[1], argc);
1850 exec_id = trace2_exec(prog, argv2);
1851 pid = mingw_spawnv(prog, argv2, 1);
1852 if (pid >= 0) {
1853 int status;
1854 if (waitpid(pid, &status, 0) < 0)
1855 status = 255;
1856 trace2_exec_result(exec_id, status);
1857 exit(status);
1858 }
1859 trace2_exec_result(exec_id, -1);
1860 pid = 1; /* indicate that we tried but failed */
1861 free(prog);
1862 free(argv2);
1863 }
1864 return pid;
1865 }
1866
1867 int mingw_execv(const char *cmd, char *const *argv)
1868 {
1869 /* check if git_command is a shell script */
1870 if (!try_shell_exec(cmd, argv)) {
1871 int pid, status;
1872 int exec_id;
1873
1874 exec_id = trace2_exec(cmd, (const char **)argv);
1875 pid = mingw_spawnv(cmd, (const char **)argv, 0);
1876 if (pid < 0) {
1877 trace2_exec_result(exec_id, -1);
1878 return -1;
1879 }
1880 if (waitpid(pid, &status, 0) < 0)
1881 status = 255;
1882 trace2_exec_result(exec_id, status);
1883 exit(status);
1884 }
1885 return -1;
1886 }
1887
1888 int mingw_execvp(const char *cmd, char *const *argv)
1889 {
1890 char *prog = path_lookup(cmd, 0);
1891
1892 if (prog) {
1893 mingw_execv(prog, argv);
1894 free(prog);
1895 } else
1896 errno = ENOENT;
1897
1898 return -1;
1899 }
1900
1901 int mingw_kill(pid_t pid, int sig)
1902 {
1903 if (pid > 0 && sig == SIGTERM) {
1904 HANDLE h = OpenProcess(PROCESS_TERMINATE, FALSE, pid);
1905
1906 if (TerminateProcess(h, -1)) {
1907 CloseHandle(h);
1908 return 0;
1909 }
1910
1911 errno = err_win_to_posix(GetLastError());
1912 CloseHandle(h);
1913 return -1;
1914 } else if (pid > 0 && sig == 0) {
1915 HANDLE h = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, pid);
1916 if (h) {
1917 CloseHandle(h);
1918 return 0;
1919 }
1920 }
1921
1922 errno = EINVAL;
1923 return -1;
1924 }
1925
1926 /*
1927 * UTF-8 versions of getenv(), putenv() and unsetenv().
1928 * Internally, they use the CRT's stock UNICODE routines
1929 * to avoid data loss.
1930 */
1931 char *mingw_getenv(const char *name)
1932 {
1933 #define GETENV_MAX_RETAIN 64
1934 static char *values[GETENV_MAX_RETAIN];
1935 static int value_counter;
1936 int len_key, len_value;
1937 wchar_t *w_key;
1938 char *value;
1939 wchar_t w_value[32768];
1940
1941 if (!name || !*name)
1942 return NULL;
1943
1944 len_key = strlen(name) + 1;
1945 /* We cannot use xcalloc() here because that uses getenv() itself */
1946 w_key = calloc(len_key, sizeof(wchar_t));
1947 if (!w_key)
1948 die("Out of memory, (tried to allocate %u wchar_t's)", len_key);
1949 xutftowcs(w_key, name, len_key);
1950 /* GetEnvironmentVariableW() only sets the last error upon failure */
1951 SetLastError(ERROR_SUCCESS);
1952 len_value = GetEnvironmentVariableW(w_key, w_value, ARRAY_SIZE(w_value));
1953 if (!len_value && GetLastError() == ERROR_ENVVAR_NOT_FOUND) {
1954 free(w_key);
1955 return NULL;
1956 }
1957 free(w_key);
1958
1959 len_value = len_value * 3 + 1;
1960 /* We cannot use xcalloc() here because that uses getenv() itself */
1961 value = calloc(len_value, sizeof(char));
1962 if (!value)
1963 die("Out of memory, (tried to allocate %u bytes)", len_value);
1964 xwcstoutf(value, w_value, len_value);
1965
1966 /*
1967 * We return `value` which is an allocated value and the caller is NOT
1968 * expecting to have to free it, so we keep a round-robin array,
1969 * invalidating the buffer after GETENV_MAX_RETAIN getenv() calls.
1970 */
1971 free(values[value_counter]);
1972 values[value_counter++] = value;
1973 if (value_counter >= ARRAY_SIZE(values))
1974 value_counter = 0;
1975
1976 return value;
1977 }
1978
1979 int mingw_putenv(const char *namevalue)
1980 {
1981 int size;
1982 wchar_t *wide, *equal;
1983 BOOL result;
1984
1985 if (!namevalue || !*namevalue)
1986 return 0;
1987
1988 size = strlen(namevalue) * 2 + 1;
1989 wide = calloc(size, sizeof(wchar_t));
1990 if (!wide)
1991 die("Out of memory, (tried to allocate %u wchar_t's)", size);
1992 xutftowcs(wide, namevalue, size);
1993 equal = wcschr(wide, L'=');
1994 if (!equal)
1995 result = SetEnvironmentVariableW(wide, NULL);
1996 else {
1997 *equal = L'\0';
1998 result = SetEnvironmentVariableW(wide, equal + 1);
1999 }
2000 free(wide);
2001
2002 if (!result)
2003 errno = err_win_to_posix(GetLastError());
2004
2005 return result ? 0 : -1;
2006 }
2007
2008 static void ensure_socket_initialization(void)
2009 {
2010 WSADATA wsa;
2011 static int initialized = 0;
2012
2013 if (initialized)
2014 return;
2015
2016 if (WSAStartup(MAKEWORD(2,2), &wsa))
2017 die("unable to initialize winsock subsystem, error %d",
2018 WSAGetLastError());
2019
2020 atexit((void(*)(void)) WSACleanup);
2021 initialized = 1;
2022 }
2023
2024 #undef gethostname
2025 int mingw_gethostname(char *name, int namelen)
2026 {
2027 ensure_socket_initialization();
2028 return gethostname(name, namelen);
2029 }
2030
2031 #undef gethostbyname
2032 struct hostent *mingw_gethostbyname(const char *host)
2033 {
2034 ensure_socket_initialization();
2035 return gethostbyname(host);
2036 }
2037
2038 #undef getaddrinfo
2039 int mingw_getaddrinfo(const char *node, const char *service,
2040 const struct addrinfo *hints, struct addrinfo **res)
2041 {
2042 ensure_socket_initialization();
2043 return getaddrinfo(node, service, hints, res);
2044 }
2045
2046 int mingw_socket(int domain, int type, int protocol)
2047 {
2048 int sockfd;
2049 SOCKET s;
2050
2051 ensure_socket_initialization();
2052 s = WSASocket(domain, type, protocol, NULL, 0, 0);
2053 if (s == INVALID_SOCKET) {
2054 /*
2055 * WSAGetLastError() values are regular BSD error codes
2056 * biased by WSABASEERR.
2057 * However, strerror() does not know about networking
2058 * specific errors, which are values beginning at 38 or so.
2059 * Therefore, we choose to leave the biased error code
2060 * in errno so that _if_ someone looks up the code somewhere,
2061 * then it is at least the number that are usually listed.
2062 */
2063 errno = WSAGetLastError();
2064 return -1;
2065 }
2066 /* convert into a file descriptor */
2067 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
2068 closesocket(s);
2069 return error("unable to make a socket file descriptor: %s",
2070 strerror(errno));
2071 }
2072 return sockfd;
2073 }
2074
2075 #undef connect
2076 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
2077 {
2078 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
2079 return connect(s, sa, sz);
2080 }
2081
2082 #undef bind
2083 int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz)
2084 {
2085 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
2086 return bind(s, sa, sz);
2087 }
2088
2089 #undef setsockopt
2090 int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen)
2091 {
2092 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
2093 return setsockopt(s, lvl, optname, (const char*)optval, optlen);
2094 }
2095
2096 #undef shutdown
2097 int mingw_shutdown(int sockfd, int how)
2098 {
2099 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
2100 return shutdown(s, how);
2101 }
2102
2103 #undef listen
2104 int mingw_listen(int sockfd, int backlog)
2105 {
2106 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
2107 return listen(s, backlog);
2108 }
2109
2110 #undef accept
2111 int mingw_accept(int sockfd1, struct sockaddr *sa, socklen_t *sz)
2112 {
2113 int sockfd2;
2114
2115 SOCKET s1 = (SOCKET)_get_osfhandle(sockfd1);
2116 SOCKET s2 = accept(s1, sa, sz);
2117
2118 /* convert into a file descriptor */
2119 if ((sockfd2 = _open_osfhandle(s2, O_RDWR|O_BINARY)) < 0) {
2120 int err = errno;
2121 closesocket(s2);
2122 return error("unable to make a socket file descriptor: %s",
2123 strerror(err));
2124 }
2125 return sockfd2;
2126 }
2127
2128 #undef rename
2129 int mingw_rename(const char *pold, const char *pnew)
2130 {
2131 DWORD attrs, gle;
2132 int tries = 0;
2133 wchar_t wpold[MAX_PATH], wpnew[MAX_PATH];
2134 if (xutftowcs_path(wpold, pold) < 0 || xutftowcs_path(wpnew, pnew) < 0)
2135 return -1;
2136
2137 /*
2138 * Try native rename() first to get errno right.
2139 * It is based on MoveFile(), which cannot overwrite existing files.
2140 */
2141 if (!_wrename(wpold, wpnew))
2142 return 0;
2143 if (errno != EEXIST)
2144 return -1;
2145 repeat:
2146 if (MoveFileExW(wpold, wpnew, MOVEFILE_REPLACE_EXISTING))
2147 return 0;
2148 /* TODO: translate more errors */
2149 gle = GetLastError();
2150 if (gle == ERROR_ACCESS_DENIED &&
2151 (attrs = GetFileAttributesW(wpnew)) != INVALID_FILE_ATTRIBUTES) {
2152 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
2153 DWORD attrsold = GetFileAttributesW(wpold);
2154 if (attrsold == INVALID_FILE_ATTRIBUTES ||
2155 !(attrsold & FILE_ATTRIBUTE_DIRECTORY))
2156 errno = EISDIR;
2157 else if (!_wrmdir(wpnew))
2158 goto repeat;
2159 return -1;
2160 }
2161 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
2162 SetFileAttributesW(wpnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
2163 if (MoveFileExW(wpold, wpnew, MOVEFILE_REPLACE_EXISTING))
2164 return 0;
2165 gle = GetLastError();
2166 /* revert file attributes on failure */
2167 SetFileAttributesW(wpnew, attrs);
2168 }
2169 }
2170 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
2171 /*
2172 * We assume that some other process had the source or
2173 * destination file open at the wrong moment and retry.
2174 * In order to give the other process a higher chance to
2175 * complete its operation, we give up our time slice now.
2176 * If we have to retry again, we do sleep a bit.
2177 */
2178 Sleep(delay[tries]);
2179 tries++;
2180 goto repeat;
2181 }
2182 if (gle == ERROR_ACCESS_DENIED &&
2183 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
2184 "Should I try again?", pold, pnew))
2185 goto repeat;
2186
2187 errno = EACCES;
2188 return -1;
2189 }
2190
2191 /*
2192 * Note that this doesn't return the actual pagesize, but
2193 * the allocation granularity. If future Windows specific git code
2194 * needs the real getpagesize function, we need to find another solution.
2195 */
2196 int mingw_getpagesize(void)
2197 {
2198 SYSTEM_INFO si;
2199 GetSystemInfo(&si);
2200 return si.dwAllocationGranularity;
2201 }
2202
2203 /* See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724435.aspx */
2204 enum EXTENDED_NAME_FORMAT {
2205 NameDisplay = 3,
2206 NameUserPrincipal = 8
2207 };
2208
2209 static char *get_extended_user_info(enum EXTENDED_NAME_FORMAT type)
2210 {
2211 DECLARE_PROC_ADDR(secur32.dll, BOOL, SEC_ENTRY, GetUserNameExW,
2212 enum EXTENDED_NAME_FORMAT, LPCWSTR, PULONG);
2213 static wchar_t wbuffer[1024];
2214 DWORD len;
2215
2216 if (!INIT_PROC_ADDR(GetUserNameExW))
2217 return NULL;
2218
2219 len = ARRAY_SIZE(wbuffer);
2220 if (GetUserNameExW(type, wbuffer, &len)) {
2221 char *converted = xmalloc((len *= 3));
2222 if (xwcstoutf(converted, wbuffer, len) >= 0)
2223 return converted;
2224 free(converted);
2225 }
2226
2227 return NULL;
2228 }
2229
2230 char *mingw_query_user_email(void)
2231 {
2232 return get_extended_user_info(NameUserPrincipal);
2233 }
2234
2235 struct passwd *getpwuid(int uid)
2236 {
2237 static unsigned initialized;
2238 static char user_name[100];
2239 static struct passwd *p;
2240 wchar_t buf[100];
2241 DWORD len;
2242
2243 if (initialized)
2244 return p;
2245
2246 len = ARRAY_SIZE(buf);
2247 if (!GetUserNameW(buf, &len)) {
2248 initialized = 1;
2249 return NULL;
2250 }
2251
2252 if (xwcstoutf(user_name, buf, sizeof(user_name)) < 0) {
2253 initialized = 1;
2254 return NULL;
2255 }
2256
2257 p = xmalloc(sizeof(*p));
2258 p->pw_name = user_name;
2259 p->pw_gecos = get_extended_user_info(NameDisplay);
2260 if (!p->pw_gecos)
2261 p->pw_gecos = "unknown";
2262 p->pw_dir = NULL;
2263
2264 initialized = 1;
2265 return p;
2266 }
2267
2268 static HANDLE timer_event;
2269 static HANDLE timer_thread;
2270 static int timer_interval;
2271 static int one_shot;
2272 static sig_handler_t timer_fn = SIG_DFL, sigint_fn = SIG_DFL;
2273
2274 /* The timer works like this:
2275 * The thread, ticktack(), is a trivial routine that most of the time
2276 * only waits to receive the signal to terminate. The main thread tells
2277 * the thread to terminate by setting the timer_event to the signalled
2278 * state.
2279 * But ticktack() interrupts the wait state after the timer's interval
2280 * length to call the signal handler.
2281 */
2282
2283 static unsigned __stdcall ticktack(void *dummy)
2284 {
2285 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
2286 mingw_raise(SIGALRM);
2287 if (one_shot)
2288 break;
2289 }
2290 return 0;
2291 }
2292
2293 static int start_timer_thread(void)
2294 {
2295 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
2296 if (timer_event) {
2297 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
2298 if (!timer_thread )
2299 return errno = ENOMEM,
2300 error("cannot start timer thread");
2301 } else
2302 return errno = ENOMEM,
2303 error("cannot allocate resources for timer");
2304 return 0;
2305 }
2306
2307 static void stop_timer_thread(void)
2308 {
2309 if (timer_event)
2310 SetEvent(timer_event); /* tell thread to terminate */
2311 if (timer_thread) {
2312 int rc = WaitForSingleObject(timer_thread, 10000);
2313 if (rc == WAIT_TIMEOUT)
2314 error("timer thread did not terminate timely");
2315 else if (rc != WAIT_OBJECT_0)
2316 error("waiting for timer thread failed: %lu",
2317 GetLastError());
2318 CloseHandle(timer_thread);
2319 }
2320 if (timer_event)
2321 CloseHandle(timer_event);
2322 timer_event = NULL;
2323 timer_thread = NULL;
2324 }
2325
2326 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
2327 {
2328 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
2329 }
2330
2331 int setitimer(int type, struct itimerval *in, struct itimerval *out)
2332 {
2333 static const struct timeval zero;
2334 static int atexit_done;
2335
2336 if (out)
2337 return errno = EINVAL,
2338 error("setitimer param 3 != NULL not implemented");
2339 if (!is_timeval_eq(&in->it_interval, &zero) &&
2340 !is_timeval_eq(&in->it_interval, &in->it_value))
2341 return errno = EINVAL,
2342 error("setitimer: it_interval must be zero or eq it_value");
2343
2344 if (timer_thread)
2345 stop_timer_thread();
2346
2347 if (is_timeval_eq(&in->it_value, &zero) &&
2348 is_timeval_eq(&in->it_interval, &zero))
2349 return 0;
2350
2351 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
2352 one_shot = is_timeval_eq(&in->it_interval, &zero);
2353 if (!atexit_done) {
2354 atexit(stop_timer_thread);
2355 atexit_done = 1;
2356 }
2357 return start_timer_thread();
2358 }
2359
2360 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
2361 {
2362 if (sig != SIGALRM)
2363 return errno = EINVAL,
2364 error("sigaction only implemented for SIGALRM");
2365 if (out)
2366 return errno = EINVAL,
2367 error("sigaction: param 3 != NULL not implemented");
2368
2369 timer_fn = in->sa_handler;
2370 return 0;
2371 }
2372
2373 #undef signal
2374 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
2375 {
2376 sig_handler_t old;
2377
2378 switch (sig) {
2379 case SIGALRM:
2380 old = timer_fn;
2381 timer_fn = handler;
2382 break;
2383
2384 case SIGINT:
2385 old = sigint_fn;
2386 sigint_fn = handler;
2387 break;
2388
2389 default:
2390 return signal(sig, handler);
2391 }
2392
2393 return old;
2394 }
2395
2396 #undef raise
2397 int mingw_raise(int sig)
2398 {
2399 switch (sig) {
2400 case SIGALRM:
2401 if (timer_fn == SIG_DFL) {
2402 if (isatty(STDERR_FILENO))
2403 fputs("Alarm clock\n", stderr);
2404 exit(128 + SIGALRM);
2405 } else if (timer_fn != SIG_IGN)
2406 timer_fn(SIGALRM);
2407 return 0;
2408
2409 case SIGINT:
2410 if (sigint_fn == SIG_DFL)
2411 exit(128 + SIGINT);
2412 else if (sigint_fn != SIG_IGN)
2413 sigint_fn(SIGINT);
2414 return 0;
2415
2416 #if defined(_MSC_VER)
2417 case SIGILL:
2418 case SIGFPE:
2419 case SIGSEGV:
2420 case SIGTERM:
2421 case SIGBREAK:
2422 case SIGABRT:
2423 case SIGABRT_COMPAT:
2424 /*
2425 * The <signal.h> header in the MS C Runtime defines 8 signals
2426 * as being supported on the platform. Anything else causes an
2427 * "Invalid signal or error" (which in DEBUG builds causes the
2428 * Abort/Retry/Ignore dialog). We by-pass the CRT for things we
2429 * already know will fail.
2430 */
2431 return raise(sig);
2432 default:
2433 errno = EINVAL;
2434 return -1;
2435
2436 #else
2437
2438 default:
2439 return raise(sig);
2440
2441 #endif
2442
2443 }
2444 }
2445
2446 int link(const char *oldpath, const char *newpath)
2447 {
2448 wchar_t woldpath[MAX_PATH], wnewpath[MAX_PATH];
2449 if (xutftowcs_path(woldpath, oldpath) < 0 ||
2450 xutftowcs_path(wnewpath, newpath) < 0)
2451 return -1;
2452
2453 if (!CreateHardLinkW(wnewpath, woldpath, NULL)) {
2454 errno = err_win_to_posix(GetLastError());
2455 return -1;
2456 }
2457 return 0;
2458 }
2459
2460 pid_t waitpid(pid_t pid, int *status, int options)
2461 {
2462 HANDLE h = OpenProcess(SYNCHRONIZE | PROCESS_QUERY_INFORMATION,
2463 FALSE, pid);
2464 if (!h) {
2465 errno = ECHILD;
2466 return -1;
2467 }
2468
2469 if (pid > 0 && options & WNOHANG) {
2470 if (WAIT_OBJECT_0 != WaitForSingleObject(h, 0)) {
2471 CloseHandle(h);
2472 return 0;
2473 }
2474 options &= ~WNOHANG;
2475 }
2476
2477 if (options == 0) {
2478 struct pinfo_t **ppinfo;
2479 if (WaitForSingleObject(h, INFINITE) != WAIT_OBJECT_0) {
2480 CloseHandle(h);
2481 return 0;
2482 }
2483
2484 if (status)
2485 GetExitCodeProcess(h, (LPDWORD)status);
2486
2487 EnterCriticalSection(&pinfo_cs);
2488
2489 ppinfo = &pinfo;
2490 while (*ppinfo) {
2491 struct pinfo_t *info = *ppinfo;
2492 if (info->pid == pid) {
2493 CloseHandle(info->proc);
2494 *ppinfo = info->next;
2495 free(info);
2496 break;
2497 }
2498 ppinfo = &info->next;
2499 }
2500
2501 LeaveCriticalSection(&pinfo_cs);
2502
2503 CloseHandle(h);
2504 return pid;
2505 }
2506 CloseHandle(h);
2507
2508 errno = EINVAL;
2509 return -1;
2510 }
2511
2512 int xutftowcsn(wchar_t *wcs, const char *utfs, size_t wcslen, int utflen)
2513 {
2514 int upos = 0, wpos = 0;
2515 const unsigned char *utf = (const unsigned char*) utfs;
2516 if (!utf || !wcs || wcslen < 1) {
2517 errno = EINVAL;
2518 return -1;
2519 }
2520 /* reserve space for \0 */
2521 wcslen--;
2522 if (utflen < 0)
2523 utflen = INT_MAX;
2524
2525 while (upos < utflen) {
2526 int c = utf[upos++] & 0xff;
2527 if (utflen == INT_MAX && c == 0)
2528 break;
2529
2530 if (wpos >= wcslen) {
2531 wcs[wpos] = 0;
2532 errno = ERANGE;
2533 return -1;
2534 }
2535
2536 if (c < 0x80) {
2537 /* ASCII */
2538 wcs[wpos++] = c;
2539 } else if (c >= 0xc2 && c < 0xe0 && upos < utflen &&
2540 (utf[upos] & 0xc0) == 0x80) {
2541 /* 2-byte utf-8 */
2542 c = ((c & 0x1f) << 6);
2543 c |= (utf[upos++] & 0x3f);
2544 wcs[wpos++] = c;
2545 } else if (c >= 0xe0 && c < 0xf0 && upos + 1 < utflen &&
2546 !(c == 0xe0 && utf[upos] < 0xa0) && /* over-long encoding */
2547 (utf[upos] & 0xc0) == 0x80 &&
2548 (utf[upos + 1] & 0xc0) == 0x80) {
2549 /* 3-byte utf-8 */
2550 c = ((c & 0x0f) << 12);
2551 c |= ((utf[upos++] & 0x3f) << 6);
2552 c |= (utf[upos++] & 0x3f);
2553 wcs[wpos++] = c;
2554 } else if (c >= 0xf0 && c < 0xf5 && upos + 2 < utflen &&
2555 wpos + 1 < wcslen &&
2556 !(c == 0xf0 && utf[upos] < 0x90) && /* over-long encoding */
2557 !(c == 0xf4 && utf[upos] >= 0x90) && /* > \u10ffff */
2558 (utf[upos] & 0xc0) == 0x80 &&
2559 (utf[upos + 1] & 0xc0) == 0x80 &&
2560 (utf[upos + 2] & 0xc0) == 0x80) {
2561 /* 4-byte utf-8: convert to \ud8xx \udcxx surrogate pair */
2562 c = ((c & 0x07) << 18);
2563 c |= ((utf[upos++] & 0x3f) << 12);
2564 c |= ((utf[upos++] & 0x3f) << 6);
2565 c |= (utf[upos++] & 0x3f);
2566 c -= 0x10000;
2567 wcs[wpos++] = 0xd800 | (c >> 10);
2568 wcs[wpos++] = 0xdc00 | (c & 0x3ff);
2569 } else if (c >= 0xa0) {
2570 /* invalid utf-8 byte, printable unicode char: convert 1:1 */
2571 wcs[wpos++] = c;
2572 } else {
2573 /* invalid utf-8 byte, non-printable unicode: convert to hex */
2574 static const char *hex = "0123456789abcdef";
2575 wcs[wpos++] = hex[c >> 4];
2576 if (wpos < wcslen)
2577 wcs[wpos++] = hex[c & 0x0f];
2578 }
2579 }
2580 wcs[wpos] = 0;
2581 return wpos;
2582 }
2583
2584 int xwcstoutf(char *utf, const wchar_t *wcs, size_t utflen)
2585 {
2586 if (!wcs || !utf || utflen < 1) {
2587 errno = EINVAL;
2588 return -1;
2589 }
2590 utflen = WideCharToMultiByte(CP_UTF8, 0, wcs, -1, utf, utflen, NULL, NULL);
2591 if (utflen)
2592 return utflen - 1;
2593 errno = ERANGE;
2594 return -1;
2595 }
2596
2597 static void setup_windows_environment(void)
2598 {
2599 char *tmp = getenv("TMPDIR");
2600
2601 /* on Windows it is TMP and TEMP */
2602 if (!tmp) {
2603 if (!(tmp = getenv("TMP")))
2604 tmp = getenv("TEMP");
2605 if (tmp) {
2606 setenv("TMPDIR", tmp, 1);
2607 tmp = getenv("TMPDIR");
2608 }
2609 }
2610
2611 if (tmp) {
2612 /*
2613 * Convert all dir separators to forward slashes,
2614 * to help shell commands called from the Git
2615 * executable (by not mistaking the dir separators
2616 * for escape characters).
2617 */
2618 convert_slashes(tmp);
2619 }
2620
2621 /* simulate TERM to enable auto-color (see color.c) */
2622 if (!getenv("TERM"))
2623 setenv("TERM", "cygwin", 1);
2624
2625 /* calculate HOME if not set */
2626 if (!getenv("HOME")) {
2627 /*
2628 * try $HOMEDRIVE$HOMEPATH - the home share may be a network
2629 * location, thus also check if the path exists (i.e. is not
2630 * disconnected)
2631 */
2632 if ((tmp = getenv("HOMEDRIVE"))) {
2633 struct strbuf buf = STRBUF_INIT;
2634 strbuf_addstr(&buf, tmp);
2635 if ((tmp = getenv("HOMEPATH"))) {
2636 strbuf_addstr(&buf, tmp);
2637 if (is_directory(buf.buf))
2638 setenv("HOME", buf.buf, 1);
2639 else
2640 tmp = NULL; /* use $USERPROFILE */
2641 }
2642 strbuf_release(&buf);
2643 }
2644 /* use $USERPROFILE if the home share is not available */
2645 if (!tmp && (tmp = getenv("USERPROFILE")))
2646 setenv("HOME", tmp, 1);
2647 }
2648 }
2649
2650 static PSID get_current_user_sid(void)
2651 {
2652 HANDLE token;
2653 DWORD len = 0;
2654 PSID result = NULL;
2655
2656 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &token))
2657 return NULL;
2658
2659 if (!GetTokenInformation(token, TokenUser, NULL, 0, &len)) {
2660 TOKEN_USER *info = xmalloc((size_t)len);
2661 if (GetTokenInformation(token, TokenUser, info, len, &len)) {
2662 len = GetLengthSid(info->User.Sid);
2663 result = xmalloc(len);
2664 if (!CopySid(len, result, info->User.Sid)) {
2665 error(_("failed to copy SID (%ld)"),
2666 GetLastError());
2667 FREE_AND_NULL(result);
2668 }
2669 }
2670 FREE_AND_NULL(info);
2671 }
2672 CloseHandle(token);
2673
2674 return result;
2675 }
2676
2677 int is_path_owned_by_current_sid(const char *path, struct strbuf *report)
2678 {
2679 WCHAR wpath[MAX_PATH];
2680 PSID sid = NULL;
2681 PSECURITY_DESCRIPTOR descriptor = NULL;
2682 DWORD err;
2683
2684 static wchar_t home[MAX_PATH];
2685
2686 int result = 0;
2687
2688 if (xutftowcs_path(wpath, path) < 0)
2689 return 0;
2690
2691 /*
2692 * On Windows, the home directory is owned by the administrator, but for
2693 * all practical purposes, it belongs to the user. Do pretend that it is
2694 * owned by the user.
2695 */
2696 if (!*home) {
2697 DWORD size = ARRAY_SIZE(home);
2698 DWORD len = GetEnvironmentVariableW(L"HOME", home, size);
2699 if (!len || len > size)
2700 wcscpy(home, L"::N/A::");
2701 }
2702 if (!wcsicmp(wpath, home))
2703 return 1;
2704
2705 /* Get the owner SID */
2706 err = GetNamedSecurityInfoW(wpath, SE_FILE_OBJECT,
2707 OWNER_SECURITY_INFORMATION |
2708 DACL_SECURITY_INFORMATION,
2709 &sid, NULL, NULL, NULL, &descriptor);
2710
2711 if (err != ERROR_SUCCESS)
2712 error(_("failed to get owner for '%s' (%ld)"), path, err);
2713 else if (sid && IsValidSid(sid)) {
2714 /* Now, verify that the SID matches the current user's */
2715 static PSID current_user_sid;
2716
2717 if (!current_user_sid)
2718 current_user_sid = get_current_user_sid();
2719
2720 if (current_user_sid &&
2721 IsValidSid(current_user_sid) &&
2722 EqualSid(sid, current_user_sid))
2723 result = 1;
2724 else if (report) {
2725 LPSTR str1, str2, to_free1 = NULL, to_free2 = NULL;
2726
2727 if (ConvertSidToStringSidA(sid, &str1))
2728 to_free1 = str1;
2729 else
2730 str1 = "(inconvertible)";
2731
2732 if (!current_user_sid)
2733 str2 = "(none)";
2734 else if (!IsValidSid(current_user_sid))
2735 str2 = "(invalid)";
2736 else if (ConvertSidToStringSidA(current_user_sid, &str2))
2737 to_free2 = str2;
2738 else
2739 str2 = "(inconvertible)";
2740 strbuf_addf(report,
2741 "'%s' is owned by:\n"
2742 "\t'%s'\nbut the current user is:\n"
2743 "\t'%s'\n", path, str1, str2);
2744 LocalFree(to_free1);
2745 LocalFree(to_free2);
2746 }
2747 }
2748
2749 /*
2750 * We can release the security descriptor struct only now because `sid`
2751 * actually points into this struct.
2752 */
2753 if (descriptor)
2754 LocalFree(descriptor);
2755
2756 return result;
2757 }
2758
2759 int is_valid_win32_path(const char *path, int allow_literal_nul)
2760 {
2761 const char *p = path;
2762 int preceding_space_or_period = 0, i = 0, periods = 0;
2763
2764 if (!protect_ntfs)
2765 return 1;
2766
2767 skip_dos_drive_prefix((char **)&path);
2768 goto segment_start;
2769
2770 for (;;) {
2771 char c = *(path++);
2772 switch (c) {
2773 case '\0':
2774 case '/': case '\\':
2775 /* cannot end in ` ` or `.`, except for `.` and `..` */
2776 if (preceding_space_or_period &&
2777 (i != periods || periods > 2))
2778 return 0;
2779 if (!c)
2780 return 1;
2781
2782 i = periods = preceding_space_or_period = 0;
2783
2784 segment_start:
2785 switch (*path) {
2786 case 'a': case 'A': /* AUX */
2787 if (((c = path[++i]) != 'u' && c != 'U') ||
2788 ((c = path[++i]) != 'x' && c != 'X')) {
2789 not_a_reserved_name:
2790 path += i;
2791 continue;
2792 }
2793 break;
2794 case 'c': case 'C':
2795 /* COM1 ... COM9, CON, CONIN$, CONOUT$ */
2796 if ((c = path[++i]) != 'o' && c != 'O')
2797 goto not_a_reserved_name;
2798 c = path[++i];
2799 if (c == 'm' || c == 'M') { /* COM1 ... COM9 */
2800 c = path[++i];
2801 if (c < '1' || c > '9')
2802 goto not_a_reserved_name;
2803 } else if (c == 'n' || c == 'N') { /* CON */
2804 c = path[i + 1];
2805 if ((c == 'i' || c == 'I') &&
2806 ((c = path[i + 2]) == 'n' ||
2807 c == 'N') &&
2808 path[i + 3] == '$')
2809 i += 3; /* CONIN$ */
2810 else if ((c == 'o' || c == 'O') &&
2811 ((c = path[i + 2]) == 'u' ||
2812 c == 'U') &&
2813 ((c = path[i + 3]) == 't' ||
2814 c == 'T') &&
2815 path[i + 4] == '$')
2816 i += 4; /* CONOUT$ */
2817 } else
2818 goto not_a_reserved_name;
2819 break;
2820 case 'l': case 'L': /* LPT<N> */
2821 if (((c = path[++i]) != 'p' && c != 'P') ||
2822 ((c = path[++i]) != 't' && c != 'T') ||
2823 !isdigit(path[++i]))
2824 goto not_a_reserved_name;
2825 break;
2826 case 'n': case 'N': /* NUL */
2827 if (((c = path[++i]) != 'u' && c != 'U') ||
2828 ((c = path[++i]) != 'l' && c != 'L') ||
2829 (allow_literal_nul &&
2830 !path[i + 1] && p == path))
2831 goto not_a_reserved_name;
2832 break;
2833 case 'p': case 'P': /* PRN */
2834 if (((c = path[++i]) != 'r' && c != 'R') ||
2835 ((c = path[++i]) != 'n' && c != 'N'))
2836 goto not_a_reserved_name;
2837 break;
2838 default:
2839 continue;
2840 }
2841
2842 /*
2843 * So far, this looks like a reserved name. Let's see
2844 * whether it actually is one: trailing spaces, a file
2845 * extension, or an NTFS Alternate Data Stream do not
2846 * matter, the name is still reserved if any of those
2847 * follow immediately after the actual name.
2848 */
2849 i++;
2850 if (path[i] == ' ') {
2851 preceding_space_or_period = 1;
2852 while (path[++i] == ' ')
2853 ; /* skip all spaces */
2854 }
2855
2856 c = path[i];
2857 if (c && c != '.' && c != ':' && !is_xplatform_dir_sep(c))
2858 goto not_a_reserved_name;
2859
2860 /* contains reserved name */
2861 return 0;
2862 case '.':
2863 periods++;
2864 /* fallthru */
2865 case ' ':
2866 preceding_space_or_period = 1;
2867 i++;
2868 continue;
2869 case ':': /* DOS drive prefix was already skipped */
2870 case '<': case '>': case '"': case '|': case '?': case '*':
2871 /* illegal character */
2872 return 0;
2873 default:
2874 if (c > '\0' && c < '\x20')
2875 /* illegal character */
2876 return 0;
2877 }
2878 preceding_space_or_period = 0;
2879 i++;
2880 }
2881 }
2882
2883 #if !defined(_MSC_VER)
2884 /*
2885 * Disable MSVCRT command line wildcard expansion (__getmainargs called from
2886 * mingw startup code, see init.c in mingw runtime).
2887 */
2888 int _CRT_glob = 0;
2889 #endif
2890
2891 static NORETURN void die_startup(void)
2892 {
2893 fputs("fatal: not enough memory for initialization", stderr);
2894 exit(128);
2895 }
2896
2897 static void *malloc_startup(size_t size)
2898 {
2899 void *result = malloc(size);
2900 if (!result)
2901 die_startup();
2902 return result;
2903 }
2904
2905 static char *wcstoutfdup_startup(char *buffer, const wchar_t *wcs, size_t len)
2906 {
2907 len = xwcstoutf(buffer, wcs, len) + 1;
2908 return memcpy(malloc_startup(len), buffer, len);
2909 }
2910
2911 static void maybe_redirect_std_handle(const wchar_t *key, DWORD std_id, int fd,
2912 DWORD desired_access, DWORD flags)
2913 {
2914 DWORD create_flag = fd ? OPEN_ALWAYS : OPEN_EXISTING;
2915 wchar_t buf[MAX_PATH];
2916 DWORD max = ARRAY_SIZE(buf);
2917 HANDLE handle;
2918 DWORD ret = GetEnvironmentVariableW(key, buf, max);
2919
2920 if (!ret || ret >= max)
2921 return;
2922
2923 /* make sure this does not leak into child processes */
2924 SetEnvironmentVariableW(key, NULL);
2925 if (!wcscmp(buf, L"off")) {
2926 close(fd);
2927 handle = GetStdHandle(std_id);
2928 if (handle != INVALID_HANDLE_VALUE)
2929 CloseHandle(handle);
2930 return;
2931 }
2932 if (std_id == STD_ERROR_HANDLE && !wcscmp(buf, L"2>&1")) {
2933 handle = GetStdHandle(STD_OUTPUT_HANDLE);
2934 if (handle == INVALID_HANDLE_VALUE) {
2935 close(fd);
2936 handle = GetStdHandle(std_id);
2937 if (handle != INVALID_HANDLE_VALUE)
2938 CloseHandle(handle);
2939 } else {
2940 int new_fd = _open_osfhandle((intptr_t)handle, O_BINARY);
2941 SetStdHandle(std_id, handle);
2942 dup2(new_fd, fd);
2943 /* do *not* close the new_fd: that would close stdout */
2944 }
2945 return;
2946 }
2947 handle = CreateFileW(buf, desired_access, 0, NULL, create_flag,
2948 flags, NULL);
2949 if (handle != INVALID_HANDLE_VALUE) {
2950 int new_fd = _open_osfhandle((intptr_t)handle, O_BINARY);
2951 SetStdHandle(std_id, handle);
2952 dup2(new_fd, fd);
2953 close(new_fd);
2954 }
2955 }
2956
2957 static void maybe_redirect_std_handles(void)
2958 {
2959 maybe_redirect_std_handle(L"GIT_REDIRECT_STDIN", STD_INPUT_HANDLE, 0,
2960 GENERIC_READ, FILE_ATTRIBUTE_NORMAL);
2961 maybe_redirect_std_handle(L"GIT_REDIRECT_STDOUT", STD_OUTPUT_HANDLE, 1,
2962 GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL);
2963 maybe_redirect_std_handle(L"GIT_REDIRECT_STDERR", STD_ERROR_HANDLE, 2,
2964 GENERIC_WRITE, FILE_FLAG_NO_BUFFERING);
2965 }
2966
2967 #ifdef _MSC_VER
2968 #ifdef _DEBUG
2969 #include <crtdbg.h>
2970 #endif
2971 #endif
2972
2973 /*
2974 * We implement wmain() and compile with -municode, which would
2975 * normally ignore main(), but we call the latter from the former
2976 * so that we can handle non-ASCII command-line parameters
2977 * appropriately.
2978 *
2979 * To be more compatible with the core git code, we convert
2980 * argv into UTF8 and pass them directly to main().
2981 */
2982 int wmain(int argc, const wchar_t **wargv)
2983 {
2984 int i, maxlen, exit_status;
2985 char *buffer, **save;
2986 const char **argv;
2987
2988 trace2_initialize_clock();
2989
2990 #ifdef _MSC_VER
2991 #ifdef _DEBUG
2992 _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
2993 #endif
2994
2995 #ifdef USE_MSVC_CRTDBG
2996 _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
2997 #endif
2998 #endif
2999
3000 maybe_redirect_std_handles();
3001
3002 /* determine size of argv and environ conversion buffer */
3003 maxlen = wcslen(wargv[0]);
3004 for (i = 1; i < argc; i++)
3005 maxlen = max(maxlen, wcslen(wargv[i]));
3006
3007 /* allocate buffer (wchar_t encodes to max 3 UTF-8 bytes) */
3008 maxlen = 3 * maxlen + 1;
3009 buffer = malloc_startup(maxlen);
3010
3011 /*
3012 * Create a UTF-8 version of w_argv. Also create a "save" copy
3013 * to remember all the string pointers because parse_options()
3014 * will remove claimed items from the argv that we pass down.
3015 */
3016 ALLOC_ARRAY(argv, argc + 1);
3017 ALLOC_ARRAY(save, argc + 1);
3018 for (i = 0; i < argc; i++)
3019 argv[i] = save[i] = wcstoutfdup_startup(buffer, wargv[i], maxlen);
3020 argv[i] = save[i] = NULL;
3021 free(buffer);
3022
3023 /* fix Windows specific environment settings */
3024 setup_windows_environment();
3025
3026 unset_environment_variables = xstrdup("PERL5LIB");
3027
3028 /* initialize critical section for waitpid pinfo_t list */
3029 InitializeCriticalSection(&pinfo_cs);
3030
3031 /* set up default file mode and file modes for stdin/out/err */
3032 _fmode = _O_BINARY;
3033 _setmode(_fileno(stdin), _O_BINARY);
3034 _setmode(_fileno(stdout), _O_BINARY);
3035 _setmode(_fileno(stderr), _O_BINARY);
3036
3037 /* initialize Unicode console */
3038 winansi_init();
3039
3040 /* invoke the real main() using our utf8 version of argv. */
3041 exit_status = main(argc, argv);
3042
3043 for (i = 0; i < argc; i++)
3044 free(save[i]);
3045 free(save);
3046 free(argv);
3047
3048 return exit_status;
3049 }
3050
3051 int uname(struct utsname *buf)
3052 {
3053 unsigned v = (unsigned)GetVersion();
3054 memset(buf, 0, sizeof(*buf));
3055 xsnprintf(buf->sysname, sizeof(buf->sysname), "Windows");
3056 xsnprintf(buf->release, sizeof(buf->release),
3057 "%u.%u", v & 0xff, (v >> 8) & 0xff);
3058 /* assuming NT variants only.. */
3059 xsnprintf(buf->version, sizeof(buf->version),
3060 "%u", (v >> 16) & 0x7fff);
3061 return 0;
3062 }