mingw.h 8.7 KB
Newer Older
J
Johannes Sixt 已提交
1
#include <winsock2.h>
M
Martin Storsjö 已提交
2
#include <ws2tcpip.h>
J
Johannes Sixt 已提交
3 4 5 6 7 8

/*
 * things that are not available in header files
 */

typedef int pid_t;
9
typedef int uid_t;
M
Mike Pape 已提交
10
typedef int socklen_t;
J
Johannes Sixt 已提交
11 12 13 14 15
#define hstrerror strerror

#define S_IFLNK    0120000 /* Symbolic link */
#define S_ISLNK(x) (((x) & S_IFMT) == S_IFLNK)
#define S_ISSOCK(x) 0
16

J
Johannes Sixt 已提交
17 18 19
#define S_IRGRP 0
#define S_IWGRP 0
#define S_IXGRP 0
20
#define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
J
Johannes Sixt 已提交
21
#define S_IROTH 0
22
#define S_IWOTH 0
J
Johannes Sixt 已提交
23
#define S_IXOTH 0
24
#define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
25 26 27 28

#define S_ISUID 0004000
#define S_ISGID 0002000
#define S_ISVTX 0001000
J
Johannes Sixt 已提交
29

30 31
#define WIFEXITED(x) 1
#define WIFSIGNALED(x) 0
J
Johannes Sixt 已提交
32
#define WEXITSTATUS(x) ((x) & 0xff)
33
#define WTERMSIG(x) SIGTERM
J
Johannes Sixt 已提交
34

35 36 37
#define EWOULDBLOCK EAGAIN
#define SHUT_WR SD_SEND

J
Johannes Sixt 已提交
38 39 40 41 42 43
#define SIGHUP 1
#define SIGQUIT 3
#define SIGKILL 9
#define SIGPIPE 13
#define SIGALRM 14
#define SIGCHLD 17
J
Johannes Sixt 已提交
44 45 46 47 48

#define F_GETFD 1
#define F_SETFD 2
#define FD_CLOEXEC 0x1

M
Mike Pape 已提交
49 50 51
#define EAFNOSUPPORT WSAEAFNOSUPPORT
#define ECONNABORTED WSAECONNABORTED

J
Johannes Sixt 已提交
52 53 54 55 56 57
struct passwd {
	char *pw_name;
	char *pw_gecos;
	char *pw_dir;
};

58 59
extern char *getpass(const char *prompt);

J
Johannes Sixt 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72
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

73 74 75 76 77 78
/*
 * sanitize preprocessor namespace polluted by Windows headers defining
 * macros which collide with git local versions
 */
#undef HELP_COMMAND /* from winuser.h */

J
Johannes Sixt 已提交
79 80 81 82 83 84 85 86 87 88
/*
 * 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 fchmod(int fildes, mode_t mode)
{ errno = ENOSYS; return -1; }
89 90
static inline pid_t fork(void)
{ errno = ENOSYS; return -1; }
J
Johannes Sixt 已提交
91 92 93
static inline unsigned int alarm(unsigned int seconds)
{ return 0; }
static inline int fsync(int fd)
94
{ return _commit(fd); }
95
static inline pid_t getppid(void)
J
Johannes Sixt 已提交
96 97 98
{ return 1; }
static inline void sync(void)
{}
99
static inline uid_t getuid(void)
J
Johannes Sixt 已提交
100 101 102
{ return 1; }
static inline struct passwd *getpwnam(const char *name)
{ return NULL; }
103
static inline int fcntl(int fd, int cmd, ...)
J
Johannes Sixt 已提交
104 105 106 107 108 109
{
	if (cmd == F_GETFD || cmd == F_SETFD)
		return 0;
	errno = EINVAL;
	return -1;
}
110 111
/* bash cannot reliably detect negative return codes as failure */
#define exit(code) exit((code) & 0xff)
J
Johannes Sixt 已提交
112 113 114 115 116 117 118 119 120 121 122

/*
 * simple adaptors
 */

static inline int mingw_mkdir(const char *path, int mode)
{
	return mkdir(path);
}
#define mkdir mingw_mkdir

123
#define WNOHANG 1
124
pid_t waitpid(pid_t pid, int *status, int options);
J
Johannes Sixt 已提交
125

E
Erik Faye-Lund 已提交
126 127 128
#define kill mingw_kill
int mingw_kill(pid_t pid, int sig);

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
#ifndef NO_OPENSSL
#include <openssl/ssl.h>
static inline int mingw_SSL_set_fd(SSL *ssl, int fd)
{
	return SSL_set_fd(ssl, _get_osfhandle(fd));
}
#define SSL_set_fd mingw_SSL_set_fd

static inline int mingw_SSL_set_rfd(SSL *ssl, int fd)
{
	return SSL_set_rfd(ssl, _get_osfhandle(fd));
}
#define SSL_set_rfd mingw_SSL_set_rfd

static inline int mingw_SSL_set_wfd(SSL *ssl, int fd)
{
	return SSL_set_wfd(ssl, _get_osfhandle(fd));
}
#define SSL_set_wfd mingw_SSL_set_wfd
#endif

J
Johannes Sixt 已提交
150 151 152 153
/*
 * implementations of missing functions
 */

154
int pipe(int filedes[2]);
J
Johannes Sixt 已提交
155 156 157 158 159 160
unsigned int sleep (unsigned int seconds);
int mkstemp(char *template);
int gettimeofday(struct timeval *tv, void *tz);
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 */
161
struct passwd *getpwuid(uid_t uid);
J
Johannes Sixt 已提交
162 163
int setitimer(int type, struct itimerval *in, struct itimerval *out);
int sigaction(int sig, struct sigaction *in, struct sigaction *out);
P
Petr Kodl 已提交
164
int link(const char *oldpath, const char *newpath);
165

166 167 168 169
/*
 * replacements of existing functions
 */

170 171 172
int mingw_unlink(const char *pathname);
#define unlink mingw_unlink

173 174 175
int mingw_rmdir(const char *path);
#define rmdir mingw_rmdir

176 177 178
int mingw_open (const char *filename, int oflags, ...);
#define open mingw_open

179 180 181
ssize_t mingw_write(int fd, const void *buf, size_t count);
#define write mingw_write

182 183 184 185 186 187
FILE *mingw_fopen (const char *filename, const char *otype);
#define fopen mingw_fopen

FILE *mingw_freopen (const char *filename, const char *otype, FILE *stream);
#define freopen mingw_freopen

188 189 190
int mingw_fflush(FILE *stream);
#define fflush mingw_fflush

191 192 193
char *mingw_getcwd(char *pointer, int len);
#define getcwd mingw_getcwd

194 195 196
char *mingw_getenv(const char *name);
#define getenv mingw_getenv

197 198 199
int mingw_gethostname(char *host, int namelen);
#define gethostname mingw_gethostname

200 201 202
struct hostent *mingw_gethostbyname(const char *host);
#define gethostbyname mingw_gethostbyname

M
Martin Storsjö 已提交
203 204 205 206 207 208 209 210 211 212 213 214
void mingw_freeaddrinfo(struct addrinfo *res);
#define freeaddrinfo mingw_freeaddrinfo

int mingw_getaddrinfo(const char *node, const char *service,
		      const struct addrinfo *hints, struct addrinfo **res);
#define getaddrinfo mingw_getaddrinfo

int mingw_getnameinfo(const struct sockaddr *sa, socklen_t salen,
		      char *host, DWORD hostlen, char *serv, DWORD servlen,
		      int flags);
#define getnameinfo mingw_getnameinfo

215 216 217 218 219 220
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

M
Mike Pape 已提交
221 222 223 224 225 226
int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz);
#define bind mingw_bind

int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen);
#define setsockopt mingw_setsockopt

227 228 229
int mingw_shutdown(int sockfd, int how);
#define shutdown mingw_shutdown

M
Mike Pape 已提交
230 231 232 233 234 235
int mingw_listen(int sockfd, int backlog);
#define listen mingw_listen

int mingw_accept(int sockfd, struct sockaddr *sa, socklen_t *sz);
#define accept mingw_accept

236 237 238
int mingw_rename(const char*, const char*);
#define rename mingw_rename

239
#if defined(USE_WIN32_MMAP) || defined(_MSC_VER)
J
Janos Laube 已提交
240 241 242 243
int mingw_getpagesize(void);
#define getpagesize mingw_getpagesize
#endif

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
struct rlimit {
	unsigned int rlim_cur;
};
#define RLIMIT_NOFILE 0

static inline int getrlimit(int resource, struct rlimit *rlp)
{
	if (resource != RLIMIT_NOFILE) {
		errno = EINVAL;
		return -1;
	}

	rlp->rlim_cur = 2048;
	return 0;
}

260 261 262
/* Use mingw_lstat() instead of lstat()/stat() and
 * mingw_fstat() instead of fstat() on Windows.
 */
J
Johannes Schindelin 已提交
263 264
#define off_t off64_t
#define lseek _lseeki64
265 266
#ifndef ALREADY_DECLARED_STAT_FUNCS
#define stat _stati64
267
int mingw_lstat(const char *file_name, struct stat *buf);
268
int mingw_stat(const char *file_name, struct stat *buf);
269
int mingw_fstat(int fd, struct stat *buf);
270 271
#define fstat mingw_fstat
#define lstat mingw_lstat
272
#define _stati64(x,y) mingw_stat(x,y)
273
#endif
274

275 276 277
int mingw_utime(const char *file_name, const struct utimbuf *times);
#define utime mingw_utime

278
pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
279
		     const char *dir,
280
		     int fhin, int fhout, int fherr);
281
int mingw_execvp(const char *cmd, char *const *argv);
282
#define execvp mingw_execvp
283
int mingw_execv(const char *cmd, char *const *argv);
284
#define execv mingw_execv
285

286 287 288 289
static inline unsigned int git_ntohl(unsigned int x)
{ return (unsigned int)ntohl(x); }
#define ntohl git_ntohl

290 291 292
sig_handler_t mingw_signal(int sig, sig_handler_t handler);
#define signal mingw_signal

293 294 295 296 297 298 299 300 301 302 303
/*
 * 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__)

304 305 306 307
/*
 * git specific compatibility
 */

308 309
#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
#define is_dir_sep(c) ((c) == '/' || (c) == '\\')
310 311 312 313 314 315 316 317 318
static inline char *mingw_find_last_dir_sep(const char *path)
{
	char *ret = NULL;
	for (; *path; ++path)
		if (is_dir_sep(*path))
			ret = (char *)path;
	return ret;
}
#define find_last_dir_sep mingw_find_last_dir_sep
319
#define PATH_SEP ';'
J
Johannes Sixt 已提交
320
#define PRIuMAX "I64u"
321

322 323 324
void mingw_open_html(const char *path);
#define open_html mingw_open_html

325 326 327 328
/*
 * helpers
 */

329
char **make_augmented_environ(const char *const *vars);
330
void free_environ(char **env);
331 332 333

/*
 * A replacement of main() that ensures that argv[0] has a path
334
 * and that default fmode and std(in|out|err) are in binary mode
335 336
 */

337 338 339
#define main(c,v) dummy_decl_mingw_main(); \
static int mingw_main(); \
int main(int argc, const char **argv) \
340
{ \
E
Erik Faye-Lund 已提交
341
	extern CRITICAL_SECTION pinfo_cs; \
342 343 344 345
	_fmode = _O_BINARY; \
	_setmode(_fileno(stdin), _O_BINARY); \
	_setmode(_fileno(stdout), _O_BINARY); \
	_setmode(_fileno(stderr), _O_BINARY); \
346
	argv[0] = xstrdup(_pgmptr); \
E
Erik Faye-Lund 已提交
347
	InitializeCriticalSection(&pinfo_cs); \
348 349 350
	return mingw_main(argc, argv); \
} \
static int mingw_main(c,v)
351

352 353 354 355
/*
 * Used by Pthread API implementation for Windows
 */
extern int err_win_to_posix(DWORD winerr);