1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * NetLabel Unlabeled Support
5 * This file defines functions for dealing with unlabeled packets for the
6 * NetLabel system. The NetLabel system manages static and dynamic label
7 * mappings for network protocols such as CIPSO and RIPSO.
9 * Author: Paul Moore <paul@paul-moore.com>
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - 2008
16 #include <linux/types.h>
17 #include <linux/rcupdate.h>
18 #include <linux/list.h>
19 #include <linux/spinlock.h>
20 #include <linux/socket.h>
21 #include <linux/string.h>
22 #include <linux/skbuff.h>
23 #include <linux/audit.h>
25 #include <linux/in6.h>
27 #include <linux/ipv6.h>
28 #include <linux/notifier.h>
29 #include <linux/netdevice.h>
30 #include <linux/security.h>
31 #include <linux/slab.h>
33 #include <net/netlink.h>
34 #include <net/genetlink.h>
37 #include <net/net_namespace.h>
38 #include <net/netlabel.h>
40 #include <linux/atomic.h>
42 #include "netlabel_user.h"
43 #include "netlabel_addrlist.h"
44 #include "netlabel_domainhash.h"
45 #include "netlabel_unlabeled.h"
46 #include "netlabel_mgmt.h"
48 /* NOTE: at present we always use init's network namespace since we don't
49 * presently support different namespaces even though the majority of
50 * the functions in this file are "namespace safe" */
52 /* The unlabeled connection hash table which we use to map network interfaces
53 * and addresses of unlabeled packets to a user specified secid value for the
54 * LSM. The hash table is used to lookup the network interface entry
55 * (struct netlbl_unlhsh_iface) and then the interface entry is used to
56 * lookup an IP address match from an ordered list. If a network interface
57 * match can not be found in the hash table then the default entry
58 * (netlbl_unlhsh_def) is used. The IP address entry list
59 * (struct netlbl_unlhsh_addr) is ordered such that the entries with a
60 * larger netmask come first.
62 struct netlbl_unlhsh_tbl
{
63 struct list_head
*tbl
;
66 #define netlbl_unlhsh_addr4_entry(iter) \
67 container_of(iter, struct netlbl_unlhsh_addr4, list)
68 struct netlbl_unlhsh_addr4
{
71 struct netlbl_af4list list
;
74 #define netlbl_unlhsh_addr6_entry(iter) \
75 container_of(iter, struct netlbl_unlhsh_addr6, list)
76 struct netlbl_unlhsh_addr6
{
79 struct netlbl_af6list list
;
82 struct netlbl_unlhsh_iface
{
84 struct list_head addr4_list
;
85 struct list_head addr6_list
;
88 struct list_head list
;
92 /* Argument struct for netlbl_unlhsh_walk() */
93 struct netlbl_unlhsh_walk_arg
{
94 struct netlink_callback
*nl_cb
;
99 /* Unlabeled connection hash table */
100 /* updates should be so rare that having one spinlock for the entire
101 * hash table should be okay */
102 static DEFINE_SPINLOCK(netlbl_unlhsh_lock
);
103 #define netlbl_unlhsh_rcu_deref(p) \
104 rcu_dereference_check(p, lockdep_is_held(&netlbl_unlhsh_lock))
105 static struct netlbl_unlhsh_tbl __rcu
*netlbl_unlhsh
;
106 static struct netlbl_unlhsh_iface __rcu
*netlbl_unlhsh_def
;
108 /* Accept unlabeled packets flag */
109 static u8 netlabel_unlabel_acceptflg
;
111 /* NetLabel Generic NETLINK unlabeled family */
112 static struct genl_family netlbl_unlabel_gnl_family
;
114 /* NetLabel Netlink attribute policy */
115 static const struct nla_policy netlbl_unlabel_genl_policy
[NLBL_UNLABEL_A_MAX
+ 1] = {
116 [NLBL_UNLABEL_A_ACPTFLG
] = { .type
= NLA_U8
},
117 [NLBL_UNLABEL_A_IPV6ADDR
] = { .type
= NLA_BINARY
,
118 .len
= sizeof(struct in6_addr
) },
119 [NLBL_UNLABEL_A_IPV6MASK
] = { .type
= NLA_BINARY
,
120 .len
= sizeof(struct in6_addr
) },
121 [NLBL_UNLABEL_A_IPV4ADDR
] = { .type
= NLA_BINARY
,
122 .len
= sizeof(struct in_addr
) },
123 [NLBL_UNLABEL_A_IPV4MASK
] = { .type
= NLA_BINARY
,
124 .len
= sizeof(struct in_addr
) },
125 [NLBL_UNLABEL_A_IFACE
] = { .type
= NLA_NUL_STRING
,
126 .len
= IFNAMSIZ
- 1 },
127 [NLBL_UNLABEL_A_SECCTX
] = { .type
= NLA_BINARY
}
131 * Unlabeled Connection Hash Table Functions
135 * netlbl_unlhsh_free_iface - Frees an interface entry from the hash table
136 * @entry: the entry's RCU field
139 * This function is designed to be used as a callback to the call_rcu()
140 * function so that memory allocated to a hash table interface entry can be
141 * released safely. It is important to note that this function does not free
142 * the IPv4 and IPv6 address lists contained as part of an interface entry. It
143 * is up to the rest of the code to make sure an interface entry is only freed
144 * once it's address lists are empty.
147 static void netlbl_unlhsh_free_iface(struct rcu_head
*entry
)
149 struct netlbl_unlhsh_iface
*iface
;
150 struct netlbl_af4list
*iter4
;
151 struct netlbl_af4list
*tmp4
;
152 #if IS_ENABLED(CONFIG_IPV6)
153 struct netlbl_af6list
*iter6
;
154 struct netlbl_af6list
*tmp6
;
157 iface
= container_of(entry
, struct netlbl_unlhsh_iface
, rcu
);
159 /* no need for locks here since we are the only one with access to this
162 netlbl_af4list_foreach_safe(iter4
, tmp4
, &iface
->addr4_list
) {
163 netlbl_af4list_remove_entry(iter4
);
164 kfree(netlbl_unlhsh_addr4_entry(iter4
));
166 #if IS_ENABLED(CONFIG_IPV6)
167 netlbl_af6list_foreach_safe(iter6
, tmp6
, &iface
->addr6_list
) {
168 netlbl_af6list_remove_entry(iter6
);
169 kfree(netlbl_unlhsh_addr6_entry(iter6
));
176 * netlbl_unlhsh_hash - Hashing function for the hash table
177 * @ifindex: the network interface/device to hash
180 * This is the hashing function for the unlabeled hash table, it returns the
181 * bucket number for the given device/interface. The caller is responsible for
182 * ensuring that the hash table is protected with either a RCU read lock or
183 * the hash table lock.
186 static u32
netlbl_unlhsh_hash(int ifindex
)
188 return ifindex
& (netlbl_unlhsh_rcu_deref(netlbl_unlhsh
)->size
- 1);
192 * netlbl_unlhsh_search_iface - Search for a matching interface entry
193 * @ifindex: the network interface
196 * Searches the unlabeled connection hash table and returns a pointer to the
197 * interface entry which matches @ifindex, otherwise NULL is returned. The
198 * caller is responsible for ensuring that the hash table is protected with
199 * either a RCU read lock or the hash table lock.
202 static struct netlbl_unlhsh_iface
*netlbl_unlhsh_search_iface(int ifindex
)
205 struct list_head
*bkt_list
;
206 struct netlbl_unlhsh_iface
*iter
;
208 bkt
= netlbl_unlhsh_hash(ifindex
);
209 bkt_list
= &netlbl_unlhsh_rcu_deref(netlbl_unlhsh
)->tbl
[bkt
];
210 list_for_each_entry_rcu(iter
, bkt_list
, list
,
211 lockdep_is_held(&netlbl_unlhsh_lock
))
212 if (iter
->valid
&& iter
->ifindex
== ifindex
)
219 * netlbl_unlhsh_add_addr4 - Add a new IPv4 address entry to the hash table
220 * @iface: the associated interface entry
221 * @addr: IPv4 address in network byte order
222 * @mask: IPv4 address mask in network byte order
223 * @secid: LSM secid value for entry
226 * Add a new address entry into the unlabeled connection hash table using the
227 * interface entry specified by @iface. On success zero is returned, otherwise
228 * a negative value is returned.
231 static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface
*iface
,
232 const struct in_addr
*addr
,
233 const struct in_addr
*mask
,
237 struct netlbl_unlhsh_addr4
*entry
;
239 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
243 entry
->list
.addr
= addr
->s_addr
& mask
->s_addr
;
244 entry
->list
.mask
= mask
->s_addr
;
245 entry
->list
.valid
= 1;
246 entry
->secid
= secid
;
248 spin_lock(&netlbl_unlhsh_lock
);
249 ret_val
= netlbl_af4list_add(&entry
->list
, &iface
->addr4_list
);
250 spin_unlock(&netlbl_unlhsh_lock
);
257 #if IS_ENABLED(CONFIG_IPV6)
259 * netlbl_unlhsh_add_addr6 - Add a new IPv6 address entry to the hash table
260 * @iface: the associated interface entry
261 * @addr: IPv6 address in network byte order
262 * @mask: IPv6 address mask in network byte order
263 * @secid: LSM secid value for entry
266 * Add a new address entry into the unlabeled connection hash table using the
267 * interface entry specified by @iface. On success zero is returned, otherwise
268 * a negative value is returned.
271 static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface
*iface
,
272 const struct in6_addr
*addr
,
273 const struct in6_addr
*mask
,
277 struct netlbl_unlhsh_addr6
*entry
;
279 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
283 entry
->list
.addr
= *addr
;
284 entry
->list
.addr
.s6_addr32
[0] &= mask
->s6_addr32
[0];
285 entry
->list
.addr
.s6_addr32
[1] &= mask
->s6_addr32
[1];
286 entry
->list
.addr
.s6_addr32
[2] &= mask
->s6_addr32
[2];
287 entry
->list
.addr
.s6_addr32
[3] &= mask
->s6_addr32
[3];
288 entry
->list
.mask
= *mask
;
289 entry
->list
.valid
= 1;
290 entry
->secid
= secid
;
292 spin_lock(&netlbl_unlhsh_lock
);
293 ret_val
= netlbl_af6list_add(&entry
->list
, &iface
->addr6_list
);
294 spin_unlock(&netlbl_unlhsh_lock
);
303 * netlbl_unlhsh_add_iface - Adds a new interface entry to the hash table
304 * @ifindex: network interface
307 * Add a new, empty, interface entry into the unlabeled connection hash table.
308 * On success a pointer to the new interface entry is returned, on failure NULL
312 static struct netlbl_unlhsh_iface
*netlbl_unlhsh_add_iface(int ifindex
)
315 struct netlbl_unlhsh_iface
*iface
;
317 iface
= kzalloc(sizeof(*iface
), GFP_ATOMIC
);
321 iface
->ifindex
= ifindex
;
322 INIT_LIST_HEAD(&iface
->addr4_list
);
323 INIT_LIST_HEAD(&iface
->addr6_list
);
326 spin_lock(&netlbl_unlhsh_lock
);
328 bkt
= netlbl_unlhsh_hash(ifindex
);
329 if (netlbl_unlhsh_search_iface(ifindex
) != NULL
)
330 goto add_iface_failure
;
331 list_add_tail_rcu(&iface
->list
,
332 &netlbl_unlhsh_rcu_deref(netlbl_unlhsh
)->tbl
[bkt
]);
334 INIT_LIST_HEAD(&iface
->list
);
335 if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def
) != NULL
)
336 goto add_iface_failure
;
337 rcu_assign_pointer(netlbl_unlhsh_def
, iface
);
339 spin_unlock(&netlbl_unlhsh_lock
);
344 spin_unlock(&netlbl_unlhsh_lock
);
350 * netlbl_unlhsh_add - Adds a new entry to the unlabeled connection hash table
351 * @net: network namespace
352 * @dev_name: interface name
353 * @addr: IP address in network byte order
354 * @mask: address mask in network byte order
355 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
356 * @secid: LSM secid value for the entry
357 * @audit_info: NetLabel audit information
360 * Adds a new entry to the unlabeled connection hash table. Returns zero on
361 * success, negative values on failure.
364 int netlbl_unlhsh_add(struct net
*net
,
365 const char *dev_name
,
370 struct netlbl_audit
*audit_info
)
374 struct net_device
*dev
;
375 struct netlbl_unlhsh_iface
*iface
;
376 struct audit_buffer
*audit_buf
= NULL
;
380 if (addr_len
!= sizeof(struct in_addr
) &&
381 addr_len
!= sizeof(struct in6_addr
))
385 if (dev_name
!= NULL
) {
386 dev
= dev_get_by_name_rcu(net
, dev_name
);
389 goto unlhsh_add_return
;
391 ifindex
= dev
->ifindex
;
392 iface
= netlbl_unlhsh_search_iface(ifindex
);
395 iface
= rcu_dereference(netlbl_unlhsh_def
);
398 iface
= netlbl_unlhsh_add_iface(ifindex
);
401 goto unlhsh_add_return
;
404 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD
,
407 case sizeof(struct in_addr
): {
408 const struct in_addr
*addr4
= addr
;
409 const struct in_addr
*mask4
= mask
;
411 ret_val
= netlbl_unlhsh_add_addr4(iface
, addr4
, mask4
, secid
);
412 if (audit_buf
!= NULL
)
413 netlbl_af4list_audit_addr(audit_buf
, 1,
419 #if IS_ENABLED(CONFIG_IPV6)
420 case sizeof(struct in6_addr
): {
421 const struct in6_addr
*addr6
= addr
;
422 const struct in6_addr
*mask6
= mask
;
424 ret_val
= netlbl_unlhsh_add_addr6(iface
, addr6
, mask6
, secid
);
425 if (audit_buf
!= NULL
)
426 netlbl_af6list_audit_addr(audit_buf
, 1,
436 atomic_inc(&netlabel_mgmt_protocount
);
440 if (audit_buf
!= NULL
) {
441 if (security_secid_to_secctx(secid
,
444 audit_log_format(audit_buf
, " sec_obj=%s", secctx
);
445 security_release_secctx(secctx
, secctx_len
);
447 audit_log_format(audit_buf
, " res=%u", ret_val
== 0 ? 1 : 0);
448 audit_log_end(audit_buf
);
454 * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry
455 * @net: network namespace
456 * @iface: interface entry
458 * @mask: IP address mask
459 * @audit_info: NetLabel audit information
462 * Remove an IP address entry from the unlabeled connection hash table.
463 * Returns zero on success, negative values on failure.
466 static int netlbl_unlhsh_remove_addr4(struct net
*net
,
467 struct netlbl_unlhsh_iface
*iface
,
468 const struct in_addr
*addr
,
469 const struct in_addr
*mask
,
470 struct netlbl_audit
*audit_info
)
472 struct netlbl_af4list
*list_entry
;
473 struct netlbl_unlhsh_addr4
*entry
;
474 struct audit_buffer
*audit_buf
;
475 struct net_device
*dev
;
479 spin_lock(&netlbl_unlhsh_lock
);
480 list_entry
= netlbl_af4list_remove(addr
->s_addr
, mask
->s_addr
,
482 spin_unlock(&netlbl_unlhsh_lock
);
483 if (list_entry
!= NULL
)
484 entry
= netlbl_unlhsh_addr4_entry(list_entry
);
488 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL
,
490 if (audit_buf
!= NULL
) {
491 dev
= dev_get_by_index(net
, iface
->ifindex
);
492 netlbl_af4list_audit_addr(audit_buf
, 1,
493 (dev
!= NULL
? dev
->name
: NULL
),
494 addr
->s_addr
, mask
->s_addr
);
497 security_secid_to_secctx(entry
->secid
,
498 &secctx
, &secctx_len
) == 0) {
499 audit_log_format(audit_buf
, " sec_obj=%s", secctx
);
500 security_release_secctx(secctx
, secctx_len
);
502 audit_log_format(audit_buf
, " res=%u", entry
!= NULL
? 1 : 0);
503 audit_log_end(audit_buf
);
509 kfree_rcu(entry
, rcu
);
513 #if IS_ENABLED(CONFIG_IPV6)
515 * netlbl_unlhsh_remove_addr6 - Remove an IPv6 address entry
516 * @net: network namespace
517 * @iface: interface entry
519 * @mask: IP address mask
520 * @audit_info: NetLabel audit information
523 * Remove an IP address entry from the unlabeled connection hash table.
524 * Returns zero on success, negative values on failure.
527 static int netlbl_unlhsh_remove_addr6(struct net
*net
,
528 struct netlbl_unlhsh_iface
*iface
,
529 const struct in6_addr
*addr
,
530 const struct in6_addr
*mask
,
531 struct netlbl_audit
*audit_info
)
533 struct netlbl_af6list
*list_entry
;
534 struct netlbl_unlhsh_addr6
*entry
;
535 struct audit_buffer
*audit_buf
;
536 struct net_device
*dev
;
540 spin_lock(&netlbl_unlhsh_lock
);
541 list_entry
= netlbl_af6list_remove(addr
, mask
, &iface
->addr6_list
);
542 spin_unlock(&netlbl_unlhsh_lock
);
543 if (list_entry
!= NULL
)
544 entry
= netlbl_unlhsh_addr6_entry(list_entry
);
548 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL
,
550 if (audit_buf
!= NULL
) {
551 dev
= dev_get_by_index(net
, iface
->ifindex
);
552 netlbl_af6list_audit_addr(audit_buf
, 1,
553 (dev
!= NULL
? dev
->name
: NULL
),
557 security_secid_to_secctx(entry
->secid
,
558 &secctx
, &secctx_len
) == 0) {
559 audit_log_format(audit_buf
, " sec_obj=%s", secctx
);
560 security_release_secctx(secctx
, secctx_len
);
562 audit_log_format(audit_buf
, " res=%u", entry
!= NULL
? 1 : 0);
563 audit_log_end(audit_buf
);
569 kfree_rcu(entry
, rcu
);
575 * netlbl_unlhsh_condremove_iface - Remove an interface entry
576 * @iface: the interface entry
579 * Remove an interface entry from the unlabeled connection hash table if it is
580 * empty. An interface entry is considered to be empty if there are no
581 * address entries assigned to it.
584 static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface
*iface
)
586 struct netlbl_af4list
*iter4
;
587 #if IS_ENABLED(CONFIG_IPV6)
588 struct netlbl_af6list
*iter6
;
591 spin_lock(&netlbl_unlhsh_lock
);
592 netlbl_af4list_foreach_rcu(iter4
, &iface
->addr4_list
)
593 goto unlhsh_condremove_failure
;
594 #if IS_ENABLED(CONFIG_IPV6)
595 netlbl_af6list_foreach_rcu(iter6
, &iface
->addr6_list
)
596 goto unlhsh_condremove_failure
;
599 if (iface
->ifindex
> 0)
600 list_del_rcu(&iface
->list
);
602 RCU_INIT_POINTER(netlbl_unlhsh_def
, NULL
);
603 spin_unlock(&netlbl_unlhsh_lock
);
605 call_rcu(&iface
->rcu
, netlbl_unlhsh_free_iface
);
608 unlhsh_condremove_failure
:
609 spin_unlock(&netlbl_unlhsh_lock
);
613 * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table
614 * @net: network namespace
615 * @dev_name: interface name
616 * @addr: IP address in network byte order
617 * @mask: address mask in network byte order
618 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
619 * @audit_info: NetLabel audit information
622 * Removes and existing entry from the unlabeled connection hash table.
623 * Returns zero on success, negative values on failure.
626 int netlbl_unlhsh_remove(struct net
*net
,
627 const char *dev_name
,
631 struct netlbl_audit
*audit_info
)
634 struct net_device
*dev
;
635 struct netlbl_unlhsh_iface
*iface
;
637 if (addr_len
!= sizeof(struct in_addr
) &&
638 addr_len
!= sizeof(struct in6_addr
))
642 if (dev_name
!= NULL
) {
643 dev
= dev_get_by_name_rcu(net
, dev_name
);
646 goto unlhsh_remove_return
;
648 iface
= netlbl_unlhsh_search_iface(dev
->ifindex
);
650 iface
= rcu_dereference(netlbl_unlhsh_def
);
653 goto unlhsh_remove_return
;
656 case sizeof(struct in_addr
):
657 ret_val
= netlbl_unlhsh_remove_addr4(net
,
661 #if IS_ENABLED(CONFIG_IPV6)
662 case sizeof(struct in6_addr
):
663 ret_val
= netlbl_unlhsh_remove_addr6(net
,
672 netlbl_unlhsh_condremove_iface(iface
);
673 atomic_dec(&netlabel_mgmt_protocount
);
676 unlhsh_remove_return
:
682 * General Helper Functions
686 * netlbl_unlhsh_netdev_handler - Network device notification handler
687 * @this: notifier block
689 * @ptr: the netdevice notifier info (cast to void)
692 * Handle network device events, although at present all we care about is a
693 * network device going away. In the case of a device going away we clear any
694 * related entries from the unlabeled connection hash table.
697 static int netlbl_unlhsh_netdev_handler(struct notifier_block
*this,
698 unsigned long event
, void *ptr
)
700 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
701 struct netlbl_unlhsh_iface
*iface
= NULL
;
703 if (!net_eq(dev_net(dev
), &init_net
))
706 /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */
707 if (event
== NETDEV_DOWN
) {
708 spin_lock(&netlbl_unlhsh_lock
);
709 iface
= netlbl_unlhsh_search_iface(dev
->ifindex
);
710 if (iface
!= NULL
&& iface
->valid
) {
712 list_del_rcu(&iface
->list
);
715 spin_unlock(&netlbl_unlhsh_lock
);
719 call_rcu(&iface
->rcu
, netlbl_unlhsh_free_iface
);
725 * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
726 * @value: desired value
727 * @audit_info: NetLabel audit information
730 * Set the value of the unlabeled accept flag to @value.
733 static void netlbl_unlabel_acceptflg_set(u8 value
,
734 struct netlbl_audit
*audit_info
)
736 struct audit_buffer
*audit_buf
;
739 old_val
= netlabel_unlabel_acceptflg
;
740 netlabel_unlabel_acceptflg
= value
;
741 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW
,
743 if (audit_buf
!= NULL
) {
744 audit_log_format(audit_buf
,
745 " unlbl_accept=%u old=%u", value
, old_val
);
746 audit_log_end(audit_buf
);
751 * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information
752 * @info: the Generic NETLINK info block
753 * @addr: the IP address
754 * @mask: the IP address mask
755 * @len: the address length
758 * Examine the Generic NETLINK message and extract the IP address information.
759 * Returns zero on success, negative values on failure.
762 static int netlbl_unlabel_addrinfo_get(struct genl_info
*info
,
769 if (info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] &&
770 info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) {
771 addr_len
= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
]);
772 if (addr_len
!= sizeof(struct in_addr
) &&
773 addr_len
!= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]))
776 *addr
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
]);
777 *mask
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]);
779 } else if (info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
]) {
780 addr_len
= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
]);
781 if (addr_len
!= sizeof(struct in6_addr
) &&
782 addr_len
!= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
]))
785 *addr
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
]);
786 *mask
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
]);
794 * NetLabel Command Handlers
798 * netlbl_unlabel_accept - Handle an ACCEPT message
799 * @skb: the NETLINK buffer
800 * @info: the Generic NETLINK info block
803 * Process a user generated ACCEPT message and set the accept flag accordingly.
804 * Returns zero on success, negative values on failure.
807 static int netlbl_unlabel_accept(struct sk_buff
*skb
, struct genl_info
*info
)
810 struct netlbl_audit audit_info
;
812 if (info
->attrs
[NLBL_UNLABEL_A_ACPTFLG
]) {
813 value
= nla_get_u8(info
->attrs
[NLBL_UNLABEL_A_ACPTFLG
]);
814 if (value
== 1 || value
== 0) {
815 netlbl_netlink_auditinfo(&audit_info
);
816 netlbl_unlabel_acceptflg_set(value
, &audit_info
);
825 * netlbl_unlabel_list - Handle a LIST message
826 * @skb: the NETLINK buffer
827 * @info: the Generic NETLINK info block
830 * Process a user generated LIST message and respond with the current status.
831 * Returns zero on success, negative values on failure.
834 static int netlbl_unlabel_list(struct sk_buff
*skb
, struct genl_info
*info
)
836 int ret_val
= -EINVAL
;
837 struct sk_buff
*ans_skb
;
840 ans_skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
843 data
= genlmsg_put_reply(ans_skb
, info
, &netlbl_unlabel_gnl_family
,
844 0, NLBL_UNLABEL_C_LIST
);
850 ret_val
= nla_put_u8(ans_skb
,
851 NLBL_UNLABEL_A_ACPTFLG
,
852 netlabel_unlabel_acceptflg
);
856 genlmsg_end(ans_skb
, data
);
857 return genlmsg_reply(ans_skb
, info
);
865 * netlbl_unlabel_staticadd - Handle a STATICADD message
866 * @skb: the NETLINK buffer
867 * @info: the Generic NETLINK info block
870 * Process a user generated STATICADD message and add a new unlabeled
871 * connection entry to the hash table. Returns zero on success, negative
875 static int netlbl_unlabel_staticadd(struct sk_buff
*skb
,
876 struct genl_info
*info
)
884 struct netlbl_audit audit_info
;
886 /* Don't allow users to add both IPv4 and IPv6 addresses for a
887 * single entry. However, allow users to create two entries, one each
888 * for IPv4 and IPv6, with the same LSM security context which should
889 * achieve the same result. */
890 if (!info
->attrs
[NLBL_UNLABEL_A_SECCTX
] ||
891 !info
->attrs
[NLBL_UNLABEL_A_IFACE
] ||
892 !((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
893 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
894 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
895 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
898 netlbl_netlink_auditinfo(&audit_info
);
900 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
903 dev_name
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IFACE
]);
904 ret_val
= security_secctx_to_secid(
905 nla_data(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
906 nla_len(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
911 return netlbl_unlhsh_add(&init_net
,
912 dev_name
, addr
, mask
, addr_len
, secid
,
917 * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message
918 * @skb: the NETLINK buffer
919 * @info: the Generic NETLINK info block
922 * Process a user generated STATICADDDEF message and add a new default
923 * unlabeled connection entry. Returns zero on success, negative values on
927 static int netlbl_unlabel_staticadddef(struct sk_buff
*skb
,
928 struct genl_info
*info
)
935 struct netlbl_audit audit_info
;
937 /* Don't allow users to add both IPv4 and IPv6 addresses for a
938 * single entry. However, allow users to create two entries, one each
939 * for IPv4 and IPv6, with the same LSM security context which should
940 * achieve the same result. */
941 if (!info
->attrs
[NLBL_UNLABEL_A_SECCTX
] ||
942 !((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
943 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
944 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
945 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
948 netlbl_netlink_auditinfo(&audit_info
);
950 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
953 ret_val
= security_secctx_to_secid(
954 nla_data(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
955 nla_len(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
960 return netlbl_unlhsh_add(&init_net
,
961 NULL
, addr
, mask
, addr_len
, secid
,
966 * netlbl_unlabel_staticremove - Handle a STATICREMOVE message
967 * @skb: the NETLINK buffer
968 * @info: the Generic NETLINK info block
971 * Process a user generated STATICREMOVE message and remove the specified
972 * unlabeled connection entry. Returns zero on success, negative values on
976 static int netlbl_unlabel_staticremove(struct sk_buff
*skb
,
977 struct genl_info
*info
)
984 struct netlbl_audit audit_info
;
986 /* See the note in netlbl_unlabel_staticadd() about not allowing both
987 * IPv4 and IPv6 in the same entry. */
988 if (!info
->attrs
[NLBL_UNLABEL_A_IFACE
] ||
989 !((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
990 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
991 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
992 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
995 netlbl_netlink_auditinfo(&audit_info
);
997 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
1000 dev_name
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IFACE
]);
1002 return netlbl_unlhsh_remove(&init_net
,
1003 dev_name
, addr
, mask
, addr_len
,
1008 * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message
1009 * @skb: the NETLINK buffer
1010 * @info: the Generic NETLINK info block
1013 * Process a user generated STATICREMOVEDEF message and remove the default
1014 * unlabeled connection entry. Returns zero on success, negative values on
1018 static int netlbl_unlabel_staticremovedef(struct sk_buff
*skb
,
1019 struct genl_info
*info
)
1025 struct netlbl_audit audit_info
;
1027 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1028 * IPv4 and IPv6 in the same entry. */
1029 if (!((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
1030 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
1031 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
1032 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
1035 netlbl_netlink_auditinfo(&audit_info
);
1037 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
1041 return netlbl_unlhsh_remove(&init_net
,
1042 NULL
, addr
, mask
, addr_len
,
1048 * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF]
1049 * @cmd: command/message
1050 * @iface: the interface entry
1051 * @addr4: the IPv4 address entry
1052 * @addr6: the IPv6 address entry
1053 * @arg: the netlbl_unlhsh_walk_arg structure
1056 * This function is designed to be used to generate a response for a
1057 * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6
1058 * can be specified, not both, the other unspecified entry should be set to
1059 * NULL by the caller. Returns the size of the message on success, negative
1060 * values on failure.
1063 static int netlbl_unlabel_staticlist_gen(u32 cmd
,
1064 const struct netlbl_unlhsh_iface
*iface
,
1065 const struct netlbl_unlhsh_addr4
*addr4
,
1066 const struct netlbl_unlhsh_addr6
*addr6
,
1069 int ret_val
= -ENOMEM
;
1070 struct netlbl_unlhsh_walk_arg
*cb_arg
= arg
;
1071 struct net_device
*dev
;
1077 data
= genlmsg_put(cb_arg
->skb
, NETLINK_CB(cb_arg
->nl_cb
->skb
).portid
,
1078 cb_arg
->seq
, &netlbl_unlabel_gnl_family
,
1081 goto list_cb_failure
;
1083 if (iface
->ifindex
> 0) {
1084 dev
= dev_get_by_index(&init_net
, iface
->ifindex
);
1087 goto list_cb_failure
;
1089 ret_val
= nla_put_string(cb_arg
->skb
,
1090 NLBL_UNLABEL_A_IFACE
, dev
->name
);
1093 goto list_cb_failure
;
1097 struct in_addr addr_struct
;
1099 addr_struct
.s_addr
= addr4
->list
.addr
;
1100 ret_val
= nla_put_in_addr(cb_arg
->skb
,
1101 NLBL_UNLABEL_A_IPV4ADDR
,
1102 addr_struct
.s_addr
);
1104 goto list_cb_failure
;
1106 addr_struct
.s_addr
= addr4
->list
.mask
;
1107 ret_val
= nla_put_in_addr(cb_arg
->skb
,
1108 NLBL_UNLABEL_A_IPV4MASK
,
1109 addr_struct
.s_addr
);
1111 goto list_cb_failure
;
1113 secid
= addr4
->secid
;
1115 ret_val
= nla_put_in6_addr(cb_arg
->skb
,
1116 NLBL_UNLABEL_A_IPV6ADDR
,
1119 goto list_cb_failure
;
1121 ret_val
= nla_put_in6_addr(cb_arg
->skb
,
1122 NLBL_UNLABEL_A_IPV6MASK
,
1125 goto list_cb_failure
;
1127 secid
= addr6
->secid
;
1130 ret_val
= security_secid_to_secctx(secid
, &secctx
, &secctx_len
);
1132 goto list_cb_failure
;
1133 ret_val
= nla_put(cb_arg
->skb
,
1134 NLBL_UNLABEL_A_SECCTX
,
1137 security_release_secctx(secctx
, secctx_len
);
1139 goto list_cb_failure
;
1142 genlmsg_end(cb_arg
->skb
, data
);
1146 genlmsg_cancel(cb_arg
->skb
, data
);
1151 * netlbl_unlabel_staticlist - Handle a STATICLIST message
1152 * @skb: the NETLINK buffer
1153 * @cb: the NETLINK callback
1156 * Process a user generated STATICLIST message and dump the unlabeled
1157 * connection hash table in a form suitable for use in a kernel generated
1158 * STATICLIST message. Returns the length of @skb.
1161 static int netlbl_unlabel_staticlist(struct sk_buff
*skb
,
1162 struct netlink_callback
*cb
)
1164 struct netlbl_unlhsh_walk_arg cb_arg
;
1165 u32 skip_bkt
= cb
->args
[0];
1166 u32 skip_chain
= cb
->args
[1];
1167 u32 skip_addr4
= cb
->args
[2];
1168 u32 iter_bkt
, iter_chain
= 0, iter_addr4
= 0, iter_addr6
= 0;
1169 struct netlbl_unlhsh_iface
*iface
;
1170 struct list_head
*iter_list
;
1171 struct netlbl_af4list
*addr4
;
1172 #if IS_ENABLED(CONFIG_IPV6)
1173 u32 skip_addr6
= cb
->args
[3];
1174 struct netlbl_af6list
*addr6
;
1179 cb_arg
.seq
= cb
->nlh
->nlmsg_seq
;
1182 for (iter_bkt
= skip_bkt
;
1183 iter_bkt
< rcu_dereference(netlbl_unlhsh
)->size
;
1185 iter_list
= &rcu_dereference(netlbl_unlhsh
)->tbl
[iter_bkt
];
1186 list_for_each_entry_rcu(iface
, iter_list
, list
) {
1187 if (!iface
->valid
||
1188 iter_chain
++ < skip_chain
)
1190 netlbl_af4list_foreach_rcu(addr4
,
1191 &iface
->addr4_list
) {
1192 if (iter_addr4
++ < skip_addr4
)
1194 if (netlbl_unlabel_staticlist_gen(
1195 NLBL_UNLABEL_C_STATICLIST
,
1197 netlbl_unlhsh_addr4_entry(addr4
),
1202 goto unlabel_staticlist_return
;
1207 #if IS_ENABLED(CONFIG_IPV6)
1208 netlbl_af6list_foreach_rcu(addr6
,
1209 &iface
->addr6_list
) {
1210 if (iter_addr6
++ < skip_addr6
)
1212 if (netlbl_unlabel_staticlist_gen(
1213 NLBL_UNLABEL_C_STATICLIST
,
1216 netlbl_unlhsh_addr6_entry(addr6
),
1220 goto unlabel_staticlist_return
;
1231 unlabel_staticlist_return
:
1233 cb
->args
[0] = iter_bkt
;
1234 cb
->args
[1] = iter_chain
;
1235 cb
->args
[2] = iter_addr4
;
1236 cb
->args
[3] = iter_addr6
;
1241 * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message
1242 * @skb: the NETLINK buffer
1243 * @cb: the NETLINK callback
1246 * Process a user generated STATICLISTDEF message and dump the default
1247 * unlabeled connection entry in a form suitable for use in a kernel generated
1248 * STATICLISTDEF message. Returns the length of @skb.
1251 static int netlbl_unlabel_staticlistdef(struct sk_buff
*skb
,
1252 struct netlink_callback
*cb
)
1254 struct netlbl_unlhsh_walk_arg cb_arg
;
1255 struct netlbl_unlhsh_iface
*iface
;
1256 u32 iter_addr4
= 0, iter_addr6
= 0;
1257 struct netlbl_af4list
*addr4
;
1258 #if IS_ENABLED(CONFIG_IPV6)
1259 struct netlbl_af6list
*addr6
;
1264 cb_arg
.seq
= cb
->nlh
->nlmsg_seq
;
1267 iface
= rcu_dereference(netlbl_unlhsh_def
);
1268 if (iface
== NULL
|| !iface
->valid
)
1269 goto unlabel_staticlistdef_return
;
1271 netlbl_af4list_foreach_rcu(addr4
, &iface
->addr4_list
) {
1272 if (iter_addr4
++ < cb
->args
[0])
1274 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF
,
1276 netlbl_unlhsh_addr4_entry(addr4
),
1280 goto unlabel_staticlistdef_return
;
1283 #if IS_ENABLED(CONFIG_IPV6)
1284 netlbl_af6list_foreach_rcu(addr6
, &iface
->addr6_list
) {
1285 if (iter_addr6
++ < cb
->args
[1])
1287 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF
,
1290 netlbl_unlhsh_addr6_entry(addr6
),
1293 goto unlabel_staticlistdef_return
;
1298 unlabel_staticlistdef_return
:
1300 cb
->args
[0] = iter_addr4
;
1301 cb
->args
[1] = iter_addr6
;
1306 * NetLabel Generic NETLINK Command Definitions
1309 static const struct genl_small_ops netlbl_unlabel_genl_ops
[] = {
1311 .cmd
= NLBL_UNLABEL_C_STATICADD
,
1312 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1313 .flags
= GENL_ADMIN_PERM
,
1314 .doit
= netlbl_unlabel_staticadd
,
1318 .cmd
= NLBL_UNLABEL_C_STATICREMOVE
,
1319 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1320 .flags
= GENL_ADMIN_PERM
,
1321 .doit
= netlbl_unlabel_staticremove
,
1325 .cmd
= NLBL_UNLABEL_C_STATICLIST
,
1326 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1329 .dumpit
= netlbl_unlabel_staticlist
,
1332 .cmd
= NLBL_UNLABEL_C_STATICADDDEF
,
1333 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1334 .flags
= GENL_ADMIN_PERM
,
1335 .doit
= netlbl_unlabel_staticadddef
,
1339 .cmd
= NLBL_UNLABEL_C_STATICREMOVEDEF
,
1340 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1341 .flags
= GENL_ADMIN_PERM
,
1342 .doit
= netlbl_unlabel_staticremovedef
,
1346 .cmd
= NLBL_UNLABEL_C_STATICLISTDEF
,
1347 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1350 .dumpit
= netlbl_unlabel_staticlistdef
,
1353 .cmd
= NLBL_UNLABEL_C_ACCEPT
,
1354 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1355 .flags
= GENL_ADMIN_PERM
,
1356 .doit
= netlbl_unlabel_accept
,
1360 .cmd
= NLBL_UNLABEL_C_LIST
,
1361 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1363 .doit
= netlbl_unlabel_list
,
1368 static struct genl_family netlbl_unlabel_gnl_family __ro_after_init
= {
1370 .name
= NETLBL_NLTYPE_UNLABELED_NAME
,
1371 .version
= NETLBL_PROTO_VERSION
,
1372 .maxattr
= NLBL_UNLABEL_A_MAX
,
1373 .policy
= netlbl_unlabel_genl_policy
,
1374 .module
= THIS_MODULE
,
1375 .small_ops
= netlbl_unlabel_genl_ops
,
1376 .n_small_ops
= ARRAY_SIZE(netlbl_unlabel_genl_ops
),
1377 .resv_start_op
= NLBL_UNLABEL_C_STATICLISTDEF
+ 1,
1381 * NetLabel Generic NETLINK Protocol Functions
1385 * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
1388 * Register the unlabeled packet NetLabel component with the Generic NETLINK
1389 * mechanism. Returns zero on success, negative values on failure.
1392 int __init
netlbl_unlabel_genl_init(void)
1394 return genl_register_family(&netlbl_unlabel_gnl_family
);
1398 * NetLabel KAPI Hooks
1401 static struct notifier_block netlbl_unlhsh_netdev_notifier
= {
1402 .notifier_call
= netlbl_unlhsh_netdev_handler
,
1406 * netlbl_unlabel_init - Initialize the unlabeled connection hash table
1407 * @size: the number of bits to use for the hash buckets
1410 * Initializes the unlabeled connection hash table and registers a network
1411 * device notification handler. This function should only be called by the
1412 * NetLabel subsystem itself during initialization. Returns zero on success,
1413 * non-zero values on error.
1416 int __init
netlbl_unlabel_init(u32 size
)
1419 struct netlbl_unlhsh_tbl
*hsh_tbl
;
1424 hsh_tbl
= kmalloc(sizeof(*hsh_tbl
), GFP_KERNEL
);
1425 if (hsh_tbl
== NULL
)
1427 hsh_tbl
->size
= 1 << size
;
1428 hsh_tbl
->tbl
= kcalloc(hsh_tbl
->size
,
1429 sizeof(struct list_head
),
1431 if (hsh_tbl
->tbl
== NULL
) {
1435 for (iter
= 0; iter
< hsh_tbl
->size
; iter
++)
1436 INIT_LIST_HEAD(&hsh_tbl
->tbl
[iter
]);
1438 spin_lock(&netlbl_unlhsh_lock
);
1439 rcu_assign_pointer(netlbl_unlhsh
, hsh_tbl
);
1440 spin_unlock(&netlbl_unlhsh_lock
);
1442 register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier
);
1448 * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
1450 * @family: protocol family
1451 * @secattr: the security attributes
1454 * Determine the security attributes, if any, for an unlabled packet and return
1455 * them in @secattr. Returns zero on success and negative values on failure.
1458 int netlbl_unlabel_getattr(const struct sk_buff
*skb
,
1460 struct netlbl_lsm_secattr
*secattr
)
1462 struct netlbl_unlhsh_iface
*iface
;
1465 iface
= netlbl_unlhsh_search_iface(skb
->skb_iif
);
1467 iface
= rcu_dereference(netlbl_unlhsh_def
);
1468 if (iface
== NULL
|| !iface
->valid
)
1469 goto unlabel_getattr_nolabel
;
1471 #if IS_ENABLED(CONFIG_IPV6)
1472 /* When resolving a fallback label, check the sk_buff version as
1473 * it is possible (e.g. SCTP) to have family = PF_INET6 while
1474 * receiving ip_hdr(skb)->version = 4.
1476 if (family
== PF_INET6
&& ip_hdr(skb
)->version
== 4)
1483 struct netlbl_af4list
*addr4
;
1486 addr4
= netlbl_af4list_search(hdr4
->saddr
,
1487 &iface
->addr4_list
);
1489 goto unlabel_getattr_nolabel
;
1490 secattr
->attr
.secid
= netlbl_unlhsh_addr4_entry(addr4
)->secid
;
1493 #if IS_ENABLED(CONFIG_IPV6)
1495 struct ipv6hdr
*hdr6
;
1496 struct netlbl_af6list
*addr6
;
1498 hdr6
= ipv6_hdr(skb
);
1499 addr6
= netlbl_af6list_search(&hdr6
->saddr
,
1500 &iface
->addr6_list
);
1502 goto unlabel_getattr_nolabel
;
1503 secattr
->attr
.secid
= netlbl_unlhsh_addr6_entry(addr6
)->secid
;
1508 goto unlabel_getattr_nolabel
;
1512 secattr
->flags
|= NETLBL_SECATTR_SECID
;
1513 secattr
->type
= NETLBL_NLTYPE_UNLABELED
;
1516 unlabel_getattr_nolabel
:
1518 if (netlabel_unlabel_acceptflg
== 0)
1520 secattr
->type
= NETLBL_NLTYPE_UNLABELED
;
1525 * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
1528 * Set the default NetLabel configuration to allow incoming unlabeled packets
1529 * and to send unlabeled network traffic by default.
1532 int __init
netlbl_unlabel_defconf(void)
1535 struct netlbl_dom_map
*entry
;
1536 struct netlbl_audit audit_info
;
1538 /* Only the kernel is allowed to call this function and the only time
1539 * it is called is at bootup before the audit subsystem is reporting
1540 * messages so don't worry to much about these values. */
1541 security_current_getsecid_subj(&audit_info
.secid
);
1542 audit_info
.loginuid
= GLOBAL_ROOT_UID
;
1543 audit_info
.sessionid
= 0;
1545 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
1548 entry
->family
= AF_UNSPEC
;
1549 entry
->def
.type
= NETLBL_NLTYPE_UNLABELED
;
1550 ret_val
= netlbl_domhsh_add_default(entry
, &audit_info
);
1554 netlbl_unlabel_acceptflg_set(1, &audit_info
);