mingw: add fallback for rmdir in case directory is in use
[git/dscho.git] / compat / mingw.c
blob8839ed52d5afeb0f767562375c1d7b3cb36096a2
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 rmdir
236 int mingw_rmdir(const char *pathname)
238 int ret, tries = 0;
240 while ((ret = rmdir(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
241 if (errno != EACCES)
242 break;
244 * We assume that some other process had the source or
245 * destination file open at the wrong moment and retry.
246 * In order to give the other process a higher chance to
247 * complete its operation, we give up our time slice now.
248 * If we have to retry again, we do sleep a bit.
250 Sleep(delay[tries]);
251 tries++;
253 while (ret == -1 && errno == EACCES &&
254 ask_user_yes_no("Deletion of directory '%s' failed. "
255 "Should I try again?", pathname))
256 ret = rmdir(pathname);
257 return ret;
260 #undef open
261 int mingw_open (const char *filename, int oflags, ...)
263 va_list args;
264 unsigned mode;
265 int fd;
267 va_start(args, oflags);
268 mode = va_arg(args, int);
269 va_end(args);
271 if (!strcmp(filename, "/dev/null"))
272 filename = "nul";
274 fd = open(filename, oflags, mode);
276 if (fd < 0 && (oflags & O_CREAT) && errno == EACCES) {
277 DWORD attrs = GetFileAttributes(filename);
278 if (attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY))
279 errno = EISDIR;
281 if ((oflags & O_CREAT) && fd >= 0 &&
282 hide_dotfiles == HIDE_DOTFILES_TRUE) {
284 * In Windows a file or dir starting with a dot is not
285 * automatically hidden. So lets mark it as hidden when
286 * such a file is created.
288 const char *start = basename((char*)filename);
289 if (*start == '.' && make_hidden(filename))
290 warning("Could not mark '%s' as hidden.", filename);
292 return fd;
295 #undef write
296 ssize_t mingw_write(int fd, const void *buf, size_t count)
299 * While write() calls to a file on a local disk are translated
300 * into WriteFile() calls with a maximum size of 64KB on Windows
301 * XP and 256KB on Vista, no such cap is placed on writes to
302 * files over the network on Windows XP. Unfortunately, there
303 * seems to be a limit of 32MB-28KB on X64 and 64MB-32KB on x86;
304 * bigger writes fail on Windows XP.
305 * So we cap to a nice 31MB here to avoid write failures over
306 * the net without changing the number of WriteFile() calls in
307 * the local case.
309 return write(fd, buf, min(count, 31 * 1024 * 1024));
312 #undef fopen
313 FILE *mingw_fopen (const char *filename, const char *otype)
315 int hide = 0;
316 FILE *file;
317 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
318 basename((char*)filename)[0] == '.')
319 hide = access(filename, F_OK);
320 if (!strcmp(filename, "/dev/null"))
321 filename = "nul";
322 file = fopen(filename, otype);
323 if (file && hide && make_hidden(filename))
324 warning("Could not mark '%s' as hidden.", filename);
325 return file;
328 #undef freopen
329 FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream)
331 int hide = 0;
332 FILE *file;
333 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
334 basename((char*)filename)[0] == '.')
335 hide = access(filename, F_OK);
336 if (filename && !strcmp(filename, "/dev/null"))
337 filename = "nul";
338 file = freopen(filename, otype, stream);
339 if (file && hide && make_hidden(filename))
340 warning("Could not mark '%s' as hidden.", filename);
341 return file;
345 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
346 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
348 static inline long long filetime_to_hnsec(const FILETIME *ft)
350 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
351 /* Windows to Unix Epoch conversion */
352 return winTime - 116444736000000000LL;
355 static inline time_t filetime_to_time_t(const FILETIME *ft)
357 return (time_t)(filetime_to_hnsec(ft) / 10000000);
360 /* We keep the do_lstat code in a separate function to avoid recursion.
361 * When a path ends with a slash, the stat will fail with ENOENT. In
362 * this case, we strip the trailing slashes and stat again.
364 static int do_lstat(const char *file_name, struct stat *buf)
366 WIN32_FILE_ATTRIBUTE_DATA fdata;
368 if (!(errno = get_file_attr(file_name, &fdata))) {
369 buf->st_ino = 0;
370 buf->st_gid = 0;
371 buf->st_uid = 0;
372 buf->st_nlink = 1;
373 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
374 buf->st_size = fdata.nFileSizeLow |
375 (((off_t)fdata.nFileSizeHigh)<<32);
376 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
377 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
378 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
379 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
380 return 0;
382 return -1;
385 /* We provide our own lstat/fstat functions, since the provided
386 * lstat/fstat functions are so slow. These stat functions are
387 * tailored for Git's usage (read: fast), and are not meant to be
388 * complete. Note that Git stat()s are redirected to mingw_lstat()
389 * too, since Windows doesn't really handle symlinks that well.
391 int mingw_lstat(const char *file_name, struct stat *buf)
393 int namelen;
394 static char alt_name[PATH_MAX];
396 if (!do_lstat(file_name, buf))
397 return 0;
399 /* if file_name ended in a '/', Windows returned ENOENT;
400 * try again without trailing slashes
402 if (errno != ENOENT)
403 return -1;
405 namelen = strlen(file_name);
406 if (namelen && file_name[namelen-1] != '/')
407 return -1;
408 while (namelen && file_name[namelen-1] == '/')
409 --namelen;
410 if (!namelen || namelen >= PATH_MAX)
411 return -1;
413 memcpy(alt_name, file_name, namelen);
414 alt_name[namelen] = 0;
415 return do_lstat(alt_name, buf);
418 #undef fstat
419 int mingw_fstat(int fd, struct stat *buf)
421 HANDLE fh = (HANDLE)_get_osfhandle(fd);
422 BY_HANDLE_FILE_INFORMATION fdata;
424 if (fh == INVALID_HANDLE_VALUE) {
425 errno = EBADF;
426 return -1;
428 /* direct non-file handles to MS's fstat() */
429 if (GetFileType(fh) != FILE_TYPE_DISK)
430 return _fstati64(fd, buf);
432 if (GetFileInformationByHandle(fh, &fdata)) {
433 buf->st_ino = 0;
434 buf->st_gid = 0;
435 buf->st_uid = 0;
436 buf->st_nlink = 1;
437 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
438 buf->st_size = fdata.nFileSizeLow |
439 (((off_t)fdata.nFileSizeHigh)<<32);
440 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
441 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
442 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
443 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
444 return 0;
446 errno = EBADF;
447 return -1;
450 static inline void time_t_to_filetime(time_t t, FILETIME *ft)
452 long long winTime = t * 10000000LL + 116444736000000000LL;
453 ft->dwLowDateTime = winTime;
454 ft->dwHighDateTime = winTime >> 32;
457 int mingw_utime (const char *file_name, const struct utimbuf *times)
459 FILETIME mft, aft;
460 int fh, rc;
462 /* must have write permission */
463 DWORD attrs = GetFileAttributes(file_name);
464 if (attrs != INVALID_FILE_ATTRIBUTES &&
465 (attrs & FILE_ATTRIBUTE_READONLY)) {
466 /* ignore errors here; open() will report them */
467 SetFileAttributes(file_name, attrs & ~FILE_ATTRIBUTE_READONLY);
470 if ((fh = open(file_name, O_RDWR | O_BINARY)) < 0) {
471 rc = -1;
472 goto revert_attrs;
475 time_t_to_filetime(times->modtime, &mft);
476 time_t_to_filetime(times->actime, &aft);
477 if (!SetFileTime((HANDLE)_get_osfhandle(fh), NULL, &aft, &mft)) {
478 errno = EINVAL;
479 rc = -1;
480 } else
481 rc = 0;
482 close(fh);
484 revert_attrs:
485 if (attrs != INVALID_FILE_ATTRIBUTES &&
486 (attrs & FILE_ATTRIBUTE_READONLY)) {
487 /* ignore errors again */
488 SetFileAttributes(file_name, attrs);
490 return rc;
493 unsigned int sleep (unsigned int seconds)
495 Sleep(seconds*1000);
496 return 0;
499 int mkstemp(char *template)
501 char *filename = mktemp(template);
502 if (filename == NULL)
503 return -1;
504 return open(filename, O_RDWR | O_CREAT, 0600);
507 int gettimeofday(struct timeval *tv, void *tz)
509 FILETIME ft;
510 long long hnsec;
512 GetSystemTimeAsFileTime(&ft);
513 hnsec = filetime_to_hnsec(&ft);
514 tv->tv_sec = hnsec / 10000000;
515 tv->tv_usec = (hnsec % 10000000) / 10;
516 return 0;
519 int pipe(int filedes[2])
521 HANDLE h[2];
523 /* this creates non-inheritable handles */
524 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
525 errno = err_win_to_posix(GetLastError());
526 return -1;
528 filedes[0] = _open_osfhandle((int)h[0], O_NOINHERIT);
529 if (filedes[0] < 0) {
530 CloseHandle(h[0]);
531 CloseHandle(h[1]);
532 return -1;
534 filedes[1] = _open_osfhandle((int)h[1], O_NOINHERIT);
535 if (filedes[0] < 0) {
536 close(filedes[0]);
537 CloseHandle(h[1]);
538 return -1;
540 return 0;
543 int poll(struct pollfd *ufds, unsigned int nfds, int timeout)
545 int i, pending;
547 if (timeout >= 0) {
548 if (nfds == 0) {
549 Sleep(timeout);
550 return 0;
552 return errno = EINVAL, error("poll timeout not supported");
555 /* When there is only one fd to wait for, then we pretend that
556 * input is available and let the actual wait happen when the
557 * caller invokes read().
559 if (nfds == 1) {
560 if (!(ufds[0].events & POLLIN))
561 return errno = EINVAL, error("POLLIN not set");
562 ufds[0].revents = POLLIN;
563 return 0;
566 repeat:
567 pending = 0;
568 for (i = 0; i < nfds; i++) {
569 DWORD avail = 0;
570 HANDLE h = (HANDLE) _get_osfhandle(ufds[i].fd);
571 if (h == INVALID_HANDLE_VALUE)
572 return -1; /* errno was set */
574 if (!(ufds[i].events & POLLIN))
575 return errno = EINVAL, error("POLLIN not set");
577 /* this emulation works only for pipes */
578 if (!PeekNamedPipe(h, NULL, 0, NULL, &avail, NULL)) {
579 int err = GetLastError();
580 if (err == ERROR_BROKEN_PIPE) {
581 ufds[i].revents = POLLHUP;
582 pending++;
583 } else {
584 errno = EINVAL;
585 return error("PeekNamedPipe failed,"
586 " GetLastError: %u", err);
588 } else if (avail) {
589 ufds[i].revents = POLLIN;
590 pending++;
591 } else
592 ufds[i].revents = 0;
594 if (!pending) {
595 /* The only times that we spin here is when the process
596 * that is connected through the pipes is waiting for
597 * its own input data to become available. But since
598 * the process (pack-objects) is itself CPU intensive,
599 * it will happily pick up the time slice that we are
600 * relinquishing here.
602 Sleep(0);
603 goto repeat;
605 return 0;
608 struct tm *gmtime_r(const time_t *timep, struct tm *result)
610 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
611 memcpy(result, gmtime(timep), sizeof(struct tm));
612 return result;
615 struct tm *localtime_r(const time_t *timep, struct tm *result)
617 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
618 memcpy(result, localtime(timep), sizeof(struct tm));
619 return result;
622 #undef getcwd
623 char *mingw_getcwd(char *pointer, int len)
625 int i;
626 char *ret = getcwd(pointer, len);
627 if (!ret)
628 return ret;
629 for (i = 0; pointer[i]; i++)
630 if (pointer[i] == '\\')
631 pointer[i] = '/';
632 return ret;
635 #undef getenv
636 char *mingw_getenv(const char *name)
638 char *result = getenv(name);
639 if (!result && !strcmp(name, "TMPDIR")) {
640 /* on Windows it is TMP and TEMP */
641 result = getenv("TMP");
642 if (!result)
643 result = getenv("TEMP");
645 return result;
649 * See http://msdn2.microsoft.com/en-us/library/17w5ykft(vs.71).aspx
650 * (Parsing C++ Command-Line Arguments)
652 static const char *quote_arg(const char *arg)
654 /* count chars to quote */
655 int len = 0, n = 0;
656 int force_quotes = 0;
657 char *q, *d;
658 const char *p = arg;
659 if (!*p) force_quotes = 1;
660 while (*p) {
661 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
662 force_quotes = 1;
663 else if (*p == '"')
664 n++;
665 else if (*p == '\\') {
666 int count = 0;
667 while (*p == '\\') {
668 count++;
669 p++;
670 len++;
672 if (*p == '"')
673 n += count*2 + 1;
674 continue;
676 len++;
677 p++;
679 if (!force_quotes && n == 0)
680 return arg;
682 /* insert \ where necessary */
683 d = q = xmalloc(len+n+3);
684 *d++ = '"';
685 while (*arg) {
686 if (*arg == '"')
687 *d++ = '\\';
688 else if (*arg == '\\') {
689 int count = 0;
690 while (*arg == '\\') {
691 count++;
692 *d++ = *arg++;
694 if (*arg == '"') {
695 while (count-- > 0)
696 *d++ = '\\';
697 *d++ = '\\';
700 *d++ = *arg++;
702 *d++ = '"';
703 *d++ = 0;
704 return q;
707 static const char *parse_interpreter(const char *cmd)
709 static char buf[100];
710 char *p, *opt;
711 int n, fd;
713 /* don't even try a .exe */
714 n = strlen(cmd);
715 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
716 return NULL;
718 fd = open(cmd, O_RDONLY);
719 if (fd < 0)
720 return NULL;
721 n = read(fd, buf, sizeof(buf)-1);
722 close(fd);
723 if (n < 4) /* at least '#!/x' and not error */
724 return NULL;
726 if (buf[0] != '#' || buf[1] != '!')
727 return NULL;
728 buf[n] = '\0';
729 p = buf + strcspn(buf, "\r\n");
730 if (!*p)
731 return NULL;
733 *p = '\0';
734 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
735 return NULL;
736 /* strip options */
737 if ((opt = strchr(p+1, ' ')))
738 *opt = '\0';
739 return p+1;
743 * Splits the PATH into parts.
745 static char **get_path_split(void)
747 char *p, **path, *envpath = getenv("PATH");
748 int i, n = 0;
750 if (!envpath || !*envpath)
751 return NULL;
753 envpath = xstrdup(envpath);
754 p = envpath;
755 while (p) {
756 char *dir = p;
757 p = strchr(p, ';');
758 if (p) *p++ = '\0';
759 if (*dir) { /* not earlier, catches series of ; */
760 ++n;
763 if (!n)
764 return NULL;
766 path = xmalloc((n+1)*sizeof(char *));
767 p = envpath;
768 i = 0;
769 do {
770 if (*p)
771 path[i++] = xstrdup(p);
772 p = p+strlen(p)+1;
773 } while (i < n);
774 path[i] = NULL;
776 free(envpath);
778 return path;
781 static void free_path_split(char **path)
783 char **p = path;
785 if (!path)
786 return;
788 while (*p)
789 free(*p++);
790 free(path);
794 * exe_only means that we only want to detect .exe files, but not scripts
795 * (which do not have an extension)
797 static char *lookup_prog(const char *dir, const char *cmd, int isexe, int exe_only)
799 char path[MAX_PATH];
800 snprintf(path, sizeof(path), "%s/%s.exe", dir, cmd);
802 if (!isexe && access(path, F_OK) == 0)
803 return xstrdup(path);
804 path[strlen(path)-4] = '\0';
805 if ((!exe_only || isexe) && access(path, F_OK) == 0)
806 if (!(GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY))
807 return xstrdup(path);
808 return NULL;
812 * Determines the absolute path of cmd using the the split path in path.
813 * If cmd contains a slash or backslash, no lookup is performed.
815 static char *path_lookup(const char *cmd, char **path, int exe_only)
817 char *prog = NULL;
818 int len = strlen(cmd);
819 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
821 if (strchr(cmd, '/') || strchr(cmd, '\\'))
822 prog = xstrdup(cmd);
824 while (!prog && *path)
825 prog = lookup_prog(*path++, cmd, isexe, exe_only);
827 return prog;
830 static int env_compare(const void *a, const void *b)
832 char *const *ea = a;
833 char *const *eb = b;
834 return strcasecmp(*ea, *eb);
837 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **env,
838 const char *dir,
839 int prepend_cmd, int fhin, int fhout, int fherr)
841 STARTUPINFO si;
842 PROCESS_INFORMATION pi;
843 struct strbuf envblk, args;
844 unsigned flags;
845 BOOL ret;
847 /* Determine whether or not we are associated to a console */
848 HANDLE cons = CreateFile("CONOUT$", GENERIC_WRITE,
849 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
850 FILE_ATTRIBUTE_NORMAL, NULL);
851 if (cons == INVALID_HANDLE_VALUE) {
852 /* There is no console associated with this process.
853 * Since the child is a console process, Windows
854 * would normally create a console window. But
855 * since we'll be redirecting std streams, we do
856 * not need the console.
857 * It is necessary to use DETACHED_PROCESS
858 * instead of CREATE_NO_WINDOW to make ssh
859 * recognize that it has no console.
861 flags = DETACHED_PROCESS;
862 } else {
863 /* There is already a console. If we specified
864 * DETACHED_PROCESS here, too, Windows would
865 * disassociate the child from the console.
866 * The same is true for CREATE_NO_WINDOW.
867 * Go figure!
869 flags = 0;
870 CloseHandle(cons);
872 memset(&si, 0, sizeof(si));
873 si.cb = sizeof(si);
874 si.dwFlags = STARTF_USESTDHANDLES;
875 si.hStdInput = (HANDLE) _get_osfhandle(fhin);
876 si.hStdOutput = (HANDLE) _get_osfhandle(fhout);
877 si.hStdError = (HANDLE) _get_osfhandle(fherr);
879 /* concatenate argv, quoting args as we go */
880 strbuf_init(&args, 0);
881 if (prepend_cmd) {
882 char *quoted = (char *)quote_arg(cmd);
883 strbuf_addstr(&args, quoted);
884 if (quoted != cmd)
885 free(quoted);
887 for (; *argv; argv++) {
888 char *quoted = (char *)quote_arg(*argv);
889 if (*args.buf)
890 strbuf_addch(&args, ' ');
891 strbuf_addstr(&args, quoted);
892 if (quoted != *argv)
893 free(quoted);
896 if (env) {
897 int count = 0;
898 char **e, **sorted_env;
900 for (e = env; *e; e++)
901 count++;
903 /* environment must be sorted */
904 sorted_env = xmalloc(sizeof(*sorted_env) * (count + 1));
905 memcpy(sorted_env, env, sizeof(*sorted_env) * (count + 1));
906 qsort(sorted_env, count, sizeof(*sorted_env), env_compare);
908 strbuf_init(&envblk, 0);
909 for (e = sorted_env; *e; e++) {
910 strbuf_addstr(&envblk, *e);
911 strbuf_addch(&envblk, '\0');
913 free(sorted_env);
916 memset(&pi, 0, sizeof(pi));
917 ret = CreateProcess(cmd, args.buf, NULL, NULL, TRUE, flags,
918 env ? envblk.buf : NULL, dir, &si, &pi);
920 if (env)
921 strbuf_release(&envblk);
922 strbuf_release(&args);
924 if (!ret) {
925 errno = ENOENT;
926 return -1;
928 CloseHandle(pi.hThread);
929 return (pid_t)pi.hProcess;
932 static pid_t mingw_spawnve(const char *cmd, const char **argv, char **env,
933 int prepend_cmd)
935 return mingw_spawnve_fd(cmd, argv, env, NULL, prepend_cmd, 0, 1, 2);
938 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
939 const char *dir,
940 int fhin, int fhout, int fherr)
942 pid_t pid;
943 char **path = get_path_split();
944 char *prog = path_lookup(cmd, path, 0);
946 if (!prog) {
947 errno = ENOENT;
948 pid = -1;
950 else {
951 const char *interpr = parse_interpreter(prog);
953 if (interpr) {
954 const char *argv0 = argv[0];
955 char *iprog = path_lookup(interpr, path, 1);
956 argv[0] = prog;
957 if (!iprog) {
958 errno = ENOENT;
959 pid = -1;
961 else {
962 pid = mingw_spawnve_fd(iprog, argv, env, dir, 1,
963 fhin, fhout, fherr);
964 free(iprog);
966 argv[0] = argv0;
968 else
969 pid = mingw_spawnve_fd(prog, argv, env, dir, 0,
970 fhin, fhout, fherr);
971 free(prog);
973 free_path_split(path);
974 return pid;
977 static int try_shell_exec(const char *cmd, char *const *argv, char **env)
979 const char *interpr = parse_interpreter(cmd);
980 char **path;
981 char *prog;
982 int pid = 0;
984 if (!interpr)
985 return 0;
986 path = get_path_split();
987 prog = path_lookup(interpr, path, 1);
988 if (prog) {
989 int argc = 0;
990 const char **argv2;
991 while (argv[argc]) argc++;
992 argv2 = xmalloc(sizeof(*argv) * (argc+1));
993 argv2[0] = (char *)cmd; /* full path to the script file */
994 memcpy(&argv2[1], &argv[1], sizeof(*argv) * argc);
995 pid = mingw_spawnve(prog, argv2, env, 1);
996 if (pid >= 0) {
997 int status;
998 if (waitpid(pid, &status, 0) < 0)
999 status = 255;
1000 exit(status);
1002 pid = 1; /* indicate that we tried but failed */
1003 free(prog);
1004 free(argv2);
1006 free_path_split(path);
1007 return pid;
1010 static void mingw_execve(const char *cmd, char *const *argv, char *const *env)
1012 /* check if git_command is a shell script */
1013 if (!try_shell_exec(cmd, argv, (char **)env)) {
1014 int pid, status;
1016 pid = mingw_spawnve(cmd, (const char **)argv, (char **)env, 0);
1017 if (pid < 0)
1018 return;
1019 if (waitpid(pid, &status, 0) < 0)
1020 status = 255;
1021 exit(status);
1025 void mingw_execvp(const char *cmd, char *const *argv)
1027 char **path = get_path_split();
1028 char *prog = path_lookup(cmd, path, 0);
1030 if (prog) {
1031 mingw_execve(prog, argv, environ);
1032 free(prog);
1033 } else
1034 errno = ENOENT;
1036 free_path_split(path);
1039 static char **copy_environ(void)
1041 char **env;
1042 int i = 0;
1043 while (environ[i])
1044 i++;
1045 env = xmalloc((i+1)*sizeof(*env));
1046 for (i = 0; environ[i]; i++)
1047 env[i] = xstrdup(environ[i]);
1048 env[i] = NULL;
1049 return env;
1052 void free_environ(char **env)
1054 int i;
1055 for (i = 0; env[i]; i++)
1056 free(env[i]);
1057 free(env);
1060 static int lookup_env(char **env, const char *name, size_t nmln)
1062 int i;
1064 for (i = 0; env[i]; i++) {
1065 if (0 == strncmp(env[i], name, nmln)
1066 && '=' == env[i][nmln])
1067 /* matches */
1068 return i;
1070 return -1;
1074 * If name contains '=', then sets the variable, otherwise it unsets it
1076 static char **env_setenv(char **env, const char *name)
1078 char *eq = strchrnul(name, '=');
1079 int i = lookup_env(env, name, eq-name);
1081 if (i < 0) {
1082 if (*eq) {
1083 for (i = 0; env[i]; i++)
1085 env = xrealloc(env, (i+2)*sizeof(*env));
1086 env[i] = xstrdup(name);
1087 env[i+1] = NULL;
1090 else {
1091 free(env[i]);
1092 if (*eq)
1093 env[i] = xstrdup(name);
1094 else
1095 for (; env[i]; i++)
1096 env[i] = env[i+1];
1098 return env;
1102 * Copies global environ and adjusts variables as specified by vars.
1104 char **make_augmented_environ(const char *const *vars)
1106 char **env = copy_environ();
1108 while (*vars)
1109 env = env_setenv(env, *vars++);
1110 return env;
1114 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1115 * that service contains a numerical port, or that it it is null. It
1116 * does a simple search using gethostbyname, and returns one IPv4 host
1117 * if one was found.
1119 static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
1120 const struct addrinfo *hints,
1121 struct addrinfo **res)
1123 struct hostent *h = gethostbyname(node);
1124 struct addrinfo *ai;
1125 struct sockaddr_in *sin;
1127 if (!h)
1128 return WSAGetLastError();
1130 ai = xmalloc(sizeof(struct addrinfo));
1131 *res = ai;
1132 ai->ai_flags = 0;
1133 ai->ai_family = AF_INET;
1134 ai->ai_socktype = hints->ai_socktype;
1135 switch (hints->ai_socktype) {
1136 case SOCK_STREAM:
1137 ai->ai_protocol = IPPROTO_TCP;
1138 break;
1139 case SOCK_DGRAM:
1140 ai->ai_protocol = IPPROTO_UDP;
1141 break;
1142 default:
1143 ai->ai_protocol = 0;
1144 break;
1146 ai->ai_addrlen = sizeof(struct sockaddr_in);
1147 ai->ai_canonname = strdup(h->h_name);
1149 sin = xmalloc(ai->ai_addrlen);
1150 memset(sin, 0, ai->ai_addrlen);
1151 sin->sin_family = AF_INET;
1152 if (service)
1153 sin->sin_port = htons(atoi(service));
1154 sin->sin_addr = *(struct in_addr *)h->h_addr;
1155 ai->ai_addr = (struct sockaddr *)sin;
1156 ai->ai_next = 0;
1157 return 0;
1160 static void WSAAPI freeaddrinfo_stub(struct addrinfo *res)
1162 free(res->ai_canonname);
1163 free(res->ai_addr);
1164 free(res);
1167 static int WSAAPI getnameinfo_stub(const struct sockaddr *sa, socklen_t salen,
1168 char *host, DWORD hostlen,
1169 char *serv, DWORD servlen, int flags)
1171 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
1172 if (sa->sa_family != AF_INET)
1173 return EAI_FAMILY;
1174 if (!host && !serv)
1175 return EAI_NONAME;
1177 if (host && hostlen > 0) {
1178 struct hostent *ent = NULL;
1179 if (!(flags & NI_NUMERICHOST))
1180 ent = gethostbyaddr((const char *)&sin->sin_addr,
1181 sizeof(sin->sin_addr), AF_INET);
1183 if (ent)
1184 snprintf(host, hostlen, "%s", ent->h_name);
1185 else if (flags & NI_NAMEREQD)
1186 return EAI_NONAME;
1187 else
1188 snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
1191 if (serv && servlen > 0) {
1192 struct servent *ent = NULL;
1193 if (!(flags & NI_NUMERICSERV))
1194 ent = getservbyport(sin->sin_port,
1195 flags & NI_DGRAM ? "udp" : "tcp");
1197 if (ent)
1198 snprintf(serv, servlen, "%s", ent->s_name);
1199 else
1200 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
1203 return 0;
1206 static HMODULE ipv6_dll = NULL;
1207 static void (WSAAPI *ipv6_freeaddrinfo)(struct addrinfo *res);
1208 static int (WSAAPI *ipv6_getaddrinfo)(const char *node, const char *service,
1209 const struct addrinfo *hints,
1210 struct addrinfo **res);
1211 static int (WSAAPI *ipv6_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
1212 char *host, DWORD hostlen,
1213 char *serv, DWORD servlen, int flags);
1215 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1216 * don't need to try to load that one dynamically.
1219 static void socket_cleanup(void)
1221 WSACleanup();
1222 if (ipv6_dll)
1223 FreeLibrary(ipv6_dll);
1224 ipv6_dll = NULL;
1225 ipv6_freeaddrinfo = freeaddrinfo_stub;
1226 ipv6_getaddrinfo = getaddrinfo_stub;
1227 ipv6_getnameinfo = getnameinfo_stub;
1230 static void ensure_socket_initialization(void)
1232 WSADATA wsa;
1233 static int initialized = 0;
1234 const char *libraries[] = { "ws2_32.dll", "wship6.dll", NULL };
1235 const char **name;
1237 if (initialized)
1238 return;
1240 if (WSAStartup(MAKEWORD(2,2), &wsa))
1241 die("unable to initialize winsock subsystem, error %d",
1242 WSAGetLastError());
1244 for (name = libraries; *name; name++) {
1245 ipv6_dll = LoadLibrary(*name);
1246 if (!ipv6_dll)
1247 continue;
1249 ipv6_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *))
1250 GetProcAddress(ipv6_dll, "freeaddrinfo");
1251 ipv6_getaddrinfo = (int (WSAAPI *)(const char *, const char *,
1252 const struct addrinfo *,
1253 struct addrinfo **))
1254 GetProcAddress(ipv6_dll, "getaddrinfo");
1255 ipv6_getnameinfo = (int (WSAAPI *)(const struct sockaddr *,
1256 socklen_t, char *, DWORD,
1257 char *, DWORD, int))
1258 GetProcAddress(ipv6_dll, "getnameinfo");
1259 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1260 FreeLibrary(ipv6_dll);
1261 ipv6_dll = NULL;
1262 } else
1263 break;
1265 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1266 ipv6_freeaddrinfo = freeaddrinfo_stub;
1267 ipv6_getaddrinfo = getaddrinfo_stub;
1268 ipv6_getnameinfo = getnameinfo_stub;
1271 atexit(socket_cleanup);
1272 initialized = 1;
1275 #undef gethostbyname
1276 struct hostent *mingw_gethostbyname(const char *host)
1278 ensure_socket_initialization();
1279 return gethostbyname(host);
1282 void mingw_freeaddrinfo(struct addrinfo *res)
1284 ipv6_freeaddrinfo(res);
1287 int mingw_getaddrinfo(const char *node, const char *service,
1288 const struct addrinfo *hints, struct addrinfo **res)
1290 ensure_socket_initialization();
1291 return ipv6_getaddrinfo(node, service, hints, res);
1294 int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
1295 char *host, DWORD hostlen, char *serv, DWORD servlen,
1296 int flags)
1298 ensure_socket_initialization();
1299 return ipv6_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
1302 int mingw_socket(int domain, int type, int protocol)
1304 int sockfd;
1305 SOCKET s = WSASocket(domain, type, protocol, NULL, 0, 0);
1306 if (s == INVALID_SOCKET) {
1308 * WSAGetLastError() values are regular BSD error codes
1309 * biased by WSABASEERR.
1310 * However, strerror() does not know about networking
1311 * specific errors, which are values beginning at 38 or so.
1312 * Therefore, we choose to leave the biased error code
1313 * in errno so that _if_ someone looks up the code somewhere,
1314 * then it is at least the number that are usually listed.
1316 errno = WSAGetLastError();
1317 return -1;
1319 /* convert into a file descriptor */
1320 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
1321 closesocket(s);
1322 return error("unable to make a socket file descriptor: %s",
1323 strerror(errno));
1325 return sockfd;
1328 #undef connect
1329 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
1331 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1332 return connect(s, sa, sz);
1335 #undef rename
1336 int mingw_rename(const char *pold, const char *pnew)
1338 DWORD attrs, gle;
1339 int tries = 0;
1342 * Try native rename() first to get errno right.
1343 * It is based on MoveFile(), which cannot overwrite existing files.
1345 if (!rename(pold, pnew))
1346 return 0;
1347 if (errno != EEXIST)
1348 return -1;
1349 repeat:
1350 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1351 return 0;
1352 /* TODO: translate more errors */
1353 gle = GetLastError();
1354 if (gle == ERROR_ACCESS_DENIED &&
1355 (attrs = GetFileAttributes(pnew)) != INVALID_FILE_ATTRIBUTES) {
1356 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
1357 errno = EISDIR;
1358 return -1;
1360 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
1361 SetFileAttributes(pnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
1362 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1363 return 0;
1364 gle = GetLastError();
1365 /* revert file attributes on failure */
1366 SetFileAttributes(pnew, attrs);
1369 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
1371 * We assume that some other process had the source or
1372 * destination file open at the wrong moment and retry.
1373 * In order to give the other process a higher chance to
1374 * complete its operation, we give up our time slice now.
1375 * If we have to retry again, we do sleep a bit.
1377 Sleep(delay[tries]);
1378 tries++;
1379 goto repeat;
1381 if (gle == ERROR_ACCESS_DENIED &&
1382 ask_user_yes_no("Rename from '%s' to '%s' failed. "
1383 "Should I try again?", pold, pnew))
1384 goto repeat;
1386 errno = EACCES;
1387 return -1;
1391 * Note that this doesn't return the actual pagesize, but
1392 * the allocation granularity. If future Windows specific git code
1393 * needs the real getpagesize function, we need to find another solution.
1395 int mingw_getpagesize(void)
1397 SYSTEM_INFO si;
1398 GetSystemInfo(&si);
1399 return si.dwAllocationGranularity;
1402 struct passwd *getpwuid(int uid)
1404 static char user_name[100];
1405 static struct passwd p;
1407 DWORD len = sizeof(user_name);
1408 if (!GetUserName(user_name, &len))
1409 return NULL;
1410 p.pw_name = user_name;
1411 p.pw_gecos = "unknown";
1412 p.pw_dir = NULL;
1413 return &p;
1416 static HANDLE timer_event;
1417 static HANDLE timer_thread;
1418 static int timer_interval;
1419 static int one_shot;
1420 static sig_handler_t timer_fn = SIG_DFL;
1422 /* The timer works like this:
1423 * The thread, ticktack(), is a trivial routine that most of the time
1424 * only waits to receive the signal to terminate. The main thread tells
1425 * the thread to terminate by setting the timer_event to the signalled
1426 * state.
1427 * But ticktack() interrupts the wait state after the timer's interval
1428 * length to call the signal handler.
1431 static unsigned __stdcall ticktack(void *dummy)
1433 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
1434 if (timer_fn == SIG_DFL)
1435 die("Alarm");
1436 if (timer_fn != SIG_IGN)
1437 timer_fn(SIGALRM);
1438 if (one_shot)
1439 break;
1441 return 0;
1444 static int start_timer_thread(void)
1446 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1447 if (timer_event) {
1448 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
1449 if (!timer_thread )
1450 return errno = ENOMEM,
1451 error("cannot start timer thread");
1452 } else
1453 return errno = ENOMEM,
1454 error("cannot allocate resources for timer");
1455 return 0;
1458 static void stop_timer_thread(void)
1460 if (timer_event)
1461 SetEvent(timer_event); /* tell thread to terminate */
1462 if (timer_thread) {
1463 int rc = WaitForSingleObject(timer_thread, 1000);
1464 if (rc == WAIT_TIMEOUT)
1465 error("timer thread did not terminate timely");
1466 else if (rc != WAIT_OBJECT_0)
1467 error("waiting for timer thread failed: %lu",
1468 GetLastError());
1469 CloseHandle(timer_thread);
1471 if (timer_event)
1472 CloseHandle(timer_event);
1473 timer_event = NULL;
1474 timer_thread = NULL;
1477 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
1479 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
1482 int setitimer(int type, struct itimerval *in, struct itimerval *out)
1484 static const struct timeval zero;
1485 static int atexit_done;
1487 if (out != NULL)
1488 return errno = EINVAL,
1489 error("setitimer param 3 != NULL not implemented");
1490 if (!is_timeval_eq(&in->it_interval, &zero) &&
1491 !is_timeval_eq(&in->it_interval, &in->it_value))
1492 return errno = EINVAL,
1493 error("setitimer: it_interval must be zero or eq it_value");
1495 if (timer_thread)
1496 stop_timer_thread();
1498 if (is_timeval_eq(&in->it_value, &zero) &&
1499 is_timeval_eq(&in->it_interval, &zero))
1500 return 0;
1502 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
1503 one_shot = is_timeval_eq(&in->it_interval, &zero);
1504 if (!atexit_done) {
1505 atexit(stop_timer_thread);
1506 atexit_done = 1;
1508 return start_timer_thread();
1511 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
1513 if (sig != SIGALRM)
1514 return errno = EINVAL,
1515 error("sigaction only implemented for SIGALRM");
1516 if (out != NULL)
1517 return errno = EINVAL,
1518 error("sigaction: param 3 != NULL not implemented");
1520 timer_fn = in->sa_handler;
1521 return 0;
1524 #undef signal
1525 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
1527 sig_handler_t old = timer_fn;
1528 if (sig != SIGALRM)
1529 return signal(sig, handler);
1530 timer_fn = handler;
1531 return old;
1534 static const char *make_backslash_path(const char *path)
1536 static char buf[PATH_MAX + 1];
1537 char *c;
1539 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
1540 die("Too long path: %.*s", 60, path);
1542 for (c = buf; *c; c++) {
1543 if (*c == '/')
1544 *c = '\\';
1546 return buf;
1549 void mingw_open_html(const char *unixpath)
1551 const char *htmlpath = make_backslash_path(unixpath);
1552 typedef HINSTANCE (WINAPI *T)(HWND, const char *,
1553 const char *, const char *, const char *, INT);
1554 T ShellExecute;
1555 HMODULE shell32;
1557 shell32 = LoadLibrary("shell32.dll");
1558 if (!shell32)
1559 die("cannot load shell32.dll");
1560 ShellExecute = (T)GetProcAddress(shell32, "ShellExecuteA");
1561 if (!ShellExecute)
1562 die("cannot run browser");
1564 printf("Launching default browser to display HTML ...\n");
1565 ShellExecute(NULL, "open", htmlpath, NULL, "\\", 0);
1567 FreeLibrary(shell32);
1570 int link(const char *oldpath, const char *newpath)
1572 typedef BOOL (WINAPI *T)(const char*, const char*, LPSECURITY_ATTRIBUTES);
1573 static T create_hard_link = NULL;
1574 if (!create_hard_link) {
1575 create_hard_link = (T) GetProcAddress(
1576 GetModuleHandle("kernel32.dll"), "CreateHardLinkA");
1577 if (!create_hard_link)
1578 create_hard_link = (T)-1;
1580 if (create_hard_link == (T)-1) {
1581 errno = ENOSYS;
1582 return -1;
1584 if (!create_hard_link(newpath, oldpath, NULL)) {
1585 errno = err_win_to_posix(GetLastError());
1586 return -1;
1588 return 0;
1591 char *getpass(const char *prompt)
1593 struct strbuf buf = STRBUF_INIT;
1595 fputs(prompt, stderr);
1596 for (;;) {
1597 char c = _getch();
1598 if (c == '\r' || c == '\n')
1599 break;
1600 strbuf_addch(&buf, c);
1602 fputs("\n", stderr);
1603 return strbuf_detach(&buf, NULL);
1606 #ifndef NO_MINGW_REPLACE_READDIR
1607 /* MinGW readdir implementation to avoid extra lstats for Git */
1608 struct mingw_DIR
1610 struct _finddata_t dd_dta; /* disk transfer area for this dir */
1611 struct mingw_dirent dd_dir; /* Our own implementation, including d_type */
1612 long dd_handle; /* _findnext handle */
1613 int dd_stat; /* 0 = next entry to read is first entry, -1 = off the end, positive = 0 based index of next entry */
1614 char dd_name[1]; /* given path for dir with search pattern (struct is extended) */
1617 struct dirent *mingw_readdir(DIR *dir)
1619 WIN32_FIND_DATAA buf;
1620 HANDLE handle;
1621 struct mingw_DIR *mdir = (struct mingw_DIR*)dir;
1623 if (!dir->dd_handle) {
1624 errno = EBADF; /* No set_errno for mingw */
1625 return NULL;
1628 if (dir->dd_handle == (long)INVALID_HANDLE_VALUE && dir->dd_stat == 0)
1630 DWORD lasterr;
1631 handle = FindFirstFileA(dir->dd_name, &buf);
1632 lasterr = GetLastError();
1633 dir->dd_handle = (long)handle;
1634 if (handle == INVALID_HANDLE_VALUE && (lasterr != ERROR_NO_MORE_FILES)) {
1635 errno = err_win_to_posix(lasterr);
1636 return NULL;
1638 } else if (dir->dd_handle == (long)INVALID_HANDLE_VALUE) {
1639 return NULL;
1640 } else if (!FindNextFileA((HANDLE)dir->dd_handle, &buf)) {
1641 DWORD lasterr = GetLastError();
1642 FindClose((HANDLE)dir->dd_handle);
1643 dir->dd_handle = (long)INVALID_HANDLE_VALUE;
1644 /* POSIX says you shouldn't set errno when readdir can't
1645 find any more files; so, if another error we leave it set. */
1646 if (lasterr != ERROR_NO_MORE_FILES)
1647 errno = err_win_to_posix(lasterr);
1648 return NULL;
1651 /* We get here if `buf' contains valid data. */
1652 strcpy(dir->dd_dir.d_name, buf.cFileName);
1653 ++dir->dd_stat;
1655 /* Set file type, based on WIN32_FIND_DATA */
1656 mdir->dd_dir.d_type = 0;
1657 if (buf.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
1658 mdir->dd_dir.d_type |= DT_DIR;
1659 else
1660 mdir->dd_dir.d_type |= DT_REG;
1662 return (struct dirent*)&dir->dd_dir;
1664 #endif // !NO_MINGW_REPLACE_READDIR