1#include <winsock2.h>
2
3/*
4 * things that are not available in header files
5 */
6
7typedef int pid_t;
8#define hstrerror strerror
9
10#define S_IFLNK 0120000 /* Symbolic link */
11#define S_ISLNK(x) (((x) & S_IFMT) == S_IFLNK)
12#define S_ISSOCK(x) 0
13#define S_IRGRP 0
14#define S_IWGRP 0
15#define S_IXGRP 0
16#define S_ISGID 0
17#define S_IROTH 0
18#define S_IXOTH 0
19
20#define WIFEXITED(x) ((unsigned)(x) < 259) /* STILL_ACTIVE */
21#define WEXITSTATUS(x) ((x) & 0xff)
22#define WIFSIGNALED(x) ((unsigned)(x) > 259)
23
24#define SIGHUP 1
25#define SIGQUIT 3
26#define SIGKILL 9
27#define SIGPIPE 13
28#define SIGALRM 14
29#define SIGCHLD 17
30
31#define F_GETFD 1
32#define F_SETFD 2
33#define FD_CLOEXEC 0x1
34
35struct passwd {
36 char *pw_name;
37 char *pw_gecos;
38 char *pw_dir;
39};
40
41struct pollfd {
42 int fd; /* file descriptor */
43 short events; /* requested events */
44 short revents; /* returned events */
45};
46#define POLLIN 1
47#define POLLHUP 2
48
49typedef void (__cdecl *sig_handler_t)(int);
50struct sigaction {
51 sig_handler_t sa_handler;
52 unsigned sa_flags;
53};
54#define sigemptyset(x) (void)0
55#define SA_RESTART 0
56
57struct itimerval {
58 struct timeval it_value, it_interval;
59};
60#define ITIMER_REAL 0
61
62/*
63 * trivial stubs
64 */
65
66static inline int readlink(const char *path, char *buf, size_t bufsiz)
67{ errno = ENOSYS; return -1; }
68static inline int symlink(const char *oldpath, const char *newpath)
69{ errno = ENOSYS; return -1; }
70static inline int link(const char *oldpath, const char *newpath)
71{ errno = ENOSYS; return -1; }
72static inline int fchmod(int fildes, mode_t mode)
73{ errno = ENOSYS; return -1; }
74static inline int fork(void)
75{ errno = ENOSYS; return -1; }
76static inline unsigned int alarm(unsigned int seconds)
77{ return 0; }
78static inline int fsync(int fd)
79{ return 0; }
80static inline int getppid(void)
81{ return 1; }
82static inline void sync(void)
83{}
84static inline int getuid()
85{ return 1; }
86static inline struct passwd *getpwnam(const char *name)
87{ return NULL; }
88static inline int fcntl(int fd, int cmd, long arg)
89{
90 if (cmd == F_GETFD || cmd == F_SETFD)
91 return 0;
92 errno = EINVAL;
93 return -1;
94}
95
96/*
97 * simple adaptors
98 */
99
100static inline int mingw_mkdir(const char *path, int mode)
101{
102 return mkdir(path);
103}
104#define mkdir mingw_mkdir
105
106static inline int mingw_unlink(const char *pathname)
107{
108 /* read-only files cannot be removed */
109 chmod(pathname, 0666);
110 return unlink(pathname);
111}
112#define unlink mingw_unlink
113
114static inline int waitpid(pid_t pid, unsigned *status, unsigned options)
115{
116 if (options == 0)
117 return _cwait(status, pid, 0);
118 errno = EINVAL;
119 return -1;
120}
121
122/*
123 * implementations of missing functions
124 */
125
126int pipe(int filedes[2]);
127unsigned int sleep (unsigned int seconds);
128int mkstemp(char *template);
129int gettimeofday(struct timeval *tv, void *tz);
130int poll(struct pollfd *ufds, unsigned int nfds, int timeout);
131struct tm *gmtime_r(const time_t *timep, struct tm *result);
132struct tm *localtime_r(const time_t *timep, struct tm *result);
133int getpagesize(void); /* defined in MinGW's libgcc.a */
134struct passwd *getpwuid(int uid);
135int setitimer(int type, struct itimerval *in, struct itimerval *out);
136int sigaction(int sig, struct sigaction *in, struct sigaction *out);
137
138/*
139 * replacements of existing functions
140 */
141
142int mingw_open (const char *filename, int oflags, ...);
143#define open mingw_open
144
145char *mingw_getcwd(char *pointer, int len);
146#define getcwd mingw_getcwd
147
148char *mingw_getenv(const char *name);
149#define getenv mingw_getenv
150
151struct hostent *mingw_gethostbyname(const char *host);
152#define gethostbyname mingw_gethostbyname
153
154int mingw_socket(int domain, int type, int protocol);
155#define socket mingw_socket
156
157int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz);
158#define connect mingw_connect
159
160int mingw_rename(const char*, const char*);
161#define rename mingw_rename
162
163/* Use mingw_lstat() instead of lstat()/stat() and
164 * mingw_fstat() instead of fstat() on Windows.
165 */
166#define off_t off64_t
167#define stat _stati64
168#define lseek _lseeki64
169int mingw_lstat(const char *file_name, struct stat *buf);
170int mingw_fstat(int fd, struct stat *buf);
171#define fstat mingw_fstat
172#define lstat mingw_lstat
173#define _stati64(x,y) mingw_lstat(x,y)
174
175int mingw_utime(const char *file_name, const struct utimbuf *times);
176#define utime mingw_utime
177
178pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env);
179void mingw_execvp(const char *cmd, char *const *argv);
180#define execvp mingw_execvp
181
182static inline unsigned int git_ntohl(unsigned int x)
183{ return (unsigned int)ntohl(x); }
184#define ntohl git_ntohl
185
186sig_handler_t mingw_signal(int sig, sig_handler_t handler);
187#define signal mingw_signal
188
189/*
190 * ANSI emulation wrappers
191 */
192
193int winansi_fputs(const char *str, FILE *stream);
194int winansi_printf(const char *format, ...) __attribute__((format (printf, 1, 2)));
195int winansi_fprintf(FILE *stream, const char *format, ...) __attribute__((format (printf, 2, 3)));
196#define fputs winansi_fputs
197#define printf(...) winansi_printf(__VA_ARGS__)
198#define fprintf(...) winansi_fprintf(__VA_ARGS__)
199
200/*
201 * git specific compatibility
202 */
203
204#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
205#define is_dir_sep(c) ((c) == '/' || (c) == '\\')
206#define PATH_SEP ';'
207#define PRIuMAX "I64u"
208
209void mingw_open_html(const char *path);
210#define open_html mingw_open_html
211
212/*
213 * helpers
214 */
215
216char **copy_environ(void);
217void free_environ(char **env);
218char **env_setenv(char **env, const char *name);
219
220/*
221 * A replacement of main() that ensures that argv[0] has a path
222 */
223
224#define main(c,v) dummy_decl_mingw_main(); \
225static int mingw_main(); \
226int main(int argc, const char **argv) \
227{ \
228 argv[0] = xstrdup(_pgmptr); \
229 return mingw_main(argc, argv); \
230} \
231static int mingw_main(c,v)