2 * Copyright (c) 2023 Thomas Adam <thomas@xteddy.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #ifndef _GOT_COMPAT_H_2
18 #define _GOT_COMPAT_H_2
23 #if defined(__FreeBSD__)
24 #include <sys/endian.h>
25 #include <sys/capsicum.h>
26 #elif defined(__APPLE__)
27 #include <machine/endian.h>
28 #include <libkern/OSByteOrder.h>
29 #include "compat/bsd-poll.h"
31 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
33 #define htobe16(x) OSSwapHostToBigInt16(x)
34 #define htole16(x) OSSwapHostToLittleInt16(x)
35 #define be16toh(x) OSSwapBigToHostInt16(x)
36 #define le16toh(x) OSSwapLittleToHostInt16(x)
38 #define htobe32(x) OSSwapHostToBigInt32(x)
39 #define htole32(x) OSSwapHostToLittleInt32(x)
40 #define be32toh(x) OSSwapBigToHostInt32(x)
41 #define le32toh(x) OSSwapLittleToHostInt32(x)
43 #define htobe64(x) OSSwapHostToBigInt64(x)
44 #define htole64(x) OSSwapHostToLittleInt64(x)
45 #define be64toh(x) OSSwapBigToHostInt64(x)
46 #define le64toh(x) OSSwapLittleToHostInt64(x)
48 #define st_atim st_atimespec
49 #define st_ctim st_ctimespec
50 #define st_mtim st_mtimespec
52 #else /* Linux, etc... */
59 #define __attribute__(a)
61 #define __bounded__(a, b, c)
75 #define flock(fd, op) (0)
80 /* POSIX doesn't define WAIT_ANY, so provide it if it's not found. */
85 /* On FreeBSD (and possibly others), EAI_NODATA was removed, in favour of
89 #define EAI_NODATA EAI_NONAME
93 #define __dead __attribute__ ((__noreturn__))
97 #define __unused __attribute__ ((__unused__))
101 #define pledge(s, p) (0)
102 #define unveil(s, p) (0)
106 #define cap_enter() (0)
109 #ifndef HAVE_B64_NTOP
112 int b64_ntop(u_char
const *, size_t, char *, size_t);
113 int b64_pton(char const *, u_char
*, size_t);
116 #ifndef HAVE_SETRESGID
117 #define setresgid(a, b, c) (0)
120 #ifndef HAVE_SETRESUID
121 #define setresuid(a, b, c) (0)
124 #ifndef HAVE_LINUX_LANDLOCK_H
125 #define landlock_no_fs() (0)
127 int landlock_no_fs(void);
134 #ifndef HAVE_BSD_UUID
135 #include <uuid/uuid.h>
137 #define uuid_s_bad_version 1
138 #define uuid_s_invalid_string_uuid 2
139 #define uuid_s_no_memory 3
141 /* Length of a node address (an IEEE 802 address). */
142 #define _UUID_NODE_LEN 6
147 uint16_t time_hi_and_version
;
148 uint8_t clock_seq_hi_and_reserved
;
149 uint8_t clock_seq_low
;
150 uint8_t node
[_UUID_NODE_LEN
];
153 int32_t uuid_equal(struct uuid
*, struct uuid
*, uint32_t *);
154 int32_t uuid_is_nil(struct uuid
*, uint32_t *);
155 void uuid_create(uuid_t
*, uint32_t *);
156 void uuid_create_nil(struct uuid
*, uint32_t *);
157 void uuid_from_string(const char *, uuid_t
*, uint32_t *);
158 void uuid_to_string(uuid_t
*, char **, uint32_t *);
166 #include <inttypes.h>
170 #include <sys/queue.h>
174 #include "compat/tree.h"
176 #include <sys/tree.h>
183 #ifdef HAVE_LIBUTIL_H
188 # define IOV_MAX 1024
192 #include "compat/imsg.h"
198 #include "compat/siphash.h"
203 /* Include Apple-specific headers. Mostly for crypto.*/
204 #if defined(__APPLE__)
205 #define COMMON_DIGEST_FOR_OPENSSL
206 #include <CommonCrypto/CommonDigest.h>
208 #define SHA512_BLOCK_LENGTH 128
209 typedef struct _SHA2_CTX
{
214 u_int64_t bitcount
[2];
215 u_int8_t buffer
[SHA512_BLOCK_LENGTH
];
219 #if defined(__APPLE__) || defined(__NetBSD__)
220 #define SHA256Init SHA256_Init
221 #define SHA256Update SHA256_Update
222 #define SHA256Final SHA256_Final
242 /* Catch-all for systems where the header files don't exist and/or the below
243 * still are not defined.
245 #ifndef SHA256_DIGEST_LENGTH
246 #define SHA256_DIGEST_LENGTH 32
249 #ifndef SHA256_DIGEST_STRING_LENGTH
250 #define SHA256_DIGEST_STRING_LENGTH (SHA256_DIGEST_LENGTH * 2 + 1)
253 #if defined(__DragonFly__)
254 #include <openssl/sha.h>
257 #ifndef SHA1_DIGEST_LENGTH
258 #define SHA1_DIGEST_LENGTH SHA_DIGEST_LENGTH
259 #define SHA1_DIGEST_STRING_LENGTH (SHA1_DIGEST_LENGTH * 2 + 1)
261 #define SHA1_CTX SHA_CTX
262 #define SHA1Init SHA1_Init
263 #define SHA1Update SHA1_Update
264 #define SHA1Final SHA1_Final
268 * The following SA_LEN/SS_LEN dance comes from various source, notably
269 * OpenSMTP by way of OpenNTPD and OpenBGPD (thanks everyone!). got-portable
270 * has tweaked a lot of the following macros to suit the needs of
274 /* From OpenNTPD portable */
276 # if defined(HAVE_STRUCT_SOCKADDR_SA_LEN)
277 # define SA_LEN(x) ((x)->sa_len)
279 # define SA_LEN(x) ((x)->sa_family == AF_INET6 ? \
280 sizeof(struct sockaddr_in6) : \
281 sizeof(struct sockaddr_in))
286 /* From OpenBGPD portable */
288 # if defined(HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN)
289 # define SS_LEN(x) ((x)->ss_len)
291 # define SS_LEN(x) SA_LEN((struct sockaddr *)(x))
295 /* SOCK_NONBLOCK isn't available across BSDs... */
296 #if !defined(SOCK_NONBLOCK) && !defined(__linux__)
297 #define SOCK_NONBLOCK 00004000
300 #ifndef HAVE_ASPRINTF
302 int asprintf(char **, const char *, ...);
303 int vasprintf(char **, const char *, va_list);
306 #ifndef HAVE_EXPLICIT_BZERO
307 /* explicit_bzero.c */
308 void explicit_bzero(void *, size_t);
311 #ifndef HAVE_GETDTABLECOUNT
312 /* getdtablecount.c */
313 int getdtablecount(void);
316 #ifndef HAVE_CLOSEFROM
323 char *strsep(char **, const char *);
326 #ifndef HAVE_STRTONUM
328 long long strtonum(const char *, long long, long long, const char **);
333 size_t strlcpy(char *, const char *, size_t);
338 size_t strlcat(char *, const char *, size_t);
343 size_t strnlen(const char *, size_t);
348 char *strndup(const char *, size_t);
351 #ifndef HAVE_GETPROGNAME
353 const char *getprogname(void);
358 ssize_t
getline(char **, size_t *, FILE *);
361 #ifndef HAVE_FREEZERO
363 void freezero(void *, size_t);
366 #ifndef HAVE_GETDTABLECOUNT
367 /* getdtablecount.c */
368 int getdtablecount(void);
371 #ifndef HAVE_REALLOCARRAY
373 void *reallocarray(void *, size_t, size_t);
376 #ifndef HAVE_RECALLOCARRAY
377 /* recallocarray.c */
378 void *recallocarray(void *, size_t, size_t, size_t);
381 #ifndef HAVE_SETPROCTITLE
383 void setproctitle(const char *, ...);
386 #ifndef HAVE_FMT_SCALED
388 int fmt_scaled(long long, char *);
389 int scan_scaled(char *, long long *);
390 #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
393 #if !defined(HAVE_LIBBSD) && !defined(HAVE_GETOPT_OPTRESET)
395 extern int BSDopterr
;
396 extern int BSDoptind
;
397 extern int BSDoptopt
;
398 extern int BSDoptreset
;
399 extern char *BSDoptarg
;
400 int BSDgetopt(int, char *const *, const char *);
401 #define getopt(ac, av, o) BSDgetopt(ac, av, o)
402 #define opterr BSDopterr
403 #define optind BSDoptind
404 #define optopt BSDoptopt
405 #define optreset BSDoptreset
406 #define optarg BSDoptarg
409 /* Check for some of the non-portable timespec*() functions.
410 * This should largely come from libbsd for systems which
411 * aren't BSD, but this will depend on how old the library
414 #ifndef timespecisset
415 #define timespecisset(tsp) \
416 ((tsp)->tv_sec || (tsp)->tv_nsec)
420 #define timespecsub(tsp, usp, vsp) \
422 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
423 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
424 if ((vsp)->tv_nsec < 0) { \
426 (vsp)->tv_nsec += 1000000000L; \
432 #define timespeccmp(tvp, uvp, cmp) \
433 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
434 ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
435 ((tvp)->tv_sec cmp (uvp)->tv_sec))
438 #ifndef HAVE_MERGESORT
440 int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));