1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * This file defines the kernel API for the NetLabel system. The NetLabel
6 * system manages static and dynamic label mappings for network protocols such
9 * Author: Paul Moore <paul@paul-moore.com>
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/slab.h>
19 #include <linux/audit.h>
21 #include <linux/in6.h>
24 #include <net/netlabel.h>
25 #include <net/cipso_ipv4.h>
26 #include <net/calipso.h>
28 #include <linux/atomic.h>
30 #include "netlabel_domainhash.h"
31 #include "netlabel_unlabeled.h"
32 #include "netlabel_cipso_v4.h"
33 #include "netlabel_calipso.h"
34 #include "netlabel_user.h"
35 #include "netlabel_mgmt.h"
36 #include "netlabel_addrlist.h"
39 * Configuration Functions
43 * netlbl_cfg_map_del - Remove a NetLabel/LSM domain mapping
44 * @domain: the domain mapping to remove
45 * @family: address family
47 * @mask: IP address mask
48 * @audit_info: NetLabel audit information
51 * Removes a NetLabel/LSM domain mapping. A @domain value of NULL causes the
52 * default domain mapping to be removed. Returns zero on success, negative
56 int netlbl_cfg_map_del(const char *domain
,
60 struct netlbl_audit
*audit_info
)
62 if (addr
== NULL
&& mask
== NULL
) {
63 return netlbl_domhsh_remove(domain
, family
, audit_info
);
64 } else if (addr
!= NULL
&& mask
!= NULL
) {
67 return netlbl_domhsh_remove_af4(domain
, addr
, mask
,
69 #if IS_ENABLED(CONFIG_IPV6)
71 return netlbl_domhsh_remove_af6(domain
, addr
, mask
,
82 * netlbl_cfg_unlbl_map_add - Add a new unlabeled mapping
83 * @domain: the domain mapping to add
84 * @family: address family
86 * @mask: IP address mask
87 * @audit_info: NetLabel audit information
90 * Adds a new unlabeled NetLabel/LSM domain mapping. A @domain value of NULL
91 * causes a new default domain mapping to be added. Returns zero on success,
92 * negative values on failure.
95 int netlbl_cfg_unlbl_map_add(const char *domain
,
99 struct netlbl_audit
*audit_info
)
101 int ret_val
= -ENOMEM
;
102 struct netlbl_dom_map
*entry
;
103 struct netlbl_domaddr_map
*addrmap
= NULL
;
104 struct netlbl_domaddr4_map
*map4
= NULL
;
105 struct netlbl_domaddr6_map
*map6
= NULL
;
107 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
110 if (domain
!= NULL
) {
111 entry
->domain
= kstrdup(domain
, GFP_ATOMIC
);
112 if (entry
->domain
== NULL
)
113 goto cfg_unlbl_map_add_failure
;
115 entry
->family
= family
;
117 if (addr
== NULL
&& mask
== NULL
)
118 entry
->def
.type
= NETLBL_NLTYPE_UNLABELED
;
119 else if (addr
!= NULL
&& mask
!= NULL
) {
120 addrmap
= kzalloc(sizeof(*addrmap
), GFP_ATOMIC
);
122 goto cfg_unlbl_map_add_failure
;
123 INIT_LIST_HEAD(&addrmap
->list4
);
124 INIT_LIST_HEAD(&addrmap
->list6
);
128 const struct in_addr
*addr4
= addr
;
129 const struct in_addr
*mask4
= mask
;
130 map4
= kzalloc(sizeof(*map4
), GFP_ATOMIC
);
132 goto cfg_unlbl_map_add_failure
;
133 map4
->def
.type
= NETLBL_NLTYPE_UNLABELED
;
134 map4
->list
.addr
= addr4
->s_addr
& mask4
->s_addr
;
135 map4
->list
.mask
= mask4
->s_addr
;
136 map4
->list
.valid
= 1;
137 ret_val
= netlbl_af4list_add(&map4
->list
,
140 goto cfg_unlbl_map_add_failure
;
143 #if IS_ENABLED(CONFIG_IPV6)
145 const struct in6_addr
*addr6
= addr
;
146 const struct in6_addr
*mask6
= mask
;
147 map6
= kzalloc(sizeof(*map6
), GFP_ATOMIC
);
149 goto cfg_unlbl_map_add_failure
;
150 map6
->def
.type
= NETLBL_NLTYPE_UNLABELED
;
151 map6
->list
.addr
= *addr6
;
152 map6
->list
.addr
.s6_addr32
[0] &= mask6
->s6_addr32
[0];
153 map6
->list
.addr
.s6_addr32
[1] &= mask6
->s6_addr32
[1];
154 map6
->list
.addr
.s6_addr32
[2] &= mask6
->s6_addr32
[2];
155 map6
->list
.addr
.s6_addr32
[3] &= mask6
->s6_addr32
[3];
156 map6
->list
.mask
= *mask6
;
157 map6
->list
.valid
= 1;
158 ret_val
= netlbl_af6list_add(&map6
->list
,
161 goto cfg_unlbl_map_add_failure
;
166 goto cfg_unlbl_map_add_failure
;
169 entry
->def
.addrsel
= addrmap
;
170 entry
->def
.type
= NETLBL_NLTYPE_ADDRSELECT
;
173 goto cfg_unlbl_map_add_failure
;
176 ret_val
= netlbl_domhsh_add(entry
, audit_info
);
178 goto cfg_unlbl_map_add_failure
;
182 cfg_unlbl_map_add_failure
:
183 kfree(entry
->domain
);
193 * netlbl_cfg_unlbl_static_add - Adds a new static label
194 * @net: network namespace
195 * @dev_name: interface name
196 * @addr: IP address in network byte order (struct in[6]_addr)
197 * @mask: address mask in network byte order (struct in[6]_addr)
198 * @family: address family
199 * @secid: LSM secid value for the entry
200 * @audit_info: NetLabel audit information
203 * Adds a new NetLabel static label to be used when protocol provided labels
204 * are not present on incoming traffic. If @dev_name is NULL then the default
205 * interface will be used. Returns zero on success, negative values on failure.
208 int netlbl_cfg_unlbl_static_add(struct net
*net
,
209 const char *dev_name
,
214 struct netlbl_audit
*audit_info
)
220 addr_len
= sizeof(struct in_addr
);
222 #if IS_ENABLED(CONFIG_IPV6)
224 addr_len
= sizeof(struct in6_addr
);
228 return -EPFNOSUPPORT
;
231 return netlbl_unlhsh_add(net
,
232 dev_name
, addr
, mask
, addr_len
,
237 * netlbl_cfg_unlbl_static_del - Removes an existing static label
238 * @net: network namespace
239 * @dev_name: interface name
240 * @addr: IP address in network byte order (struct in[6]_addr)
241 * @mask: address mask in network byte order (struct in[6]_addr)
242 * @family: address family
243 * @audit_info: NetLabel audit information
246 * Removes an existing NetLabel static label used when protocol provided labels
247 * are not present on incoming traffic. If @dev_name is NULL then the default
248 * interface will be used. Returns zero on success, negative values on failure.
251 int netlbl_cfg_unlbl_static_del(struct net
*net
,
252 const char *dev_name
,
256 struct netlbl_audit
*audit_info
)
262 addr_len
= sizeof(struct in_addr
);
264 #if IS_ENABLED(CONFIG_IPV6)
266 addr_len
= sizeof(struct in6_addr
);
270 return -EPFNOSUPPORT
;
273 return netlbl_unlhsh_remove(net
,
274 dev_name
, addr
, mask
, addr_len
,
279 * netlbl_cfg_cipsov4_add - Add a new CIPSOv4 DOI definition
280 * @doi_def: CIPSO DOI definition
281 * @audit_info: NetLabel audit information
284 * Add a new CIPSO DOI definition as defined by @doi_def. Returns zero on
285 * success and negative values on failure.
288 int netlbl_cfg_cipsov4_add(struct cipso_v4_doi
*doi_def
,
289 struct netlbl_audit
*audit_info
)
291 return cipso_v4_doi_add(doi_def
, audit_info
);
295 * netlbl_cfg_cipsov4_del - Remove an existing CIPSOv4 DOI definition
297 * @audit_info: NetLabel audit information
300 * Remove an existing CIPSO DOI definition matching @doi. Returns zero on
301 * success and negative values on failure.
304 void netlbl_cfg_cipsov4_del(u32 doi
, struct netlbl_audit
*audit_info
)
306 cipso_v4_doi_remove(doi
, audit_info
);
310 * netlbl_cfg_cipsov4_map_add - Add a new CIPSOv4 DOI mapping
311 * @doi: the CIPSO DOI
312 * @domain: the domain mapping to add
314 * @mask: IP address mask
315 * @audit_info: NetLabel audit information
318 * Add a new NetLabel/LSM domain mapping for the given CIPSO DOI to the NetLabel
319 * subsystem. A @domain value of NULL adds a new default domain mapping.
320 * Returns zero on success, negative values on failure.
323 int netlbl_cfg_cipsov4_map_add(u32 doi
,
325 const struct in_addr
*addr
,
326 const struct in_addr
*mask
,
327 struct netlbl_audit
*audit_info
)
329 int ret_val
= -ENOMEM
;
330 struct cipso_v4_doi
*doi_def
;
331 struct netlbl_dom_map
*entry
;
332 struct netlbl_domaddr_map
*addrmap
= NULL
;
333 struct netlbl_domaddr4_map
*addrinfo
= NULL
;
335 doi_def
= cipso_v4_doi_getdef(doi
);
339 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
342 entry
->family
= AF_INET
;
343 if (domain
!= NULL
) {
344 entry
->domain
= kstrdup(domain
, GFP_ATOMIC
);
345 if (entry
->domain
== NULL
)
349 if (addr
== NULL
&& mask
== NULL
) {
350 entry
->def
.cipso
= doi_def
;
351 entry
->def
.type
= NETLBL_NLTYPE_CIPSOV4
;
352 } else if (addr
!= NULL
&& mask
!= NULL
) {
353 addrmap
= kzalloc(sizeof(*addrmap
), GFP_ATOMIC
);
356 INIT_LIST_HEAD(&addrmap
->list4
);
357 INIT_LIST_HEAD(&addrmap
->list6
);
359 addrinfo
= kzalloc(sizeof(*addrinfo
), GFP_ATOMIC
);
360 if (addrinfo
== NULL
)
362 addrinfo
->def
.cipso
= doi_def
;
363 addrinfo
->def
.type
= NETLBL_NLTYPE_CIPSOV4
;
364 addrinfo
->list
.addr
= addr
->s_addr
& mask
->s_addr
;
365 addrinfo
->list
.mask
= mask
->s_addr
;
366 addrinfo
->list
.valid
= 1;
367 ret_val
= netlbl_af4list_add(&addrinfo
->list
, &addrmap
->list4
);
369 goto cfg_cipsov4_map_add_failure
;
371 entry
->def
.addrsel
= addrmap
;
372 entry
->def
.type
= NETLBL_NLTYPE_ADDRSELECT
;
378 ret_val
= netlbl_domhsh_add(entry
, audit_info
);
380 goto cfg_cipsov4_map_add_failure
;
384 cfg_cipsov4_map_add_failure
:
389 kfree(entry
->domain
);
393 cipso_v4_doi_putdef(doi_def
);
398 * netlbl_cfg_calipso_add - Add a new CALIPSO DOI definition
399 * @doi_def: CALIPSO DOI definition
400 * @audit_info: NetLabel audit information
403 * Add a new CALIPSO DOI definition as defined by @doi_def. Returns zero on
404 * success and negative values on failure.
407 int netlbl_cfg_calipso_add(struct calipso_doi
*doi_def
,
408 struct netlbl_audit
*audit_info
)
410 #if IS_ENABLED(CONFIG_IPV6)
411 return calipso_doi_add(doi_def
, audit_info
);
418 * netlbl_cfg_calipso_del - Remove an existing CALIPSO DOI definition
420 * @audit_info: NetLabel audit information
423 * Remove an existing CALIPSO DOI definition matching @doi. Returns zero on
424 * success and negative values on failure.
427 void netlbl_cfg_calipso_del(u32 doi
, struct netlbl_audit
*audit_info
)
429 #if IS_ENABLED(CONFIG_IPV6)
430 calipso_doi_remove(doi
, audit_info
);
435 * netlbl_cfg_calipso_map_add - Add a new CALIPSO DOI mapping
436 * @doi: the CALIPSO DOI
437 * @domain: the domain mapping to add
439 * @mask: IP address mask
440 * @audit_info: NetLabel audit information
443 * Add a new NetLabel/LSM domain mapping for the given CALIPSO DOI to the
444 * NetLabel subsystem. A @domain value of NULL adds a new default domain
445 * mapping. Returns zero on success, negative values on failure.
448 int netlbl_cfg_calipso_map_add(u32 doi
,
450 const struct in6_addr
*addr
,
451 const struct in6_addr
*mask
,
452 struct netlbl_audit
*audit_info
)
454 #if IS_ENABLED(CONFIG_IPV6)
455 int ret_val
= -ENOMEM
;
456 struct calipso_doi
*doi_def
;
457 struct netlbl_dom_map
*entry
;
458 struct netlbl_domaddr_map
*addrmap
= NULL
;
459 struct netlbl_domaddr6_map
*addrinfo
= NULL
;
461 doi_def
= calipso_doi_getdef(doi
);
465 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
468 entry
->family
= AF_INET6
;
469 if (domain
!= NULL
) {
470 entry
->domain
= kstrdup(domain
, GFP_ATOMIC
);
471 if (entry
->domain
== NULL
)
475 if (addr
== NULL
&& mask
== NULL
) {
476 entry
->def
.calipso
= doi_def
;
477 entry
->def
.type
= NETLBL_NLTYPE_CALIPSO
;
478 } else if (addr
!= NULL
&& mask
!= NULL
) {
479 addrmap
= kzalloc(sizeof(*addrmap
), GFP_ATOMIC
);
482 INIT_LIST_HEAD(&addrmap
->list4
);
483 INIT_LIST_HEAD(&addrmap
->list6
);
485 addrinfo
= kzalloc(sizeof(*addrinfo
), GFP_ATOMIC
);
486 if (addrinfo
== NULL
)
488 addrinfo
->def
.calipso
= doi_def
;
489 addrinfo
->def
.type
= NETLBL_NLTYPE_CALIPSO
;
490 addrinfo
->list
.addr
= *addr
;
491 addrinfo
->list
.addr
.s6_addr32
[0] &= mask
->s6_addr32
[0];
492 addrinfo
->list
.addr
.s6_addr32
[1] &= mask
->s6_addr32
[1];
493 addrinfo
->list
.addr
.s6_addr32
[2] &= mask
->s6_addr32
[2];
494 addrinfo
->list
.addr
.s6_addr32
[3] &= mask
->s6_addr32
[3];
495 addrinfo
->list
.mask
= *mask
;
496 addrinfo
->list
.valid
= 1;
497 ret_val
= netlbl_af6list_add(&addrinfo
->list
, &addrmap
->list6
);
499 goto cfg_calipso_map_add_failure
;
501 entry
->def
.addrsel
= addrmap
;
502 entry
->def
.type
= NETLBL_NLTYPE_ADDRSELECT
;
508 ret_val
= netlbl_domhsh_add(entry
, audit_info
);
510 goto cfg_calipso_map_add_failure
;
514 cfg_calipso_map_add_failure
:
519 kfree(entry
->domain
);
523 calipso_doi_putdef(doi_def
);
531 * Security Attribute Functions
534 #define _CM_F_NONE 0x00000000
535 #define _CM_F_ALLOC 0x00000001
536 #define _CM_F_WALK 0x00000002
539 * _netlbl_catmap_getnode - Get a individual node from a catmap
540 * @catmap: pointer to the category bitmap
541 * @offset: the requested offset
542 * @cm_flags: catmap flags, see _CM_F_*
543 * @gfp_flags: memory allocation flags
546 * Iterate through the catmap looking for the node associated with @offset.
547 * If the _CM_F_ALLOC flag is set in @cm_flags and there is no associated node,
548 * one will be created and inserted into the catmap. If the _CM_F_WALK flag is
549 * set in @cm_flags and there is no associated node, the next highest node will
550 * be returned. Returns a pointer to the node on success, NULL on failure.
553 static struct netlbl_lsm_catmap
*_netlbl_catmap_getnode(
554 struct netlbl_lsm_catmap
**catmap
,
556 unsigned int cm_flags
,
559 struct netlbl_lsm_catmap
*iter
= *catmap
;
560 struct netlbl_lsm_catmap
*prev
= NULL
;
563 goto catmap_getnode_alloc
;
564 if (offset
< iter
->startbit
)
565 goto catmap_getnode_walk
;
566 while (iter
&& offset
>= (iter
->startbit
+ NETLBL_CATMAP_SIZE
)) {
570 if (iter
== NULL
|| offset
< iter
->startbit
)
571 goto catmap_getnode_walk
;
576 if (cm_flags
& _CM_F_WALK
)
578 catmap_getnode_alloc
:
579 if (!(cm_flags
& _CM_F_ALLOC
))
582 iter
= netlbl_catmap_alloc(gfp_flags
);
585 iter
->startbit
= offset
& ~(NETLBL_CATMAP_SIZE
- 1);
588 iter
->next
= *catmap
;
591 iter
->next
= prev
->next
;
599 * netlbl_catmap_walk - Walk a LSM secattr catmap looking for a bit
600 * @catmap: the category bitmap
601 * @offset: the offset to start searching at, in bits
604 * This function walks a LSM secattr category bitmap starting at @offset and
605 * returns the spot of the first set bit or -ENOENT if no bits are set.
608 int netlbl_catmap_walk(struct netlbl_lsm_catmap
*catmap
, u32 offset
)
610 struct netlbl_lsm_catmap
*iter
;
613 NETLBL_CATMAP_MAPTYPE bitmap
;
615 iter
= _netlbl_catmap_getnode(&catmap
, offset
, _CM_F_WALK
, 0);
618 if (offset
> iter
->startbit
) {
619 offset
-= iter
->startbit
;
620 idx
= offset
/ NETLBL_CATMAP_MAPSIZE
;
621 bit
= offset
% NETLBL_CATMAP_MAPSIZE
;
626 bitmap
= iter
->bitmap
[idx
] >> bit
;
630 while ((bitmap
& NETLBL_CATMAP_BIT
) == 0) {
634 return iter
->startbit
+
635 (NETLBL_CATMAP_MAPSIZE
* idx
) + bit
;
637 if (++idx
>= NETLBL_CATMAP_MAPCNT
) {
638 if (iter
->next
!= NULL
) {
644 bitmap
= iter
->bitmap
[idx
];
650 EXPORT_SYMBOL(netlbl_catmap_walk
);
653 * netlbl_catmap_walkrng - Find the end of a string of set bits
654 * @catmap: the category bitmap
655 * @offset: the offset to start searching at, in bits
658 * This function walks a LSM secattr category bitmap starting at @offset and
659 * returns the spot of the first cleared bit or -ENOENT if the offset is past
660 * the end of the bitmap.
663 int netlbl_catmap_walkrng(struct netlbl_lsm_catmap
*catmap
, u32 offset
)
665 struct netlbl_lsm_catmap
*iter
;
666 struct netlbl_lsm_catmap
*prev
= NULL
;
669 NETLBL_CATMAP_MAPTYPE bitmask
;
670 NETLBL_CATMAP_MAPTYPE bitmap
;
672 iter
= _netlbl_catmap_getnode(&catmap
, offset
, _CM_F_WALK
, 0);
675 if (offset
> iter
->startbit
) {
676 offset
-= iter
->startbit
;
677 idx
= offset
/ NETLBL_CATMAP_MAPSIZE
;
678 bit
= offset
% NETLBL_CATMAP_MAPSIZE
;
683 bitmask
= NETLBL_CATMAP_BIT
<< bit
;
686 bitmap
= iter
->bitmap
[idx
];
687 while (bitmask
!= 0 && (bitmap
& bitmask
) != 0) {
692 if (prev
&& idx
== 0 && bit
== 0)
693 return prev
->startbit
+ NETLBL_CATMAP_SIZE
- 1;
694 else if (bitmask
!= 0)
695 return iter
->startbit
+
696 (NETLBL_CATMAP_MAPSIZE
* idx
) + bit
- 1;
697 else if (++idx
>= NETLBL_CATMAP_MAPCNT
) {
698 if (iter
->next
== NULL
)
699 return iter
->startbit
+ NETLBL_CATMAP_SIZE
- 1;
704 bitmask
= NETLBL_CATMAP_BIT
;
712 * netlbl_catmap_getlong - Export an unsigned long bitmap
713 * @catmap: pointer to the category bitmap
714 * @offset: pointer to the requested offset
715 * @bitmap: the exported bitmap
718 * Export a bitmap with an offset greater than or equal to @offset and return
719 * it in @bitmap. The @offset must be aligned to an unsigned long and will be
720 * updated on return if different from what was requested; if the catmap is
721 * empty at the requested offset and beyond, the @offset is set to (u32)-1.
722 * Returns zero on sucess, negative values on failure.
725 int netlbl_catmap_getlong(struct netlbl_lsm_catmap
*catmap
,
727 unsigned long *bitmap
)
729 struct netlbl_lsm_catmap
*iter
;
733 /* only allow aligned offsets */
734 if ((off
& (BITS_PER_LONG
- 1)) != 0)
737 if (off
< catmap
->startbit
) {
738 off
= catmap
->startbit
;
741 iter
= _netlbl_catmap_getnode(&catmap
, off
, _CM_F_WALK
, 0);
747 if (off
< iter
->startbit
) {
748 *offset
= iter
->startbit
;
751 off
-= iter
->startbit
;
752 idx
= off
/ NETLBL_CATMAP_MAPSIZE
;
753 *bitmap
= iter
->bitmap
[idx
] >> (off
% NETLBL_CATMAP_MAPSIZE
);
759 * netlbl_catmap_setbit - Set a bit in a LSM secattr catmap
760 * @catmap: pointer to the category bitmap
761 * @bit: the bit to set
762 * @flags: memory allocation flags
765 * Set the bit specified by @bit in @catmap. Returns zero on success,
766 * negative values on failure.
769 int netlbl_catmap_setbit(struct netlbl_lsm_catmap
**catmap
,
773 struct netlbl_lsm_catmap
*iter
;
776 iter
= _netlbl_catmap_getnode(catmap
, bit
, _CM_F_ALLOC
, flags
);
780 bit
-= iter
->startbit
;
781 idx
= bit
/ NETLBL_CATMAP_MAPSIZE
;
782 iter
->bitmap
[idx
] |= NETLBL_CATMAP_BIT
<< (bit
% NETLBL_CATMAP_MAPSIZE
);
786 EXPORT_SYMBOL(netlbl_catmap_setbit
);
789 * netlbl_catmap_setrng - Set a range of bits in a LSM secattr catmap
790 * @catmap: pointer to the category bitmap
791 * @start: the starting bit
792 * @end: the last bit in the string
793 * @flags: memory allocation flags
796 * Set a range of bits, starting at @start and ending with @end. Returns zero
797 * on success, negative values on failure.
800 int netlbl_catmap_setrng(struct netlbl_lsm_catmap
**catmap
,
808 while (rc
== 0 && spot
<= end
) {
809 if (((spot
& (BITS_PER_LONG
- 1)) == 0) &&
810 ((end
- spot
) > BITS_PER_LONG
)) {
811 rc
= netlbl_catmap_setlong(catmap
,
815 spot
+= BITS_PER_LONG
;
817 rc
= netlbl_catmap_setbit(catmap
, spot
++, flags
);
824 * netlbl_catmap_setlong - Import an unsigned long bitmap
825 * @catmap: pointer to the category bitmap
826 * @offset: offset to the start of the imported bitmap
827 * @bitmap: the bitmap to import
828 * @flags: memory allocation flags
831 * Import the bitmap specified in @bitmap into @catmap, using the offset
832 * in @offset. The offset must be aligned to an unsigned long. Returns zero
833 * on success, negative values on failure.
836 int netlbl_catmap_setlong(struct netlbl_lsm_catmap
**catmap
,
838 unsigned long bitmap
,
841 struct netlbl_lsm_catmap
*iter
;
844 /* only allow aligned offsets */
845 if ((offset
& (BITS_PER_LONG
- 1)) != 0)
848 iter
= _netlbl_catmap_getnode(catmap
, offset
, _CM_F_ALLOC
, flags
);
852 offset
-= iter
->startbit
;
853 idx
= offset
/ NETLBL_CATMAP_MAPSIZE
;
854 iter
->bitmap
[idx
] |= bitmap
<< (offset
% NETLBL_CATMAP_MAPSIZE
);
863 * netlbl_bitmap_walk - Walk a bitmap looking for a bit
864 * @bitmap: the bitmap
865 * @bitmap_len: length in bits
866 * @offset: starting offset
867 * @state: if non-zero, look for a set (1) bit else look for a cleared (0) bit
870 * Starting at @offset, walk the bitmap from left to right until either the
871 * desired bit is found or we reach the end. Return the bit offset, -1 if
872 * not found, or -2 if error.
874 int netlbl_bitmap_walk(const unsigned char *bitmap
, u32 bitmap_len
,
875 u32 offset
, u8 state
)
879 unsigned char bitmask
;
882 byte_offset
= offset
/ 8;
883 byte
= bitmap
[byte_offset
];
885 bitmask
= 0x80 >> (offset
% 8);
887 while (bit_spot
< bitmap_len
) {
888 if ((state
&& (byte
& bitmask
) == bitmask
) ||
889 (state
== 0 && (byte
& bitmask
) == 0))
892 if (++bit_spot
>= bitmap_len
)
896 byte
= bitmap
[++byte_offset
];
903 EXPORT_SYMBOL(netlbl_bitmap_walk
);
906 * netlbl_bitmap_setbit - Sets a single bit in a bitmap
907 * @bitmap: the bitmap
909 * @state: if non-zero, set the bit (1) else clear the bit (0)
912 * Set a single bit in the bitmask. Returns zero on success, negative values
915 void netlbl_bitmap_setbit(unsigned char *bitmap
, u32 bit
, u8 state
)
920 /* gcc always rounds to zero when doing integer division */
922 bitmask
= 0x80 >> (bit
% 8);
924 bitmap
[byte_spot
] |= bitmask
;
926 bitmap
[byte_spot
] &= ~bitmask
;
928 EXPORT_SYMBOL(netlbl_bitmap_setbit
);
935 * netlbl_enabled - Determine if the NetLabel subsystem is enabled
938 * The LSM can use this function to determine if it should use NetLabel
939 * security attributes in it's enforcement mechanism. Currently, NetLabel is
940 * considered to be enabled when it's configuration contains a valid setup for
941 * at least one labeled protocol (i.e. NetLabel can understand incoming
942 * labeled packets of at least one type); otherwise NetLabel is considered to
946 int netlbl_enabled(void)
948 /* At some point we probably want to expose this mechanism to the user
949 * as well so that admins can toggle NetLabel regardless of the
951 return (atomic_read(&netlabel_mgmt_protocount
) > 0);
955 * netlbl_sock_setattr - Label a socket using the correct protocol
956 * @sk: the socket to label
957 * @family: protocol family
958 * @secattr: the security attributes
961 * Attach the correct label to the given socket using the security attributes
962 * specified in @secattr. This function requires exclusive access to @sk,
963 * which means it either needs to be in the process of being created or locked.
964 * Returns zero on success, -EDESTADDRREQ if the domain is configured to use
965 * network address selectors (can't blindly label the socket), and negative
966 * values on all other failures.
969 int netlbl_sock_setattr(struct sock
*sk
,
971 const struct netlbl_lsm_secattr
*secattr
)
974 struct netlbl_dom_map
*dom_entry
;
977 dom_entry
= netlbl_domhsh_getentry(secattr
->domain
, family
);
978 if (dom_entry
== NULL
) {
980 goto socket_setattr_return
;
984 switch (dom_entry
->def
.type
) {
985 case NETLBL_NLTYPE_ADDRSELECT
:
986 ret_val
= -EDESTADDRREQ
;
988 case NETLBL_NLTYPE_CIPSOV4
:
989 ret_val
= cipso_v4_sock_setattr(sk
,
990 dom_entry
->def
.cipso
,
993 case NETLBL_NLTYPE_UNLABELED
:
1000 #if IS_ENABLED(CONFIG_IPV6)
1002 switch (dom_entry
->def
.type
) {
1003 case NETLBL_NLTYPE_ADDRSELECT
:
1004 ret_val
= -EDESTADDRREQ
;
1006 case NETLBL_NLTYPE_CALIPSO
:
1007 ret_val
= calipso_sock_setattr(sk
,
1008 dom_entry
->def
.calipso
,
1011 case NETLBL_NLTYPE_UNLABELED
:
1020 ret_val
= -EPROTONOSUPPORT
;
1023 socket_setattr_return
:
1029 * netlbl_sock_delattr - Delete all the NetLabel labels on a socket
1033 * Remove all the NetLabel labeling from @sk. The caller is responsible for
1034 * ensuring that @sk is locked.
1037 void netlbl_sock_delattr(struct sock
*sk
)
1039 switch (sk
->sk_family
) {
1041 cipso_v4_sock_delattr(sk
);
1043 #if IS_ENABLED(CONFIG_IPV6)
1045 calipso_sock_delattr(sk
);
1052 * netlbl_sock_getattr - Determine the security attributes of a sock
1054 * @secattr: the security attributes
1057 * Examines the given sock to see if any NetLabel style labeling has been
1058 * applied to the sock, if so it parses the socket label and returns the
1059 * security attributes in @secattr. Returns zero on success, negative values
1063 int netlbl_sock_getattr(struct sock
*sk
,
1064 struct netlbl_lsm_secattr
*secattr
)
1068 switch (sk
->sk_family
) {
1070 ret_val
= cipso_v4_sock_getattr(sk
, secattr
);
1072 #if IS_ENABLED(CONFIG_IPV6)
1074 ret_val
= calipso_sock_getattr(sk
, secattr
);
1078 ret_val
= -EPROTONOSUPPORT
;
1085 * netlbl_conn_setattr - Label a connected socket using the correct protocol
1086 * @sk: the socket to label
1087 * @addr: the destination address
1088 * @secattr: the security attributes
1091 * Attach the correct label to the given connected socket using the security
1092 * attributes specified in @secattr. The caller is responsible for ensuring
1093 * that @sk is locked. Returns zero on success, negative values on failure.
1096 int netlbl_conn_setattr(struct sock
*sk
,
1097 struct sockaddr
*addr
,
1098 const struct netlbl_lsm_secattr
*secattr
)
1101 struct sockaddr_in
*addr4
;
1102 #if IS_ENABLED(CONFIG_IPV6)
1103 struct sockaddr_in6
*addr6
;
1105 struct netlbl_dommap_def
*entry
;
1108 switch (addr
->sa_family
) {
1110 addr4
= (struct sockaddr_in
*)addr
;
1111 entry
= netlbl_domhsh_getentry_af4(secattr
->domain
,
1112 addr4
->sin_addr
.s_addr
);
1113 if (entry
== NULL
) {
1115 goto conn_setattr_return
;
1117 switch (entry
->type
) {
1118 case NETLBL_NLTYPE_CIPSOV4
:
1119 ret_val
= cipso_v4_sock_setattr(sk
,
1120 entry
->cipso
, secattr
);
1122 case NETLBL_NLTYPE_UNLABELED
:
1123 /* just delete the protocols we support for right now
1124 * but we could remove other protocols if needed */
1125 netlbl_sock_delattr(sk
);
1132 #if IS_ENABLED(CONFIG_IPV6)
1134 addr6
= (struct sockaddr_in6
*)addr
;
1135 entry
= netlbl_domhsh_getentry_af6(secattr
->domain
,
1137 if (entry
== NULL
) {
1139 goto conn_setattr_return
;
1141 switch (entry
->type
) {
1142 case NETLBL_NLTYPE_CALIPSO
:
1143 ret_val
= calipso_sock_setattr(sk
,
1144 entry
->calipso
, secattr
);
1146 case NETLBL_NLTYPE_UNLABELED
:
1147 /* just delete the protocols we support for right now
1148 * but we could remove other protocols if needed */
1149 netlbl_sock_delattr(sk
);
1158 ret_val
= -EPROTONOSUPPORT
;
1161 conn_setattr_return
:
1167 * netlbl_req_setattr - Label a request socket using the correct protocol
1168 * @req: the request socket to label
1169 * @secattr: the security attributes
1172 * Attach the correct label to the given socket using the security attributes
1173 * specified in @secattr. Returns zero on success, negative values on failure.
1176 int netlbl_req_setattr(struct request_sock
*req
,
1177 const struct netlbl_lsm_secattr
*secattr
)
1180 struct netlbl_dommap_def
*entry
;
1181 struct inet_request_sock
*ireq
= inet_rsk(req
);
1184 switch (req
->rsk_ops
->family
) {
1186 entry
= netlbl_domhsh_getentry_af4(secattr
->domain
,
1188 if (entry
== NULL
) {
1190 goto req_setattr_return
;
1192 switch (entry
->type
) {
1193 case NETLBL_NLTYPE_CIPSOV4
:
1194 ret_val
= cipso_v4_req_setattr(req
,
1195 entry
->cipso
, secattr
);
1197 case NETLBL_NLTYPE_UNLABELED
:
1198 netlbl_req_delattr(req
);
1205 #if IS_ENABLED(CONFIG_IPV6)
1207 entry
= netlbl_domhsh_getentry_af6(secattr
->domain
,
1208 &ireq
->ir_v6_rmt_addr
);
1209 if (entry
== NULL
) {
1211 goto req_setattr_return
;
1213 switch (entry
->type
) {
1214 case NETLBL_NLTYPE_CALIPSO
:
1215 ret_val
= calipso_req_setattr(req
,
1216 entry
->calipso
, secattr
);
1218 case NETLBL_NLTYPE_UNLABELED
:
1219 netlbl_req_delattr(req
);
1228 ret_val
= -EPROTONOSUPPORT
;
1237 * netlbl_req_delattr - Delete all the NetLabel labels on a socket
1241 * Remove all the NetLabel labeling from @req.
1244 void netlbl_req_delattr(struct request_sock
*req
)
1246 switch (req
->rsk_ops
->family
) {
1248 cipso_v4_req_delattr(req
);
1250 #if IS_ENABLED(CONFIG_IPV6)
1252 calipso_req_delattr(req
);
1259 * netlbl_skbuff_setattr - Label a packet using the correct protocol
1261 * @family: protocol family
1262 * @secattr: the security attributes
1265 * Attach the correct label to the given packet using the security attributes
1266 * specified in @secattr. Returns zero on success, negative values on failure.
1269 int netlbl_skbuff_setattr(struct sk_buff
*skb
,
1271 const struct netlbl_lsm_secattr
*secattr
)
1275 #if IS_ENABLED(CONFIG_IPV6)
1276 struct ipv6hdr
*hdr6
;
1278 struct netlbl_dommap_def
*entry
;
1284 entry
= netlbl_domhsh_getentry_af4(secattr
->domain
,
1286 if (entry
== NULL
) {
1288 goto skbuff_setattr_return
;
1290 switch (entry
->type
) {
1291 case NETLBL_NLTYPE_CIPSOV4
:
1292 ret_val
= cipso_v4_skbuff_setattr(skb
, entry
->cipso
,
1295 case NETLBL_NLTYPE_UNLABELED
:
1296 /* just delete the protocols we support for right now
1297 * but we could remove other protocols if needed */
1298 ret_val
= cipso_v4_skbuff_delattr(skb
);
1304 #if IS_ENABLED(CONFIG_IPV6)
1306 hdr6
= ipv6_hdr(skb
);
1307 entry
= netlbl_domhsh_getentry_af6(secattr
->domain
,
1309 if (entry
== NULL
) {
1311 goto skbuff_setattr_return
;
1313 switch (entry
->type
) {
1314 case NETLBL_NLTYPE_CALIPSO
:
1315 ret_val
= calipso_skbuff_setattr(skb
, entry
->calipso
,
1318 case NETLBL_NLTYPE_UNLABELED
:
1319 /* just delete the protocols we support for right now
1320 * but we could remove other protocols if needed */
1321 ret_val
= calipso_skbuff_delattr(skb
);
1329 ret_val
= -EPROTONOSUPPORT
;
1332 skbuff_setattr_return
:
1338 * netlbl_skbuff_getattr - Determine the security attributes of a packet
1340 * @family: protocol family
1341 * @secattr: the security attributes
1344 * Examines the given packet to see if a recognized form of packet labeling
1345 * is present, if so it parses the packet label and returns the security
1346 * attributes in @secattr. Returns zero on success, negative values on
1350 int netlbl_skbuff_getattr(const struct sk_buff
*skb
,
1352 struct netlbl_lsm_secattr
*secattr
)
1358 ptr
= cipso_v4_optptr(skb
);
1359 if (ptr
&& cipso_v4_getattr(ptr
, secattr
) == 0)
1362 #if IS_ENABLED(CONFIG_IPV6)
1364 ptr
= calipso_optptr(skb
);
1365 if (ptr
&& calipso_getattr(ptr
, secattr
) == 0)
1371 return netlbl_unlabel_getattr(skb
, family
, secattr
);
1375 * netlbl_skbuff_err - Handle a LSM error on a sk_buff
1377 * @family: the family
1378 * @error: the error code
1379 * @gateway: true if host is acting as a gateway, false otherwise
1382 * Deal with a LSM problem when handling the packet in @skb, typically this is
1383 * a permission denied problem (-EACCES). The correct action is determined
1384 * according to the packet's labeling protocol.
1387 void netlbl_skbuff_err(struct sk_buff
*skb
, u16 family
, int error
, int gateway
)
1391 if (cipso_v4_optptr(skb
))
1392 cipso_v4_error(skb
, error
, gateway
);
1398 * netlbl_cache_invalidate - Invalidate all of the NetLabel protocol caches
1401 * For all of the NetLabel protocols that support some form of label mapping
1402 * cache, invalidate the cache. Returns zero on success, negative values on
1406 void netlbl_cache_invalidate(void)
1408 cipso_v4_cache_invalidate();
1409 #if IS_ENABLED(CONFIG_IPV6)
1410 calipso_cache_invalidate();
1415 * netlbl_cache_add - Add an entry to a NetLabel protocol cache
1417 * @family: the family
1418 * @secattr: the packet's security attributes
1421 * Add the LSM security attributes for the given packet to the underlying
1422 * NetLabel protocol's label mapping cache. Returns zero on success, negative
1426 int netlbl_cache_add(const struct sk_buff
*skb
, u16 family
,
1427 const struct netlbl_lsm_secattr
*secattr
)
1431 if ((secattr
->flags
& NETLBL_SECATTR_CACHE
) == 0)
1436 ptr
= cipso_v4_optptr(skb
);
1438 return cipso_v4_cache_add(ptr
, secattr
);
1440 #if IS_ENABLED(CONFIG_IPV6)
1442 ptr
= calipso_optptr(skb
);
1444 return calipso_cache_add(ptr
, secattr
);
1452 * Protocol Engine Functions
1456 * netlbl_audit_start - Start an audit message
1457 * @type: audit message type
1458 * @audit_info: NetLabel audit information
1461 * Start an audit message using the type specified in @type and fill the audit
1462 * message with some fields common to all NetLabel audit messages. This
1463 * function should only be used by protocol engines, not LSMs. Returns a
1464 * pointer to the audit buffer on success, NULL on failure.
1467 struct audit_buffer
*netlbl_audit_start(int type
,
1468 struct netlbl_audit
*audit_info
)
1470 return netlbl_audit_start_common(type
, audit_info
);
1472 EXPORT_SYMBOL(netlbl_audit_start
);
1479 * netlbl_init - Initialize NetLabel
1482 * Perform the required NetLabel initialization before first use.
1485 static int __init
netlbl_init(void)
1489 printk(KERN_INFO
"NetLabel: Initializing\n");
1490 printk(KERN_INFO
"NetLabel: domain hash size = %u\n",
1491 (1 << NETLBL_DOMHSH_BITSIZE
));
1492 printk(KERN_INFO
"NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO\n");
1494 ret_val
= netlbl_domhsh_init(NETLBL_DOMHSH_BITSIZE
);
1498 ret_val
= netlbl_unlabel_init(NETLBL_UNLHSH_BITSIZE
);
1502 ret_val
= netlbl_netlink_init();
1506 ret_val
= netlbl_unlabel_defconf();
1509 printk(KERN_INFO
"NetLabel: unlabeled traffic allowed by default\n");
1514 panic("NetLabel: failed to initialize properly (%d)\n", ret_val
);
1517 subsys_initcall(netlbl_init
);