]>
git.saurik.com Git - apple/xnu.git/blob - bsd/security/audit/audit_bsm_domain.c
2 * Copyright (c) 2008-2009 Apple Inc.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR
21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
26 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/param.h>
32 #include <sys/socket.h>
34 #include <security/audit/audit.h>
36 #include <bsm/audit_domain.h>
37 #include <bsm/audit_record.h>
41 u_short bd_bsm_domain
;
45 #define PF_NO_LOCAL_MAPPING -600
47 static const struct bsm_domain bsm_domains
[] = {
48 { BSM_PF_UNSPEC
, PF_UNSPEC
},
49 { BSM_PF_LOCAL
, PF_LOCAL
},
50 { BSM_PF_INET
, PF_INET
},
107 { BSM_PF_SNA
, PF_SNA
},
108 { BSM_PF_DECnet
, PF_DECnet
},
130 { BSM_PF_APPLETALK
, PF_APPLETALK
},
173 { BSM_PF_IPX
, PF_IPX
},
174 { BSM_PF_ROUTE
, PF_ROUTE
},
182 { BSM_PF_INET6
, PF_INET6
},
183 { BSM_PF_KEY
, PF_KEY
},
198 { BSM_PF_INET_OFFLOAD
,
199 #ifdef PF_INET_OFFLOAD
451 static const int bsm_domains_count
= sizeof(bsm_domains
) /
452 sizeof(bsm_domains
[0]);
454 static const struct bsm_domain
*
455 bsm_lookup_local_domain(int local_domain
)
459 for (i
= 0; i
< bsm_domains_count
; i
++) {
460 if (bsm_domains
[i
].bd_local_domain
== local_domain
)
461 return (&bsm_domains
[i
]);
467 au_domain_to_bsm(int local_domain
)
469 const struct bsm_domain
*bstp
;
471 bstp
= bsm_lookup_local_domain(local_domain
);
473 return (BSM_PF_UNKNOWN
);
474 return (bstp
->bd_bsm_domain
);
477 static const struct bsm_domain
*
478 bsm_lookup_bsm_domain(u_short bsm_domain
)
482 for (i
= 0; i
< bsm_domains_count
; i
++) {
483 if (bsm_domains
[i
].bd_bsm_domain
== bsm_domain
)
484 return (&bsm_domains
[i
]);
490 au_bsm_to_domain(u_short bsm_domain
, int *local_domainp
)
492 const struct bsm_domain
*bstp
;
494 bstp
= bsm_lookup_bsm_domain(bsm_domain
);
495 if (bstp
== NULL
|| bstp
->bd_local_domain
)
497 *local_domainp
= bstp
->bd_local_domain
;
500 #endif /* CONFIG_AUDIT */