mingw: add fallback for rmdir in case directory is in use
[git/dscho.git] / compat / mingw.c
blobef23b6274e87c1bf777f1a3993ec4ca0f1419633
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 if (times) {
476 time_t_to_filetime(times->modtime, &mft);
477 time_t_to_filetime(times->actime, &aft);
478 } else {
479 GetSystemTimeAsFileTime(&mft);
480 aft = mft;
482 if (!SetFileTime((HANDLE)_get_osfhandle(fh), NULL, &aft, &mft)) {
483 errno = EINVAL;
484 rc = -1;
485 } else
486 rc = 0;
487 close(fh);
489 revert_attrs:
490 if (attrs != INVALID_FILE_ATTRIBUTES &&
491 (attrs & FILE_ATTRIBUTE_READONLY)) {
492 /* ignore errors again */
493 SetFileAttributes(file_name, attrs);
495 return rc;
498 unsigned int sleep (unsigned int seconds)
500 Sleep(seconds*1000);
501 return 0;
504 int mkstemp(char *template)
506 char *filename = mktemp(template);
507 if (filename == NULL)
508 return -1;
509 return open(filename, O_RDWR | O_CREAT, 0600);
512 int gettimeofday(struct timeval *tv, void *tz)
514 FILETIME ft;
515 long long hnsec;
517 GetSystemTimeAsFileTime(&ft);
518 hnsec = filetime_to_hnsec(&ft);
519 tv->tv_sec = hnsec / 10000000;
520 tv->tv_usec = (hnsec % 10000000) / 10;
521 return 0;
524 int pipe(int filedes[2])
526 HANDLE h[2];
528 /* this creates non-inheritable handles */
529 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
530 errno = err_win_to_posix(GetLastError());
531 return -1;
533 filedes[0] = _open_osfhandle((int)h[0], O_NOINHERIT);
534 if (filedes[0] < 0) {
535 CloseHandle(h[0]);
536 CloseHandle(h[1]);
537 return -1;
539 filedes[1] = _open_osfhandle((int)h[1], O_NOINHERIT);
540 if (filedes[0] < 0) {
541 close(filedes[0]);
542 CloseHandle(h[1]);
543 return -1;
545 return 0;
548 int poll(struct pollfd *ufds, unsigned int nfds, int timeout)
550 int i, pending;
552 if (timeout >= 0) {
553 if (nfds == 0) {
554 Sleep(timeout);
555 return 0;
557 return errno = EINVAL, error("poll timeout not supported");
560 /* When there is only one fd to wait for, then we pretend that
561 * input is available and let the actual wait happen when the
562 * caller invokes read().
564 if (nfds == 1) {
565 if (!(ufds[0].events & POLLIN))
566 return errno = EINVAL, error("POLLIN not set");
567 ufds[0].revents = POLLIN;
568 return 0;
571 repeat:
572 pending = 0;
573 for (i = 0; i < nfds; i++) {
574 DWORD avail = 0;
575 HANDLE h = (HANDLE) _get_osfhandle(ufds[i].fd);
576 if (h == INVALID_HANDLE_VALUE)
577 return -1; /* errno was set */
579 if (!(ufds[i].events & POLLIN))
580 return errno = EINVAL, error("POLLIN not set");
582 /* this emulation works only for pipes */
583 if (!PeekNamedPipe(h, NULL, 0, NULL, &avail, NULL)) {
584 int err = GetLastError();
585 if (err == ERROR_BROKEN_PIPE) {
586 ufds[i].revents = POLLHUP;
587 pending++;
588 } else {
589 errno = EINVAL;
590 return error("PeekNamedPipe failed,"
591 " GetLastError: %u", err);
593 } else if (avail) {
594 ufds[i].revents = POLLIN;
595 pending++;
596 } else
597 ufds[i].revents = 0;
599 if (!pending) {
600 /* The only times that we spin here is when the process
601 * that is connected through the pipes is waiting for
602 * its own input data to become available. But since
603 * the process (pack-objects) is itself CPU intensive,
604 * it will happily pick up the time slice that we are
605 * relinquishing here.
607 Sleep(0);
608 goto repeat;
610 return 0;
613 struct tm *gmtime_r(const time_t *timep, struct tm *result)
615 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
616 memcpy(result, gmtime(timep), sizeof(struct tm));
617 return result;
620 struct tm *localtime_r(const time_t *timep, struct tm *result)
622 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
623 memcpy(result, localtime(timep), sizeof(struct tm));
624 return result;
627 #undef getcwd
628 char *mingw_getcwd(char *pointer, int len)
630 int i;
631 char *ret = getcwd(pointer, len);
632 if (!ret)
633 return ret;
634 for (i = 0; pointer[i]; i++)
635 if (pointer[i] == '\\')
636 pointer[i] = '/';
637 return ret;
640 #undef getenv
641 char *mingw_getenv(const char *name)
643 char *result = getenv(name);
644 if (!result && !strcmp(name, "TMPDIR")) {
645 /* on Windows it is TMP and TEMP */
646 result = getenv("TMP");
647 if (!result)
648 result = getenv("TEMP");
650 return result;
654 * See http://msdn2.microsoft.com/en-us/library/17w5ykft(vs.71).aspx
655 * (Parsing C++ Command-Line Arguments)
657 static const char *quote_arg(const char *arg)
659 /* count chars to quote */
660 int len = 0, n = 0;
661 int force_quotes = 0;
662 char *q, *d;
663 const char *p = arg;
664 if (!*p) force_quotes = 1;
665 while (*p) {
666 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
667 force_quotes = 1;
668 else if (*p == '"')
669 n++;
670 else if (*p == '\\') {
671 int count = 0;
672 while (*p == '\\') {
673 count++;
674 p++;
675 len++;
677 if (*p == '"')
678 n += count*2 + 1;
679 continue;
681 len++;
682 p++;
684 if (!force_quotes && n == 0)
685 return arg;
687 /* insert \ where necessary */
688 d = q = xmalloc(len+n+3);
689 *d++ = '"';
690 while (*arg) {
691 if (*arg == '"')
692 *d++ = '\\';
693 else if (*arg == '\\') {
694 int count = 0;
695 while (*arg == '\\') {
696 count++;
697 *d++ = *arg++;
699 if (*arg == '"') {
700 while (count-- > 0)
701 *d++ = '\\';
702 *d++ = '\\';
705 *d++ = *arg++;
707 *d++ = '"';
708 *d++ = 0;
709 return q;
712 static const char *parse_interpreter(const char *cmd)
714 static char buf[100];
715 char *p, *opt;
716 int n, fd;
718 /* don't even try a .exe */
719 n = strlen(cmd);
720 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
721 return NULL;
723 fd = open(cmd, O_RDONLY);
724 if (fd < 0)
725 return NULL;
726 n = read(fd, buf, sizeof(buf)-1);
727 close(fd);
728 if (n < 4) /* at least '#!/x' and not error */
729 return NULL;
731 if (buf[0] != '#' || buf[1] != '!')
732 return NULL;
733 buf[n] = '\0';
734 p = buf + strcspn(buf, "\r\n");
735 if (!*p)
736 return NULL;
738 *p = '\0';
739 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
740 return NULL;
741 /* strip options */
742 if ((opt = strchr(p+1, ' ')))
743 *opt = '\0';
744 return p+1;
748 * Splits the PATH into parts.
750 static char **get_path_split(void)
752 char *p, **path, *envpath = getenv("PATH");
753 int i, n = 0;
755 if (!envpath || !*envpath)
756 return NULL;
758 envpath = xstrdup(envpath);
759 p = envpath;
760 while (p) {
761 char *dir = p;
762 p = strchr(p, ';');
763 if (p) *p++ = '\0';
764 if (*dir) { /* not earlier, catches series of ; */
765 ++n;
768 if (!n)
769 return NULL;
771 path = xmalloc((n+1)*sizeof(char *));
772 p = envpath;
773 i = 0;
774 do {
775 if (*p)
776 path[i++] = xstrdup(p);
777 p = p+strlen(p)+1;
778 } while (i < n);
779 path[i] = NULL;
781 free(envpath);
783 return path;
786 static void free_path_split(char **path)
788 char **p = path;
790 if (!path)
791 return;
793 while (*p)
794 free(*p++);
795 free(path);
799 * exe_only means that we only want to detect .exe files, but not scripts
800 * (which do not have an extension)
802 static char *lookup_prog(const char *dir, const char *cmd, int isexe, int exe_only)
804 char path[MAX_PATH];
805 snprintf(path, sizeof(path), "%s/%s.exe", dir, cmd);
807 if (!isexe && access(path, F_OK) == 0)
808 return xstrdup(path);
809 path[strlen(path)-4] = '\0';
810 if ((!exe_only || isexe) && access(path, F_OK) == 0)
811 if (!(GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY))
812 return xstrdup(path);
813 return NULL;
817 * Determines the absolute path of cmd using the split path in path.
818 * If cmd contains a slash or backslash, no lookup is performed.
820 static char *path_lookup(const char *cmd, char **path, int exe_only)
822 char *prog = NULL;
823 int len = strlen(cmd);
824 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
826 if (strchr(cmd, '/') || strchr(cmd, '\\'))
827 prog = xstrdup(cmd);
829 while (!prog && *path)
830 prog = lookup_prog(*path++, cmd, isexe, exe_only);
832 return prog;
835 static int env_compare(const void *a, const void *b)
837 char *const *ea = a;
838 char *const *eb = b;
839 return strcasecmp(*ea, *eb);
842 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **env,
843 const char *dir,
844 int prepend_cmd, int fhin, int fhout, int fherr)
846 STARTUPINFO si;
847 PROCESS_INFORMATION pi;
848 struct strbuf envblk, args;
849 unsigned flags;
850 BOOL ret;
852 /* Determine whether or not we are associated to a console */
853 HANDLE cons = CreateFile("CONOUT$", GENERIC_WRITE,
854 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
855 FILE_ATTRIBUTE_NORMAL, NULL);
856 if (cons == INVALID_HANDLE_VALUE) {
857 /* There is no console associated with this process.
858 * Since the child is a console process, Windows
859 * would normally create a console window. But
860 * since we'll be redirecting std streams, we do
861 * not need the console.
862 * It is necessary to use DETACHED_PROCESS
863 * instead of CREATE_NO_WINDOW to make ssh
864 * recognize that it has no console.
866 flags = DETACHED_PROCESS;
867 } else {
868 /* There is already a console. If we specified
869 * DETACHED_PROCESS here, too, Windows would
870 * disassociate the child from the console.
871 * The same is true for CREATE_NO_WINDOW.
872 * Go figure!
874 flags = 0;
875 CloseHandle(cons);
877 memset(&si, 0, sizeof(si));
878 si.cb = sizeof(si);
879 si.dwFlags = STARTF_USESTDHANDLES;
880 si.hStdInput = (HANDLE) _get_osfhandle(fhin);
881 si.hStdOutput = (HANDLE) _get_osfhandle(fhout);
882 si.hStdError = (HANDLE) _get_osfhandle(fherr);
884 /* concatenate argv, quoting args as we go */
885 strbuf_init(&args, 0);
886 if (prepend_cmd) {
887 char *quoted = (char *)quote_arg(cmd);
888 strbuf_addstr(&args, quoted);
889 if (quoted != cmd)
890 free(quoted);
892 for (; *argv; argv++) {
893 char *quoted = (char *)quote_arg(*argv);
894 if (*args.buf)
895 strbuf_addch(&args, ' ');
896 strbuf_addstr(&args, quoted);
897 if (quoted != *argv)
898 free(quoted);
901 if (env) {
902 int count = 0;
903 char **e, **sorted_env;
905 for (e = env; *e; e++)
906 count++;
908 /* environment must be sorted */
909 sorted_env = xmalloc(sizeof(*sorted_env) * (count + 1));
910 memcpy(sorted_env, env, sizeof(*sorted_env) * (count + 1));
911 qsort(sorted_env, count, sizeof(*sorted_env), env_compare);
913 strbuf_init(&envblk, 0);
914 for (e = sorted_env; *e; e++) {
915 strbuf_addstr(&envblk, *e);
916 strbuf_addch(&envblk, '\0');
918 free(sorted_env);
921 memset(&pi, 0, sizeof(pi));
922 ret = CreateProcess(cmd, args.buf, NULL, NULL, TRUE, flags,
923 env ? envblk.buf : NULL, dir, &si, &pi);
925 if (env)
926 strbuf_release(&envblk);
927 strbuf_release(&args);
929 if (!ret) {
930 errno = ENOENT;
931 return -1;
933 CloseHandle(pi.hThread);
934 return (pid_t)pi.hProcess;
937 static pid_t mingw_spawnve(const char *cmd, const char **argv, char **env,
938 int prepend_cmd)
940 return mingw_spawnve_fd(cmd, argv, env, NULL, prepend_cmd, 0, 1, 2);
943 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
944 const char *dir,
945 int fhin, int fhout, int fherr)
947 pid_t pid;
948 char **path = get_path_split();
949 char *prog = path_lookup(cmd, path, 0);
951 if (!prog) {
952 errno = ENOENT;
953 pid = -1;
955 else {
956 const char *interpr = parse_interpreter(prog);
958 if (interpr) {
959 const char *argv0 = argv[0];
960 char *iprog = path_lookup(interpr, path, 1);
961 argv[0] = prog;
962 if (!iprog) {
963 errno = ENOENT;
964 pid = -1;
966 else {
967 pid = mingw_spawnve_fd(iprog, argv, env, dir, 1,
968 fhin, fhout, fherr);
969 free(iprog);
971 argv[0] = argv0;
973 else
974 pid = mingw_spawnve_fd(prog, argv, env, dir, 0,
975 fhin, fhout, fherr);
976 free(prog);
978 free_path_split(path);
979 return pid;
982 static int try_shell_exec(const char *cmd, char *const *argv, char **env)
984 const char *interpr = parse_interpreter(cmd);
985 char **path;
986 char *prog;
987 int pid = 0;
989 if (!interpr)
990 return 0;
991 path = get_path_split();
992 prog = path_lookup(interpr, path, 1);
993 if (prog) {
994 int argc = 0;
995 const char **argv2;
996 while (argv[argc]) argc++;
997 argv2 = xmalloc(sizeof(*argv) * (argc+1));
998 argv2[0] = (char *)cmd; /* full path to the script file */
999 memcpy(&argv2[1], &argv[1], sizeof(*argv) * argc);
1000 pid = mingw_spawnve(prog, argv2, env, 1);
1001 if (pid >= 0) {
1002 int status;
1003 if (waitpid(pid, &status, 0) < 0)
1004 status = 255;
1005 exit(status);
1007 pid = 1; /* indicate that we tried but failed */
1008 free(prog);
1009 free(argv2);
1011 free_path_split(path);
1012 return pid;
1015 static void mingw_execve(const char *cmd, char *const *argv, char *const *env)
1017 /* check if git_command is a shell script */
1018 if (!try_shell_exec(cmd, argv, (char **)env)) {
1019 int pid, status;
1021 pid = mingw_spawnve(cmd, (const char **)argv, (char **)env, 0);
1022 if (pid < 0)
1023 return;
1024 if (waitpid(pid, &status, 0) < 0)
1025 status = 255;
1026 exit(status);
1030 void mingw_execvp(const char *cmd, char *const *argv)
1032 char **path = get_path_split();
1033 char *prog = path_lookup(cmd, path, 0);
1035 if (prog) {
1036 mingw_execve(prog, argv, environ);
1037 free(prog);
1038 } else
1039 errno = ENOENT;
1041 free_path_split(path);
1044 static char **copy_environ(void)
1046 char **env;
1047 int i = 0;
1048 while (environ[i])
1049 i++;
1050 env = xmalloc((i+1)*sizeof(*env));
1051 for (i = 0; environ[i]; i++)
1052 env[i] = xstrdup(environ[i]);
1053 env[i] = NULL;
1054 return env;
1057 void free_environ(char **env)
1059 int i;
1060 for (i = 0; env[i]; i++)
1061 free(env[i]);
1062 free(env);
1065 static int lookup_env(char **env, const char *name, size_t nmln)
1067 int i;
1069 for (i = 0; env[i]; i++) {
1070 if (0 == strncmp(env[i], name, nmln)
1071 && '=' == env[i][nmln])
1072 /* matches */
1073 return i;
1075 return -1;
1079 * If name contains '=', then sets the variable, otherwise it unsets it
1081 static char **env_setenv(char **env, const char *name)
1083 char *eq = strchrnul(name, '=');
1084 int i = lookup_env(env, name, eq-name);
1086 if (i < 0) {
1087 if (*eq) {
1088 for (i = 0; env[i]; i++)
1090 env = xrealloc(env, (i+2)*sizeof(*env));
1091 env[i] = xstrdup(name);
1092 env[i+1] = NULL;
1095 else {
1096 free(env[i]);
1097 if (*eq)
1098 env[i] = xstrdup(name);
1099 else
1100 for (; env[i]; i++)
1101 env[i] = env[i+1];
1103 return env;
1107 * Copies global environ and adjusts variables as specified by vars.
1109 char **make_augmented_environ(const char *const *vars)
1111 char **env = copy_environ();
1113 while (*vars)
1114 env = env_setenv(env, *vars++);
1115 return env;
1119 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1120 * that service contains a numerical port, or that it it is null. It
1121 * does a simple search using gethostbyname, and returns one IPv4 host
1122 * if one was found.
1124 static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
1125 const struct addrinfo *hints,
1126 struct addrinfo **res)
1128 struct hostent *h = gethostbyname(node);
1129 struct addrinfo *ai;
1130 struct sockaddr_in *sin;
1132 if (!h)
1133 return WSAGetLastError();
1135 ai = xmalloc(sizeof(struct addrinfo));
1136 *res = ai;
1137 ai->ai_flags = 0;
1138 ai->ai_family = AF_INET;
1139 ai->ai_socktype = hints->ai_socktype;
1140 switch (hints->ai_socktype) {
1141 case SOCK_STREAM:
1142 ai->ai_protocol = IPPROTO_TCP;
1143 break;
1144 case SOCK_DGRAM:
1145 ai->ai_protocol = IPPROTO_UDP;
1146 break;
1147 default:
1148 ai->ai_protocol = 0;
1149 break;
1151 ai->ai_addrlen = sizeof(struct sockaddr_in);
1152 ai->ai_canonname = strdup(h->h_name);
1154 sin = xmalloc(ai->ai_addrlen);
1155 memset(sin, 0, ai->ai_addrlen);
1156 sin->sin_family = AF_INET;
1157 if (service)
1158 sin->sin_port = htons(atoi(service));
1159 sin->sin_addr = *(struct in_addr *)h->h_addr;
1160 ai->ai_addr = (struct sockaddr *)sin;
1161 ai->ai_next = 0;
1162 return 0;
1165 static void WSAAPI freeaddrinfo_stub(struct addrinfo *res)
1167 free(res->ai_canonname);
1168 free(res->ai_addr);
1169 free(res);
1172 static int WSAAPI getnameinfo_stub(const struct sockaddr *sa, socklen_t salen,
1173 char *host, DWORD hostlen,
1174 char *serv, DWORD servlen, int flags)
1176 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
1177 if (sa->sa_family != AF_INET)
1178 return EAI_FAMILY;
1179 if (!host && !serv)
1180 return EAI_NONAME;
1182 if (host && hostlen > 0) {
1183 struct hostent *ent = NULL;
1184 if (!(flags & NI_NUMERICHOST))
1185 ent = gethostbyaddr((const char *)&sin->sin_addr,
1186 sizeof(sin->sin_addr), AF_INET);
1188 if (ent)
1189 snprintf(host, hostlen, "%s", ent->h_name);
1190 else if (flags & NI_NAMEREQD)
1191 return EAI_NONAME;
1192 else
1193 snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
1196 if (serv && servlen > 0) {
1197 struct servent *ent = NULL;
1198 if (!(flags & NI_NUMERICSERV))
1199 ent = getservbyport(sin->sin_port,
1200 flags & NI_DGRAM ? "udp" : "tcp");
1202 if (ent)
1203 snprintf(serv, servlen, "%s", ent->s_name);
1204 else
1205 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
1208 return 0;
1211 static HMODULE ipv6_dll = NULL;
1212 static void (WSAAPI *ipv6_freeaddrinfo)(struct addrinfo *res);
1213 static int (WSAAPI *ipv6_getaddrinfo)(const char *node, const char *service,
1214 const struct addrinfo *hints,
1215 struct addrinfo **res);
1216 static int (WSAAPI *ipv6_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
1217 char *host, DWORD hostlen,
1218 char *serv, DWORD servlen, int flags);
1220 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1221 * don't need to try to load that one dynamically.
1224 static void socket_cleanup(void)
1226 WSACleanup();
1227 if (ipv6_dll)
1228 FreeLibrary(ipv6_dll);
1229 ipv6_dll = NULL;
1230 ipv6_freeaddrinfo = freeaddrinfo_stub;
1231 ipv6_getaddrinfo = getaddrinfo_stub;
1232 ipv6_getnameinfo = getnameinfo_stub;
1235 static void ensure_socket_initialization(void)
1237 WSADATA wsa;
1238 static int initialized = 0;
1239 const char *libraries[] = { "ws2_32.dll", "wship6.dll", NULL };
1240 const char **name;
1242 if (initialized)
1243 return;
1245 if (WSAStartup(MAKEWORD(2,2), &wsa))
1246 die("unable to initialize winsock subsystem, error %d",
1247 WSAGetLastError());
1249 for (name = libraries; *name; name++) {
1250 ipv6_dll = LoadLibrary(*name);
1251 if (!ipv6_dll)
1252 continue;
1254 ipv6_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *))
1255 GetProcAddress(ipv6_dll, "freeaddrinfo");
1256 ipv6_getaddrinfo = (int (WSAAPI *)(const char *, const char *,
1257 const struct addrinfo *,
1258 struct addrinfo **))
1259 GetProcAddress(ipv6_dll, "getaddrinfo");
1260 ipv6_getnameinfo = (int (WSAAPI *)(const struct sockaddr *,
1261 socklen_t, char *, DWORD,
1262 char *, DWORD, int))
1263 GetProcAddress(ipv6_dll, "getnameinfo");
1264 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1265 FreeLibrary(ipv6_dll);
1266 ipv6_dll = NULL;
1267 } else
1268 break;
1270 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1271 ipv6_freeaddrinfo = freeaddrinfo_stub;
1272 ipv6_getaddrinfo = getaddrinfo_stub;
1273 ipv6_getnameinfo = getnameinfo_stub;
1276 atexit(socket_cleanup);
1277 initialized = 1;
1280 #undef gethostbyname
1281 struct hostent *mingw_gethostbyname(const char *host)
1283 ensure_socket_initialization();
1284 return gethostbyname(host);
1287 void mingw_freeaddrinfo(struct addrinfo *res)
1289 ipv6_freeaddrinfo(res);
1292 int mingw_getaddrinfo(const char *node, const char *service,
1293 const struct addrinfo *hints, struct addrinfo **res)
1295 ensure_socket_initialization();
1296 return ipv6_getaddrinfo(node, service, hints, res);
1299 int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
1300 char *host, DWORD hostlen, char *serv, DWORD servlen,
1301 int flags)
1303 ensure_socket_initialization();
1304 return ipv6_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
1307 int mingw_socket(int domain, int type, int protocol)
1309 int sockfd;
1310 SOCKET s = WSASocket(domain, type, protocol, NULL, 0, 0);
1311 if (s == INVALID_SOCKET) {
1313 * WSAGetLastError() values are regular BSD error codes
1314 * biased by WSABASEERR.
1315 * However, strerror() does not know about networking
1316 * specific errors, which are values beginning at 38 or so.
1317 * Therefore, we choose to leave the biased error code
1318 * in errno so that _if_ someone looks up the code somewhere,
1319 * then it is at least the number that are usually listed.
1321 errno = WSAGetLastError();
1322 return -1;
1324 /* convert into a file descriptor */
1325 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
1326 closesocket(s);
1327 return error("unable to make a socket file descriptor: %s",
1328 strerror(errno));
1330 return sockfd;
1333 #undef connect
1334 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
1336 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1337 return connect(s, sa, sz);
1340 #undef rename
1341 int mingw_rename(const char *pold, const char *pnew)
1343 DWORD attrs, gle;
1344 int tries = 0;
1347 * Try native rename() first to get errno right.
1348 * It is based on MoveFile(), which cannot overwrite existing files.
1350 if (!rename(pold, pnew))
1351 return 0;
1352 if (errno != EEXIST)
1353 return -1;
1354 repeat:
1355 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1356 return 0;
1357 /* TODO: translate more errors */
1358 gle = GetLastError();
1359 if (gle == ERROR_ACCESS_DENIED &&
1360 (attrs = GetFileAttributes(pnew)) != INVALID_FILE_ATTRIBUTES) {
1361 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
1362 errno = EISDIR;
1363 return -1;
1365 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
1366 SetFileAttributes(pnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
1367 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1368 return 0;
1369 gle = GetLastError();
1370 /* revert file attributes on failure */
1371 SetFileAttributes(pnew, attrs);
1374 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
1376 * We assume that some other process had the source or
1377 * destination file open at the wrong moment and retry.
1378 * In order to give the other process a higher chance to
1379 * complete its operation, we give up our time slice now.
1380 * If we have to retry again, we do sleep a bit.
1382 Sleep(delay[tries]);
1383 tries++;
1384 goto repeat;
1386 if (gle == ERROR_ACCESS_DENIED &&
1387 ask_user_yes_no("Rename from '%s' to '%s' failed. "
1388 "Should I try again?", pold, pnew))
1389 goto repeat;
1391 errno = EACCES;
1392 return -1;
1396 * Note that this doesn't return the actual pagesize, but
1397 * the allocation granularity. If future Windows specific git code
1398 * needs the real getpagesize function, we need to find another solution.
1400 int mingw_getpagesize(void)
1402 SYSTEM_INFO si;
1403 GetSystemInfo(&si);
1404 return si.dwAllocationGranularity;
1407 struct passwd *getpwuid(int uid)
1409 static char user_name[100];
1410 static struct passwd p;
1412 DWORD len = sizeof(user_name);
1413 if (!GetUserName(user_name, &len))
1414 return NULL;
1415 p.pw_name = user_name;
1416 p.pw_gecos = "unknown";
1417 p.pw_dir = NULL;
1418 return &p;
1421 static HANDLE timer_event;
1422 static HANDLE timer_thread;
1423 static int timer_interval;
1424 static int one_shot;
1425 static sig_handler_t timer_fn = SIG_DFL;
1427 /* The timer works like this:
1428 * The thread, ticktack(), is a trivial routine that most of the time
1429 * only waits to receive the signal to terminate. The main thread tells
1430 * the thread to terminate by setting the timer_event to the signalled
1431 * state.
1432 * But ticktack() interrupts the wait state after the timer's interval
1433 * length to call the signal handler.
1436 static unsigned __stdcall ticktack(void *dummy)
1438 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
1439 if (timer_fn == SIG_DFL)
1440 die("Alarm");
1441 if (timer_fn != SIG_IGN)
1442 timer_fn(SIGALRM);
1443 if (one_shot)
1444 break;
1446 return 0;
1449 static int start_timer_thread(void)
1451 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1452 if (timer_event) {
1453 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
1454 if (!timer_thread )
1455 return errno = ENOMEM,
1456 error("cannot start timer thread");
1457 } else
1458 return errno = ENOMEM,
1459 error("cannot allocate resources for timer");
1460 return 0;
1463 static void stop_timer_thread(void)
1465 if (timer_event)
1466 SetEvent(timer_event); /* tell thread to terminate */
1467 if (timer_thread) {
1468 int rc = WaitForSingleObject(timer_thread, 1000);
1469 if (rc == WAIT_TIMEOUT)
1470 error("timer thread did not terminate timely");
1471 else if (rc != WAIT_OBJECT_0)
1472 error("waiting for timer thread failed: %lu",
1473 GetLastError());
1474 CloseHandle(timer_thread);
1476 if (timer_event)
1477 CloseHandle(timer_event);
1478 timer_event = NULL;
1479 timer_thread = NULL;
1482 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
1484 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
1487 int setitimer(int type, struct itimerval *in, struct itimerval *out)
1489 static const struct timeval zero;
1490 static int atexit_done;
1492 if (out != NULL)
1493 return errno = EINVAL,
1494 error("setitimer param 3 != NULL not implemented");
1495 if (!is_timeval_eq(&in->it_interval, &zero) &&
1496 !is_timeval_eq(&in->it_interval, &in->it_value))
1497 return errno = EINVAL,
1498 error("setitimer: it_interval must be zero or eq it_value");
1500 if (timer_thread)
1501 stop_timer_thread();
1503 if (is_timeval_eq(&in->it_value, &zero) &&
1504 is_timeval_eq(&in->it_interval, &zero))
1505 return 0;
1507 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
1508 one_shot = is_timeval_eq(&in->it_interval, &zero);
1509 if (!atexit_done) {
1510 atexit(stop_timer_thread);
1511 atexit_done = 1;
1513 return start_timer_thread();
1516 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
1518 if (sig != SIGALRM)
1519 return errno = EINVAL,
1520 error("sigaction only implemented for SIGALRM");
1521 if (out != NULL)
1522 return errno = EINVAL,
1523 error("sigaction: param 3 != NULL not implemented");
1525 timer_fn = in->sa_handler;
1526 return 0;
1529 #undef signal
1530 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
1532 sig_handler_t old = timer_fn;
1533 if (sig != SIGALRM)
1534 return signal(sig, handler);
1535 timer_fn = handler;
1536 return old;
1539 static const char *make_backslash_path(const char *path)
1541 static char buf[PATH_MAX + 1];
1542 char *c;
1544 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
1545 die("Too long path: %.*s", 60, path);
1547 for (c = buf; *c; c++) {
1548 if (*c == '/')
1549 *c = '\\';
1551 return buf;
1554 void mingw_open_html(const char *unixpath)
1556 const char *htmlpath = make_backslash_path(unixpath);
1557 typedef HINSTANCE (WINAPI *T)(HWND, const char *,
1558 const char *, const char *, const char *, INT);
1559 T ShellExecute;
1560 HMODULE shell32;
1562 shell32 = LoadLibrary("shell32.dll");
1563 if (!shell32)
1564 die("cannot load shell32.dll");
1565 ShellExecute = (T)GetProcAddress(shell32, "ShellExecuteA");
1566 if (!ShellExecute)
1567 die("cannot run browser");
1569 printf("Launching default browser to display HTML ...\n");
1570 ShellExecute(NULL, "open", htmlpath, NULL, "\\", 0);
1572 FreeLibrary(shell32);
1575 int link(const char *oldpath, const char *newpath)
1577 typedef BOOL (WINAPI *T)(const char*, const char*, LPSECURITY_ATTRIBUTES);
1578 static T create_hard_link = NULL;
1579 if (!create_hard_link) {
1580 create_hard_link = (T) GetProcAddress(
1581 GetModuleHandle("kernel32.dll"), "CreateHardLinkA");
1582 if (!create_hard_link)
1583 create_hard_link = (T)-1;
1585 if (create_hard_link == (T)-1) {
1586 errno = ENOSYS;
1587 return -1;
1589 if (!create_hard_link(newpath, oldpath, NULL)) {
1590 errno = err_win_to_posix(GetLastError());
1591 return -1;
1593 return 0;
1596 char *getpass(const char *prompt)
1598 struct strbuf buf = STRBUF_INIT;
1600 fputs(prompt, stderr);
1601 for (;;) {
1602 char c = _getch();
1603 if (c == '\r' || c == '\n')
1604 break;
1605 strbuf_addch(&buf, c);
1607 fputs("\n", stderr);
1608 return strbuf_detach(&buf, NULL);
1611 #ifndef NO_MINGW_REPLACE_READDIR
1612 /* MinGW readdir implementation to avoid extra lstats for Git */
1613 struct mingw_DIR
1615 struct _finddata_t dd_dta; /* disk transfer area for this dir */
1616 struct mingw_dirent dd_dir; /* Our own implementation, including d_type */
1617 long dd_handle; /* _findnext handle */
1618 int dd_stat; /* 0 = next entry to read is first entry, -1 = off the end, positive = 0 based index of next entry */
1619 char dd_name[1]; /* given path for dir with search pattern (struct is extended) */
1622 struct dirent *mingw_readdir(DIR *dir)
1624 WIN32_FIND_DATAA buf;
1625 HANDLE handle;
1626 struct mingw_DIR *mdir = (struct mingw_DIR*)dir;
1628 if (!dir->dd_handle) {
1629 errno = EBADF; /* No set_errno for mingw */
1630 return NULL;
1633 if (dir->dd_handle == (long)INVALID_HANDLE_VALUE && dir->dd_stat == 0)
1635 DWORD lasterr;
1636 handle = FindFirstFileA(dir->dd_name, &buf);
1637 lasterr = GetLastError();
1638 dir->dd_handle = (long)handle;
1639 if (handle == INVALID_HANDLE_VALUE && (lasterr != ERROR_NO_MORE_FILES)) {
1640 errno = err_win_to_posix(lasterr);
1641 return NULL;
1643 } else if (dir->dd_handle == (long)INVALID_HANDLE_VALUE) {
1644 return NULL;
1645 } else if (!FindNextFileA((HANDLE)dir->dd_handle, &buf)) {
1646 DWORD lasterr = GetLastError();
1647 FindClose((HANDLE)dir->dd_handle);
1648 dir->dd_handle = (long)INVALID_HANDLE_VALUE;
1649 /* POSIX says you shouldn't set errno when readdir can't
1650 find any more files; so, if another error we leave it set. */
1651 if (lasterr != ERROR_NO_MORE_FILES)
1652 errno = err_win_to_posix(lasterr);
1653 return NULL;
1656 /* We get here if `buf' contains valid data. */
1657 strcpy(dir->dd_dir.d_name, buf.cFileName);
1658 ++dir->dd_stat;
1660 /* Set file type, based on WIN32_FIND_DATA */
1661 mdir->dd_dir.d_type = 0;
1662 if (buf.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
1663 mdir->dd_dir.d_type |= DT_DIR;
1664 else
1665 mdir->dd_dir.d_type |= DT_REG;
1667 return (struct dirent*)&dir->dd_dir;
1669 #endif // !NO_MINGW_REPLACE_READDIR