mingw: make failures to unlink or move raise a question
[git/dscho.git] / compat / mingw.c
blob6f9cf6e12ba50aa4566b7c2720eb1d5bb432faf0
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <conio.h>
4 #include "../strbuf.h"
5 #include "../cache.h"
6 #include "../run-command.h"
8 unsigned int _CRT_fmode = _O_BINARY;
9 static const int delay[] = { 0, 1, 10, 20, 40 };
11 int err_win_to_posix(DWORD winerr)
13 int error = ENOSYS;
14 switch(winerr) {
15 case ERROR_ACCESS_DENIED: error = EACCES; break;
16 case ERROR_ACCOUNT_DISABLED: error = EACCES; break;
17 case ERROR_ACCOUNT_RESTRICTION: error = EACCES; break;
18 case ERROR_ALREADY_ASSIGNED: error = EBUSY; break;
19 case ERROR_ALREADY_EXISTS: error = EEXIST; break;
20 case ERROR_ARITHMETIC_OVERFLOW: error = ERANGE; break;
21 case ERROR_BAD_COMMAND: error = EIO; break;
22 case ERROR_BAD_DEVICE: error = ENODEV; break;
23 case ERROR_BAD_DRIVER_LEVEL: error = ENXIO; break;
24 case ERROR_BAD_EXE_FORMAT: error = ENOEXEC; break;
25 case ERROR_BAD_FORMAT: error = ENOEXEC; break;
26 case ERROR_BAD_LENGTH: error = EINVAL; break;
27 case ERROR_BAD_PATHNAME: error = ENOENT; break;
28 case ERROR_BAD_PIPE: error = EPIPE; break;
29 case ERROR_BAD_UNIT: error = ENODEV; break;
30 case ERROR_BAD_USERNAME: error = EINVAL; break;
31 case ERROR_BROKEN_PIPE: error = EPIPE; break;
32 case ERROR_BUFFER_OVERFLOW: error = ENAMETOOLONG; break;
33 case ERROR_BUSY: error = EBUSY; break;
34 case ERROR_BUSY_DRIVE: error = EBUSY; break;
35 case ERROR_CALL_NOT_IMPLEMENTED: error = ENOSYS; break;
36 case ERROR_CANNOT_MAKE: error = EACCES; break;
37 case ERROR_CANTOPEN: error = EIO; break;
38 case ERROR_CANTREAD: error = EIO; break;
39 case ERROR_CANTWRITE: error = EIO; break;
40 case ERROR_CRC: error = EIO; break;
41 case ERROR_CURRENT_DIRECTORY: error = EACCES; break;
42 case ERROR_DEVICE_IN_USE: error = EBUSY; break;
43 case ERROR_DEV_NOT_EXIST: error = ENODEV; break;
44 case ERROR_DIRECTORY: error = EINVAL; break;
45 case ERROR_DIR_NOT_EMPTY: error = ENOTEMPTY; break;
46 case ERROR_DISK_CHANGE: error = EIO; break;
47 case ERROR_DISK_FULL: error = ENOSPC; break;
48 case ERROR_DRIVE_LOCKED: error = EBUSY; break;
49 case ERROR_ENVVAR_NOT_FOUND: error = EINVAL; break;
50 case ERROR_EXE_MARKED_INVALID: error = ENOEXEC; break;
51 case ERROR_FILENAME_EXCED_RANGE: error = ENAMETOOLONG; break;
52 case ERROR_FILE_EXISTS: error = EEXIST; break;
53 case ERROR_FILE_INVALID: error = ENODEV; break;
54 case ERROR_FILE_NOT_FOUND: error = ENOENT; break;
55 case ERROR_GEN_FAILURE: error = EIO; break;
56 case ERROR_HANDLE_DISK_FULL: error = ENOSPC; break;
57 case ERROR_INSUFFICIENT_BUFFER: error = ENOMEM; break;
58 case ERROR_INVALID_ACCESS: error = EACCES; break;
59 case ERROR_INVALID_ADDRESS: error = EFAULT; break;
60 case ERROR_INVALID_BLOCK: error = EFAULT; break;
61 case ERROR_INVALID_DATA: error = EINVAL; break;
62 case ERROR_INVALID_DRIVE: error = ENODEV; break;
63 case ERROR_INVALID_EXE_SIGNATURE: error = ENOEXEC; break;
64 case ERROR_INVALID_FLAGS: error = EINVAL; break;
65 case ERROR_INVALID_FUNCTION: error = ENOSYS; break;
66 case ERROR_INVALID_HANDLE: error = EBADF; break;
67 case ERROR_INVALID_LOGON_HOURS: error = EACCES; break;
68 case ERROR_INVALID_NAME: error = EINVAL; break;
69 case ERROR_INVALID_OWNER: error = EINVAL; break;
70 case ERROR_INVALID_PARAMETER: error = EINVAL; break;
71 case ERROR_INVALID_PASSWORD: error = EPERM; break;
72 case ERROR_INVALID_PRIMARY_GROUP: error = EINVAL; break;
73 case ERROR_INVALID_SIGNAL_NUMBER: error = EINVAL; break;
74 case ERROR_INVALID_TARGET_HANDLE: error = EIO; break;
75 case ERROR_INVALID_WORKSTATION: error = EACCES; break;
76 case ERROR_IO_DEVICE: error = EIO; break;
77 case ERROR_IO_INCOMPLETE: error = EINTR; break;
78 case ERROR_LOCKED: error = EBUSY; break;
79 case ERROR_LOCK_VIOLATION: error = EACCES; break;
80 case ERROR_LOGON_FAILURE: error = EACCES; break;
81 case ERROR_MAPPED_ALIGNMENT: error = EINVAL; break;
82 case ERROR_META_EXPANSION_TOO_LONG: error = E2BIG; break;
83 case ERROR_MORE_DATA: error = EPIPE; break;
84 case ERROR_NEGATIVE_SEEK: error = ESPIPE; break;
85 case ERROR_NOACCESS: error = EFAULT; break;
86 case ERROR_NONE_MAPPED: error = EINVAL; break;
87 case ERROR_NOT_ENOUGH_MEMORY: error = ENOMEM; break;
88 case ERROR_NOT_READY: error = EAGAIN; break;
89 case ERROR_NOT_SAME_DEVICE: error = EXDEV; break;
90 case ERROR_NO_DATA: error = EPIPE; break;
91 case ERROR_NO_MORE_SEARCH_HANDLES: error = EIO; break;
92 case ERROR_NO_PROC_SLOTS: error = EAGAIN; break;
93 case ERROR_NO_SUCH_PRIVILEGE: error = EACCES; break;
94 case ERROR_OPEN_FAILED: error = EIO; break;
95 case ERROR_OPEN_FILES: error = EBUSY; break;
96 case ERROR_OPERATION_ABORTED: error = EINTR; break;
97 case ERROR_OUTOFMEMORY: error = ENOMEM; break;
98 case ERROR_PASSWORD_EXPIRED: error = EACCES; break;
99 case ERROR_PATH_BUSY: error = EBUSY; break;
100 case ERROR_PATH_NOT_FOUND: error = ENOENT; break;
101 case ERROR_PIPE_BUSY: error = EBUSY; break;
102 case ERROR_PIPE_CONNECTED: error = EPIPE; break;
103 case ERROR_PIPE_LISTENING: error = EPIPE; break;
104 case ERROR_PIPE_NOT_CONNECTED: error = EPIPE; break;
105 case ERROR_PRIVILEGE_NOT_HELD: error = EACCES; break;
106 case ERROR_READ_FAULT: error = EIO; break;
107 case ERROR_SEEK: error = EIO; break;
108 case ERROR_SEEK_ON_DEVICE: error = ESPIPE; break;
109 case ERROR_SHARING_BUFFER_EXCEEDED: error = ENFILE; break;
110 case ERROR_SHARING_VIOLATION: error = EACCES; break;
111 case ERROR_STACK_OVERFLOW: error = ENOMEM; break;
112 case ERROR_SWAPERROR: error = ENOENT; break;
113 case ERROR_TOO_MANY_MODULES: error = EMFILE; break;
114 case ERROR_TOO_MANY_OPEN_FILES: error = EMFILE; break;
115 case ERROR_UNRECOGNIZED_MEDIA: error = ENXIO; break;
116 case ERROR_UNRECOGNIZED_VOLUME: error = ENODEV; break;
117 case ERROR_WAIT_NO_CHILDREN: error = ECHILD; break;
118 case ERROR_WRITE_FAULT: error = EIO; break;
119 case ERROR_WRITE_PROTECT: error = EROFS; break;
121 return error;
124 static int make_hidden(const char *path)
126 DWORD attribs = GetFileAttributes(path);
127 if (SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN | attribs))
128 return 0;
129 errno = err_win_to_posix(GetLastError());
130 return -1;
133 void mingw_mark_as_git_dir(const char *dir)
135 if (hide_dotfiles != HIDE_DOTFILES_FALSE && make_hidden(dir))
136 warning("Failed to make '%s' hidden", dir);
137 git_config_set("core.hideDotFiles",
138 hide_dotfiles == HIDE_DOTFILES_FALSE ? "false" :
139 (hide_dotfiles == HIDE_DOTFILES_DOTGITONLY ?
140 "dotGitOnly" : "true"));
143 #undef mkdir
144 int mingw_mkdir(const char *path, int mode)
146 int ret = mkdir(path);
147 if (!ret && hide_dotfiles == HIDE_DOTFILES_TRUE) {
149 * In Windows a file or dir starting with a dot is not
150 * automatically hidden. So lets mark it as hidden when
151 * such a directory is created.
153 const char *start = basename((char*)path);
154 if (*start == '.')
155 return make_hidden(path);
157 return ret;
160 static int ask_user_yes_no(const char *format, ...)
162 char answer[5];
163 char question[4096];
164 const char *retry_hook[] = { NULL, NULL, NULL };
165 va_list args;
167 if ((retry_hook[0] = getenv("GIT_ASK_YESNO"))) {
169 va_start(args, format);
170 vsnprintf(question, sizeof(question), format, args);
171 va_end(args);
173 retry_hook[1] = question;
174 return !run_command_v_opt(retry_hook, 0);
177 if (!isatty(_fileno(stdin)))
178 return 0;
180 while (1) {
181 va_start(args, format);
182 vfprintf(stderr, format, args);
183 va_end(args);
184 fprintf(stderr, " (y/n)? ");
186 if (fgets(answer, sizeof(answer), stdin)) {
187 /* remove the newline */
188 if (answer[strlen(answer)-2] == '\r')
189 answer[strlen(answer)-2] = '\0';
190 if (answer[strlen(answer)-1] == '\n')
191 answer[strlen(answer)-1] = '\0';
192 } else
193 return 0;
195 if (answer[0] == 'y' && strlen(answer) == 1)
196 return 1;
197 if (!strncasecmp(answer, "yes", sizeof(answer)))
198 return 1;
199 if (answer[0] == 'n' && strlen(answer) == 1)
200 return 0;
201 if (!strncasecmp(answer, "no", sizeof(answer)))
202 return 0;
203 fprintf(stderr, "I did not understand your answer: '%s'\n",
204 answer);
208 #undef unlink
209 int mingw_unlink(const char *pathname)
211 int ret, tries = 0;
213 /* read-only files cannot be removed */
214 chmod(pathname, 0666);
215 while ((ret = unlink(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
216 if (errno != EACCES)
217 break;
219 * We assume that some other process had the source or
220 * destination file open at the wrong moment and retry.
221 * In order to give the other process a higher chance to
222 * complete its operation, we give up our time slice now.
223 * If we have to retry again, we do sleep a bit.
225 Sleep(delay[tries]);
226 tries++;
228 while (ret == -1 && errno == EACCES &&
229 ask_user_yes_no("Unlink of file '%s' failed. "
230 "Should I try again?", pathname))
231 ret = unlink(pathname);
232 return ret;
235 #undef open
236 int mingw_open (const char *filename, int oflags, ...)
238 va_list args;
239 unsigned mode;
240 int fd;
242 va_start(args, oflags);
243 mode = va_arg(args, int);
244 va_end(args);
246 if (filename && !strcmp(filename, "/dev/null"))
247 filename = "nul";
249 fd = open(filename, oflags, mode);
251 if (fd < 0 && (oflags & O_CREAT) && errno == EACCES) {
252 DWORD attrs = GetFileAttributes(filename);
253 if (attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY))
254 errno = EISDIR;
256 if ((oflags & O_CREAT) && fd >= 0 &&
257 hide_dotfiles == HIDE_DOTFILES_TRUE) {
259 * In Windows a file or dir starting with a dot is not
260 * automatically hidden. So lets mark it as hidden when
261 * such a file is created.
263 const char *start = basename((char*)filename);
264 if (*start == '.' && make_hidden(filename))
265 warning("Could not mark '%s' as hidden.", filename);
267 return fd;
270 #undef write
271 ssize_t mingw_write(int fd, const void *buf, size_t count)
274 * While write() calls to a file on a local disk are translated
275 * into WriteFile() calls with a maximum size of 64KB on Windows
276 * XP and 256KB on Vista, no such cap is placed on writes to
277 * files over the network on Windows XP. Unfortunately, there
278 * seems to be a limit of 32MB-28KB on X64 and 64MB-32KB on x86;
279 * bigger writes fail on Windows XP.
280 * So we cap to a nice 31MB here to avoid write failures over
281 * the net without changing the number of WriteFile() calls in
282 * the local case.
284 return write(fd, buf, min(count, 31 * 1024 * 1024));
287 #undef fopen
288 FILE *mingw_fopen (const char *filename, const char *otype)
290 int hide = 0;
291 FILE *file;
292 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
293 basename((char*)filename)[0] == '.')
294 hide = access(filename, F_OK);
295 if (filename && !strcmp(filename, "/dev/null"))
296 filename = "nul";
297 file = fopen(filename, otype);
298 if (file && hide && make_hidden(filename))
299 warning("Could not mark '%s' as hidden.", filename);
300 return file;
303 #undef freopen
304 FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream)
306 int hide = 0;
307 FILE *file;
308 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
309 basename((char*)filename)[0] == '.')
310 hide = access(filename, F_OK);
311 if (filename && !strcmp(filename, "/dev/null"))
312 filename = "nul";
313 file = freopen(filename, otype, stream);
314 if (file && hide && make_hidden(filename))
315 warning("Could not mark '%s' as hidden.", filename);
316 return file;
320 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
321 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
323 static inline long long filetime_to_hnsec(const FILETIME *ft)
325 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
326 /* Windows to Unix Epoch conversion */
327 return winTime - 116444736000000000LL;
330 static inline time_t filetime_to_time_t(const FILETIME *ft)
332 return (time_t)(filetime_to_hnsec(ft) / 10000000);
335 /* We keep the do_lstat code in a separate function to avoid recursion.
336 * When a path ends with a slash, the stat will fail with ENOENT. In
337 * this case, we strip the trailing slashes and stat again.
339 * If follow is true then act like stat() and report on the link
340 * target. Otherwise report on the link itself.
342 static int do_lstat(int follow, const char *file_name, struct stat *buf)
344 int err;
345 WIN32_FILE_ATTRIBUTE_DATA fdata;
347 if (!(err = get_file_attr(file_name, &fdata))) {
348 buf->st_ino = 0;
349 buf->st_gid = 0;
350 buf->st_uid = 0;
351 buf->st_nlink = 1;
352 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
353 buf->st_size = fdata.nFileSizeLow |
354 (((off_t)fdata.nFileSizeHigh)<<32);
355 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
356 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
357 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
358 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
359 if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
360 WIN32_FIND_DATAA findbuf;
361 HANDLE handle = FindFirstFileA(file_name, &findbuf);
362 if (handle != INVALID_HANDLE_VALUE) {
363 if ((findbuf.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) &&
364 (findbuf.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) {
365 if (follow) {
366 char buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
367 buf->st_size = readlink(file_name, buffer, MAXIMUM_REPARSE_DATA_BUFFER_SIZE);
368 } else {
369 buf->st_mode = S_IFLNK;
371 buf->st_mode |= S_IREAD;
372 if (!(findbuf.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
373 buf->st_mode |= S_IWRITE;
375 FindClose(handle);
378 return 0;
380 errno = err;
381 return -1;
384 /* We provide our own lstat/fstat functions, since the provided
385 * lstat/fstat functions are so slow. These stat functions are
386 * tailored for Git's usage (read: fast), and are not meant to be
387 * complete. Note that Git stat()s are redirected to mingw_lstat()
388 * too, since Windows doesn't really handle symlinks that well.
390 static int do_stat_internal(int follow, const char *file_name, struct stat *buf)
392 int namelen;
393 static char alt_name[PATH_MAX];
395 if (!do_lstat(follow, file_name, buf))
396 return 0;
398 /* if file_name ended in a '/', Windows returned ENOENT;
399 * try again without trailing slashes
401 if (errno != ENOENT)
402 return -1;
404 namelen = strlen(file_name);
405 if (namelen && file_name[namelen-1] != '/')
406 return -1;
407 while (namelen && file_name[namelen-1] == '/')
408 --namelen;
409 if (!namelen || namelen >= PATH_MAX)
410 return -1;
412 memcpy(alt_name, file_name, namelen);
413 alt_name[namelen] = 0;
414 return do_lstat(follow, alt_name, buf);
417 int mingw_lstat(const char *file_name, struct stat *buf)
419 return do_stat_internal(0, file_name, buf);
421 int mingw_stat(const char *file_name, struct stat *buf)
423 return do_stat_internal(1, file_name, buf);
426 #undef fstat
427 int mingw_fstat(int fd, struct stat *buf)
429 HANDLE fh = (HANDLE)_get_osfhandle(fd);
430 BY_HANDLE_FILE_INFORMATION fdata;
432 if (fh == INVALID_HANDLE_VALUE) {
433 errno = EBADF;
434 return -1;
436 /* direct non-file handles to MS's fstat() */
437 if (GetFileType(fh) != FILE_TYPE_DISK)
438 return _fstati64(fd, buf);
440 if (GetFileInformationByHandle(fh, &fdata)) {
441 buf->st_ino = 0;
442 buf->st_gid = 0;
443 buf->st_uid = 0;
444 buf->st_nlink = 1;
445 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
446 buf->st_size = fdata.nFileSizeLow |
447 (((off_t)fdata.nFileSizeHigh)<<32);
448 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
449 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
450 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
451 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
452 return 0;
454 errno = EBADF;
455 return -1;
458 static inline void time_t_to_filetime(time_t t, FILETIME *ft)
460 long long winTime = t * 10000000LL + 116444736000000000LL;
461 ft->dwLowDateTime = winTime;
462 ft->dwHighDateTime = winTime >> 32;
465 int mingw_utime (const char *file_name, const struct utimbuf *times)
467 FILETIME mft, aft;
468 int fh, rc;
470 /* must have write permission */
471 DWORD attrs = GetFileAttributes(file_name);
472 if (attrs != INVALID_FILE_ATTRIBUTES &&
473 (attrs & FILE_ATTRIBUTE_READONLY)) {
474 /* ignore errors here; open() will report them */
475 SetFileAttributes(file_name, attrs & ~FILE_ATTRIBUTE_READONLY);
478 if ((fh = open(file_name, O_RDWR | O_BINARY)) < 0) {
479 rc = -1;
480 goto revert_attrs;
483 if (times) {
484 time_t_to_filetime(times->modtime, &mft);
485 time_t_to_filetime(times->actime, &aft);
486 } else {
487 GetSystemTimeAsFileTime(&mft);
488 aft = mft;
490 if (!SetFileTime((HANDLE)_get_osfhandle(fh), NULL, &aft, &mft)) {
491 errno = EINVAL;
492 rc = -1;
493 } else
494 rc = 0;
495 close(fh);
497 revert_attrs:
498 if (attrs != INVALID_FILE_ATTRIBUTES &&
499 (attrs & FILE_ATTRIBUTE_READONLY)) {
500 /* ignore errors again */
501 SetFileAttributes(file_name, attrs);
503 return rc;
506 unsigned int sleep (unsigned int seconds)
508 Sleep(seconds*1000);
509 return 0;
512 int mkstemp(char *template)
514 char *filename = mktemp(template);
515 if (filename == NULL)
516 return -1;
517 return open(filename, O_RDWR | O_CREAT, 0600);
520 int gettimeofday(struct timeval *tv, void *tz)
522 FILETIME ft;
523 long long hnsec;
525 GetSystemTimeAsFileTime(&ft);
526 hnsec = filetime_to_hnsec(&ft);
527 tv->tv_sec = hnsec / 10000000;
528 tv->tv_usec = (hnsec % 10000000) / 10;
529 return 0;
532 int pipe(int filedes[2])
534 HANDLE h[2];
536 /* this creates non-inheritable handles */
537 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
538 errno = err_win_to_posix(GetLastError());
539 return -1;
541 filedes[0] = _open_osfhandle((int)h[0], O_NOINHERIT);
542 if (filedes[0] < 0) {
543 CloseHandle(h[0]);
544 CloseHandle(h[1]);
545 return -1;
547 filedes[1] = _open_osfhandle((int)h[1], O_NOINHERIT);
548 if (filedes[0] < 0) {
549 close(filedes[0]);
550 CloseHandle(h[1]);
551 return -1;
553 return 0;
556 struct tm *gmtime_r(const time_t *timep, struct tm *result)
558 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
559 memcpy(result, gmtime(timep), sizeof(struct tm));
560 return result;
563 struct tm *localtime_r(const time_t *timep, struct tm *result)
565 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
566 memcpy(result, localtime(timep), sizeof(struct tm));
567 return result;
570 #undef getcwd
571 char *mingw_getcwd(char *pointer, int len)
573 int i;
574 char *ret = getcwd(pointer, len);
575 if (!ret)
576 return ret;
577 for (i = 0; pointer[i]; i++)
578 if (pointer[i] == '\\')
579 pointer[i] = '/';
580 return ret;
583 #undef getenv
584 char *mingw_getenv(const char *name)
586 char *result = getenv(name);
587 if (!result && !strcmp(name, "TMPDIR")) {
588 /* on Windows it is TMP and TEMP */
589 result = getenv("TMP");
590 if (!result)
591 result = getenv("TEMP");
593 return result;
597 * See http://msdn2.microsoft.com/en-us/library/17w5ykft(vs.71).aspx
598 * (Parsing C++ Command-Line Arguments)
600 static const char *quote_arg(const char *arg)
602 /* count chars to quote */
603 int len = 0, n = 0;
604 int force_quotes = 0;
605 char *q, *d;
606 const char *p = arg;
607 if (!*p) force_quotes = 1;
608 while (*p) {
609 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
610 force_quotes = 1;
611 else if (*p == '"')
612 n++;
613 else if (*p == '\\') {
614 int count = 0;
615 while (*p == '\\') {
616 count++;
617 p++;
618 len++;
620 if (*p == '"')
621 n += count*2 + 1;
622 continue;
624 len++;
625 p++;
627 if (!force_quotes && n == 0)
628 return arg;
630 /* insert \ where necessary */
631 d = q = xmalloc(len+n+3);
632 *d++ = '"';
633 while (*arg) {
634 if (*arg == '"')
635 *d++ = '\\';
636 else if (*arg == '\\') {
637 int count = 0;
638 while (*arg == '\\') {
639 count++;
640 *d++ = *arg++;
642 if (*arg == '"') {
643 while (count-- > 0)
644 *d++ = '\\';
645 *d++ = '\\';
648 *d++ = *arg++;
650 *d++ = '"';
651 *d++ = 0;
652 return q;
655 static const char *parse_interpreter(const char *cmd)
657 static char buf[100];
658 char *p, *opt;
659 int n, fd;
661 /* don't even try a .exe */
662 n = strlen(cmd);
663 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
664 return NULL;
666 fd = open(cmd, O_RDONLY);
667 if (fd < 0)
668 return NULL;
669 n = read(fd, buf, sizeof(buf)-1);
670 close(fd);
671 if (n < 4) /* at least '#!/x' and not error */
672 return NULL;
674 if (buf[0] != '#' || buf[1] != '!')
675 return NULL;
676 buf[n] = '\0';
677 p = buf + strcspn(buf, "\r\n");
678 if (!*p)
679 return NULL;
681 *p = '\0';
682 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
683 return NULL;
684 /* strip options */
685 if ((opt = strchr(p+1, ' ')))
686 *opt = '\0';
687 return p+1;
691 * Splits the PATH into parts.
693 static char **get_path_split(void)
695 char *p, **path, *envpath = getenv("PATH");
696 int i, n = 0;
698 if (!envpath || !*envpath)
699 return NULL;
701 envpath = xstrdup(envpath);
702 p = envpath;
703 while (p) {
704 char *dir = p;
705 p = strchr(p, ';');
706 if (p) *p++ = '\0';
707 if (*dir) { /* not earlier, catches series of ; */
708 ++n;
711 if (!n)
712 return NULL;
714 path = xmalloc((n+1)*sizeof(char *));
715 p = envpath;
716 i = 0;
717 do {
718 if (*p)
719 path[i++] = xstrdup(p);
720 p = p+strlen(p)+1;
721 } while (i < n);
722 path[i] = NULL;
724 free(envpath);
726 return path;
729 static void free_path_split(char **path)
731 char **p = path;
733 if (!path)
734 return;
736 while (*p)
737 free(*p++);
738 free(path);
742 * exe_only means that we only want to detect .exe files, but not scripts
743 * (which do not have an extension)
745 static char *lookup_prog(const char *dir, const char *cmd, int isexe, int exe_only)
747 char path[MAX_PATH];
748 snprintf(path, sizeof(path), "%s/%s.exe", dir, cmd);
750 if (!isexe && access(path, F_OK) == 0)
751 return xstrdup(path);
752 path[strlen(path)-4] = '\0';
753 if ((!exe_only || isexe) && access(path, F_OK) == 0)
754 if (!(GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY))
755 return xstrdup(path);
756 return NULL;
760 * Determines the absolute path of cmd using the split path in path.
761 * If cmd contains a slash or backslash, no lookup is performed.
763 static char *path_lookup(const char *cmd, char **path, int exe_only)
765 char *prog = NULL;
766 int len = strlen(cmd);
767 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
769 if (strchr(cmd, '/') || strchr(cmd, '\\'))
770 prog = xstrdup(cmd);
772 while (!prog && *path)
773 prog = lookup_prog(*path++, cmd, isexe, exe_only);
775 return prog;
778 static int env_compare(const void *a, const void *b)
780 char *const *ea = a;
781 char *const *eb = b;
782 return strcasecmp(*ea, *eb);
785 struct pinfo_t {
786 struct pinfo_t *next;
787 pid_t pid;
788 HANDLE proc;
789 } pinfo_t;
790 struct pinfo_t *pinfo = NULL;
791 CRITICAL_SECTION pinfo_cs;
793 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **env,
794 const char *dir,
795 int prepend_cmd, int fhin, int fhout, int fherr)
797 STARTUPINFO si;
798 PROCESS_INFORMATION pi;
799 struct strbuf envblk, args;
800 unsigned flags;
801 BOOL ret;
803 /* Determine whether or not we are associated to a console */
804 HANDLE cons = CreateFile("CONOUT$", GENERIC_WRITE,
805 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
806 FILE_ATTRIBUTE_NORMAL, NULL);
807 if (cons == INVALID_HANDLE_VALUE) {
808 /* There is no console associated with this process.
809 * Since the child is a console process, Windows
810 * would normally create a console window. But
811 * since we'll be redirecting std streams, we do
812 * not need the console.
813 * It is necessary to use DETACHED_PROCESS
814 * instead of CREATE_NO_WINDOW to make ssh
815 * recognize that it has no console.
817 flags = DETACHED_PROCESS;
818 } else {
819 /* There is already a console. If we specified
820 * DETACHED_PROCESS here, too, Windows would
821 * disassociate the child from the console.
822 * The same is true for CREATE_NO_WINDOW.
823 * Go figure!
825 flags = 0;
826 CloseHandle(cons);
828 memset(&si, 0, sizeof(si));
829 si.cb = sizeof(si);
830 si.dwFlags = STARTF_USESTDHANDLES;
831 si.hStdInput = (HANDLE) _get_osfhandle(fhin);
832 si.hStdOutput = (HANDLE) _get_osfhandle(fhout);
833 si.hStdError = (HANDLE) _get_osfhandle(fherr);
835 /* concatenate argv, quoting args as we go */
836 strbuf_init(&args, 0);
837 if (prepend_cmd) {
838 char *quoted = (char *)quote_arg(cmd);
839 strbuf_addstr(&args, quoted);
840 if (quoted != cmd)
841 free(quoted);
843 for (; *argv; argv++) {
844 char *quoted = (char *)quote_arg(*argv);
845 if (*args.buf)
846 strbuf_addch(&args, ' ');
847 strbuf_addstr(&args, quoted);
848 if (quoted != *argv)
849 free(quoted);
852 if (env) {
853 int count = 0;
854 char **e, **sorted_env;
856 for (e = env; *e; e++)
857 count++;
859 /* environment must be sorted */
860 sorted_env = xmalloc(sizeof(*sorted_env) * (count + 1));
861 memcpy(sorted_env, env, sizeof(*sorted_env) * (count + 1));
862 qsort(sorted_env, count, sizeof(*sorted_env), env_compare);
864 strbuf_init(&envblk, 0);
865 for (e = sorted_env; *e; e++) {
866 strbuf_addstr(&envblk, *e);
867 strbuf_addch(&envblk, '\0');
869 free(sorted_env);
872 memset(&pi, 0, sizeof(pi));
873 ret = CreateProcess(cmd, args.buf, NULL, NULL, TRUE, flags,
874 env ? envblk.buf : NULL, dir, &si, &pi);
876 if (env)
877 strbuf_release(&envblk);
878 strbuf_release(&args);
880 if (!ret) {
881 errno = ENOENT;
882 return -1;
884 CloseHandle(pi.hThread);
887 * The process ID is the human-readable identifier of the process
888 * that we want to present in log and error messages. The handle
889 * is not useful for this purpose. But we cannot close it, either,
890 * because it is not possible to turn a process ID into a process
891 * handle after the process terminated.
892 * Keep the handle in a list for waitpid.
894 EnterCriticalSection(&pinfo_cs);
896 struct pinfo_t *info = xmalloc(sizeof(struct pinfo_t));
897 info->pid = pi.dwProcessId;
898 info->proc = pi.hProcess;
899 info->next = pinfo;
900 pinfo = info;
902 LeaveCriticalSection(&pinfo_cs);
904 return (pid_t)pi.dwProcessId;
907 static pid_t mingw_spawnve(const char *cmd, const char **argv, char **env,
908 int prepend_cmd)
910 return mingw_spawnve_fd(cmd, argv, env, NULL, prepend_cmd, 0, 1, 2);
913 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
914 const char *dir,
915 int fhin, int fhout, int fherr)
917 pid_t pid;
918 char **path = get_path_split();
919 char *prog = path_lookup(cmd, path, 0);
921 if (!prog) {
922 errno = ENOENT;
923 pid = -1;
925 else {
926 const char *interpr = parse_interpreter(prog);
928 if (interpr) {
929 const char *argv0 = argv[0];
930 char *iprog = path_lookup(interpr, path, 1);
931 argv[0] = prog;
932 if (!iprog) {
933 errno = ENOENT;
934 pid = -1;
936 else {
937 pid = mingw_spawnve_fd(iprog, argv, env, dir, 1,
938 fhin, fhout, fherr);
939 free(iprog);
941 argv[0] = argv0;
943 else
944 pid = mingw_spawnve_fd(prog, argv, env, dir, 0,
945 fhin, fhout, fherr);
946 free(prog);
948 free_path_split(path);
949 return pid;
952 static int try_shell_exec(const char *cmd, char *const *argv, char **env)
954 const char *interpr = parse_interpreter(cmd);
955 char **path;
956 char *prog;
957 int pid = 0;
959 if (!interpr)
960 return 0;
961 path = get_path_split();
962 prog = path_lookup(interpr, path, 1);
963 if (prog) {
964 int argc = 0;
965 const char **argv2;
966 while (argv[argc]) argc++;
967 argv2 = xmalloc(sizeof(*argv) * (argc+1));
968 argv2[0] = (char *)cmd; /* full path to the script file */
969 memcpy(&argv2[1], &argv[1], sizeof(*argv) * argc);
970 pid = mingw_spawnve(prog, argv2, env, 1);
971 if (pid >= 0) {
972 int status;
973 if (waitpid(pid, &status, 0) < 0)
974 status = 255;
975 exit(status);
977 pid = 1; /* indicate that we tried but failed */
978 free(prog);
979 free(argv2);
981 free_path_split(path);
982 return pid;
985 static void mingw_execve(const char *cmd, char *const *argv, char *const *env)
987 /* check if git_command is a shell script */
988 if (!try_shell_exec(cmd, argv, (char **)env)) {
989 int pid, status;
991 pid = mingw_spawnve(cmd, (const char **)argv, (char **)env, 0);
992 if (pid < 0)
993 return;
994 if (waitpid(pid, &status, 0) < 0)
995 status = 255;
996 exit(status);
1000 void mingw_execvp(const char *cmd, char *const *argv)
1002 char **path = get_path_split();
1003 char *prog = path_lookup(cmd, path, 0);
1005 if (prog) {
1006 mingw_execve(prog, argv, environ);
1007 free(prog);
1008 } else
1009 errno = ENOENT;
1011 free_path_split(path);
1014 void mingw_execv(const char *cmd, char *const *argv)
1016 mingw_execve(cmd, argv, environ);
1019 int mingw_kill(pid_t pid, int sig)
1021 if (pid > 0 && sig == SIGTERM) {
1022 HANDLE h = OpenProcess(PROCESS_TERMINATE, FALSE, pid);
1024 if (TerminateProcess(h, -1)) {
1025 CloseHandle(h);
1026 return 0;
1029 errno = err_win_to_posix(GetLastError());
1030 CloseHandle(h);
1031 return -1;
1034 errno = EINVAL;
1035 return -1;
1038 static char **copy_environ(void)
1040 char **env;
1041 int i = 0;
1042 while (environ[i])
1043 i++;
1044 env = xmalloc((i+1)*sizeof(*env));
1045 for (i = 0; environ[i]; i++)
1046 env[i] = xstrdup(environ[i]);
1047 env[i] = NULL;
1048 return env;
1051 void free_environ(char **env)
1053 int i;
1054 for (i = 0; env[i]; i++)
1055 free(env[i]);
1056 free(env);
1059 static int lookup_env(char **env, const char *name, size_t nmln)
1061 int i;
1063 for (i = 0; env[i]; i++) {
1064 if (0 == strncmp(env[i], name, nmln)
1065 && '=' == env[i][nmln])
1066 /* matches */
1067 return i;
1069 return -1;
1073 * If name contains '=', then sets the variable, otherwise it unsets it
1075 static char **env_setenv(char **env, const char *name)
1077 char *eq = strchrnul(name, '=');
1078 int i = lookup_env(env, name, eq-name);
1080 if (i < 0) {
1081 if (*eq) {
1082 for (i = 0; env[i]; i++)
1084 env = xrealloc(env, (i+2)*sizeof(*env));
1085 env[i] = xstrdup(name);
1086 env[i+1] = NULL;
1089 else {
1090 free(env[i]);
1091 if (*eq)
1092 env[i] = xstrdup(name);
1093 else
1094 for (; env[i]; i++)
1095 env[i] = env[i+1];
1097 return env;
1101 * Copies global environ and adjusts variables as specified by vars.
1103 char **make_augmented_environ(const char *const *vars)
1105 char **env = copy_environ();
1107 while (*vars)
1108 env = env_setenv(env, *vars++);
1109 return env;
1113 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1114 * that service contains a numerical port, or that it it is null. It
1115 * does a simple search using gethostbyname, and returns one IPv4 host
1116 * if one was found.
1118 static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
1119 const struct addrinfo *hints,
1120 struct addrinfo **res)
1122 struct hostent *h = NULL;
1123 struct addrinfo *ai;
1124 struct sockaddr_in *sin;
1126 if (node) {
1127 h = gethostbyname(node);
1128 if (!h)
1129 return WSAGetLastError();
1132 ai = xmalloc(sizeof(struct addrinfo));
1133 *res = ai;
1134 ai->ai_flags = 0;
1135 ai->ai_family = AF_INET;
1136 ai->ai_socktype = hints ? hints->ai_socktype : 0;
1137 switch (ai->ai_socktype) {
1138 case SOCK_STREAM:
1139 ai->ai_protocol = IPPROTO_TCP;
1140 break;
1141 case SOCK_DGRAM:
1142 ai->ai_protocol = IPPROTO_UDP;
1143 break;
1144 default:
1145 ai->ai_protocol = 0;
1146 break;
1148 ai->ai_addrlen = sizeof(struct sockaddr_in);
1149 if (hints && (hints->ai_flags & AI_CANONNAME))
1150 ai->ai_canonname = h ? strdup(h->h_name) : NULL;
1151 else
1152 ai->ai_canonname = NULL;
1154 sin = xmalloc(ai->ai_addrlen);
1155 memset(sin, 0, ai->ai_addrlen);
1156 sin->sin_family = AF_INET;
1157 /* Note: getaddrinfo is supposed to allow service to be a string,
1158 * which should be looked up using getservbyname. This is
1159 * currently not implemented */
1160 if (service)
1161 sin->sin_port = htons(atoi(service));
1162 if (h)
1163 sin->sin_addr = *(struct in_addr *)h->h_addr;
1164 else if (hints && (hints->ai_flags & AI_PASSIVE))
1165 sin->sin_addr.s_addr = INADDR_ANY;
1166 else
1167 sin->sin_addr.s_addr = INADDR_LOOPBACK;
1168 ai->ai_addr = (struct sockaddr *)sin;
1169 ai->ai_next = 0;
1170 return 0;
1173 static void WSAAPI freeaddrinfo_stub(struct addrinfo *res)
1175 free(res->ai_canonname);
1176 free(res->ai_addr);
1177 free(res);
1180 static int WSAAPI getnameinfo_stub(const struct sockaddr *sa, socklen_t salen,
1181 char *host, DWORD hostlen,
1182 char *serv, DWORD servlen, int flags)
1184 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
1185 if (sa->sa_family != AF_INET)
1186 return EAI_FAMILY;
1187 if (!host && !serv)
1188 return EAI_NONAME;
1190 if (host && hostlen > 0) {
1191 struct hostent *ent = NULL;
1192 if (!(flags & NI_NUMERICHOST))
1193 ent = gethostbyaddr((const char *)&sin->sin_addr,
1194 sizeof(sin->sin_addr), AF_INET);
1196 if (ent)
1197 snprintf(host, hostlen, "%s", ent->h_name);
1198 else if (flags & NI_NAMEREQD)
1199 return EAI_NONAME;
1200 else
1201 snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
1204 if (serv && servlen > 0) {
1205 struct servent *ent = NULL;
1206 if (!(flags & NI_NUMERICSERV))
1207 ent = getservbyport(sin->sin_port,
1208 flags & NI_DGRAM ? "udp" : "tcp");
1210 if (ent)
1211 snprintf(serv, servlen, "%s", ent->s_name);
1212 else
1213 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
1216 return 0;
1219 static HMODULE ipv6_dll = NULL;
1220 static void (WSAAPI *ipv6_freeaddrinfo)(struct addrinfo *res);
1221 static int (WSAAPI *ipv6_getaddrinfo)(const char *node, const char *service,
1222 const struct addrinfo *hints,
1223 struct addrinfo **res);
1224 static int (WSAAPI *ipv6_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
1225 char *host, DWORD hostlen,
1226 char *serv, DWORD servlen, int flags);
1228 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1229 * don't need to try to load that one dynamically.
1232 static void socket_cleanup(void)
1234 WSACleanup();
1235 if (ipv6_dll)
1236 FreeLibrary(ipv6_dll);
1237 ipv6_dll = NULL;
1238 ipv6_freeaddrinfo = freeaddrinfo_stub;
1239 ipv6_getaddrinfo = getaddrinfo_stub;
1240 ipv6_getnameinfo = getnameinfo_stub;
1243 static void ensure_socket_initialization(void)
1245 WSADATA wsa;
1246 static int initialized = 0;
1247 const char *libraries[] = { "ws2_32.dll", "wship6.dll", NULL };
1248 const char **name;
1250 if (initialized)
1251 return;
1253 if (WSAStartup(MAKEWORD(2,2), &wsa))
1254 die("unable to initialize winsock subsystem, error %d",
1255 WSAGetLastError());
1257 for (name = libraries; *name; name++) {
1258 ipv6_dll = LoadLibrary(*name);
1259 if (!ipv6_dll)
1260 continue;
1262 ipv6_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *))
1263 GetProcAddress(ipv6_dll, "freeaddrinfo");
1264 ipv6_getaddrinfo = (int (WSAAPI *)(const char *, const char *,
1265 const struct addrinfo *,
1266 struct addrinfo **))
1267 GetProcAddress(ipv6_dll, "getaddrinfo");
1268 ipv6_getnameinfo = (int (WSAAPI *)(const struct sockaddr *,
1269 socklen_t, char *, DWORD,
1270 char *, DWORD, int))
1271 GetProcAddress(ipv6_dll, "getnameinfo");
1272 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1273 FreeLibrary(ipv6_dll);
1274 ipv6_dll = NULL;
1275 } else
1276 break;
1278 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1279 ipv6_freeaddrinfo = freeaddrinfo_stub;
1280 ipv6_getaddrinfo = getaddrinfo_stub;
1281 ipv6_getnameinfo = getnameinfo_stub;
1284 atexit(socket_cleanup);
1285 initialized = 1;
1288 #undef gethostbyname
1289 struct hostent *mingw_gethostbyname(const char *host)
1291 ensure_socket_initialization();
1292 return gethostbyname(host);
1295 void mingw_freeaddrinfo(struct addrinfo *res)
1297 ipv6_freeaddrinfo(res);
1300 int mingw_getaddrinfo(const char *node, const char *service,
1301 const struct addrinfo *hints, struct addrinfo **res)
1303 ensure_socket_initialization();
1304 return ipv6_getaddrinfo(node, service, hints, res);
1307 int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
1308 char *host, DWORD hostlen, char *serv, DWORD servlen,
1309 int flags)
1311 ensure_socket_initialization();
1312 return ipv6_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
1315 int mingw_socket(int domain, int type, int protocol)
1317 int sockfd;
1318 SOCKET s;
1320 ensure_socket_initialization();
1321 s = WSASocket(domain, type, protocol, NULL, 0, 0);
1322 if (s == INVALID_SOCKET) {
1324 * WSAGetLastError() values are regular BSD error codes
1325 * biased by WSABASEERR.
1326 * However, strerror() does not know about networking
1327 * specific errors, which are values beginning at 38 or so.
1328 * Therefore, we choose to leave the biased error code
1329 * in errno so that _if_ someone looks up the code somewhere,
1330 * then it is at least the number that are usually listed.
1332 errno = WSAGetLastError();
1333 return -1;
1335 /* convert into a file descriptor */
1336 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
1337 closesocket(s);
1338 return error("unable to make a socket file descriptor: %s",
1339 strerror(errno));
1341 return sockfd;
1344 #undef connect
1345 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
1347 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1348 return connect(s, sa, sz);
1351 #undef bind
1352 int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz)
1354 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1355 return bind(s, sa, sz);
1358 #undef setsockopt
1359 int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen)
1361 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1362 return setsockopt(s, lvl, optname, (const char*)optval, optlen);
1365 #undef listen
1366 int mingw_listen(int sockfd, int backlog)
1368 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1369 return listen(s, backlog);
1372 #undef accept
1373 int mingw_accept(int sockfd1, struct sockaddr *sa, socklen_t *sz)
1375 int sockfd2;
1377 SOCKET s1 = (SOCKET)_get_osfhandle(sockfd1);
1378 SOCKET s2 = accept(s1, sa, sz);
1380 /* convert into a file descriptor */
1381 if ((sockfd2 = _open_osfhandle(s2, O_RDWR|O_BINARY)) < 0) {
1382 int err = errno;
1383 closesocket(s2);
1384 return error("unable to make a socket file descriptor: %s",
1385 strerror(err));
1387 return sockfd2;
1390 #undef rename
1391 int mingw_rename(const char *pold, const char *pnew)
1393 DWORD attrs, gle;
1394 int tries = 0;
1397 * Try native rename() first to get errno right.
1398 * It is based on MoveFile(), which cannot overwrite existing files.
1400 if (!rename(pold, pnew))
1401 return 0;
1402 if (errno != EEXIST)
1403 return -1;
1404 repeat:
1405 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1406 return 0;
1407 /* TODO: translate more errors */
1408 gle = GetLastError();
1409 if (gle == ERROR_ACCESS_DENIED &&
1410 (attrs = GetFileAttributes(pnew)) != INVALID_FILE_ATTRIBUTES) {
1411 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
1412 errno = EISDIR;
1413 return -1;
1415 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
1416 SetFileAttributes(pnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
1417 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1418 return 0;
1419 gle = GetLastError();
1420 /* revert file attributes on failure */
1421 SetFileAttributes(pnew, attrs);
1424 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
1426 * We assume that some other process had the source or
1427 * destination file open at the wrong moment and retry.
1428 * In order to give the other process a higher chance to
1429 * complete its operation, we give up our time slice now.
1430 * If we have to retry again, we do sleep a bit.
1432 Sleep(delay[tries]);
1433 tries++;
1434 goto repeat;
1436 if (gle == ERROR_ACCESS_DENIED &&
1437 ask_user_yes_no("Rename from '%s' to '%s' failed. "
1438 "Should I try again?", pold, pnew))
1439 goto repeat;
1441 errno = EACCES;
1442 return -1;
1446 * Note that this doesn't return the actual pagesize, but
1447 * the allocation granularity. If future Windows specific git code
1448 * needs the real getpagesize function, we need to find another solution.
1450 int mingw_getpagesize(void)
1452 SYSTEM_INFO si;
1453 GetSystemInfo(&si);
1454 return si.dwAllocationGranularity;
1457 struct passwd *getpwuid(int uid)
1459 static char user_name[100];
1460 static struct passwd p;
1462 DWORD len = sizeof(user_name);
1463 if (!GetUserName(user_name, &len))
1464 return NULL;
1465 p.pw_name = user_name;
1466 p.pw_gecos = "unknown";
1467 p.pw_dir = NULL;
1468 return &p;
1471 static HANDLE timer_event;
1472 static HANDLE timer_thread;
1473 static int timer_interval;
1474 static int one_shot;
1475 static sig_handler_t timer_fn = SIG_DFL;
1477 /* The timer works like this:
1478 * The thread, ticktack(), is a trivial routine that most of the time
1479 * only waits to receive the signal to terminate. The main thread tells
1480 * the thread to terminate by setting the timer_event to the signalled
1481 * state.
1482 * But ticktack() interrupts the wait state after the timer's interval
1483 * length to call the signal handler.
1486 static unsigned __stdcall ticktack(void *dummy)
1488 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
1489 if (timer_fn == SIG_DFL)
1490 die("Alarm");
1491 if (timer_fn != SIG_IGN)
1492 timer_fn(SIGALRM);
1493 if (one_shot)
1494 break;
1496 return 0;
1499 static int start_timer_thread(void)
1501 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1502 if (timer_event) {
1503 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
1504 if (!timer_thread )
1505 return errno = ENOMEM,
1506 error("cannot start timer thread");
1507 } else
1508 return errno = ENOMEM,
1509 error("cannot allocate resources for timer");
1510 return 0;
1513 static void stop_timer_thread(void)
1515 if (timer_event)
1516 SetEvent(timer_event); /* tell thread to terminate */
1517 if (timer_thread) {
1518 int rc = WaitForSingleObject(timer_thread, 1000);
1519 if (rc == WAIT_TIMEOUT)
1520 error("timer thread did not terminate timely");
1521 else if (rc != WAIT_OBJECT_0)
1522 error("waiting for timer thread failed: %lu",
1523 GetLastError());
1524 CloseHandle(timer_thread);
1526 if (timer_event)
1527 CloseHandle(timer_event);
1528 timer_event = NULL;
1529 timer_thread = NULL;
1532 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
1534 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
1537 int setitimer(int type, struct itimerval *in, struct itimerval *out)
1539 static const struct timeval zero;
1540 static int atexit_done;
1542 if (out != NULL)
1543 return errno = EINVAL,
1544 error("setitimer param 3 != NULL not implemented");
1545 if (!is_timeval_eq(&in->it_interval, &zero) &&
1546 !is_timeval_eq(&in->it_interval, &in->it_value))
1547 return errno = EINVAL,
1548 error("setitimer: it_interval must be zero or eq it_value");
1550 if (timer_thread)
1551 stop_timer_thread();
1553 if (is_timeval_eq(&in->it_value, &zero) &&
1554 is_timeval_eq(&in->it_interval, &zero))
1555 return 0;
1557 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
1558 one_shot = is_timeval_eq(&in->it_interval, &zero);
1559 if (!atexit_done) {
1560 atexit(stop_timer_thread);
1561 atexit_done = 1;
1563 return start_timer_thread();
1566 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
1568 if (sig != SIGALRM)
1569 return errno = EINVAL,
1570 error("sigaction only implemented for SIGALRM");
1571 if (out != NULL)
1572 return errno = EINVAL,
1573 error("sigaction: param 3 != NULL not implemented");
1575 timer_fn = in->sa_handler;
1576 return 0;
1579 #undef signal
1580 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
1582 sig_handler_t old = timer_fn;
1583 if (sig != SIGALRM)
1584 return signal(sig, handler);
1585 timer_fn = handler;
1586 return old;
1589 static const char *make_backslash_path(const char *path)
1591 static char buf[PATH_MAX + 1];
1592 char *c;
1594 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
1595 die("Too long path: %.*s", 60, path);
1597 for (c = buf; *c; c++) {
1598 if (*c == '/')
1599 *c = '\\';
1601 return buf;
1604 void mingw_open_html(const char *unixpath)
1606 const char *htmlpath = make_backslash_path(unixpath);
1607 typedef HINSTANCE (WINAPI *T)(HWND, const char *,
1608 const char *, const char *, const char *, INT);
1609 T ShellExecute;
1610 HMODULE shell32;
1611 int r;
1613 shell32 = LoadLibrary("shell32.dll");
1614 if (!shell32)
1615 die("cannot load shell32.dll");
1616 ShellExecute = (T)GetProcAddress(shell32, "ShellExecuteA");
1617 if (!ShellExecute)
1618 die("cannot run browser");
1620 printf("Launching default browser to display HTML ...\n");
1621 r = (int)ShellExecute(NULL, "open", htmlpath, NULL, "\\", SW_SHOWNORMAL);
1622 FreeLibrary(shell32);
1623 /* see the MSDN documentation referring to the result codes here */
1624 if (r <= 32) {
1625 die("failed to launch browser for %.*s", MAX_PATH, unixpath);
1629 int link(const char *oldpath, const char *newpath)
1631 typedef BOOL (WINAPI *T)(const char*, const char*, LPSECURITY_ATTRIBUTES);
1632 static T create_hard_link = NULL;
1633 if (!create_hard_link) {
1634 create_hard_link = (T) GetProcAddress(
1635 GetModuleHandle("kernel32.dll"), "CreateHardLinkA");
1636 if (!create_hard_link)
1637 create_hard_link = (T)-1;
1639 if (create_hard_link == (T)-1) {
1640 errno = ENOSYS;
1641 return -1;
1643 if (!create_hard_link(newpath, oldpath, NULL)) {
1644 errno = err_win_to_posix(GetLastError());
1645 return -1;
1647 return 0;
1650 char *getpass(const char *prompt)
1652 struct strbuf buf = STRBUF_INIT;
1654 fputs(prompt, stderr);
1655 for (;;) {
1656 char c = _getch();
1657 if (c == '\r' || c == '\n')
1658 break;
1659 strbuf_addch(&buf, c);
1661 fputs("\n", stderr);
1662 return strbuf_detach(&buf, NULL);
1665 pid_t waitpid(pid_t pid, int *status, unsigned options)
1667 HANDLE h = OpenProcess(SYNCHRONIZE | PROCESS_QUERY_INFORMATION,
1668 FALSE, pid);
1669 if (!h) {
1670 errno = ECHILD;
1671 return -1;
1674 if (pid > 0 && options & WNOHANG) {
1675 if (WAIT_OBJECT_0 != WaitForSingleObject(h, 0)) {
1676 CloseHandle(h);
1677 return 0;
1679 options &= ~WNOHANG;
1682 if (options == 0) {
1683 struct pinfo_t **ppinfo;
1684 if (WaitForSingleObject(h, INFINITE) != WAIT_OBJECT_0) {
1685 CloseHandle(h);
1686 return 0;
1689 if (status)
1690 GetExitCodeProcess(h, (LPDWORD)status);
1692 EnterCriticalSection(&pinfo_cs);
1694 ppinfo = &pinfo;
1695 while (*ppinfo) {
1696 struct pinfo_t *info = *ppinfo;
1697 if (info->pid == pid) {
1698 CloseHandle(info->proc);
1699 *ppinfo = info->next;
1700 free(info);
1701 break;
1703 ppinfo = &info->next;
1706 LeaveCriticalSection(&pinfo_cs);
1708 CloseHandle(h);
1709 return pid;
1711 CloseHandle(h);
1713 errno = EINVAL;
1714 return -1;