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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
|
/*-
* Copyright (c) 2008 Apple Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/socket.h>
#include <security/audit/audit.h>
#include <bsm/audit_domain.h>
#include <bsm/audit_record.h>
struct bsm_domain {
u_short bd_bsm_domain;
int bd_local_domain;
};
#define PF_NO_LOCAL_MAPPING -600
static const struct bsm_domain bsm_domains[] = {
{ BSM_PF_UNSPEC, PF_UNSPEC },
{ BSM_PF_LOCAL, PF_LOCAL },
{ BSM_PF_INET, PF_INET },
{ BSM_PF_IMPLINK,
#ifdef PF_IMPLINK
PF_IMPLINK
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_PUP,
#ifdef PF_PUP
PF_PUP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_CHAOS,
#ifdef PF_CHAOS
PF_CHAOS
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_NS,
#ifdef PF_NS
PF_NS
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_NBS,
#ifdef PF_NBS
PF_NBS
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ECMA,
#ifdef PF_ECMA
PF_ECMA
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_DATAKIT,
#ifdef PF_DATAKIT
PF_DATAKIT
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_CCITT,
#ifdef PF_CCITT
PF_CCITT
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_SNA, PF_SNA },
{ BSM_PF_DECnet, PF_DECnet },
{ BSM_PF_DLI,
#ifdef PF_DLI
PF_DLI
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_LAT,
#ifdef PF_LAT
PF_LAT
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_HYLINK,
#ifdef PF_HYLINK
PF_HYLINK
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_APPLETALK, PF_APPLETALK },
{ BSM_PF_NIT,
#ifdef PF_NIT
PF_NIT
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_802,
#ifdef PF_802
PF_802
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_OSI,
#ifdef PF_OSI
PF_OSI
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_X25,
#ifdef PF_X25
PF_X25
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_OSINET,
#ifdef PF_OSINET
PF_OSINET
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_GOSIP,
#ifdef PF_GOSIP
PF_GOSIP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_IPX, PF_IPX },
{ BSM_PF_ROUTE, PF_ROUTE },
{ BSM_PF_LINK,
#ifdef PF_LINK
PF_LINK
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_INET6, PF_INET6 },
{ BSM_PF_KEY, PF_KEY },
{ BSM_PF_NCA,
#ifdef PF_NCA
PF_NCA
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_POLICY,
#ifdef PF_POLICY
PF_POLICY
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_INET_OFFLOAD,
#ifdef PF_INET_OFFLOAD
PF_INET_OFFLOAD
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_NETBIOS,
#ifdef PF_NETBIOS
PF_NETBIOS
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ISO,
#ifdef PF_ISO
PF_ISO
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_XTP,
#ifdef PF_XTP
PF_XTP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_COIP,
#ifdef PF_COIP
PF_COIP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_CNT,
#ifdef PF_CNT
PF_CNT
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_RTIP,
#ifdef PF_RTIP
PF_RTIP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_SIP,
#ifdef PF_SIP
PF_SIP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_PIP,
#ifdef PF_PIP
PF_PIP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ISDN,
#ifdef PF_ISDN
PF_ISDN
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_E164,
#ifdef PF_E164
PF_E164
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_NATM,
#ifdef PF_NATM
PF_NATM
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ATM,
#ifdef PF_ATM
PF_ATM
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_NETGRAPH,
#ifdef PF_NETGRAPH
PF_NETGRAPH
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_SLOW,
#ifdef PF_SLOW
PF_SLOW
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_SCLUSTER,
#ifdef PF_SCLUSTER
PF_SCLUSTER
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ARP,
#ifdef PF_ARP
PF_ARP
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_BLUETOOTH,
#ifdef PF_BLUETOOTH
PF_BLUETOOTH
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_AX25,
#ifdef PF_AX25
PF_AX25
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ROSE,
#ifdef PF_ROSE
PF_ROSE
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_NETBEUI,
#ifdef PF_NETBEUI
PF_NETBEUI
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_SECURITY,
#ifdef PF_SECURITY
PF_SECURITY
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_PACKET,
#ifdef PF_PACKET
PF_PACKET
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ASH,
#ifdef PF_ASH
PF_ASH
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ECONET,
#ifdef PF_ECONET
PF_ECONET
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_ATMSVC,
#ifdef PF_ATMSVC
PF_ATMSVC
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_IRDA,
#ifdef PF_IRDA
PF_IRDA
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_PPPOX,
#ifdef PF_PPPOX
PF_PPPOX
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_WANPIPE,
#ifdef PF_WANPIPE
PF_WANPIPE
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_LLC,
#ifdef PF_LLC
PF_LLC
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_CAN,
#ifdef PF_CAN
PF_CAN
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_TIPC,
#ifdef PF_TIPC
PF_TIPC
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_IUCV,
#ifdef PF_IUCV
PF_IUCV
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_RXRPC,
#ifdef PF_RXRPC
PF_RXRPC
#else
PF_NO_LOCAL_MAPPING
#endif
},
{ BSM_PF_PHONET,
#ifdef PF_PHONET
PF_PHONET
#else
PF_NO_LOCAL_MAPPING
#endif
},
};
static const int bsm_domains_count = sizeof(bsm_domains) /
sizeof(bsm_domains[0]);
static const struct bsm_domain *
bsm_lookup_local_domain(int local_domain)
{
int i;
for (i = 0; i < bsm_domains_count; i++) {
if (bsm_domains[i].bd_local_domain == local_domain)
return (&bsm_domains[i]);
}
return (NULL);
}
u_short
au_domain_to_bsm(int local_domain)
{
const struct bsm_domain *bstp;
bstp = bsm_lookup_local_domain(local_domain);
if (bstp == NULL)
return (BSM_PF_UNKNOWN);
return (bstp->bd_bsm_domain);
}
static const struct bsm_domain *
bsm_lookup_bsm_domain(u_short bsm_domain)
{
int i;
for (i = 0; i < bsm_domains_count; i++) {
if (bsm_domains[i].bd_bsm_domain == bsm_domain)
return (&bsm_domains[i]);
}
return (NULL);
}
int
au_bsm_to_domain(u_short bsm_domain, int *local_domainp)
{
const struct bsm_domain *bstp;
bstp = bsm_lookup_bsm_domain(bsm_domain);
if (bstp == NULL || bstp->bd_local_domain)
return (-1);
*local_domainp = bstp->bd_local_domain;
return (0);
}
|