7 #if defined(__FreeBSD__)
8 #include <sys/endian.h>
9 #elif defined(__APPLE__)
10 #include <machine/endian.h>
11 #include <libkern/OSByteOrder.h>
12 #include "compat/bsd-poll.h"
14 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
16 #define htobe16(x) OSSwapHostToBigInt16(x)
17 #define htole16(x) OSSwapHostToLittleInt16(x)
18 #define be16toh(x) OSSwapBigToHostInt16(x)
19 #define le16toh(x) OSSwapLittleToHostInt16(x)
21 #define htobe32(x) OSSwapHostToBigInt32(x)
22 #define htole32(x) OSSwapHostToLittleInt32(x)
23 #define be32toh(x) OSSwapBigToHostInt32(x)
24 #define le32toh(x) OSSwapLittleToHostInt32(x)
26 #define htobe64(x) OSSwapHostToBigInt64(x)
27 #define htole64(x) OSSwapHostToLittleInt64(x)
28 #define be64toh(x) OSSwapBigToHostInt64(x)
29 #define le64toh(x) OSSwapLittleToHostInt64(x)
31 #define st_atim st_atimespec
32 #define st_ctim st_ctimespec
33 #define st_mtim st_mtimespec
35 #else /* Linux, etc... */
58 #define flock(fd, op) (0)
64 #define __dead __attribute__ ((__noreturn__))
68 #define pledge(s, p) (0)
69 #define unveil(s, p) (0)
72 #ifndef HAVE_LINUX_LANDLOCK_H
73 #define landlock_no_fs() (0)
75 int landlock_no_fs(void);
83 #include <uuid/uuid.h>
85 #define uuid_s_bad_version 1
86 #define uuid_s_invalid_string_uuid 2
87 #define uuid_s_no_memory 3
89 /* Length of a node address (an IEEE 802 address). */
90 #define _UUID_NODE_LEN 6
95 uint16_t time_hi_and_version;
96 uint8_t clock_seq_hi_and_reserved;
97 uint8_t clock_seq_low;
98 uint8_t node[_UUID_NODE_LEN];
101 int32_t uuid_equal(struct uuid *, struct uuid *, uint32_t *);
102 int32_t uuid_is_nil(struct uuid *, uint32_t *);
103 void uuid_create(uuid_t *, uint32_t *);
104 void uuid_create_nil(struct uuid *, uint32_t *);
105 void uuid_from_string(const char *, uuid_t *, uint32_t *);
106 void uuid_to_string(uuid_t *, char **, uint32_t *);
114 #include <inttypes.h>
118 #include <sys/queue.h>
120 #include "compat/queue.h"
124 #include <sys/tree.h>
126 #include "compat/tree.h"
133 #ifdef HAVE_LIBUTIL_H
139 #include "compat/imsg.h"
142 /* Include Apple-specific headers. Mostly for crypto.*/
143 #if defined(__APPLE__)
144 #define COMMON_DIGEST_FOR_OPENSSL
145 #include <CommonCrypto/CommonDigest.h>
148 #if defined(HAVE_LIBCRYPTO) && !defined(__APPLE__) && !defined(__DragonFly__)
150 #elif !defined(__APPLE__) && !defined(__DragonFly__)
152 #elif defined(__DragonFly__)
153 #include <openssl/sha.h>
156 #if !defined(HAVE_LIBCRYPTO) || defined(__APPLE__) || defined(__DragonFly__)
157 #define SHA1_DIGEST_LENGTH SHA_DIGEST_LENGTH
158 #define SHA1_DIGEST_STRING_LENGTH (SHA1_DIGEST_LENGTH * 2 + 1)
160 #define SHA1_CTX SHA_CTX
161 #define SHA1Init SHA1_Init
162 #define SHA1Update SHA1_Update
163 #define SHA1Final SHA1_Final
166 #ifndef HAVE_ASPRINTF
168 int asprintf(char **, const char *, ...);
169 int vasprintf(char **, const char *, va_list);
172 #ifndef HAVE_EXPLICIT_BZERO
173 /* explicit_bzero.c */
174 void explicit_bzero(void *, size_t);
177 #ifndef HAVE_GETDTABLECOUNT
178 /* getdtablecount.c */
179 int getdtablecount(void);
182 #ifndef HAVE_CLOSEFROM
187 #if defined (__FreeBSD__)
188 #define closefrom(fd) (closefrom(fd), 0)
193 char *strsep(char **, const char *);
196 #ifndef HAVE_STRTONUM
198 long long strtonum(const char *, long long, long long, const char **);
203 size_t strlcpy(char *, const char *, size_t);
208 size_t strlcat(char *, const char *, size_t);
213 size_t strnlen(const char *, size_t);
218 char *strndup(const char *, size_t);
221 #ifndef HAVE_GETPROGNAME
223 const char *getprogname(void);
228 ssize_t getline(char **, size_t *, FILE *);
231 #ifndef HAVE_FREEZERO
233 void freezero(void *, size_t);
236 #ifndef HAVE_GETDTABLECOUNT
237 /* getdtablecount.c */
238 int getdtablecount(void);
241 #ifndef HAVE_REALLOCARRAY
243 void *reallocarray(void *, size_t, size_t);
246 #ifndef HAVE_RECALLOCARRAY
247 /* recallocarray.c */
248 void *recallocarray(void *, size_t, size_t, size_t);
251 #ifndef HAVE_FMT_SCALED
253 int fmt_scaled(long long, char *);
254 int scan_scaled(char *, long long *);
255 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
260 extern int BSDopterr;
261 extern int BSDoptind;
262 extern int BSDoptopt;
263 extern int BSDoptreset;
264 extern char *BSDoptarg;
265 int BSDgetopt(int, char *const *, const char *);
266 #define getopt(ac, av, o) BSDgetopt(ac, av, o)
267 #define opterr BSDopterr
268 #define optind BSDoptind
269 #define optopt BSDoptopt
270 #define optreset BSDoptreset
271 #define optarg BSDoptarg
275 /* Check for some of the non-portable timespec*() functions.
276 * This should largely come from libbsd for systems which
277 * aren't BSD, but this will depend on how old the library
280 #ifndef timespecisset
281 #define timespecisset(tsp) \
282 ((tsp)->tv_sec || (tsp)->tv_nsec)
286 #define timespecsub(tsp, usp, vsp) \
288 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
289 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
290 if ((vsp)->tv_nsec < 0) { \
292 (vsp)->tv_nsec += 1000000000L; \
298 #define timespeccmp(tvp, uvp, cmp) \
299 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
300 ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
301 ((tvp)->tv_sec cmp (uvp)->tv_sec))
304 #ifndef HAVE_BSD_MERGESORT
306 int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));