use isxdigit() for checking if a character is a hexadecimal digit
[git.git] / compat / mingw.c
blob363a957a1d406d222c1099ec01d0aea6fae43add
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <conio.h>
4 #include "../strbuf.h"
5 #include "../run-command.h"
7 static const int delay[] = { 0, 1, 10, 20, 40 };
9 int err_win_to_posix(DWORD winerr)
11 int error = ENOSYS;
12 switch(winerr) {
13 case ERROR_ACCESS_DENIED: error = EACCES; break;
14 case ERROR_ACCOUNT_DISABLED: error = EACCES; break;
15 case ERROR_ACCOUNT_RESTRICTION: error = EACCES; break;
16 case ERROR_ALREADY_ASSIGNED: error = EBUSY; break;
17 case ERROR_ALREADY_EXISTS: error = EEXIST; break;
18 case ERROR_ARITHMETIC_OVERFLOW: error = ERANGE; break;
19 case ERROR_BAD_COMMAND: error = EIO; break;
20 case ERROR_BAD_DEVICE: error = ENODEV; break;
21 case ERROR_BAD_DRIVER_LEVEL: error = ENXIO; break;
22 case ERROR_BAD_EXE_FORMAT: error = ENOEXEC; break;
23 case ERROR_BAD_FORMAT: error = ENOEXEC; break;
24 case ERROR_BAD_LENGTH: error = EINVAL; break;
25 case ERROR_BAD_PATHNAME: error = ENOENT; break;
26 case ERROR_BAD_PIPE: error = EPIPE; break;
27 case ERROR_BAD_UNIT: error = ENODEV; break;
28 case ERROR_BAD_USERNAME: error = EINVAL; break;
29 case ERROR_BROKEN_PIPE: error = EPIPE; break;
30 case ERROR_BUFFER_OVERFLOW: error = ENAMETOOLONG; break;
31 case ERROR_BUSY: error = EBUSY; break;
32 case ERROR_BUSY_DRIVE: error = EBUSY; break;
33 case ERROR_CALL_NOT_IMPLEMENTED: error = ENOSYS; break;
34 case ERROR_CANNOT_MAKE: error = EACCES; break;
35 case ERROR_CANTOPEN: error = EIO; break;
36 case ERROR_CANTREAD: error = EIO; break;
37 case ERROR_CANTWRITE: error = EIO; break;
38 case ERROR_CRC: error = EIO; break;
39 case ERROR_CURRENT_DIRECTORY: error = EACCES; break;
40 case ERROR_DEVICE_IN_USE: error = EBUSY; break;
41 case ERROR_DEV_NOT_EXIST: error = ENODEV; break;
42 case ERROR_DIRECTORY: error = EINVAL; break;
43 case ERROR_DIR_NOT_EMPTY: error = ENOTEMPTY; break;
44 case ERROR_DISK_CHANGE: error = EIO; break;
45 case ERROR_DISK_FULL: error = ENOSPC; break;
46 case ERROR_DRIVE_LOCKED: error = EBUSY; break;
47 case ERROR_ENVVAR_NOT_FOUND: error = EINVAL; break;
48 case ERROR_EXE_MARKED_INVALID: error = ENOEXEC; break;
49 case ERROR_FILENAME_EXCED_RANGE: error = ENAMETOOLONG; break;
50 case ERROR_FILE_EXISTS: error = EEXIST; break;
51 case ERROR_FILE_INVALID: error = ENODEV; break;
52 case ERROR_FILE_NOT_FOUND: error = ENOENT; break;
53 case ERROR_GEN_FAILURE: error = EIO; break;
54 case ERROR_HANDLE_DISK_FULL: error = ENOSPC; break;
55 case ERROR_INSUFFICIENT_BUFFER: error = ENOMEM; break;
56 case ERROR_INVALID_ACCESS: error = EACCES; break;
57 case ERROR_INVALID_ADDRESS: error = EFAULT; break;
58 case ERROR_INVALID_BLOCK: error = EFAULT; break;
59 case ERROR_INVALID_DATA: error = EINVAL; break;
60 case ERROR_INVALID_DRIVE: error = ENODEV; break;
61 case ERROR_INVALID_EXE_SIGNATURE: error = ENOEXEC; break;
62 case ERROR_INVALID_FLAGS: error = EINVAL; break;
63 case ERROR_INVALID_FUNCTION: error = ENOSYS; break;
64 case ERROR_INVALID_HANDLE: error = EBADF; break;
65 case ERROR_INVALID_LOGON_HOURS: error = EACCES; break;
66 case ERROR_INVALID_NAME: error = EINVAL; break;
67 case ERROR_INVALID_OWNER: error = EINVAL; break;
68 case ERROR_INVALID_PARAMETER: error = EINVAL; break;
69 case ERROR_INVALID_PASSWORD: error = EPERM; break;
70 case ERROR_INVALID_PRIMARY_GROUP: error = EINVAL; break;
71 case ERROR_INVALID_SIGNAL_NUMBER: error = EINVAL; break;
72 case ERROR_INVALID_TARGET_HANDLE: error = EIO; break;
73 case ERROR_INVALID_WORKSTATION: error = EACCES; break;
74 case ERROR_IO_DEVICE: error = EIO; break;
75 case ERROR_IO_INCOMPLETE: error = EINTR; break;
76 case ERROR_LOCKED: error = EBUSY; break;
77 case ERROR_LOCK_VIOLATION: error = EACCES; break;
78 case ERROR_LOGON_FAILURE: error = EACCES; break;
79 case ERROR_MAPPED_ALIGNMENT: error = EINVAL; break;
80 case ERROR_META_EXPANSION_TOO_LONG: error = E2BIG; break;
81 case ERROR_MORE_DATA: error = EPIPE; break;
82 case ERROR_NEGATIVE_SEEK: error = ESPIPE; break;
83 case ERROR_NOACCESS: error = EFAULT; break;
84 case ERROR_NONE_MAPPED: error = EINVAL; break;
85 case ERROR_NOT_ENOUGH_MEMORY: error = ENOMEM; break;
86 case ERROR_NOT_READY: error = EAGAIN; break;
87 case ERROR_NOT_SAME_DEVICE: error = EXDEV; break;
88 case ERROR_NO_DATA: error = EPIPE; break;
89 case ERROR_NO_MORE_SEARCH_HANDLES: error = EIO; break;
90 case ERROR_NO_PROC_SLOTS: error = EAGAIN; break;
91 case ERROR_NO_SUCH_PRIVILEGE: error = EACCES; break;
92 case ERROR_OPEN_FAILED: error = EIO; break;
93 case ERROR_OPEN_FILES: error = EBUSY; break;
94 case ERROR_OPERATION_ABORTED: error = EINTR; break;
95 case ERROR_OUTOFMEMORY: error = ENOMEM; break;
96 case ERROR_PASSWORD_EXPIRED: error = EACCES; break;
97 case ERROR_PATH_BUSY: error = EBUSY; break;
98 case ERROR_PATH_NOT_FOUND: error = ENOENT; break;
99 case ERROR_PIPE_BUSY: error = EBUSY; break;
100 case ERROR_PIPE_CONNECTED: error = EPIPE; break;
101 case ERROR_PIPE_LISTENING: error = EPIPE; break;
102 case ERROR_PIPE_NOT_CONNECTED: error = EPIPE; break;
103 case ERROR_PRIVILEGE_NOT_HELD: error = EACCES; break;
104 case ERROR_READ_FAULT: error = EIO; break;
105 case ERROR_SEEK: error = EIO; break;
106 case ERROR_SEEK_ON_DEVICE: error = ESPIPE; break;
107 case ERROR_SHARING_BUFFER_EXCEEDED: error = ENFILE; break;
108 case ERROR_SHARING_VIOLATION: error = EACCES; break;
109 case ERROR_STACK_OVERFLOW: error = ENOMEM; break;
110 case ERROR_SWAPERROR: error = ENOENT; break;
111 case ERROR_TOO_MANY_MODULES: error = EMFILE; break;
112 case ERROR_TOO_MANY_OPEN_FILES: error = EMFILE; break;
113 case ERROR_UNRECOGNIZED_MEDIA: error = ENXIO; break;
114 case ERROR_UNRECOGNIZED_VOLUME: error = ENODEV; break;
115 case ERROR_WAIT_NO_CHILDREN: error = ECHILD; break;
116 case ERROR_WRITE_FAULT: error = EIO; break;
117 case ERROR_WRITE_PROTECT: error = EROFS; break;
119 return error;
122 static inline int is_file_in_use_error(DWORD errcode)
124 switch (errcode) {
125 case ERROR_SHARING_VIOLATION:
126 case ERROR_ACCESS_DENIED:
127 return 1;
130 return 0;
133 static int read_yes_no_answer(void)
135 char answer[1024];
137 if (fgets(answer, sizeof(answer), stdin)) {
138 size_t answer_len = strlen(answer);
139 int got_full_line = 0, c;
141 /* remove the newline */
142 if (answer_len >= 2 && answer[answer_len-2] == '\r') {
143 answer[answer_len-2] = '\0';
144 got_full_line = 1;
145 } else if (answer_len >= 1 && answer[answer_len-1] == '\n') {
146 answer[answer_len-1] = '\0';
147 got_full_line = 1;
149 /* flush the buffer in case we did not get the full line */
150 if (!got_full_line)
151 while ((c = getchar()) != EOF && c != '\n')
153 } else
154 /* we could not read, return the
155 * default answer which is no */
156 return 0;
158 if (tolower(answer[0]) == 'y' && !answer[1])
159 return 1;
160 if (!strncasecmp(answer, "yes", sizeof(answer)))
161 return 1;
162 if (tolower(answer[0]) == 'n' && !answer[1])
163 return 0;
164 if (!strncasecmp(answer, "no", sizeof(answer)))
165 return 0;
167 /* did not find an answer we understand */
168 return -1;
171 static int ask_yes_no_if_possible(const char *format, ...)
173 char question[4096];
174 const char *retry_hook[] = { NULL, NULL, NULL };
175 va_list args;
177 va_start(args, format);
178 vsnprintf(question, sizeof(question), format, args);
179 va_end(args);
181 if ((retry_hook[0] = mingw_getenv("GIT_ASK_YESNO"))) {
182 retry_hook[1] = question;
183 return !run_command_v_opt(retry_hook, 0);
186 if (!isatty(_fileno(stdin)) || !isatty(_fileno(stderr)))
187 return 0;
189 while (1) {
190 int answer;
191 fprintf(stderr, "%s (y/n) ", question);
193 if ((answer = read_yes_no_answer()) >= 0)
194 return answer;
196 fprintf(stderr, "Sorry, I did not understand your answer. "
197 "Please type 'y' or 'n'\n");
201 #undef unlink
202 int mingw_unlink(const char *pathname)
204 int ret, tries = 0;
206 /* read-only files cannot be removed */
207 chmod(pathname, 0666);
208 while ((ret = unlink(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
209 if (!is_file_in_use_error(GetLastError()))
210 break;
212 * We assume that some other process had the source or
213 * destination file open at the wrong moment and retry.
214 * In order to give the other process a higher chance to
215 * complete its operation, we give up our time slice now.
216 * If we have to retry again, we do sleep a bit.
218 Sleep(delay[tries]);
219 tries++;
221 while (ret == -1 && is_file_in_use_error(GetLastError()) &&
222 ask_yes_no_if_possible("Unlink of file '%s' failed. "
223 "Should I try again?", pathname))
224 ret = unlink(pathname);
225 return ret;
228 static int is_dir_empty(const char *path)
230 struct strbuf buf = STRBUF_INIT;
231 WIN32_FIND_DATAA findbuf;
232 HANDLE handle;
234 strbuf_addf(&buf, "%s\\*", path);
235 handle = FindFirstFileA(buf.buf, &findbuf);
236 if (handle == INVALID_HANDLE_VALUE) {
237 strbuf_release(&buf);
238 return GetLastError() == ERROR_NO_MORE_FILES;
241 while (!strcmp(findbuf.cFileName, ".") ||
242 !strcmp(findbuf.cFileName, ".."))
243 if (!FindNextFile(handle, &findbuf)) {
244 strbuf_release(&buf);
245 return GetLastError() == ERROR_NO_MORE_FILES;
247 FindClose(handle);
248 strbuf_release(&buf);
249 return 0;
252 #undef rmdir
253 int mingw_rmdir(const char *pathname)
255 int ret, tries = 0;
257 while ((ret = rmdir(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
258 if (!is_file_in_use_error(GetLastError()))
259 errno = err_win_to_posix(GetLastError());
260 if (errno != EACCES)
261 break;
262 if (!is_dir_empty(pathname)) {
263 errno = ENOTEMPTY;
264 break;
267 * We assume that some other process had the source or
268 * destination file open at the wrong moment and retry.
269 * In order to give the other process a higher chance to
270 * complete its operation, we give up our time slice now.
271 * If we have to retry again, we do sleep a bit.
273 Sleep(delay[tries]);
274 tries++;
276 while (ret == -1 && errno == EACCES && is_file_in_use_error(GetLastError()) &&
277 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
278 "Should I try again?", pathname))
279 ret = rmdir(pathname);
280 return ret;
283 #undef open
284 int mingw_open (const char *filename, int oflags, ...)
286 va_list args;
287 unsigned mode;
288 int fd;
290 va_start(args, oflags);
291 mode = va_arg(args, int);
292 va_end(args);
294 if (filename && !strcmp(filename, "/dev/null"))
295 filename = "nul";
297 fd = open(filename, oflags, mode);
299 if (fd < 0 && (oflags & O_CREAT) && errno == EACCES) {
300 DWORD attrs = GetFileAttributes(filename);
301 if (attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY))
302 errno = EISDIR;
304 return fd;
307 static BOOL WINAPI ctrl_ignore(DWORD type)
309 return TRUE;
312 #undef fgetc
313 int mingw_fgetc(FILE *stream)
315 int ch;
316 if (!isatty(_fileno(stream)))
317 return fgetc(stream);
319 SetConsoleCtrlHandler(ctrl_ignore, TRUE);
320 while (1) {
321 ch = fgetc(stream);
322 if (ch != EOF || GetLastError() != ERROR_OPERATION_ABORTED)
323 break;
325 /* Ctrl+C was pressed, simulate SIGINT and retry */
326 mingw_raise(SIGINT);
328 SetConsoleCtrlHandler(ctrl_ignore, FALSE);
329 return ch;
332 #undef fopen
333 FILE *mingw_fopen (const char *filename, const char *otype)
335 if (filename && !strcmp(filename, "/dev/null"))
336 filename = "nul";
337 return fopen(filename, otype);
340 #undef freopen
341 FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream)
343 if (filename && !strcmp(filename, "/dev/null"))
344 filename = "nul";
345 return freopen(filename, otype, stream);
348 #undef fflush
349 int mingw_fflush(FILE *stream)
351 int ret = fflush(stream);
354 * write() is used behind the scenes of stdio output functions.
355 * Since git code does not check for errors after each stdio write
356 * operation, it can happen that write() is called by a later
357 * stdio function even if an earlier write() call failed. In the
358 * case of a pipe whose readable end was closed, only the first
359 * call to write() reports EPIPE on Windows. Subsequent write()
360 * calls report EINVAL. It is impossible to notice whether this
361 * fflush invocation triggered such a case, therefore, we have to
362 * catch all EINVAL errors whole-sale.
364 if (ret && errno == EINVAL)
365 errno = EPIPE;
367 return ret;
371 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
372 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
374 static inline long long filetime_to_hnsec(const FILETIME *ft)
376 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
377 /* Windows to Unix Epoch conversion */
378 return winTime - 116444736000000000LL;
381 static inline time_t filetime_to_time_t(const FILETIME *ft)
383 return (time_t)(filetime_to_hnsec(ft) / 10000000);
386 /* We keep the do_lstat code in a separate function to avoid recursion.
387 * When a path ends with a slash, the stat will fail with ENOENT. In
388 * this case, we strip the trailing slashes and stat again.
390 * If follow is true then act like stat() and report on the link
391 * target. Otherwise report on the link itself.
393 static int do_lstat(int follow, const char *file_name, struct stat *buf)
395 int err;
396 WIN32_FILE_ATTRIBUTE_DATA fdata;
398 if (!(err = get_file_attr(file_name, &fdata))) {
399 buf->st_ino = 0;
400 buf->st_gid = 0;
401 buf->st_uid = 0;
402 buf->st_nlink = 1;
403 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
404 buf->st_size = fdata.nFileSizeLow |
405 (((off_t)fdata.nFileSizeHigh)<<32);
406 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
407 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
408 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
409 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
410 if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
411 WIN32_FIND_DATAA findbuf;
412 HANDLE handle = FindFirstFileA(file_name, &findbuf);
413 if (handle != INVALID_HANDLE_VALUE) {
414 if ((findbuf.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) &&
415 (findbuf.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) {
416 if (follow) {
417 char buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
418 buf->st_size = readlink(file_name, buffer, MAXIMUM_REPARSE_DATA_BUFFER_SIZE);
419 } else {
420 buf->st_mode = S_IFLNK;
422 buf->st_mode |= S_IREAD;
423 if (!(findbuf.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
424 buf->st_mode |= S_IWRITE;
426 FindClose(handle);
429 return 0;
431 errno = err;
432 return -1;
435 /* We provide our own lstat/fstat functions, since the provided
436 * lstat/fstat functions are so slow. These stat functions are
437 * tailored for Git's usage (read: fast), and are not meant to be
438 * complete. Note that Git stat()s are redirected to mingw_lstat()
439 * too, since Windows doesn't really handle symlinks that well.
441 static int do_stat_internal(int follow, const char *file_name, struct stat *buf)
443 int namelen;
444 static char alt_name[PATH_MAX];
446 if (!do_lstat(follow, file_name, buf))
447 return 0;
449 /* if file_name ended in a '/', Windows returned ENOENT;
450 * try again without trailing slashes
452 if (errno != ENOENT)
453 return -1;
455 namelen = strlen(file_name);
456 if (namelen && file_name[namelen-1] != '/')
457 return -1;
458 while (namelen && file_name[namelen-1] == '/')
459 --namelen;
460 if (!namelen || namelen >= PATH_MAX)
461 return -1;
463 memcpy(alt_name, file_name, namelen);
464 alt_name[namelen] = 0;
465 return do_lstat(follow, alt_name, buf);
468 int mingw_lstat(const char *file_name, struct stat *buf)
470 return do_stat_internal(0, file_name, buf);
472 int mingw_stat(const char *file_name, struct stat *buf)
474 return do_stat_internal(1, file_name, buf);
477 int mingw_fstat(int fd, struct stat *buf)
479 HANDLE fh = (HANDLE)_get_osfhandle(fd);
480 BY_HANDLE_FILE_INFORMATION fdata;
482 if (fh == INVALID_HANDLE_VALUE) {
483 errno = EBADF;
484 return -1;
486 /* direct non-file handles to MS's fstat() */
487 if (GetFileType(fh) != FILE_TYPE_DISK)
488 return _fstati64(fd, buf);
490 if (GetFileInformationByHandle(fh, &fdata)) {
491 buf->st_ino = 0;
492 buf->st_gid = 0;
493 buf->st_uid = 0;
494 buf->st_nlink = 1;
495 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
496 buf->st_size = fdata.nFileSizeLow |
497 (((off_t)fdata.nFileSizeHigh)<<32);
498 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
499 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
500 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
501 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
502 return 0;
504 errno = EBADF;
505 return -1;
508 static inline void time_t_to_filetime(time_t t, FILETIME *ft)
510 long long winTime = t * 10000000LL + 116444736000000000LL;
511 ft->dwLowDateTime = winTime;
512 ft->dwHighDateTime = winTime >> 32;
515 int mingw_utime (const char *file_name, const struct utimbuf *times)
517 FILETIME mft, aft;
518 int fh, rc;
520 /* must have write permission */
521 DWORD attrs = GetFileAttributes(file_name);
522 if (attrs != INVALID_FILE_ATTRIBUTES &&
523 (attrs & FILE_ATTRIBUTE_READONLY)) {
524 /* ignore errors here; open() will report them */
525 SetFileAttributes(file_name, attrs & ~FILE_ATTRIBUTE_READONLY);
528 if ((fh = open(file_name, O_RDWR | O_BINARY)) < 0) {
529 rc = -1;
530 goto revert_attrs;
533 if (times) {
534 time_t_to_filetime(times->modtime, &mft);
535 time_t_to_filetime(times->actime, &aft);
536 } else {
537 GetSystemTimeAsFileTime(&mft);
538 aft = mft;
540 if (!SetFileTime((HANDLE)_get_osfhandle(fh), NULL, &aft, &mft)) {
541 errno = EINVAL;
542 rc = -1;
543 } else
544 rc = 0;
545 close(fh);
547 revert_attrs:
548 if (attrs != INVALID_FILE_ATTRIBUTES &&
549 (attrs & FILE_ATTRIBUTE_READONLY)) {
550 /* ignore errors again */
551 SetFileAttributes(file_name, attrs);
553 return rc;
556 unsigned int sleep (unsigned int seconds)
558 Sleep(seconds*1000);
559 return 0;
562 int mkstemp(char *template)
564 char *filename = mktemp(template);
565 if (filename == NULL)
566 return -1;
567 return open(filename, O_RDWR | O_CREAT, 0600);
570 int gettimeofday(struct timeval *tv, void *tz)
572 FILETIME ft;
573 long long hnsec;
575 GetSystemTimeAsFileTime(&ft);
576 hnsec = filetime_to_hnsec(&ft);
577 tv->tv_sec = hnsec / 10000000;
578 tv->tv_usec = (hnsec % 10000000) / 10;
579 return 0;
582 int pipe(int filedes[2])
584 HANDLE h[2];
586 /* this creates non-inheritable handles */
587 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
588 errno = err_win_to_posix(GetLastError());
589 return -1;
591 filedes[0] = _open_osfhandle((int)h[0], O_NOINHERIT);
592 if (filedes[0] < 0) {
593 CloseHandle(h[0]);
594 CloseHandle(h[1]);
595 return -1;
597 filedes[1] = _open_osfhandle((int)h[1], O_NOINHERIT);
598 if (filedes[0] < 0) {
599 close(filedes[0]);
600 CloseHandle(h[1]);
601 return -1;
603 return 0;
606 struct tm *gmtime_r(const time_t *timep, struct tm *result)
608 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
609 memcpy(result, gmtime(timep), sizeof(struct tm));
610 return result;
613 struct tm *localtime_r(const time_t *timep, struct tm *result)
615 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
616 memcpy(result, localtime(timep), sizeof(struct tm));
617 return result;
620 #undef getcwd
621 char *mingw_getcwd(char *pointer, int len)
623 int i;
624 char *ret = getcwd(pointer, len);
625 if (!ret)
626 return ret;
627 for (i = 0; pointer[i]; i++)
628 if (pointer[i] == '\\')
629 pointer[i] = '/';
630 return ret;
634 * See http://msdn2.microsoft.com/en-us/library/17w5ykft(vs.71).aspx
635 * (Parsing C++ Command-Line Arguments)
637 static const char *quote_arg(const char *arg)
639 /* count chars to quote */
640 int len = 0, n = 0;
641 int force_quotes = 0;
642 char *q, *d;
643 const char *p = arg;
644 if (!*p) force_quotes = 1;
645 while (*p) {
646 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
647 force_quotes = 1;
648 else if (*p == '"')
649 n++;
650 else if (*p == '\\') {
651 int count = 0;
652 while (*p == '\\') {
653 count++;
654 p++;
655 len++;
657 if (*p == '"')
658 n += count*2 + 1;
659 continue;
661 len++;
662 p++;
664 if (!force_quotes && n == 0)
665 return arg;
667 /* insert \ where necessary */
668 d = q = xmalloc(len+n+3);
669 *d++ = '"';
670 while (*arg) {
671 if (*arg == '"')
672 *d++ = '\\';
673 else if (*arg == '\\') {
674 int count = 0;
675 while (*arg == '\\') {
676 count++;
677 *d++ = *arg++;
679 if (*arg == '"') {
680 while (count-- > 0)
681 *d++ = '\\';
682 *d++ = '\\';
685 *d++ = *arg++;
687 *d++ = '"';
688 *d++ = 0;
689 return q;
692 static const char *parse_interpreter(const char *cmd)
694 static char buf[100];
695 char *p, *opt;
696 int n, fd;
698 /* don't even try a .exe */
699 n = strlen(cmd);
700 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
701 return NULL;
703 fd = open(cmd, O_RDONLY);
704 if (fd < 0)
705 return NULL;
706 n = read(fd, buf, sizeof(buf)-1);
707 close(fd);
708 if (n < 4) /* at least '#!/x' and not error */
709 return NULL;
711 if (buf[0] != '#' || buf[1] != '!')
712 return NULL;
713 buf[n] = '\0';
714 p = buf + strcspn(buf, "\r\n");
715 if (!*p)
716 return NULL;
718 *p = '\0';
719 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
720 return NULL;
721 /* strip options */
722 if ((opt = strchr(p+1, ' ')))
723 *opt = '\0';
724 return p+1;
728 * Splits the PATH into parts.
730 static char **get_path_split(void)
732 char *p, **path, *envpath = mingw_getenv("PATH");
733 int i, n = 0;
735 if (!envpath || !*envpath)
736 return NULL;
738 envpath = xstrdup(envpath);
739 p = envpath;
740 while (p) {
741 char *dir = p;
742 p = strchr(p, ';');
743 if (p) *p++ = '\0';
744 if (*dir) { /* not earlier, catches series of ; */
745 ++n;
748 if (!n)
749 return NULL;
751 path = xmalloc((n+1)*sizeof(char *));
752 p = envpath;
753 i = 0;
754 do {
755 if (*p)
756 path[i++] = xstrdup(p);
757 p = p+strlen(p)+1;
758 } while (i < n);
759 path[i] = NULL;
761 free(envpath);
763 return path;
766 static void free_path_split(char **path)
768 char **p = path;
770 if (!path)
771 return;
773 while (*p)
774 free(*p++);
775 free(path);
779 * exe_only means that we only want to detect .exe files, but not scripts
780 * (which do not have an extension)
782 static char *lookup_prog(const char *dir, const char *cmd, int isexe, int exe_only)
784 char path[MAX_PATH];
785 snprintf(path, sizeof(path), "%s/%s.exe", dir, cmd);
787 if (!isexe && access(path, F_OK) == 0)
788 return xstrdup(path);
789 path[strlen(path)-4] = '\0';
790 if ((!exe_only || isexe) && access(path, F_OK) == 0)
791 if (!(GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY))
792 return xstrdup(path);
793 return NULL;
797 * Determines the absolute path of cmd using the split path in path.
798 * If cmd contains a slash or backslash, no lookup is performed.
800 static char *path_lookup(const char *cmd, char **path, int exe_only)
802 char *prog = NULL;
803 int len = strlen(cmd);
804 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
806 if (strchr(cmd, '/') || strchr(cmd, '\\'))
807 prog = xstrdup(cmd);
809 while (!prog && *path)
810 prog = lookup_prog(*path++, cmd, isexe, exe_only);
812 return prog;
815 static int env_compare(const void *a, const void *b)
817 char *const *ea = a;
818 char *const *eb = b;
819 return strcasecmp(*ea, *eb);
822 struct pinfo_t {
823 struct pinfo_t *next;
824 pid_t pid;
825 HANDLE proc;
827 static struct pinfo_t *pinfo = NULL;
828 CRITICAL_SECTION pinfo_cs;
830 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **env,
831 const char *dir,
832 int prepend_cmd, int fhin, int fhout, int fherr)
834 STARTUPINFO si;
835 PROCESS_INFORMATION pi;
836 struct strbuf envblk, args;
837 unsigned flags;
838 BOOL ret;
840 /* Determine whether or not we are associated to a console */
841 HANDLE cons = CreateFile("CONOUT$", GENERIC_WRITE,
842 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
843 FILE_ATTRIBUTE_NORMAL, NULL);
844 if (cons == INVALID_HANDLE_VALUE) {
845 /* There is no console associated with this process.
846 * Since the child is a console process, Windows
847 * would normally create a console window. But
848 * since we'll be redirecting std streams, we do
849 * not need the console.
850 * It is necessary to use DETACHED_PROCESS
851 * instead of CREATE_NO_WINDOW to make ssh
852 * recognize that it has no console.
854 flags = DETACHED_PROCESS;
855 } else {
856 /* There is already a console. If we specified
857 * DETACHED_PROCESS here, too, Windows would
858 * disassociate the child from the console.
859 * The same is true for CREATE_NO_WINDOW.
860 * Go figure!
862 flags = 0;
863 CloseHandle(cons);
865 memset(&si, 0, sizeof(si));
866 si.cb = sizeof(si);
867 si.dwFlags = STARTF_USESTDHANDLES;
868 si.hStdInput = (HANDLE) _get_osfhandle(fhin);
869 si.hStdOutput = (HANDLE) _get_osfhandle(fhout);
870 si.hStdError = (HANDLE) _get_osfhandle(fherr);
872 /* concatenate argv, quoting args as we go */
873 strbuf_init(&args, 0);
874 if (prepend_cmd) {
875 char *quoted = (char *)quote_arg(cmd);
876 strbuf_addstr(&args, quoted);
877 if (quoted != cmd)
878 free(quoted);
880 for (; *argv; argv++) {
881 char *quoted = (char *)quote_arg(*argv);
882 if (*args.buf)
883 strbuf_addch(&args, ' ');
884 strbuf_addstr(&args, quoted);
885 if (quoted != *argv)
886 free(quoted);
889 if (env) {
890 int count = 0;
891 char **e, **sorted_env;
893 for (e = env; *e; e++)
894 count++;
896 /* environment must be sorted */
897 sorted_env = xmalloc(sizeof(*sorted_env) * (count + 1));
898 memcpy(sorted_env, env, sizeof(*sorted_env) * (count + 1));
899 qsort(sorted_env, count, sizeof(*sorted_env), env_compare);
901 strbuf_init(&envblk, 0);
902 for (e = sorted_env; *e; e++) {
903 strbuf_addstr(&envblk, *e);
904 strbuf_addch(&envblk, '\0');
906 free(sorted_env);
909 memset(&pi, 0, sizeof(pi));
910 ret = CreateProcess(cmd, args.buf, NULL, NULL, TRUE, flags,
911 env ? envblk.buf : NULL, dir, &si, &pi);
913 if (env)
914 strbuf_release(&envblk);
915 strbuf_release(&args);
917 if (!ret) {
918 errno = ENOENT;
919 return -1;
921 CloseHandle(pi.hThread);
924 * The process ID is the human-readable identifier of the process
925 * that we want to present in log and error messages. The handle
926 * is not useful for this purpose. But we cannot close it, either,
927 * because it is not possible to turn a process ID into a process
928 * handle after the process terminated.
929 * Keep the handle in a list for waitpid.
931 EnterCriticalSection(&pinfo_cs);
933 struct pinfo_t *info = xmalloc(sizeof(struct pinfo_t));
934 info->pid = pi.dwProcessId;
935 info->proc = pi.hProcess;
936 info->next = pinfo;
937 pinfo = info;
939 LeaveCriticalSection(&pinfo_cs);
941 return (pid_t)pi.dwProcessId;
944 static pid_t mingw_spawnve(const char *cmd, const char **argv, char **env,
945 int prepend_cmd)
947 return mingw_spawnve_fd(cmd, argv, env, NULL, prepend_cmd, 0, 1, 2);
950 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
951 const char *dir,
952 int fhin, int fhout, int fherr)
954 pid_t pid;
955 char **path = get_path_split();
956 char *prog = path_lookup(cmd, path, 0);
958 if (!prog) {
959 errno = ENOENT;
960 pid = -1;
962 else {
963 const char *interpr = parse_interpreter(prog);
965 if (interpr) {
966 const char *argv0 = argv[0];
967 char *iprog = path_lookup(interpr, path, 1);
968 argv[0] = prog;
969 if (!iprog) {
970 errno = ENOENT;
971 pid = -1;
973 else {
974 pid = mingw_spawnve_fd(iprog, argv, env, dir, 1,
975 fhin, fhout, fherr);
976 free(iprog);
978 argv[0] = argv0;
980 else
981 pid = mingw_spawnve_fd(prog, argv, env, dir, 0,
982 fhin, fhout, fherr);
983 free(prog);
985 free_path_split(path);
986 return pid;
989 static int try_shell_exec(const char *cmd, char *const *argv, char **env)
991 const char *interpr = parse_interpreter(cmd);
992 char **path;
993 char *prog;
994 int pid = 0;
996 if (!interpr)
997 return 0;
998 path = get_path_split();
999 prog = path_lookup(interpr, path, 1);
1000 if (prog) {
1001 int argc = 0;
1002 const char **argv2;
1003 while (argv[argc]) argc++;
1004 argv2 = xmalloc(sizeof(*argv) * (argc+1));
1005 argv2[0] = (char *)cmd; /* full path to the script file */
1006 memcpy(&argv2[1], &argv[1], sizeof(*argv) * argc);
1007 pid = mingw_spawnve(prog, argv2, env, 1);
1008 if (pid >= 0) {
1009 int status;
1010 if (waitpid(pid, &status, 0) < 0)
1011 status = 255;
1012 exit(status);
1014 pid = 1; /* indicate that we tried but failed */
1015 free(prog);
1016 free(argv2);
1018 free_path_split(path);
1019 return pid;
1022 static void mingw_execve(const char *cmd, char *const *argv, char *const *env)
1024 /* check if git_command is a shell script */
1025 if (!try_shell_exec(cmd, argv, (char **)env)) {
1026 int pid, status;
1028 pid = mingw_spawnve(cmd, (const char **)argv, (char **)env, 0);
1029 if (pid < 0)
1030 return;
1031 if (waitpid(pid, &status, 0) < 0)
1032 status = 255;
1033 exit(status);
1037 int mingw_execvp(const char *cmd, char *const *argv)
1039 char **path = get_path_split();
1040 char *prog = path_lookup(cmd, path, 0);
1042 if (prog) {
1043 mingw_execve(prog, argv, environ);
1044 free(prog);
1045 } else
1046 errno = ENOENT;
1048 free_path_split(path);
1049 return -1;
1052 int mingw_execv(const char *cmd, char *const *argv)
1054 mingw_execve(cmd, argv, environ);
1055 return -1;
1058 int mingw_kill(pid_t pid, int sig)
1060 if (pid > 0 && sig == SIGTERM) {
1061 HANDLE h = OpenProcess(PROCESS_TERMINATE, FALSE, pid);
1063 if (TerminateProcess(h, -1)) {
1064 CloseHandle(h);
1065 return 0;
1068 errno = err_win_to_posix(GetLastError());
1069 CloseHandle(h);
1070 return -1;
1071 } else if (pid > 0 && sig == 0) {
1072 HANDLE h = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, pid);
1073 if (h) {
1074 CloseHandle(h);
1075 return 0;
1079 errno = EINVAL;
1080 return -1;
1083 static char **copy_environ(void)
1085 char **env;
1086 int i = 0;
1087 while (environ[i])
1088 i++;
1089 env = xmalloc((i+1)*sizeof(*env));
1090 for (i = 0; environ[i]; i++)
1091 env[i] = xstrdup(environ[i]);
1092 env[i] = NULL;
1093 return env;
1096 void free_environ(char **env)
1098 int i;
1099 for (i = 0; env[i]; i++)
1100 free(env[i]);
1101 free(env);
1104 static int lookup_env(char **env, const char *name, size_t nmln)
1106 int i;
1108 for (i = 0; env[i]; i++) {
1109 if (0 == strncmp(env[i], name, nmln)
1110 && '=' == env[i][nmln])
1111 /* matches */
1112 return i;
1114 return -1;
1118 * If name contains '=', then sets the variable, otherwise it unsets it
1120 static char **env_setenv(char **env, const char *name)
1122 char *eq = strchrnul(name, '=');
1123 int i = lookup_env(env, name, eq-name);
1125 if (i < 0) {
1126 if (*eq) {
1127 for (i = 0; env[i]; i++)
1129 env = xrealloc(env, (i+2)*sizeof(*env));
1130 env[i] = xstrdup(name);
1131 env[i+1] = NULL;
1134 else {
1135 free(env[i]);
1136 if (*eq)
1137 env[i] = xstrdup(name);
1138 else
1139 for (; env[i]; i++)
1140 env[i] = env[i+1];
1142 return env;
1146 * Copies global environ and adjusts variables as specified by vars.
1148 char **make_augmented_environ(const char *const *vars)
1150 char **env = copy_environ();
1152 while (*vars)
1153 env = env_setenv(env, *vars++);
1154 return env;
1157 #undef getenv
1160 * The system's getenv looks up the name in a case-insensitive manner.
1161 * This version tries a case-sensitive lookup and falls back to
1162 * case-insensitive if nothing was found. This is necessary because,
1163 * as a prominent example, CMD sets 'Path', but not 'PATH'.
1164 * Warning: not thread-safe.
1166 static char *getenv_cs(const char *name)
1168 size_t len = strlen(name);
1169 int i = lookup_env(environ, name, len);
1170 if (i >= 0)
1171 return environ[i] + len + 1; /* skip past name and '=' */
1172 return getenv(name);
1175 char *mingw_getenv(const char *name)
1177 char *result = getenv_cs(name);
1178 if (!result && !strcmp(name, "TMPDIR")) {
1179 /* on Windows it is TMP and TEMP */
1180 result = getenv_cs("TMP");
1181 if (!result)
1182 result = getenv_cs("TEMP");
1184 return result;
1188 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1189 * that service contains a numerical port, or that it is null. It
1190 * does a simple search using gethostbyname, and returns one IPv4 host
1191 * if one was found.
1193 static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
1194 const struct addrinfo *hints,
1195 struct addrinfo **res)
1197 struct hostent *h = NULL;
1198 struct addrinfo *ai;
1199 struct sockaddr_in *sin;
1201 if (node) {
1202 h = gethostbyname(node);
1203 if (!h)
1204 return WSAGetLastError();
1207 ai = xmalloc(sizeof(struct addrinfo));
1208 *res = ai;
1209 ai->ai_flags = 0;
1210 ai->ai_family = AF_INET;
1211 ai->ai_socktype = hints ? hints->ai_socktype : 0;
1212 switch (ai->ai_socktype) {
1213 case SOCK_STREAM:
1214 ai->ai_protocol = IPPROTO_TCP;
1215 break;
1216 case SOCK_DGRAM:
1217 ai->ai_protocol = IPPROTO_UDP;
1218 break;
1219 default:
1220 ai->ai_protocol = 0;
1221 break;
1223 ai->ai_addrlen = sizeof(struct sockaddr_in);
1224 if (hints && (hints->ai_flags & AI_CANONNAME))
1225 ai->ai_canonname = h ? xstrdup(h->h_name) : NULL;
1226 else
1227 ai->ai_canonname = NULL;
1229 sin = xcalloc(1, ai->ai_addrlen);
1230 sin->sin_family = AF_INET;
1231 /* Note: getaddrinfo is supposed to allow service to be a string,
1232 * which should be looked up using getservbyname. This is
1233 * currently not implemented */
1234 if (service)
1235 sin->sin_port = htons(atoi(service));
1236 if (h)
1237 sin->sin_addr = *(struct in_addr *)h->h_addr;
1238 else if (hints && (hints->ai_flags & AI_PASSIVE))
1239 sin->sin_addr.s_addr = INADDR_ANY;
1240 else
1241 sin->sin_addr.s_addr = INADDR_LOOPBACK;
1242 ai->ai_addr = (struct sockaddr *)sin;
1243 ai->ai_next = NULL;
1244 return 0;
1247 static void WSAAPI freeaddrinfo_stub(struct addrinfo *res)
1249 free(res->ai_canonname);
1250 free(res->ai_addr);
1251 free(res);
1254 static int WSAAPI getnameinfo_stub(const struct sockaddr *sa, socklen_t salen,
1255 char *host, DWORD hostlen,
1256 char *serv, DWORD servlen, int flags)
1258 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
1259 if (sa->sa_family != AF_INET)
1260 return EAI_FAMILY;
1261 if (!host && !serv)
1262 return EAI_NONAME;
1264 if (host && hostlen > 0) {
1265 struct hostent *ent = NULL;
1266 if (!(flags & NI_NUMERICHOST))
1267 ent = gethostbyaddr((const char *)&sin->sin_addr,
1268 sizeof(sin->sin_addr), AF_INET);
1270 if (ent)
1271 snprintf(host, hostlen, "%s", ent->h_name);
1272 else if (flags & NI_NAMEREQD)
1273 return EAI_NONAME;
1274 else
1275 snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
1278 if (serv && servlen > 0) {
1279 struct servent *ent = NULL;
1280 if (!(flags & NI_NUMERICSERV))
1281 ent = getservbyport(sin->sin_port,
1282 flags & NI_DGRAM ? "udp" : "tcp");
1284 if (ent)
1285 snprintf(serv, servlen, "%s", ent->s_name);
1286 else
1287 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
1290 return 0;
1293 static HMODULE ipv6_dll = NULL;
1294 static void (WSAAPI *ipv6_freeaddrinfo)(struct addrinfo *res);
1295 static int (WSAAPI *ipv6_getaddrinfo)(const char *node, const char *service,
1296 const struct addrinfo *hints,
1297 struct addrinfo **res);
1298 static int (WSAAPI *ipv6_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
1299 char *host, DWORD hostlen,
1300 char *serv, DWORD servlen, int flags);
1302 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1303 * don't need to try to load that one dynamically.
1306 static void socket_cleanup(void)
1308 WSACleanup();
1309 if (ipv6_dll)
1310 FreeLibrary(ipv6_dll);
1311 ipv6_dll = NULL;
1312 ipv6_freeaddrinfo = freeaddrinfo_stub;
1313 ipv6_getaddrinfo = getaddrinfo_stub;
1314 ipv6_getnameinfo = getnameinfo_stub;
1317 static void ensure_socket_initialization(void)
1319 WSADATA wsa;
1320 static int initialized = 0;
1321 const char *libraries[] = { "ws2_32.dll", "wship6.dll", NULL };
1322 const char **name;
1324 if (initialized)
1325 return;
1327 if (WSAStartup(MAKEWORD(2,2), &wsa))
1328 die("unable to initialize winsock subsystem, error %d",
1329 WSAGetLastError());
1331 for (name = libraries; *name; name++) {
1332 ipv6_dll = LoadLibrary(*name);
1333 if (!ipv6_dll)
1334 continue;
1336 ipv6_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *))
1337 GetProcAddress(ipv6_dll, "freeaddrinfo");
1338 ipv6_getaddrinfo = (int (WSAAPI *)(const char *, const char *,
1339 const struct addrinfo *,
1340 struct addrinfo **))
1341 GetProcAddress(ipv6_dll, "getaddrinfo");
1342 ipv6_getnameinfo = (int (WSAAPI *)(const struct sockaddr *,
1343 socklen_t, char *, DWORD,
1344 char *, DWORD, int))
1345 GetProcAddress(ipv6_dll, "getnameinfo");
1346 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1347 FreeLibrary(ipv6_dll);
1348 ipv6_dll = NULL;
1349 } else
1350 break;
1352 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1353 ipv6_freeaddrinfo = freeaddrinfo_stub;
1354 ipv6_getaddrinfo = getaddrinfo_stub;
1355 ipv6_getnameinfo = getnameinfo_stub;
1358 atexit(socket_cleanup);
1359 initialized = 1;
1362 #undef gethostname
1363 int mingw_gethostname(char *name, int namelen)
1365 ensure_socket_initialization();
1366 return gethostname(name, namelen);
1369 #undef gethostbyname
1370 struct hostent *mingw_gethostbyname(const char *host)
1372 ensure_socket_initialization();
1373 return gethostbyname(host);
1376 void mingw_freeaddrinfo(struct addrinfo *res)
1378 ipv6_freeaddrinfo(res);
1381 int mingw_getaddrinfo(const char *node, const char *service,
1382 const struct addrinfo *hints, struct addrinfo **res)
1384 ensure_socket_initialization();
1385 return ipv6_getaddrinfo(node, service, hints, res);
1388 int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
1389 char *host, DWORD hostlen, char *serv, DWORD servlen,
1390 int flags)
1392 ensure_socket_initialization();
1393 return ipv6_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
1396 int mingw_socket(int domain, int type, int protocol)
1398 int sockfd;
1399 SOCKET s;
1401 ensure_socket_initialization();
1402 s = WSASocket(domain, type, protocol, NULL, 0, 0);
1403 if (s == INVALID_SOCKET) {
1405 * WSAGetLastError() values are regular BSD error codes
1406 * biased by WSABASEERR.
1407 * However, strerror() does not know about networking
1408 * specific errors, which are values beginning at 38 or so.
1409 * Therefore, we choose to leave the biased error code
1410 * in errno so that _if_ someone looks up the code somewhere,
1411 * then it is at least the number that are usually listed.
1413 errno = WSAGetLastError();
1414 return -1;
1416 /* convert into a file descriptor */
1417 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
1418 closesocket(s);
1419 return error("unable to make a socket file descriptor: %s",
1420 strerror(errno));
1422 return sockfd;
1425 #undef connect
1426 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
1428 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1429 return connect(s, sa, sz);
1432 #undef bind
1433 int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz)
1435 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1436 return bind(s, sa, sz);
1439 #undef setsockopt
1440 int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen)
1442 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1443 return setsockopt(s, lvl, optname, (const char*)optval, optlen);
1446 #undef shutdown
1447 int mingw_shutdown(int sockfd, int how)
1449 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1450 return shutdown(s, how);
1453 #undef listen
1454 int mingw_listen(int sockfd, int backlog)
1456 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1457 return listen(s, backlog);
1460 #undef accept
1461 int mingw_accept(int sockfd1, struct sockaddr *sa, socklen_t *sz)
1463 int sockfd2;
1465 SOCKET s1 = (SOCKET)_get_osfhandle(sockfd1);
1466 SOCKET s2 = accept(s1, sa, sz);
1468 /* convert into a file descriptor */
1469 if ((sockfd2 = _open_osfhandle(s2, O_RDWR|O_BINARY)) < 0) {
1470 int err = errno;
1471 closesocket(s2);
1472 return error("unable to make a socket file descriptor: %s",
1473 strerror(err));
1475 return sockfd2;
1478 #undef rename
1479 int mingw_rename(const char *pold, const char *pnew)
1481 DWORD attrs, gle;
1482 int tries = 0;
1485 * Try native rename() first to get errno right.
1486 * It is based on MoveFile(), which cannot overwrite existing files.
1488 if (!rename(pold, pnew))
1489 return 0;
1490 if (errno != EEXIST)
1491 return -1;
1492 repeat:
1493 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1494 return 0;
1495 /* TODO: translate more errors */
1496 gle = GetLastError();
1497 if (gle == ERROR_ACCESS_DENIED &&
1498 (attrs = GetFileAttributes(pnew)) != INVALID_FILE_ATTRIBUTES) {
1499 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
1500 errno = EISDIR;
1501 return -1;
1503 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
1504 SetFileAttributes(pnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
1505 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1506 return 0;
1507 gle = GetLastError();
1508 /* revert file attributes on failure */
1509 SetFileAttributes(pnew, attrs);
1512 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
1514 * We assume that some other process had the source or
1515 * destination file open at the wrong moment and retry.
1516 * In order to give the other process a higher chance to
1517 * complete its operation, we give up our time slice now.
1518 * If we have to retry again, we do sleep a bit.
1520 Sleep(delay[tries]);
1521 tries++;
1522 goto repeat;
1524 if (gle == ERROR_ACCESS_DENIED &&
1525 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
1526 "Should I try again?", pold, pnew))
1527 goto repeat;
1529 errno = EACCES;
1530 return -1;
1534 * Note that this doesn't return the actual pagesize, but
1535 * the allocation granularity. If future Windows specific git code
1536 * needs the real getpagesize function, we need to find another solution.
1538 int mingw_getpagesize(void)
1540 SYSTEM_INFO si;
1541 GetSystemInfo(&si);
1542 return si.dwAllocationGranularity;
1545 struct passwd *getpwuid(int uid)
1547 static char user_name[100];
1548 static struct passwd p;
1550 DWORD len = sizeof(user_name);
1551 if (!GetUserName(user_name, &len))
1552 return NULL;
1553 p.pw_name = user_name;
1554 p.pw_gecos = "unknown";
1555 p.pw_dir = NULL;
1556 return &p;
1559 static HANDLE timer_event;
1560 static HANDLE timer_thread;
1561 static int timer_interval;
1562 static int one_shot;
1563 static sig_handler_t timer_fn = SIG_DFL, sigint_fn = SIG_DFL;
1565 /* The timer works like this:
1566 * The thread, ticktack(), is a trivial routine that most of the time
1567 * only waits to receive the signal to terminate. The main thread tells
1568 * the thread to terminate by setting the timer_event to the signalled
1569 * state.
1570 * But ticktack() interrupts the wait state after the timer's interval
1571 * length to call the signal handler.
1574 static unsigned __stdcall ticktack(void *dummy)
1576 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
1577 mingw_raise(SIGALRM);
1578 if (one_shot)
1579 break;
1581 return 0;
1584 static int start_timer_thread(void)
1586 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1587 if (timer_event) {
1588 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
1589 if (!timer_thread )
1590 return errno = ENOMEM,
1591 error("cannot start timer thread");
1592 } else
1593 return errno = ENOMEM,
1594 error("cannot allocate resources for timer");
1595 return 0;
1598 static void stop_timer_thread(void)
1600 if (timer_event)
1601 SetEvent(timer_event); /* tell thread to terminate */
1602 if (timer_thread) {
1603 int rc = WaitForSingleObject(timer_thread, 1000);
1604 if (rc == WAIT_TIMEOUT)
1605 error("timer thread did not terminate timely");
1606 else if (rc != WAIT_OBJECT_0)
1607 error("waiting for timer thread failed: %lu",
1608 GetLastError());
1609 CloseHandle(timer_thread);
1611 if (timer_event)
1612 CloseHandle(timer_event);
1613 timer_event = NULL;
1614 timer_thread = NULL;
1617 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
1619 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
1622 int setitimer(int type, struct itimerval *in, struct itimerval *out)
1624 static const struct timeval zero;
1625 static int atexit_done;
1627 if (out != NULL)
1628 return errno = EINVAL,
1629 error("setitimer param 3 != NULL not implemented");
1630 if (!is_timeval_eq(&in->it_interval, &zero) &&
1631 !is_timeval_eq(&in->it_interval, &in->it_value))
1632 return errno = EINVAL,
1633 error("setitimer: it_interval must be zero or eq it_value");
1635 if (timer_thread)
1636 stop_timer_thread();
1638 if (is_timeval_eq(&in->it_value, &zero) &&
1639 is_timeval_eq(&in->it_interval, &zero))
1640 return 0;
1642 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
1643 one_shot = is_timeval_eq(&in->it_interval, &zero);
1644 if (!atexit_done) {
1645 atexit(stop_timer_thread);
1646 atexit_done = 1;
1648 return start_timer_thread();
1651 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
1653 if (sig != SIGALRM)
1654 return errno = EINVAL,
1655 error("sigaction only implemented for SIGALRM");
1656 if (out != NULL)
1657 return errno = EINVAL,
1658 error("sigaction: param 3 != NULL not implemented");
1660 timer_fn = in->sa_handler;
1661 return 0;
1664 #undef signal
1665 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
1667 sig_handler_t old;
1669 switch (sig) {
1670 case SIGALRM:
1671 old = timer_fn;
1672 timer_fn = handler;
1673 break;
1675 case SIGINT:
1676 old = sigint_fn;
1677 sigint_fn = handler;
1678 break;
1680 default:
1681 return signal(sig, handler);
1684 return old;
1687 #undef raise
1688 int mingw_raise(int sig)
1690 switch (sig) {
1691 case SIGALRM:
1692 if (timer_fn == SIG_DFL) {
1693 if (isatty(STDERR_FILENO))
1694 fputs("Alarm clock\n", stderr);
1695 exit(128 + SIGALRM);
1696 } else if (timer_fn != SIG_IGN)
1697 timer_fn(SIGALRM);
1698 return 0;
1700 case SIGINT:
1701 if (sigint_fn == SIG_DFL)
1702 exit(128 + SIGINT);
1703 else if (sigint_fn != SIG_IGN)
1704 sigint_fn(SIGINT);
1705 return 0;
1707 default:
1708 return raise(sig);
1713 static const char *make_backslash_path(const char *path)
1715 static char buf[PATH_MAX + 1];
1716 char *c;
1718 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
1719 die("Too long path: %.*s", 60, path);
1721 for (c = buf; *c; c++) {
1722 if (*c == '/')
1723 *c = '\\';
1725 return buf;
1728 void mingw_open_html(const char *unixpath)
1730 const char *htmlpath = make_backslash_path(unixpath);
1731 typedef HINSTANCE (WINAPI *T)(HWND, const char *,
1732 const char *, const char *, const char *, INT);
1733 T ShellExecute;
1734 HMODULE shell32;
1735 int r;
1737 shell32 = LoadLibrary("shell32.dll");
1738 if (!shell32)
1739 die("cannot load shell32.dll");
1740 ShellExecute = (T)GetProcAddress(shell32, "ShellExecuteA");
1741 if (!ShellExecute)
1742 die("cannot run browser");
1744 printf("Launching default browser to display HTML ...\n");
1745 r = (int)ShellExecute(NULL, "open", htmlpath, NULL, "\\", SW_SHOWNORMAL);
1746 FreeLibrary(shell32);
1747 /* see the MSDN documentation referring to the result codes here */
1748 if (r <= 32) {
1749 die("failed to launch browser for %.*s", MAX_PATH, unixpath);
1753 int link(const char *oldpath, const char *newpath)
1755 typedef BOOL (WINAPI *T)(const char*, const char*, LPSECURITY_ATTRIBUTES);
1756 static T create_hard_link = NULL;
1757 if (!create_hard_link) {
1758 create_hard_link = (T) GetProcAddress(
1759 GetModuleHandle("kernel32.dll"), "CreateHardLinkA");
1760 if (!create_hard_link)
1761 create_hard_link = (T)-1;
1763 if (create_hard_link == (T)-1) {
1764 errno = ENOSYS;
1765 return -1;
1767 if (!create_hard_link(newpath, oldpath, NULL)) {
1768 errno = err_win_to_posix(GetLastError());
1769 return -1;
1771 return 0;
1774 pid_t waitpid(pid_t pid, int *status, int options)
1776 HANDLE h = OpenProcess(SYNCHRONIZE | PROCESS_QUERY_INFORMATION,
1777 FALSE, pid);
1778 if (!h) {
1779 errno = ECHILD;
1780 return -1;
1783 if (pid > 0 && options & WNOHANG) {
1784 if (WAIT_OBJECT_0 != WaitForSingleObject(h, 0)) {
1785 CloseHandle(h);
1786 return 0;
1788 options &= ~WNOHANG;
1791 if (options == 0) {
1792 struct pinfo_t **ppinfo;
1793 if (WaitForSingleObject(h, INFINITE) != WAIT_OBJECT_0) {
1794 CloseHandle(h);
1795 return 0;
1798 if (status)
1799 GetExitCodeProcess(h, (LPDWORD)status);
1801 EnterCriticalSection(&pinfo_cs);
1803 ppinfo = &pinfo;
1804 while (*ppinfo) {
1805 struct pinfo_t *info = *ppinfo;
1806 if (info->pid == pid) {
1807 CloseHandle(info->proc);
1808 *ppinfo = info->next;
1809 free(info);
1810 break;
1812 ppinfo = &info->next;
1815 LeaveCriticalSection(&pinfo_cs);
1817 CloseHandle(h);
1818 return pid;
1820 CloseHandle(h);
1822 errno = EINVAL;
1823 return -1;