mingw: make failures to unlink or move raise a question
[git/dscho.git] / compat / mingw.c
blob601656cff087b30745e8de7a6e4b1a01c0e1ea4c
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <conio.h>
4 #include "../strbuf.h"
5 #include "../cache.h"
6 #include "../run-command.h"
8 unsigned int _CRT_fmode = _O_BINARY;
9 static const int delay[] = { 0, 1, 10, 20, 40 };
11 int err_win_to_posix(DWORD winerr)
13 int error = ENOSYS;
14 switch(winerr) {
15 case ERROR_ACCESS_DENIED: error = EACCES; break;
16 case ERROR_ACCOUNT_DISABLED: error = EACCES; break;
17 case ERROR_ACCOUNT_RESTRICTION: error = EACCES; break;
18 case ERROR_ALREADY_ASSIGNED: error = EBUSY; break;
19 case ERROR_ALREADY_EXISTS: error = EEXIST; break;
20 case ERROR_ARITHMETIC_OVERFLOW: error = ERANGE; break;
21 case ERROR_BAD_COMMAND: error = EIO; break;
22 case ERROR_BAD_DEVICE: error = ENODEV; break;
23 case ERROR_BAD_DRIVER_LEVEL: error = ENXIO; break;
24 case ERROR_BAD_EXE_FORMAT: error = ENOEXEC; break;
25 case ERROR_BAD_FORMAT: error = ENOEXEC; break;
26 case ERROR_BAD_LENGTH: error = EINVAL; break;
27 case ERROR_BAD_PATHNAME: error = ENOENT; break;
28 case ERROR_BAD_PIPE: error = EPIPE; break;
29 case ERROR_BAD_UNIT: error = ENODEV; break;
30 case ERROR_BAD_USERNAME: error = EINVAL; break;
31 case ERROR_BROKEN_PIPE: error = EPIPE; break;
32 case ERROR_BUFFER_OVERFLOW: error = ENAMETOOLONG; break;
33 case ERROR_BUSY: error = EBUSY; break;
34 case ERROR_BUSY_DRIVE: error = EBUSY; break;
35 case ERROR_CALL_NOT_IMPLEMENTED: error = ENOSYS; break;
36 case ERROR_CANNOT_MAKE: error = EACCES; break;
37 case ERROR_CANTOPEN: error = EIO; break;
38 case ERROR_CANTREAD: error = EIO; break;
39 case ERROR_CANTWRITE: error = EIO; break;
40 case ERROR_CRC: error = EIO; break;
41 case ERROR_CURRENT_DIRECTORY: error = EACCES; break;
42 case ERROR_DEVICE_IN_USE: error = EBUSY; break;
43 case ERROR_DEV_NOT_EXIST: error = ENODEV; break;
44 case ERROR_DIRECTORY: error = EINVAL; break;
45 case ERROR_DIR_NOT_EMPTY: error = ENOTEMPTY; break;
46 case ERROR_DISK_CHANGE: error = EIO; break;
47 case ERROR_DISK_FULL: error = ENOSPC; break;
48 case ERROR_DRIVE_LOCKED: error = EBUSY; break;
49 case ERROR_ENVVAR_NOT_FOUND: error = EINVAL; break;
50 case ERROR_EXE_MARKED_INVALID: error = ENOEXEC; break;
51 case ERROR_FILENAME_EXCED_RANGE: error = ENAMETOOLONG; break;
52 case ERROR_FILE_EXISTS: error = EEXIST; break;
53 case ERROR_FILE_INVALID: error = ENODEV; break;
54 case ERROR_FILE_NOT_FOUND: error = ENOENT; break;
55 case ERROR_GEN_FAILURE: error = EIO; break;
56 case ERROR_HANDLE_DISK_FULL: error = ENOSPC; break;
57 case ERROR_INSUFFICIENT_BUFFER: error = ENOMEM; break;
58 case ERROR_INVALID_ACCESS: error = EACCES; break;
59 case ERROR_INVALID_ADDRESS: error = EFAULT; break;
60 case ERROR_INVALID_BLOCK: error = EFAULT; break;
61 case ERROR_INVALID_DATA: error = EINVAL; break;
62 case ERROR_INVALID_DRIVE: error = ENODEV; break;
63 case ERROR_INVALID_EXE_SIGNATURE: error = ENOEXEC; break;
64 case ERROR_INVALID_FLAGS: error = EINVAL; break;
65 case ERROR_INVALID_FUNCTION: error = ENOSYS; break;
66 case ERROR_INVALID_HANDLE: error = EBADF; break;
67 case ERROR_INVALID_LOGON_HOURS: error = EACCES; break;
68 case ERROR_INVALID_NAME: error = EINVAL; break;
69 case ERROR_INVALID_OWNER: error = EINVAL; break;
70 case ERROR_INVALID_PARAMETER: error = EINVAL; break;
71 case ERROR_INVALID_PASSWORD: error = EPERM; break;
72 case ERROR_INVALID_PRIMARY_GROUP: error = EINVAL; break;
73 case ERROR_INVALID_SIGNAL_NUMBER: error = EINVAL; break;
74 case ERROR_INVALID_TARGET_HANDLE: error = EIO; break;
75 case ERROR_INVALID_WORKSTATION: error = EACCES; break;
76 case ERROR_IO_DEVICE: error = EIO; break;
77 case ERROR_IO_INCOMPLETE: error = EINTR; break;
78 case ERROR_LOCKED: error = EBUSY; break;
79 case ERROR_LOCK_VIOLATION: error = EACCES; break;
80 case ERROR_LOGON_FAILURE: error = EACCES; break;
81 case ERROR_MAPPED_ALIGNMENT: error = EINVAL; break;
82 case ERROR_META_EXPANSION_TOO_LONG: error = E2BIG; break;
83 case ERROR_MORE_DATA: error = EPIPE; break;
84 case ERROR_NEGATIVE_SEEK: error = ESPIPE; break;
85 case ERROR_NOACCESS: error = EFAULT; break;
86 case ERROR_NONE_MAPPED: error = EINVAL; break;
87 case ERROR_NOT_ENOUGH_MEMORY: error = ENOMEM; break;
88 case ERROR_NOT_READY: error = EAGAIN; break;
89 case ERROR_NOT_SAME_DEVICE: error = EXDEV; break;
90 case ERROR_NO_DATA: error = EPIPE; break;
91 case ERROR_NO_MORE_SEARCH_HANDLES: error = EIO; break;
92 case ERROR_NO_PROC_SLOTS: error = EAGAIN; break;
93 case ERROR_NO_SUCH_PRIVILEGE: error = EACCES; break;
94 case ERROR_OPEN_FAILED: error = EIO; break;
95 case ERROR_OPEN_FILES: error = EBUSY; break;
96 case ERROR_OPERATION_ABORTED: error = EINTR; break;
97 case ERROR_OUTOFMEMORY: error = ENOMEM; break;
98 case ERROR_PASSWORD_EXPIRED: error = EACCES; break;
99 case ERROR_PATH_BUSY: error = EBUSY; break;
100 case ERROR_PATH_NOT_FOUND: error = ENOENT; break;
101 case ERROR_PIPE_BUSY: error = EBUSY; break;
102 case ERROR_PIPE_CONNECTED: error = EPIPE; break;
103 case ERROR_PIPE_LISTENING: error = EPIPE; break;
104 case ERROR_PIPE_NOT_CONNECTED: error = EPIPE; break;
105 case ERROR_PRIVILEGE_NOT_HELD: error = EACCES; break;
106 case ERROR_READ_FAULT: error = EIO; break;
107 case ERROR_SEEK: error = EIO; break;
108 case ERROR_SEEK_ON_DEVICE: error = ESPIPE; break;
109 case ERROR_SHARING_BUFFER_EXCEEDED: error = ENFILE; break;
110 case ERROR_SHARING_VIOLATION: error = EACCES; break;
111 case ERROR_STACK_OVERFLOW: error = ENOMEM; break;
112 case ERROR_SWAPERROR: error = ENOENT; break;
113 case ERROR_TOO_MANY_MODULES: error = EMFILE; break;
114 case ERROR_TOO_MANY_OPEN_FILES: error = EMFILE; break;
115 case ERROR_UNRECOGNIZED_MEDIA: error = ENXIO; break;
116 case ERROR_UNRECOGNIZED_VOLUME: error = ENODEV; break;
117 case ERROR_WAIT_NO_CHILDREN: error = ECHILD; break;
118 case ERROR_WRITE_FAULT: error = EIO; break;
119 case ERROR_WRITE_PROTECT: error = EROFS; break;
121 return error;
124 static int make_hidden(const char *path)
126 DWORD attribs = GetFileAttributes(path);
127 if (SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN | attribs))
128 return 0;
129 errno = err_win_to_posix(GetLastError());
130 return -1;
133 void mingw_mark_as_git_dir(const char *dir)
135 if (hide_dotfiles != HIDE_DOTFILES_FALSE && make_hidden(dir))
136 warning("Failed to make '%s' hidden", dir);
137 git_config_set("core.hideDotFiles",
138 hide_dotfiles == HIDE_DOTFILES_FALSE ? "false" :
139 (hide_dotfiles == HIDE_DOTFILES_DOTGITONLY ?
140 "dotGitOnly" : "true"));
143 #undef mkdir
144 int mingw_mkdir(const char *path, int mode)
146 int ret = mkdir(path);
147 if (!ret && hide_dotfiles == HIDE_DOTFILES_TRUE) {
149 * In Windows a file or dir starting with a dot is not
150 * automatically hidden. So lets mark it as hidden when
151 * such a directory is created.
153 const char *start = basename((char*)path);
154 if (*start == '.')
155 return make_hidden(path);
157 return ret;
160 static int ask_user_yes_no(const char *format, ...)
162 char answer[5];
163 char question[4096];
164 const char *retry_hook[] = { NULL, NULL, NULL };
165 va_list args;
167 if ((retry_hook[0] = getenv("GIT_ASK_YESNO"))) {
169 va_start(args, format);
170 vsnprintf(question, sizeof(question), format, args);
171 va_end(args);
173 retry_hook[1] = question;
174 return !run_command_v_opt(retry_hook, 0);
177 if (!isatty(_fileno(stdin)))
178 return 0;
180 while (1) {
181 va_start(args, format);
182 vfprintf(stderr, format, args);
183 va_end(args);
184 fprintf(stderr, " (y/n)? ");
186 if (fgets(answer, sizeof(answer), stdin)) {
187 /* remove the newline */
188 if (answer[strlen(answer)-2] == '\r')
189 answer[strlen(answer)-2] = '\0';
190 if (answer[strlen(answer)-1] == '\n')
191 answer[strlen(answer)-1] = '\0';
192 } else
193 return 0;
195 if (answer[0] == 'y' && strlen(answer) == 1)
196 return 1;
197 if (!strncasecmp(answer, "yes", sizeof(answer)))
198 return 1;
199 if (answer[0] == 'n' && strlen(answer) == 1)
200 return 0;
201 if (!strncasecmp(answer, "no", sizeof(answer)))
202 return 0;
203 fprintf(stderr, "I did not understand your answer: '%s'\n",
204 answer);
208 #undef unlink
209 int mingw_unlink(const char *pathname)
211 int ret, tries = 0;
213 /* read-only files cannot be removed */
214 chmod(pathname, 0666);
215 while ((ret = unlink(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
216 if (errno != EACCES)
217 break;
219 * We assume that some other process had the source or
220 * destination file open at the wrong moment and retry.
221 * In order to give the other process a higher chance to
222 * complete its operation, we give up our time slice now.
223 * If we have to retry again, we do sleep a bit.
225 Sleep(delay[tries]);
226 tries++;
228 while (ret == -1 && errno == EACCES &&
229 ask_user_yes_no("Unlink of file '%s' failed. "
230 "Should I try again?", pathname))
231 ret = unlink(pathname);
232 return ret;
235 #undef open
236 int mingw_open (const char *filename, int oflags, ...)
238 va_list args;
239 unsigned mode;
240 int fd;
242 va_start(args, oflags);
243 mode = va_arg(args, int);
244 va_end(args);
246 if (filename && !strcmp(filename, "/dev/null"))
247 filename = "nul";
249 fd = open(filename, oflags, mode);
251 if (fd < 0 && (oflags & O_CREAT) && errno == EACCES) {
252 DWORD attrs = GetFileAttributes(filename);
253 if (attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY))
254 errno = EISDIR;
256 if ((oflags & O_CREAT) && fd >= 0 &&
257 hide_dotfiles == HIDE_DOTFILES_TRUE) {
259 * In Windows a file or dir starting with a dot is not
260 * automatically hidden. So lets mark it as hidden when
261 * such a file is created.
263 const char *start = basename((char*)filename);
264 if (*start == '.' && make_hidden(filename))
265 warning("Could not mark '%s' as hidden.", filename);
267 return fd;
270 #undef write
271 ssize_t mingw_write(int fd, const void *buf, size_t count)
274 * While write() calls to a file on a local disk are translated
275 * into WriteFile() calls with a maximum size of 64KB on Windows
276 * XP and 256KB on Vista, no such cap is placed on writes to
277 * files over the network on Windows XP. Unfortunately, there
278 * seems to be a limit of 32MB-28KB on X64 and 64MB-32KB on x86;
279 * bigger writes fail on Windows XP.
280 * So we cap to a nice 31MB here to avoid write failures over
281 * the net without changing the number of WriteFile() calls in
282 * the local case.
284 return write(fd, buf, min(count, 31 * 1024 * 1024));
287 #undef fopen
288 FILE *mingw_fopen (const char *filename, const char *otype)
290 int hide = 0;
291 FILE *file;
292 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
293 basename((char*)filename)[0] == '.')
294 hide = access(filename, F_OK);
295 if (filename && !strcmp(filename, "/dev/null"))
296 filename = "nul";
297 file = fopen(filename, otype);
298 if (file && hide && make_hidden(filename))
299 warning("Could not mark '%s' as hidden.", filename);
300 return file;
303 #undef freopen
304 FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream)
306 int hide = 0;
307 FILE *file;
308 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
309 basename((char*)filename)[0] == '.')
310 hide = access(filename, F_OK);
311 if (filename && !strcmp(filename, "/dev/null"))
312 filename = "nul";
313 file = freopen(filename, otype, stream);
314 if (file && hide && make_hidden(filename))
315 warning("Could not mark '%s' as hidden.", filename);
316 return file;
320 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
321 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
323 static inline long long filetime_to_hnsec(const FILETIME *ft)
325 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
326 /* Windows to Unix Epoch conversion */
327 return winTime - 116444736000000000LL;
330 static inline time_t filetime_to_time_t(const FILETIME *ft)
332 return (time_t)(filetime_to_hnsec(ft) / 10000000);
335 /* We keep the do_lstat code in a separate function to avoid recursion.
336 * When a path ends with a slash, the stat will fail with ENOENT. In
337 * this case, we strip the trailing slashes and stat again.
339 * If follow is true then act like stat() and report on the link
340 * target. Otherwise report on the link itself.
342 static int do_lstat(int follow, const char *file_name, struct stat *buf)
344 WIN32_FILE_ATTRIBUTE_DATA fdata;
346 if (!(errno = get_file_attr(file_name, &fdata))) {
347 buf->st_ino = 0;
348 buf->st_gid = 0;
349 buf->st_uid = 0;
350 buf->st_nlink = 1;
351 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
352 buf->st_size = fdata.nFileSizeLow |
353 (((off_t)fdata.nFileSizeHigh)<<32);
354 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
355 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
356 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
357 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
358 if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
359 WIN32_FIND_DATAA findbuf;
360 HANDLE handle = FindFirstFileA(file_name, &findbuf);
361 if (handle != INVALID_HANDLE_VALUE) {
362 if ((findbuf.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) &&
363 (findbuf.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) {
364 if (follow) {
365 char buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
366 buf->st_size = readlink(file_name, buffer, MAXIMUM_REPARSE_DATA_BUFFER_SIZE);
367 } else {
368 buf->st_mode = S_IFLNK;
370 buf->st_mode |= S_IREAD;
371 if (!(findbuf.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
372 buf->st_mode |= S_IWRITE;
374 FindClose(handle);
377 return 0;
379 return -1;
382 /* We provide our own lstat/fstat functions, since the provided
383 * lstat/fstat functions are so slow. These stat functions are
384 * tailored for Git's usage (read: fast), and are not meant to be
385 * complete. Note that Git stat()s are redirected to mingw_lstat()
386 * too, since Windows doesn't really handle symlinks that well.
388 static int do_stat_internal(int follow, const char *file_name, struct stat *buf)
390 int namelen;
391 static char alt_name[PATH_MAX];
393 if (!do_lstat(follow, file_name, buf))
394 return 0;
396 /* if file_name ended in a '/', Windows returned ENOENT;
397 * try again without trailing slashes
399 if (errno != ENOENT)
400 return -1;
402 namelen = strlen(file_name);
403 if (namelen && file_name[namelen-1] != '/')
404 return -1;
405 while (namelen && file_name[namelen-1] == '/')
406 --namelen;
407 if (!namelen || namelen >= PATH_MAX)
408 return -1;
410 memcpy(alt_name, file_name, namelen);
411 alt_name[namelen] = 0;
412 return do_lstat(follow, alt_name, buf);
415 int mingw_lstat(const char *file_name, struct stat *buf)
417 return do_stat_internal(0, file_name, buf);
419 int mingw_stat(const char *file_name, struct stat *buf)
421 return do_stat_internal(1, file_name, buf);
424 #undef fstat
425 int mingw_fstat(int fd, struct stat *buf)
427 HANDLE fh = (HANDLE)_get_osfhandle(fd);
428 BY_HANDLE_FILE_INFORMATION fdata;
430 if (fh == INVALID_HANDLE_VALUE) {
431 errno = EBADF;
432 return -1;
434 /* direct non-file handles to MS's fstat() */
435 if (GetFileType(fh) != FILE_TYPE_DISK)
436 return _fstati64(fd, buf);
438 if (GetFileInformationByHandle(fh, &fdata)) {
439 buf->st_ino = 0;
440 buf->st_gid = 0;
441 buf->st_uid = 0;
442 buf->st_nlink = 1;
443 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
444 buf->st_size = fdata.nFileSizeLow |
445 (((off_t)fdata.nFileSizeHigh)<<32);
446 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
447 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
448 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
449 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
450 return 0;
452 errno = EBADF;
453 return -1;
456 static inline void time_t_to_filetime(time_t t, FILETIME *ft)
458 long long winTime = t * 10000000LL + 116444736000000000LL;
459 ft->dwLowDateTime = winTime;
460 ft->dwHighDateTime = winTime >> 32;
463 int mingw_utime (const char *file_name, const struct utimbuf *times)
465 FILETIME mft, aft;
466 int fh, rc;
468 /* must have write permission */
469 DWORD attrs = GetFileAttributes(file_name);
470 if (attrs != INVALID_FILE_ATTRIBUTES &&
471 (attrs & FILE_ATTRIBUTE_READONLY)) {
472 /* ignore errors here; open() will report them */
473 SetFileAttributes(file_name, attrs & ~FILE_ATTRIBUTE_READONLY);
476 if ((fh = open(file_name, O_RDWR | O_BINARY)) < 0) {
477 rc = -1;
478 goto revert_attrs;
481 if (times) {
482 time_t_to_filetime(times->modtime, &mft);
483 time_t_to_filetime(times->actime, &aft);
484 } else {
485 GetSystemTimeAsFileTime(&mft);
486 aft = mft;
488 if (!SetFileTime((HANDLE)_get_osfhandle(fh), NULL, &aft, &mft)) {
489 errno = EINVAL;
490 rc = -1;
491 } else
492 rc = 0;
493 close(fh);
495 revert_attrs:
496 if (attrs != INVALID_FILE_ATTRIBUTES &&
497 (attrs & FILE_ATTRIBUTE_READONLY)) {
498 /* ignore errors again */
499 SetFileAttributes(file_name, attrs);
501 return rc;
504 unsigned int sleep (unsigned int seconds)
506 Sleep(seconds*1000);
507 return 0;
510 int mkstemp(char *template)
512 char *filename = mktemp(template);
513 if (filename == NULL)
514 return -1;
515 return open(filename, O_RDWR | O_CREAT, 0600);
518 int gettimeofday(struct timeval *tv, void *tz)
520 FILETIME ft;
521 long long hnsec;
523 GetSystemTimeAsFileTime(&ft);
524 hnsec = filetime_to_hnsec(&ft);
525 tv->tv_sec = hnsec / 10000000;
526 tv->tv_usec = (hnsec % 10000000) / 10;
527 return 0;
530 int pipe(int filedes[2])
532 HANDLE h[2];
534 /* this creates non-inheritable handles */
535 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
536 errno = err_win_to_posix(GetLastError());
537 return -1;
539 filedes[0] = _open_osfhandle((int)h[0], O_NOINHERIT);
540 if (filedes[0] < 0) {
541 CloseHandle(h[0]);
542 CloseHandle(h[1]);
543 return -1;
545 filedes[1] = _open_osfhandle((int)h[1], O_NOINHERIT);
546 if (filedes[0] < 0) {
547 close(filedes[0]);
548 CloseHandle(h[1]);
549 return -1;
551 return 0;
554 int poll(struct pollfd *ufds, unsigned int nfds, int timeout)
556 int i, pending;
558 if (timeout >= 0) {
559 if (nfds == 0) {
560 Sleep(timeout);
561 return 0;
563 return errno = EINVAL, error("poll timeout not supported");
566 /* When there is only one fd to wait for, then we pretend that
567 * input is available and let the actual wait happen when the
568 * caller invokes read().
570 if (nfds == 1) {
571 if (!(ufds[0].events & POLLIN))
572 return errno = EINVAL, error("POLLIN not set");
573 ufds[0].revents = POLLIN;
574 return 0;
577 repeat:
578 pending = 0;
579 for (i = 0; i < nfds; i++) {
580 DWORD avail = 0;
581 HANDLE h = (HANDLE) _get_osfhandle(ufds[i].fd);
582 if (h == INVALID_HANDLE_VALUE)
583 return -1; /* errno was set */
585 if (!(ufds[i].events & POLLIN))
586 return errno = EINVAL, error("POLLIN not set");
588 /* this emulation works only for pipes */
589 if (!PeekNamedPipe(h, NULL, 0, NULL, &avail, NULL)) {
590 int err = GetLastError();
591 if (err == ERROR_BROKEN_PIPE) {
592 ufds[i].revents = POLLHUP;
593 pending++;
594 } else {
595 errno = EINVAL;
596 return error("PeekNamedPipe failed,"
597 " GetLastError: %u", err);
599 } else if (avail) {
600 ufds[i].revents = POLLIN;
601 pending++;
602 } else
603 ufds[i].revents = 0;
605 if (!pending) {
606 /* The only times that we spin here is when the process
607 * that is connected through the pipes is waiting for
608 * its own input data to become available. But since
609 * the process (pack-objects) is itself CPU intensive,
610 * it will happily pick up the time slice that we are
611 * relinquishing here.
613 Sleep(0);
614 goto repeat;
616 return 0;
619 struct tm *gmtime_r(const time_t *timep, struct tm *result)
621 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
622 memcpy(result, gmtime(timep), sizeof(struct tm));
623 return result;
626 struct tm *localtime_r(const time_t *timep, struct tm *result)
628 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
629 memcpy(result, localtime(timep), sizeof(struct tm));
630 return result;
633 #undef getcwd
634 char *mingw_getcwd(char *pointer, int len)
636 int i;
637 char *ret = getcwd(pointer, len);
638 if (!ret)
639 return ret;
640 for (i = 0; pointer[i]; i++)
641 if (pointer[i] == '\\')
642 pointer[i] = '/';
643 return ret;
646 #undef getenv
647 char *mingw_getenv(const char *name)
649 char *result = getenv(name);
650 if (!result && !strcmp(name, "TMPDIR")) {
651 /* on Windows it is TMP and TEMP */
652 result = getenv("TMP");
653 if (!result)
654 result = getenv("TEMP");
656 return result;
660 * See http://msdn2.microsoft.com/en-us/library/17w5ykft(vs.71).aspx
661 * (Parsing C++ Command-Line Arguments)
663 static const char *quote_arg(const char *arg)
665 /* count chars to quote */
666 int len = 0, n = 0;
667 int force_quotes = 0;
668 char *q, *d;
669 const char *p = arg;
670 if (!*p) force_quotes = 1;
671 while (*p) {
672 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
673 force_quotes = 1;
674 else if (*p == '"')
675 n++;
676 else if (*p == '\\') {
677 int count = 0;
678 while (*p == '\\') {
679 count++;
680 p++;
681 len++;
683 if (*p == '"')
684 n += count*2 + 1;
685 continue;
687 len++;
688 p++;
690 if (!force_quotes && n == 0)
691 return arg;
693 /* insert \ where necessary */
694 d = q = xmalloc(len+n+3);
695 *d++ = '"';
696 while (*arg) {
697 if (*arg == '"')
698 *d++ = '\\';
699 else if (*arg == '\\') {
700 int count = 0;
701 while (*arg == '\\') {
702 count++;
703 *d++ = *arg++;
705 if (*arg == '"') {
706 while (count-- > 0)
707 *d++ = '\\';
708 *d++ = '\\';
711 *d++ = *arg++;
713 *d++ = '"';
714 *d++ = 0;
715 return q;
718 static const char *parse_interpreter(const char *cmd)
720 static char buf[100];
721 char *p, *opt;
722 int n, fd;
724 /* don't even try a .exe */
725 n = strlen(cmd);
726 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
727 return NULL;
729 fd = open(cmd, O_RDONLY);
730 if (fd < 0)
731 return NULL;
732 n = read(fd, buf, sizeof(buf)-1);
733 close(fd);
734 if (n < 4) /* at least '#!/x' and not error */
735 return NULL;
737 if (buf[0] != '#' || buf[1] != '!')
738 return NULL;
739 buf[n] = '\0';
740 p = buf + strcspn(buf, "\r\n");
741 if (!*p)
742 return NULL;
744 *p = '\0';
745 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
746 return NULL;
747 /* strip options */
748 if ((opt = strchr(p+1, ' ')))
749 *opt = '\0';
750 return p+1;
754 * Splits the PATH into parts.
756 static char **get_path_split(void)
758 char *p, **path, *envpath = getenv("PATH");
759 int i, n = 0;
761 if (!envpath || !*envpath)
762 return NULL;
764 envpath = xstrdup(envpath);
765 p = envpath;
766 while (p) {
767 char *dir = p;
768 p = strchr(p, ';');
769 if (p) *p++ = '\0';
770 if (*dir) { /* not earlier, catches series of ; */
771 ++n;
774 if (!n)
775 return NULL;
777 path = xmalloc((n+1)*sizeof(char *));
778 p = envpath;
779 i = 0;
780 do {
781 if (*p)
782 path[i++] = xstrdup(p);
783 p = p+strlen(p)+1;
784 } while (i < n);
785 path[i] = NULL;
787 free(envpath);
789 return path;
792 static void free_path_split(char **path)
794 char **p = path;
796 if (!path)
797 return;
799 while (*p)
800 free(*p++);
801 free(path);
805 * exe_only means that we only want to detect .exe files, but not scripts
806 * (which do not have an extension)
808 static char *lookup_prog(const char *dir, const char *cmd, int isexe, int exe_only)
810 char path[MAX_PATH];
811 snprintf(path, sizeof(path), "%s/%s.exe", dir, cmd);
813 if (!isexe && access(path, F_OK) == 0)
814 return xstrdup(path);
815 path[strlen(path)-4] = '\0';
816 if ((!exe_only || isexe) && access(path, F_OK) == 0)
817 if (!(GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY))
818 return xstrdup(path);
819 return NULL;
823 * Determines the absolute path of cmd using the split path in path.
824 * If cmd contains a slash or backslash, no lookup is performed.
826 static char *path_lookup(const char *cmd, char **path, int exe_only)
828 char *prog = NULL;
829 int len = strlen(cmd);
830 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
832 if (strchr(cmd, '/') || strchr(cmd, '\\'))
833 prog = xstrdup(cmd);
835 while (!prog && *path)
836 prog = lookup_prog(*path++, cmd, isexe, exe_only);
838 return prog;
841 static int env_compare(const void *a, const void *b)
843 char *const *ea = a;
844 char *const *eb = b;
845 return strcasecmp(*ea, *eb);
848 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **env,
849 const char *dir,
850 int prepend_cmd, int fhin, int fhout, int fherr)
852 STARTUPINFO si;
853 PROCESS_INFORMATION pi;
854 struct strbuf envblk, args;
855 unsigned flags;
856 BOOL ret;
858 /* Determine whether or not we are associated to a console */
859 HANDLE cons = CreateFile("CONOUT$", GENERIC_WRITE,
860 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
861 FILE_ATTRIBUTE_NORMAL, NULL);
862 if (cons == INVALID_HANDLE_VALUE) {
863 /* There is no console associated with this process.
864 * Since the child is a console process, Windows
865 * would normally create a console window. But
866 * since we'll be redirecting std streams, we do
867 * not need the console.
868 * It is necessary to use DETACHED_PROCESS
869 * instead of CREATE_NO_WINDOW to make ssh
870 * recognize that it has no console.
872 flags = DETACHED_PROCESS;
873 } else {
874 /* There is already a console. If we specified
875 * DETACHED_PROCESS here, too, Windows would
876 * disassociate the child from the console.
877 * The same is true for CREATE_NO_WINDOW.
878 * Go figure!
880 flags = 0;
881 CloseHandle(cons);
883 memset(&si, 0, sizeof(si));
884 si.cb = sizeof(si);
885 si.dwFlags = STARTF_USESTDHANDLES;
886 si.hStdInput = (HANDLE) _get_osfhandle(fhin);
887 si.hStdOutput = (HANDLE) _get_osfhandle(fhout);
888 si.hStdError = (HANDLE) _get_osfhandle(fherr);
890 /* concatenate argv, quoting args as we go */
891 strbuf_init(&args, 0);
892 if (prepend_cmd) {
893 char *quoted = (char *)quote_arg(cmd);
894 strbuf_addstr(&args, quoted);
895 if (quoted != cmd)
896 free(quoted);
898 for (; *argv; argv++) {
899 char *quoted = (char *)quote_arg(*argv);
900 if (*args.buf)
901 strbuf_addch(&args, ' ');
902 strbuf_addstr(&args, quoted);
903 if (quoted != *argv)
904 free(quoted);
907 if (env) {
908 int count = 0;
909 char **e, **sorted_env;
911 for (e = env; *e; e++)
912 count++;
914 /* environment must be sorted */
915 sorted_env = xmalloc(sizeof(*sorted_env) * (count + 1));
916 memcpy(sorted_env, env, sizeof(*sorted_env) * (count + 1));
917 qsort(sorted_env, count, sizeof(*sorted_env), env_compare);
919 strbuf_init(&envblk, 0);
920 for (e = sorted_env; *e; e++) {
921 strbuf_addstr(&envblk, *e);
922 strbuf_addch(&envblk, '\0');
924 free(sorted_env);
927 memset(&pi, 0, sizeof(pi));
928 ret = CreateProcess(cmd, args.buf, NULL, NULL, TRUE, flags,
929 env ? envblk.buf : NULL, dir, &si, &pi);
931 if (env)
932 strbuf_release(&envblk);
933 strbuf_release(&args);
935 if (!ret) {
936 errno = ENOENT;
937 return -1;
939 CloseHandle(pi.hThread);
940 return (pid_t)pi.hProcess;
943 static pid_t mingw_spawnve(const char *cmd, const char **argv, char **env,
944 int prepend_cmd)
946 return mingw_spawnve_fd(cmd, argv, env, NULL, prepend_cmd, 0, 1, 2);
949 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
950 const char *dir,
951 int fhin, int fhout, int fherr)
953 pid_t pid;
954 char **path = get_path_split();
955 char *prog = path_lookup(cmd, path, 0);
957 if (!prog) {
958 errno = ENOENT;
959 pid = -1;
961 else {
962 const char *interpr = parse_interpreter(prog);
964 if (interpr) {
965 const char *argv0 = argv[0];
966 char *iprog = path_lookup(interpr, path, 1);
967 argv[0] = prog;
968 if (!iprog) {
969 errno = ENOENT;
970 pid = -1;
972 else {
973 pid = mingw_spawnve_fd(iprog, argv, env, dir, 1,
974 fhin, fhout, fherr);
975 free(iprog);
977 argv[0] = argv0;
979 else
980 pid = mingw_spawnve_fd(prog, argv, env, dir, 0,
981 fhin, fhout, fherr);
982 free(prog);
984 free_path_split(path);
985 return pid;
988 static int try_shell_exec(const char *cmd, char *const *argv, char **env)
990 const char *interpr = parse_interpreter(cmd);
991 char **path;
992 char *prog;
993 int pid = 0;
995 if (!interpr)
996 return 0;
997 path = get_path_split();
998 prog = path_lookup(interpr, path, 1);
999 if (prog) {
1000 int argc = 0;
1001 const char **argv2;
1002 while (argv[argc]) argc++;
1003 argv2 = xmalloc(sizeof(*argv) * (argc+1));
1004 argv2[0] = (char *)cmd; /* full path to the script file */
1005 memcpy(&argv2[1], &argv[1], sizeof(*argv) * argc);
1006 pid = mingw_spawnve(prog, argv2, env, 1);
1007 if (pid >= 0) {
1008 int status;
1009 if (waitpid(pid, &status, 0) < 0)
1010 status = 255;
1011 exit(status);
1013 pid = 1; /* indicate that we tried but failed */
1014 free(prog);
1015 free(argv2);
1017 free_path_split(path);
1018 return pid;
1021 static void mingw_execve(const char *cmd, char *const *argv, char *const *env)
1023 /* check if git_command is a shell script */
1024 if (!try_shell_exec(cmd, argv, (char **)env)) {
1025 int pid, status;
1027 pid = mingw_spawnve(cmd, (const char **)argv, (char **)env, 0);
1028 if (pid < 0)
1029 return;
1030 if (waitpid(pid, &status, 0) < 0)
1031 status = 255;
1032 exit(status);
1036 void mingw_execvp(const char *cmd, char *const *argv)
1038 char **path = get_path_split();
1039 char *prog = path_lookup(cmd, path, 0);
1041 if (prog) {
1042 mingw_execve(prog, argv, environ);
1043 free(prog);
1044 } else
1045 errno = ENOENT;
1047 free_path_split(path);
1050 static char **copy_environ(void)
1052 char **env;
1053 int i = 0;
1054 while (environ[i])
1055 i++;
1056 env = xmalloc((i+1)*sizeof(*env));
1057 for (i = 0; environ[i]; i++)
1058 env[i] = xstrdup(environ[i]);
1059 env[i] = NULL;
1060 return env;
1063 void free_environ(char **env)
1065 int i;
1066 for (i = 0; env[i]; i++)
1067 free(env[i]);
1068 free(env);
1071 static int lookup_env(char **env, const char *name, size_t nmln)
1073 int i;
1075 for (i = 0; env[i]; i++) {
1076 if (0 == strncmp(env[i], name, nmln)
1077 && '=' == env[i][nmln])
1078 /* matches */
1079 return i;
1081 return -1;
1085 * If name contains '=', then sets the variable, otherwise it unsets it
1087 static char **env_setenv(char **env, const char *name)
1089 char *eq = strchrnul(name, '=');
1090 int i = lookup_env(env, name, eq-name);
1092 if (i < 0) {
1093 if (*eq) {
1094 for (i = 0; env[i]; i++)
1096 env = xrealloc(env, (i+2)*sizeof(*env));
1097 env[i] = xstrdup(name);
1098 env[i+1] = NULL;
1101 else {
1102 free(env[i]);
1103 if (*eq)
1104 env[i] = xstrdup(name);
1105 else
1106 for (; env[i]; i++)
1107 env[i] = env[i+1];
1109 return env;
1113 * Copies global environ and adjusts variables as specified by vars.
1115 char **make_augmented_environ(const char *const *vars)
1117 char **env = copy_environ();
1119 while (*vars)
1120 env = env_setenv(env, *vars++);
1121 return env;
1125 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1126 * that service contains a numerical port, or that it it is null. It
1127 * does a simple search using gethostbyname, and returns one IPv4 host
1128 * if one was found.
1130 static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
1131 const struct addrinfo *hints,
1132 struct addrinfo **res)
1134 struct hostent *h = gethostbyname(node);
1135 struct addrinfo *ai;
1136 struct sockaddr_in *sin;
1138 if (!h)
1139 return WSAGetLastError();
1141 ai = xmalloc(sizeof(struct addrinfo));
1142 *res = ai;
1143 ai->ai_flags = 0;
1144 ai->ai_family = AF_INET;
1145 ai->ai_socktype = hints->ai_socktype;
1146 switch (hints->ai_socktype) {
1147 case SOCK_STREAM:
1148 ai->ai_protocol = IPPROTO_TCP;
1149 break;
1150 case SOCK_DGRAM:
1151 ai->ai_protocol = IPPROTO_UDP;
1152 break;
1153 default:
1154 ai->ai_protocol = 0;
1155 break;
1157 ai->ai_addrlen = sizeof(struct sockaddr_in);
1158 ai->ai_canonname = strdup(h->h_name);
1160 sin = xmalloc(ai->ai_addrlen);
1161 memset(sin, 0, ai->ai_addrlen);
1162 sin->sin_family = AF_INET;
1163 if (service)
1164 sin->sin_port = htons(atoi(service));
1165 sin->sin_addr = *(struct in_addr *)h->h_addr;
1166 ai->ai_addr = (struct sockaddr *)sin;
1167 ai->ai_next = 0;
1168 return 0;
1171 static void WSAAPI freeaddrinfo_stub(struct addrinfo *res)
1173 free(res->ai_canonname);
1174 free(res->ai_addr);
1175 free(res);
1178 static int WSAAPI getnameinfo_stub(const struct sockaddr *sa, socklen_t salen,
1179 char *host, DWORD hostlen,
1180 char *serv, DWORD servlen, int flags)
1182 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
1183 if (sa->sa_family != AF_INET)
1184 return EAI_FAMILY;
1185 if (!host && !serv)
1186 return EAI_NONAME;
1188 if (host && hostlen > 0) {
1189 struct hostent *ent = NULL;
1190 if (!(flags & NI_NUMERICHOST))
1191 ent = gethostbyaddr((const char *)&sin->sin_addr,
1192 sizeof(sin->sin_addr), AF_INET);
1194 if (ent)
1195 snprintf(host, hostlen, "%s", ent->h_name);
1196 else if (flags & NI_NAMEREQD)
1197 return EAI_NONAME;
1198 else
1199 snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
1202 if (serv && servlen > 0) {
1203 struct servent *ent = NULL;
1204 if (!(flags & NI_NUMERICSERV))
1205 ent = getservbyport(sin->sin_port,
1206 flags & NI_DGRAM ? "udp" : "tcp");
1208 if (ent)
1209 snprintf(serv, servlen, "%s", ent->s_name);
1210 else
1211 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
1214 return 0;
1217 static HMODULE ipv6_dll = NULL;
1218 static void (WSAAPI *ipv6_freeaddrinfo)(struct addrinfo *res);
1219 static int (WSAAPI *ipv6_getaddrinfo)(const char *node, const char *service,
1220 const struct addrinfo *hints,
1221 struct addrinfo **res);
1222 static int (WSAAPI *ipv6_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
1223 char *host, DWORD hostlen,
1224 char *serv, DWORD servlen, int flags);
1226 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1227 * don't need to try to load that one dynamically.
1230 static void socket_cleanup(void)
1232 WSACleanup();
1233 if (ipv6_dll)
1234 FreeLibrary(ipv6_dll);
1235 ipv6_dll = NULL;
1236 ipv6_freeaddrinfo = freeaddrinfo_stub;
1237 ipv6_getaddrinfo = getaddrinfo_stub;
1238 ipv6_getnameinfo = getnameinfo_stub;
1241 static void ensure_socket_initialization(void)
1243 WSADATA wsa;
1244 static int initialized = 0;
1245 const char *libraries[] = { "ws2_32.dll", "wship6.dll", NULL };
1246 const char **name;
1248 if (initialized)
1249 return;
1251 if (WSAStartup(MAKEWORD(2,2), &wsa))
1252 die("unable to initialize winsock subsystem, error %d",
1253 WSAGetLastError());
1255 for (name = libraries; *name; name++) {
1256 ipv6_dll = LoadLibrary(*name);
1257 if (!ipv6_dll)
1258 continue;
1260 ipv6_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *))
1261 GetProcAddress(ipv6_dll, "freeaddrinfo");
1262 ipv6_getaddrinfo = (int (WSAAPI *)(const char *, const char *,
1263 const struct addrinfo *,
1264 struct addrinfo **))
1265 GetProcAddress(ipv6_dll, "getaddrinfo");
1266 ipv6_getnameinfo = (int (WSAAPI *)(const struct sockaddr *,
1267 socklen_t, char *, DWORD,
1268 char *, DWORD, int))
1269 GetProcAddress(ipv6_dll, "getnameinfo");
1270 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1271 FreeLibrary(ipv6_dll);
1272 ipv6_dll = NULL;
1273 } else
1274 break;
1276 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1277 ipv6_freeaddrinfo = freeaddrinfo_stub;
1278 ipv6_getaddrinfo = getaddrinfo_stub;
1279 ipv6_getnameinfo = getnameinfo_stub;
1282 atexit(socket_cleanup);
1283 initialized = 1;
1286 #undef gethostbyname
1287 struct hostent *mingw_gethostbyname(const char *host)
1289 ensure_socket_initialization();
1290 return gethostbyname(host);
1293 void mingw_freeaddrinfo(struct addrinfo *res)
1295 ipv6_freeaddrinfo(res);
1298 int mingw_getaddrinfo(const char *node, const char *service,
1299 const struct addrinfo *hints, struct addrinfo **res)
1301 ensure_socket_initialization();
1302 return ipv6_getaddrinfo(node, service, hints, res);
1305 int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
1306 char *host, DWORD hostlen, char *serv, DWORD servlen,
1307 int flags)
1309 ensure_socket_initialization();
1310 return ipv6_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
1313 int mingw_socket(int domain, int type, int protocol)
1315 int sockfd;
1316 SOCKET s = WSASocket(domain, type, protocol, NULL, 0, 0);
1317 if (s == INVALID_SOCKET) {
1319 * WSAGetLastError() values are regular BSD error codes
1320 * biased by WSABASEERR.
1321 * However, strerror() does not know about networking
1322 * specific errors, which are values beginning at 38 or so.
1323 * Therefore, we choose to leave the biased error code
1324 * in errno so that _if_ someone looks up the code somewhere,
1325 * then it is at least the number that are usually listed.
1327 errno = WSAGetLastError();
1328 return -1;
1330 /* convert into a file descriptor */
1331 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
1332 closesocket(s);
1333 return error("unable to make a socket file descriptor: %s",
1334 strerror(errno));
1336 return sockfd;
1339 #undef connect
1340 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
1342 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1343 return connect(s, sa, sz);
1346 #undef rename
1347 int mingw_rename(const char *pold, const char *pnew)
1349 DWORD attrs, gle;
1350 int tries = 0;
1353 * Try native rename() first to get errno right.
1354 * It is based on MoveFile(), which cannot overwrite existing files.
1356 if (!rename(pold, pnew))
1357 return 0;
1358 if (errno != EEXIST)
1359 return -1;
1360 repeat:
1361 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1362 return 0;
1363 /* TODO: translate more errors */
1364 gle = GetLastError();
1365 if (gle == ERROR_ACCESS_DENIED &&
1366 (attrs = GetFileAttributes(pnew)) != INVALID_FILE_ATTRIBUTES) {
1367 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
1368 errno = EISDIR;
1369 return -1;
1371 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
1372 SetFileAttributes(pnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
1373 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1374 return 0;
1375 gle = GetLastError();
1376 /* revert file attributes on failure */
1377 SetFileAttributes(pnew, attrs);
1380 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
1382 * We assume that some other process had the source or
1383 * destination file open at the wrong moment and retry.
1384 * In order to give the other process a higher chance to
1385 * complete its operation, we give up our time slice now.
1386 * If we have to retry again, we do sleep a bit.
1388 Sleep(delay[tries]);
1389 tries++;
1390 goto repeat;
1392 if (gle == ERROR_ACCESS_DENIED &&
1393 ask_user_yes_no("Rename from '%s' to '%s' failed. "
1394 "Should I try again?", pold, pnew))
1395 goto repeat;
1397 errno = EACCES;
1398 return -1;
1402 * Note that this doesn't return the actual pagesize, but
1403 * the allocation granularity. If future Windows specific git code
1404 * needs the real getpagesize function, we need to find another solution.
1406 int mingw_getpagesize(void)
1408 SYSTEM_INFO si;
1409 GetSystemInfo(&si);
1410 return si.dwAllocationGranularity;
1413 struct passwd *getpwuid(int uid)
1415 static char user_name[100];
1416 static struct passwd p;
1418 DWORD len = sizeof(user_name);
1419 if (!GetUserName(user_name, &len))
1420 return NULL;
1421 p.pw_name = user_name;
1422 p.pw_gecos = "unknown";
1423 p.pw_dir = NULL;
1424 return &p;
1427 static HANDLE timer_event;
1428 static HANDLE timer_thread;
1429 static int timer_interval;
1430 static int one_shot;
1431 static sig_handler_t timer_fn = SIG_DFL;
1433 /* The timer works like this:
1434 * The thread, ticktack(), is a trivial routine that most of the time
1435 * only waits to receive the signal to terminate. The main thread tells
1436 * the thread to terminate by setting the timer_event to the signalled
1437 * state.
1438 * But ticktack() interrupts the wait state after the timer's interval
1439 * length to call the signal handler.
1442 static unsigned __stdcall ticktack(void *dummy)
1444 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
1445 if (timer_fn == SIG_DFL)
1446 die("Alarm");
1447 if (timer_fn != SIG_IGN)
1448 timer_fn(SIGALRM);
1449 if (one_shot)
1450 break;
1452 return 0;
1455 static int start_timer_thread(void)
1457 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1458 if (timer_event) {
1459 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
1460 if (!timer_thread )
1461 return errno = ENOMEM,
1462 error("cannot start timer thread");
1463 } else
1464 return errno = ENOMEM,
1465 error("cannot allocate resources for timer");
1466 return 0;
1469 static void stop_timer_thread(void)
1471 if (timer_event)
1472 SetEvent(timer_event); /* tell thread to terminate */
1473 if (timer_thread) {
1474 int rc = WaitForSingleObject(timer_thread, 1000);
1475 if (rc == WAIT_TIMEOUT)
1476 error("timer thread did not terminate timely");
1477 else if (rc != WAIT_OBJECT_0)
1478 error("waiting for timer thread failed: %lu",
1479 GetLastError());
1480 CloseHandle(timer_thread);
1482 if (timer_event)
1483 CloseHandle(timer_event);
1484 timer_event = NULL;
1485 timer_thread = NULL;
1488 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
1490 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
1493 int setitimer(int type, struct itimerval *in, struct itimerval *out)
1495 static const struct timeval zero;
1496 static int atexit_done;
1498 if (out != NULL)
1499 return errno = EINVAL,
1500 error("setitimer param 3 != NULL not implemented");
1501 if (!is_timeval_eq(&in->it_interval, &zero) &&
1502 !is_timeval_eq(&in->it_interval, &in->it_value))
1503 return errno = EINVAL,
1504 error("setitimer: it_interval must be zero or eq it_value");
1506 if (timer_thread)
1507 stop_timer_thread();
1509 if (is_timeval_eq(&in->it_value, &zero) &&
1510 is_timeval_eq(&in->it_interval, &zero))
1511 return 0;
1513 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
1514 one_shot = is_timeval_eq(&in->it_interval, &zero);
1515 if (!atexit_done) {
1516 atexit(stop_timer_thread);
1517 atexit_done = 1;
1519 return start_timer_thread();
1522 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
1524 if (sig != SIGALRM)
1525 return errno = EINVAL,
1526 error("sigaction only implemented for SIGALRM");
1527 if (out != NULL)
1528 return errno = EINVAL,
1529 error("sigaction: param 3 != NULL not implemented");
1531 timer_fn = in->sa_handler;
1532 return 0;
1535 #undef signal
1536 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
1538 sig_handler_t old = timer_fn;
1539 if (sig != SIGALRM)
1540 return signal(sig, handler);
1541 timer_fn = handler;
1542 return old;
1545 static const char *make_backslash_path(const char *path)
1547 static char buf[PATH_MAX + 1];
1548 char *c;
1550 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
1551 die("Too long path: %.*s", 60, path);
1553 for (c = buf; *c; c++) {
1554 if (*c == '/')
1555 *c = '\\';
1557 return buf;
1560 void mingw_open_html(const char *unixpath)
1562 const char *htmlpath = make_backslash_path(unixpath);
1563 typedef HINSTANCE (WINAPI *T)(HWND, const char *,
1564 const char *, const char *, const char *, INT);
1565 T ShellExecute;
1566 HMODULE shell32;
1567 int r;
1569 shell32 = LoadLibrary("shell32.dll");
1570 if (!shell32)
1571 die("cannot load shell32.dll");
1572 ShellExecute = (T)GetProcAddress(shell32, "ShellExecuteA");
1573 if (!ShellExecute)
1574 die("cannot run browser");
1576 printf("Launching default browser to display HTML ...\n");
1577 r = (int)ShellExecute(NULL, "open", htmlpath, NULL, "\\", SW_SHOWNORMAL);
1578 FreeLibrary(shell32);
1579 /* see the MSDN documentation referring to the result codes here */
1580 if (r <= 32) {
1581 die("failed to launch browser for %.*s", MAX_PATH, unixpath);
1585 int link(const char *oldpath, const char *newpath)
1587 typedef BOOL (WINAPI *T)(const char*, const char*, LPSECURITY_ATTRIBUTES);
1588 static T create_hard_link = NULL;
1589 if (!create_hard_link) {
1590 create_hard_link = (T) GetProcAddress(
1591 GetModuleHandle("kernel32.dll"), "CreateHardLinkA");
1592 if (!create_hard_link)
1593 create_hard_link = (T)-1;
1595 if (create_hard_link == (T)-1) {
1596 errno = ENOSYS;
1597 return -1;
1599 if (!create_hard_link(newpath, oldpath, NULL)) {
1600 errno = err_win_to_posix(GetLastError());
1601 return -1;
1603 return 0;
1606 char *getpass(const char *prompt)
1608 struct strbuf buf = STRBUF_INIT;
1610 fputs(prompt, stderr);
1611 for (;;) {
1612 char c = _getch();
1613 if (c == '\r' || c == '\n')
1614 break;
1615 strbuf_addch(&buf, c);
1617 fputs("\n", stderr);
1618 return strbuf_detach(&buf, NULL);
1621 #ifndef NO_MINGW_REPLACE_READDIR
1622 /* MinGW readdir implementation to avoid extra lstats for Git */
1623 struct mingw_DIR
1625 struct _finddata_t dd_dta; /* disk transfer area for this dir */
1626 struct mingw_dirent dd_dir; /* Our own implementation, including d_type */
1627 long dd_handle; /* _findnext handle */
1628 int dd_stat; /* 0 = next entry to read is first entry, -1 = off the end, positive = 0 based index of next entry */
1629 char dd_name[1]; /* given path for dir with search pattern (struct is extended) */
1632 struct dirent *mingw_readdir(DIR *dir)
1634 WIN32_FIND_DATAA buf;
1635 HANDLE handle;
1636 struct mingw_DIR *mdir = (struct mingw_DIR*)dir;
1638 if (!dir->dd_handle) {
1639 errno = EBADF; /* No set_errno for mingw */
1640 return NULL;
1643 if (dir->dd_handle == (long)INVALID_HANDLE_VALUE && dir->dd_stat == 0)
1645 DWORD lasterr;
1646 handle = FindFirstFileA(dir->dd_name, &buf);
1647 lasterr = GetLastError();
1648 dir->dd_handle = (long)handle;
1649 if (handle == INVALID_HANDLE_VALUE && (lasterr != ERROR_NO_MORE_FILES)) {
1650 errno = err_win_to_posix(lasterr);
1651 return NULL;
1653 } else if (dir->dd_handle == (long)INVALID_HANDLE_VALUE) {
1654 return NULL;
1655 } else if (!FindNextFileA((HANDLE)dir->dd_handle, &buf)) {
1656 DWORD lasterr = GetLastError();
1657 FindClose((HANDLE)dir->dd_handle);
1658 dir->dd_handle = (long)INVALID_HANDLE_VALUE;
1659 /* POSIX says you shouldn't set errno when readdir can't
1660 find any more files; so, if another error we leave it set. */
1661 if (lasterr != ERROR_NO_MORE_FILES)
1662 errno = err_win_to_posix(lasterr);
1663 return NULL;
1666 /* We get here if `buf' contains valid data. */
1667 strcpy(dir->dd_dir.d_name, buf.cFileName);
1668 ++dir->dd_stat;
1670 /* Set file type, based on WIN32_FIND_DATA */
1671 mdir->dd_dir.d_type = 0;
1672 if (buf.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
1673 mdir->dd_dir.d_type |= DT_DIR;
1674 else
1675 mdir->dd_dir.d_type |= DT_REG;
1677 return (struct dirent*)&dir->dd_dir;
1679 #endif // !NO_MINGW_REPLACE_READDIR