2 * NetLabel Unlabeled Support
4 * This file defines functions for dealing with unlabeled packets for the
5 * NetLabel system. The NetLabel system manages static and dynamic label
6 * mappings for network protocols such as CIPSO and RIPSO.
8 * Author: Paul Moore <paul@paul-moore.com>
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - 2008
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.
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.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/types.h>
32 #include <linux/rcupdate.h>
33 #include <linux/list.h>
34 #include <linux/spinlock.h>
35 #include <linux/socket.h>
36 #include <linux/string.h>
37 #include <linux/skbuff.h>
38 #include <linux/audit.h>
40 #include <linux/in6.h>
42 #include <linux/ipv6.h>
43 #include <linux/notifier.h>
44 #include <linux/netdevice.h>
45 #include <linux/security.h>
46 #include <linux/slab.h>
48 #include <net/netlink.h>
49 #include <net/genetlink.h>
52 #include <net/net_namespace.h>
53 #include <net/netlabel.h>
55 #include <linux/atomic.h>
57 #include "netlabel_user.h"
58 #include "netlabel_addrlist.h"
59 #include "netlabel_domainhash.h"
60 #include "netlabel_unlabeled.h"
61 #include "netlabel_mgmt.h"
63 /* NOTE: at present we always use init's network namespace since we don't
64 * presently support different namespaces even though the majority of
65 * the functions in this file are "namespace safe" */
67 /* The unlabeled connection hash table which we use to map network interfaces
68 * and addresses of unlabeled packets to a user specified secid value for the
69 * LSM. The hash table is used to lookup the network interface entry
70 * (struct netlbl_unlhsh_iface) and then the interface entry is used to
71 * lookup an IP address match from an ordered list. If a network interface
72 * match can not be found in the hash table then the default entry
73 * (netlbl_unlhsh_def) is used. The IP address entry list
74 * (struct netlbl_unlhsh_addr) is ordered such that the entries with a
75 * larger netmask come first.
77 struct netlbl_unlhsh_tbl
{
78 struct list_head
*tbl
;
81 #define netlbl_unlhsh_addr4_entry(iter) \
82 container_of(iter, struct netlbl_unlhsh_addr4, list)
83 struct netlbl_unlhsh_addr4
{
86 struct netlbl_af4list list
;
89 #define netlbl_unlhsh_addr6_entry(iter) \
90 container_of(iter, struct netlbl_unlhsh_addr6, list)
91 struct netlbl_unlhsh_addr6
{
94 struct netlbl_af6list list
;
97 struct netlbl_unlhsh_iface
{
99 struct list_head addr4_list
;
100 struct list_head addr6_list
;
103 struct list_head list
;
107 /* Argument struct for netlbl_unlhsh_walk() */
108 struct netlbl_unlhsh_walk_arg
{
109 struct netlink_callback
*nl_cb
;
114 /* Unlabeled connection hash table */
115 /* updates should be so rare that having one spinlock for the entire
116 * hash table should be okay */
117 static DEFINE_SPINLOCK(netlbl_unlhsh_lock
);
118 #define netlbl_unlhsh_rcu_deref(p) \
119 rcu_dereference_check(p, lockdep_is_held(&netlbl_unlhsh_lock))
120 static struct netlbl_unlhsh_tbl
*netlbl_unlhsh
= NULL
;
121 static struct netlbl_unlhsh_iface
*netlbl_unlhsh_def
= NULL
;
123 /* Accept unlabeled packets flag */
124 static u8 netlabel_unlabel_acceptflg
= 0;
126 /* NetLabel Generic NETLINK unlabeled family */
127 static struct genl_family netlbl_unlabel_gnl_family
= {
128 .id
= GENL_ID_GENERATE
,
130 .name
= NETLBL_NLTYPE_UNLABELED_NAME
,
131 .version
= NETLBL_PROTO_VERSION
,
132 .maxattr
= NLBL_UNLABEL_A_MAX
,
135 /* NetLabel Netlink attribute policy */
136 static const struct nla_policy netlbl_unlabel_genl_policy
[NLBL_UNLABEL_A_MAX
+ 1] = {
137 [NLBL_UNLABEL_A_ACPTFLG
] = { .type
= NLA_U8
},
138 [NLBL_UNLABEL_A_IPV6ADDR
] = { .type
= NLA_BINARY
,
139 .len
= sizeof(struct in6_addr
) },
140 [NLBL_UNLABEL_A_IPV6MASK
] = { .type
= NLA_BINARY
,
141 .len
= sizeof(struct in6_addr
) },
142 [NLBL_UNLABEL_A_IPV4ADDR
] = { .type
= NLA_BINARY
,
143 .len
= sizeof(struct in_addr
) },
144 [NLBL_UNLABEL_A_IPV4MASK
] = { .type
= NLA_BINARY
,
145 .len
= sizeof(struct in_addr
) },
146 [NLBL_UNLABEL_A_IFACE
] = { .type
= NLA_NUL_STRING
,
147 .len
= IFNAMSIZ
- 1 },
148 [NLBL_UNLABEL_A_SECCTX
] = { .type
= NLA_BINARY
}
152 * Unlabeled Connection Hash Table Functions
156 * netlbl_unlhsh_free_iface - Frees an interface entry from the hash table
157 * @entry: the entry's RCU field
160 * This function is designed to be used as a callback to the call_rcu()
161 * function so that memory allocated to a hash table interface entry can be
162 * released safely. It is important to note that this function does not free
163 * the IPv4 and IPv6 address lists contained as part of an interface entry. It
164 * is up to the rest of the code to make sure an interface entry is only freed
165 * once it's address lists are empty.
168 static void netlbl_unlhsh_free_iface(struct rcu_head
*entry
)
170 struct netlbl_unlhsh_iface
*iface
;
171 struct netlbl_af4list
*iter4
;
172 struct netlbl_af4list
*tmp4
;
173 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
174 struct netlbl_af6list
*iter6
;
175 struct netlbl_af6list
*tmp6
;
178 iface
= container_of(entry
, struct netlbl_unlhsh_iface
, rcu
);
180 /* no need for locks here since we are the only one with access to this
183 netlbl_af4list_foreach_safe(iter4
, tmp4
, &iface
->addr4_list
) {
184 netlbl_af4list_remove_entry(iter4
);
185 kfree(netlbl_unlhsh_addr4_entry(iter4
));
187 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
188 netlbl_af6list_foreach_safe(iter6
, tmp6
, &iface
->addr6_list
) {
189 netlbl_af6list_remove_entry(iter6
);
190 kfree(netlbl_unlhsh_addr6_entry(iter6
));
197 * netlbl_unlhsh_hash - Hashing function for the hash table
198 * @ifindex: the network interface/device to hash
201 * This is the hashing function for the unlabeled hash table, it returns the
202 * bucket number for the given device/interface. The caller is responsible for
203 * ensuring that the hash table is protected with either a RCU read lock or
204 * the hash table lock.
207 static u32
netlbl_unlhsh_hash(int ifindex
)
209 return ifindex
& (netlbl_unlhsh_rcu_deref(netlbl_unlhsh
)->size
- 1);
213 * netlbl_unlhsh_search_iface - Search for a matching interface entry
214 * @ifindex: the network interface
217 * Searches the unlabeled connection hash table and returns a pointer to the
218 * interface entry which matches @ifindex, otherwise NULL is returned. The
219 * caller is responsible for ensuring that the hash table is protected with
220 * either a RCU read lock or the hash table lock.
223 static struct netlbl_unlhsh_iface
*netlbl_unlhsh_search_iface(int ifindex
)
226 struct list_head
*bkt_list
;
227 struct netlbl_unlhsh_iface
*iter
;
229 bkt
= netlbl_unlhsh_hash(ifindex
);
230 bkt_list
= &netlbl_unlhsh_rcu_deref(netlbl_unlhsh
)->tbl
[bkt
];
231 list_for_each_entry_rcu(iter
, bkt_list
, list
)
232 if (iter
->valid
&& iter
->ifindex
== ifindex
)
239 * netlbl_unlhsh_add_addr4 - Add a new IPv4 address entry to the hash table
240 * @iface: the associated interface entry
241 * @addr: IPv4 address in network byte order
242 * @mask: IPv4 address mask in network byte order
243 * @secid: LSM secid value for entry
246 * Add a new address entry into the unlabeled connection hash table using the
247 * interface entry specified by @iface. On success zero is returned, otherwise
248 * a negative value is returned.
251 static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface
*iface
,
252 const struct in_addr
*addr
,
253 const struct in_addr
*mask
,
257 struct netlbl_unlhsh_addr4
*entry
;
259 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
263 entry
->list
.addr
= addr
->s_addr
& mask
->s_addr
;
264 entry
->list
.mask
= mask
->s_addr
;
265 entry
->list
.valid
= 1;
266 entry
->secid
= secid
;
268 spin_lock(&netlbl_unlhsh_lock
);
269 ret_val
= netlbl_af4list_add(&entry
->list
, &iface
->addr4_list
);
270 spin_unlock(&netlbl_unlhsh_lock
);
277 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
279 * netlbl_unlhsh_add_addr6 - Add a new IPv6 address entry to the hash table
280 * @iface: the associated interface entry
281 * @addr: IPv6 address in network byte order
282 * @mask: IPv6 address mask in network byte order
283 * @secid: LSM secid value for entry
286 * Add a new address entry into the unlabeled connection hash table using the
287 * interface entry specified by @iface. On success zero is returned, otherwise
288 * a negative value is returned.
291 static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface
*iface
,
292 const struct in6_addr
*addr
,
293 const struct in6_addr
*mask
,
297 struct netlbl_unlhsh_addr6
*entry
;
299 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
303 ipv6_addr_copy(&entry
->list
.addr
, addr
);
304 entry
->list
.addr
.s6_addr32
[0] &= mask
->s6_addr32
[0];
305 entry
->list
.addr
.s6_addr32
[1] &= mask
->s6_addr32
[1];
306 entry
->list
.addr
.s6_addr32
[2] &= mask
->s6_addr32
[2];
307 entry
->list
.addr
.s6_addr32
[3] &= mask
->s6_addr32
[3];
308 ipv6_addr_copy(&entry
->list
.mask
, mask
);
309 entry
->list
.valid
= 1;
310 entry
->secid
= secid
;
312 spin_lock(&netlbl_unlhsh_lock
);
313 ret_val
= netlbl_af6list_add(&entry
->list
, &iface
->addr6_list
);
314 spin_unlock(&netlbl_unlhsh_lock
);
323 * netlbl_unlhsh_add_iface - Adds a new interface entry to the hash table
324 * @ifindex: network interface
327 * Add a new, empty, interface entry into the unlabeled connection hash table.
328 * On success a pointer to the new interface entry is returned, on failure NULL
332 static struct netlbl_unlhsh_iface
*netlbl_unlhsh_add_iface(int ifindex
)
335 struct netlbl_unlhsh_iface
*iface
;
337 iface
= kzalloc(sizeof(*iface
), GFP_ATOMIC
);
341 iface
->ifindex
= ifindex
;
342 INIT_LIST_HEAD(&iface
->addr4_list
);
343 INIT_LIST_HEAD(&iface
->addr6_list
);
346 spin_lock(&netlbl_unlhsh_lock
);
348 bkt
= netlbl_unlhsh_hash(ifindex
);
349 if (netlbl_unlhsh_search_iface(ifindex
) != NULL
)
350 goto add_iface_failure
;
351 list_add_tail_rcu(&iface
->list
,
352 &netlbl_unlhsh_rcu_deref(netlbl_unlhsh
)->tbl
[bkt
]);
354 INIT_LIST_HEAD(&iface
->list
);
355 if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def
) != NULL
)
356 goto add_iface_failure
;
357 rcu_assign_pointer(netlbl_unlhsh_def
, iface
);
359 spin_unlock(&netlbl_unlhsh_lock
);
364 spin_unlock(&netlbl_unlhsh_lock
);
370 * netlbl_unlhsh_add - Adds a new entry to the unlabeled connection hash table
371 * @net: network namespace
372 * @dev_name: interface name
373 * @addr: IP address in network byte order
374 * @mask: address mask in network byte order
375 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
376 * @secid: LSM secid value for the entry
377 * @audit_info: NetLabel audit information
380 * Adds a new entry to the unlabeled connection hash table. Returns zero on
381 * success, negative values on failure.
384 int netlbl_unlhsh_add(struct net
*net
,
385 const char *dev_name
,
390 struct netlbl_audit
*audit_info
)
394 struct net_device
*dev
;
395 struct netlbl_unlhsh_iface
*iface
;
396 struct audit_buffer
*audit_buf
= NULL
;
400 if (addr_len
!= sizeof(struct in_addr
) &&
401 addr_len
!= sizeof(struct in6_addr
))
405 if (dev_name
!= NULL
) {
406 dev
= dev_get_by_name_rcu(net
, dev_name
);
409 goto unlhsh_add_return
;
411 ifindex
= dev
->ifindex
;
412 iface
= netlbl_unlhsh_search_iface(ifindex
);
415 iface
= rcu_dereference(netlbl_unlhsh_def
);
418 iface
= netlbl_unlhsh_add_iface(ifindex
);
421 goto unlhsh_add_return
;
424 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD
,
427 case sizeof(struct in_addr
): {
428 const struct in_addr
*addr4
= addr
;
429 const struct in_addr
*mask4
= mask
;
431 ret_val
= netlbl_unlhsh_add_addr4(iface
, addr4
, mask4
, secid
);
432 if (audit_buf
!= NULL
)
433 netlbl_af4list_audit_addr(audit_buf
, 1,
439 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
440 case sizeof(struct in6_addr
): {
441 const struct in6_addr
*addr6
= addr
;
442 const struct in6_addr
*mask6
= mask
;
444 ret_val
= netlbl_unlhsh_add_addr6(iface
, addr6
, mask6
, secid
);
445 if (audit_buf
!= NULL
)
446 netlbl_af6list_audit_addr(audit_buf
, 1,
456 atomic_inc(&netlabel_mgmt_protocount
);
460 if (audit_buf
!= NULL
) {
461 if (security_secid_to_secctx(secid
,
464 audit_log_format(audit_buf
, " sec_obj=%s", secctx
);
465 security_release_secctx(secctx
, secctx_len
);
467 audit_log_format(audit_buf
, " res=%u", ret_val
== 0 ? 1 : 0);
468 audit_log_end(audit_buf
);
474 * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry
475 * @net: network namespace
476 * @iface: interface entry
478 * @mask: IP address mask
479 * @audit_info: NetLabel audit information
482 * Remove an IP address entry from the unlabeled connection hash table.
483 * Returns zero on success, negative values on failure.
486 static int netlbl_unlhsh_remove_addr4(struct net
*net
,
487 struct netlbl_unlhsh_iface
*iface
,
488 const struct in_addr
*addr
,
489 const struct in_addr
*mask
,
490 struct netlbl_audit
*audit_info
)
492 struct netlbl_af4list
*list_entry
;
493 struct netlbl_unlhsh_addr4
*entry
;
494 struct audit_buffer
*audit_buf
;
495 struct net_device
*dev
;
499 spin_lock(&netlbl_unlhsh_lock
);
500 list_entry
= netlbl_af4list_remove(addr
->s_addr
, mask
->s_addr
,
502 spin_unlock(&netlbl_unlhsh_lock
);
503 if (list_entry
!= NULL
)
504 entry
= netlbl_unlhsh_addr4_entry(list_entry
);
508 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL
,
510 if (audit_buf
!= NULL
) {
511 dev
= dev_get_by_index(net
, iface
->ifindex
);
512 netlbl_af4list_audit_addr(audit_buf
, 1,
513 (dev
!= NULL
? dev
->name
: NULL
),
514 addr
->s_addr
, mask
->s_addr
);
518 security_secid_to_secctx(entry
->secid
,
519 &secctx
, &secctx_len
) == 0) {
520 audit_log_format(audit_buf
, " sec_obj=%s", secctx
);
521 security_release_secctx(secctx
, secctx_len
);
523 audit_log_format(audit_buf
, " res=%u", entry
!= NULL
? 1 : 0);
524 audit_log_end(audit_buf
);
530 kfree_rcu(entry
, rcu
);
534 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
536 * netlbl_unlhsh_remove_addr6 - Remove an IPv6 address entry
537 * @net: network namespace
538 * @iface: interface entry
540 * @mask: IP address mask
541 * @audit_info: NetLabel audit information
544 * Remove an IP address entry from the unlabeled connection hash table.
545 * Returns zero on success, negative values on failure.
548 static int netlbl_unlhsh_remove_addr6(struct net
*net
,
549 struct netlbl_unlhsh_iface
*iface
,
550 const struct in6_addr
*addr
,
551 const struct in6_addr
*mask
,
552 struct netlbl_audit
*audit_info
)
554 struct netlbl_af6list
*list_entry
;
555 struct netlbl_unlhsh_addr6
*entry
;
556 struct audit_buffer
*audit_buf
;
557 struct net_device
*dev
;
561 spin_lock(&netlbl_unlhsh_lock
);
562 list_entry
= netlbl_af6list_remove(addr
, mask
, &iface
->addr6_list
);
563 spin_unlock(&netlbl_unlhsh_lock
);
564 if (list_entry
!= NULL
)
565 entry
= netlbl_unlhsh_addr6_entry(list_entry
);
569 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL
,
571 if (audit_buf
!= NULL
) {
572 dev
= dev_get_by_index(net
, iface
->ifindex
);
573 netlbl_af6list_audit_addr(audit_buf
, 1,
574 (dev
!= NULL
? dev
->name
: NULL
),
579 security_secid_to_secctx(entry
->secid
,
580 &secctx
, &secctx_len
) == 0) {
581 audit_log_format(audit_buf
, " sec_obj=%s", secctx
);
582 security_release_secctx(secctx
, secctx_len
);
584 audit_log_format(audit_buf
, " res=%u", entry
!= NULL
? 1 : 0);
585 audit_log_end(audit_buf
);
591 kfree_rcu(entry
, rcu
);
597 * netlbl_unlhsh_condremove_iface - Remove an interface entry
598 * @iface: the interface entry
601 * Remove an interface entry from the unlabeled connection hash table if it is
602 * empty. An interface entry is considered to be empty if there are no
603 * address entries assigned to it.
606 static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface
*iface
)
608 struct netlbl_af4list
*iter4
;
609 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
610 struct netlbl_af6list
*iter6
;
613 spin_lock(&netlbl_unlhsh_lock
);
614 netlbl_af4list_foreach_rcu(iter4
, &iface
->addr4_list
)
615 goto unlhsh_condremove_failure
;
616 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
617 netlbl_af6list_foreach_rcu(iter6
, &iface
->addr6_list
)
618 goto unlhsh_condremove_failure
;
621 if (iface
->ifindex
> 0)
622 list_del_rcu(&iface
->list
);
624 rcu_assign_pointer(netlbl_unlhsh_def
, NULL
);
625 spin_unlock(&netlbl_unlhsh_lock
);
627 call_rcu(&iface
->rcu
, netlbl_unlhsh_free_iface
);
630 unlhsh_condremove_failure
:
631 spin_unlock(&netlbl_unlhsh_lock
);
635 * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table
636 * @net: network namespace
637 * @dev_name: interface name
638 * @addr: IP address in network byte order
639 * @mask: address mask in network byte order
640 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
641 * @audit_info: NetLabel audit information
644 * Removes and existing entry from the unlabeled connection hash table.
645 * Returns zero on success, negative values on failure.
648 int netlbl_unlhsh_remove(struct net
*net
,
649 const char *dev_name
,
653 struct netlbl_audit
*audit_info
)
656 struct net_device
*dev
;
657 struct netlbl_unlhsh_iface
*iface
;
659 if (addr_len
!= sizeof(struct in_addr
) &&
660 addr_len
!= sizeof(struct in6_addr
))
664 if (dev_name
!= NULL
) {
665 dev
= dev_get_by_name_rcu(net
, dev_name
);
668 goto unlhsh_remove_return
;
670 iface
= netlbl_unlhsh_search_iface(dev
->ifindex
);
672 iface
= rcu_dereference(netlbl_unlhsh_def
);
675 goto unlhsh_remove_return
;
678 case sizeof(struct in_addr
):
679 ret_val
= netlbl_unlhsh_remove_addr4(net
,
683 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
684 case sizeof(struct in6_addr
):
685 ret_val
= netlbl_unlhsh_remove_addr6(net
,
694 netlbl_unlhsh_condremove_iface(iface
);
695 atomic_dec(&netlabel_mgmt_protocount
);
698 unlhsh_remove_return
:
704 * General Helper Functions
708 * netlbl_unlhsh_netdev_handler - Network device notification handler
709 * @this: notifier block
711 * @ptr: the network device (cast to void)
714 * Handle network device events, although at present all we care about is a
715 * network device going away. In the case of a device going away we clear any
716 * related entries from the unlabeled connection hash table.
719 static int netlbl_unlhsh_netdev_handler(struct notifier_block
*this,
723 struct net_device
*dev
= ptr
;
724 struct netlbl_unlhsh_iface
*iface
= NULL
;
726 if (!net_eq(dev_net(dev
), &init_net
))
729 /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */
730 if (event
== NETDEV_DOWN
) {
731 spin_lock(&netlbl_unlhsh_lock
);
732 iface
= netlbl_unlhsh_search_iface(dev
->ifindex
);
733 if (iface
!= NULL
&& iface
->valid
) {
735 list_del_rcu(&iface
->list
);
738 spin_unlock(&netlbl_unlhsh_lock
);
742 call_rcu(&iface
->rcu
, netlbl_unlhsh_free_iface
);
748 * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
749 * @value: desired value
750 * @audit_info: NetLabel audit information
753 * Set the value of the unlabeled accept flag to @value.
756 static void netlbl_unlabel_acceptflg_set(u8 value
,
757 struct netlbl_audit
*audit_info
)
759 struct audit_buffer
*audit_buf
;
762 old_val
= netlabel_unlabel_acceptflg
;
763 netlabel_unlabel_acceptflg
= value
;
764 audit_buf
= netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW
,
766 if (audit_buf
!= NULL
) {
767 audit_log_format(audit_buf
,
768 " unlbl_accept=%u old=%u", value
, old_val
);
769 audit_log_end(audit_buf
);
774 * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information
775 * @info: the Generic NETLINK info block
776 * @addr: the IP address
777 * @mask: the IP address mask
778 * @len: the address length
781 * Examine the Generic NETLINK message and extract the IP address information.
782 * Returns zero on success, negative values on failure.
785 static int netlbl_unlabel_addrinfo_get(struct genl_info
*info
,
792 if (info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
]) {
793 addr_len
= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
]);
794 if (addr_len
!= sizeof(struct in_addr
) &&
795 addr_len
!= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]))
798 *addr
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
]);
799 *mask
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]);
801 } else if (info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
]) {
802 addr_len
= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
]);
803 if (addr_len
!= sizeof(struct in6_addr
) &&
804 addr_len
!= nla_len(info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
]))
807 *addr
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
]);
808 *mask
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
]);
816 * NetLabel Command Handlers
820 * netlbl_unlabel_accept - Handle an ACCEPT message
821 * @skb: the NETLINK buffer
822 * @info: the Generic NETLINK info block
825 * Process a user generated ACCEPT message and set the accept flag accordingly.
826 * Returns zero on success, negative values on failure.
829 static int netlbl_unlabel_accept(struct sk_buff
*skb
, struct genl_info
*info
)
832 struct netlbl_audit audit_info
;
834 if (info
->attrs
[NLBL_UNLABEL_A_ACPTFLG
]) {
835 value
= nla_get_u8(info
->attrs
[NLBL_UNLABEL_A_ACPTFLG
]);
836 if (value
== 1 || value
== 0) {
837 netlbl_netlink_auditinfo(skb
, &audit_info
);
838 netlbl_unlabel_acceptflg_set(value
, &audit_info
);
847 * netlbl_unlabel_list - Handle a LIST message
848 * @skb: the NETLINK buffer
849 * @info: the Generic NETLINK info block
852 * Process a user generated LIST message and respond with the current status.
853 * Returns zero on success, negative values on failure.
856 static int netlbl_unlabel_list(struct sk_buff
*skb
, struct genl_info
*info
)
858 int ret_val
= -EINVAL
;
859 struct sk_buff
*ans_skb
;
862 ans_skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
865 data
= genlmsg_put_reply(ans_skb
, info
, &netlbl_unlabel_gnl_family
,
866 0, NLBL_UNLABEL_C_LIST
);
872 ret_val
= nla_put_u8(ans_skb
,
873 NLBL_UNLABEL_A_ACPTFLG
,
874 netlabel_unlabel_acceptflg
);
878 genlmsg_end(ans_skb
, data
);
879 return genlmsg_reply(ans_skb
, info
);
887 * netlbl_unlabel_staticadd - Handle a STATICADD message
888 * @skb: the NETLINK buffer
889 * @info: the Generic NETLINK info block
892 * Process a user generated STATICADD message and add a new unlabeled
893 * connection entry to the hash table. Returns zero on success, negative
897 static int netlbl_unlabel_staticadd(struct sk_buff
*skb
,
898 struct genl_info
*info
)
906 struct netlbl_audit audit_info
;
908 /* Don't allow users to add both IPv4 and IPv6 addresses for a
909 * single entry. However, allow users to create two entries, one each
910 * for IPv4 and IPv4, with the same LSM security context which should
911 * achieve the same result. */
912 if (!info
->attrs
[NLBL_UNLABEL_A_SECCTX
] ||
913 !info
->attrs
[NLBL_UNLABEL_A_IFACE
] ||
914 !((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
915 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
916 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
917 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
920 netlbl_netlink_auditinfo(skb
, &audit_info
);
922 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
925 dev_name
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IFACE
]);
926 ret_val
= security_secctx_to_secid(
927 nla_data(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
928 nla_len(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
933 return netlbl_unlhsh_add(&init_net
,
934 dev_name
, addr
, mask
, addr_len
, secid
,
939 * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message
940 * @skb: the NETLINK buffer
941 * @info: the Generic NETLINK info block
944 * Process a user generated STATICADDDEF message and add a new default
945 * unlabeled connection entry. Returns zero on success, negative values on
949 static int netlbl_unlabel_staticadddef(struct sk_buff
*skb
,
950 struct genl_info
*info
)
957 struct netlbl_audit audit_info
;
959 /* Don't allow users to add both IPv4 and IPv6 addresses for a
960 * single entry. However, allow users to create two entries, one each
961 * for IPv4 and IPv6, with the same LSM security context which should
962 * achieve the same result. */
963 if (!info
->attrs
[NLBL_UNLABEL_A_SECCTX
] ||
964 !((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
965 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
966 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
967 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
970 netlbl_netlink_auditinfo(skb
, &audit_info
);
972 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
975 ret_val
= security_secctx_to_secid(
976 nla_data(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
977 nla_len(info
->attrs
[NLBL_UNLABEL_A_SECCTX
]),
982 return netlbl_unlhsh_add(&init_net
,
983 NULL
, addr
, mask
, addr_len
, secid
,
988 * netlbl_unlabel_staticremove - Handle a STATICREMOVE message
989 * @skb: the NETLINK buffer
990 * @info: the Generic NETLINK info block
993 * Process a user generated STATICREMOVE message and remove the specified
994 * unlabeled connection entry. Returns zero on success, negative values on
998 static int netlbl_unlabel_staticremove(struct sk_buff
*skb
,
999 struct genl_info
*info
)
1006 struct netlbl_audit audit_info
;
1008 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1009 * IPv4 and IPv6 in the same entry. */
1010 if (!info
->attrs
[NLBL_UNLABEL_A_IFACE
] ||
1011 !((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
1012 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
1013 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
1014 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
1017 netlbl_netlink_auditinfo(skb
, &audit_info
);
1019 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
1022 dev_name
= nla_data(info
->attrs
[NLBL_UNLABEL_A_IFACE
]);
1024 return netlbl_unlhsh_remove(&init_net
,
1025 dev_name
, addr
, mask
, addr_len
,
1030 * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message
1031 * @skb: the NETLINK buffer
1032 * @info: the Generic NETLINK info block
1035 * Process a user generated STATICREMOVEDEF message and remove the default
1036 * unlabeled connection entry. Returns zero on success, negative values on
1040 static int netlbl_unlabel_staticremovedef(struct sk_buff
*skb
,
1041 struct genl_info
*info
)
1047 struct netlbl_audit audit_info
;
1049 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1050 * IPv4 and IPv6 in the same entry. */
1051 if (!((!info
->attrs
[NLBL_UNLABEL_A_IPV4ADDR
] ||
1052 !info
->attrs
[NLBL_UNLABEL_A_IPV4MASK
]) ^
1053 (!info
->attrs
[NLBL_UNLABEL_A_IPV6ADDR
] ||
1054 !info
->attrs
[NLBL_UNLABEL_A_IPV6MASK
])))
1057 netlbl_netlink_auditinfo(skb
, &audit_info
);
1059 ret_val
= netlbl_unlabel_addrinfo_get(info
, &addr
, &mask
, &addr_len
);
1063 return netlbl_unlhsh_remove(&init_net
,
1064 NULL
, addr
, mask
, addr_len
,
1070 * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF]
1071 * @cmd: command/message
1072 * @iface: the interface entry
1073 * @addr4: the IPv4 address entry
1074 * @addr6: the IPv6 address entry
1075 * @arg: the netlbl_unlhsh_walk_arg structure
1078 * This function is designed to be used to generate a response for a
1079 * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6
1080 * can be specified, not both, the other unspecified entry should be set to
1081 * NULL by the caller. Returns the size of the message on success, negative
1082 * values on failure.
1085 static int netlbl_unlabel_staticlist_gen(u32 cmd
,
1086 const struct netlbl_unlhsh_iface
*iface
,
1087 const struct netlbl_unlhsh_addr4
*addr4
,
1088 const struct netlbl_unlhsh_addr6
*addr6
,
1091 int ret_val
= -ENOMEM
;
1092 struct netlbl_unlhsh_walk_arg
*cb_arg
= arg
;
1093 struct net_device
*dev
;
1099 data
= genlmsg_put(cb_arg
->skb
, NETLINK_CB(cb_arg
->nl_cb
->skb
).pid
,
1100 cb_arg
->seq
, &netlbl_unlabel_gnl_family
,
1103 goto list_cb_failure
;
1105 if (iface
->ifindex
> 0) {
1106 dev
= dev_get_by_index(&init_net
, iface
->ifindex
);
1109 goto list_cb_failure
;
1111 ret_val
= nla_put_string(cb_arg
->skb
,
1112 NLBL_UNLABEL_A_IFACE
, dev
->name
);
1115 goto list_cb_failure
;
1119 struct in_addr addr_struct
;
1121 addr_struct
.s_addr
= addr4
->list
.addr
;
1122 ret_val
= nla_put(cb_arg
->skb
,
1123 NLBL_UNLABEL_A_IPV4ADDR
,
1124 sizeof(struct in_addr
),
1127 goto list_cb_failure
;
1129 addr_struct
.s_addr
= addr4
->list
.mask
;
1130 ret_val
= nla_put(cb_arg
->skb
,
1131 NLBL_UNLABEL_A_IPV4MASK
,
1132 sizeof(struct in_addr
),
1135 goto list_cb_failure
;
1137 secid
= addr4
->secid
;
1139 ret_val
= nla_put(cb_arg
->skb
,
1140 NLBL_UNLABEL_A_IPV6ADDR
,
1141 sizeof(struct in6_addr
),
1144 goto list_cb_failure
;
1146 ret_val
= nla_put(cb_arg
->skb
,
1147 NLBL_UNLABEL_A_IPV6MASK
,
1148 sizeof(struct in6_addr
),
1151 goto list_cb_failure
;
1153 secid
= addr6
->secid
;
1156 ret_val
= security_secid_to_secctx(secid
, &secctx
, &secctx_len
);
1158 goto list_cb_failure
;
1159 ret_val
= nla_put(cb_arg
->skb
,
1160 NLBL_UNLABEL_A_SECCTX
,
1163 security_release_secctx(secctx
, secctx_len
);
1165 goto list_cb_failure
;
1168 return genlmsg_end(cb_arg
->skb
, data
);
1171 genlmsg_cancel(cb_arg
->skb
, data
);
1176 * netlbl_unlabel_staticlist - Handle a STATICLIST message
1177 * @skb: the NETLINK buffer
1178 * @cb: the NETLINK callback
1181 * Process a user generated STATICLIST message and dump the unlabeled
1182 * connection hash table in a form suitable for use in a kernel generated
1183 * STATICLIST message. Returns the length of @skb.
1186 static int netlbl_unlabel_staticlist(struct sk_buff
*skb
,
1187 struct netlink_callback
*cb
)
1189 struct netlbl_unlhsh_walk_arg cb_arg
;
1190 u32 skip_bkt
= cb
->args
[0];
1191 u32 skip_chain
= cb
->args
[1];
1192 u32 skip_addr4
= cb
->args
[2];
1193 u32 skip_addr6
= cb
->args
[3];
1195 u32 iter_chain
= 0, iter_addr4
= 0, iter_addr6
= 0;
1196 struct netlbl_unlhsh_iface
*iface
;
1197 struct list_head
*iter_list
;
1198 struct netlbl_af4list
*addr4
;
1199 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1200 struct netlbl_af6list
*addr6
;
1205 cb_arg
.seq
= cb
->nlh
->nlmsg_seq
;
1208 for (iter_bkt
= skip_bkt
;
1209 iter_bkt
< rcu_dereference(netlbl_unlhsh
)->size
;
1210 iter_bkt
++, iter_chain
= 0, iter_addr4
= 0, iter_addr6
= 0) {
1211 iter_list
= &rcu_dereference(netlbl_unlhsh
)->tbl
[iter_bkt
];
1212 list_for_each_entry_rcu(iface
, iter_list
, list
) {
1213 if (!iface
->valid
||
1214 iter_chain
++ < skip_chain
)
1216 netlbl_af4list_foreach_rcu(addr4
,
1217 &iface
->addr4_list
) {
1218 if (iter_addr4
++ < skip_addr4
)
1220 if (netlbl_unlabel_staticlist_gen(
1221 NLBL_UNLABEL_C_STATICLIST
,
1223 netlbl_unlhsh_addr4_entry(addr4
),
1228 goto unlabel_staticlist_return
;
1231 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1232 netlbl_af6list_foreach_rcu(addr6
,
1233 &iface
->addr6_list
) {
1234 if (iter_addr6
++ < skip_addr6
)
1236 if (netlbl_unlabel_staticlist_gen(
1237 NLBL_UNLABEL_C_STATICLIST
,
1240 netlbl_unlhsh_addr6_entry(addr6
),
1244 goto unlabel_staticlist_return
;
1251 unlabel_staticlist_return
:
1253 cb
->args
[0] = skip_bkt
;
1254 cb
->args
[1] = skip_chain
;
1255 cb
->args
[2] = skip_addr4
;
1256 cb
->args
[3] = skip_addr6
;
1261 * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message
1262 * @skb: the NETLINK buffer
1263 * @cb: the NETLINK callback
1266 * Process a user generated STATICLISTDEF message and dump the default
1267 * unlabeled connection entry in a form suitable for use in a kernel generated
1268 * STATICLISTDEF message. Returns the length of @skb.
1271 static int netlbl_unlabel_staticlistdef(struct sk_buff
*skb
,
1272 struct netlink_callback
*cb
)
1274 struct netlbl_unlhsh_walk_arg cb_arg
;
1275 struct netlbl_unlhsh_iface
*iface
;
1276 u32 skip_addr4
= cb
->args
[0];
1277 u32 skip_addr6
= cb
->args
[1];
1279 struct netlbl_af4list
*addr4
;
1280 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1282 struct netlbl_af6list
*addr6
;
1287 cb_arg
.seq
= cb
->nlh
->nlmsg_seq
;
1290 iface
= rcu_dereference(netlbl_unlhsh_def
);
1291 if (iface
== NULL
|| !iface
->valid
)
1292 goto unlabel_staticlistdef_return
;
1294 netlbl_af4list_foreach_rcu(addr4
, &iface
->addr4_list
) {
1295 if (iter_addr4
++ < skip_addr4
)
1297 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF
,
1299 netlbl_unlhsh_addr4_entry(addr4
),
1303 goto unlabel_staticlistdef_return
;
1306 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1307 netlbl_af6list_foreach_rcu(addr6
, &iface
->addr6_list
) {
1308 if (iter_addr6
++ < skip_addr6
)
1310 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF
,
1313 netlbl_unlhsh_addr6_entry(addr6
),
1316 goto unlabel_staticlistdef_return
;
1321 unlabel_staticlistdef_return
:
1323 cb
->args
[0] = skip_addr4
;
1324 cb
->args
[1] = skip_addr6
;
1329 * NetLabel Generic NETLINK Command Definitions
1332 static struct genl_ops netlbl_unlabel_genl_ops
[] = {
1334 .cmd
= NLBL_UNLABEL_C_STATICADD
,
1335 .flags
= GENL_ADMIN_PERM
,
1336 .policy
= netlbl_unlabel_genl_policy
,
1337 .doit
= netlbl_unlabel_staticadd
,
1341 .cmd
= NLBL_UNLABEL_C_STATICREMOVE
,
1342 .flags
= GENL_ADMIN_PERM
,
1343 .policy
= netlbl_unlabel_genl_policy
,
1344 .doit
= netlbl_unlabel_staticremove
,
1348 .cmd
= NLBL_UNLABEL_C_STATICLIST
,
1350 .policy
= netlbl_unlabel_genl_policy
,
1352 .dumpit
= netlbl_unlabel_staticlist
,
1355 .cmd
= NLBL_UNLABEL_C_STATICADDDEF
,
1356 .flags
= GENL_ADMIN_PERM
,
1357 .policy
= netlbl_unlabel_genl_policy
,
1358 .doit
= netlbl_unlabel_staticadddef
,
1362 .cmd
= NLBL_UNLABEL_C_STATICREMOVEDEF
,
1363 .flags
= GENL_ADMIN_PERM
,
1364 .policy
= netlbl_unlabel_genl_policy
,
1365 .doit
= netlbl_unlabel_staticremovedef
,
1369 .cmd
= NLBL_UNLABEL_C_STATICLISTDEF
,
1371 .policy
= netlbl_unlabel_genl_policy
,
1373 .dumpit
= netlbl_unlabel_staticlistdef
,
1376 .cmd
= NLBL_UNLABEL_C_ACCEPT
,
1377 .flags
= GENL_ADMIN_PERM
,
1378 .policy
= netlbl_unlabel_genl_policy
,
1379 .doit
= netlbl_unlabel_accept
,
1383 .cmd
= NLBL_UNLABEL_C_LIST
,
1385 .policy
= netlbl_unlabel_genl_policy
,
1386 .doit
= netlbl_unlabel_list
,
1392 * NetLabel Generic NETLINK Protocol Functions
1396 * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
1399 * Register the unlabeled packet NetLabel component with the Generic NETLINK
1400 * mechanism. Returns zero on success, negative values on failure.
1403 int __init
netlbl_unlabel_genl_init(void)
1405 return genl_register_family_with_ops(&netlbl_unlabel_gnl_family
,
1406 netlbl_unlabel_genl_ops
, ARRAY_SIZE(netlbl_unlabel_genl_ops
));
1410 * NetLabel KAPI Hooks
1413 static struct notifier_block netlbl_unlhsh_netdev_notifier
= {
1414 .notifier_call
= netlbl_unlhsh_netdev_handler
,
1418 * netlbl_unlabel_init - Initialize the unlabeled connection hash table
1419 * @size: the number of bits to use for the hash buckets
1422 * Initializes the unlabeled connection hash table and registers a network
1423 * device notification handler. This function should only be called by the
1424 * NetLabel subsystem itself during initialization. Returns zero on success,
1425 * non-zero values on error.
1428 int __init
netlbl_unlabel_init(u32 size
)
1431 struct netlbl_unlhsh_tbl
*hsh_tbl
;
1436 hsh_tbl
= kmalloc(sizeof(*hsh_tbl
), GFP_KERNEL
);
1437 if (hsh_tbl
== NULL
)
1439 hsh_tbl
->size
= 1 << size
;
1440 hsh_tbl
->tbl
= kcalloc(hsh_tbl
->size
,
1441 sizeof(struct list_head
),
1443 if (hsh_tbl
->tbl
== NULL
) {
1447 for (iter
= 0; iter
< hsh_tbl
->size
; iter
++)
1448 INIT_LIST_HEAD(&hsh_tbl
->tbl
[iter
]);
1451 spin_lock(&netlbl_unlhsh_lock
);
1452 rcu_assign_pointer(netlbl_unlhsh
, hsh_tbl
);
1453 spin_unlock(&netlbl_unlhsh_lock
);
1456 register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier
);
1462 * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
1464 * @family: protocol family
1465 * @secattr: the security attributes
1468 * Determine the security attributes, if any, for an unlabled packet and return
1469 * them in @secattr. Returns zero on success and negative values on failure.
1472 int netlbl_unlabel_getattr(const struct sk_buff
*skb
,
1474 struct netlbl_lsm_secattr
*secattr
)
1476 struct netlbl_unlhsh_iface
*iface
;
1479 iface
= netlbl_unlhsh_search_iface(skb
->skb_iif
);
1481 iface
= rcu_dereference(netlbl_unlhsh_def
);
1482 if (iface
== NULL
|| !iface
->valid
)
1483 goto unlabel_getattr_nolabel
;
1487 struct netlbl_af4list
*addr4
;
1490 addr4
= netlbl_af4list_search(hdr4
->saddr
,
1491 &iface
->addr4_list
);
1493 goto unlabel_getattr_nolabel
;
1494 secattr
->attr
.secid
= netlbl_unlhsh_addr4_entry(addr4
)->secid
;
1497 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1499 struct ipv6hdr
*hdr6
;
1500 struct netlbl_af6list
*addr6
;
1502 hdr6
= ipv6_hdr(skb
);
1503 addr6
= netlbl_af6list_search(&hdr6
->saddr
,
1504 &iface
->addr6_list
);
1506 goto unlabel_getattr_nolabel
;
1507 secattr
->attr
.secid
= netlbl_unlhsh_addr6_entry(addr6
)->secid
;
1512 goto unlabel_getattr_nolabel
;
1516 secattr
->flags
|= NETLBL_SECATTR_SECID
;
1517 secattr
->type
= NETLBL_NLTYPE_UNLABELED
;
1520 unlabel_getattr_nolabel
:
1522 if (netlabel_unlabel_acceptflg
== 0)
1524 secattr
->type
= NETLBL_NLTYPE_UNLABELED
;
1529 * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
1532 * Set the default NetLabel configuration to allow incoming unlabeled packets
1533 * and to send unlabeled network traffic by default.
1536 int __init
netlbl_unlabel_defconf(void)
1539 struct netlbl_dom_map
*entry
;
1540 struct netlbl_audit audit_info
;
1542 /* Only the kernel is allowed to call this function and the only time
1543 * it is called is at bootup before the audit subsystem is reporting
1544 * messages so don't worry to much about these values. */
1545 security_task_getsecid(current
, &audit_info
.secid
);
1546 audit_info
.loginuid
= 0;
1547 audit_info
.sessionid
= 0;
1549 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
1552 entry
->type
= NETLBL_NLTYPE_UNLABELED
;
1553 ret_val
= netlbl_domhsh_add_default(entry
, &audit_info
);
1557 netlbl_unlabel_acceptflg_set(1, &audit_info
);