blob: f1dee0d5e5e2dbb67155c749d605e9b32d60e8cd [file] [log] [blame]
Paul Moored15c3452006-08-03 16:48:37 -07001/*
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 *
Paul Moore82c21bf2011-08-01 11:10:33 +00009 * Author: Paul Moore <paul@paul-moore.com>
Paul Moored15c3452006-08-03 16:48:37 -070010 *
11 */
12
13/*
Paul Moore63c41682008-10-10 10:16:32 -040014 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008
Paul Moored15c3452006-08-03 16:48:37 -070015 *
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
Jeff Kirsherd484ff12013-12-06 09:13:41 -080027 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Paul Moored15c3452006-08-03 16:48:37 -070028 *
29 */
30
31#include <linux/types.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020032#include <linux/rculist.h>
Paul Moored15c3452006-08-03 16:48:37 -070033#include <linux/skbuff.h>
34#include <linux/spinlock.h>
35#include <linux/string.h>
Paul Moore32f50cd2006-09-28 14:51:47 -070036#include <linux/audit.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Paul Moored15c3452006-08-03 16:48:37 -070038#include <net/netlabel.h>
39#include <net/cipso_ipv4.h>
Huw Daviesdc7de732016-06-27 15:02:49 -040040#include <net/calipso.h>
Paul Moored15c3452006-08-03 16:48:37 -070041#include <asm/bug.h>
42
43#include "netlabel_mgmt.h"
Paul Moore63c41682008-10-10 10:16:32 -040044#include "netlabel_addrlist.h"
Huw Daviesdc7de732016-06-27 15:02:49 -040045#include "netlabel_calipso.h"
Paul Moored15c3452006-08-03 16:48:37 -070046#include "netlabel_domainhash.h"
Paul Moore32f50cd2006-09-28 14:51:47 -070047#include "netlabel_user.h"
Paul Moored15c3452006-08-03 16:48:37 -070048
49struct netlbl_domhsh_tbl {
50 struct list_head *tbl;
51 u32 size;
52};
53
54/* Domain hash table */
Paul Mooreb914f3a2010-04-01 10:43:57 +000055/* updates should be so rare that having one spinlock for the entire hash table
56 * should be okay */
Adrian Bunk8ce11e62006-08-07 21:50:48 -070057static DEFINE_SPINLOCK(netlbl_domhsh_lock);
Paul Mooreb914f3a2010-04-01 10:43:57 +000058#define netlbl_domhsh_rcu_deref(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +020059 rcu_dereference_check(p, lockdep_is_held(&netlbl_domhsh_lock))
Huw Davies96a8f7f2016-06-27 15:02:45 -040060static struct netlbl_domhsh_tbl __rcu *netlbl_domhsh;
Huw Davies8f18e672016-06-27 15:02:46 -040061static struct netlbl_dom_map __rcu *netlbl_domhsh_def_ipv4;
62static struct netlbl_dom_map __rcu *netlbl_domhsh_def_ipv6;
Paul Moored15c3452006-08-03 16:48:37 -070063
64/*
65 * Domain Hash Table Helper Functions
66 */
67
68/**
69 * netlbl_domhsh_free_entry - Frees a domain hash table entry
70 * @entry: the entry's RCU field
71 *
72 * Description:
73 * This function is designed to be used as a callback to the call_rcu()
74 * function so that the memory allocated to a hash table entry can be released
75 * safely.
76 *
77 */
78static void netlbl_domhsh_free_entry(struct rcu_head *entry)
79{
80 struct netlbl_dom_map *ptr;
Paul Moore63c41682008-10-10 10:16:32 -040081 struct netlbl_af4list *iter4;
82 struct netlbl_af4list *tmp4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +000083#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -040084 struct netlbl_af6list *iter6;
85 struct netlbl_af6list *tmp6;
86#endif /* IPv6 */
Paul Moored15c3452006-08-03 16:48:37 -070087
88 ptr = container_of(entry, struct netlbl_dom_map, rcu);
Paul Moore6a8b7f02013-08-02 14:45:08 -040089 if (ptr->def.type == NETLBL_NLTYPE_ADDRSELECT) {
Paul Moore63c41682008-10-10 10:16:32 -040090 netlbl_af4list_foreach_safe(iter4, tmp4,
Paul Moore6a8b7f02013-08-02 14:45:08 -040091 &ptr->def.addrsel->list4) {
Paul Moore63c41682008-10-10 10:16:32 -040092 netlbl_af4list_remove_entry(iter4);
93 kfree(netlbl_domhsh_addr4_entry(iter4));
94 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +000095#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -040096 netlbl_af6list_foreach_safe(iter6, tmp6,
Paul Moore6a8b7f02013-08-02 14:45:08 -040097 &ptr->def.addrsel->list6) {
Paul Moore63c41682008-10-10 10:16:32 -040098 netlbl_af6list_remove_entry(iter6);
99 kfree(netlbl_domhsh_addr6_entry(iter6));
100 }
101#endif /* IPv6 */
102 }
Paul Moored15c3452006-08-03 16:48:37 -0700103 kfree(ptr->domain);
104 kfree(ptr);
105}
106
107/**
108 * netlbl_domhsh_hash - Hashing function for the domain hash table
109 * @domain: the domain name to hash
110 *
111 * Description:
112 * This is the hashing function for the domain hash table, it returns the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300113 * correct bucket number for the domain. The caller is responsible for
Paul Mooreb914f3a2010-04-01 10:43:57 +0000114 * ensuring that the hash table is protected with either a RCU read lock or the
115 * hash table lock.
Paul Moored15c3452006-08-03 16:48:37 -0700116 *
117 */
118static u32 netlbl_domhsh_hash(const char *key)
119{
120 u32 iter;
121 u32 val;
122 u32 len;
123
124 /* This is taken (with slight modification) from
125 * security/selinux/ss/symtab.c:symhash() */
126
127 for (iter = 0, val = 0, len = strlen(key); iter < len; iter++)
128 val = (val << 4 | (val >> (8 * sizeof(u32) - 4))) ^ key[iter];
Paul Mooreb914f3a2010-04-01 10:43:57 +0000129 return val & (netlbl_domhsh_rcu_deref(netlbl_domhsh)->size - 1);
Paul Moored15c3452006-08-03 16:48:37 -0700130}
131
Huw Davies8f18e672016-06-27 15:02:46 -0400132static bool netlbl_family_match(u16 f1, u16 f2)
133{
134 return (f1 == f2) || (f1 == AF_UNSPEC) || (f2 == AF_UNSPEC);
135}
136
Paul Moored15c3452006-08-03 16:48:37 -0700137/**
138 * netlbl_domhsh_search - Search for a domain entry
139 * @domain: the domain
Huw Davies8f18e672016-06-27 15:02:46 -0400140 * @family: the address family
Paul Moored15c3452006-08-03 16:48:37 -0700141 *
142 * Description:
143 * Searches the domain hash table and returns a pointer to the hash table
Huw Davies8f18e672016-06-27 15:02:46 -0400144 * entry if found, otherwise NULL is returned. @family may be %AF_UNSPEC
145 * which matches any address family entries. The caller is responsible for
Paul Mooreb914f3a2010-04-01 10:43:57 +0000146 * ensuring that the hash table is protected with either a RCU read lock or the
147 * hash table lock.
Paul Moored15c3452006-08-03 16:48:37 -0700148 *
149 */
Huw Davies8f18e672016-06-27 15:02:46 -0400150static struct netlbl_dom_map *netlbl_domhsh_search(const char *domain,
151 u16 family)
Paul Moored15c3452006-08-03 16:48:37 -0700152{
153 u32 bkt;
Paul Moore56196702008-10-10 10:16:29 -0400154 struct list_head *bkt_list;
Paul Moored15c3452006-08-03 16:48:37 -0700155 struct netlbl_dom_map *iter;
156
157 if (domain != NULL) {
158 bkt = netlbl_domhsh_hash(domain);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000159 bkt_list = &netlbl_domhsh_rcu_deref(netlbl_domhsh)->tbl[bkt];
Paul Moore56196702008-10-10 10:16:29 -0400160 list_for_each_entry_rcu(iter, bkt_list, list)
Huw Davies8f18e672016-06-27 15:02:46 -0400161 if (iter->valid &&
162 netlbl_family_match(iter->family, family) &&
163 strcmp(iter->domain, domain) == 0)
Paul Moored15c3452006-08-03 16:48:37 -0700164 return iter;
165 }
166
Paul Mooreb64397e2008-01-29 08:37:54 -0500167 return NULL;
168}
169
170/**
171 * netlbl_domhsh_search_def - Search for a domain entry
172 * @domain: the domain
Huw Davies8f18e672016-06-27 15:02:46 -0400173 * @family: the address family
Paul Mooreb64397e2008-01-29 08:37:54 -0500174 *
175 * Description:
176 * Searches the domain hash table and returns a pointer to the hash table
177 * entry if an exact match is found, if an exact match is not present in the
178 * hash table then the default entry is returned if valid otherwise NULL is
Huw Davies8f18e672016-06-27 15:02:46 -0400179 * returned. @family may be %AF_UNSPEC which matches any address family
180 * entries. The caller is responsible ensuring that the hash table is
Paul Mooreb914f3a2010-04-01 10:43:57 +0000181 * protected with either a RCU read lock or the hash table lock.
Paul Mooreb64397e2008-01-29 08:37:54 -0500182 *
183 */
Huw Davies8f18e672016-06-27 15:02:46 -0400184static struct netlbl_dom_map *netlbl_domhsh_search_def(const char *domain,
185 u16 family)
Paul Mooreb64397e2008-01-29 08:37:54 -0500186{
187 struct netlbl_dom_map *entry;
188
Huw Davies8f18e672016-06-27 15:02:46 -0400189 entry = netlbl_domhsh_search(domain, family);
190 if (entry != NULL)
191 return entry;
192 if (family == AF_INET || family == AF_UNSPEC) {
193 entry = netlbl_domhsh_rcu_deref(netlbl_domhsh_def_ipv4);
194 if (entry != NULL && entry->valid)
195 return entry;
196 }
197 if (family == AF_INET6 || family == AF_UNSPEC) {
198 entry = netlbl_domhsh_rcu_deref(netlbl_domhsh_def_ipv6);
199 if (entry != NULL && entry->valid)
200 return entry;
Paul Moored15c3452006-08-03 16:48:37 -0700201 }
202
Huw Davies8f18e672016-06-27 15:02:46 -0400203 return NULL;
Paul Moored15c3452006-08-03 16:48:37 -0700204}
205
Paul Moore63c41682008-10-10 10:16:32 -0400206/**
207 * netlbl_domhsh_audit_add - Generate an audit entry for an add event
208 * @entry: the entry being added
209 * @addr4: the IPv4 address information
210 * @addr6: the IPv6 address information
211 * @result: the result code
212 * @audit_info: NetLabel audit information
213 *
214 * Description:
215 * Generate an audit record for adding a new NetLabel/LSM mapping entry with
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300216 * the given information. Caller is responsible for holding the necessary
Paul Moore63c41682008-10-10 10:16:32 -0400217 * locks.
218 *
219 */
220static void netlbl_domhsh_audit_add(struct netlbl_dom_map *entry,
221 struct netlbl_af4list *addr4,
222 struct netlbl_af6list *addr6,
223 int result,
224 struct netlbl_audit *audit_info)
225{
226 struct audit_buffer *audit_buf;
227 struct cipso_v4_doi *cipsov4 = NULL;
Huw Daviesdc7de732016-06-27 15:02:49 -0400228 struct calipso_doi *calipso = NULL;
Paul Moore63c41682008-10-10 10:16:32 -0400229 u32 type;
230
231 audit_buf = netlbl_audit_start_common(AUDIT_MAC_MAP_ADD, audit_info);
232 if (audit_buf != NULL) {
233 audit_log_format(audit_buf, " nlbl_domain=%s",
234 entry->domain ? entry->domain : "(default)");
235 if (addr4 != NULL) {
236 struct netlbl_domaddr4_map *map4;
237 map4 = netlbl_domhsh_addr4_entry(addr4);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400238 type = map4->def.type;
239 cipsov4 = map4->def.cipso;
Paul Moore63c41682008-10-10 10:16:32 -0400240 netlbl_af4list_audit_addr(audit_buf, 0, NULL,
241 addr4->addr, addr4->mask);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000242#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -0400243 } else if (addr6 != NULL) {
244 struct netlbl_domaddr6_map *map6;
245 map6 = netlbl_domhsh_addr6_entry(addr6);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400246 type = map6->def.type;
Huw Daviesdc7de732016-06-27 15:02:49 -0400247 calipso = map6->def.calipso;
Paul Moore63c41682008-10-10 10:16:32 -0400248 netlbl_af6list_audit_addr(audit_buf, 0, NULL,
249 &addr6->addr, &addr6->mask);
250#endif /* IPv6 */
251 } else {
Paul Moore6a8b7f02013-08-02 14:45:08 -0400252 type = entry->def.type;
253 cipsov4 = entry->def.cipso;
Huw Daviesdc7de732016-06-27 15:02:49 -0400254 calipso = entry->def.calipso;
Paul Moore63c41682008-10-10 10:16:32 -0400255 }
256 switch (type) {
257 case NETLBL_NLTYPE_UNLABELED:
258 audit_log_format(audit_buf, " nlbl_protocol=unlbl");
259 break;
260 case NETLBL_NLTYPE_CIPSOV4:
261 BUG_ON(cipsov4 == NULL);
262 audit_log_format(audit_buf,
263 " nlbl_protocol=cipsov4 cipso_doi=%u",
264 cipsov4->doi);
265 break;
Huw Daviesdc7de732016-06-27 15:02:49 -0400266 case NETLBL_NLTYPE_CALIPSO:
267 BUG_ON(calipso == NULL);
268 audit_log_format(audit_buf,
269 " nlbl_protocol=calipso calipso_doi=%u",
270 calipso->doi);
271 break;
Paul Moore63c41682008-10-10 10:16:32 -0400272 }
273 audit_log_format(audit_buf, " res=%u", result == 0 ? 1 : 0);
274 audit_log_end(audit_buf);
275 }
276}
277
Paul Moore6b21e1b2013-05-17 09:08:50 +0000278/**
279 * netlbl_domhsh_validate - Validate a new domain mapping entry
280 * @entry: the entry to validate
281 *
282 * This function validates the new domain mapping entry to ensure that it is
283 * a valid entry. Returns zero on success, negative values on failure.
284 *
285 */
286static int netlbl_domhsh_validate(const struct netlbl_dom_map *entry)
287{
288 struct netlbl_af4list *iter4;
289 struct netlbl_domaddr4_map *map4;
290#if IS_ENABLED(CONFIG_IPV6)
291 struct netlbl_af6list *iter6;
292 struct netlbl_domaddr6_map *map6;
293#endif /* IPv6 */
294
295 if (entry == NULL)
296 return -EINVAL;
297
Huw Davies8f18e672016-06-27 15:02:46 -0400298 if (entry->family != AF_INET && entry->family != AF_INET6 &&
299 (entry->family != AF_UNSPEC ||
300 entry->def.type != NETLBL_NLTYPE_UNLABELED))
301 return -EINVAL;
302
Paul Moore6a8b7f02013-08-02 14:45:08 -0400303 switch (entry->def.type) {
Paul Moore6b21e1b2013-05-17 09:08:50 +0000304 case NETLBL_NLTYPE_UNLABELED:
Huw Daviesdc7de732016-06-27 15:02:49 -0400305 if (entry->def.cipso != NULL || entry->def.calipso != NULL ||
306 entry->def.addrsel != NULL)
Paul Moore6b21e1b2013-05-17 09:08:50 +0000307 return -EINVAL;
308 break;
309 case NETLBL_NLTYPE_CIPSOV4:
Huw Davies8f18e672016-06-27 15:02:46 -0400310 if (entry->family != AF_INET ||
311 entry->def.cipso == NULL)
Paul Moore6b21e1b2013-05-17 09:08:50 +0000312 return -EINVAL;
313 break;
Huw Daviesdc7de732016-06-27 15:02:49 -0400314 case NETLBL_NLTYPE_CALIPSO:
315 if (entry->family != AF_INET6 ||
316 entry->def.calipso == NULL)
317 return -EINVAL;
318 break;
Paul Moore6b21e1b2013-05-17 09:08:50 +0000319 case NETLBL_NLTYPE_ADDRSELECT:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400320 netlbl_af4list_foreach(iter4, &entry->def.addrsel->list4) {
Paul Moore6b21e1b2013-05-17 09:08:50 +0000321 map4 = netlbl_domhsh_addr4_entry(iter4);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400322 switch (map4->def.type) {
Paul Moore6b21e1b2013-05-17 09:08:50 +0000323 case NETLBL_NLTYPE_UNLABELED:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400324 if (map4->def.cipso != NULL)
Paul Moore6b21e1b2013-05-17 09:08:50 +0000325 return -EINVAL;
326 break;
327 case NETLBL_NLTYPE_CIPSOV4:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400328 if (map4->def.cipso == NULL)
Paul Moore6b21e1b2013-05-17 09:08:50 +0000329 return -EINVAL;
330 break;
331 default:
332 return -EINVAL;
333 }
334 }
335#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6a8b7f02013-08-02 14:45:08 -0400336 netlbl_af6list_foreach(iter6, &entry->def.addrsel->list6) {
Paul Moore6b21e1b2013-05-17 09:08:50 +0000337 map6 = netlbl_domhsh_addr6_entry(iter6);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400338 switch (map6->def.type) {
Paul Moore6b21e1b2013-05-17 09:08:50 +0000339 case NETLBL_NLTYPE_UNLABELED:
Huw Daviesdc7de732016-06-27 15:02:49 -0400340 if (map6->def.calipso != NULL)
341 return -EINVAL;
342 break;
343 case NETLBL_NLTYPE_CALIPSO:
344 if (map6->def.calipso == NULL)
345 return -EINVAL;
Paul Moore6b21e1b2013-05-17 09:08:50 +0000346 break;
347 default:
348 return -EINVAL;
349 }
350 }
351#endif /* IPv6 */
352 break;
353 default:
354 return -EINVAL;
355 }
356
357 return 0;
358}
359
Paul Moored15c3452006-08-03 16:48:37 -0700360/*
361 * Domain Hash Table Functions
362 */
363
364/**
365 * netlbl_domhsh_init - Init for the domain hash
366 * @size: the number of bits to use for the hash buckets
367 *
368 * Description:
369 * Initializes the domain hash table, should be called only by
370 * netlbl_user_init() during initialization. Returns zero on success, non-zero
371 * values on error.
372 *
373 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -0800374int __init netlbl_domhsh_init(u32 size)
Paul Moored15c3452006-08-03 16:48:37 -0700375{
376 u32 iter;
377 struct netlbl_domhsh_tbl *hsh_tbl;
378
379 if (size == 0)
380 return -EINVAL;
381
382 hsh_tbl = kmalloc(sizeof(*hsh_tbl), GFP_KERNEL);
383 if (hsh_tbl == NULL)
384 return -ENOMEM;
385 hsh_tbl->size = 1 << size;
386 hsh_tbl->tbl = kcalloc(hsh_tbl->size,
387 sizeof(struct list_head),
388 GFP_KERNEL);
389 if (hsh_tbl->tbl == NULL) {
390 kfree(hsh_tbl);
391 return -ENOMEM;
392 }
393 for (iter = 0; iter < hsh_tbl->size; iter++)
394 INIT_LIST_HEAD(&hsh_tbl->tbl[iter]);
395
Paul Moored15c3452006-08-03 16:48:37 -0700396 spin_lock(&netlbl_domhsh_lock);
Eric Dumazetcf778b02012-01-12 04:41:32 +0000397 rcu_assign_pointer(netlbl_domhsh, hsh_tbl);
Paul Moored15c3452006-08-03 16:48:37 -0700398 spin_unlock(&netlbl_domhsh_lock);
Paul Moored15c3452006-08-03 16:48:37 -0700399
400 return 0;
401}
402
403/**
404 * netlbl_domhsh_add - Adds a entry to the domain hash table
405 * @entry: the entry to add
Paul Moore95d4e6b2006-09-29 17:05:05 -0700406 * @audit_info: NetLabel audit information
Paul Moored15c3452006-08-03 16:48:37 -0700407 *
408 * Description:
409 * Adds a new entry to the domain hash table and handles any updates to the
Huw Davies8f18e672016-06-27 15:02:46 -0400410 * lower level protocol handler (i.e. CIPSO). @entry->family may be set to
411 * %AF_UNSPEC which will add an entry that matches all address families. This
412 * is only useful for the unlabelled type and will only succeed if there is no
413 * existing entry for any address family with the same domain. Returns zero
414 * on success, negative on failure.
Paul Moored15c3452006-08-03 16:48:37 -0700415 *
416 */
Paul Moore95d4e6b2006-09-29 17:05:05 -0700417int netlbl_domhsh_add(struct netlbl_dom_map *entry,
418 struct netlbl_audit *audit_info)
Paul Moored15c3452006-08-03 16:48:37 -0700419{
Paul Moore63c41682008-10-10 10:16:32 -0400420 int ret_val = 0;
Huw Davies8f18e672016-06-27 15:02:46 -0400421 struct netlbl_dom_map *entry_old, *entry_b;
Paul Moore63c41682008-10-10 10:16:32 -0400422 struct netlbl_af4list *iter4;
423 struct netlbl_af4list *tmp4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000424#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -0400425 struct netlbl_af6list *iter6;
426 struct netlbl_af6list *tmp6;
427#endif /* IPv6 */
Paul Moored15c3452006-08-03 16:48:37 -0700428
Paul Moore6b21e1b2013-05-17 09:08:50 +0000429 ret_val = netlbl_domhsh_validate(entry);
430 if (ret_val != 0)
431 return ret_val;
432
Paul Mooreb914f3a2010-04-01 10:43:57 +0000433 /* XXX - we can remove this RCU read lock as the spinlock protects the
434 * entire function, but before we do we need to fixup the
435 * netlbl_af[4,6]list RCU functions to do "the right thing" with
436 * respect to rcu_dereference() when only a spinlock is held. */
Paul Moored15c3452006-08-03 16:48:37 -0700437 rcu_read_lock();
Paul Moore1c3fad92008-01-29 08:37:57 -0500438 spin_lock(&netlbl_domhsh_lock);
Paul Moore63c41682008-10-10 10:16:32 -0400439 if (entry->domain != NULL)
Huw Davies8f18e672016-06-27 15:02:46 -0400440 entry_old = netlbl_domhsh_search(entry->domain, entry->family);
Paul Moore63c41682008-10-10 10:16:32 -0400441 else
Huw Davies8f18e672016-06-27 15:02:46 -0400442 entry_old = netlbl_domhsh_search_def(entry->domain,
443 entry->family);
Paul Moore63c41682008-10-10 10:16:32 -0400444 if (entry_old == NULL) {
445 entry->valid = 1;
Paul Moore63c41682008-10-10 10:16:32 -0400446
447 if (entry->domain != NULL) {
448 u32 bkt = netlbl_domhsh_hash(entry->domain);
Paul Moored15c3452006-08-03 16:48:37 -0700449 list_add_tail_rcu(&entry->list,
Paul Moore3482fd92007-08-07 17:53:10 -0700450 &rcu_dereference(netlbl_domhsh)->tbl[bkt]);
Paul Moore63c41682008-10-10 10:16:32 -0400451 } else {
452 INIT_LIST_HEAD(&entry->list);
Huw Davies8f18e672016-06-27 15:02:46 -0400453 switch (entry->family) {
454 case AF_INET:
455 rcu_assign_pointer(netlbl_domhsh_def_ipv4,
456 entry);
457 break;
458 case AF_INET6:
459 rcu_assign_pointer(netlbl_domhsh_def_ipv6,
460 entry);
461 break;
462 case AF_UNSPEC:
463 if (entry->def.type !=
464 NETLBL_NLTYPE_UNLABELED) {
465 ret_val = -EINVAL;
466 goto add_return;
467 }
468 entry_b = kzalloc(sizeof(*entry_b), GFP_ATOMIC);
469 if (entry_b == NULL) {
470 ret_val = -ENOMEM;
471 goto add_return;
472 }
473 entry_b->family = AF_INET6;
474 entry_b->def.type = NETLBL_NLTYPE_UNLABELED;
475 entry_b->valid = 1;
476 entry->family = AF_INET;
477 rcu_assign_pointer(netlbl_domhsh_def_ipv4,
478 entry);
479 rcu_assign_pointer(netlbl_domhsh_def_ipv6,
480 entry_b);
481 break;
482 default:
483 /* Already checked in
484 * netlbl_domhsh_validate(). */
485 ret_val = -EINVAL;
486 goto add_return;
487 }
Paul Moorede646882006-11-17 17:38:55 -0500488 }
Paul Moored15c3452006-08-03 16:48:37 -0700489
Paul Moore6a8b7f02013-08-02 14:45:08 -0400490 if (entry->def.type == NETLBL_NLTYPE_ADDRSELECT) {
Paul Moore63c41682008-10-10 10:16:32 -0400491 netlbl_af4list_foreach_rcu(iter4,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400492 &entry->def.addrsel->list4)
Paul Moore63c41682008-10-10 10:16:32 -0400493 netlbl_domhsh_audit_add(entry, iter4, NULL,
494 ret_val, audit_info);
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000495#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -0400496 netlbl_af6list_foreach_rcu(iter6,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400497 &entry->def.addrsel->list6)
Paul Moore63c41682008-10-10 10:16:32 -0400498 netlbl_domhsh_audit_add(entry, NULL, iter6,
499 ret_val, audit_info);
500#endif /* IPv6 */
501 } else
502 netlbl_domhsh_audit_add(entry, NULL, NULL,
503 ret_val, audit_info);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400504 } else if (entry_old->def.type == NETLBL_NLTYPE_ADDRSELECT &&
505 entry->def.type == NETLBL_NLTYPE_ADDRSELECT) {
Paul Moore63c41682008-10-10 10:16:32 -0400506 struct list_head *old_list4;
507 struct list_head *old_list6;
508
Paul Moore6a8b7f02013-08-02 14:45:08 -0400509 old_list4 = &entry_old->def.addrsel->list4;
510 old_list6 = &entry_old->def.addrsel->list6;
Paul Moore63c41682008-10-10 10:16:32 -0400511
512 /* we only allow the addition of address selectors if all of
513 * the selectors do not exist in the existing domain map */
Paul Moore6a8b7f02013-08-02 14:45:08 -0400514 netlbl_af4list_foreach_rcu(iter4, &entry->def.addrsel->list4)
Paul Moore63c41682008-10-10 10:16:32 -0400515 if (netlbl_af4list_search_exact(iter4->addr,
516 iter4->mask,
517 old_list4)) {
518 ret_val = -EEXIST;
519 goto add_return;
520 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000521#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6a8b7f02013-08-02 14:45:08 -0400522 netlbl_af6list_foreach_rcu(iter6, &entry->def.addrsel->list6)
Paul Moore63c41682008-10-10 10:16:32 -0400523 if (netlbl_af6list_search_exact(&iter6->addr,
524 &iter6->mask,
525 old_list6)) {
526 ret_val = -EEXIST;
527 goto add_return;
528 }
529#endif /* IPv6 */
530
531 netlbl_af4list_foreach_safe(iter4, tmp4,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400532 &entry->def.addrsel->list4) {
Paul Moore63c41682008-10-10 10:16:32 -0400533 netlbl_af4list_remove_entry(iter4);
534 iter4->valid = 1;
535 ret_val = netlbl_af4list_add(iter4, old_list4);
536 netlbl_domhsh_audit_add(entry_old, iter4, NULL,
537 ret_val, audit_info);
538 if (ret_val != 0)
539 goto add_return;
540 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000541#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -0400542 netlbl_af6list_foreach_safe(iter6, tmp6,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400543 &entry->def.addrsel->list6) {
Paul Moore63c41682008-10-10 10:16:32 -0400544 netlbl_af6list_remove_entry(iter6);
545 iter6->valid = 1;
546 ret_val = netlbl_af6list_add(iter6, old_list6);
547 netlbl_domhsh_audit_add(entry_old, NULL, iter6,
548 ret_val, audit_info);
549 if (ret_val != 0)
550 goto add_return;
551 }
552#endif /* IPv6 */
553 } else
554 ret_val = -EINVAL;
555
556add_return:
557 spin_unlock(&netlbl_domhsh_lock);
558 rcu_read_unlock();
Paul Moored15c3452006-08-03 16:48:37 -0700559 return ret_val;
560}
561
562/**
563 * netlbl_domhsh_add_default - Adds the default entry to the domain hash table
564 * @entry: the entry to add
Paul Moore95d4e6b2006-09-29 17:05:05 -0700565 * @audit_info: NetLabel audit information
Paul Moored15c3452006-08-03 16:48:37 -0700566 *
567 * Description:
568 * Adds a new default entry to the domain hash table and handles any updates
569 * to the lower level protocol handler (i.e. CIPSO). Returns zero on success,
570 * negative on failure.
571 *
572 */
Paul Moore95d4e6b2006-09-29 17:05:05 -0700573int netlbl_domhsh_add_default(struct netlbl_dom_map *entry,
574 struct netlbl_audit *audit_info)
Paul Moored15c3452006-08-03 16:48:37 -0700575{
Paul Moore95d4e6b2006-09-29 17:05:05 -0700576 return netlbl_domhsh_add(entry, audit_info);
Paul Moored15c3452006-08-03 16:48:37 -0700577}
578
579/**
Paul Mooreb1edeb12008-10-10 10:16:31 -0400580 * netlbl_domhsh_remove_entry - Removes a given entry from the domain table
581 * @entry: the entry to remove
582 * @audit_info: NetLabel audit information
583 *
584 * Description:
585 * Removes an entry from the domain hash table and handles any updates to the
586 * lower level protocol handler (i.e. CIPSO). Caller is responsible for
587 * ensuring that the RCU read lock is held. Returns zero on success, negative
588 * on failure.
589 *
590 */
591int netlbl_domhsh_remove_entry(struct netlbl_dom_map *entry,
592 struct netlbl_audit *audit_info)
593{
594 int ret_val = 0;
595 struct audit_buffer *audit_buf;
596
597 if (entry == NULL)
598 return -ENOENT;
599
600 spin_lock(&netlbl_domhsh_lock);
601 if (entry->valid) {
602 entry->valid = 0;
Huw Davies8f18e672016-06-27 15:02:46 -0400603 if (entry == rcu_dereference(netlbl_domhsh_def_ipv4))
604 RCU_INIT_POINTER(netlbl_domhsh_def_ipv4, NULL);
605 else if (entry == rcu_dereference(netlbl_domhsh_def_ipv6))
606 RCU_INIT_POINTER(netlbl_domhsh_def_ipv6, NULL);
Paul Mooreb1edeb12008-10-10 10:16:31 -0400607 else
Huw Davies8f18e672016-06-27 15:02:46 -0400608 list_del_rcu(&entry->list);
Paul Mooreb1edeb12008-10-10 10:16:31 -0400609 } else
610 ret_val = -ENOENT;
611 spin_unlock(&netlbl_domhsh_lock);
612
613 audit_buf = netlbl_audit_start_common(AUDIT_MAC_MAP_DEL, audit_info);
614 if (audit_buf != NULL) {
615 audit_log_format(audit_buf,
616 " nlbl_domain=%s res=%u",
617 entry->domain ? entry->domain : "(default)",
618 ret_val == 0 ? 1 : 0);
619 audit_log_end(audit_buf);
620 }
621
622 if (ret_val == 0) {
Paul Moore63c41682008-10-10 10:16:32 -0400623 struct netlbl_af4list *iter4;
624 struct netlbl_domaddr4_map *map4;
Huw Daviesdc7de732016-06-27 15:02:49 -0400625#if IS_ENABLED(CONFIG_IPV6)
626 struct netlbl_af6list *iter6;
627 struct netlbl_domaddr6_map *map6;
628#endif /* IPv6 */
Paul Moore63c41682008-10-10 10:16:32 -0400629
Paul Moore6a8b7f02013-08-02 14:45:08 -0400630 switch (entry->def.type) {
Paul Moore63c41682008-10-10 10:16:32 -0400631 case NETLBL_NLTYPE_ADDRSELECT:
632 netlbl_af4list_foreach_rcu(iter4,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400633 &entry->def.addrsel->list4) {
Paul Moore63c41682008-10-10 10:16:32 -0400634 map4 = netlbl_domhsh_addr4_entry(iter4);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400635 cipso_v4_doi_putdef(map4->def.cipso);
Paul Moore63c41682008-10-10 10:16:32 -0400636 }
Huw Daviesdc7de732016-06-27 15:02:49 -0400637#if IS_ENABLED(CONFIG_IPV6)
638 netlbl_af6list_foreach_rcu(iter6,
639 &entry->def.addrsel->list6) {
640 map6 = netlbl_domhsh_addr6_entry(iter6);
641 calipso_doi_putdef(map6->def.calipso);
642 }
643#endif /* IPv6 */
Paul Moore63c41682008-10-10 10:16:32 -0400644 break;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400645 case NETLBL_NLTYPE_CIPSOV4:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400646 cipso_v4_doi_putdef(entry->def.cipso);
Paul Mooreb1edeb12008-10-10 10:16:31 -0400647 break;
Huw Daviesdc7de732016-06-27 15:02:49 -0400648#if IS_ENABLED(CONFIG_IPV6)
649 case NETLBL_NLTYPE_CALIPSO:
650 calipso_doi_putdef(entry->def.calipso);
651 break;
652#endif /* IPv6 */
Paul Mooreb1edeb12008-10-10 10:16:31 -0400653 }
654 call_rcu(&entry->rcu, netlbl_domhsh_free_entry);
655 }
656
657 return ret_val;
658}
659
660/**
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500661 * netlbl_domhsh_remove_af4 - Removes an address selector entry
662 * @domain: the domain
663 * @addr: IPv4 address
664 * @mask: IPv4 address mask
665 * @audit_info: NetLabel audit information
666 *
667 * Description:
668 * Removes an individual address selector from a domain mapping and potentially
669 * the entire mapping if it is empty. Returns zero on success, negative values
670 * on failure.
671 *
672 */
673int netlbl_domhsh_remove_af4(const char *domain,
674 const struct in_addr *addr,
675 const struct in_addr *mask,
676 struct netlbl_audit *audit_info)
677{
678 struct netlbl_dom_map *entry_map;
679 struct netlbl_af4list *entry_addr;
680 struct netlbl_af4list *iter4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000681#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500682 struct netlbl_af6list *iter6;
683#endif /* IPv6 */
684 struct netlbl_domaddr4_map *entry;
685
686 rcu_read_lock();
687
688 if (domain)
Huw Davies8f18e672016-06-27 15:02:46 -0400689 entry_map = netlbl_domhsh_search(domain, AF_INET);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500690 else
Huw Davies8f18e672016-06-27 15:02:46 -0400691 entry_map = netlbl_domhsh_search_def(domain, AF_INET);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400692 if (entry_map == NULL ||
693 entry_map->def.type != NETLBL_NLTYPE_ADDRSELECT)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500694 goto remove_af4_failure;
695
696 spin_lock(&netlbl_domhsh_lock);
697 entry_addr = netlbl_af4list_remove(addr->s_addr, mask->s_addr,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400698 &entry_map->def.addrsel->list4);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500699 spin_unlock(&netlbl_domhsh_lock);
700
701 if (entry_addr == NULL)
702 goto remove_af4_failure;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400703 netlbl_af4list_foreach_rcu(iter4, &entry_map->def.addrsel->list4)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500704 goto remove_af4_single_addr;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000705#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6a8b7f02013-08-02 14:45:08 -0400706 netlbl_af6list_foreach_rcu(iter6, &entry_map->def.addrsel->list6)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500707 goto remove_af4_single_addr;
708#endif /* IPv6 */
709 /* the domain mapping is empty so remove it from the mapping table */
710 netlbl_domhsh_remove_entry(entry_map, audit_info);
711
712remove_af4_single_addr:
713 rcu_read_unlock();
714 /* yick, we can't use call_rcu here because we don't have a rcu head
715 * pointer but hopefully this should be a rare case so the pause
716 * shouldn't be a problem */
717 synchronize_rcu();
718 entry = netlbl_domhsh_addr4_entry(entry_addr);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400719 cipso_v4_doi_putdef(entry->def.cipso);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500720 kfree(entry);
721 return 0;
722
723remove_af4_failure:
724 rcu_read_unlock();
725 return -ENOENT;
726}
727
728/**
Paul Moored15c3452006-08-03 16:48:37 -0700729 * netlbl_domhsh_remove - Removes an entry from the domain hash table
730 * @domain: the domain to remove
Huw Davies8f18e672016-06-27 15:02:46 -0400731 * @family: address family
Paul Moore95d4e6b2006-09-29 17:05:05 -0700732 * @audit_info: NetLabel audit information
Paul Moored15c3452006-08-03 16:48:37 -0700733 *
734 * Description:
735 * Removes an entry from the domain hash table and handles any updates to the
Huw Davies8f18e672016-06-27 15:02:46 -0400736 * lower level protocol handler (i.e. CIPSO). @family may be %AF_UNSPEC which
737 * removes all address family entries. Returns zero on success, negative on
738 * failure.
Paul Moored15c3452006-08-03 16:48:37 -0700739 *
740 */
Huw Davies8f18e672016-06-27 15:02:46 -0400741int netlbl_domhsh_remove(const char *domain, u16 family,
742 struct netlbl_audit *audit_info)
Paul Moored15c3452006-08-03 16:48:37 -0700743{
Huw Davies8f18e672016-06-27 15:02:46 -0400744 int ret_val = -EINVAL;
Paul Moored15c3452006-08-03 16:48:37 -0700745 struct netlbl_dom_map *entry;
746
747 rcu_read_lock();
Huw Davies8f18e672016-06-27 15:02:46 -0400748
749 if (family == AF_INET || family == AF_UNSPEC) {
750 if (domain)
751 entry = netlbl_domhsh_search(domain, AF_INET);
752 else
753 entry = netlbl_domhsh_search_def(domain, AF_INET);
754 ret_val = netlbl_domhsh_remove_entry(entry, audit_info);
755 if (ret_val && ret_val != -ENOENT)
756 goto done;
757 }
758 if (family == AF_INET6 || family == AF_UNSPEC) {
759 int ret_val2;
760
761 if (domain)
762 entry = netlbl_domhsh_search(domain, AF_INET6);
763 else
764 entry = netlbl_domhsh_search_def(domain, AF_INET6);
765 ret_val2 = netlbl_domhsh_remove_entry(entry, audit_info);
766 if (ret_val2 != -ENOENT)
767 ret_val = ret_val2;
768 }
769done:
Paul Moored15c3452006-08-03 16:48:37 -0700770 rcu_read_unlock();
Paul Mooreb1edeb12008-10-10 10:16:31 -0400771
Paul Moored15c3452006-08-03 16:48:37 -0700772 return ret_val;
773}
774
775/**
776 * netlbl_domhsh_remove_default - Removes the default entry from the table
Huw Davies8f18e672016-06-27 15:02:46 -0400777 * @family: address family
Paul Moore95d4e6b2006-09-29 17:05:05 -0700778 * @audit_info: NetLabel audit information
Paul Moored15c3452006-08-03 16:48:37 -0700779 *
780 * Description:
Huw Davies8f18e672016-06-27 15:02:46 -0400781 * Removes/resets the default entry corresponding to @family from the domain
782 * hash table and handles any updates to the lower level protocol handler
783 * (i.e. CIPSO). @family may be %AF_UNSPEC which removes all address family
784 * entries. Returns zero on success, negative on failure.
Paul Moored15c3452006-08-03 16:48:37 -0700785 *
786 */
Huw Davies8f18e672016-06-27 15:02:46 -0400787int netlbl_domhsh_remove_default(u16 family, struct netlbl_audit *audit_info)
Paul Moored15c3452006-08-03 16:48:37 -0700788{
Huw Davies8f18e672016-06-27 15:02:46 -0400789 return netlbl_domhsh_remove(NULL, family, audit_info);
Paul Moored15c3452006-08-03 16:48:37 -0700790}
791
792/**
793 * netlbl_domhsh_getentry - Get an entry from the domain hash table
794 * @domain: the domain name to search for
Huw Davies8f18e672016-06-27 15:02:46 -0400795 * @family: address family
Paul Moored15c3452006-08-03 16:48:37 -0700796 *
797 * Description:
798 * Look through the domain hash table searching for an entry to match @domain,
Huw Davies8f18e672016-06-27 15:02:46 -0400799 * with address family @family, return a pointer to a copy of the entry or
800 * NULL. The caller is responsible for ensuring that rcu_read_[un]lock() is
801 * called.
Paul Moored15c3452006-08-03 16:48:37 -0700802 *
803 */
Huw Davies8f18e672016-06-27 15:02:46 -0400804struct netlbl_dom_map *netlbl_domhsh_getentry(const char *domain, u16 family)
Paul Moored15c3452006-08-03 16:48:37 -0700805{
Huw Davies8f18e672016-06-27 15:02:46 -0400806 if (family == AF_UNSPEC)
807 return NULL;
808 return netlbl_domhsh_search_def(domain, family);
Paul Moored15c3452006-08-03 16:48:37 -0700809}
810
811/**
Paul Moore63c41682008-10-10 10:16:32 -0400812 * netlbl_domhsh_getentry_af4 - Get an entry from the domain hash table
813 * @domain: the domain name to search for
814 * @addr: the IP address to search for
815 *
816 * Description:
817 * Look through the domain hash table searching for an entry to match @domain
818 * and @addr, return a pointer to a copy of the entry or NULL. The caller is
819 * responsible for ensuring that rcu_read_[un]lock() is called.
820 *
821 */
Paul Moore6a8b7f02013-08-02 14:45:08 -0400822struct netlbl_dommap_def *netlbl_domhsh_getentry_af4(const char *domain,
823 __be32 addr)
Paul Moore63c41682008-10-10 10:16:32 -0400824{
825 struct netlbl_dom_map *dom_iter;
826 struct netlbl_af4list *addr_iter;
827
Huw Davies8f18e672016-06-27 15:02:46 -0400828 dom_iter = netlbl_domhsh_search_def(domain, AF_INET);
Paul Moore63c41682008-10-10 10:16:32 -0400829 if (dom_iter == NULL)
830 return NULL;
Paul Moore63c41682008-10-10 10:16:32 -0400831
Paul Moore6a8b7f02013-08-02 14:45:08 -0400832 if (dom_iter->def.type != NETLBL_NLTYPE_ADDRSELECT)
833 return &dom_iter->def;
834 addr_iter = netlbl_af4list_search(addr, &dom_iter->def.addrsel->list4);
Paul Moore63c41682008-10-10 10:16:32 -0400835 if (addr_iter == NULL)
836 return NULL;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400837 return &(netlbl_domhsh_addr4_entry(addr_iter)->def);
Paul Moore63c41682008-10-10 10:16:32 -0400838}
839
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000840#if IS_ENABLED(CONFIG_IPV6)
Paul Moore63c41682008-10-10 10:16:32 -0400841/**
842 * netlbl_domhsh_getentry_af6 - Get an entry from the domain hash table
843 * @domain: the domain name to search for
844 * @addr: the IP address to search for
845 *
846 * Description:
847 * Look through the domain hash table searching for an entry to match @domain
848 * and @addr, return a pointer to a copy of the entry or NULL. The caller is
849 * responsible for ensuring that rcu_read_[un]lock() is called.
850 *
851 */
Paul Moore6a8b7f02013-08-02 14:45:08 -0400852struct netlbl_dommap_def *netlbl_domhsh_getentry_af6(const char *domain,
Paul Moore63c41682008-10-10 10:16:32 -0400853 const struct in6_addr *addr)
854{
855 struct netlbl_dom_map *dom_iter;
856 struct netlbl_af6list *addr_iter;
857
Huw Davies8f18e672016-06-27 15:02:46 -0400858 dom_iter = netlbl_domhsh_search_def(domain, AF_INET6);
Paul Moore63c41682008-10-10 10:16:32 -0400859 if (dom_iter == NULL)
860 return NULL;
Paul Moore63c41682008-10-10 10:16:32 -0400861
Paul Moore6a8b7f02013-08-02 14:45:08 -0400862 if (dom_iter->def.type != NETLBL_NLTYPE_ADDRSELECT)
863 return &dom_iter->def;
864 addr_iter = netlbl_af6list_search(addr, &dom_iter->def.addrsel->list6);
Paul Moore63c41682008-10-10 10:16:32 -0400865 if (addr_iter == NULL)
866 return NULL;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400867 return &(netlbl_domhsh_addr6_entry(addr_iter)->def);
Paul Moore63c41682008-10-10 10:16:32 -0400868}
869#endif /* IPv6 */
870
871/**
Paul Moorefcd48282006-09-25 15:56:09 -0700872 * netlbl_domhsh_walk - Iterate through the domain mapping hash table
873 * @skip_bkt: the number of buckets to skip at the start
874 * @skip_chain: the number of entries to skip in the first iterated bucket
875 * @callback: callback for each entry
876 * @cb_arg: argument for the callback function
Paul Moored15c3452006-08-03 16:48:37 -0700877 *
878 * Description:
Paul Moorefcd48282006-09-25 15:56:09 -0700879 * Interate over the domain mapping hash table, skipping the first @skip_bkt
880 * buckets and @skip_chain entries. For each entry in the table call
881 * @callback, if @callback returns a negative value stop 'walking' through the
882 * table and return. Updates the values in @skip_bkt and @skip_chain on
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200883 * return. Returns zero on success, negative values on failure.
Paul Moored15c3452006-08-03 16:48:37 -0700884 *
885 */
Paul Moorefcd48282006-09-25 15:56:09 -0700886int netlbl_domhsh_walk(u32 *skip_bkt,
887 u32 *skip_chain,
888 int (*callback) (struct netlbl_dom_map *entry, void *arg),
889 void *cb_arg)
Paul Moored15c3452006-08-03 16:48:37 -0700890{
Paul Moorefcd48282006-09-25 15:56:09 -0700891 int ret_val = -ENOENT;
892 u32 iter_bkt;
Paul Moore56196702008-10-10 10:16:29 -0400893 struct list_head *iter_list;
Paul Moorefcd48282006-09-25 15:56:09 -0700894 struct netlbl_dom_map *iter_entry;
895 u32 chain_cnt = 0;
Paul Moored15c3452006-08-03 16:48:37 -0700896
Paul Moored15c3452006-08-03 16:48:37 -0700897 rcu_read_lock();
Paul Moorefcd48282006-09-25 15:56:09 -0700898 for (iter_bkt = *skip_bkt;
899 iter_bkt < rcu_dereference(netlbl_domhsh)->size;
900 iter_bkt++, chain_cnt = 0) {
Paul Moore56196702008-10-10 10:16:29 -0400901 iter_list = &rcu_dereference(netlbl_domhsh)->tbl[iter_bkt];
902 list_for_each_entry_rcu(iter_entry, iter_list, list)
Paul Moorefcd48282006-09-25 15:56:09 -0700903 if (iter_entry->valid) {
904 if (chain_cnt++ < *skip_chain)
905 continue;
906 ret_val = callback(iter_entry, cb_arg);
907 if (ret_val < 0) {
908 chain_cnt--;
909 goto walk_return;
910 }
Paul Moored15c3452006-08-03 16:48:37 -0700911 }
Paul Moorefcd48282006-09-25 15:56:09 -0700912 }
Paul Moored15c3452006-08-03 16:48:37 -0700913
Paul Moorefcd48282006-09-25 15:56:09 -0700914walk_return:
Paul Moored15c3452006-08-03 16:48:37 -0700915 rcu_read_unlock();
Paul Moorefcd48282006-09-25 15:56:09 -0700916 *skip_bkt = iter_bkt;
917 *skip_chain = chain_cnt;
918 return ret_val;
Paul Moored15c3452006-08-03 16:48:37 -0700919}