2007-12-01 21:24:59 +01:00
|
|
|
#include <winsock2.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* things that are not available in header files
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef int pid_t;
|
|
|
|
#define hstrerror strerror
|
|
|
|
|
|
|
|
#define S_IFLNK 0120000 /* Symbolic link */
|
|
|
|
#define S_ISLNK(x) (((x) & S_IFMT) == S_IFLNK)
|
|
|
|
#define S_ISSOCK(x) 0
|
|
|
|
#define S_IRGRP 0
|
|
|
|
#define S_IWGRP 0
|
|
|
|
#define S_IXGRP 0
|
|
|
|
#define S_ISGID 0
|
|
|
|
#define S_IROTH 0
|
|
|
|
#define S_IXOTH 0
|
|
|
|
|
|
|
|
#define WIFEXITED(x) ((unsigned)(x) < 259) /* STILL_ACTIVE */
|
|
|
|
#define WEXITSTATUS(x) ((x) & 0xff)
|
|
|
|
#define WIFSIGNALED(x) ((unsigned)(x) > 259)
|
|
|
|
|
|
|
|
#define SIGKILL 0
|
|
|
|
#define SIGCHLD 0
|
|
|
|
#define SIGPIPE 0
|
|
|
|
#define SIGHUP 0
|
|
|
|
#define SIGQUIT 0
|
|
|
|
#define SIGALRM 100
|
|
|
|
|
|
|
|
#define F_GETFD 1
|
|
|
|
#define F_SETFD 2
|
|
|
|
#define FD_CLOEXEC 0x1
|
|
|
|
|
|
|
|
struct passwd {
|
|
|
|
char *pw_name;
|
|
|
|
char *pw_gecos;
|
|
|
|
char *pw_dir;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pollfd {
|
|
|
|
int fd; /* file descriptor */
|
|
|
|
short events; /* requested events */
|
|
|
|
short revents; /* returned events */
|
|
|
|
};
|
|
|
|
#define POLLIN 1
|
|
|
|
#define POLLHUP 2
|
|
|
|
|
|
|
|
typedef void (__cdecl *sig_handler_t)(int);
|
|
|
|
struct sigaction {
|
|
|
|
sig_handler_t sa_handler;
|
|
|
|
unsigned sa_flags;
|
|
|
|
};
|
|
|
|
#define sigemptyset(x) (void)0
|
|
|
|
#define SA_RESTART 0
|
|
|
|
|
|
|
|
struct itimerval {
|
|
|
|
struct timeval it_value, it_interval;
|
|
|
|
};
|
|
|
|
#define ITIMER_REAL 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* trivial stubs
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline int readlink(const char *path, char *buf, size_t bufsiz)
|
|
|
|
{ errno = ENOSYS; return -1; }
|
|
|
|
static inline int symlink(const char *oldpath, const char *newpath)
|
|
|
|
{ errno = ENOSYS; return -1; }
|
|
|
|
static inline int link(const char *oldpath, const char *newpath)
|
|
|
|
{ errno = ENOSYS; return -1; }
|
|
|
|
static inline int fchmod(int fildes, mode_t mode)
|
|
|
|
{ errno = ENOSYS; return -1; }
|
|
|
|
static inline int fork(void)
|
|
|
|
{ errno = ENOSYS; return -1; }
|
|
|
|
static inline unsigned int alarm(unsigned int seconds)
|
|
|
|
{ return 0; }
|
|
|
|
static inline int fsync(int fd)
|
|
|
|
{ return 0; }
|
|
|
|
static inline int getppid(void)
|
|
|
|
{ return 1; }
|
|
|
|
static inline void sync(void)
|
|
|
|
{}
|
|
|
|
static inline int getuid()
|
|
|
|
{ return 1; }
|
|
|
|
static inline struct passwd *getpwnam(const char *name)
|
|
|
|
{ return NULL; }
|
|
|
|
static inline int fcntl(int fd, int cmd, long arg)
|
|
|
|
{
|
|
|
|
if (cmd == F_GETFD || cmd == F_SETFD)
|
|
|
|
return 0;
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* simple adaptors
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline int mingw_mkdir(const char *path, int mode)
|
|
|
|
{
|
|
|
|
return mkdir(path);
|
|
|
|
}
|
|
|
|
#define mkdir mingw_mkdir
|
|
|
|
|
2007-01-23 13:39:09 +01:00
|
|
|
static inline int mingw_unlink(const char *pathname)
|
|
|
|
{
|
|
|
|
/* read-only files cannot be removed */
|
|
|
|
chmod(pathname, 0666);
|
|
|
|
return unlink(pathname);
|
|
|
|
}
|
|
|
|
#define unlink mingw_unlink
|
|
|
|
|
2007-12-01 21:24:59 +01:00
|
|
|
static inline int waitpid(pid_t pid, unsigned *status, unsigned options)
|
|
|
|
{
|
|
|
|
if (options == 0)
|
|
|
|
return _cwait(status, pid, 0);
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* implementations of missing functions
|
|
|
|
*/
|
|
|
|
|
Windows: A pipe() replacement whose ends are not inherited to children.
On Unix the idiom to use a pipe is as follows:
pipe(fd);
pid = fork();
if (!pid) {
dup2(fd[1], 1);
close(fd[1]);
close(fd[0]);
...
}
close(fd[1]);
i.e. the child process closes the both pipe ends after duplicating one
to the file descriptors where they are needed.
On Windows, which does not have fork(), we never have an opportunity to
(1) duplicate a pipe end in the child, (2) close unused pipe ends. Instead,
we must use this idiom:
save1 = dup(1);
pipe(fd);
dup2(fd[1], 1);
spawn(...);
dup2(save1, 1);
close(fd[1]);
i.e. save away the descriptor at the destination slot, replace by the pipe
end, spawn process, restore the saved file.
But there is a problem: Notice that the child did not only inherit the
dup2()ed descriptor, but also *both* original pipe ends. Although the one
end that was dup()ed could be closed before the spawn(), we cannot close
the other end - the child inherits it, no matter what.
The solution is to generate non-inheritable pipes. At the first glance,
this looks strange: The purpose of pipes is usually to be inherited to
child processes. But notice that in the course of actions as outlined
above, the pipe descriptor that we want to inherit to the child is
dup2()ed, and as it so happens, Windows's dup2() creates inheritable
duplicates.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
2007-12-07 22:05:36 +01:00
|
|
|
int pipe(int filedes[2]);
|
2007-12-01 21:24:59 +01:00
|
|
|
unsigned int sleep (unsigned int seconds);
|
|
|
|
int mkstemp(char *template);
|
|
|
|
int gettimeofday(struct timeval *tv, void *tz);
|
|
|
|
int poll(struct pollfd *ufds, unsigned int nfds, int timeout);
|
|
|
|
struct tm *gmtime_r(const time_t *timep, struct tm *result);
|
|
|
|
struct tm *localtime_r(const time_t *timep, struct tm *result);
|
|
|
|
int getpagesize(void); /* defined in MinGW's libgcc.a */
|
|
|
|
struct passwd *getpwuid(int uid);
|
|
|
|
int setitimer(int type, struct itimerval *in, struct itimerval *out);
|
|
|
|
int sigaction(int sig, struct sigaction *in, struct sigaction *out);
|
2007-12-03 21:55:57 +01:00
|
|
|
|
2008-03-05 21:51:27 +01:00
|
|
|
/*
|
|
|
|
* replacements of existing functions
|
|
|
|
*/
|
|
|
|
|
2007-11-15 22:22:47 +01:00
|
|
|
int mingw_open (const char *filename, int oflags, ...);
|
|
|
|
#define open mingw_open
|
|
|
|
|
2008-03-05 21:51:27 +01:00
|
|
|
char *mingw_getcwd(char *pointer, int len);
|
|
|
|
#define getcwd mingw_getcwd
|
|
|
|
|
2008-06-22 11:35:21 +02:00
|
|
|
char *mingw_getenv(const char *name);
|
|
|
|
#define getenv mingw_getenv
|
|
|
|
|
2007-12-26 13:51:18 +01:00
|
|
|
struct hostent *mingw_gethostbyname(const char *host);
|
|
|
|
#define gethostbyname mingw_gethostbyname
|
|
|
|
|
|
|
|
int mingw_socket(int domain, int type, int protocol);
|
|
|
|
#define socket mingw_socket
|
|
|
|
|
|
|
|
int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz);
|
|
|
|
#define connect mingw_connect
|
|
|
|
|
2007-12-07 22:19:40 +01:00
|
|
|
int mingw_rename(const char*, const char*);
|
|
|
|
#define rename mingw_rename
|
|
|
|
|
2007-09-03 20:40:26 +02:00
|
|
|
/* Use mingw_lstat() instead of lstat()/stat() and
|
|
|
|
* mingw_fstat() instead of fstat() on Windows.
|
|
|
|
*/
|
2008-08-18 22:01:06 +02:00
|
|
|
int mingw_lstat(const char *file_name, struct stat *buf);
|
|
|
|
int mingw_fstat(int fd, struct stat *buf);
|
2007-09-03 20:40:26 +02:00
|
|
|
#define fstat mingw_fstat
|
|
|
|
#define lstat mingw_lstat
|
2008-08-18 22:01:06 +02:00
|
|
|
#define stat(x,y) mingw_lstat(x,y)
|
2007-09-03 20:40:26 +02:00
|
|
|
|
2007-09-07 13:05:00 +02:00
|
|
|
int mingw_utime(const char *file_name, const struct utimbuf *times);
|
|
|
|
#define utime mingw_utime
|
|
|
|
|
2007-11-24 22:49:16 +01:00
|
|
|
pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env);
|
2007-12-04 12:38:32 +01:00
|
|
|
void mingw_execvp(const char *cmd, char *const *argv);
|
|
|
|
#define execvp mingw_execvp
|
|
|
|
|
2007-11-17 19:16:53 +01:00
|
|
|
static inline unsigned int git_ntohl(unsigned int x)
|
|
|
|
{ return (unsigned int)ntohl(x); }
|
|
|
|
#define ntohl git_ntohl
|
|
|
|
|
2007-11-13 10:14:45 +01:00
|
|
|
sig_handler_t mingw_signal(int sig, sig_handler_t handler);
|
|
|
|
#define signal mingw_signal
|
|
|
|
|
2008-07-18 09:34:44 +02:00
|
|
|
/*
|
|
|
|
* ANSI emulation wrappers
|
|
|
|
*/
|
|
|
|
|
|
|
|
int winansi_fputs(const char *str, FILE *stream);
|
|
|
|
int winansi_printf(const char *format, ...) __attribute__((format (printf, 1, 2)));
|
|
|
|
int winansi_fprintf(FILE *stream, const char *format, ...) __attribute__((format (printf, 2, 3)));
|
|
|
|
#define fputs winansi_fputs
|
|
|
|
#define printf(...) winansi_printf(__VA_ARGS__)
|
|
|
|
#define fprintf(...) winansi_fprintf(__VA_ARGS__)
|
|
|
|
|
2007-12-03 21:55:57 +01:00
|
|
|
/*
|
|
|
|
* git specific compatibility
|
|
|
|
*/
|
|
|
|
|
2008-03-05 21:51:27 +01:00
|
|
|
#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
|
|
|
|
#define is_dir_sep(c) ((c) == '/' || (c) == '\\')
|
2007-12-03 21:55:57 +01:00
|
|
|
#define PATH_SEP ';'
|
2007-03-23 10:57:05 +01:00
|
|
|
#define PRIuMAX "I64u"
|
2007-12-07 22:08:59 +01:00
|
|
|
|
2008-07-13 22:31:20 +02:00
|
|
|
void mingw_open_html(const char *path);
|
|
|
|
#define open_html mingw_open_html
|
|
|
|
|
2007-12-07 22:08:59 +01:00
|
|
|
/*
|
|
|
|
* helpers
|
|
|
|
*/
|
|
|
|
|
|
|
|
char **copy_environ(void);
|
|
|
|
void free_environ(char **env);
|
|
|
|
char **env_setenv(char **env, const char *name);
|
2008-07-21 21:19:57 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A replacement of main() that ensures that argv[0] has a path
|
|
|
|
*/
|
|
|
|
|
2008-07-26 11:41:44 +02:00
|
|
|
#define main(c,v) dummy_decl_mingw_main(); \
|
|
|
|
static int mingw_main(); \
|
|
|
|
int main(int argc, const char **argv) \
|
2008-07-21 21:19:57 +02:00
|
|
|
{ \
|
|
|
|
argv[0] = xstrdup(_pgmptr); \
|
|
|
|
return mingw_main(argc, argv); \
|
|
|
|
} \
|
|
|
|
static int mingw_main(c,v)
|