mingw.h 8.4 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;
J
Johannes Sixt 已提交
10 11 12 13 14
#define hstrerror strerror

#define S_IFLNK    0120000 /* Symbolic link */
#define S_ISLNK(x) (((x) & S_IFMT) == S_IFLNK)
#define S_ISSOCK(x) 0
15 16 17 18 19 20 21

#ifndef _STAT_H_
#define S_IRUSR 0
#define S_IWUSR 0
#define S_IXUSR 0
#define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
#endif
J
Johannes Sixt 已提交
22 23 24
#define S_IRGRP 0
#define S_IWGRP 0
#define S_IXGRP 0
25
#define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
J
Johannes Sixt 已提交
26
#define S_IROTH 0
27
#define S_IWOTH 0
J
Johannes Sixt 已提交
28
#define S_IXOTH 0
29 30 31 32
#define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
#define S_ISUID 0
#define S_ISGID 0
#define S_ISVTX 0
J
Johannes Sixt 已提交
33

34 35
#define WIFEXITED(x) 1
#define WIFSIGNALED(x) 0
J
Johannes Sixt 已提交
36
#define WEXITSTATUS(x) ((x) & 0xff)
37
#define WTERMSIG(x) SIGTERM
J
Johannes Sixt 已提交
38

J
Johannes Sixt 已提交
39 40 41 42 43 44
#define SIGHUP 1
#define SIGQUIT 3
#define SIGKILL 9
#define SIGPIPE 13
#define SIGALRM 14
#define SIGCHLD 17
J
Johannes Sixt 已提交
45 46 47 48 49 50 51 52 53 54 55

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

struct passwd {
	char *pw_name;
	char *pw_gecos;
	char *pw_dir;
};

56 57
extern char *getpass(const char *prompt);

58
#ifndef POLLIN
J
Johannes Sixt 已提交
59 60 61 62 63 64 65
struct pollfd {
	int fd;           /* file descriptor */
	short events;     /* requested events */
	short revents;    /* returned events */
};
#define POLLIN 1
#define POLLHUP 2
66
#endif
J
Johannes Sixt 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

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

/*
 * simple adaptors
 */

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

125 126 127 128 129 130 131 132
static inline int mingw_unlink(const char *pathname)
{
	/* read-only files cannot be removed */
	chmod(pathname, 0666);
	return unlink(pathname);
}
#define unlink mingw_unlink

133
static inline pid_t waitpid(pid_t pid, int *status, unsigned options)
J
Johannes Sixt 已提交
134 135 136 137 138 139 140
{
	if (options == 0)
		return _cwait(status, pid, 0);
	errno = EINVAL;
	return -1;
}

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
#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 已提交
162 163 164 165
/*
 * implementations of missing functions
 */

166
int pipe(int filedes[2]);
J
Johannes Sixt 已提交
167 168 169 170 171 172 173
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 */
174
struct passwd *getpwuid(uid_t uid);
J
Johannes Sixt 已提交
175 176
int setitimer(int type, struct itimerval *in, struct itimerval *out);
int sigaction(int sig, struct sigaction *in, struct sigaction *out);
P
Petr Kodl 已提交
177
int link(const char *oldpath, const char *newpath);
178

179 180 181 182
/*
 * replacements of existing functions
 */

183 184 185
int mingw_open (const char *filename, int oflags, ...);
#define open mingw_open

186 187 188
ssize_t mingw_write(int fd, const void *buf, size_t count);
#define write mingw_write

189 190 191 192 193 194
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

195 196 197
char *mingw_getcwd(char *pointer, int len);
#define getcwd mingw_getcwd

198 199 200
char *mingw_getenv(const char *name);
#define getenv mingw_getenv

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

M
Martin Storsjö 已提交
204 205 206 207 208 209 210 211 212 213 214 215
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

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

222 223 224
int mingw_rename(const char*, const char*);
#define rename mingw_rename

225
#if defined(USE_WIN32_MMAP) || defined(_MSC_VER)
J
Janos Laube 已提交
226 227 228 229
int mingw_getpagesize(void);
#define getpagesize mingw_getpagesize
#endif

230 231 232
/* Use mingw_lstat() instead of lstat()/stat() and
 * mingw_fstat() instead of fstat() on Windows.
 */
J
Johannes Schindelin 已提交
233 234
#define off_t off64_t
#define lseek _lseeki64
235 236
#ifndef ALREADY_DECLARED_STAT_FUNCS
#define stat _stati64
237
int mingw_lstat(const char *file_name, struct stat *buf);
238
int mingw_stat(const char *file_name, struct stat *buf);
239
int mingw_fstat(int fd, struct stat *buf);
240 241
#define fstat mingw_fstat
#define lstat mingw_lstat
242
#define _stati64(x,y) mingw_stat(x,y)
243
#endif
244

245 246 247
int mingw_utime(const char *file_name, const struct utimbuf *times);
#define utime mingw_utime

248
pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env,
249
		     const char *dir,
250
		     int fhin, int fhout, int fherr);
251 252 253
void mingw_execvp(const char *cmd, char *const *argv);
#define execvp mingw_execvp

254 255 256 257
static inline unsigned int git_ntohl(unsigned int x)
{ return (unsigned int)ntohl(x); }
#define ntohl git_ntohl

258 259 260
sig_handler_t mingw_signal(int sig, sig_handler_t handler);
#define signal mingw_signal

261 262 263 264 265 266 267 268 269 270 271
/*
 * 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__)

272 273 274 275
/*
 * git specific compatibility
 */

276 277
#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
#define is_dir_sep(c) ((c) == '/' || (c) == '\\')
278
#define PATH_SEP ';'
J
Johannes Sixt 已提交
279
#define PRIuMAX "I64u"
280

281 282 283
void mingw_open_html(const char *path);
#define open_html mingw_open_html

284 285 286 287
/*
 * helpers
 */

288
char **make_augmented_environ(const char *const *vars);
289
void free_environ(char **env);
290 291 292

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

296 297 298
#define main(c,v) dummy_decl_mingw_main(); \
static int mingw_main(); \
int main(int argc, const char **argv) \
299
{ \
300 301 302 303
	_fmode = _O_BINARY; \
	_setmode(_fileno(stdin), _O_BINARY); \
	_setmode(_fileno(stdout), _O_BINARY); \
	_setmode(_fileno(stderr), _O_BINARY); \
304 305 306 307
	argv[0] = xstrdup(_pgmptr); \
	return mingw_main(argc, argv); \
} \
static int mingw_main(c,v)
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336

#ifndef NO_MINGW_REPLACE_READDIR
/*
 * A replacement of readdir, to ensure that it reads the file type at
 * the same time. This avoid extra unneeded lstats in git on MinGW
 */
#undef DT_UNKNOWN
#undef DT_DIR
#undef DT_REG
#undef DT_LNK
#define DT_UNKNOWN	0
#define DT_DIR		1
#define DT_REG		2
#define DT_LNK		3

struct mingw_dirent
{
	long		d_ino;			/* Always zero. */
	union {
		unsigned short	d_reclen;	/* Always zero. */
		unsigned char   d_type;		/* Reimplementation adds this */
	};
	unsigned short	d_namlen;		/* Length of name in d_name. */
	char		d_name[FILENAME_MAX];	/* File name. */
};
#define dirent mingw_dirent
#define readdir(x) mingw_readdir(x)
struct dirent *mingw_readdir(DIR *dir);
#endif // !NO_MINGW_REPLACE_READDIR
337 338 339 340 341

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