]> git.proxmox.com Git - libgit2.git/blob - src/posix.h
2934f247923825e1be05eae68d1854e60da1c695
[libgit2.git] / src / posix.h
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7 #ifndef INCLUDE_posix_h__
8 #define INCLUDE_posix_h__
9
10 #include "common.h"
11
12 #include <fcntl.h>
13 #include <time.h>
14 #include "fnmatch.h"
15
16 /* stat: file mode type testing macros */
17 #ifndef S_IFGITLINK
18 #define S_IFGITLINK 0160000
19 #define S_ISGITLINK(m) (((m) & S_IFMT) == S_IFGITLINK)
20 #endif
21
22 #ifndef S_IFLNK
23 #define S_IFLNK 0120000
24 #undef _S_IFLNK
25 #define _S_IFLNK S_IFLNK
26 #endif
27
28 #ifndef S_IWUSR
29 #define S_IWUSR 00200
30 #endif
31
32 #ifndef S_IXUSR
33 #define S_IXUSR 00100
34 #endif
35
36 #ifndef S_ISLNK
37 #define S_ISLNK(m) (((m) & _S_IFMT) == _S_IFLNK)
38 #endif
39
40 #ifndef S_ISDIR
41 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
42 #endif
43
44 #ifndef S_ISREG
45 #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
46 #endif
47
48 #ifndef S_ISFIFO
49 #define S_ISFIFO(m) (((m) & _S_IFMT) == _S_IFIFO)
50 #endif
51
52 /* if S_ISGID is not defined, then don't try to set it */
53 #ifndef S_ISGID
54 #define S_ISGID 0
55 #endif
56
57 #ifndef O_BINARY
58 #define O_BINARY 0
59 #endif
60 #ifndef O_CLOEXEC
61 #define O_CLOEXEC 0
62 #endif
63 #ifndef SOCK_CLOEXEC
64 #define SOCK_CLOEXEC 0
65 #endif
66
67 /* access() mode parameter #defines */
68 #ifndef F_OK
69 #define F_OK 0 /* existence check */
70 #endif
71 #ifndef W_OK
72 #define W_OK 2 /* write mode check */
73 #endif
74 #ifndef R_OK
75 #define R_OK 4 /* read mode check */
76 #endif
77
78 /* Determine whether an errno value indicates that a read or write failed
79 * because the descriptor is blocked.
80 */
81 #if defined(EWOULDBLOCK)
82 #define GIT_ISBLOCKED(e) ((e) == EAGAIN || (e) == EWOULDBLOCK)
83 #else
84 #define GIT_ISBLOCKED(e) ((e) == EAGAIN)
85 #endif
86
87 /* define some standard errnos that the runtime may be missing. for example,
88 * mingw lacks EAFNOSUPPORT. */
89 #ifndef EAFNOSUPPORT
90 #define EAFNOSUPPORT (INT_MAX-1)
91 #endif
92
93 typedef int git_file;
94
95 /**
96 * Standard POSIX Methods
97 *
98 * All the methods starting with the `p_` prefix are
99 * direct ports of the standard POSIX methods.
100 *
101 * Some of the methods are slightly wrapped to provide
102 * saner defaults. Some of these methods are emulated
103 * in Windows platforms.
104 *
105 * Use your manpages to check the docs on these.
106 */
107
108 extern ssize_t p_read(git_file fd, void *buf, size_t cnt);
109 extern int p_write(git_file fd, const void *buf, size_t cnt);
110
111 #define p_close(fd) close(fd)
112 #define p_umask(m) umask(m)
113
114 extern int p_open(const char *path, int flags, ...);
115 extern int p_creat(const char *path, mode_t mode);
116 extern int p_getcwd(char *buffer_out, size_t size);
117 extern int p_rename(const char *from, const char *to);
118
119 extern int git__page_size(size_t *page_size);
120 extern int git__mmap_alignment(size_t *page_size);
121
122 /* The number of times `p_fsync` has been called. Note that this is for
123 * test code only; it it not necessarily thread-safe and should not be
124 * relied upon in production.
125 */
126 extern size_t p_fsync__cnt;
127
128 /**
129 * Platform-dependent methods
130 */
131 #ifdef GIT_WIN32
132 # include "win32/posix.h"
133 #else
134 # include "unix/posix.h"
135 #endif
136
137 #include "strnlen.h"
138
139 #ifdef NO_READDIR_R
140 GIT_INLINE(int) p_readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result)
141 {
142 GIT_UNUSED(entry);
143 *result = readdir(dirp);
144 return 0;
145 }
146 #else /* NO_READDIR_R */
147 # define p_readdir_r(d,e,r) readdir_r(d,e,r)
148 #endif
149
150 #ifdef NO_ADDRINFO
151 # include <netdb.h>
152 struct addrinfo {
153 struct hostent *ai_hostent;
154 struct servent *ai_servent;
155 struct sockaddr_in ai_addr_in;
156 struct sockaddr *ai_addr;
157 size_t ai_addrlen;
158 int ai_family;
159 int ai_socktype;
160 int ai_protocol;
161 long ai_port;
162 struct addrinfo *ai_next;
163 };
164
165 extern int p_getaddrinfo(const char *host, const char *port,
166 struct addrinfo *hints, struct addrinfo **info);
167 extern void p_freeaddrinfo(struct addrinfo *info);
168 extern const char *p_gai_strerror(int ret);
169 #else
170 # define p_getaddrinfo(a, b, c, d) getaddrinfo(a, b, c, d)
171 # define p_freeaddrinfo(a) freeaddrinfo(a)
172 # define p_gai_strerror(c) gai_strerror(c)
173 #endif /* NO_ADDRINFO */
174
175 #endif