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.
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, see <http://www.gnu.org/licenses/>.
30 #include <linux/types.h>
31 #include <linux/rcupdate.h>
32 #include <linux/list.h>
33 #include <linux/spinlock.h>
34 #include <linux/socket.h>
35 #include <linux/string.h>
36 #include <linux/skbuff.h>
37 #include <linux/audit.h>
39 #include <linux/in6.h>
41 #include <linux/ipv6.h>
42 #include <linux/notifier.h>
43 #include <linux/netdevice.h>
44 #include <linux/security.h>
45 #include <linux/slab.h>
47 #include <net/netlink.h>
48 #include <net/genetlink.h>
51 #include <net/net_namespace.h>
52 #include <net/netlabel.h>
54 #include <linux/atomic.h>
56 #include "netlabel_user.h"
57 #include "netlabel_addrlist.h"
58 #include "netlabel_domainhash.h"
59 #include "netlabel_unlabeled.h"
60 #include "netlabel_mgmt.h"
62 /* NOTE: at present we always use init's network namespace since we don't
63 * presently support different namespaces even though the majority of
64 * the functions in this file are "namespace safe" */
66 /* The unlabeled connection hash table which we use to map network interfaces
67 * and addresses of unlabeled packets to a user specified secid value for the
68 * LSM. The hash table is used to lookup the network interface entry
69 * (struct netlbl_unlhsh_iface) and then the interface entry is used to
70 * lookup an IP address match from an ordered list. If a network interface
71 * match can not be found in the hash table then the default entry
72 * (netlbl_unlhsh_def) is used. The IP address entry list
73 * (struct netlbl_unlhsh_addr) is ordered such that the entries with a
74 * larger netmask come first.
76 struct netlbl_unlhsh_tbl {
77 struct list_head *tbl;
80 #define netlbl_unlhsh_addr4_entry(iter) \
81 container_of(iter, struct netlbl_unlhsh_addr4, list)
82 struct netlbl_unlhsh_addr4 {
85 struct netlbl_af4list list;
88 #define netlbl_unlhsh_addr6_entry(iter) \
89 container_of(iter, struct netlbl_unlhsh_addr6, list)
90 struct netlbl_unlhsh_addr6 {
93 struct netlbl_af6list list;
96 struct netlbl_unlhsh_iface {
98 struct list_head addr4_list;
99 struct list_head addr6_list;
102 struct list_head list;
106 /* Argument struct for netlbl_unlhsh_walk() */
107 struct netlbl_unlhsh_walk_arg {
108 struct netlink_callback *nl_cb;
113 /* Unlabeled connection hash table */
114 /* updates should be so rare that having one spinlock for the entire
115 * hash table should be okay */
116 static DEFINE_SPINLOCK(netlbl_unlhsh_lock);
117 #define netlbl_unlhsh_rcu_deref(p) \
118 rcu_dereference_check(p, lockdep_is_held(&netlbl_unlhsh_lock))
119 static struct netlbl_unlhsh_tbl __rcu *netlbl_unlhsh;
120 static struct netlbl_unlhsh_iface __rcu *netlbl_unlhsh_def;
122 /* Accept unlabeled packets flag */
123 static u8 netlabel_unlabel_acceptflg;
125 /* NetLabel Generic NETLINK unlabeled family */
126 static struct genl_family netlbl_unlabel_gnl_family;
128 /* NetLabel Netlink attribute policy */
129 static const struct nla_policy netlbl_unlabel_genl_policy[NLBL_UNLABEL_A_MAX + 1] = {
130 [NLBL_UNLABEL_A_ACPTFLG] = { .type = NLA_U8 },
131 [NLBL_UNLABEL_A_IPV6ADDR] = { .type = NLA_BINARY,
132 .len = sizeof(struct in6_addr) },
133 [NLBL_UNLABEL_A_IPV6MASK] = { .type = NLA_BINARY,
134 .len = sizeof(struct in6_addr) },
135 [NLBL_UNLABEL_A_IPV4ADDR] = { .type = NLA_BINARY,
136 .len = sizeof(struct in_addr) },
137 [NLBL_UNLABEL_A_IPV4MASK] = { .type = NLA_BINARY,
138 .len = sizeof(struct in_addr) },
139 [NLBL_UNLABEL_A_IFACE] = { .type = NLA_NUL_STRING,
140 .len = IFNAMSIZ - 1 },
141 [NLBL_UNLABEL_A_SECCTX] = { .type = NLA_BINARY }
145 * Unlabeled Connection Hash Table Functions
149 * netlbl_unlhsh_free_iface - Frees an interface entry from the hash table
150 * @entry: the entry's RCU field
153 * This function is designed to be used as a callback to the call_rcu()
154 * function so that memory allocated to a hash table interface entry can be
155 * released safely. It is important to note that this function does not free
156 * the IPv4 and IPv6 address lists contained as part of an interface entry. It
157 * is up to the rest of the code to make sure an interface entry is only freed
158 * once it's address lists are empty.
161 static void netlbl_unlhsh_free_iface(struct rcu_head *entry)
163 struct netlbl_unlhsh_iface *iface;
164 struct netlbl_af4list *iter4;
165 struct netlbl_af4list *tmp4;
166 #if IS_ENABLED(CONFIG_IPV6)
167 struct netlbl_af6list *iter6;
168 struct netlbl_af6list *tmp6;
171 iface = container_of(entry, struct netlbl_unlhsh_iface, rcu);
173 /* no need for locks here since we are the only one with access to this
176 netlbl_af4list_foreach_safe(iter4, tmp4, &iface->addr4_list) {
177 netlbl_af4list_remove_entry(iter4);
178 kfree(netlbl_unlhsh_addr4_entry(iter4));
180 #if IS_ENABLED(CONFIG_IPV6)
181 netlbl_af6list_foreach_safe(iter6, tmp6, &iface->addr6_list) {
182 netlbl_af6list_remove_entry(iter6);
183 kfree(netlbl_unlhsh_addr6_entry(iter6));
190 * netlbl_unlhsh_hash - Hashing function for the hash table
191 * @ifindex: the network interface/device to hash
194 * This is the hashing function for the unlabeled hash table, it returns the
195 * bucket number for the given device/interface. The caller is responsible for
196 * ensuring that the hash table is protected with either a RCU read lock or
197 * the hash table lock.
200 static u32 netlbl_unlhsh_hash(int ifindex)
202 return ifindex & (netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->size - 1);
206 * netlbl_unlhsh_search_iface - Search for a matching interface entry
207 * @ifindex: the network interface
210 * Searches the unlabeled connection hash table and returns a pointer to the
211 * interface entry which matches @ifindex, otherwise NULL is returned. The
212 * caller is responsible for ensuring that the hash table is protected with
213 * either a RCU read lock or the hash table lock.
216 static struct netlbl_unlhsh_iface *netlbl_unlhsh_search_iface(int ifindex)
219 struct list_head *bkt_list;
220 struct netlbl_unlhsh_iface *iter;
222 bkt = netlbl_unlhsh_hash(ifindex);
223 bkt_list = &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt];
224 list_for_each_entry_rcu(iter, bkt_list, list)
225 if (iter->valid && iter->ifindex == ifindex)
232 * netlbl_unlhsh_add_addr4 - Add a new IPv4 address entry to the hash table
233 * @iface: the associated interface entry
234 * @addr: IPv4 address in network byte order
235 * @mask: IPv4 address mask in network byte order
236 * @secid: LSM secid value for entry
239 * Add a new address entry into the unlabeled connection hash table using the
240 * interface entry specified by @iface. On success zero is returned, otherwise
241 * a negative value is returned.
244 static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface *iface,
245 const struct in_addr *addr,
246 const struct in_addr *mask,
250 struct netlbl_unlhsh_addr4 *entry;
252 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
256 entry->list.addr = addr->s_addr & mask->s_addr;
257 entry->list.mask = mask->s_addr;
258 entry->list.valid = 1;
259 entry->secid = secid;
261 spin_lock(&netlbl_unlhsh_lock);
262 ret_val = netlbl_af4list_add(&entry->list, &iface->addr4_list);
263 spin_unlock(&netlbl_unlhsh_lock);
270 #if IS_ENABLED(CONFIG_IPV6)
272 * netlbl_unlhsh_add_addr6 - Add a new IPv6 address entry to the hash table
273 * @iface: the associated interface entry
274 * @addr: IPv6 address in network byte order
275 * @mask: IPv6 address mask in network byte order
276 * @secid: LSM secid value for entry
279 * Add a new address entry into the unlabeled connection hash table using the
280 * interface entry specified by @iface. On success zero is returned, otherwise
281 * a negative value is returned.
284 static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface *iface,
285 const struct in6_addr *addr,
286 const struct in6_addr *mask,
290 struct netlbl_unlhsh_addr6 *entry;
292 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
296 entry->list.addr = *addr;
297 entry->list.addr.s6_addr32[0] &= mask->s6_addr32[0];
298 entry->list.addr.s6_addr32[1] &= mask->s6_addr32[1];
299 entry->list.addr.s6_addr32[2] &= mask->s6_addr32[2];
300 entry->list.addr.s6_addr32[3] &= mask->s6_addr32[3];
301 entry->list.mask = *mask;
302 entry->list.valid = 1;
303 entry->secid = secid;
305 spin_lock(&netlbl_unlhsh_lock);
306 ret_val = netlbl_af6list_add(&entry->list, &iface->addr6_list);
307 spin_unlock(&netlbl_unlhsh_lock);
316 * netlbl_unlhsh_add_iface - Adds a new interface entry to the hash table
317 * @ifindex: network interface
320 * Add a new, empty, interface entry into the unlabeled connection hash table.
321 * On success a pointer to the new interface entry is returned, on failure NULL
325 static struct netlbl_unlhsh_iface *netlbl_unlhsh_add_iface(int ifindex)
328 struct netlbl_unlhsh_iface *iface;
330 iface = kzalloc(sizeof(*iface), GFP_ATOMIC);
334 iface->ifindex = ifindex;
335 INIT_LIST_HEAD(&iface->addr4_list);
336 INIT_LIST_HEAD(&iface->addr6_list);
339 spin_lock(&netlbl_unlhsh_lock);
341 bkt = netlbl_unlhsh_hash(ifindex);
342 if (netlbl_unlhsh_search_iface(ifindex) != NULL)
343 goto add_iface_failure;
344 list_add_tail_rcu(&iface->list,
345 &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt]);
347 INIT_LIST_HEAD(&iface->list);
348 if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def) != NULL)
349 goto add_iface_failure;
350 rcu_assign_pointer(netlbl_unlhsh_def, iface);
352 spin_unlock(&netlbl_unlhsh_lock);
357 spin_unlock(&netlbl_unlhsh_lock);
363 * netlbl_unlhsh_add - Adds a new entry to the unlabeled connection hash table
364 * @net: network namespace
365 * @dev_name: interface name
366 * @addr: IP address in network byte order
367 * @mask: address mask in network byte order
368 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
369 * @secid: LSM secid value for the entry
370 * @audit_info: NetLabel audit information
373 * Adds a new entry to the unlabeled connection hash table. Returns zero on
374 * success, negative values on failure.
377 int netlbl_unlhsh_add(struct net *net,
378 const char *dev_name,
383 struct netlbl_audit *audit_info)
387 struct net_device *dev;
388 struct netlbl_unlhsh_iface *iface;
389 struct audit_buffer *audit_buf = NULL;
393 if (addr_len != sizeof(struct in_addr) &&
394 addr_len != sizeof(struct in6_addr))
398 if (dev_name != NULL) {
399 dev = dev_get_by_name_rcu(net, dev_name);
402 goto unlhsh_add_return;
404 ifindex = dev->ifindex;
405 iface = netlbl_unlhsh_search_iface(ifindex);
408 iface = rcu_dereference(netlbl_unlhsh_def);
411 iface = netlbl_unlhsh_add_iface(ifindex);
414 goto unlhsh_add_return;
417 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD,
420 case sizeof(struct in_addr): {
421 const struct in_addr *addr4 = addr;
422 const struct in_addr *mask4 = mask;
424 ret_val = netlbl_unlhsh_add_addr4(iface, addr4, mask4, secid);
425 if (audit_buf != NULL)
426 netlbl_af4list_audit_addr(audit_buf, 1,
432 #if IS_ENABLED(CONFIG_IPV6)
433 case sizeof(struct in6_addr): {
434 const struct in6_addr *addr6 = addr;
435 const struct in6_addr *mask6 = mask;
437 ret_val = netlbl_unlhsh_add_addr6(iface, addr6, mask6, secid);
438 if (audit_buf != NULL)
439 netlbl_af6list_audit_addr(audit_buf, 1,
449 atomic_inc(&netlabel_mgmt_protocount);
453 if (audit_buf != NULL) {
454 if (security_secid_to_secctx(secid,
457 audit_log_format(audit_buf, " sec_obj=%s", secctx);
458 security_release_secctx(secctx, secctx_len);
460 audit_log_format(audit_buf, " res=%u", ret_val == 0 ? 1 : 0);
461 audit_log_end(audit_buf);
467 * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry
468 * @net: network namespace
469 * @iface: interface entry
471 * @mask: IP address mask
472 * @audit_info: NetLabel audit information
475 * Remove an IP address entry from the unlabeled connection hash table.
476 * Returns zero on success, negative values on failure.
479 static int netlbl_unlhsh_remove_addr4(struct net *net,
480 struct netlbl_unlhsh_iface *iface,
481 const struct in_addr *addr,
482 const struct in_addr *mask,
483 struct netlbl_audit *audit_info)
485 struct netlbl_af4list *list_entry;
486 struct netlbl_unlhsh_addr4 *entry;
487 struct audit_buffer *audit_buf;
488 struct net_device *dev;
492 spin_lock(&netlbl_unlhsh_lock);
493 list_entry = netlbl_af4list_remove(addr->s_addr, mask->s_addr,
495 spin_unlock(&netlbl_unlhsh_lock);
496 if (list_entry != NULL)
497 entry = netlbl_unlhsh_addr4_entry(list_entry);
501 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL,
503 if (audit_buf != NULL) {
504 dev = dev_get_by_index(net, iface->ifindex);
505 netlbl_af4list_audit_addr(audit_buf, 1,
506 (dev != NULL ? dev->name : NULL),
507 addr->s_addr, mask->s_addr);
511 security_secid_to_secctx(entry->secid,
512 &secctx, &secctx_len) == 0) {
513 audit_log_format(audit_buf, " sec_obj=%s", secctx);
514 security_release_secctx(secctx, secctx_len);
516 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
517 audit_log_end(audit_buf);
523 kfree_rcu(entry, rcu);
527 #if IS_ENABLED(CONFIG_IPV6)
529 * netlbl_unlhsh_remove_addr6 - Remove an IPv6 address entry
530 * @net: network namespace
531 * @iface: interface entry
533 * @mask: IP address mask
534 * @audit_info: NetLabel audit information
537 * Remove an IP address entry from the unlabeled connection hash table.
538 * Returns zero on success, negative values on failure.
541 static int netlbl_unlhsh_remove_addr6(struct net *net,
542 struct netlbl_unlhsh_iface *iface,
543 const struct in6_addr *addr,
544 const struct in6_addr *mask,
545 struct netlbl_audit *audit_info)
547 struct netlbl_af6list *list_entry;
548 struct netlbl_unlhsh_addr6 *entry;
549 struct audit_buffer *audit_buf;
550 struct net_device *dev;
554 spin_lock(&netlbl_unlhsh_lock);
555 list_entry = netlbl_af6list_remove(addr, mask, &iface->addr6_list);
556 spin_unlock(&netlbl_unlhsh_lock);
557 if (list_entry != NULL)
558 entry = netlbl_unlhsh_addr6_entry(list_entry);
562 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL,
564 if (audit_buf != NULL) {
565 dev = dev_get_by_index(net, iface->ifindex);
566 netlbl_af6list_audit_addr(audit_buf, 1,
567 (dev != NULL ? dev->name : NULL),
572 security_secid_to_secctx(entry->secid,
573 &secctx, &secctx_len) == 0) {
574 audit_log_format(audit_buf, " sec_obj=%s", secctx);
575 security_release_secctx(secctx, secctx_len);
577 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
578 audit_log_end(audit_buf);
584 kfree_rcu(entry, rcu);
590 * netlbl_unlhsh_condremove_iface - Remove an interface entry
591 * @iface: the interface entry
594 * Remove an interface entry from the unlabeled connection hash table if it is
595 * empty. An interface entry is considered to be empty if there are no
596 * address entries assigned to it.
599 static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface *iface)
601 struct netlbl_af4list *iter4;
602 #if IS_ENABLED(CONFIG_IPV6)
603 struct netlbl_af6list *iter6;
606 spin_lock(&netlbl_unlhsh_lock);
607 netlbl_af4list_foreach_rcu(iter4, &iface->addr4_list)
608 goto unlhsh_condremove_failure;
609 #if IS_ENABLED(CONFIG_IPV6)
610 netlbl_af6list_foreach_rcu(iter6, &iface->addr6_list)
611 goto unlhsh_condremove_failure;
614 if (iface->ifindex > 0)
615 list_del_rcu(&iface->list);
617 RCU_INIT_POINTER(netlbl_unlhsh_def, NULL);
618 spin_unlock(&netlbl_unlhsh_lock);
620 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
623 unlhsh_condremove_failure:
624 spin_unlock(&netlbl_unlhsh_lock);
628 * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table
629 * @net: network namespace
630 * @dev_name: interface name
631 * @addr: IP address in network byte order
632 * @mask: address mask in network byte order
633 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
634 * @audit_info: NetLabel audit information
637 * Removes and existing entry from the unlabeled connection hash table.
638 * Returns zero on success, negative values on failure.
641 int netlbl_unlhsh_remove(struct net *net,
642 const char *dev_name,
646 struct netlbl_audit *audit_info)
649 struct net_device *dev;
650 struct netlbl_unlhsh_iface *iface;
652 if (addr_len != sizeof(struct in_addr) &&
653 addr_len != sizeof(struct in6_addr))
657 if (dev_name != NULL) {
658 dev = dev_get_by_name_rcu(net, dev_name);
661 goto unlhsh_remove_return;
663 iface = netlbl_unlhsh_search_iface(dev->ifindex);
665 iface = rcu_dereference(netlbl_unlhsh_def);
668 goto unlhsh_remove_return;
671 case sizeof(struct in_addr):
672 ret_val = netlbl_unlhsh_remove_addr4(net,
676 #if IS_ENABLED(CONFIG_IPV6)
677 case sizeof(struct in6_addr):
678 ret_val = netlbl_unlhsh_remove_addr6(net,
687 netlbl_unlhsh_condremove_iface(iface);
688 atomic_dec(&netlabel_mgmt_protocount);
691 unlhsh_remove_return:
697 * General Helper Functions
701 * netlbl_unlhsh_netdev_handler - Network device notification handler
702 * @this: notifier block
704 * @ptr: the netdevice notifier info (cast to void)
707 * Handle network device events, although at present all we care about is a
708 * network device going away. In the case of a device going away we clear any
709 * related entries from the unlabeled connection hash table.
712 static int netlbl_unlhsh_netdev_handler(struct notifier_block *this,
713 unsigned long event, void *ptr)
715 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
716 struct netlbl_unlhsh_iface *iface = NULL;
718 if (!net_eq(dev_net(dev), &init_net))
721 /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */
722 if (event == NETDEV_DOWN) {
723 spin_lock(&netlbl_unlhsh_lock);
724 iface = netlbl_unlhsh_search_iface(dev->ifindex);
725 if (iface != NULL && iface->valid) {
727 list_del_rcu(&iface->list);
730 spin_unlock(&netlbl_unlhsh_lock);
734 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
740 * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
741 * @value: desired value
742 * @audit_info: NetLabel audit information
745 * Set the value of the unlabeled accept flag to @value.
748 static void netlbl_unlabel_acceptflg_set(u8 value,
749 struct netlbl_audit *audit_info)
751 struct audit_buffer *audit_buf;
754 old_val = netlabel_unlabel_acceptflg;
755 netlabel_unlabel_acceptflg = value;
756 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW,
758 if (audit_buf != NULL) {
759 audit_log_format(audit_buf,
760 " unlbl_accept=%u old=%u", value, old_val);
761 audit_log_end(audit_buf);
766 * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information
767 * @info: the Generic NETLINK info block
768 * @addr: the IP address
769 * @mask: the IP address mask
770 * @len: the address length
773 * Examine the Generic NETLINK message and extract the IP address information.
774 * Returns zero on success, negative values on failure.
777 static int netlbl_unlabel_addrinfo_get(struct genl_info *info,
784 if (info->attrs[NLBL_UNLABEL_A_IPV4ADDR]) {
785 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
786 if (addr_len != sizeof(struct in_addr) &&
787 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV4MASK]))
790 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
791 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4MASK]);
793 } else if (info->attrs[NLBL_UNLABEL_A_IPV6ADDR]) {
794 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
795 if (addr_len != sizeof(struct in6_addr) &&
796 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV6MASK]))
799 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
800 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6MASK]);
808 * NetLabel Command Handlers
812 * netlbl_unlabel_accept - Handle an ACCEPT message
813 * @skb: the NETLINK buffer
814 * @info: the Generic NETLINK info block
817 * Process a user generated ACCEPT message and set the accept flag accordingly.
818 * Returns zero on success, negative values on failure.
821 static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info)
824 struct netlbl_audit audit_info;
826 if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) {
827 value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]);
828 if (value == 1 || value == 0) {
829 netlbl_netlink_auditinfo(skb, &audit_info);
830 netlbl_unlabel_acceptflg_set(value, &audit_info);
839 * netlbl_unlabel_list - Handle a LIST message
840 * @skb: the NETLINK buffer
841 * @info: the Generic NETLINK info block
844 * Process a user generated LIST message and respond with the current status.
845 * Returns zero on success, negative values on failure.
848 static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
850 int ret_val = -EINVAL;
851 struct sk_buff *ans_skb;
854 ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
857 data = genlmsg_put_reply(ans_skb, info, &netlbl_unlabel_gnl_family,
858 0, NLBL_UNLABEL_C_LIST);
864 ret_val = nla_put_u8(ans_skb,
865 NLBL_UNLABEL_A_ACPTFLG,
866 netlabel_unlabel_acceptflg);
870 genlmsg_end(ans_skb, data);
871 return genlmsg_reply(ans_skb, info);
879 * netlbl_unlabel_staticadd - Handle a STATICADD message
880 * @skb: the NETLINK buffer
881 * @info: the Generic NETLINK info block
884 * Process a user generated STATICADD message and add a new unlabeled
885 * connection entry to the hash table. Returns zero on success, negative
889 static int netlbl_unlabel_staticadd(struct sk_buff *skb,
890 struct genl_info *info)
898 struct netlbl_audit audit_info;
900 /* Don't allow users to add both IPv4 and IPv6 addresses for a
901 * single entry. However, allow users to create two entries, one each
902 * for IPv4 and IPv4, with the same LSM security context which should
903 * achieve the same result. */
904 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
905 !info->attrs[NLBL_UNLABEL_A_IFACE] ||
906 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
907 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
908 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
909 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
912 netlbl_netlink_auditinfo(skb, &audit_info);
914 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
917 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
918 ret_val = security_secctx_to_secid(
919 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
920 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
925 return netlbl_unlhsh_add(&init_net,
926 dev_name, addr, mask, addr_len, secid,
931 * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message
932 * @skb: the NETLINK buffer
933 * @info: the Generic NETLINK info block
936 * Process a user generated STATICADDDEF message and add a new default
937 * unlabeled connection entry. Returns zero on success, negative values on
941 static int netlbl_unlabel_staticadddef(struct sk_buff *skb,
942 struct genl_info *info)
949 struct netlbl_audit audit_info;
951 /* Don't allow users to add both IPv4 and IPv6 addresses for a
952 * single entry. However, allow users to create two entries, one each
953 * for IPv4 and IPv6, with the same LSM security context which should
954 * achieve the same result. */
955 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
956 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
957 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
958 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
959 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
962 netlbl_netlink_auditinfo(skb, &audit_info);
964 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
967 ret_val = security_secctx_to_secid(
968 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
969 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
974 return netlbl_unlhsh_add(&init_net,
975 NULL, addr, mask, addr_len, secid,
980 * netlbl_unlabel_staticremove - Handle a STATICREMOVE message
981 * @skb: the NETLINK buffer
982 * @info: the Generic NETLINK info block
985 * Process a user generated STATICREMOVE message and remove the specified
986 * unlabeled connection entry. Returns zero on success, negative values on
990 static int netlbl_unlabel_staticremove(struct sk_buff *skb,
991 struct genl_info *info)
998 struct netlbl_audit audit_info;
1000 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1001 * IPv4 and IPv6 in the same entry. */
1002 if (!info->attrs[NLBL_UNLABEL_A_IFACE] ||
1003 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
1004 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
1005 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
1006 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
1009 netlbl_netlink_auditinfo(skb, &audit_info);
1011 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
1014 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
1016 return netlbl_unlhsh_remove(&init_net,
1017 dev_name, addr, mask, addr_len,
1022 * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message
1023 * @skb: the NETLINK buffer
1024 * @info: the Generic NETLINK info block
1027 * Process a user generated STATICREMOVEDEF message and remove the default
1028 * unlabeled connection entry. Returns zero on success, negative values on
1032 static int netlbl_unlabel_staticremovedef(struct sk_buff *skb,
1033 struct genl_info *info)
1039 struct netlbl_audit audit_info;
1041 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1042 * IPv4 and IPv6 in the same entry. */
1043 if (!((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
1044 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
1045 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
1046 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
1049 netlbl_netlink_auditinfo(skb, &audit_info);
1051 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
1055 return netlbl_unlhsh_remove(&init_net,
1056 NULL, addr, mask, addr_len,
1062 * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF]
1063 * @cmd: command/message
1064 * @iface: the interface entry
1065 * @addr4: the IPv4 address entry
1066 * @addr6: the IPv6 address entry
1067 * @arg: the netlbl_unlhsh_walk_arg structure
1070 * This function is designed to be used to generate a response for a
1071 * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6
1072 * can be specified, not both, the other unspecified entry should be set to
1073 * NULL by the caller. Returns the size of the message on success, negative
1074 * values on failure.
1077 static int netlbl_unlabel_staticlist_gen(u32 cmd,
1078 const struct netlbl_unlhsh_iface *iface,
1079 const struct netlbl_unlhsh_addr4 *addr4,
1080 const struct netlbl_unlhsh_addr6 *addr6,
1083 int ret_val = -ENOMEM;
1084 struct netlbl_unlhsh_walk_arg *cb_arg = arg;
1085 struct net_device *dev;
1091 data = genlmsg_put(cb_arg->skb, NETLINK_CB(cb_arg->nl_cb->skb).portid,
1092 cb_arg->seq, &netlbl_unlabel_gnl_family,
1095 goto list_cb_failure;
1097 if (iface->ifindex > 0) {
1098 dev = dev_get_by_index(&init_net, iface->ifindex);
1101 goto list_cb_failure;
1103 ret_val = nla_put_string(cb_arg->skb,
1104 NLBL_UNLABEL_A_IFACE, dev->name);
1107 goto list_cb_failure;
1111 struct in_addr addr_struct;
1113 addr_struct.s_addr = addr4->list.addr;
1114 ret_val = nla_put_in_addr(cb_arg->skb,
1115 NLBL_UNLABEL_A_IPV4ADDR,
1116 addr_struct.s_addr);
1118 goto list_cb_failure;
1120 addr_struct.s_addr = addr4->list.mask;
1121 ret_val = nla_put_in_addr(cb_arg->skb,
1122 NLBL_UNLABEL_A_IPV4MASK,
1123 addr_struct.s_addr);
1125 goto list_cb_failure;
1127 secid = addr4->secid;
1129 ret_val = nla_put_in6_addr(cb_arg->skb,
1130 NLBL_UNLABEL_A_IPV6ADDR,
1133 goto list_cb_failure;
1135 ret_val = nla_put_in6_addr(cb_arg->skb,
1136 NLBL_UNLABEL_A_IPV6MASK,
1139 goto list_cb_failure;
1141 secid = addr6->secid;
1144 ret_val = security_secid_to_secctx(secid, &secctx, &secctx_len);
1146 goto list_cb_failure;
1147 ret_val = nla_put(cb_arg->skb,
1148 NLBL_UNLABEL_A_SECCTX,
1151 security_release_secctx(secctx, secctx_len);
1153 goto list_cb_failure;
1156 genlmsg_end(cb_arg->skb, data);
1160 genlmsg_cancel(cb_arg->skb, data);
1165 * netlbl_unlabel_staticlist - Handle a STATICLIST message
1166 * @skb: the NETLINK buffer
1167 * @cb: the NETLINK callback
1170 * Process a user generated STATICLIST message and dump the unlabeled
1171 * connection hash table in a form suitable for use in a kernel generated
1172 * STATICLIST message. Returns the length of @skb.
1175 static int netlbl_unlabel_staticlist(struct sk_buff *skb,
1176 struct netlink_callback *cb)
1178 struct netlbl_unlhsh_walk_arg cb_arg;
1179 u32 skip_bkt = cb->args[0];
1180 u32 skip_chain = cb->args[1];
1182 u32 iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0;
1183 struct netlbl_unlhsh_iface *iface;
1184 struct list_head *iter_list;
1185 struct netlbl_af4list *addr4;
1186 #if IS_ENABLED(CONFIG_IPV6)
1187 struct netlbl_af6list *addr6;
1192 cb_arg.seq = cb->nlh->nlmsg_seq;
1195 for (iter_bkt = skip_bkt;
1196 iter_bkt < rcu_dereference(netlbl_unlhsh)->size;
1197 iter_bkt++, iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0) {
1198 iter_list = &rcu_dereference(netlbl_unlhsh)->tbl[iter_bkt];
1199 list_for_each_entry_rcu(iface, iter_list, list) {
1200 if (!iface->valid ||
1201 iter_chain++ < skip_chain)
1203 netlbl_af4list_foreach_rcu(addr4,
1204 &iface->addr4_list) {
1205 if (iter_addr4++ < cb->args[2])
1207 if (netlbl_unlabel_staticlist_gen(
1208 NLBL_UNLABEL_C_STATICLIST,
1210 netlbl_unlhsh_addr4_entry(addr4),
1215 goto unlabel_staticlist_return;
1218 #if IS_ENABLED(CONFIG_IPV6)
1219 netlbl_af6list_foreach_rcu(addr6,
1220 &iface->addr6_list) {
1221 if (iter_addr6++ < cb->args[3])
1223 if (netlbl_unlabel_staticlist_gen(
1224 NLBL_UNLABEL_C_STATICLIST,
1227 netlbl_unlhsh_addr6_entry(addr6),
1231 goto unlabel_staticlist_return;
1238 unlabel_staticlist_return:
1240 cb->args[0] = iter_bkt;
1241 cb->args[1] = iter_chain;
1242 cb->args[2] = iter_addr4;
1243 cb->args[3] = iter_addr6;
1248 * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message
1249 * @skb: the NETLINK buffer
1250 * @cb: the NETLINK callback
1253 * Process a user generated STATICLISTDEF message and dump the default
1254 * unlabeled connection entry in a form suitable for use in a kernel generated
1255 * STATICLISTDEF message. Returns the length of @skb.
1258 static int netlbl_unlabel_staticlistdef(struct sk_buff *skb,
1259 struct netlink_callback *cb)
1261 struct netlbl_unlhsh_walk_arg cb_arg;
1262 struct netlbl_unlhsh_iface *iface;
1263 u32 iter_addr4 = 0, iter_addr6 = 0;
1264 struct netlbl_af4list *addr4;
1265 #if IS_ENABLED(CONFIG_IPV6)
1266 struct netlbl_af6list *addr6;
1271 cb_arg.seq = cb->nlh->nlmsg_seq;
1274 iface = rcu_dereference(netlbl_unlhsh_def);
1275 if (iface == NULL || !iface->valid)
1276 goto unlabel_staticlistdef_return;
1278 netlbl_af4list_foreach_rcu(addr4, &iface->addr4_list) {
1279 if (iter_addr4++ < cb->args[0])
1281 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
1283 netlbl_unlhsh_addr4_entry(addr4),
1287 goto unlabel_staticlistdef_return;
1290 #if IS_ENABLED(CONFIG_IPV6)
1291 netlbl_af6list_foreach_rcu(addr6, &iface->addr6_list) {
1292 if (iter_addr6++ < cb->args[1])
1294 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
1297 netlbl_unlhsh_addr6_entry(addr6),
1300 goto unlabel_staticlistdef_return;
1305 unlabel_staticlistdef_return:
1307 cb->args[0] = iter_addr4;
1308 cb->args[1] = iter_addr6;
1313 * NetLabel Generic NETLINK Command Definitions
1316 static const struct genl_ops netlbl_unlabel_genl_ops[] = {
1318 .cmd = NLBL_UNLABEL_C_STATICADD,
1319 .flags = GENL_ADMIN_PERM,
1320 .policy = netlbl_unlabel_genl_policy,
1321 .doit = netlbl_unlabel_staticadd,
1325 .cmd = NLBL_UNLABEL_C_STATICREMOVE,
1326 .flags = GENL_ADMIN_PERM,
1327 .policy = netlbl_unlabel_genl_policy,
1328 .doit = netlbl_unlabel_staticremove,
1332 .cmd = NLBL_UNLABEL_C_STATICLIST,
1334 .policy = netlbl_unlabel_genl_policy,
1336 .dumpit = netlbl_unlabel_staticlist,
1339 .cmd = NLBL_UNLABEL_C_STATICADDDEF,
1340 .flags = GENL_ADMIN_PERM,
1341 .policy = netlbl_unlabel_genl_policy,
1342 .doit = netlbl_unlabel_staticadddef,
1346 .cmd = NLBL_UNLABEL_C_STATICREMOVEDEF,
1347 .flags = GENL_ADMIN_PERM,
1348 .policy = netlbl_unlabel_genl_policy,
1349 .doit = netlbl_unlabel_staticremovedef,
1353 .cmd = NLBL_UNLABEL_C_STATICLISTDEF,
1355 .policy = netlbl_unlabel_genl_policy,
1357 .dumpit = netlbl_unlabel_staticlistdef,
1360 .cmd = NLBL_UNLABEL_C_ACCEPT,
1361 .flags = GENL_ADMIN_PERM,
1362 .policy = netlbl_unlabel_genl_policy,
1363 .doit = netlbl_unlabel_accept,
1367 .cmd = NLBL_UNLABEL_C_LIST,
1369 .policy = netlbl_unlabel_genl_policy,
1370 .doit = netlbl_unlabel_list,
1375 static struct genl_family netlbl_unlabel_gnl_family __ro_after_init = {
1377 .name = NETLBL_NLTYPE_UNLABELED_NAME,
1378 .version = NETLBL_PROTO_VERSION,
1379 .maxattr = NLBL_UNLABEL_A_MAX,
1380 .module = THIS_MODULE,
1381 .ops = netlbl_unlabel_genl_ops,
1382 .n_ops = ARRAY_SIZE(netlbl_unlabel_genl_ops),
1386 * NetLabel Generic NETLINK Protocol Functions
1390 * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
1393 * Register the unlabeled packet NetLabel component with the Generic NETLINK
1394 * mechanism. Returns zero on success, negative values on failure.
1397 int __init netlbl_unlabel_genl_init(void)
1399 return genl_register_family(&netlbl_unlabel_gnl_family);
1403 * NetLabel KAPI Hooks
1406 static struct notifier_block netlbl_unlhsh_netdev_notifier = {
1407 .notifier_call = netlbl_unlhsh_netdev_handler,
1411 * netlbl_unlabel_init - Initialize the unlabeled connection hash table
1412 * @size: the number of bits to use for the hash buckets
1415 * Initializes the unlabeled connection hash table and registers a network
1416 * device notification handler. This function should only be called by the
1417 * NetLabel subsystem itself during initialization. Returns zero on success,
1418 * non-zero values on error.
1421 int __init netlbl_unlabel_init(u32 size)
1424 struct netlbl_unlhsh_tbl *hsh_tbl;
1429 hsh_tbl = kmalloc(sizeof(*hsh_tbl), GFP_KERNEL);
1430 if (hsh_tbl == NULL)
1432 hsh_tbl->size = 1 << size;
1433 hsh_tbl->tbl = kcalloc(hsh_tbl->size,
1434 sizeof(struct list_head),
1436 if (hsh_tbl->tbl == NULL) {
1440 for (iter = 0; iter < hsh_tbl->size; iter++)
1441 INIT_LIST_HEAD(&hsh_tbl->tbl[iter]);
1443 spin_lock(&netlbl_unlhsh_lock);
1444 rcu_assign_pointer(netlbl_unlhsh, hsh_tbl);
1445 spin_unlock(&netlbl_unlhsh_lock);
1447 register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier);
1453 * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
1455 * @family: protocol family
1456 * @secattr: the security attributes
1459 * Determine the security attributes, if any, for an unlabled packet and return
1460 * them in @secattr. Returns zero on success and negative values on failure.
1463 int netlbl_unlabel_getattr(const struct sk_buff *skb,
1465 struct netlbl_lsm_secattr *secattr)
1467 struct netlbl_unlhsh_iface *iface;
1470 iface = netlbl_unlhsh_search_iface(skb->skb_iif);
1472 iface = rcu_dereference(netlbl_unlhsh_def);
1473 if (iface == NULL || !iface->valid)
1474 goto unlabel_getattr_nolabel;
1476 #if IS_ENABLED(CONFIG_IPV6)
1477 /* When resolving a fallback label, check the sk_buff version as
1478 * it is possible (e.g. SCTP) to have family = PF_INET6 while
1479 * receiving ip_hdr(skb)->version = 4.
1481 if (family == PF_INET6 && ip_hdr(skb)->version == 4)
1488 struct netlbl_af4list *addr4;
1491 addr4 = netlbl_af4list_search(hdr4->saddr,
1492 &iface->addr4_list);
1494 goto unlabel_getattr_nolabel;
1495 secattr->attr.secid = netlbl_unlhsh_addr4_entry(addr4)->secid;
1498 #if IS_ENABLED(CONFIG_IPV6)
1500 struct ipv6hdr *hdr6;
1501 struct netlbl_af6list *addr6;
1503 hdr6 = ipv6_hdr(skb);
1504 addr6 = netlbl_af6list_search(&hdr6->saddr,
1505 &iface->addr6_list);
1507 goto unlabel_getattr_nolabel;
1508 secattr->attr.secid = netlbl_unlhsh_addr6_entry(addr6)->secid;
1513 goto unlabel_getattr_nolabel;
1517 secattr->flags |= NETLBL_SECATTR_SECID;
1518 secattr->type = NETLBL_NLTYPE_UNLABELED;
1521 unlabel_getattr_nolabel:
1523 if (netlabel_unlabel_acceptflg == 0)
1525 secattr->type = NETLBL_NLTYPE_UNLABELED;
1530 * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
1533 * Set the default NetLabel configuration to allow incoming unlabeled packets
1534 * and to send unlabeled network traffic by default.
1537 int __init netlbl_unlabel_defconf(void)
1540 struct netlbl_dom_map *entry;
1541 struct netlbl_audit audit_info;
1543 /* Only the kernel is allowed to call this function and the only time
1544 * it is called is at bootup before the audit subsystem is reporting
1545 * messages so don't worry to much about these values. */
1546 security_task_getsecid(current, &audit_info.secid);
1547 audit_info.loginuid = GLOBAL_ROOT_UID;
1548 audit_info.sessionid = 0;
1550 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1553 entry->family = AF_UNSPEC;
1554 entry->def.type = NETLBL_NLTYPE_UNLABELED;
1555 ret_val = netlbl_domhsh_add_default(entry, &audit_info);
1559 netlbl_unlabel_acceptflg_set(1, &audit_info);