blob: 84e810bef39a7f21eaeaac9e8d7bacc7607bd24d [file] [log] [blame]
Paul Moored15c3452006-08-03 16:48:37 -07001/*
2 * NetLabel Kernel API
3 *
4 * This file defines the kernel API for the NetLabel system. The NetLabel
5 * system manages static and dynamic label mappings for network protocols such
6 * as CIPSO and RIPSO.
7 *
Paul Moore82c21bf2011-08-01 11:10:33 +00008 * Author: Paul Moore <paul@paul-moore.com>
Paul Moored15c3452006-08-03 16:48:37 -07009 *
10 */
11
12/*
Paul Moore014ab192008-10-10 10:16:33 -040013 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008
Paul Moored15c3452006-08-03 16:48:37 -070014 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
23 * the GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
Jeff Kirsherd484ff12013-12-06 09:13:41 -080026 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Paul Moored15c3452006-08-03 16:48:37 -070027 *
28 */
29
30#include <linux/init.h>
31#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Paul Mooreeda61d32008-02-04 22:29:47 -080033#include <linux/audit.h>
Paul Moore6c2e8ac2008-12-31 12:54:11 -050034#include <linux/in.h>
35#include <linux/in6.h>
Paul Moored15c3452006-08-03 16:48:37 -070036#include <net/ip.h>
Paul Moore6c2e8ac2008-12-31 12:54:11 -050037#include <net/ipv6.h>
Paul Moored15c3452006-08-03 16:48:37 -070038#include <net/netlabel.h>
39#include <net/cipso_ipv4.h>
40#include <asm/bug.h>
Arun Sharma600634972011-07-26 16:09:06 -070041#include <linux/atomic.h>
Paul Moored15c3452006-08-03 16:48:37 -070042
43#include "netlabel_domainhash.h"
44#include "netlabel_unlabeled.h"
Paul Mooreeda61d32008-02-04 22:29:47 -080045#include "netlabel_cipso_v4.h"
Paul Moored15c3452006-08-03 16:48:37 -070046#include "netlabel_user.h"
Paul Moore23bcdc12007-07-18 12:28:45 -040047#include "netlabel_mgmt.h"
Paul Moore6c2e8ac2008-12-31 12:54:11 -050048#include "netlabel_addrlist.h"
Paul Moored15c3452006-08-03 16:48:37 -070049
50/*
Paul Mooreeda61d32008-02-04 22:29:47 -080051 * Configuration Functions
52 */
53
54/**
55 * netlbl_cfg_map_del - Remove a NetLabel/LSM domain mapping
56 * @domain: the domain mapping to remove
Paul Moore6c2e8ac2008-12-31 12:54:11 -050057 * @family: address family
58 * @addr: IP address
59 * @mask: IP address mask
Paul Mooreeda61d32008-02-04 22:29:47 -080060 * @audit_info: NetLabel audit information
61 *
62 * Description:
63 * Removes a NetLabel/LSM domain mapping. A @domain value of NULL causes the
64 * default domain mapping to be removed. Returns zero on success, negative
65 * values on failure.
66 *
67 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -050068int netlbl_cfg_map_del(const char *domain,
69 u16 family,
70 const void *addr,
71 const void *mask,
72 struct netlbl_audit *audit_info)
Paul Mooreeda61d32008-02-04 22:29:47 -080073{
Paul Moore6c2e8ac2008-12-31 12:54:11 -050074 if (addr == NULL && mask == NULL) {
75 return netlbl_domhsh_remove(domain, audit_info);
76 } else if (addr != NULL && mask != NULL) {
77 switch (family) {
78 case AF_INET:
79 return netlbl_domhsh_remove_af4(domain, addr, mask,
80 audit_info);
81 default:
82 return -EPFNOSUPPORT;
83 }
84 } else
85 return -EINVAL;
Paul Mooreeda61d32008-02-04 22:29:47 -080086}
87
88/**
Paul Moore6c2e8ac2008-12-31 12:54:11 -050089 * netlbl_cfg_unlbl_map_add - Add a new unlabeled mapping
Paul Mooreeda61d32008-02-04 22:29:47 -080090 * @domain: the domain mapping to add
Paul Moore6c2e8ac2008-12-31 12:54:11 -050091 * @family: address family
92 * @addr: IP address
93 * @mask: IP address mask
Paul Mooreeda61d32008-02-04 22:29:47 -080094 * @audit_info: NetLabel audit information
95 *
96 * Description:
97 * Adds a new unlabeled NetLabel/LSM domain mapping. A @domain value of NULL
98 * causes a new default domain mapping to be added. Returns zero on success,
99 * negative values on failure.
100 *
101 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500102int netlbl_cfg_unlbl_map_add(const char *domain,
103 u16 family,
104 const void *addr,
105 const void *mask,
Paul Mooreeda61d32008-02-04 22:29:47 -0800106 struct netlbl_audit *audit_info)
107{
108 int ret_val = -ENOMEM;
109 struct netlbl_dom_map *entry;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500110 struct netlbl_domaddr_map *addrmap = NULL;
111 struct netlbl_domaddr4_map *map4 = NULL;
112 struct netlbl_domaddr6_map *map6 = NULL;
Paul Mooreeda61d32008-02-04 22:29:47 -0800113
114 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
115 if (entry == NULL)
Paul Moore948a7242008-10-10 10:16:30 -0400116 return -ENOMEM;
Paul Mooreeda61d32008-02-04 22:29:47 -0800117 if (domain != NULL) {
118 entry->domain = kstrdup(domain, GFP_ATOMIC);
119 if (entry->domain == NULL)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500120 goto cfg_unlbl_map_add_failure;
Paul Mooreeda61d32008-02-04 22:29:47 -0800121 }
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500122
123 if (addr == NULL && mask == NULL)
Paul Moore6a8b7f02013-08-02 14:45:08 -0400124 entry->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500125 else if (addr != NULL && mask != NULL) {
126 addrmap = kzalloc(sizeof(*addrmap), GFP_ATOMIC);
127 if (addrmap == NULL)
128 goto cfg_unlbl_map_add_failure;
129 INIT_LIST_HEAD(&addrmap->list4);
130 INIT_LIST_HEAD(&addrmap->list6);
131
132 switch (family) {
Paul Moore1281bc22011-11-29 10:10:54 +0000133 case AF_INET: {
134 const struct in_addr *addr4 = addr;
135 const struct in_addr *mask4 = mask;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500136 map4 = kzalloc(sizeof(*map4), GFP_ATOMIC);
137 if (map4 == NULL)
138 goto cfg_unlbl_map_add_failure;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400139 map4->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500140 map4->list.addr = addr4->s_addr & mask4->s_addr;
141 map4->list.mask = mask4->s_addr;
142 map4->list.valid = 1;
143 ret_val = netlbl_af4list_add(&map4->list,
144 &addrmap->list4);
145 if (ret_val != 0)
146 goto cfg_unlbl_map_add_failure;
147 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000148 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000149#if IS_ENABLED(CONFIG_IPV6)
Paul Moore1281bc22011-11-29 10:10:54 +0000150 case AF_INET6: {
151 const struct in6_addr *addr6 = addr;
152 const struct in6_addr *mask6 = mask;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500153 map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
Julia Lawallca7daea2009-07-30 04:38:19 +0000154 if (map6 == NULL)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500155 goto cfg_unlbl_map_add_failure;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400156 map6->def.type = NETLBL_NLTYPE_UNLABELED;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000157 map6->list.addr = *addr6;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500158 map6->list.addr.s6_addr32[0] &= mask6->s6_addr32[0];
159 map6->list.addr.s6_addr32[1] &= mask6->s6_addr32[1];
160 map6->list.addr.s6_addr32[2] &= mask6->s6_addr32[2];
161 map6->list.addr.s6_addr32[3] &= mask6->s6_addr32[3];
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000162 map6->list.mask = *mask6;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500163 map6->list.valid = 1;
Dan Carpenter42ca0202011-11-23 21:18:20 +0000164 ret_val = netlbl_af6list_add(&map6->list,
165 &addrmap->list6);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500166 if (ret_val != 0)
167 goto cfg_unlbl_map_add_failure;
168 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000169 }
170#endif /* IPv6 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500171 default:
172 goto cfg_unlbl_map_add_failure;
173 break;
174 }
175
Paul Moore6a8b7f02013-08-02 14:45:08 -0400176 entry->def.addrsel = addrmap;
177 entry->def.type = NETLBL_NLTYPE_ADDRSELECT;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500178 } else {
179 ret_val = -EINVAL;
180 goto cfg_unlbl_map_add_failure;
181 }
Paul Mooreeda61d32008-02-04 22:29:47 -0800182
183 ret_val = netlbl_domhsh_add(entry, audit_info);
184 if (ret_val != 0)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500185 goto cfg_unlbl_map_add_failure;
Paul Mooreeda61d32008-02-04 22:29:47 -0800186
187 return 0;
188
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500189cfg_unlbl_map_add_failure:
Julia Lawall47943232009-07-27 06:15:43 +0000190 kfree(entry->domain);
Paul Mooreeda61d32008-02-04 22:29:47 -0800191 kfree(entry);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500192 kfree(addrmap);
193 kfree(map4);
194 kfree(map6);
Paul Mooreeda61d32008-02-04 22:29:47 -0800195 return ret_val;
196}
197
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500198
Paul Mooreeda61d32008-02-04 22:29:47 -0800199/**
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500200 * netlbl_cfg_unlbl_static_add - Adds a new static label
201 * @net: network namespace
202 * @dev_name: interface name
203 * @addr: IP address in network byte order (struct in[6]_addr)
204 * @mask: address mask in network byte order (struct in[6]_addr)
205 * @family: address family
206 * @secid: LSM secid value for the entry
Paul Mooreeda61d32008-02-04 22:29:47 -0800207 * @audit_info: NetLabel audit information
208 *
209 * Description:
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500210 * Adds a new NetLabel static label to be used when protocol provided labels
211 * are not present on incoming traffic. If @dev_name is NULL then the default
212 * interface will be used. Returns zero on success, negative values on failure.
Paul Mooreeda61d32008-02-04 22:29:47 -0800213 *
214 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500215int netlbl_cfg_unlbl_static_add(struct net *net,
216 const char *dev_name,
217 const void *addr,
218 const void *mask,
219 u16 family,
220 u32 secid,
221 struct netlbl_audit *audit_info)
222{
223 u32 addr_len;
224
225 switch (family) {
226 case AF_INET:
227 addr_len = sizeof(struct in_addr);
228 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000229#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500230 case AF_INET6:
231 addr_len = sizeof(struct in6_addr);
232 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000233#endif /* IPv6 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500234 default:
235 return -EPFNOSUPPORT;
236 }
237
238 return netlbl_unlhsh_add(net,
239 dev_name, addr, mask, addr_len,
240 secid, audit_info);
241}
242
243/**
244 * netlbl_cfg_unlbl_static_del - Removes an existing static label
245 * @net: network namespace
246 * @dev_name: interface name
247 * @addr: IP address in network byte order (struct in[6]_addr)
248 * @mask: address mask in network byte order (struct in[6]_addr)
249 * @family: address family
250 * @secid: LSM secid value for the entry
251 * @audit_info: NetLabel audit information
252 *
253 * Description:
254 * Removes an existing NetLabel static label used when protocol provided labels
255 * are not present on incoming traffic. If @dev_name is NULL then the default
256 * interface will be used. Returns zero on success, negative values on failure.
257 *
258 */
259int netlbl_cfg_unlbl_static_del(struct net *net,
260 const char *dev_name,
261 const void *addr,
262 const void *mask,
263 u16 family,
264 struct netlbl_audit *audit_info)
265{
266 u32 addr_len;
267
268 switch (family) {
269 case AF_INET:
270 addr_len = sizeof(struct in_addr);
271 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000272#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500273 case AF_INET6:
274 addr_len = sizeof(struct in6_addr);
275 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000276#endif /* IPv6 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500277 default:
278 return -EPFNOSUPPORT;
279 }
280
281 return netlbl_unlhsh_remove(net,
282 dev_name, addr, mask, addr_len,
283 audit_info);
284}
285
286/**
287 * netlbl_cfg_cipsov4_add - Add a new CIPSOv4 DOI definition
288 * @doi_def: CIPSO DOI definition
289 * @audit_info: NetLabel audit information
290 *
291 * Description:
292 * Add a new CIPSO DOI definition as defined by @doi_def. Returns zero on
293 * success and negative values on failure.
294 *
295 */
296int netlbl_cfg_cipsov4_add(struct cipso_v4_doi *doi_def,
297 struct netlbl_audit *audit_info)
298{
299 return cipso_v4_doi_add(doi_def, audit_info);
300}
301
302/**
303 * netlbl_cfg_cipsov4_del - Remove an existing CIPSOv4 DOI definition
304 * @doi: CIPSO DOI
305 * @audit_info: NetLabel audit information
306 *
307 * Description:
308 * Remove an existing CIPSO DOI definition matching @doi. Returns zero on
309 * success and negative values on failure.
310 *
311 */
312void netlbl_cfg_cipsov4_del(u32 doi, struct netlbl_audit *audit_info)
313{
314 cipso_v4_doi_remove(doi, audit_info);
315}
316
317/**
318 * netlbl_cfg_cipsov4_map_add - Add a new CIPSOv4 DOI mapping
319 * @doi: the CIPSO DOI
320 * @domain: the domain mapping to add
321 * @addr: IP address
322 * @mask: IP address mask
323 * @audit_info: NetLabel audit information
324 *
325 * Description:
326 * Add a new NetLabel/LSM domain mapping for the given CIPSO DOI to the NetLabel
327 * subsystem. A @domain value of NULL adds a new default domain mapping.
328 * Returns zero on success, negative values on failure.
329 *
330 */
331int netlbl_cfg_cipsov4_map_add(u32 doi,
Paul Mooreeda61d32008-02-04 22:29:47 -0800332 const char *domain,
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500333 const struct in_addr *addr,
334 const struct in_addr *mask,
Paul Mooreeda61d32008-02-04 22:29:47 -0800335 struct netlbl_audit *audit_info)
336{
337 int ret_val = -ENOMEM;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500338 struct cipso_v4_doi *doi_def;
Paul Mooreeda61d32008-02-04 22:29:47 -0800339 struct netlbl_dom_map *entry;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500340 struct netlbl_domaddr_map *addrmap = NULL;
341 struct netlbl_domaddr4_map *addrinfo = NULL;
Paul Mooreeda61d32008-02-04 22:29:47 -0800342
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500343 doi_def = cipso_v4_doi_getdef(doi);
344 if (doi_def == NULL)
345 return -ENOENT;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400346
Paul Mooreeda61d32008-02-04 22:29:47 -0800347 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
348 if (entry == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000349 goto out_entry;
Paul Mooreeda61d32008-02-04 22:29:47 -0800350 if (domain != NULL) {
351 entry->domain = kstrdup(domain, GFP_ATOMIC);
352 if (entry->domain == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000353 goto out_domain;
Paul Mooreeda61d32008-02-04 22:29:47 -0800354 }
Paul Mooreeda61d32008-02-04 22:29:47 -0800355
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500356 if (addr == NULL && mask == NULL) {
Paul Moore6a8b7f02013-08-02 14:45:08 -0400357 entry->def.cipso = doi_def;
358 entry->def.type = NETLBL_NLTYPE_CIPSOV4;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500359 } else if (addr != NULL && mask != NULL) {
360 addrmap = kzalloc(sizeof(*addrmap), GFP_ATOMIC);
361 if (addrmap == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000362 goto out_addrmap;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500363 INIT_LIST_HEAD(&addrmap->list4);
364 INIT_LIST_HEAD(&addrmap->list6);
365
366 addrinfo = kzalloc(sizeof(*addrinfo), GFP_ATOMIC);
367 if (addrinfo == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000368 goto out_addrinfo;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400369 addrinfo->def.cipso = doi_def;
370 addrinfo->def.type = NETLBL_NLTYPE_CIPSOV4;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500371 addrinfo->list.addr = addr->s_addr & mask->s_addr;
372 addrinfo->list.mask = mask->s_addr;
373 addrinfo->list.valid = 1;
374 ret_val = netlbl_af4list_add(&addrinfo->list, &addrmap->list4);
375 if (ret_val != 0)
376 goto cfg_cipsov4_map_add_failure;
377
Paul Moore6a8b7f02013-08-02 14:45:08 -0400378 entry->def.addrsel = addrmap;
379 entry->def.type = NETLBL_NLTYPE_ADDRSELECT;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500380 } else {
381 ret_val = -EINVAL;
Julia Lawall94a80d62011-08-11 00:06:04 +0000382 goto out_addrmap;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400383 }
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500384
Paul Mooreeda61d32008-02-04 22:29:47 -0800385 ret_val = netlbl_domhsh_add(entry, audit_info);
386 if (ret_val != 0)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500387 goto cfg_cipsov4_map_add_failure;
Paul Mooreeda61d32008-02-04 22:29:47 -0800388
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500389 return 0;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400390
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500391cfg_cipsov4_map_add_failure:
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500392 kfree(addrinfo);
Julia Lawall94a80d62011-08-11 00:06:04 +0000393out_addrinfo:
394 kfree(addrmap);
395out_addrmap:
396 kfree(entry->domain);
397out_domain:
398 kfree(entry);
399out_entry:
400 cipso_v4_doi_putdef(doi_def);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500401 return ret_val;
Paul Mooreeda61d32008-02-04 22:29:47 -0800402}
403
Paul Mooreeda61d32008-02-04 22:29:47 -0800404/*
Paul Moore02752762006-11-29 13:18:18 -0500405 * Security Attribute Functions
406 */
407
408/**
409 * netlbl_secattr_catmap_walk - Walk a LSM secattr catmap looking for a bit
410 * @catmap: the category bitmap
411 * @offset: the offset to start searching at, in bits
412 *
413 * Description:
414 * This function walks a LSM secattr category bitmap starting at @offset and
415 * returns the spot of the first set bit or -ENOENT if no bits are set.
416 *
417 */
418int netlbl_secattr_catmap_walk(struct netlbl_lsm_secattr_catmap *catmap,
419 u32 offset)
420{
421 struct netlbl_lsm_secattr_catmap *iter = catmap;
422 u32 node_idx;
423 u32 node_bit;
424 NETLBL_CATMAP_MAPTYPE bitmap;
425
426 if (offset > iter->startbit) {
427 while (offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) {
428 iter = iter->next;
429 if (iter == NULL)
430 return -ENOENT;
431 }
432 node_idx = (offset - iter->startbit) / NETLBL_CATMAP_MAPSIZE;
433 node_bit = offset - iter->startbit -
434 (NETLBL_CATMAP_MAPSIZE * node_idx);
435 } else {
436 node_idx = 0;
437 node_bit = 0;
438 }
439 bitmap = iter->bitmap[node_idx] >> node_bit;
440
441 for (;;) {
442 if (bitmap != 0) {
443 while ((bitmap & NETLBL_CATMAP_BIT) == 0) {
444 bitmap >>= 1;
445 node_bit++;
446 }
447 return iter->startbit +
448 (NETLBL_CATMAP_MAPSIZE * node_idx) + node_bit;
449 }
450 if (++node_idx >= NETLBL_CATMAP_MAPCNT) {
451 if (iter->next != NULL) {
452 iter = iter->next;
453 node_idx = 0;
454 } else
455 return -ENOENT;
456 }
457 bitmap = iter->bitmap[node_idx];
458 node_bit = 0;
459 }
460
461 return -ENOENT;
462}
463
464/**
465 * netlbl_secattr_catmap_walk_rng - Find the end of a string of set bits
466 * @catmap: the category bitmap
467 * @offset: the offset to start searching at, in bits
468 *
469 * Description:
470 * This function walks a LSM secattr category bitmap starting at @offset and
471 * returns the spot of the first cleared bit or -ENOENT if the offset is past
472 * the end of the bitmap.
473 *
474 */
475int netlbl_secattr_catmap_walk_rng(struct netlbl_lsm_secattr_catmap *catmap,
476 u32 offset)
477{
478 struct netlbl_lsm_secattr_catmap *iter = catmap;
479 u32 node_idx;
480 u32 node_bit;
481 NETLBL_CATMAP_MAPTYPE bitmask;
482 NETLBL_CATMAP_MAPTYPE bitmap;
483
484 if (offset > iter->startbit) {
485 while (offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) {
486 iter = iter->next;
487 if (iter == NULL)
488 return -ENOENT;
489 }
490 node_idx = (offset - iter->startbit) / NETLBL_CATMAP_MAPSIZE;
491 node_bit = offset - iter->startbit -
492 (NETLBL_CATMAP_MAPSIZE * node_idx);
493 } else {
494 node_idx = 0;
495 node_bit = 0;
496 }
497 bitmask = NETLBL_CATMAP_BIT << node_bit;
498
499 for (;;) {
500 bitmap = iter->bitmap[node_idx];
501 while (bitmask != 0 && (bitmap & bitmask) != 0) {
502 bitmask <<= 1;
503 node_bit++;
504 }
505
506 if (bitmask != 0)
507 return iter->startbit +
508 (NETLBL_CATMAP_MAPSIZE * node_idx) +
509 node_bit - 1;
510 else if (++node_idx >= NETLBL_CATMAP_MAPCNT) {
511 if (iter->next == NULL)
512 return iter->startbit + NETLBL_CATMAP_SIZE - 1;
513 iter = iter->next;
514 node_idx = 0;
515 }
516 bitmask = NETLBL_CATMAP_BIT;
517 node_bit = 0;
518 }
519
520 return -ENOENT;
521}
522
523/**
524 * netlbl_secattr_catmap_setbit - Set a bit in a LSM secattr catmap
Paul Moore41c3bd22014-08-01 11:17:03 -0400525 * @catmap: pointer to the category bitmap
Paul Moore02752762006-11-29 13:18:18 -0500526 * @bit: the bit to set
527 * @flags: memory allocation flags
528 *
529 * Description:
530 * Set the bit specified by @bit in @catmap. Returns zero on success,
531 * negative values on failure.
532 *
533 */
Paul Moore41c3bd22014-08-01 11:17:03 -0400534int netlbl_secattr_catmap_setbit(struct netlbl_lsm_secattr_catmap **catmap,
Paul Moore02752762006-11-29 13:18:18 -0500535 u32 bit,
536 gfp_t flags)
537{
Paul Moore41c3bd22014-08-01 11:17:03 -0400538 struct netlbl_lsm_secattr_catmap *iter = *catmap;
Paul Moore02752762006-11-29 13:18:18 -0500539 u32 node_bit;
540 u32 node_idx;
541
542 while (iter->next != NULL &&
543 bit >= (iter->startbit + NETLBL_CATMAP_SIZE))
544 iter = iter->next;
Paul Moore41c3bd22014-08-01 11:17:03 -0400545 if (bit < iter->startbit) {
546 iter = netlbl_secattr_catmap_alloc(flags);
547 if (iter == NULL)
548 return -ENOMEM;
549 iter->next = *catmap;
550 iter->startbit = bit & ~(NETLBL_CATMAP_SIZE - 1);
551 *catmap = iter;
552 } else if (bit >= (iter->startbit + NETLBL_CATMAP_SIZE)) {
Paul Moore02752762006-11-29 13:18:18 -0500553 iter->next = netlbl_secattr_catmap_alloc(flags);
554 if (iter->next == NULL)
555 return -ENOMEM;
556 iter = iter->next;
557 iter->startbit = bit & ~(NETLBL_CATMAP_SIZE - 1);
558 }
559
560 /* gcc always rounds to zero when doing integer division */
561 node_idx = (bit - iter->startbit) / NETLBL_CATMAP_MAPSIZE;
562 node_bit = bit - iter->startbit - (NETLBL_CATMAP_MAPSIZE * node_idx);
563 iter->bitmap[node_idx] |= NETLBL_CATMAP_BIT << node_bit;
564
565 return 0;
566}
567
568/**
569 * netlbl_secattr_catmap_setrng - Set a range of bits in a LSM secattr catmap
Paul Moore41c3bd22014-08-01 11:17:03 -0400570 * @catmap: pointer to the category bitmap
Paul Moore02752762006-11-29 13:18:18 -0500571 * @start: the starting bit
572 * @end: the last bit in the string
573 * @flags: memory allocation flags
574 *
575 * Description:
576 * Set a range of bits, starting at @start and ending with @end. Returns zero
577 * on success, negative values on failure.
578 *
579 */
Paul Moore41c3bd22014-08-01 11:17:03 -0400580int netlbl_secattr_catmap_setrng(struct netlbl_lsm_secattr_catmap **catmap,
Paul Moore02752762006-11-29 13:18:18 -0500581 u32 start,
582 u32 end,
583 gfp_t flags)
584{
585 int ret_val = 0;
Paul Moore41c3bd22014-08-01 11:17:03 -0400586 struct netlbl_lsm_secattr_catmap *iter = *catmap;
Paul Moore02752762006-11-29 13:18:18 -0500587 u32 iter_max_spot;
588 u32 spot;
Paul Moore41c3bd22014-08-01 11:17:03 -0400589 u32 orig_spot = iter->startbit;
Paul Moore02752762006-11-29 13:18:18 -0500590
591 /* XXX - This could probably be made a bit faster by combining writes
592 * to the catmap instead of setting a single bit each time, but for
593 * right now skipping to the start of the range in the catmap should
594 * be a nice improvement over calling the individual setbit function
595 * repeatedly from a loop. */
596
597 while (iter->next != NULL &&
598 start >= (iter->startbit + NETLBL_CATMAP_SIZE))
599 iter = iter->next;
600 iter_max_spot = iter->startbit + NETLBL_CATMAP_SIZE;
601
602 for (spot = start; spot <= end && ret_val == 0; spot++) {
603 if (spot >= iter_max_spot && iter->next != NULL) {
604 iter = iter->next;
605 iter_max_spot = iter->startbit + NETLBL_CATMAP_SIZE;
606 }
Paul Moore41c3bd22014-08-01 11:17:03 -0400607 ret_val = netlbl_secattr_catmap_setbit(&iter, spot, flags);
608 if (iter->startbit < orig_spot)
609 *catmap = iter;
Paul Moore02752762006-11-29 13:18:18 -0500610 }
611
612 return ret_val;
613}
614
615/*
Paul Moored15c3452006-08-03 16:48:37 -0700616 * LSM Functions
617 */
618
619/**
Paul Moore23bcdc12007-07-18 12:28:45 -0400620 * netlbl_enabled - Determine if the NetLabel subsystem is enabled
621 *
622 * Description:
623 * The LSM can use this function to determine if it should use NetLabel
624 * security attributes in it's enforcement mechanism. Currently, NetLabel is
625 * considered to be enabled when it's configuration contains a valid setup for
626 * at least one labeled protocol (i.e. NetLabel can understand incoming
627 * labeled packets of at least one type); otherwise NetLabel is considered to
628 * be disabled.
629 *
630 */
631int netlbl_enabled(void)
632{
633 /* At some point we probably want to expose this mechanism to the user
634 * as well so that admins can toggle NetLabel regardless of the
635 * configuration */
Paul Moorec783f1c2008-01-29 08:37:52 -0500636 return (atomic_read(&netlabel_mgmt_protocount) > 0);
Paul Moore23bcdc12007-07-18 12:28:45 -0400637}
638
639/**
Paul Moore389fb8002009-03-27 17:10:34 -0400640 * netlbl_sock_setattr - Label a socket using the correct protocol
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700641 * @sk: the socket to label
Paul Moore389fb8002009-03-27 17:10:34 -0400642 * @family: protocol family
Paul Moored15c3452006-08-03 16:48:37 -0700643 * @secattr: the security attributes
644 *
645 * Description:
646 * Attach the correct label to the given socket using the security attributes
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700647 * specified in @secattr. This function requires exclusive access to @sk,
648 * which means it either needs to be in the process of being created or locked.
Paul Moore63c41682008-10-10 10:16:32 -0400649 * Returns zero on success, -EDESTADDRREQ if the domain is configured to use
650 * network address selectors (can't blindly label the socket), and negative
651 * values on all other failures.
Paul Moored15c3452006-08-03 16:48:37 -0700652 *
653 */
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700654int netlbl_sock_setattr(struct sock *sk,
Paul Moore389fb8002009-03-27 17:10:34 -0400655 u16 family,
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700656 const struct netlbl_lsm_secattr *secattr)
Paul Moored15c3452006-08-03 16:48:37 -0700657{
Paul Moore389fb8002009-03-27 17:10:34 -0400658 int ret_val;
Paul Moored15c3452006-08-03 16:48:37 -0700659 struct netlbl_dom_map *dom_entry;
660
661 rcu_read_lock();
662 dom_entry = netlbl_domhsh_getentry(secattr->domain);
Paul Moore389fb8002009-03-27 17:10:34 -0400663 if (dom_entry == NULL) {
664 ret_val = -ENOENT;
Paul Moored15c3452006-08-03 16:48:37 -0700665 goto socket_setattr_return;
Paul Moore389fb8002009-03-27 17:10:34 -0400666 }
667 switch (family) {
668 case AF_INET:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400669 switch (dom_entry->def.type) {
Paul Moore389fb8002009-03-27 17:10:34 -0400670 case NETLBL_NLTYPE_ADDRSELECT:
671 ret_val = -EDESTADDRREQ;
672 break;
673 case NETLBL_NLTYPE_CIPSOV4:
674 ret_val = cipso_v4_sock_setattr(sk,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400675 dom_entry->def.cipso,
676 secattr);
Paul Moore389fb8002009-03-27 17:10:34 -0400677 break;
678 case NETLBL_NLTYPE_UNLABELED:
679 ret_val = 0;
680 break;
681 default:
682 ret_val = -ENOENT;
683 }
Paul Moore63c41682008-10-10 10:16:32 -0400684 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000685#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -0400686 case AF_INET6:
687 /* since we don't support any IPv6 labeling protocols right
688 * now we can optimize everything away until we do */
Paul Moored15c3452006-08-03 16:48:37 -0700689 ret_val = 0;
690 break;
Paul Moore389fb8002009-03-27 17:10:34 -0400691#endif /* IPv6 */
Paul Moored15c3452006-08-03 16:48:37 -0700692 default:
Paul Moore389fb8002009-03-27 17:10:34 -0400693 ret_val = -EPROTONOSUPPORT;
Paul Moored15c3452006-08-03 16:48:37 -0700694 }
695
696socket_setattr_return:
697 rcu_read_unlock();
698 return ret_val;
699}
700
701/**
Paul Moore014ab192008-10-10 10:16:33 -0400702 * netlbl_sock_delattr - Delete all the NetLabel labels on a socket
703 * @sk: the socket
704 *
705 * Description:
706 * Remove all the NetLabel labeling from @sk. The caller is responsible for
707 * ensuring that @sk is locked.
708 *
709 */
710void netlbl_sock_delattr(struct sock *sk)
711{
712 cipso_v4_sock_delattr(sk);
713}
714
715/**
Paul Moore14a72f52006-09-25 15:52:01 -0700716 * netlbl_sock_getattr - Determine the security attributes of a sock
717 * @sk: the sock
718 * @secattr: the security attributes
719 *
720 * Description:
Paul Moore8cc44572008-01-29 08:44:21 -0500721 * Examines the given sock to see if any NetLabel style labeling has been
Paul Moore14a72f52006-09-25 15:52:01 -0700722 * applied to the sock, if so it parses the socket label and returns the
723 * security attributes in @secattr. Returns zero on success, negative values
724 * on failure.
725 *
726 */
Paul Moore389fb8002009-03-27 17:10:34 -0400727int netlbl_sock_getattr(struct sock *sk,
728 struct netlbl_lsm_secattr *secattr)
Paul Moore14a72f52006-09-25 15:52:01 -0700729{
Paul Moore389fb8002009-03-27 17:10:34 -0400730 int ret_val;
731
732 switch (sk->sk_family) {
733 case AF_INET:
734 ret_val = cipso_v4_sock_getattr(sk, secattr);
735 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000736#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -0400737 case AF_INET6:
738 ret_val = -ENOMSG;
739 break;
740#endif /* IPv6 */
741 default:
742 ret_val = -EPROTONOSUPPORT;
743 }
744
745 return ret_val;
Paul Moore14a72f52006-09-25 15:52:01 -0700746}
747
748/**
Paul Moore014ab192008-10-10 10:16:33 -0400749 * netlbl_conn_setattr - Label a connected socket using the correct protocol
750 * @sk: the socket to label
751 * @addr: the destination address
752 * @secattr: the security attributes
753 *
754 * Description:
755 * Attach the correct label to the given connected socket using the security
756 * attributes specified in @secattr. The caller is responsible for ensuring
757 * that @sk is locked. Returns zero on success, negative values on failure.
758 *
759 */
760int netlbl_conn_setattr(struct sock *sk,
761 struct sockaddr *addr,
762 const struct netlbl_lsm_secattr *secattr)
763{
764 int ret_val;
765 struct sockaddr_in *addr4;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400766 struct netlbl_dommap_def *entry;
Paul Moore014ab192008-10-10 10:16:33 -0400767
768 rcu_read_lock();
769 switch (addr->sa_family) {
770 case AF_INET:
771 addr4 = (struct sockaddr_in *)addr;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400772 entry = netlbl_domhsh_getentry_af4(secattr->domain,
773 addr4->sin_addr.s_addr);
774 if (entry == NULL) {
Paul Moore014ab192008-10-10 10:16:33 -0400775 ret_val = -ENOENT;
776 goto conn_setattr_return;
777 }
Paul Moore6a8b7f02013-08-02 14:45:08 -0400778 switch (entry->type) {
Paul Moore014ab192008-10-10 10:16:33 -0400779 case NETLBL_NLTYPE_CIPSOV4:
780 ret_val = cipso_v4_sock_setattr(sk,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400781 entry->cipso, secattr);
Paul Moore014ab192008-10-10 10:16:33 -0400782 break;
783 case NETLBL_NLTYPE_UNLABELED:
784 /* just delete the protocols we support for right now
785 * but we could remove other protocols if needed */
786 cipso_v4_sock_delattr(sk);
787 ret_val = 0;
788 break;
789 default:
790 ret_val = -ENOENT;
791 }
792 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000793#if IS_ENABLED(CONFIG_IPV6)
Paul Moore014ab192008-10-10 10:16:33 -0400794 case AF_INET6:
795 /* since we don't support any IPv6 labeling protocols right
796 * now we can optimize everything away until we do */
797 ret_val = 0;
798 break;
799#endif /* IPv6 */
800 default:
Paul Moore389fb8002009-03-27 17:10:34 -0400801 ret_val = -EPROTONOSUPPORT;
Paul Moore014ab192008-10-10 10:16:33 -0400802 }
803
804conn_setattr_return:
805 rcu_read_unlock();
806 return ret_val;
807}
808
809/**
Paul Moore389fb8002009-03-27 17:10:34 -0400810 * netlbl_req_setattr - Label a request socket using the correct protocol
811 * @req: the request socket to label
812 * @secattr: the security attributes
813 *
814 * Description:
815 * Attach the correct label to the given socket using the security attributes
816 * specified in @secattr. Returns zero on success, negative values on failure.
817 *
818 */
819int netlbl_req_setattr(struct request_sock *req,
820 const struct netlbl_lsm_secattr *secattr)
821{
822 int ret_val;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400823 struct netlbl_dommap_def *entry;
Paul Moore389fb8002009-03-27 17:10:34 -0400824
825 rcu_read_lock();
Paul Moore389fb8002009-03-27 17:10:34 -0400826 switch (req->rsk_ops->family) {
827 case AF_INET:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400828 entry = netlbl_domhsh_getentry_af4(secattr->domain,
Eric Dumazet634fb9792013-10-09 15:21:29 -0700829 inet_rsk(req)->ir_rmt_addr);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400830 if (entry == NULL) {
831 ret_val = -ENOENT;
832 goto req_setattr_return;
Paul Moore389fb8002009-03-27 17:10:34 -0400833 }
Paul Moore6a8b7f02013-08-02 14:45:08 -0400834 switch (entry->type) {
Paul Moore389fb8002009-03-27 17:10:34 -0400835 case NETLBL_NLTYPE_CIPSOV4:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400836 ret_val = cipso_v4_req_setattr(req,
837 entry->cipso, secattr);
Paul Moore389fb8002009-03-27 17:10:34 -0400838 break;
839 case NETLBL_NLTYPE_UNLABELED:
840 /* just delete the protocols we support for right now
841 * but we could remove other protocols if needed */
842 cipso_v4_req_delattr(req);
843 ret_val = 0;
844 break;
845 default:
846 ret_val = -ENOENT;
847 }
848 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000849#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -0400850 case AF_INET6:
851 /* since we don't support any IPv6 labeling protocols right
852 * now we can optimize everything away until we do */
853 ret_val = 0;
854 break;
855#endif /* IPv6 */
856 default:
857 ret_val = -EPROTONOSUPPORT;
858 }
859
860req_setattr_return:
861 rcu_read_unlock();
862 return ret_val;
863}
864
865/**
Paul Moore07feee82009-03-27 17:10:54 -0400866* netlbl_req_delattr - Delete all the NetLabel labels on a socket
867* @req: the socket
868*
869* Description:
870* Remove all the NetLabel labeling from @req.
871*
872*/
873void netlbl_req_delattr(struct request_sock *req)
874{
875 cipso_v4_req_delattr(req);
876}
877
878/**
Paul Moore948bf852008-10-10 10:16:32 -0400879 * netlbl_skbuff_setattr - Label a packet using the correct protocol
880 * @skb: the packet
881 * @family: protocol family
882 * @secattr: the security attributes
883 *
884 * Description:
885 * Attach the correct label to the given packet using the security attributes
886 * specified in @secattr. Returns zero on success, negative values on failure.
887 *
888 */
889int netlbl_skbuff_setattr(struct sk_buff *skb,
890 u16 family,
891 const struct netlbl_lsm_secattr *secattr)
892{
893 int ret_val;
894 struct iphdr *hdr4;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400895 struct netlbl_dommap_def *entry;
Paul Moore948bf852008-10-10 10:16:32 -0400896
897 rcu_read_lock();
898 switch (family) {
899 case AF_INET:
900 hdr4 = ip_hdr(skb);
Paul Moore6a8b7f02013-08-02 14:45:08 -0400901 entry = netlbl_domhsh_getentry_af4(secattr->domain,hdr4->daddr);
902 if (entry == NULL) {
Paul Moore948bf852008-10-10 10:16:32 -0400903 ret_val = -ENOENT;
904 goto skbuff_setattr_return;
905 }
Paul Moore6a8b7f02013-08-02 14:45:08 -0400906 switch (entry->type) {
Paul Moore948bf852008-10-10 10:16:32 -0400907 case NETLBL_NLTYPE_CIPSOV4:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400908 ret_val = cipso_v4_skbuff_setattr(skb, entry->cipso,
909 secattr);
Paul Moore948bf852008-10-10 10:16:32 -0400910 break;
911 case NETLBL_NLTYPE_UNLABELED:
912 /* just delete the protocols we support for right now
913 * but we could remove other protocols if needed */
914 ret_val = cipso_v4_skbuff_delattr(skb);
915 break;
916 default:
917 ret_val = -ENOENT;
918 }
919 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000920#if IS_ENABLED(CONFIG_IPV6)
Paul Moore948bf852008-10-10 10:16:32 -0400921 case AF_INET6:
922 /* since we don't support any IPv6 labeling protocols right
923 * now we can optimize everything away until we do */
924 ret_val = 0;
925 break;
926#endif /* IPv6 */
927 default:
Paul Moore389fb8002009-03-27 17:10:34 -0400928 ret_val = -EPROTONOSUPPORT;
Paul Moore948bf852008-10-10 10:16:32 -0400929 }
930
931skbuff_setattr_return:
932 rcu_read_unlock();
933 return ret_val;
934}
935
936/**
Paul Moored15c3452006-08-03 16:48:37 -0700937 * netlbl_skbuff_getattr - Determine the security attributes of a packet
938 * @skb: the packet
Paul Moore75e22912008-01-29 08:38:04 -0500939 * @family: protocol family
Paul Moored15c3452006-08-03 16:48:37 -0700940 * @secattr: the security attributes
941 *
942 * Description:
943 * Examines the given packet to see if a recognized form of packet labeling
944 * is present, if so it parses the packet label and returns the security
945 * attributes in @secattr. Returns zero on success, negative values on
946 * failure.
947 *
948 */
949int netlbl_skbuff_getattr(const struct sk_buff *skb,
Paul Moore75e22912008-01-29 08:38:04 -0500950 u16 family,
Paul Moored15c3452006-08-03 16:48:37 -0700951 struct netlbl_lsm_secattr *secattr)
952{
Paul Moore389fb8002009-03-27 17:10:34 -0400953 switch (family) {
954 case AF_INET:
955 if (CIPSO_V4_OPTEXIST(skb) &&
956 cipso_v4_skbuff_getattr(skb, secattr) == 0)
957 return 0;
958 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000959#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -0400960 case AF_INET6:
961 break;
962#endif /* IPv6 */
963 }
Paul Moored15c3452006-08-03 16:48:37 -0700964
Paul Moore8cc44572008-01-29 08:44:21 -0500965 return netlbl_unlabel_getattr(skb, family, secattr);
Paul Moored15c3452006-08-03 16:48:37 -0700966}
967
968/**
969 * netlbl_skbuff_err - Handle a LSM error on a sk_buff
970 * @skb: the packet
971 * @error: the error code
Paul Mooredfaebe92008-10-10 10:16:31 -0400972 * @gateway: true if host is acting as a gateway, false otherwise
Paul Moored15c3452006-08-03 16:48:37 -0700973 *
974 * Description:
975 * Deal with a LSM problem when handling the packet in @skb, typically this is
976 * a permission denied problem (-EACCES). The correct action is determined
977 * according to the packet's labeling protocol.
978 *
979 */
Paul Mooredfaebe92008-10-10 10:16:31 -0400980void netlbl_skbuff_err(struct sk_buff *skb, int error, int gateway)
Paul Moored15c3452006-08-03 16:48:37 -0700981{
982 if (CIPSO_V4_OPTEXIST(skb))
Paul Mooredfaebe92008-10-10 10:16:31 -0400983 cipso_v4_error(skb, error, gateway);
Paul Moored15c3452006-08-03 16:48:37 -0700984}
985
986/**
987 * netlbl_cache_invalidate - Invalidate all of the NetLabel protocol caches
988 *
989 * Description:
990 * For all of the NetLabel protocols that support some form of label mapping
991 * cache, invalidate the cache. Returns zero on success, negative values on
992 * error.
993 *
994 */
995void netlbl_cache_invalidate(void)
996{
997 cipso_v4_cache_invalidate();
998}
999
1000/**
1001 * netlbl_cache_add - Add an entry to a NetLabel protocol cache
1002 * @skb: the packet
1003 * @secattr: the packet's security attributes
1004 *
1005 * Description:
1006 * Add the LSM security attributes for the given packet to the underlying
1007 * NetLabel protocol's label mapping cache. Returns zero on success, negative
1008 * values on error.
1009 *
1010 */
1011int netlbl_cache_add(const struct sk_buff *skb,
1012 const struct netlbl_lsm_secattr *secattr)
1013{
Paul Moore701a90b2006-11-17 17:38:46 -05001014 if ((secattr->flags & NETLBL_SECATTR_CACHE) == 0)
Paul Moored15c3452006-08-03 16:48:37 -07001015 return -ENOMSG;
1016
1017 if (CIPSO_V4_OPTEXIST(skb))
1018 return cipso_v4_cache_add(skb, secattr);
1019
1020 return -ENOMSG;
1021}
1022
1023/*
Paul Moore6c2e8ac2008-12-31 12:54:11 -05001024 * Protocol Engine Functions
1025 */
1026
1027/**
1028 * netlbl_audit_start - Start an audit message
1029 * @type: audit message type
1030 * @audit_info: NetLabel audit information
1031 *
1032 * Description:
1033 * Start an audit message using the type specified in @type and fill the audit
1034 * message with some fields common to all NetLabel audit messages. This
1035 * function should only be used by protocol engines, not LSMs. Returns a
1036 * pointer to the audit buffer on success, NULL on failure.
1037 *
1038 */
1039struct audit_buffer *netlbl_audit_start(int type,
1040 struct netlbl_audit *audit_info)
1041{
1042 return netlbl_audit_start_common(type, audit_info);
1043}
1044
1045/*
Paul Moored15c3452006-08-03 16:48:37 -07001046 * Setup Functions
1047 */
1048
1049/**
1050 * netlbl_init - Initialize NetLabel
1051 *
1052 * Description:
1053 * Perform the required NetLabel initialization before first use.
1054 *
1055 */
1056static int __init netlbl_init(void)
1057{
1058 int ret_val;
1059
1060 printk(KERN_INFO "NetLabel: Initializing\n");
1061 printk(KERN_INFO "NetLabel: domain hash size = %u\n",
1062 (1 << NETLBL_DOMHSH_BITSIZE));
1063 printk(KERN_INFO "NetLabel: protocols ="
1064 " UNLABELED"
1065 " CIPSOv4"
1066 "\n");
1067
1068 ret_val = netlbl_domhsh_init(NETLBL_DOMHSH_BITSIZE);
1069 if (ret_val != 0)
1070 goto init_failure;
1071
Paul Moore8cc44572008-01-29 08:44:21 -05001072 ret_val = netlbl_unlabel_init(NETLBL_UNLHSH_BITSIZE);
1073 if (ret_val != 0)
1074 goto init_failure;
1075
Paul Moored15c3452006-08-03 16:48:37 -07001076 ret_val = netlbl_netlink_init();
1077 if (ret_val != 0)
1078 goto init_failure;
1079
1080 ret_val = netlbl_unlabel_defconf();
1081 if (ret_val != 0)
1082 goto init_failure;
1083 printk(KERN_INFO "NetLabel: unlabeled traffic allowed by default\n");
1084
1085 return 0;
1086
1087init_failure:
1088 panic("NetLabel: failed to initialize properly (%d)\n", ret_val);
1089}
1090
1091subsys_initcall(netlbl_init);