]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netlabel/netlabel_domainhash.h
netlabel: Add support for enumerating the CALIPSO DOI list.
[mirror_ubuntu-artful-kernel.git] / net / netlabel / netlabel_domainhash.h
CommitLineData
d15c345f
PM
1/*
2 * NetLabel Domain Hash Table
3 *
4 * This file manages the domain hash table that NetLabel uses to determine
5 * which network labeling protocol to use for a given domain. The NetLabel
6 * system manages static and dynamic label mappings for network protocols such
7 * as CIPSO and RIPSO.
8 *
82c21bfa 9 * Author: Paul Moore <paul@paul-moore.com>
d15c345f
PM
10 *
11 */
12
13/*
63c41688 14 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008
d15c345f
PM
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
24 * the GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
d484ff15 27 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d15c345f
PM
28 *
29 */
30
31#ifndef _NETLABEL_DOMAINHASH_H
32#define _NETLABEL_DOMAINHASH_H
33
7a0e1d60
PM
34#include <linux/types.h>
35#include <linux/rcupdate.h>
36#include <linux/list.h>
37
63c41688
PM
38#include "netlabel_addrlist.h"
39
d15c345f
PM
40/* Domain hash table size */
41/* XXX - currently this number is an uneducated guess */
42#define NETLBL_DOMHSH_BITSIZE 7
43
63c41688 44/* Domain mapping definition structures */
6a8b7f0c
PM
45struct netlbl_domaddr_map {
46 struct list_head list4;
47 struct list_head list6;
48};
49struct netlbl_dommap_def {
50 u32 type;
51 union {
52 struct netlbl_domaddr_map *addrsel;
53 struct cipso_v4_doi *cipso;
54 };
55};
63c41688
PM
56#define netlbl_domhsh_addr4_entry(iter) \
57 container_of(iter, struct netlbl_domaddr4_map, list)
58struct netlbl_domaddr4_map {
6a8b7f0c 59 struct netlbl_dommap_def def;
63c41688
PM
60
61 struct netlbl_af4list list;
62};
63#define netlbl_domhsh_addr6_entry(iter) \
64 container_of(iter, struct netlbl_domaddr6_map, list)
65struct netlbl_domaddr6_map {
6a8b7f0c 66 struct netlbl_dommap_def def;
63c41688
PM
67
68 struct netlbl_af6list list;
69};
6a8b7f0c 70
d15c345f
PM
71struct netlbl_dom_map {
72 char *domain;
8f18e675 73 u16 family;
6a8b7f0c 74 struct netlbl_dommap_def def;
d15c345f
PM
75
76 u32 valid;
77 struct list_head list;
78 struct rcu_head rcu;
79};
80
81/* init function */
82int netlbl_domhsh_init(u32 size);
83
84/* Manipulate the domain hash table */
95d4e6be
PM
85int netlbl_domhsh_add(struct netlbl_dom_map *entry,
86 struct netlbl_audit *audit_info);
87int netlbl_domhsh_add_default(struct netlbl_dom_map *entry,
88 struct netlbl_audit *audit_info);
b1edeb10
PM
89int netlbl_domhsh_remove_entry(struct netlbl_dom_map *entry,
90 struct netlbl_audit *audit_info);
6c2e8ac0
PM
91int netlbl_domhsh_remove_af4(const char *domain,
92 const struct in_addr *addr,
93 const struct in_addr *mask,
94 struct netlbl_audit *audit_info);
8f18e675
HD
95int netlbl_domhsh_remove(const char *domain, u16 family,
96 struct netlbl_audit *audit_info);
97int netlbl_domhsh_remove_default(u16 family, struct netlbl_audit *audit_info);
98struct netlbl_dom_map *netlbl_domhsh_getentry(const char *domain, u16 family);
6a8b7f0c
PM
99struct netlbl_dommap_def *netlbl_domhsh_getentry_af4(const char *domain,
100 __be32 addr);
101#if IS_ENABLED(CONFIG_IPV6)
102struct netlbl_dommap_def *netlbl_domhsh_getentry_af6(const char *domain,
103 const struct in6_addr *addr);
104#endif /* IPv6 */
105
fcd48280
PM
106int netlbl_domhsh_walk(u32 *skip_bkt,
107 u32 *skip_chain,
108 int (*callback) (struct netlbl_dom_map *entry, void *arg),
109 void *cb_arg);
d15c345f
PM
110
111#endif