Blob


1 #ifndef _GOT_COMPAT_H
2 #define _GOT_COMPAT_H
4 #include <sys/types.h>
5 #include <sys/ioctl.h>
6 #include <sys/uio.h>
7 #if defined(__FreeBSD__)
8 #include <sys/endian.h>
9 #include <sys/capsicum.h>
10 #elif defined(__APPLE__)
11 #include <machine/endian.h>
12 #include <libkern/OSByteOrder.h>
13 #include "compat/bsd-poll.h"
15 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
17 #define htobe16(x) OSSwapHostToBigInt16(x)
18 #define htole16(x) OSSwapHostToLittleInt16(x)
19 #define be16toh(x) OSSwapBigToHostInt16(x)
20 #define le16toh(x) OSSwapLittleToHostInt16(x)
22 #define htobe32(x) OSSwapHostToBigInt32(x)
23 #define htole32(x) OSSwapHostToLittleInt32(x)
24 #define be32toh(x) OSSwapBigToHostInt32(x)
25 #define le32toh(x) OSSwapLittleToHostInt32(x)
27 #define htobe64(x) OSSwapHostToBigInt64(x)
28 #define htole64(x) OSSwapHostToLittleInt64(x)
29 #define be64toh(x) OSSwapBigToHostInt64(x)
30 #define le64toh(x) OSSwapLittleToHostInt64(x)
32 #define st_atim st_atimespec
33 #define st_ctim st_ctimespec
34 #define st_mtim st_mtimespec
36 #else /* Linux, etc... */
37 #include <endian.h>
38 #include <grp.h>
39 #endif
41 #include <fnmatch.h>
42 #include <limits.h>
43 #include <stdio.h>
44 #include <stdint.h>
46 /* For flock. */
47 #ifndef O_EXLOCK
48 #define O_EXLOCK 0
49 #endif
51 #ifndef HAVE_FLOCK
52 #define LOCK_SH 0
53 #define LOCK_EX 0
54 #define LOCK_NB 0
55 #define flock(fd, op) (0)
56 #else
57 #include <sys/file.h>
58 #endif
60 /* POSIX doesn't define WAIT_ANY, so provide it if it's not found. */
61 #ifndef WAIT_ANY
62 #define WAIT_ANY (-1)
63 #endif
65 /* SOCK_NONBLOCK isn't available across BSDs... */
66 #ifndef SOCK_NONBLOCK
67 #define SOCK_NONBLOCK 00004000
68 #endif
70 /* On FreeBSD (and possibly others), EAI_NODATA was removed, in favour of
71 * using EAI_NONAME.
72 */
73 #ifndef EAI_NODATA
74 #define EAI_NODATA EAI_NONAME
75 #endif
77 #ifndef __dead
78 #define __dead __attribute__ ((__noreturn__))
79 #endif
81 #ifndef __unused
82 #define __unused __attribute__ ((__unused__))
83 #endif
85 #ifndef __OpenBSD__
86 #define pledge(s, p) (0)
87 #define unveil(s, p) (0)
88 #endif
90 #ifndef __FreeBSD__
91 #define cap_enter() (0)
92 #endif
94 #ifndef HAVE_SETRESGID
95 #define setresgid(a, b, c) (0)
96 #endif
98 #ifndef HAVE_SETRESUID
99 #define setresuid(a, b, c) (0)
100 #endif
102 #ifndef HAVE_LINUX_LANDLOCK_H
103 #define landlock_no_fs() (0)
104 #else
105 int landlock_no_fs(void);
106 #endif
108 #ifndef INFTIM
109 #define INFTIM -1
110 #endif
112 #ifndef HAVE_BSD_UUID
113 #include <uuid/uuid.h>
114 #define uuid_s_ok 0
115 #define uuid_s_bad_version 1
116 #define uuid_s_invalid_string_uuid 2
117 #define uuid_s_no_memory 3
119 /* Length of a node address (an IEEE 802 address). */
120 #define _UUID_NODE_LEN 6
122 struct uuid {
123 uint32_t time_low;
124 uint16_t time_mid;
125 uint16_t time_hi_and_version;
126 uint8_t clock_seq_hi_and_reserved;
127 uint8_t clock_seq_low;
128 uint8_t node[_UUID_NODE_LEN];
129 };
131 int32_t uuid_equal(struct uuid *, struct uuid *, uint32_t *);
132 int32_t uuid_is_nil(struct uuid *, uint32_t *);
133 void uuid_create(uuid_t *, uint32_t *);
134 void uuid_create_nil(struct uuid *, uint32_t *);
135 void uuid_from_string(const char *, uuid_t *, uint32_t *);
136 void uuid_to_string(uuid_t *, char **, uint32_t *);
137 #else
138 #include <uuid.h>
139 #endif
141 #ifdef HAVE_STDINT_H
142 #include <stdint.h>
143 #else
144 #include <inttypes.h>
145 #endif
147 #ifdef HAVE_QUEUE_H
148 #include <sys/queue.h>
149 #endif
151 #ifdef HAVE_TREE_H
152 #include <sys/tree.h>
153 #else
154 #include "compat/tree.h"
155 #endif
157 #ifdef HAVE_UTIL_H
158 #include <util.h>
159 #endif
161 #ifdef HAVE_LIBUTIL_H
162 #include <libutil.h>
163 #endif
165 #ifdef HAVE_IMSG
166 #else
167 #include "compat/imsg.h"
168 #endif
170 #ifdef HAVE_SIPHASH
171 #include <siphash.h>
172 #else
173 #include "compat/siphash.h"
174 #endif
176 /* Include Apple-specific headers. Mostly for crypto.*/
177 #if defined(__APPLE__)
178 #define COMMON_DIGEST_FOR_OPENSSL
179 #include <CommonCrypto/CommonDigest.h>
180 #endif
182 #if defined(HAVE_LIBCRYPTO) && !defined(__APPLE__) && !defined(__DragonFly__)
183 #include <sha1.h>
184 #elif !defined(__APPLE__) && !defined(__DragonFly__)
185 #include <sha.h>
186 #elif defined(__DragonFly__)
187 #include <openssl/sha.h>
188 #endif
190 #if !defined(HAVE_LIBCRYPTO) || defined(__APPLE__) || defined(__DragonFly__)
191 #define SHA1_DIGEST_LENGTH SHA_DIGEST_LENGTH
192 #define SHA1_DIGEST_STRING_LENGTH (SHA1_DIGEST_LENGTH * 2 + 1)
194 #define SHA1_CTX SHA_CTX
195 #define SHA1Init SHA1_Init
196 #define SHA1Update SHA1_Update
197 #define SHA1Final SHA1_Final
198 #endif
200 /*
201 * The following SA_LEN/SS_LEN dance comes from various source, notably
202 * OpenSMTP by way of OpenNTPD and OpenBGPD (thanks everyone!). got-portable
203 * has tweaked a lot of the following macros to suit the needs of
204 * got-portable.
205 */
207 /* From OpenNTPD portable */
208 #if !defined(SA_LEN)
209 # if defined(HAVE_STRUCT_SOCKADDR_SA_LEN)
210 # define SA_LEN(x) ((x)->sa_len)
211 # else
212 # define SA_LEN(x) ((x)->sa_family == AF_INET6 ? \
213 sizeof(struct sockaddr_in6) : \
214 sizeof(struct sockaddr_in))
215 # endif
217 #endif
219 /* From OpenBGPD portable */
220 #if !defined(SS_LEN)
221 # if defined(HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN)
222 # define SS_LEN(x) ((x)->ss_len)
223 # else
224 # define SS_LEN(x) SA_LEN((struct sockaddr *)(x))
225 # endif
226 #endif
228 #ifndef HAVE_ASPRINTF
229 /* asprintf.c */
230 int asprintf(char **, const char *, ...);
231 int vasprintf(char **, const char *, va_list);
232 #endif
234 #ifndef HAVE_EXPLICIT_BZERO
235 /* explicit_bzero.c */
236 void explicit_bzero(void *, size_t);
237 #endif
239 #ifndef HAVE_GETDTABLECOUNT
240 /* getdtablecount.c */
241 int getdtablecount(void);
242 #endif
244 #ifndef HAVE_CLOSEFROM
245 /* closefrom.c */
246 void closefrom(int);
247 #endif
249 #if defined (__FreeBSD__)
250 #define closefrom(fd) (closefrom(fd), 0)
251 #endif
253 #ifndef HAVE_STRSEP
254 /* strsep.c */
255 char *strsep(char **, const char *);
256 #endif
258 #ifndef HAVE_STRTONUM
259 /* strtonum.c */
260 long long strtonum(const char *, long long, long long, const char **);
261 #endif
263 #ifndef HAVE_STRLCPY
264 /* strlcpy.c */
265 size_t strlcpy(char *, const char *, size_t);
266 #endif
268 #ifndef HAVE_STRLCAT
269 /* strlcat.c */
270 size_t strlcat(char *, const char *, size_t);
271 #endif
273 #ifndef HAVE_STRNLEN
274 /* strnlen.c */
275 size_t strnlen(const char *, size_t);
276 #endif
278 #ifndef HAVE_STRNDUP
279 /* strndup.c */
280 char *strndup(const char *, size_t);
281 #endif
283 #ifndef HAVE_GETPROGNAME
284 /* getprogname.c */
285 const char *getprogname(void);
286 #endif
288 #ifndef HAVE_GETLINE
289 /* getline.c */
290 ssize_t getline(char **, size_t *, FILE *);
291 #endif
293 #ifndef HAVE_FREEZERO
294 /* freezero.c */
295 void freezero(void *, size_t);
296 #endif
298 #ifndef HAVE_GETDTABLECOUNT
299 /* getdtablecount.c */
300 int getdtablecount(void);
301 #endif
303 #ifndef HAVE_REALLOCARRAY
304 /* reallocarray.c */
305 void *reallocarray(void *, size_t, size_t);
306 #endif
308 #ifndef HAVE_RECALLOCARRAY
309 /* recallocarray.c */
310 void *recallocarray(void *, size_t, size_t, size_t);
311 #endif
313 #ifndef HAVE_SETPROCTITLE
314 /* setproctitle.c */
315 void setproctitle(const char *, ...);
316 #endif
318 #ifndef HAVE_FMT_SCALED
319 /* fmt_scaled.c */
320 int fmt_scaled(long long, char *);
321 int scan_scaled(char *, long long *);
322 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
323 #endif
325 #ifndef HAVE_LIBBSD
326 /* getopt.c */
327 extern int BSDopterr;
328 extern int BSDoptind;
329 extern int BSDoptopt;
330 extern int BSDoptreset;
331 extern char *BSDoptarg;
332 int BSDgetopt(int, char *const *, const char *);
333 #define getopt(ac, av, o) BSDgetopt(ac, av, o)
334 #define opterr BSDopterr
335 #define optind BSDoptind
336 #define optopt BSDoptopt
337 #define optreset BSDoptreset
338 #define optarg BSDoptarg
339 #endif
340 #endif
342 /* Check for some of the non-portable timespec*() functions.
343 * This should largely come from libbsd for systems which
344 * aren't BSD, but this will depend on how old the library
345 * is.
346 */
347 #ifndef timespecisset
348 #define timespecisset(tsp) \
349 ((tsp)->tv_sec || (tsp)->tv_nsec)
350 #endif
352 #ifndef timespecsub
353 #define timespecsub(tsp, usp, vsp) \
354 do { \
355 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
356 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
357 if ((vsp)->tv_nsec < 0) { \
358 (vsp)->tv_sec--; \
359 (vsp)->tv_nsec += 1000000000L; \
360 } \
361 } while (0)
362 #endif
364 #ifndef timespeccmp
365 #define timespeccmp(tvp, uvp, cmp) \
366 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
367 ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
368 ((tvp)->tv_sec cmp (uvp)->tv_sec))
369 #endif
371 #ifndef HAVE_BSD_MERGESORT
372 /* mergesort.c */
373 int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));
374 #endif