1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* $OpenBSD: kern_compat.h,v 1.14 2023/04/18 16:57:44 bluhm Exp $ */
#ifndef _KERN_COMPAT_H_
#define _KERN_COMPAT_H_
#include <sys/socket.h>
#include <sys/domain.h>
#include <sys/queue.h>
#include <sys/mutex.h>
#include <sys/rwlock.h>
#include <sys/task.h>
#include <sys/select.h>
#include <arpa/inet.h>
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <limits.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "srp_compat.h"
#define _KERNEL
#define DIAGNOSTIC
#define INET
#define INET6
#define KASSERT(x) assert(x)
#define KERNEL_ASSERT_LOCKED() /* nothing */
#define KERNEL_LOCK() /* nothing */
#define KERNEL_UNLOCK() /* nothing */
#define NET_ASSERT_UNLOCKED() /* nothing */
#define NET_ASSERT_LOCKED() /* nothing */
#define NET_ASSERT_LOCKED_EXCLUSIVE() /* nothing */
#define panic(x...) errx(1, x)
#define malloc(size, bucket, flag) calloc(1, size)
#define mallocarray(nelems, size, bucket, flag) calloc(nelems, size)
#define free(x, bucket, size) free(x)
struct pool {
size_t pr_size;
};
#define pool_init(a, b, c, d, e, f, g) do { (a)->pr_size = (b); } while (0)
#define pool_setipl(pp, ipl) /* nothing */
#define pool_get(pp, flags) malloc((pp)->pr_size, 0, 0)
#define pool_put(pp, rp) free((rp), 0, 0)
#define log(lvl, x...) fprintf(stderr, x)
#define min(a, b) (a < b ? a : b)
#define max(a, b) (a < b ? b : a)
#ifndef nitems
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
#endif
#ifndef IPL_NONE
#define IPL_NONE 0
#endif
#define mtx_enter(_mtx) /* nothing */
#define mtx_leave(_mtx) /* nothing */
#define task_add(_tq, _t) ((_t)->t_func((_t)->t_arg))
extern struct domain *domains[];
#define IPL_SOFTNET 0
#define rw_init(rwl, name)
#define rw_enter_write(rwl)
#define rw_exit_write(rwl)
#define rw_assert_wrlock(rwl)
#define refcnt_read(cnt) 1
#define SET(t, f) ((t) |= (f))
#define CLR(t, f) ((t) &= ~(f))
#define ISSET(t, f) ((t) & (f))
struct rtentry;
int rt_hash(struct rtentry *, struct sockaddr *, uint32_t *);
#endif /* _KERN_COMPAT_H_ */
|