1 #include "../git-compat-util.h"
3 unsigned int _CRT_fmode
= _O_BINARY
;
6 int mingw_open (const char *filename
, int oflags
, ...)
10 va_start(args
, oflags
);
11 mode
= va_arg(args
, int);
14 if (!strcmp(filename
, "/dev/null"))
16 int fd
= open(filename
, oflags
, mode
);
17 if (fd
< 0 && (oflags
& O_CREAT
) && errno
== EACCES
) {
18 DWORD attrs
= GetFileAttributes(filename
);
19 if (attrs
!= INVALID_FILE_ATTRIBUTES
&& (attrs
& FILE_ATTRIBUTE_DIRECTORY
))
25 unsigned int sleep (unsigned int seconds
)
31 int mkstemp(char *template)
33 char *filename
= mktemp(template);
36 return open(filename
, O_RDWR
| O_CREAT
, 0600);
39 int gettimeofday(struct timeval
*tv
, void *tz
)
44 tm
.tm_year
= st
.wYear
-1900;
45 tm
.tm_mon
= st
.wMonth
-1;
47 tm
.tm_hour
= st
.wHour
;
48 tm
.tm_min
= st
.wMinute
;
49 tm
.tm_sec
= st
.wSecond
;
50 tv
->tv_sec
= tm_to_time_t(&tm
);
53 tv
->tv_usec
= st
.wMilliseconds
*1000;
57 int poll(struct pollfd
*ufds
, unsigned int nfds
, int timeout
)
62 struct tm
*gmtime_r(const time_t *timep
, struct tm
*result
)
64 /* gmtime() in MSVCRT.DLL is thread-safe, but not reentrant */
65 memcpy(result
, gmtime(timep
), sizeof(struct tm
));
69 struct tm
*localtime_r(const time_t *timep
, struct tm
*result
)
71 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
72 memcpy(result
, localtime(timep
), sizeof(struct tm
));
77 char *mingw_getcwd(char *pointer
, int len
)
80 char *ret
= getcwd(pointer
, len
);
83 for (i
= 0; pointer
[i
]; i
++)
84 if (pointer
[i
] == '\\')
89 static const char *parse_interpreter(const char *cmd
)
95 /* don't even try a .exe */
97 if (n
>= 4 && !strcasecmp(cmd
+n
-4, ".exe"))
100 fd
= open(cmd
, O_RDONLY
);
103 n
= read(fd
, buf
, sizeof(buf
)-1);
105 if (n
< 4) /* at least '#!/x' and not error */
108 if (buf
[0] != '#' || buf
[1] != '!')
111 p
= strchr(buf
, '\n');
116 if (!(p
= strrchr(buf
+2, '/')) && !(p
= strrchr(buf
+2, '\\')))
119 if ((opt
= strchr(p
+1, ' ')))
125 * Splits the PATH into parts.
127 static char **get_path_split(void)
129 char *p
, **path
, *envpath
= getenv("PATH");
132 if (!envpath
|| !*envpath
)
135 envpath
= xstrdup(envpath
);
141 if (*dir
) { /* not earlier, catches series of ; */
148 path
= xmalloc((n
+1)*sizeof(char*));
153 path
[i
++] = xstrdup(p
);
163 static void free_path_split(char **path
)
175 * exe_only means that we only want to detect .exe files, but not scripts
176 * (which do not have an extension)
178 static char *lookup_prog(const char *dir
, const char *cmd
, int isexe
, int exe_only
)
181 snprintf(path
, sizeof(path
), "%s/%s.exe", dir
, cmd
);
183 if (!isexe
&& access(path
, F_OK
) == 0)
184 return xstrdup(path
);
185 path
[strlen(path
)-4] = '\0';
186 if ((!exe_only
|| isexe
) && access(path
, F_OK
) == 0)
187 return xstrdup(path
);
192 * Determines the absolute path of cmd using the the split path in path.
193 * If cmd contains a slash or backslash, no lookup is performed.
195 static char *path_lookup(const char *cmd
, char **path
, int exe_only
)
198 int len
= strlen(cmd
);
199 int isexe
= len
>= 4 && !strcasecmp(cmd
+len
-4, ".exe");
201 if (strchr(cmd
, '/') || strchr(cmd
, '\\'))
204 while (!prog
&& *path
)
205 prog
= lookup_prog(*path
++, cmd
, isexe
, exe_only
);
210 static int try_shell_exec(const char *cmd
, char *const *argv
, char **env
)
212 const char *interpr
= parse_interpreter(cmd
);
219 path
= get_path_split();
220 prog
= path_lookup(interpr
, path
, 1);
224 while (argv
[argc
]) argc
++;
225 argv2
= xmalloc(sizeof(*argv
) * (argc
+2));
226 argv2
[0] = (char *)interpr
;
227 argv2
[1] = (char *)cmd
; /* full path to the script file */
228 memcpy(&argv2
[2], &argv
[1], sizeof(*argv
) * argc
);
229 pid
= spawnve(_P_NOWAIT
, prog
, argv2
, (const char **)env
);
232 if (waitpid(pid
, &status
, 0) < 0)
236 pid
= 1; /* indicate that we tried but failed */
240 free_path_split(path
);
244 static void mingw_execve(const char *cmd
, char *const *argv
, char *const *env
)
246 /* check if git_command is a shell script */
247 if (!try_shell_exec(cmd
, argv
, (char **)env
)) {
250 pid
= spawnve(_P_NOWAIT
, cmd
, (const char **)argv
, (const char **)env
);
253 if (waitpid(pid
, &status
, 0) < 0)
259 void mingw_execvp(const char *cmd
, char *const *argv
)
261 char **path
= get_path_split();
262 char *prog
= path_lookup(cmd
, path
, 0);
265 mingw_execve(prog
, argv
, environ
);
270 free_path_split(path
);
274 int mingw_rename(const char *pold
, const char *pnew
)
277 * Try native rename() first to get errno right.
278 * It is based on MoveFile(), which cannot overwrite existing files.
280 if (!rename(pold
, pnew
))
284 if (MoveFileEx(pold
, pnew
, MOVEFILE_REPLACE_EXISTING
))
286 /* TODO: translate more errors */
287 if (GetLastError() == ERROR_ACCESS_DENIED
) {
288 DWORD attrs
= GetFileAttributes(pnew
);
289 if (attrs
!= INVALID_FILE_ATTRIBUTES
&& (attrs
& FILE_ATTRIBUTE_DIRECTORY
)) {
298 struct passwd
*getpwuid(int uid
)
300 static char user_name
[100];
301 static struct passwd p
;
303 DWORD len
= sizeof(user_name
);
304 if (!GetUserName(user_name
, &len
))
306 p
.pw_name
= user_name
;
307 p
.pw_gecos
= "unknown";
312 static HANDLE timer_event
;
313 static HANDLE timer_thread
;
314 static int timer_interval
;
316 static sig_handler_t timer_fn
= SIG_DFL
;
318 /* The timer works like this:
319 * The thread, ticktack(), is a trivial routine that most of the time
320 * only waits to receive the signal to terminate. The main thread tells
321 * the thread to terminate by setting the timer_event to the signalled
323 * But ticktack() interrupts the wait state after the timer's interval
324 * length to call the signal handler.
327 static __stdcall
unsigned ticktack(void *dummy
)
329 while (WaitForSingleObject(timer_event
, timer_interval
) == WAIT_TIMEOUT
) {
330 if (timer_fn
== SIG_DFL
)
332 if (timer_fn
!= SIG_IGN
)
340 static int start_timer_thread(void)
342 timer_event
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
344 timer_thread
= (HANDLE
) _beginthreadex(NULL
, 0, ticktack
, NULL
, 0, NULL
);
346 return errno
= ENOMEM
,
347 error("cannot start timer thread");
349 return errno
= ENOMEM
,
350 error("cannot allocate resources for timer");
354 static void stop_timer_thread(void)
357 SetEvent(timer_event
); /* tell thread to terminate */
359 int rc
= WaitForSingleObject(timer_thread
, 1000);
360 if (rc
== WAIT_TIMEOUT
)
361 error("timer thread did not terminate timely");
362 else if (rc
!= WAIT_OBJECT_0
)
363 error("waiting for timer thread failed: %lu",
365 CloseHandle(timer_thread
);
368 CloseHandle(timer_event
);
373 static inline int is_timeval_eq(const struct timeval
*i1
, const struct timeval
*i2
)
375 return i1
->tv_sec
== i2
->tv_sec
&& i1
->tv_usec
== i2
->tv_usec
;
378 int setitimer(int type
, struct itimerval
*in
, struct itimerval
*out
)
380 static const struct timeval zero
;
381 static int atexit_done
;
384 return errno
= EINVAL
,
385 error("setitimer param 3 != NULL not implemented");
386 if (!is_timeval_eq(&in
->it_interval
, &zero
) &&
387 !is_timeval_eq(&in
->it_interval
, &in
->it_value
))
388 return errno
= EINVAL
,
389 error("setitimer: it_interval must be zero or eq it_value");
394 if (is_timeval_eq(&in
->it_value
, &zero
) &&
395 is_timeval_eq(&in
->it_interval
, &zero
))
398 timer_interval
= in
->it_value
.tv_sec
* 1000 + in
->it_value
.tv_usec
/ 1000;
399 one_shot
= is_timeval_eq(&in
->it_interval
, &zero
);
401 atexit(stop_timer_thread
);
404 return start_timer_thread();
407 int sigaction(int sig
, struct sigaction
*in
, struct sigaction
*out
)
410 return errno
= EINVAL
,
411 error("sigaction only implemented for SIGALRM");
413 return errno
= EINVAL
,
414 error("sigaction: param 3 != NULL not implemented");
416 timer_fn
= in
->sa_handler
;
421 sig_handler_t
mingw_signal(int sig
, sig_handler_t handler
)
424 return signal(sig
, handler
);
425 sig_handler_t old
= timer_fn
;