t5407: Fix line-ending dependency in post-rewrite.args
[git/dscho.git] / compat / mingw.c
blob8eb6dd5761e5fc7af1c6cbc68cfbfbcd7f7fa080
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <conio.h>
4 #include "../strbuf.h"
5 #include "../run-command.h"
6 #include "../cache.h"
8 static const int delay[] = { 0, 1, 10, 20, 40 };
9 unsigned int _CRT_fmode = _O_BINARY;
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 inline int is_file_in_use_error(DWORD errcode)
126 switch (errcode) {
127 case ERROR_SHARING_VIOLATION:
128 case ERROR_ACCESS_DENIED:
129 return 1;
132 return 0;
135 static int read_yes_no_answer(void)
137 char answer[1024];
139 if (fgets(answer, sizeof(answer), stdin)) {
140 size_t answer_len = strlen(answer);
141 int got_full_line = 0, c;
143 /* remove the newline */
144 if (answer_len >= 2 && answer[answer_len-2] == '\r') {
145 answer[answer_len-2] = '\0';
146 got_full_line = 1;
147 } else if (answer_len >= 1 && answer[answer_len-1] == '\n') {
148 answer[answer_len-1] = '\0';
149 got_full_line = 1;
151 /* flush the buffer in case we did not get the full line */
152 if (!got_full_line)
153 while ((c = getchar()) != EOF && c != '\n')
155 } else
156 /* we could not read, return the
157 * default answer which is no */
158 return 0;
160 if (tolower(answer[0]) == 'y' && !answer[1])
161 return 1;
162 if (!strncasecmp(answer, "yes", sizeof(answer)))
163 return 1;
164 if (tolower(answer[0]) == 'n' && !answer[1])
165 return 0;
166 if (!strncasecmp(answer, "no", sizeof(answer)))
167 return 0;
169 /* did not find an answer we understand */
170 return -1;
173 static int ask_yes_no_if_possible(const char *format, ...)
175 char question[4096];
176 const char *retry_hook[] = { NULL, NULL, NULL };
177 va_list args;
179 va_start(args, format);
180 vsnprintf(question, sizeof(question), format, args);
181 va_end(args);
183 if ((retry_hook[0] = mingw_getenv("GIT_ASK_YESNO"))) {
184 retry_hook[1] = question;
185 return !run_command_v_opt(retry_hook, 0);
188 if (!isatty(_fileno(stdin)) || !isatty(_fileno(stderr)))
189 return 0;
191 while (1) {
192 int answer;
193 fprintf(stderr, "%s (y/n) ", question);
195 if ((answer = read_yes_no_answer()) >= 0)
196 return answer;
198 fprintf(stderr, "Sorry, I did not understand your answer. "
199 "Please type 'y' or 'n'\n");
203 #undef unlink
204 int mingw_unlink(const char *pathname)
206 int ret, tries = 0;
208 /* read-only files cannot be removed */
209 chmod(pathname, 0666);
210 while ((ret = unlink(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
211 if (!is_file_in_use_error(GetLastError()))
212 break;
214 * We assume that some other process had the source or
215 * destination file open at the wrong moment and retry.
216 * In order to give the other process a higher chance to
217 * complete its operation, we give up our time slice now.
218 * If we have to retry again, we do sleep a bit.
220 Sleep(delay[tries]);
221 tries++;
223 while (ret == -1 && is_file_in_use_error(GetLastError()) &&
224 ask_yes_no_if_possible("Unlink of file '%s' failed. "
225 "Should I try again?", pathname))
226 ret = unlink(pathname);
227 return ret;
230 static int is_dir_empty(const char *path)
232 struct strbuf buf = STRBUF_INIT;
233 WIN32_FIND_DATAA findbuf;
234 HANDLE handle;
236 strbuf_addf(&buf, "%s\\*", path);
237 handle = FindFirstFileA(buf.buf, &findbuf);
238 if (handle == INVALID_HANDLE_VALUE) {
239 strbuf_release(&buf);
240 return GetLastError() == ERROR_NO_MORE_FILES;
243 while (!wcscmp(findbuf.cFileName, L".") ||
244 !wcscmp(findbuf.cFileName, L".."))
245 if (!FindNextFileW(handle, &findbuf)) {
246 DWORD err = GetLastError();
247 FindClose(handle);
248 return err == ERROR_NO_MORE_FILES;
250 FindClose(handle);
251 strbuf_release(&buf);
252 return 0;
255 #undef rmdir
256 int mingw_rmdir(const char *pathname)
258 int ret, tries = 0;
260 while ((ret = rmdir(pathname)) == -1 && tries < ARRAY_SIZE(delay)) {
261 if (!is_file_in_use_error(GetLastError()))
262 break;
263 if (!is_dir_empty(pathname)) {
264 errno = ENOTEMPTY;
265 break;
268 * We assume that some other process had the source or
269 * destination file open at the wrong moment and retry.
270 * In order to give the other process a higher chance to
271 * complete its operation, we give up our time slice now.
272 * If we have to retry again, we do sleep a bit.
274 Sleep(delay[tries]);
275 tries++;
277 while (ret == -1 && is_file_in_use_error(GetLastError()) &&
278 ask_yes_no_if_possible("Deletion of directory '%s' failed. "
279 "Should I try again?", pathname))
280 ret = rmdir(pathname);
281 return ret;
284 static int make_hidden(const char *path)
286 DWORD attribs = GetFileAttributes(path);
287 if (SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN | attribs))
288 return 0;
289 errno = err_win_to_posix(GetLastError());
290 return -1;
293 void mingw_mark_as_git_dir(const char *dir)
295 if (hide_dotfiles != HIDE_DOTFILES_FALSE && !is_bare_repository() &&
296 make_hidden(dir))
297 warning("Failed to make '%s' hidden", dir);
298 git_config_set("core.hideDotFiles",
299 hide_dotfiles == HIDE_DOTFILES_FALSE ? "false" :
300 (hide_dotfiles == HIDE_DOTFILES_DOTGITONLY ?
301 "dotGitOnly" : "true"));
304 #undef mkdir
305 int mingw_mkdir(const char *path, int mode)
307 int ret = mkdir(path);
308 if (!ret && hide_dotfiles == HIDE_DOTFILES_TRUE) {
310 * In Windows a file or dir starting with a dot is not
311 * automatically hidden. So lets mark it as hidden when
312 * such a directory is created.
314 const char *start = basename((char*)path);
315 if (*start == '.')
316 return make_hidden(path);
318 return ret;
321 #undef open
322 int mingw_open (const char *filename, int oflags, ...)
324 va_list args;
325 unsigned mode;
326 int fd;
328 va_start(args, oflags);
329 mode = va_arg(args, int);
330 va_end(args);
332 if (filename && !strcmp(filename, "/dev/null"))
333 filename = "nul";
335 fd = open(filename, oflags, mode);
337 if (fd < 0 && (oflags & O_CREAT) && errno == EACCES) {
338 DWORD attrs = GetFileAttributes(filename);
339 if (attrs != INVALID_FILE_ATTRIBUTES && (attrs & FILE_ATTRIBUTE_DIRECTORY))
340 errno = EISDIR;
342 if ((oflags & O_CREAT) && fd >= 0 &&
343 hide_dotfiles == HIDE_DOTFILES_TRUE) {
345 * In Windows a file or dir starting with a dot is not
346 * automatically hidden. So lets mark it as hidden when
347 * such a file is created.
349 const char *start = basename((char*)filename);
350 if (*start == '.' && make_hidden(filename))
351 warning("Could not mark '%s' as hidden.", filename);
353 return fd;
356 #undef write
357 ssize_t mingw_write(int fd, const void *buf, size_t count)
360 * While write() calls to a file on a local disk are translated
361 * into WriteFile() calls with a maximum size of 64KB on Windows
362 * XP and 256KB on Vista, no such cap is placed on writes to
363 * files over the network on Windows XP. Unfortunately, there
364 * seems to be a limit of 32MB-28KB on X64 and 64MB-32KB on x86;
365 * bigger writes fail on Windows XP.
366 * So we cap to a nice 31MB here to avoid write failures over
367 * the net without changing the number of WriteFile() calls in
368 * the local case.
370 return write(fd, buf, min(count, 31 * 1024 * 1024));
373 #undef fopen
374 FILE *mingw_fopen (const char *filename, const char *otype)
376 int hide = 0;
377 FILE *file;
378 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
379 basename((char*)filename)[0] == '.')
380 hide = access(filename, F_OK);
381 if (filename && !strcmp(filename, "/dev/null"))
382 filename = "nul";
383 file = fopen(filename, otype);
384 if (file && hide && make_hidden(filename))
385 warning("Could not mark '%s' as hidden.", filename);
386 return file;
389 #undef freopen
390 FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream)
392 int hide = 0;
393 FILE *file;
394 if (hide_dotfiles == HIDE_DOTFILES_TRUE &&
395 basename((char*)filename)[0] == '.')
396 hide = access(filename, F_OK);
397 if (filename && !strcmp(filename, "/dev/null"))
398 filename = "nul";
399 file = freopen(filename, otype, stream);
400 if (file && hide && make_hidden(filename))
401 warning("Could not mark '%s' as hidden.", filename);
402 return file;
406 * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC.
407 * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch.
409 static inline long long filetime_to_hnsec(const FILETIME *ft)
411 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
412 /* Windows to Unix Epoch conversion */
413 return winTime - 116444736000000000LL;
416 static inline time_t filetime_to_time_t(const FILETIME *ft)
418 return (time_t)(filetime_to_hnsec(ft) / 10000000);
421 /* We keep the do_lstat code in a separate function to avoid recursion.
422 * When a path ends with a slash, the stat will fail with ENOENT. In
423 * this case, we strip the trailing slashes and stat again.
425 * If follow is true then act like stat() and report on the link
426 * target. Otherwise report on the link itself.
428 static int do_lstat(int follow, const char *file_name, struct stat *buf)
430 int err;
431 WIN32_FILE_ATTRIBUTE_DATA fdata;
433 if (!(err = get_file_attr(file_name, &fdata))) {
434 buf->st_ino = 0;
435 buf->st_gid = 0;
436 buf->st_uid = 0;
437 buf->st_nlink = 1;
438 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
439 buf->st_size = fdata.nFileSizeLow |
440 (((off_t)fdata.nFileSizeHigh)<<32);
441 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
442 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
443 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
444 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
445 if (fdata.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
446 WIN32_FIND_DATAA findbuf;
447 HANDLE handle = FindFirstFileA(file_name, &findbuf);
448 if (handle != INVALID_HANDLE_VALUE) {
449 if ((findbuf.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) &&
450 (findbuf.dwReserved0 == IO_REPARSE_TAG_SYMLINK)) {
451 if (follow) {
452 char buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
453 buf->st_size = readlink(file_name, buffer, MAXIMUM_REPARSE_DATA_BUFFER_SIZE);
454 } else {
455 buf->st_mode = S_IFLNK;
457 buf->st_mode |= S_IREAD;
458 if (!(findbuf.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
459 buf->st_mode |= S_IWRITE;
461 FindClose(handle);
464 return 0;
466 errno = err;
467 return -1;
470 /* We provide our own lstat/fstat functions, since the provided
471 * lstat/fstat functions are so slow. These stat functions are
472 * tailored for Git's usage (read: fast), and are not meant to be
473 * complete. Note that Git stat()s are redirected to mingw_lstat()
474 * too, since Windows doesn't really handle symlinks that well.
476 static int do_stat_internal(int follow, const char *file_name, struct stat *buf)
478 int namelen;
479 static char alt_name[PATH_MAX];
481 if (!do_lstat(follow, file_name, buf))
482 return 0;
484 /* if file_name ended in a '/', Windows returned ENOENT;
485 * try again without trailing slashes
487 if (errno != ENOENT)
488 return -1;
490 namelen = strlen(file_name);
491 if (namelen && file_name[namelen-1] != '/')
492 return -1;
493 while (namelen && file_name[namelen-1] == '/')
494 --namelen;
495 if (!namelen || namelen >= PATH_MAX)
496 return -1;
498 memcpy(alt_name, file_name, namelen);
499 alt_name[namelen] = 0;
500 return do_lstat(follow, alt_name, buf);
503 int mingw_lstat(const char *file_name, struct stat *buf)
505 return do_stat_internal(0, file_name, buf);
507 int mingw_stat(const char *file_name, struct stat *buf)
509 return do_stat_internal(1, file_name, buf);
512 #undef fstat
513 int mingw_fstat(int fd, struct stat *buf)
515 HANDLE fh = (HANDLE)_get_osfhandle(fd);
516 BY_HANDLE_FILE_INFORMATION fdata;
518 if (fh == INVALID_HANDLE_VALUE) {
519 errno = EBADF;
520 return -1;
522 /* direct non-file handles to MS's fstat() */
523 if (GetFileType(fh) != FILE_TYPE_DISK)
524 return _fstati64(fd, buf);
526 if (GetFileInformationByHandle(fh, &fdata)) {
527 buf->st_ino = 0;
528 buf->st_gid = 0;
529 buf->st_uid = 0;
530 buf->st_nlink = 1;
531 buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
532 buf->st_size = fdata.nFileSizeLow |
533 (((off_t)fdata.nFileSizeHigh)<<32);
534 buf->st_dev = buf->st_rdev = 0; /* not used by Git */
535 buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
536 buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
537 buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
538 return 0;
540 errno = EBADF;
541 return -1;
544 static inline void time_t_to_filetime(time_t t, FILETIME *ft)
546 long long winTime = t * 10000000LL + 116444736000000000LL;
547 ft->dwLowDateTime = winTime;
548 ft->dwHighDateTime = winTime >> 32;
551 int mingw_utime (const char *file_name, const struct utimbuf *times)
553 FILETIME mft, aft;
554 int fh, rc;
556 /* must have write permission */
557 DWORD attrs = GetFileAttributes(file_name);
558 if (attrs != INVALID_FILE_ATTRIBUTES &&
559 (attrs & FILE_ATTRIBUTE_READONLY)) {
560 /* ignore errors here; open() will report them */
561 SetFileAttributes(file_name, attrs & ~FILE_ATTRIBUTE_READONLY);
564 if ((fh = open(file_name, O_RDWR | O_BINARY)) < 0) {
565 rc = -1;
566 goto revert_attrs;
569 if (times) {
570 time_t_to_filetime(times->modtime, &mft);
571 time_t_to_filetime(times->actime, &aft);
572 } else {
573 GetSystemTimeAsFileTime(&mft);
574 aft = mft;
576 if (!SetFileTime((HANDLE)_get_osfhandle(fh), NULL, &aft, &mft)) {
577 errno = EINVAL;
578 rc = -1;
579 } else
580 rc = 0;
581 close(fh);
583 revert_attrs:
584 if (attrs != INVALID_FILE_ATTRIBUTES &&
585 (attrs & FILE_ATTRIBUTE_READONLY)) {
586 /* ignore errors again */
587 SetFileAttributes(file_name, attrs);
589 return rc;
592 unsigned int sleep (unsigned int seconds)
594 Sleep(seconds*1000);
595 return 0;
598 int mkstemp(char *template)
600 char *filename = mktemp(template);
601 if (filename == NULL)
602 return -1;
603 return open(filename, O_RDWR | O_CREAT, 0600);
606 int gettimeofday(struct timeval *tv, void *tz)
608 FILETIME ft;
609 long long hnsec;
611 GetSystemTimeAsFileTime(&ft);
612 hnsec = filetime_to_hnsec(&ft);
613 tv->tv_sec = hnsec / 10000000;
614 tv->tv_usec = (hnsec % 10000000) / 10;
615 return 0;
618 int pipe(int filedes[2])
620 HANDLE h[2];
622 /* this creates non-inheritable handles */
623 if (!CreatePipe(&h[0], &h[1], NULL, 8192)) {
624 errno = err_win_to_posix(GetLastError());
625 return -1;
627 filedes[0] = _open_osfhandle((int)h[0], O_NOINHERIT);
628 if (filedes[0] < 0) {
629 CloseHandle(h[0]);
630 CloseHandle(h[1]);
631 return -1;
633 filedes[1] = _open_osfhandle((int)h[1], O_NOINHERIT);
634 if (filedes[0] < 0) {
635 close(filedes[0]);
636 CloseHandle(h[1]);
637 return -1;
639 return 0;
642 struct tm *gmtime_r(const time_t *timep, struct tm *result)
644 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
645 memcpy(result, gmtime(timep), sizeof(struct tm));
646 return result;
649 struct tm *localtime_r(const time_t *timep, struct tm *result)
651 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
652 memcpy(result, localtime(timep), sizeof(struct tm));
653 return result;
656 #undef getcwd
657 char *mingw_getcwd(char *pointer, int len)
659 int i;
660 char *ret = getcwd(pointer, len);
661 if (!ret)
662 return ret;
663 for (i = 0; pointer[i]; i++)
664 if (pointer[i] == '\\')
665 pointer[i] = '/';
666 return ret;
670 * See http://msdn2.microsoft.com/en-us/library/17w5ykft(vs.71).aspx
671 * (Parsing C++ Command-Line Arguments)
673 static const char *quote_arg(const char *arg)
675 /* count chars to quote */
676 int len = 0, n = 0;
677 int force_quotes = 0;
678 char *q, *d;
679 const char *p = arg;
680 if (!*p) force_quotes = 1;
681 while (*p) {
682 if (isspace(*p) || *p == '*' || *p == '?' || *p == '{' || *p == '\'')
683 force_quotes = 1;
684 else if (*p == '"')
685 n++;
686 else if (*p == '\\') {
687 int count = 0;
688 while (*p == '\\') {
689 count++;
690 p++;
691 len++;
693 if (*p == '"')
694 n += count*2 + 1;
695 continue;
697 len++;
698 p++;
700 if (!force_quotes && n == 0)
701 return arg;
703 /* insert \ where necessary */
704 d = q = xmalloc(len+n+3);
705 *d++ = '"';
706 while (*arg) {
707 if (*arg == '"')
708 *d++ = '\\';
709 else if (*arg == '\\') {
710 int count = 0;
711 while (*arg == '\\') {
712 count++;
713 *d++ = *arg++;
715 if (*arg == '"') {
716 while (count-- > 0)
717 *d++ = '\\';
718 *d++ = '\\';
721 *d++ = *arg++;
723 *d++ = '"';
724 *d++ = 0;
725 return q;
728 static const char *parse_interpreter(const char *cmd)
730 static char buf[100];
731 char *p, *opt;
732 int n, fd;
734 /* don't even try a .exe */
735 n = strlen(cmd);
736 if (n >= 4 && !strcasecmp(cmd+n-4, ".exe"))
737 return NULL;
739 fd = open(cmd, O_RDONLY);
740 if (fd < 0)
741 return NULL;
742 n = read(fd, buf, sizeof(buf)-1);
743 close(fd);
744 if (n < 4) /* at least '#!/x' and not error */
745 return NULL;
747 if (buf[0] != '#' || buf[1] != '!')
748 return NULL;
749 buf[n] = '\0';
750 p = buf + strcspn(buf, "\r\n");
751 if (!*p)
752 return NULL;
754 *p = '\0';
755 if (!(p = strrchr(buf+2, '/')) && !(p = strrchr(buf+2, '\\')))
756 return NULL;
757 /* strip options */
758 if ((opt = strchr(p+1, ' ')))
759 *opt = '\0';
760 return p+1;
764 * Splits the PATH into parts.
766 static char **get_path_split(void)
768 char *p, **path, *envpath = mingw_getenv("PATH");
769 int i, n = 0;
771 if (!envpath || !*envpath)
772 return NULL;
774 envpath = xstrdup(envpath);
775 p = envpath;
776 while (p) {
777 char *dir = p;
778 p = strchr(p, ';');
779 if (p) *p++ = '\0';
780 if (*dir) { /* not earlier, catches series of ; */
781 ++n;
784 if (!n)
785 return NULL;
787 path = xmalloc((n+1)*sizeof(char *));
788 p = envpath;
789 i = 0;
790 do {
791 if (*p)
792 path[i++] = xstrdup(p);
793 p = p+strlen(p)+1;
794 } while (i < n);
795 path[i] = NULL;
797 free(envpath);
799 return path;
802 static void free_path_split(char **path)
804 char **p = path;
806 if (!path)
807 return;
809 while (*p)
810 free(*p++);
811 free(path);
815 * exe_only means that we only want to detect .exe files, but not scripts
816 * (which do not have an extension)
818 static char *lookup_prog(const char *dir, const char *cmd, int isexe, int exe_only)
820 char path[MAX_PATH];
821 snprintf(path, sizeof(path), "%s/%s.exe", dir, cmd);
823 if (!isexe && access(path, F_OK) == 0)
824 return xstrdup(path);
825 path[strlen(path)-4] = '\0';
826 if ((!exe_only || isexe) && access(path, F_OK) == 0)
827 if (!(GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY))
828 return xstrdup(path);
829 return NULL;
833 * Determines the absolute path of cmd using the split path in path.
834 * If cmd contains a slash or backslash, no lookup is performed.
836 static char *path_lookup(const char *cmd, char **path, int exe_only)
838 char *prog = NULL;
839 int len = strlen(cmd);
840 int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
842 if (strchr(cmd, '/') || strchr(cmd, '\\'))
843 prog = xstrdup(cmd);
845 while (!prog && *path)
846 prog = lookup_prog(*path++, cmd, isexe, exe_only);
848 return prog;
851 static int env_compare(const void *a, const void *b)
853 char *const *ea = a;
854 char *const *eb = b;
855 return strcasecmp(*ea, *eb);
858 struct pinfo_t {
859 struct pinfo_t *next;
860 pid_t pid;
861 HANDLE proc;
862 } pinfo_t;
863 struct pinfo_t *pinfo = NULL;
864 CRITICAL_SECTION pinfo_cs;
866 static pid_t mingw_spawnve_fd(const char *cmd, const char **argv, char **env,
867 const char *dir,
868 int prepend_cmd, int fhin, int fhout, int fherr)
870 STARTUPINFO si;
871 PROCESS_INFORMATION pi;
872 struct strbuf envblk, args;
873 unsigned flags;
874 BOOL ret;
876 /* Determine whether or not we are associated to a console */
877 HANDLE cons = CreateFile("CONOUT$", GENERIC_WRITE,
878 FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
879 FILE_ATTRIBUTE_NORMAL, NULL);
880 if (cons == INVALID_HANDLE_VALUE) {
881 /* There is no console associated with this process.
882 * Since the child is a console process, Windows
883 * would normally create a console window. But
884 * since we'll be redirecting std streams, we do
885 * not need the console.
886 * It is necessary to use DETACHED_PROCESS
887 * instead of CREATE_NO_WINDOW to make ssh
888 * recognize that it has no console.
890 flags = DETACHED_PROCESS;
891 } else {
892 /* There is already a console. If we specified
893 * DETACHED_PROCESS here, too, Windows would
894 * disassociate the child from the console.
895 * The same is true for CREATE_NO_WINDOW.
896 * Go figure!
898 flags = 0;
899 CloseHandle(cons);
901 memset(&si, 0, sizeof(si));
902 si.cb = sizeof(si);
903 si.dwFlags = STARTF_USESTDHANDLES;
904 si.hStdInput = (HANDLE) _get_osfhandle(fhin);
905 si.hStdOutput = (HANDLE) _get_osfhandle(fhout);
906 si.hStdError = (HANDLE) _get_osfhandle(fherr);
908 /* concatenate argv, quoting args as we go */
909 strbuf_init(&args, 0);
910 if (prepend_cmd) {
911 char *quoted = (char *)quote_arg(cmd);
912 strbuf_addstr(&args, quoted);
913 if (quoted != cmd)
914 free(quoted);
916 for (; *argv; argv++) {
917 char *quoted = (char *)quote_arg(*argv);
918 if (*args.buf)
919 strbuf_addch(&args, ' ');
920 strbuf_addstr(&args, quoted);
921 if (quoted != *argv)
922 free(quoted);
925 if (env) {
926 int count = 0;
927 char **e, **sorted_env;
929 for (e = env; *e; e++)
930 count++;
932 /* environment must be sorted */
933 sorted_env = xmalloc(sizeof(*sorted_env) * (count + 1));
934 memcpy(sorted_env, env, sizeof(*sorted_env) * (count + 1));
935 qsort(sorted_env, count, sizeof(*sorted_env), env_compare);
937 strbuf_init(&envblk, 0);
938 for (e = sorted_env; *e; e++) {
939 strbuf_addstr(&envblk, *e);
940 strbuf_addch(&envblk, '\0');
942 free(sorted_env);
945 memset(&pi, 0, sizeof(pi));
946 ret = CreateProcess(cmd, args.buf, NULL, NULL, TRUE, flags,
947 env ? envblk.buf : NULL, dir, &si, &pi);
949 if (env)
950 strbuf_release(&envblk);
951 strbuf_release(&args);
953 if (!ret) {
954 errno = ENOENT;
955 return -1;
957 CloseHandle(pi.hThread);
960 * The process ID is the human-readable identifier of the process
961 * that we want to present in log and error messages. The handle
962 * is not useful for this purpose. But we cannot close it, either,
963 * because it is not possible to turn a process ID into a process
964 * handle after the process terminated.
965 * Keep the handle in a list for waitpid.
967 EnterCriticalSection(&pinfo_cs);
969 struct pinfo_t *info = xmalloc(sizeof(struct pinfo_t));
970 info->pid = pi.dwProcessId;
971 info->proc = pi.hProcess;
972 info->next = pinfo;
973 pinfo = info;
975 LeaveCriticalSection(&pinfo_cs);
977 return (pid_t)pi.dwProcessId;
980 static pid_t mingw_spawnve(const char *cmd, const char **argv, char **env,
981 int prepend_cmd)
983 return mingw_spawnve_fd(cmd, argv, env, NULL, prepend_cmd, 0, 1, 2);
986 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
987 const char *dir,
988 int fhin, int fhout, int fherr)
990 pid_t pid;
991 char **path = get_path_split();
992 char *prog = path_lookup(cmd, path, 0);
994 if (!prog) {
995 errno = ENOENT;
996 pid = -1;
998 else {
999 const char *interpr = parse_interpreter(prog);
1001 if (interpr) {
1002 const char *argv0 = argv[0];
1003 char *iprog = path_lookup(interpr, path, 1);
1004 argv[0] = prog;
1005 if (!iprog) {
1006 errno = ENOENT;
1007 pid = -1;
1009 else {
1010 pid = mingw_spawnve_fd(iprog, argv, env, dir, 1,
1011 fhin, fhout, fherr);
1012 free(iprog);
1014 argv[0] = argv0;
1016 else
1017 pid = mingw_spawnve_fd(prog, argv, env, dir, 0,
1018 fhin, fhout, fherr);
1019 free(prog);
1021 free_path_split(path);
1022 return pid;
1025 static int try_shell_exec(const char *cmd, char *const *argv, char **env)
1027 const char *interpr = parse_interpreter(cmd);
1028 char **path;
1029 char *prog;
1030 int pid = 0;
1032 if (!interpr)
1033 return 0;
1034 path = get_path_split();
1035 prog = path_lookup(interpr, path, 1);
1036 if (prog) {
1037 int argc = 0;
1038 const char **argv2;
1039 while (argv[argc]) argc++;
1040 argv2 = xmalloc(sizeof(*argv) * (argc+1));
1041 argv2[0] = (char *)cmd; /* full path to the script file */
1042 memcpy(&argv2[1], &argv[1], sizeof(*argv) * argc);
1043 pid = mingw_spawnve(prog, argv2, env, 1);
1044 if (pid >= 0) {
1045 int status;
1046 if (waitpid(pid, &status, 0) < 0)
1047 status = 255;
1048 exit(status);
1050 pid = 1; /* indicate that we tried but failed */
1051 free(prog);
1052 free(argv2);
1054 free_path_split(path);
1055 return pid;
1058 static void mingw_execve(const char *cmd, char *const *argv, char *const *env)
1060 /* check if git_command is a shell script */
1061 if (!try_shell_exec(cmd, argv, (char **)env)) {
1062 int pid, status;
1064 pid = mingw_spawnve(cmd, (const char **)argv, (char **)env, 0);
1065 if (pid < 0)
1066 return;
1067 if (waitpid(pid, &status, 0) < 0)
1068 status = 255;
1069 exit(status);
1073 void mingw_execvp(const char *cmd, char *const *argv)
1075 char **path = get_path_split();
1076 char *prog = path_lookup(cmd, path, 0);
1078 if (prog) {
1079 mingw_execve(prog, argv, environ);
1080 free(prog);
1081 } else
1082 errno = ENOENT;
1084 free_path_split(path);
1087 void mingw_execv(const char *cmd, char *const *argv)
1089 mingw_execve(cmd, argv, environ);
1092 int mingw_kill(pid_t pid, int sig)
1094 if (pid > 0 && sig == SIGTERM) {
1095 HANDLE h = OpenProcess(PROCESS_TERMINATE, FALSE, pid);
1097 if (TerminateProcess(h, -1)) {
1098 CloseHandle(h);
1099 return 0;
1102 errno = err_win_to_posix(GetLastError());
1103 CloseHandle(h);
1104 return -1;
1107 errno = EINVAL;
1108 return -1;
1111 static char **copy_environ(void)
1113 char **env;
1114 int i = 0;
1115 while (environ[i])
1116 i++;
1117 env = xmalloc((i+1)*sizeof(*env));
1118 for (i = 0; environ[i]; i++)
1119 env[i] = xstrdup(environ[i]);
1120 env[i] = NULL;
1121 return env;
1124 void free_environ(char **env)
1126 int i;
1127 for (i = 0; env[i]; i++)
1128 free(env[i]);
1129 free(env);
1132 static int lookup_env(char **env, const char *name, size_t nmln)
1134 int i;
1136 for (i = 0; env[i]; i++) {
1137 if (0 == strncmp(env[i], name, nmln)
1138 && '=' == env[i][nmln])
1139 /* matches */
1140 return i;
1142 return -1;
1146 * If name contains '=', then sets the variable, otherwise it unsets it
1148 static char **env_setenv(char **env, const char *name)
1150 char *eq = strchrnul(name, '=');
1151 int i = lookup_env(env, name, eq-name);
1153 if (i < 0) {
1154 if (*eq) {
1155 for (i = 0; env[i]; i++)
1157 env = xrealloc(env, (i+2)*sizeof(*env));
1158 env[i] = xstrdup(name);
1159 env[i+1] = NULL;
1162 else {
1163 free(env[i]);
1164 if (*eq)
1165 env[i] = xstrdup(name);
1166 else
1167 for (; env[i]; i++)
1168 env[i] = env[i+1];
1170 return env;
1174 * Copies global environ and adjusts variables as specified by vars.
1176 char **make_augmented_environ(const char *const *vars)
1178 char **env = copy_environ();
1180 while (*vars)
1181 env = env_setenv(env, *vars++);
1182 return env;
1185 #undef getenv
1188 * The system's getenv looks up the name in a case-insensitive manner.
1189 * This version tries a case-sensitive lookup and falls back to
1190 * case-insensitive if nothing was found. This is necessary because,
1191 * as a prominent example, CMD sets 'Path', but not 'PATH'.
1192 * Warning: not thread-safe.
1194 static char *getenv_cs(const char *name)
1196 size_t len = strlen(name);
1197 int i = lookup_env(environ, name, len);
1198 if (i >= 0)
1199 return environ[i] + len + 1; /* skip past name and '=' */
1200 return getenv(name);
1203 char *mingw_getenv(const char *name)
1205 char *result = getenv_cs(name);
1206 if (!result && !strcmp(name, "TMPDIR")) {
1207 /* on Windows it is TMP and TEMP */
1208 result = getenv_cs("TMP");
1209 if (!result)
1210 result = getenv_cs("TEMP");
1212 else if (!result && !strcmp(name, "TERM")) {
1213 /* simulate TERM to enable auto-color (see color.c) */
1214 result = "winansi";
1216 return result;
1220 * Note, this isn't a complete replacement for getaddrinfo. It assumes
1221 * that service contains a numerical port, or that it is null. It
1222 * does a simple search using gethostbyname, and returns one IPv4 host
1223 * if one was found.
1225 static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
1226 const struct addrinfo *hints,
1227 struct addrinfo **res)
1229 struct hostent *h = NULL;
1230 struct addrinfo *ai;
1231 struct sockaddr_in *sin;
1233 if (node) {
1234 h = gethostbyname(node);
1235 if (!h)
1236 return WSAGetLastError();
1239 ai = xmalloc(sizeof(struct addrinfo));
1240 *res = ai;
1241 ai->ai_flags = 0;
1242 ai->ai_family = AF_INET;
1243 ai->ai_socktype = hints ? hints->ai_socktype : 0;
1244 switch (ai->ai_socktype) {
1245 case SOCK_STREAM:
1246 ai->ai_protocol = IPPROTO_TCP;
1247 break;
1248 case SOCK_DGRAM:
1249 ai->ai_protocol = IPPROTO_UDP;
1250 break;
1251 default:
1252 ai->ai_protocol = 0;
1253 break;
1255 ai->ai_addrlen = sizeof(struct sockaddr_in);
1256 if (hints && (hints->ai_flags & AI_CANONNAME))
1257 ai->ai_canonname = h ? xstrdup(h->h_name) : NULL;
1258 else
1259 ai->ai_canonname = NULL;
1261 sin = xmalloc(ai->ai_addrlen);
1262 memset(sin, 0, ai->ai_addrlen);
1263 sin->sin_family = AF_INET;
1264 /* Note: getaddrinfo is supposed to allow service to be a string,
1265 * which should be looked up using getservbyname. This is
1266 * currently not implemented */
1267 if (service)
1268 sin->sin_port = htons(atoi(service));
1269 if (h)
1270 sin->sin_addr = *(struct in_addr *)h->h_addr;
1271 else if (hints && (hints->ai_flags & AI_PASSIVE))
1272 sin->sin_addr.s_addr = INADDR_ANY;
1273 else
1274 sin->sin_addr.s_addr = INADDR_LOOPBACK;
1275 ai->ai_addr = (struct sockaddr *)sin;
1276 ai->ai_next = 0;
1277 return 0;
1280 static void WSAAPI freeaddrinfo_stub(struct addrinfo *res)
1282 free(res->ai_canonname);
1283 free(res->ai_addr);
1284 free(res);
1287 static int WSAAPI getnameinfo_stub(const struct sockaddr *sa, socklen_t salen,
1288 char *host, DWORD hostlen,
1289 char *serv, DWORD servlen, int flags)
1291 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
1292 if (sa->sa_family != AF_INET)
1293 return EAI_FAMILY;
1294 if (!host && !serv)
1295 return EAI_NONAME;
1297 if (host && hostlen > 0) {
1298 struct hostent *ent = NULL;
1299 if (!(flags & NI_NUMERICHOST))
1300 ent = gethostbyaddr((const char *)&sin->sin_addr,
1301 sizeof(sin->sin_addr), AF_INET);
1303 if (ent)
1304 snprintf(host, hostlen, "%s", ent->h_name);
1305 else if (flags & NI_NAMEREQD)
1306 return EAI_NONAME;
1307 else
1308 snprintf(host, hostlen, "%s", inet_ntoa(sin->sin_addr));
1311 if (serv && servlen > 0) {
1312 struct servent *ent = NULL;
1313 if (!(flags & NI_NUMERICSERV))
1314 ent = getservbyport(sin->sin_port,
1315 flags & NI_DGRAM ? "udp" : "tcp");
1317 if (ent)
1318 snprintf(serv, servlen, "%s", ent->s_name);
1319 else
1320 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
1323 return 0;
1326 static HMODULE ipv6_dll = NULL;
1327 static void (WSAAPI *ipv6_freeaddrinfo)(struct addrinfo *res);
1328 static int (WSAAPI *ipv6_getaddrinfo)(const char *node, const char *service,
1329 const struct addrinfo *hints,
1330 struct addrinfo **res);
1331 static int (WSAAPI *ipv6_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
1332 char *host, DWORD hostlen,
1333 char *serv, DWORD servlen, int flags);
1335 * gai_strerror is an inline function in the ws2tcpip.h header, so we
1336 * don't need to try to load that one dynamically.
1339 static void socket_cleanup(void)
1341 WSACleanup();
1342 if (ipv6_dll)
1343 FreeLibrary(ipv6_dll);
1344 ipv6_dll = NULL;
1345 ipv6_freeaddrinfo = freeaddrinfo_stub;
1346 ipv6_getaddrinfo = getaddrinfo_stub;
1347 ipv6_getnameinfo = getnameinfo_stub;
1350 static void ensure_socket_initialization(void)
1352 WSADATA wsa;
1353 static int initialized = 0;
1354 const char *libraries[] = { "ws2_32.dll", "wship6.dll", NULL };
1355 const char **name;
1357 if (initialized)
1358 return;
1360 if (WSAStartup(MAKEWORD(2,2), &wsa))
1361 die("unable to initialize winsock subsystem, error %d",
1362 WSAGetLastError());
1364 for (name = libraries; *name; name++) {
1365 ipv6_dll = LoadLibrary(*name);
1366 if (!ipv6_dll)
1367 continue;
1369 ipv6_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *))
1370 GetProcAddress(ipv6_dll, "freeaddrinfo");
1371 ipv6_getaddrinfo = (int (WSAAPI *)(const char *, const char *,
1372 const struct addrinfo *,
1373 struct addrinfo **))
1374 GetProcAddress(ipv6_dll, "getaddrinfo");
1375 ipv6_getnameinfo = (int (WSAAPI *)(const struct sockaddr *,
1376 socklen_t, char *, DWORD,
1377 char *, DWORD, int))
1378 GetProcAddress(ipv6_dll, "getnameinfo");
1379 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1380 FreeLibrary(ipv6_dll);
1381 ipv6_dll = NULL;
1382 } else
1383 break;
1385 if (!ipv6_freeaddrinfo || !ipv6_getaddrinfo || !ipv6_getnameinfo) {
1386 ipv6_freeaddrinfo = freeaddrinfo_stub;
1387 ipv6_getaddrinfo = getaddrinfo_stub;
1388 ipv6_getnameinfo = getnameinfo_stub;
1391 atexit(socket_cleanup);
1392 initialized = 1;
1395 #undef gethostname
1396 int mingw_gethostname(char *name, int namelen)
1398 ensure_socket_initialization();
1399 return gethostname(name, namelen);
1402 #undef gethostbyname
1403 struct hostent *mingw_gethostbyname(const char *host)
1405 ensure_socket_initialization();
1406 return gethostbyname(host);
1409 void mingw_freeaddrinfo(struct addrinfo *res)
1411 ipv6_freeaddrinfo(res);
1414 int mingw_getaddrinfo(const char *node, const char *service,
1415 const struct addrinfo *hints, struct addrinfo **res)
1417 ensure_socket_initialization();
1418 return ipv6_getaddrinfo(node, service, hints, res);
1421 int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
1422 char *host, DWORD hostlen, char *serv, DWORD servlen,
1423 int flags)
1425 ensure_socket_initialization();
1426 return ipv6_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
1429 int mingw_socket(int domain, int type, int protocol)
1431 int sockfd;
1432 SOCKET s;
1434 ensure_socket_initialization();
1435 s = WSASocket(domain, type, protocol, NULL, 0, 0);
1436 if (s == INVALID_SOCKET) {
1438 * WSAGetLastError() values are regular BSD error codes
1439 * biased by WSABASEERR.
1440 * However, strerror() does not know about networking
1441 * specific errors, which are values beginning at 38 or so.
1442 * Therefore, we choose to leave the biased error code
1443 * in errno so that _if_ someone looks up the code somewhere,
1444 * then it is at least the number that are usually listed.
1446 errno = WSAGetLastError();
1447 return -1;
1449 /* convert into a file descriptor */
1450 if ((sockfd = _open_osfhandle(s, O_RDWR|O_BINARY)) < 0) {
1451 closesocket(s);
1452 return error("unable to make a socket file descriptor: %s",
1453 strerror(errno));
1455 return sockfd;
1458 #undef connect
1459 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz)
1461 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1462 return connect(s, sa, sz);
1465 #undef bind
1466 int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz)
1468 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1469 return bind(s, sa, sz);
1472 #undef setsockopt
1473 int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen)
1475 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1476 return setsockopt(s, lvl, optname, (const char*)optval, optlen);
1479 #undef shutdown
1480 int mingw_shutdown(int sockfd, int how)
1482 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1483 return shutdown(s, how);
1486 #undef listen
1487 int mingw_listen(int sockfd, int backlog)
1489 SOCKET s = (SOCKET)_get_osfhandle(sockfd);
1490 return listen(s, backlog);
1493 #undef accept
1494 int mingw_accept(int sockfd1, struct sockaddr *sa, socklen_t *sz)
1496 int sockfd2;
1498 SOCKET s1 = (SOCKET)_get_osfhandle(sockfd1);
1499 SOCKET s2 = accept(s1, sa, sz);
1501 /* convert into a file descriptor */
1502 if ((sockfd2 = _open_osfhandle(s2, O_RDWR|O_BINARY)) < 0) {
1503 int err = errno;
1504 closesocket(s2);
1505 return error("unable to make a socket file descriptor: %s",
1506 strerror(err));
1508 return sockfd2;
1511 #undef rename
1512 int mingw_rename(const char *pold, const char *pnew)
1514 DWORD attrs, gle;
1515 int tries = 0;
1518 * Try native rename() first to get errno right.
1519 * It is based on MoveFile(), which cannot overwrite existing files.
1521 if (!rename(pold, pnew))
1522 return 0;
1523 if (errno != EEXIST)
1524 return -1;
1525 repeat:
1526 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1527 return 0;
1528 /* TODO: translate more errors */
1529 gle = GetLastError();
1530 if (gle == ERROR_ACCESS_DENIED &&
1531 (attrs = GetFileAttributes(pnew)) != INVALID_FILE_ATTRIBUTES) {
1532 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
1533 errno = EISDIR;
1534 return -1;
1536 if ((attrs & FILE_ATTRIBUTE_READONLY) &&
1537 SetFileAttributes(pnew, attrs & ~FILE_ATTRIBUTE_READONLY)) {
1538 if (MoveFileEx(pold, pnew, MOVEFILE_REPLACE_EXISTING))
1539 return 0;
1540 gle = GetLastError();
1541 /* revert file attributes on failure */
1542 SetFileAttributes(pnew, attrs);
1545 if (tries < ARRAY_SIZE(delay) && gle == ERROR_ACCESS_DENIED) {
1547 * We assume that some other process had the source or
1548 * destination file open at the wrong moment and retry.
1549 * In order to give the other process a higher chance to
1550 * complete its operation, we give up our time slice now.
1551 * If we have to retry again, we do sleep a bit.
1553 Sleep(delay[tries]);
1554 tries++;
1555 goto repeat;
1557 if (gle == ERROR_ACCESS_DENIED &&
1558 ask_yes_no_if_possible("Rename from '%s' to '%s' failed. "
1559 "Should I try again?", pold, pnew))
1560 goto repeat;
1562 errno = EACCES;
1563 return -1;
1567 * Note that this doesn't return the actual pagesize, but
1568 * the allocation granularity. If future Windows specific git code
1569 * needs the real getpagesize function, we need to find another solution.
1571 int mingw_getpagesize(void)
1573 SYSTEM_INFO si;
1574 GetSystemInfo(&si);
1575 return si.dwAllocationGranularity;
1578 struct passwd *getpwuid(int uid)
1580 static char user_name[100];
1581 static struct passwd p;
1583 DWORD len = sizeof(user_name);
1584 if (!GetUserName(user_name, &len))
1585 return NULL;
1586 p.pw_name = user_name;
1587 p.pw_gecos = "unknown";
1588 p.pw_dir = NULL;
1589 return &p;
1592 static HANDLE timer_event;
1593 static HANDLE timer_thread;
1594 static int timer_interval;
1595 static int one_shot;
1596 static sig_handler_t timer_fn = SIG_DFL;
1598 /* The timer works like this:
1599 * The thread, ticktack(), is a trivial routine that most of the time
1600 * only waits to receive the signal to terminate. The main thread tells
1601 * the thread to terminate by setting the timer_event to the signalled
1602 * state.
1603 * But ticktack() interrupts the wait state after the timer's interval
1604 * length to call the signal handler.
1607 static unsigned __stdcall ticktack(void *dummy)
1609 while (WaitForSingleObject(timer_event, timer_interval) == WAIT_TIMEOUT) {
1610 if (timer_fn == SIG_DFL)
1611 die("Alarm");
1612 if (timer_fn != SIG_IGN)
1613 timer_fn(SIGALRM);
1614 if (one_shot)
1615 break;
1617 return 0;
1620 static int start_timer_thread(void)
1622 timer_event = CreateEvent(NULL, FALSE, FALSE, NULL);
1623 if (timer_event) {
1624 timer_thread = (HANDLE) _beginthreadex(NULL, 0, ticktack, NULL, 0, NULL);
1625 if (!timer_thread )
1626 return errno = ENOMEM,
1627 error("cannot start timer thread");
1628 } else
1629 return errno = ENOMEM,
1630 error("cannot allocate resources for timer");
1631 return 0;
1634 static void stop_timer_thread(void)
1636 if (timer_event)
1637 SetEvent(timer_event); /* tell thread to terminate */
1638 if (timer_thread) {
1639 int rc = WaitForSingleObject(timer_thread, 1000);
1640 if (rc == WAIT_TIMEOUT)
1641 error("timer thread did not terminate timely");
1642 else if (rc != WAIT_OBJECT_0)
1643 error("waiting for timer thread failed: %lu",
1644 GetLastError());
1645 CloseHandle(timer_thread);
1647 if (timer_event)
1648 CloseHandle(timer_event);
1649 timer_event = NULL;
1650 timer_thread = NULL;
1653 static inline int is_timeval_eq(const struct timeval *i1, const struct timeval *i2)
1655 return i1->tv_sec == i2->tv_sec && i1->tv_usec == i2->tv_usec;
1658 int setitimer(int type, struct itimerval *in, struct itimerval *out)
1660 static const struct timeval zero;
1661 static int atexit_done;
1663 if (out != NULL)
1664 return errno = EINVAL,
1665 error("setitimer param 3 != NULL not implemented");
1666 if (!is_timeval_eq(&in->it_interval, &zero) &&
1667 !is_timeval_eq(&in->it_interval, &in->it_value))
1668 return errno = EINVAL,
1669 error("setitimer: it_interval must be zero or eq it_value");
1671 if (timer_thread)
1672 stop_timer_thread();
1674 if (is_timeval_eq(&in->it_value, &zero) &&
1675 is_timeval_eq(&in->it_interval, &zero))
1676 return 0;
1678 timer_interval = in->it_value.tv_sec * 1000 + in->it_value.tv_usec / 1000;
1679 one_shot = is_timeval_eq(&in->it_interval, &zero);
1680 if (!atexit_done) {
1681 atexit(stop_timer_thread);
1682 atexit_done = 1;
1684 return start_timer_thread();
1687 int sigaction(int sig, struct sigaction *in, struct sigaction *out)
1689 if (sig != SIGALRM)
1690 return errno = EINVAL,
1691 error("sigaction only implemented for SIGALRM");
1692 if (out != NULL)
1693 return errno = EINVAL,
1694 error("sigaction: param 3 != NULL not implemented");
1696 timer_fn = in->sa_handler;
1697 return 0;
1700 #undef signal
1701 sig_handler_t mingw_signal(int sig, sig_handler_t handler)
1703 sig_handler_t old = timer_fn;
1704 if (sig != SIGALRM)
1705 return signal(sig, handler);
1706 timer_fn = handler;
1707 return old;
1710 static const char *make_backslash_path(const char *path)
1712 static char buf[PATH_MAX + 1];
1713 char *c;
1715 if (strlcpy(buf, path, PATH_MAX) >= PATH_MAX)
1716 die("Too long path: %.*s", 60, path);
1718 for (c = buf; *c; c++) {
1719 if (*c == '/')
1720 *c = '\\';
1722 return buf;
1725 void mingw_open_html(const char *unixpath)
1727 const char *htmlpath = make_backslash_path(unixpath);
1728 typedef HINSTANCE (WINAPI *T)(HWND, const char *,
1729 const char *, const char *, const char *, INT);
1730 T ShellExecute;
1731 HMODULE shell32;
1732 int r;
1734 shell32 = LoadLibrary("shell32.dll");
1735 if (!shell32)
1736 die("cannot load shell32.dll");
1737 ShellExecute = (T)GetProcAddress(shell32, "ShellExecuteA");
1738 if (!ShellExecute)
1739 die("cannot run browser");
1741 printf("Launching default browser to display HTML ...\n");
1742 r = (int)ShellExecute(NULL, "open", htmlpath, NULL, "\\", SW_SHOWNORMAL);
1743 FreeLibrary(shell32);
1744 /* see the MSDN documentation referring to the result codes here */
1745 if (r <= 32) {
1746 die("failed to launch browser for %.*s", MAX_PATH, unixpath);
1750 int link(const char *oldpath, const char *newpath)
1752 typedef BOOL (WINAPI *T)(const char*, const char*, LPSECURITY_ATTRIBUTES);
1753 static T create_hard_link = NULL;
1754 if (!create_hard_link) {
1755 create_hard_link = (T) GetProcAddress(
1756 GetModuleHandle("kernel32.dll"), "CreateHardLinkA");
1757 if (!create_hard_link)
1758 create_hard_link = (T)-1;
1760 if (create_hard_link == (T)-1) {
1761 errno = ENOSYS;
1762 return -1;
1764 if (!create_hard_link(newpath, oldpath, NULL)) {
1765 errno = err_win_to_posix(GetLastError());
1766 return -1;
1768 return 0;
1771 char *getpass(const char *prompt)
1773 struct strbuf buf = STRBUF_INIT;
1775 fputs(prompt, stderr);
1776 for (;;) {
1777 char c = _getch();
1778 if (c == '\r' || c == '\n')
1779 break;
1780 strbuf_addch(&buf, c);
1782 fputs("\n", stderr);
1783 return strbuf_detach(&buf, NULL);
1786 pid_t waitpid(pid_t pid, int *status, int options)
1788 HANDLE h = OpenProcess(SYNCHRONIZE | PROCESS_QUERY_INFORMATION,
1789 FALSE, pid);
1790 if (!h) {
1791 errno = ECHILD;
1792 return -1;
1795 if (pid > 0 && options & WNOHANG) {
1796 if (WAIT_OBJECT_0 != WaitForSingleObject(h, 0)) {
1797 CloseHandle(h);
1798 return 0;
1800 options &= ~WNOHANG;
1803 if (options == 0) {
1804 struct pinfo_t **ppinfo;
1805 if (WaitForSingleObject(h, INFINITE) != WAIT_OBJECT_0) {
1806 CloseHandle(h);
1807 return 0;
1810 if (status)
1811 GetExitCodeProcess(h, (LPDWORD)status);
1813 EnterCriticalSection(&pinfo_cs);
1815 ppinfo = &pinfo;
1816 while (*ppinfo) {
1817 struct pinfo_t *info = *ppinfo;
1818 if (info->pid == pid) {
1819 CloseHandle(info->proc);
1820 *ppinfo = info->next;
1821 free(info);
1822 break;
1824 ppinfo = &info->next;
1827 LeaveCriticalSection(&pinfo_cs);
1829 CloseHandle(h);
1830 return pid;
1832 CloseHandle(h);
1834 errno = EINVAL;
1835 return -1;
1838 const char *get_windows_home_directory(void)
1840 static const char *home_directory = NULL;
1841 struct strbuf buf = STRBUF_INIT;
1843 if (home_directory)
1844 return home_directory;
1846 home_directory = getenv("HOME");
1847 if (home_directory && *home_directory)
1848 return home_directory;
1850 strbuf_addf(&buf, "%s/%s", getenv("HOMEDRIVE"), getenv("HOMEPATH"));
1851 home_directory = strbuf_detach(&buf, NULL);
1853 return home_directory;
1856 int mingw_offset_1st_component(const char *path)
1858 int offset = 0;
1859 if (has_dos_drive_prefix(path))
1860 offset = 2;
1862 /* unc paths */
1863 else if (is_dir_sep(path[0]) && is_dir_sep(path[1])) {
1865 /* skip server name */
1866 char *pos = strpbrk(path + 2, "\\/");
1867 if (!pos)
1868 return 0; /* Error: malformed unc path */
1870 do {
1871 pos++;
1872 } while (*pos && !is_dir_sep(*pos));
1874 offset = pos - path;
1877 return offset + is_dir_sep(path[offset]);