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 /* Only include sys/queue.h if it's not found on the system (libbsd provides
148 * a copy of this).
149 */
150 #if !defined(HAVE_QUEUE_H) && !defined(HAVE_LIBBSD)
151 #include "compat/queue.h"
152 #else
153 #include <sys/queue.h>
154 #endif
156 #ifdef HAVE_TREE_H
157 #include <sys/tree.h>
158 #else
159 #include "compat/tree.h"
160 #endif
162 #ifdef HAVE_UTIL_H
163 #include <util.h>
164 #endif
166 #ifdef HAVE_LIBUTIL_H
167 #include <libutil.h>
168 #endif
170 #ifdef HAVE_IMSG
171 #else
172 #include "compat/imsg.h"
173 #endif
175 #ifdef HAVE_SIPHASH
176 #include <siphash.h>
177 #else
178 #include "compat/siphash.h"
179 #endif
181 /* Include Apple-specific headers. Mostly for crypto.*/
182 #if defined(__APPLE__)
183 #define COMMON_DIGEST_FOR_OPENSSL
184 #include <CommonCrypto/CommonDigest.h>
185 #endif
187 #if defined(HAVE_LIBCRYPTO) && !defined(__APPLE__) && !defined(__DragonFly__)
188 #include <sha1.h>
189 #elif !defined(__APPLE__) && !defined(__DragonFly__)
190 #include <sha.h>
191 #elif defined(__DragonFly__)
192 #include <openssl/sha.h>
193 #endif
195 #if !defined(HAVE_LIBCRYPTO) || defined(__APPLE__) || defined(__DragonFly__)
196 #define SHA1_DIGEST_LENGTH SHA_DIGEST_LENGTH
197 #define SHA1_DIGEST_STRING_LENGTH (SHA1_DIGEST_LENGTH * 2 + 1)
199 #define SHA1_CTX SHA_CTX
200 #define SHA1Init SHA1_Init
201 #define SHA1Update SHA1_Update
202 #define SHA1Final SHA1_Final
203 #endif
205 /*
206 * The following SA_LEN/SS_LEN dance comes from various source, notably
207 * OpenSMTP by way of OpenNTPD and OpenBGPD (thanks everyone!). got-portable
208 * has tweaked a lot of the following macros to suit the needs of
209 * got-portable.
210 */
212 /* From OpenNTPD portable */
213 #if !defined(SA_LEN)
214 # if defined(HAVE_STRUCT_SOCKADDR_SA_LEN)
215 # define SA_LEN(x) ((x)->sa_len)
216 # else
217 # define SA_LEN(x) ((x)->sa_family == AF_INET6 ? \
218 sizeof(struct sockaddr_in6) : \
219 sizeof(struct sockaddr_in))
220 # endif
222 #endif
224 /* From OpenBGPD portable */
225 #if !defined(SS_LEN)
226 # if defined(HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN)
227 # define SS_LEN(x) ((x)->ss_len)
228 # else
229 # define SS_LEN(x) SA_LEN((struct sockaddr *)(x))
230 # endif
231 #endif
233 #ifndef HAVE_ASPRINTF
234 /* asprintf.c */
235 int asprintf(char **, const char *, ...);
236 int vasprintf(char **, const char *, va_list);
237 #endif
239 #ifndef HAVE_EXPLICIT_BZERO
240 /* explicit_bzero.c */
241 void explicit_bzero(void *, size_t);
242 #endif
244 #ifndef HAVE_GETDTABLECOUNT
245 /* getdtablecount.c */
246 int getdtablecount(void);
247 #endif
249 #ifndef HAVE_CLOSEFROM
250 /* closefrom.c */
251 void closefrom(int);
252 #endif
254 #if defined (__FreeBSD__)
255 #define closefrom(fd) (closefrom(fd), 0)
256 #endif
258 #ifndef HAVE_STRSEP
259 /* strsep.c */
260 char *strsep(char **, const char *);
261 #endif
263 #ifndef HAVE_STRTONUM
264 /* strtonum.c */
265 long long strtonum(const char *, long long, long long, const char **);
266 #endif
268 #ifndef HAVE_STRLCPY
269 /* strlcpy.c */
270 size_t strlcpy(char *, const char *, size_t);
271 #endif
273 #ifndef HAVE_STRLCAT
274 /* strlcat.c */
275 size_t strlcat(char *, const char *, size_t);
276 #endif
278 #ifndef HAVE_STRNLEN
279 /* strnlen.c */
280 size_t strnlen(const char *, size_t);
281 #endif
283 #ifndef HAVE_STRNDUP
284 /* strndup.c */
285 char *strndup(const char *, size_t);
286 #endif
288 #ifndef HAVE_GETPROGNAME
289 /* getprogname.c */
290 const char *getprogname(void);
291 #endif
293 #ifndef HAVE_GETLINE
294 /* getline.c */
295 ssize_t getline(char **, size_t *, FILE *);
296 #endif
298 #ifndef HAVE_FREEZERO
299 /* freezero.c */
300 void freezero(void *, size_t);
301 #endif
303 #ifndef HAVE_GETDTABLECOUNT
304 /* getdtablecount.c */
305 int getdtablecount(void);
306 #endif
308 #ifndef HAVE_REALLOCARRAY
309 /* reallocarray.c */
310 void *reallocarray(void *, size_t, size_t);
311 #endif
313 #ifndef HAVE_RECALLOCARRAY
314 /* recallocarray.c */
315 void *recallocarray(void *, size_t, size_t, size_t);
316 #endif
318 #ifndef HAVE_SETPROCTITLE
319 /* setproctitle.c */
320 void setproctitle(const char *, ...);
321 #endif
323 #ifndef HAVE_FMT_SCALED
324 /* fmt_scaled.c */
325 int fmt_scaled(long long, char *);
326 int scan_scaled(char *, long long *);
327 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
328 #endif
330 #ifndef HAVE_LIBBSD
331 /* getopt.c */
332 extern int BSDopterr;
333 extern int BSDoptind;
334 extern int BSDoptopt;
335 extern int BSDoptreset;
336 extern char *BSDoptarg;
337 int BSDgetopt(int, char *const *, const char *);
338 #define getopt(ac, av, o) BSDgetopt(ac, av, o)
339 #define opterr BSDopterr
340 #define optind BSDoptind
341 #define optopt BSDoptopt
342 #define optreset BSDoptreset
343 #define optarg BSDoptarg
344 #endif
345 #endif
347 /* Check for some of the non-portable timespec*() functions.
348 * This should largely come from libbsd for systems which
349 * aren't BSD, but this will depend on how old the library
350 * is.
351 */
352 #ifndef timespecisset
353 #define timespecisset(tsp) \
354 ((tsp)->tv_sec || (tsp)->tv_nsec)
355 #endif
357 #ifndef timespecsub
358 #define timespecsub(tsp, usp, vsp) \
359 do { \
360 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
361 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
362 if ((vsp)->tv_nsec < 0) { \
363 (vsp)->tv_sec--; \
364 (vsp)->tv_nsec += 1000000000L; \
365 } \
366 } while (0)
367 #endif
369 #ifndef timespeccmp
370 #define timespeccmp(tvp, uvp, cmp) \
371 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
372 ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
373 ((tvp)->tv_sec cmp (uvp)->tv_sec))
374 #endif
376 #ifndef HAVE_BSD_MERGESORT
377 /* mergesort.c */
378 int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));
379 #endif