Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 2 | /* |
| 3 | * NetLabel Unlabeled Support |
| 4 | * |
| 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. |
| 8 | * |
Paul Moore | 82c21bf | 2011-08-01 11:10:33 +0000 | [diff] [blame] | 9 | * Author: Paul Moore <paul@paul-moore.com> |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /* |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 13 | * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - 2008 |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <linux/types.h> |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 17 | #include <linux/rcupdate.h> |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 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> |
Paul Moore | de64688 | 2006-11-17 17:38:55 -0500 | [diff] [blame] | 23 | #include <linux/audit.h> |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 24 | #include <linux/in.h> |
| 25 | #include <linux/in6.h> |
| 26 | #include <linux/ip.h> |
| 27 | #include <linux/ipv6.h> |
| 28 | #include <linux/notifier.h> |
| 29 | #include <linux/netdevice.h> |
| 30 | #include <linux/security.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 32 | #include <net/sock.h> |
| 33 | #include <net/netlink.h> |
| 34 | #include <net/genetlink.h> |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 35 | #include <net/ip.h> |
| 36 | #include <net/ipv6.h> |
| 37 | #include <net/net_namespace.h> |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 38 | #include <net/netlabel.h> |
| 39 | #include <asm/bug.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 40 | #include <linux/atomic.h> |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 41 | |
| 42 | #include "netlabel_user.h" |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 43 | #include "netlabel_addrlist.h" |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 44 | #include "netlabel_domainhash.h" |
| 45 | #include "netlabel_unlabeled.h" |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 46 | #include "netlabel_mgmt.h" |
| 47 | |
| 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" */ |
| 51 | |
| 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. |
| 61 | */ |
| 62 | struct netlbl_unlhsh_tbl { |
| 63 | struct list_head *tbl; |
| 64 | u32 size; |
| 65 | }; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 66 | #define netlbl_unlhsh_addr4_entry(iter) \ |
| 67 | container_of(iter, struct netlbl_unlhsh_addr4, list) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 68 | struct netlbl_unlhsh_addr4 { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 69 | u32 secid; |
| 70 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 71 | struct netlbl_af4list list; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 72 | struct rcu_head rcu; |
| 73 | }; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 74 | #define netlbl_unlhsh_addr6_entry(iter) \ |
| 75 | container_of(iter, struct netlbl_unlhsh_addr6, list) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 76 | struct netlbl_unlhsh_addr6 { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 77 | u32 secid; |
| 78 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 79 | struct netlbl_af6list list; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 80 | struct rcu_head rcu; |
| 81 | }; |
| 82 | struct netlbl_unlhsh_iface { |
| 83 | int ifindex; |
| 84 | struct list_head addr4_list; |
| 85 | struct list_head addr6_list; |
| 86 | |
| 87 | u32 valid; |
| 88 | struct list_head list; |
| 89 | struct rcu_head rcu; |
| 90 | }; |
| 91 | |
| 92 | /* Argument struct for netlbl_unlhsh_walk() */ |
| 93 | struct netlbl_unlhsh_walk_arg { |
| 94 | struct netlink_callback *nl_cb; |
| 95 | struct sk_buff *skb; |
| 96 | u32 seq; |
| 97 | }; |
| 98 | |
| 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); |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 103 | #define netlbl_unlhsh_rcu_deref(p) \ |
Michal Hocko | d8bf4ca | 2011-07-08 14:39:41 +0200 | [diff] [blame] | 104 | rcu_dereference_check(p, lockdep_is_held(&netlbl_unlhsh_lock)) |
Huw Davies | 96a8f7f | 2016-06-27 15:02:45 -0400 | [diff] [blame] | 105 | static struct netlbl_unlhsh_tbl __rcu *netlbl_unlhsh; |
| 106 | static struct netlbl_unlhsh_iface __rcu *netlbl_unlhsh_def; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 107 | |
| 108 | /* Accept unlabeled packets flag */ |
Wei Tang | 795f351 | 2016-03-07 14:25:10 +0800 | [diff] [blame] | 109 | static u8 netlabel_unlabel_acceptflg; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 110 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 111 | /* NetLabel Generic NETLINK unlabeled family */ |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 112 | static struct genl_family netlbl_unlabel_gnl_family; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 113 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 114 | /* NetLabel Netlink attribute policy */ |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 115 | static const struct nla_policy netlbl_unlabel_genl_policy[NLBL_UNLABEL_A_MAX + 1] = { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 116 | [NLBL_UNLABEL_A_ACPTFLG] = { .type = NLA_U8 }, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 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 } |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 128 | }; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 129 | |
| 130 | /* |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 131 | * Unlabeled Connection Hash Table Functions |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 132 | */ |
| 133 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 134 | /** |
| 135 | * netlbl_unlhsh_free_iface - Frees an interface entry from the hash table |
| 136 | * @entry: the entry's RCU field |
| 137 | * |
| 138 | * Description: |
| 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. |
| 145 | * |
| 146 | */ |
| 147 | static void netlbl_unlhsh_free_iface(struct rcu_head *entry) |
| 148 | { |
| 149 | struct netlbl_unlhsh_iface *iface; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 150 | struct netlbl_af4list *iter4; |
| 151 | struct netlbl_af4list *tmp4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 152 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 153 | struct netlbl_af6list *iter6; |
| 154 | struct netlbl_af6list *tmp6; |
| 155 | #endif /* IPv6 */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 156 | |
| 157 | iface = container_of(entry, struct netlbl_unlhsh_iface, rcu); |
| 158 | |
| 159 | /* no need for locks here since we are the only one with access to this |
| 160 | * structure */ |
| 161 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 162 | netlbl_af4list_foreach_safe(iter4, tmp4, &iface->addr4_list) { |
| 163 | netlbl_af4list_remove_entry(iter4); |
| 164 | kfree(netlbl_unlhsh_addr4_entry(iter4)); |
| 165 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 166 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 167 | netlbl_af6list_foreach_safe(iter6, tmp6, &iface->addr6_list) { |
| 168 | netlbl_af6list_remove_entry(iter6); |
| 169 | kfree(netlbl_unlhsh_addr6_entry(iter6)); |
| 170 | } |
| 171 | #endif /* IPv6 */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 172 | kfree(iface); |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * netlbl_unlhsh_hash - Hashing function for the hash table |
| 177 | * @ifindex: the network interface/device to hash |
| 178 | * |
| 179 | * Description: |
| 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 |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 182 | * ensuring that the hash table is protected with either a RCU read lock or |
| 183 | * the hash table lock. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 184 | * |
| 185 | */ |
| 186 | static u32 netlbl_unlhsh_hash(int ifindex) |
| 187 | { |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 188 | return ifindex & (netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->size - 1); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | /** |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 192 | * netlbl_unlhsh_search_iface - Search for a matching interface entry |
| 193 | * @ifindex: the network interface |
| 194 | * |
| 195 | * Description: |
| 196 | * Searches the unlabeled connection hash table and returns a pointer to the |
| 197 | * interface entry which matches @ifindex, otherwise NULL is returned. The |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 198 | * caller is responsible for ensuring that the hash table is protected with |
| 199 | * either a RCU read lock or the hash table lock. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 200 | * |
| 201 | */ |
| 202 | static struct netlbl_unlhsh_iface *netlbl_unlhsh_search_iface(int ifindex) |
| 203 | { |
| 204 | u32 bkt; |
Paul Moore | 5619670 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 205 | struct list_head *bkt_list; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 206 | struct netlbl_unlhsh_iface *iter; |
| 207 | |
| 208 | bkt = netlbl_unlhsh_hash(ifindex); |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 209 | bkt_list = &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt]; |
Madhuparna Bhowmik | 8c70c3d | 2020-02-18 23:47:18 +0530 | [diff] [blame] | 210 | list_for_each_entry_rcu(iter, bkt_list, list, |
| 211 | lockdep_is_held(&netlbl_unlhsh_lock)) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 212 | if (iter->valid && iter->ifindex == ifindex) |
| 213 | return iter; |
| 214 | |
| 215 | return NULL; |
| 216 | } |
| 217 | |
| 218 | /** |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 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 |
| 224 | * |
| 225 | * Description: |
| 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 |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 228 | * a negative value is returned. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 229 | * |
| 230 | */ |
| 231 | static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface *iface, |
| 232 | const struct in_addr *addr, |
| 233 | const struct in_addr *mask, |
| 234 | u32 secid) |
| 235 | { |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 236 | int ret_val; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 237 | struct netlbl_unlhsh_addr4 *entry; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 238 | |
| 239 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
| 240 | if (entry == NULL) |
| 241 | return -ENOMEM; |
| 242 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 243 | entry->list.addr = addr->s_addr & mask->s_addr; |
| 244 | entry->list.mask = mask->s_addr; |
| 245 | entry->list.valid = 1; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 246 | entry->secid = secid; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 247 | |
| 248 | spin_lock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 249 | ret_val = netlbl_af4list_add(&entry->list, &iface->addr4_list); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 250 | spin_unlock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 251 | |
| 252 | if (ret_val != 0) |
| 253 | kfree(entry); |
| 254 | return ret_val; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 255 | } |
| 256 | |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 257 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 258 | /** |
| 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 |
| 264 | * |
| 265 | * Description: |
| 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 |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 268 | * a negative value is returned. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 269 | * |
| 270 | */ |
| 271 | static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface *iface, |
| 272 | const struct in6_addr *addr, |
| 273 | const struct in6_addr *mask, |
| 274 | u32 secid) |
| 275 | { |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 276 | int ret_val; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 277 | struct netlbl_unlhsh_addr6 *entry; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 278 | |
| 279 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
| 280 | if (entry == NULL) |
| 281 | return -ENOMEM; |
| 282 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 283 | entry->list.addr = *addr; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 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]; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 288 | entry->list.mask = *mask; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 289 | entry->list.valid = 1; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 290 | entry->secid = secid; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 291 | |
| 292 | spin_lock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 293 | ret_val = netlbl_af6list_add(&entry->list, &iface->addr6_list); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 294 | spin_unlock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 295 | |
| 296 | if (ret_val != 0) |
| 297 | kfree(entry); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 298 | return 0; |
| 299 | } |
| 300 | #endif /* IPv6 */ |
| 301 | |
| 302 | /** |
| 303 | * netlbl_unlhsh_add_iface - Adds a new interface entry to the hash table |
| 304 | * @ifindex: network interface |
| 305 | * |
| 306 | * Description: |
| 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 |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 309 | * is returned. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 310 | * |
| 311 | */ |
| 312 | static struct netlbl_unlhsh_iface *netlbl_unlhsh_add_iface(int ifindex) |
| 313 | { |
| 314 | u32 bkt; |
| 315 | struct netlbl_unlhsh_iface *iface; |
| 316 | |
| 317 | iface = kzalloc(sizeof(*iface), GFP_ATOMIC); |
| 318 | if (iface == NULL) |
| 319 | return NULL; |
| 320 | |
| 321 | iface->ifindex = ifindex; |
| 322 | INIT_LIST_HEAD(&iface->addr4_list); |
| 323 | INIT_LIST_HEAD(&iface->addr6_list); |
| 324 | iface->valid = 1; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 325 | |
| 326 | spin_lock(&netlbl_unlhsh_lock); |
| 327 | if (ifindex > 0) { |
| 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, |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 332 | &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt]); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 333 | } else { |
| 334 | INIT_LIST_HEAD(&iface->list); |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 335 | if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def) != NULL) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 336 | goto add_iface_failure; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 337 | rcu_assign_pointer(netlbl_unlhsh_def, iface); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 338 | } |
| 339 | spin_unlock(&netlbl_unlhsh_lock); |
| 340 | |
| 341 | return iface; |
| 342 | |
| 343 | add_iface_failure: |
| 344 | spin_unlock(&netlbl_unlhsh_lock); |
| 345 | kfree(iface); |
| 346 | return NULL; |
| 347 | } |
| 348 | |
| 349 | /** |
| 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 |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 357 | * @audit_info: NetLabel audit information |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 358 | * |
| 359 | * Description: |
| 360 | * Adds a new entry to the unlabeled connection hash table. Returns zero on |
| 361 | * success, negative values on failure. |
| 362 | * |
| 363 | */ |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 364 | int netlbl_unlhsh_add(struct net *net, |
| 365 | const char *dev_name, |
| 366 | const void *addr, |
| 367 | const void *mask, |
| 368 | u32 addr_len, |
| 369 | u32 secid, |
| 370 | struct netlbl_audit *audit_info) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 371 | { |
| 372 | int ret_val; |
| 373 | int ifindex; |
| 374 | struct net_device *dev; |
| 375 | struct netlbl_unlhsh_iface *iface; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 376 | struct audit_buffer *audit_buf = NULL; |
| 377 | char *secctx = NULL; |
| 378 | u32 secctx_len; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 379 | |
| 380 | if (addr_len != sizeof(struct in_addr) && |
| 381 | addr_len != sizeof(struct in6_addr)) |
| 382 | return -EINVAL; |
| 383 | |
| 384 | rcu_read_lock(); |
| 385 | if (dev_name != NULL) { |
Eric Dumazet | 122ec6f | 2009-11-05 20:53:47 -0800 | [diff] [blame] | 386 | dev = dev_get_by_name_rcu(net, dev_name); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 387 | if (dev == NULL) { |
| 388 | ret_val = -ENODEV; |
| 389 | goto unlhsh_add_return; |
| 390 | } |
| 391 | ifindex = dev->ifindex; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 392 | iface = netlbl_unlhsh_search_iface(ifindex); |
| 393 | } else { |
| 394 | ifindex = 0; |
| 395 | iface = rcu_dereference(netlbl_unlhsh_def); |
| 396 | } |
| 397 | if (iface == NULL) { |
| 398 | iface = netlbl_unlhsh_add_iface(ifindex); |
| 399 | if (iface == NULL) { |
| 400 | ret_val = -ENOMEM; |
| 401 | goto unlhsh_add_return; |
| 402 | } |
| 403 | } |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 404 | audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD, |
| 405 | audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 406 | switch (addr_len) { |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 407 | case sizeof(struct in_addr): { |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 408 | const struct in_addr *addr4 = addr; |
| 409 | const struct in_addr *mask4 = mask; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 410 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 411 | ret_val = netlbl_unlhsh_add_addr4(iface, addr4, mask4, secid); |
| 412 | if (audit_buf != NULL) |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 413 | netlbl_af4list_audit_addr(audit_buf, 1, |
| 414 | dev_name, |
| 415 | addr4->s_addr, |
| 416 | mask4->s_addr); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 417 | break; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 418 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 419 | #if IS_ENABLED(CONFIG_IPV6) |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 420 | case sizeof(struct in6_addr): { |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 421 | const struct in6_addr *addr6 = addr; |
| 422 | const struct in6_addr *mask6 = mask; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 423 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 424 | ret_val = netlbl_unlhsh_add_addr6(iface, addr6, mask6, secid); |
| 425 | if (audit_buf != NULL) |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 426 | netlbl_af6list_audit_addr(audit_buf, 1, |
| 427 | dev_name, |
| 428 | addr6, mask6); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 429 | break; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 430 | } |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 431 | #endif /* IPv6 */ |
| 432 | default: |
| 433 | ret_val = -EINVAL; |
| 434 | } |
| 435 | if (ret_val == 0) |
| 436 | atomic_inc(&netlabel_mgmt_protocount); |
| 437 | |
| 438 | unlhsh_add_return: |
| 439 | rcu_read_unlock(); |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 440 | if (audit_buf != NULL) { |
| 441 | if (security_secid_to_secctx(secid, |
| 442 | &secctx, |
| 443 | &secctx_len) == 0) { |
| 444 | audit_log_format(audit_buf, " sec_obj=%s", secctx); |
| 445 | security_release_secctx(secctx, secctx_len); |
| 446 | } |
| 447 | audit_log_format(audit_buf, " res=%u", ret_val == 0 ? 1 : 0); |
| 448 | audit_log_end(audit_buf); |
| 449 | } |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 450 | return ret_val; |
| 451 | } |
| 452 | |
| 453 | /** |
| 454 | * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 455 | * @net: network namespace |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 456 | * @iface: interface entry |
| 457 | * @addr: IP address |
| 458 | * @mask: IP address mask |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 459 | * @audit_info: NetLabel audit information |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 460 | * |
| 461 | * Description: |
| 462 | * Remove an IP address entry from the unlabeled connection hash table. |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 463 | * Returns zero on success, negative values on failure. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 464 | * |
| 465 | */ |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 466 | static int netlbl_unlhsh_remove_addr4(struct net *net, |
| 467 | struct netlbl_unlhsh_iface *iface, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 468 | const struct in_addr *addr, |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 469 | const struct in_addr *mask, |
| 470 | struct netlbl_audit *audit_info) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 471 | { |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 472 | struct netlbl_af4list *list_entry; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 473 | struct netlbl_unlhsh_addr4 *entry; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 474 | struct audit_buffer *audit_buf; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 475 | struct net_device *dev; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 476 | char *secctx; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 477 | u32 secctx_len; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 478 | |
| 479 | spin_lock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 480 | list_entry = netlbl_af4list_remove(addr->s_addr, mask->s_addr, |
| 481 | &iface->addr4_list); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 482 | spin_unlock(&netlbl_unlhsh_lock); |
Paul Moore | d25830e | 2008-12-03 00:37:04 -0800 | [diff] [blame] | 483 | if (list_entry != NULL) |
| 484 | entry = netlbl_unlhsh_addr4_entry(list_entry); |
| 485 | else |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 486 | entry = NULL; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 487 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 488 | audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL, |
| 489 | audit_info); |
| 490 | if (audit_buf != NULL) { |
| 491 | dev = dev_get_by_index(net, iface->ifindex); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 492 | netlbl_af4list_audit_addr(audit_buf, 1, |
| 493 | (dev != NULL ? dev->name : NULL), |
| 494 | addr->s_addr, mask->s_addr); |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 495 | if (dev != NULL) |
| 496 | dev_put(dev); |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 497 | if (entry != NULL && |
| 498 | security_secid_to_secctx(entry->secid, |
| 499 | &secctx, &secctx_len) == 0) { |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 500 | audit_log_format(audit_buf, " sec_obj=%s", secctx); |
| 501 | security_release_secctx(secctx, secctx_len); |
| 502 | } |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 503 | audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0); |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 504 | audit_log_end(audit_buf); |
| 505 | } |
| 506 | |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 507 | if (entry == NULL) |
| 508 | return -ENOENT; |
| 509 | |
Lai Jiangshan | c3b4942 | 2011-03-18 12:03:56 +0800 | [diff] [blame] | 510 | kfree_rcu(entry, rcu); |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 511 | return 0; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 512 | } |
| 513 | |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 514 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 515 | /** |
| 516 | * netlbl_unlhsh_remove_addr6 - Remove an IPv6 address entry |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 517 | * @net: network namespace |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 518 | * @iface: interface entry |
| 519 | * @addr: IP address |
| 520 | * @mask: IP address mask |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 521 | * @audit_info: NetLabel audit information |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 522 | * |
| 523 | * Description: |
| 524 | * Remove an IP address entry from the unlabeled connection hash table. |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 525 | * Returns zero on success, negative values on failure. |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 526 | * |
| 527 | */ |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 528 | static int netlbl_unlhsh_remove_addr6(struct net *net, |
| 529 | struct netlbl_unlhsh_iface *iface, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 530 | const struct in6_addr *addr, |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 531 | const struct in6_addr *mask, |
| 532 | struct netlbl_audit *audit_info) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 533 | { |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 534 | struct netlbl_af6list *list_entry; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 535 | struct netlbl_unlhsh_addr6 *entry; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 536 | struct audit_buffer *audit_buf; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 537 | struct net_device *dev; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 538 | char *secctx; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 539 | u32 secctx_len; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 540 | |
| 541 | spin_lock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 542 | list_entry = netlbl_af6list_remove(addr, mask, &iface->addr6_list); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 543 | spin_unlock(&netlbl_unlhsh_lock); |
Paul Moore | d25830e | 2008-12-03 00:37:04 -0800 | [diff] [blame] | 544 | if (list_entry != NULL) |
| 545 | entry = netlbl_unlhsh_addr6_entry(list_entry); |
| 546 | else |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 547 | entry = NULL; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 548 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 549 | audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL, |
| 550 | audit_info); |
| 551 | if (audit_buf != NULL) { |
| 552 | dev = dev_get_by_index(net, iface->ifindex); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 553 | netlbl_af6list_audit_addr(audit_buf, 1, |
| 554 | (dev != NULL ? dev->name : NULL), |
| 555 | addr, mask); |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 556 | if (dev != NULL) |
| 557 | dev_put(dev); |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 558 | if (entry != NULL && |
| 559 | security_secid_to_secctx(entry->secid, |
| 560 | &secctx, &secctx_len) == 0) { |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 561 | audit_log_format(audit_buf, " sec_obj=%s", secctx); |
| 562 | security_release_secctx(secctx, secctx_len); |
| 563 | } |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 564 | audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0); |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 565 | audit_log_end(audit_buf); |
| 566 | } |
| 567 | |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 568 | if (entry == NULL) |
| 569 | return -ENOENT; |
| 570 | |
Lai Jiangshan | 6b26223 | 2011-03-18 12:04:50 +0800 | [diff] [blame] | 571 | kfree_rcu(entry, rcu); |
Paul Moore | ec8f237 | 2008-12-11 21:31:50 -0800 | [diff] [blame] | 572 | return 0; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 573 | } |
| 574 | #endif /* IPv6 */ |
| 575 | |
| 576 | /** |
| 577 | * netlbl_unlhsh_condremove_iface - Remove an interface entry |
| 578 | * @iface: the interface entry |
| 579 | * |
| 580 | * Description: |
| 581 | * Remove an interface entry from the unlabeled connection hash table if it is |
| 582 | * empty. An interface entry is considered to be empty if there are no |
| 583 | * address entries assigned to it. |
| 584 | * |
| 585 | */ |
| 586 | static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface *iface) |
| 587 | { |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 588 | struct netlbl_af4list *iter4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 589 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 590 | struct netlbl_af6list *iter6; |
| 591 | #endif /* IPv6 */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 592 | |
| 593 | spin_lock(&netlbl_unlhsh_lock); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 594 | netlbl_af4list_foreach_rcu(iter4, &iface->addr4_list) |
| 595 | goto unlhsh_condremove_failure; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 596 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 597 | netlbl_af6list_foreach_rcu(iter6, &iface->addr6_list) |
| 598 | goto unlhsh_condremove_failure; |
| 599 | #endif /* IPv6 */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 600 | iface->valid = 0; |
| 601 | if (iface->ifindex > 0) |
| 602 | list_del_rcu(&iface->list); |
| 603 | else |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 604 | RCU_INIT_POINTER(netlbl_unlhsh_def, NULL); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 605 | spin_unlock(&netlbl_unlhsh_lock); |
| 606 | |
| 607 | call_rcu(&iface->rcu, netlbl_unlhsh_free_iface); |
| 608 | return; |
| 609 | |
| 610 | unlhsh_condremove_failure: |
| 611 | spin_unlock(&netlbl_unlhsh_lock); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | /** |
| 615 | * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table |
| 616 | * @net: network namespace |
| 617 | * @dev_name: interface name |
| 618 | * @addr: IP address in network byte order |
| 619 | * @mask: address mask in network byte order |
| 620 | * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6) |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 621 | * @audit_info: NetLabel audit information |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 622 | * |
| 623 | * Description: |
| 624 | * Removes and existing entry from the unlabeled connection hash table. |
| 625 | * Returns zero on success, negative values on failure. |
| 626 | * |
| 627 | */ |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 628 | int netlbl_unlhsh_remove(struct net *net, |
| 629 | const char *dev_name, |
| 630 | const void *addr, |
| 631 | const void *mask, |
| 632 | u32 addr_len, |
| 633 | struct netlbl_audit *audit_info) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 634 | { |
| 635 | int ret_val; |
| 636 | struct net_device *dev; |
| 637 | struct netlbl_unlhsh_iface *iface; |
| 638 | |
| 639 | if (addr_len != sizeof(struct in_addr) && |
| 640 | addr_len != sizeof(struct in6_addr)) |
| 641 | return -EINVAL; |
| 642 | |
| 643 | rcu_read_lock(); |
| 644 | if (dev_name != NULL) { |
Eric Dumazet | 122ec6f | 2009-11-05 20:53:47 -0800 | [diff] [blame] | 645 | dev = dev_get_by_name_rcu(net, dev_name); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 646 | if (dev == NULL) { |
| 647 | ret_val = -ENODEV; |
| 648 | goto unlhsh_remove_return; |
| 649 | } |
| 650 | iface = netlbl_unlhsh_search_iface(dev->ifindex); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 651 | } else |
| 652 | iface = rcu_dereference(netlbl_unlhsh_def); |
| 653 | if (iface == NULL) { |
| 654 | ret_val = -ENOENT; |
| 655 | goto unlhsh_remove_return; |
| 656 | } |
| 657 | switch (addr_len) { |
| 658 | case sizeof(struct in_addr): |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 659 | ret_val = netlbl_unlhsh_remove_addr4(net, |
| 660 | iface, addr, mask, |
| 661 | audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 662 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 663 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 664 | case sizeof(struct in6_addr): |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 665 | ret_val = netlbl_unlhsh_remove_addr6(net, |
| 666 | iface, addr, mask, |
| 667 | audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 668 | break; |
| 669 | #endif /* IPv6 */ |
| 670 | default: |
| 671 | ret_val = -EINVAL; |
| 672 | } |
| 673 | if (ret_val == 0) { |
| 674 | netlbl_unlhsh_condremove_iface(iface); |
| 675 | atomic_dec(&netlabel_mgmt_protocount); |
| 676 | } |
| 677 | |
| 678 | unlhsh_remove_return: |
| 679 | rcu_read_unlock(); |
| 680 | return ret_val; |
| 681 | } |
| 682 | |
| 683 | /* |
| 684 | * General Helper Functions |
| 685 | */ |
| 686 | |
| 687 | /** |
| 688 | * netlbl_unlhsh_netdev_handler - Network device notification handler |
| 689 | * @this: notifier block |
| 690 | * @event: the event |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 691 | * @ptr: the netdevice notifier info (cast to void) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 692 | * |
| 693 | * Description: |
| 694 | * Handle network device events, although at present all we care about is a |
| 695 | * network device going away. In the case of a device going away we clear any |
| 696 | * related entries from the unlabeled connection hash table. |
| 697 | * |
| 698 | */ |
| 699 | static int netlbl_unlhsh_netdev_handler(struct notifier_block *this, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 700 | unsigned long event, void *ptr) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 701 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 702 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 703 | struct netlbl_unlhsh_iface *iface = NULL; |
| 704 | |
YOSHIFUJI Hideaki | 721499e | 2008-07-19 22:34:43 -0700 | [diff] [blame] | 705 | if (!net_eq(dev_net(dev), &init_net)) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 706 | return NOTIFY_DONE; |
| 707 | |
| 708 | /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */ |
| 709 | if (event == NETDEV_DOWN) { |
| 710 | spin_lock(&netlbl_unlhsh_lock); |
| 711 | iface = netlbl_unlhsh_search_iface(dev->ifindex); |
| 712 | if (iface != NULL && iface->valid) { |
| 713 | iface->valid = 0; |
| 714 | list_del_rcu(&iface->list); |
| 715 | } else |
| 716 | iface = NULL; |
| 717 | spin_unlock(&netlbl_unlhsh_lock); |
| 718 | } |
| 719 | |
| 720 | if (iface != NULL) |
| 721 | call_rcu(&iface->rcu, netlbl_unlhsh_free_iface); |
| 722 | |
| 723 | return NOTIFY_DONE; |
| 724 | } |
| 725 | |
| 726 | /** |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 727 | * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag |
| 728 | * @value: desired value |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 729 | * @audit_info: NetLabel audit information |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 730 | * |
| 731 | * Description: |
| 732 | * Set the value of the unlabeled accept flag to @value. |
| 733 | * |
| 734 | */ |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 735 | static void netlbl_unlabel_acceptflg_set(u8 value, |
| 736 | struct netlbl_audit *audit_info) |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 737 | { |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 738 | struct audit_buffer *audit_buf; |
| 739 | u8 old_val; |
| 740 | |
Paul Moore | 4be2700 | 2007-10-26 04:29:08 -0700 | [diff] [blame] | 741 | old_val = netlabel_unlabel_acceptflg; |
Paul Moore | cd28786 | 2006-11-17 17:38:44 -0500 | [diff] [blame] | 742 | netlabel_unlabel_acceptflg = value; |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 743 | audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW, |
| 744 | audit_info); |
Paul Moore | de64688 | 2006-11-17 17:38:55 -0500 | [diff] [blame] | 745 | if (audit_buf != NULL) { |
| 746 | audit_log_format(audit_buf, |
| 747 | " unlbl_accept=%u old=%u", value, old_val); |
| 748 | audit_log_end(audit_buf); |
| 749 | } |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 752 | /** |
| 753 | * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information |
| 754 | * @info: the Generic NETLINK info block |
| 755 | * @addr: the IP address |
| 756 | * @mask: the IP address mask |
| 757 | * @len: the address length |
| 758 | * |
| 759 | * Description: |
| 760 | * Examine the Generic NETLINK message and extract the IP address information. |
| 761 | * Returns zero on success, negative values on failure. |
| 762 | * |
| 763 | */ |
| 764 | static int netlbl_unlabel_addrinfo_get(struct genl_info *info, |
| 765 | void **addr, |
| 766 | void **mask, |
| 767 | u32 *len) |
| 768 | { |
| 769 | u32 addr_len; |
| 770 | |
Sean Tranchetti | f88b4c0 | 2018-09-20 14:29:45 -0600 | [diff] [blame] | 771 | if (info->attrs[NLBL_UNLABEL_A_IPV4ADDR] && |
| 772 | info->attrs[NLBL_UNLABEL_A_IPV4MASK]) { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 773 | addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]); |
| 774 | if (addr_len != sizeof(struct in_addr) && |
| 775 | addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV4MASK])) |
| 776 | return -EINVAL; |
| 777 | *len = addr_len; |
| 778 | *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]); |
| 779 | *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4MASK]); |
| 780 | return 0; |
| 781 | } else if (info->attrs[NLBL_UNLABEL_A_IPV6ADDR]) { |
| 782 | addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]); |
| 783 | if (addr_len != sizeof(struct in6_addr) && |
| 784 | addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV6MASK])) |
| 785 | return -EINVAL; |
| 786 | *len = addr_len; |
| 787 | *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]); |
| 788 | *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6MASK]); |
| 789 | return 0; |
| 790 | } |
| 791 | |
| 792 | return -EINVAL; |
| 793 | } |
| 794 | |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 795 | /* |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 796 | * NetLabel Command Handlers |
| 797 | */ |
| 798 | |
| 799 | /** |
| 800 | * netlbl_unlabel_accept - Handle an ACCEPT message |
| 801 | * @skb: the NETLINK buffer |
| 802 | * @info: the Generic NETLINK info block |
| 803 | * |
| 804 | * Description: |
| 805 | * Process a user generated ACCEPT message and set the accept flag accordingly. |
| 806 | * Returns zero on success, negative values on failure. |
| 807 | * |
| 808 | */ |
| 809 | static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info) |
| 810 | { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 811 | u8 value; |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 812 | struct netlbl_audit audit_info; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 813 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 814 | if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) { |
| 815 | value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 816 | if (value == 1 || value == 0) { |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 817 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 818 | netlbl_unlabel_acceptflg_set(value, &audit_info); |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 819 | return 0; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 820 | } |
| 821 | } |
| 822 | |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 823 | return -EINVAL; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 824 | } |
| 825 | |
| 826 | /** |
| 827 | * netlbl_unlabel_list - Handle a LIST message |
| 828 | * @skb: the NETLINK buffer |
| 829 | * @info: the Generic NETLINK info block |
| 830 | * |
| 831 | * Description: |
| 832 | * Process a user generated LIST message and respond with the current status. |
| 833 | * Returns zero on success, negative values on failure. |
| 834 | * |
| 835 | */ |
| 836 | static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info) |
| 837 | { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 838 | int ret_val = -EINVAL; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 839 | struct sk_buff *ans_skb; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 840 | void *data; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 841 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 842 | ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 843 | if (ans_skb == NULL) |
| 844 | goto list_failure; |
Thomas Graf | 17c157c | 2006-11-14 19:46:02 -0800 | [diff] [blame] | 845 | data = genlmsg_put_reply(ans_skb, info, &netlbl_unlabel_gnl_family, |
| 846 | 0, NLBL_UNLABEL_C_LIST); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 847 | if (data == NULL) { |
| 848 | ret_val = -ENOMEM; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 849 | goto list_failure; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 850 | } |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 851 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 852 | ret_val = nla_put_u8(ans_skb, |
| 853 | NLBL_UNLABEL_A_ACPTFLG, |
Paul Moore | cd28786 | 2006-11-17 17:38:44 -0500 | [diff] [blame] | 854 | netlabel_unlabel_acceptflg); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 855 | if (ret_val != 0) |
| 856 | goto list_failure; |
| 857 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 858 | genlmsg_end(ans_skb, data); |
Denis V. Lunev | fe785be | 2008-07-10 16:53:39 -0700 | [diff] [blame] | 859 | return genlmsg_reply(ans_skb, info); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 860 | |
| 861 | list_failure: |
Patrick McHardy | b08d584 | 2007-02-27 09:57:37 -0800 | [diff] [blame] | 862 | kfree_skb(ans_skb); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 863 | return ret_val; |
| 864 | } |
| 865 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 866 | /** |
| 867 | * netlbl_unlabel_staticadd - Handle a STATICADD message |
| 868 | * @skb: the NETLINK buffer |
| 869 | * @info: the Generic NETLINK info block |
| 870 | * |
| 871 | * Description: |
| 872 | * Process a user generated STATICADD message and add a new unlabeled |
| 873 | * connection entry to the hash table. Returns zero on success, negative |
| 874 | * values on failure. |
| 875 | * |
| 876 | */ |
| 877 | static int netlbl_unlabel_staticadd(struct sk_buff *skb, |
| 878 | struct genl_info *info) |
| 879 | { |
| 880 | int ret_val; |
| 881 | char *dev_name; |
| 882 | void *addr; |
| 883 | void *mask; |
| 884 | u32 addr_len; |
| 885 | u32 secid; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 886 | struct netlbl_audit audit_info; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 887 | |
| 888 | /* Don't allow users to add both IPv4 and IPv6 addresses for a |
| 889 | * single entry. However, allow users to create two entries, one each |
| 890 | * for IPv4 and IPv4, with the same LSM security context which should |
| 891 | * achieve the same result. */ |
| 892 | if (!info->attrs[NLBL_UNLABEL_A_SECCTX] || |
| 893 | !info->attrs[NLBL_UNLABEL_A_IFACE] || |
| 894 | !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] || |
| 895 | !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^ |
| 896 | (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] || |
| 897 | !info->attrs[NLBL_UNLABEL_A_IPV6MASK]))) |
| 898 | return -EINVAL; |
| 899 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 900 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 901 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 902 | ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len); |
| 903 | if (ret_val != 0) |
| 904 | return ret_val; |
| 905 | dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]); |
| 906 | ret_val = security_secctx_to_secid( |
| 907 | nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]), |
| 908 | nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]), |
| 909 | &secid); |
| 910 | if (ret_val != 0) |
| 911 | return ret_val; |
| 912 | |
| 913 | return netlbl_unlhsh_add(&init_net, |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 914 | dev_name, addr, mask, addr_len, secid, |
| 915 | &audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 916 | } |
| 917 | |
| 918 | /** |
| 919 | * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message |
| 920 | * @skb: the NETLINK buffer |
| 921 | * @info: the Generic NETLINK info block |
| 922 | * |
| 923 | * Description: |
| 924 | * Process a user generated STATICADDDEF message and add a new default |
| 925 | * unlabeled connection entry. Returns zero on success, negative values on |
| 926 | * failure. |
| 927 | * |
| 928 | */ |
| 929 | static int netlbl_unlabel_staticadddef(struct sk_buff *skb, |
| 930 | struct genl_info *info) |
| 931 | { |
| 932 | int ret_val; |
| 933 | void *addr; |
| 934 | void *mask; |
| 935 | u32 addr_len; |
| 936 | u32 secid; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 937 | struct netlbl_audit audit_info; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 938 | |
| 939 | /* Don't allow users to add both IPv4 and IPv6 addresses for a |
| 940 | * single entry. However, allow users to create two entries, one each |
| 941 | * for IPv4 and IPv6, with the same LSM security context which should |
| 942 | * achieve the same result. */ |
| 943 | if (!info->attrs[NLBL_UNLABEL_A_SECCTX] || |
| 944 | !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] || |
| 945 | !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^ |
| 946 | (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] || |
| 947 | !info->attrs[NLBL_UNLABEL_A_IPV6MASK]))) |
| 948 | return -EINVAL; |
| 949 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 950 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 951 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 952 | ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len); |
| 953 | if (ret_val != 0) |
| 954 | return ret_val; |
| 955 | ret_val = security_secctx_to_secid( |
| 956 | nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]), |
| 957 | nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]), |
| 958 | &secid); |
| 959 | if (ret_val != 0) |
| 960 | return ret_val; |
| 961 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 962 | return netlbl_unlhsh_add(&init_net, |
| 963 | NULL, addr, mask, addr_len, secid, |
| 964 | &audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 965 | } |
| 966 | |
| 967 | /** |
| 968 | * netlbl_unlabel_staticremove - Handle a STATICREMOVE message |
| 969 | * @skb: the NETLINK buffer |
| 970 | * @info: the Generic NETLINK info block |
| 971 | * |
| 972 | * Description: |
| 973 | * Process a user generated STATICREMOVE message and remove the specified |
| 974 | * unlabeled connection entry. Returns zero on success, negative values on |
| 975 | * failure. |
| 976 | * |
| 977 | */ |
| 978 | static int netlbl_unlabel_staticremove(struct sk_buff *skb, |
| 979 | struct genl_info *info) |
| 980 | { |
| 981 | int ret_val; |
| 982 | char *dev_name; |
| 983 | void *addr; |
| 984 | void *mask; |
| 985 | u32 addr_len; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 986 | struct netlbl_audit audit_info; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 987 | |
| 988 | /* See the note in netlbl_unlabel_staticadd() about not allowing both |
| 989 | * IPv4 and IPv6 in the same entry. */ |
| 990 | if (!info->attrs[NLBL_UNLABEL_A_IFACE] || |
| 991 | !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] || |
| 992 | !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^ |
| 993 | (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] || |
| 994 | !info->attrs[NLBL_UNLABEL_A_IPV6MASK]))) |
| 995 | return -EINVAL; |
| 996 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 997 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 998 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 999 | ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len); |
| 1000 | if (ret_val != 0) |
| 1001 | return ret_val; |
| 1002 | dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]); |
| 1003 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 1004 | return netlbl_unlhsh_remove(&init_net, |
| 1005 | dev_name, addr, mask, addr_len, |
| 1006 | &audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1007 | } |
| 1008 | |
| 1009 | /** |
| 1010 | * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message |
| 1011 | * @skb: the NETLINK buffer |
| 1012 | * @info: the Generic NETLINK info block |
| 1013 | * |
| 1014 | * Description: |
| 1015 | * Process a user generated STATICREMOVEDEF message and remove the default |
| 1016 | * unlabeled connection entry. Returns zero on success, negative values on |
| 1017 | * failure. |
| 1018 | * |
| 1019 | */ |
| 1020 | static int netlbl_unlabel_staticremovedef(struct sk_buff *skb, |
| 1021 | struct genl_info *info) |
| 1022 | { |
| 1023 | int ret_val; |
| 1024 | void *addr; |
| 1025 | void *mask; |
| 1026 | u32 addr_len; |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 1027 | struct netlbl_audit audit_info; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1028 | |
| 1029 | /* See the note in netlbl_unlabel_staticadd() about not allowing both |
| 1030 | * IPv4 and IPv6 in the same entry. */ |
| 1031 | if (!((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] || |
| 1032 | !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^ |
| 1033 | (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] || |
| 1034 | !info->attrs[NLBL_UNLABEL_A_IPV6MASK]))) |
| 1035 | return -EINVAL; |
| 1036 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 1037 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 1038 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1039 | ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len); |
| 1040 | if (ret_val != 0) |
| 1041 | return ret_val; |
| 1042 | |
Paul Moore | 13541b3 | 2008-01-29 08:44:23 -0500 | [diff] [blame] | 1043 | return netlbl_unlhsh_remove(&init_net, |
| 1044 | NULL, addr, mask, addr_len, |
| 1045 | &audit_info); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | |
| 1049 | /** |
| 1050 | * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF] |
| 1051 | * @cmd: command/message |
| 1052 | * @iface: the interface entry |
| 1053 | * @addr4: the IPv4 address entry |
| 1054 | * @addr6: the IPv6 address entry |
| 1055 | * @arg: the netlbl_unlhsh_walk_arg structure |
| 1056 | * |
| 1057 | * Description: |
| 1058 | * This function is designed to be used to generate a response for a |
| 1059 | * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6 |
| 1060 | * can be specified, not both, the other unspecified entry should be set to |
| 1061 | * NULL by the caller. Returns the size of the message on success, negative |
| 1062 | * values on failure. |
| 1063 | * |
| 1064 | */ |
| 1065 | static int netlbl_unlabel_staticlist_gen(u32 cmd, |
| 1066 | const struct netlbl_unlhsh_iface *iface, |
| 1067 | const struct netlbl_unlhsh_addr4 *addr4, |
| 1068 | const struct netlbl_unlhsh_addr6 *addr6, |
| 1069 | void *arg) |
| 1070 | { |
| 1071 | int ret_val = -ENOMEM; |
| 1072 | struct netlbl_unlhsh_walk_arg *cb_arg = arg; |
| 1073 | struct net_device *dev; |
| 1074 | void *data; |
| 1075 | u32 secid; |
| 1076 | char *secctx; |
| 1077 | u32 secctx_len; |
| 1078 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1079 | data = genlmsg_put(cb_arg->skb, NETLINK_CB(cb_arg->nl_cb->skb).portid, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1080 | cb_arg->seq, &netlbl_unlabel_gnl_family, |
| 1081 | NLM_F_MULTI, cmd); |
| 1082 | if (data == NULL) |
| 1083 | goto list_cb_failure; |
| 1084 | |
| 1085 | if (iface->ifindex > 0) { |
| 1086 | dev = dev_get_by_index(&init_net, iface->ifindex); |
Jesper Juhl | 794eb6b | 2008-04-17 23:22:54 -0700 | [diff] [blame] | 1087 | if (!dev) { |
| 1088 | ret_val = -ENODEV; |
| 1089 | goto list_cb_failure; |
| 1090 | } |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1091 | ret_val = nla_put_string(cb_arg->skb, |
| 1092 | NLBL_UNLABEL_A_IFACE, dev->name); |
| 1093 | dev_put(dev); |
| 1094 | if (ret_val != 0) |
| 1095 | goto list_cb_failure; |
| 1096 | } |
| 1097 | |
| 1098 | if (addr4) { |
| 1099 | struct in_addr addr_struct; |
| 1100 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1101 | addr_struct.s_addr = addr4->list.addr; |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1102 | ret_val = nla_put_in_addr(cb_arg->skb, |
| 1103 | NLBL_UNLABEL_A_IPV4ADDR, |
| 1104 | addr_struct.s_addr); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1105 | if (ret_val != 0) |
| 1106 | goto list_cb_failure; |
| 1107 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1108 | addr_struct.s_addr = addr4->list.mask; |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1109 | ret_val = nla_put_in_addr(cb_arg->skb, |
| 1110 | NLBL_UNLABEL_A_IPV4MASK, |
| 1111 | addr_struct.s_addr); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1112 | if (ret_val != 0) |
| 1113 | goto list_cb_failure; |
| 1114 | |
| 1115 | secid = addr4->secid; |
| 1116 | } else { |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1117 | ret_val = nla_put_in6_addr(cb_arg->skb, |
| 1118 | NLBL_UNLABEL_A_IPV6ADDR, |
| 1119 | &addr6->list.addr); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1120 | if (ret_val != 0) |
| 1121 | goto list_cb_failure; |
| 1122 | |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 1123 | ret_val = nla_put_in6_addr(cb_arg->skb, |
| 1124 | NLBL_UNLABEL_A_IPV6MASK, |
| 1125 | &addr6->list.mask); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1126 | if (ret_val != 0) |
| 1127 | goto list_cb_failure; |
| 1128 | |
| 1129 | secid = addr6->secid; |
| 1130 | } |
| 1131 | |
| 1132 | ret_val = security_secid_to_secctx(secid, &secctx, &secctx_len); |
| 1133 | if (ret_val != 0) |
| 1134 | goto list_cb_failure; |
| 1135 | ret_val = nla_put(cb_arg->skb, |
| 1136 | NLBL_UNLABEL_A_SECCTX, |
| 1137 | secctx_len, |
| 1138 | secctx); |
| 1139 | security_release_secctx(secctx, secctx_len); |
| 1140 | if (ret_val != 0) |
| 1141 | goto list_cb_failure; |
| 1142 | |
| 1143 | cb_arg->seq++; |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 1144 | genlmsg_end(cb_arg->skb, data); |
| 1145 | return 0; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1146 | |
| 1147 | list_cb_failure: |
| 1148 | genlmsg_cancel(cb_arg->skb, data); |
| 1149 | return ret_val; |
| 1150 | } |
| 1151 | |
| 1152 | /** |
| 1153 | * netlbl_unlabel_staticlist - Handle a STATICLIST message |
| 1154 | * @skb: the NETLINK buffer |
| 1155 | * @cb: the NETLINK callback |
| 1156 | * |
| 1157 | * Description: |
| 1158 | * Process a user generated STATICLIST message and dump the unlabeled |
| 1159 | * connection hash table in a form suitable for use in a kernel generated |
| 1160 | * STATICLIST message. Returns the length of @skb. |
| 1161 | * |
| 1162 | */ |
| 1163 | static int netlbl_unlabel_staticlist(struct sk_buff *skb, |
| 1164 | struct netlink_callback *cb) |
| 1165 | { |
| 1166 | struct netlbl_unlhsh_walk_arg cb_arg; |
| 1167 | u32 skip_bkt = cb->args[0]; |
| 1168 | u32 skip_chain = cb->args[1]; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1169 | u32 iter_bkt; |
| 1170 | u32 iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0; |
| 1171 | struct netlbl_unlhsh_iface *iface; |
Paul Moore | 5619670 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 1172 | struct list_head *iter_list; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1173 | struct netlbl_af4list *addr4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1174 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1175 | struct netlbl_af6list *addr6; |
| 1176 | #endif |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1177 | |
| 1178 | cb_arg.nl_cb = cb; |
| 1179 | cb_arg.skb = skb; |
| 1180 | cb_arg.seq = cb->nlh->nlmsg_seq; |
| 1181 | |
| 1182 | rcu_read_lock(); |
| 1183 | for (iter_bkt = skip_bkt; |
| 1184 | iter_bkt < rcu_dereference(netlbl_unlhsh)->size; |
| 1185 | iter_bkt++, iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0) { |
Paul Moore | 5619670 | 2008-10-10 10:16:29 -0400 | [diff] [blame] | 1186 | iter_list = &rcu_dereference(netlbl_unlhsh)->tbl[iter_bkt]; |
| 1187 | list_for_each_entry_rcu(iface, iter_list, list) { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1188 | if (!iface->valid || |
| 1189 | iter_chain++ < skip_chain) |
| 1190 | continue; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1191 | netlbl_af4list_foreach_rcu(addr4, |
| 1192 | &iface->addr4_list) { |
Paul Moore | a6a8fe9 | 2013-03-08 09:45:39 -0500 | [diff] [blame] | 1193 | if (iter_addr4++ < cb->args[2]) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1194 | continue; |
| 1195 | if (netlbl_unlabel_staticlist_gen( |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1196 | NLBL_UNLABEL_C_STATICLIST, |
| 1197 | iface, |
| 1198 | netlbl_unlhsh_addr4_entry(addr4), |
| 1199 | NULL, |
| 1200 | &cb_arg) < 0) { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1201 | iter_addr4--; |
| 1202 | iter_chain--; |
| 1203 | goto unlabel_staticlist_return; |
| 1204 | } |
| 1205 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1206 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1207 | netlbl_af6list_foreach_rcu(addr6, |
| 1208 | &iface->addr6_list) { |
Paul Moore | a6a8fe9 | 2013-03-08 09:45:39 -0500 | [diff] [blame] | 1209 | if (iter_addr6++ < cb->args[3]) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1210 | continue; |
| 1211 | if (netlbl_unlabel_staticlist_gen( |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1212 | NLBL_UNLABEL_C_STATICLIST, |
| 1213 | iface, |
| 1214 | NULL, |
| 1215 | netlbl_unlhsh_addr6_entry(addr6), |
| 1216 | &cb_arg) < 0) { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1217 | iter_addr6--; |
| 1218 | iter_chain--; |
| 1219 | goto unlabel_staticlist_return; |
| 1220 | } |
| 1221 | } |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1222 | #endif /* IPv6 */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1223 | } |
| 1224 | } |
| 1225 | |
| 1226 | unlabel_staticlist_return: |
| 1227 | rcu_read_unlock(); |
Paul Moore | 0c1233a | 2013-03-06 11:45:24 +0000 | [diff] [blame] | 1228 | cb->args[0] = iter_bkt; |
| 1229 | cb->args[1] = iter_chain; |
| 1230 | cb->args[2] = iter_addr4; |
| 1231 | cb->args[3] = iter_addr6; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1232 | return skb->len; |
| 1233 | } |
| 1234 | |
| 1235 | /** |
| 1236 | * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message |
| 1237 | * @skb: the NETLINK buffer |
| 1238 | * @cb: the NETLINK callback |
| 1239 | * |
| 1240 | * Description: |
| 1241 | * Process a user generated STATICLISTDEF message and dump the default |
| 1242 | * unlabeled connection entry in a form suitable for use in a kernel generated |
| 1243 | * STATICLISTDEF message. Returns the length of @skb. |
| 1244 | * |
| 1245 | */ |
| 1246 | static int netlbl_unlabel_staticlistdef(struct sk_buff *skb, |
| 1247 | struct netlink_callback *cb) |
| 1248 | { |
| 1249 | struct netlbl_unlhsh_walk_arg cb_arg; |
| 1250 | struct netlbl_unlhsh_iface *iface; |
Paul Moore | a6a8fe9 | 2013-03-08 09:45:39 -0500 | [diff] [blame] | 1251 | u32 iter_addr4 = 0, iter_addr6 = 0; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1252 | struct netlbl_af4list *addr4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1253 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1254 | struct netlbl_af6list *addr6; |
| 1255 | #endif |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1256 | |
| 1257 | cb_arg.nl_cb = cb; |
| 1258 | cb_arg.skb = skb; |
| 1259 | cb_arg.seq = cb->nlh->nlmsg_seq; |
| 1260 | |
| 1261 | rcu_read_lock(); |
| 1262 | iface = rcu_dereference(netlbl_unlhsh_def); |
| 1263 | if (iface == NULL || !iface->valid) |
| 1264 | goto unlabel_staticlistdef_return; |
| 1265 | |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1266 | netlbl_af4list_foreach_rcu(addr4, &iface->addr4_list) { |
Paul Moore | a6a8fe9 | 2013-03-08 09:45:39 -0500 | [diff] [blame] | 1267 | if (iter_addr4++ < cb->args[0]) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1268 | continue; |
| 1269 | if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF, |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1270 | iface, |
| 1271 | netlbl_unlhsh_addr4_entry(addr4), |
| 1272 | NULL, |
| 1273 | &cb_arg) < 0) { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1274 | iter_addr4--; |
| 1275 | goto unlabel_staticlistdef_return; |
| 1276 | } |
| 1277 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1278 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1279 | netlbl_af6list_foreach_rcu(addr6, &iface->addr6_list) { |
Paul Moore | a6a8fe9 | 2013-03-08 09:45:39 -0500 | [diff] [blame] | 1280 | if (iter_addr6++ < cb->args[1]) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1281 | continue; |
| 1282 | if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF, |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1283 | iface, |
| 1284 | NULL, |
| 1285 | netlbl_unlhsh_addr6_entry(addr6), |
| 1286 | &cb_arg) < 0) { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1287 | iter_addr6--; |
| 1288 | goto unlabel_staticlistdef_return; |
| 1289 | } |
| 1290 | } |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1291 | #endif /* IPv6 */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1292 | |
| 1293 | unlabel_staticlistdef_return: |
| 1294 | rcu_read_unlock(); |
Paul Moore | 0c1233a | 2013-03-06 11:45:24 +0000 | [diff] [blame] | 1295 | cb->args[0] = iter_addr4; |
| 1296 | cb->args[1] = iter_addr6; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1297 | return skb->len; |
| 1298 | } |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1299 | |
| 1300 | /* |
| 1301 | * NetLabel Generic NETLINK Command Definitions |
| 1302 | */ |
| 1303 | |
Johannes Berg | 4534de8 | 2013-11-14 17:14:46 +0100 | [diff] [blame] | 1304 | static const struct genl_ops netlbl_unlabel_genl_ops[] = { |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1305 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1306 | .cmd = NLBL_UNLABEL_C_STATICADD, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1307 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1308 | .flags = GENL_ADMIN_PERM, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1309 | .doit = netlbl_unlabel_staticadd, |
| 1310 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1311 | }, |
| 1312 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1313 | .cmd = NLBL_UNLABEL_C_STATICREMOVE, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1314 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1315 | .flags = GENL_ADMIN_PERM, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1316 | .doit = netlbl_unlabel_staticremove, |
| 1317 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1318 | }, |
| 1319 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1320 | .cmd = NLBL_UNLABEL_C_STATICLIST, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1321 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1322 | .flags = 0, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1323 | .doit = NULL, |
| 1324 | .dumpit = netlbl_unlabel_staticlist, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1325 | }, |
| 1326 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1327 | .cmd = NLBL_UNLABEL_C_STATICADDDEF, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1328 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1329 | .flags = GENL_ADMIN_PERM, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1330 | .doit = netlbl_unlabel_staticadddef, |
| 1331 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1332 | }, |
| 1333 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1334 | .cmd = NLBL_UNLABEL_C_STATICREMOVEDEF, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1335 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1336 | .flags = GENL_ADMIN_PERM, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1337 | .doit = netlbl_unlabel_staticremovedef, |
| 1338 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1339 | }, |
| 1340 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1341 | .cmd = NLBL_UNLABEL_C_STATICLISTDEF, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1342 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1343 | .flags = 0, |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1344 | .doit = NULL, |
| 1345 | .dumpit = netlbl_unlabel_staticlistdef, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1346 | }, |
| 1347 | { |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1348 | .cmd = NLBL_UNLABEL_C_ACCEPT, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1349 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 1350 | .flags = GENL_ADMIN_PERM, |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1351 | .doit = netlbl_unlabel_accept, |
| 1352 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1353 | }, |
| 1354 | { |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1355 | .cmd = NLBL_UNLABEL_C_LIST, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 1356 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1357 | .flags = 0, |
| 1358 | .doit = netlbl_unlabel_list, |
| 1359 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 1360 | }, |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1361 | }; |
| 1362 | |
Johannes Berg | 56989f6 | 2016-10-24 14:40:05 +0200 | [diff] [blame] | 1363 | static struct genl_family netlbl_unlabel_gnl_family __ro_after_init = { |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1364 | .hdrsize = 0, |
| 1365 | .name = NETLBL_NLTYPE_UNLABELED_NAME, |
| 1366 | .version = NETLBL_PROTO_VERSION, |
| 1367 | .maxattr = NLBL_UNLABEL_A_MAX, |
Johannes Berg | 3b0f31f | 2019-03-21 22:51:02 +0100 | [diff] [blame] | 1368 | .policy = netlbl_unlabel_genl_policy, |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1369 | .module = THIS_MODULE, |
| 1370 | .ops = netlbl_unlabel_genl_ops, |
| 1371 | .n_ops = ARRAY_SIZE(netlbl_unlabel_genl_ops), |
| 1372 | }; |
| 1373 | |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1374 | /* |
| 1375 | * NetLabel Generic NETLINK Protocol Functions |
| 1376 | */ |
| 1377 | |
| 1378 | /** |
| 1379 | * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component |
| 1380 | * |
| 1381 | * Description: |
| 1382 | * Register the unlabeled packet NetLabel component with the Generic NETLINK |
| 1383 | * mechanism. Returns zero on success, negative values on failure. |
| 1384 | * |
| 1385 | */ |
Pavel Emelyanov | 05705e4 | 2008-02-17 22:33:57 -0800 | [diff] [blame] | 1386 | int __init netlbl_unlabel_genl_init(void) |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1387 | { |
Johannes Berg | 489111e | 2016-10-24 14:40:03 +0200 | [diff] [blame] | 1388 | return genl_register_family(&netlbl_unlabel_gnl_family); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
| 1391 | /* |
| 1392 | * NetLabel KAPI Hooks |
| 1393 | */ |
| 1394 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1395 | static struct notifier_block netlbl_unlhsh_netdev_notifier = { |
| 1396 | .notifier_call = netlbl_unlhsh_netdev_handler, |
| 1397 | }; |
| 1398 | |
| 1399 | /** |
| 1400 | * netlbl_unlabel_init - Initialize the unlabeled connection hash table |
| 1401 | * @size: the number of bits to use for the hash buckets |
| 1402 | * |
| 1403 | * Description: |
| 1404 | * Initializes the unlabeled connection hash table and registers a network |
| 1405 | * device notification handler. This function should only be called by the |
| 1406 | * NetLabel subsystem itself during initialization. Returns zero on success, |
| 1407 | * non-zero values on error. |
| 1408 | * |
| 1409 | */ |
Pavel Emelyanov | 05705e4 | 2008-02-17 22:33:57 -0800 | [diff] [blame] | 1410 | int __init netlbl_unlabel_init(u32 size) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1411 | { |
| 1412 | u32 iter; |
| 1413 | struct netlbl_unlhsh_tbl *hsh_tbl; |
| 1414 | |
| 1415 | if (size == 0) |
| 1416 | return -EINVAL; |
| 1417 | |
| 1418 | hsh_tbl = kmalloc(sizeof(*hsh_tbl), GFP_KERNEL); |
| 1419 | if (hsh_tbl == NULL) |
| 1420 | return -ENOMEM; |
| 1421 | hsh_tbl->size = 1 << size; |
| 1422 | hsh_tbl->tbl = kcalloc(hsh_tbl->size, |
| 1423 | sizeof(struct list_head), |
| 1424 | GFP_KERNEL); |
| 1425 | if (hsh_tbl->tbl == NULL) { |
| 1426 | kfree(hsh_tbl); |
| 1427 | return -ENOMEM; |
| 1428 | } |
| 1429 | for (iter = 0; iter < hsh_tbl->size; iter++) |
| 1430 | INIT_LIST_HEAD(&hsh_tbl->tbl[iter]); |
| 1431 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1432 | spin_lock(&netlbl_unlhsh_lock); |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 1433 | rcu_assign_pointer(netlbl_unlhsh, hsh_tbl); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1434 | spin_unlock(&netlbl_unlhsh_lock); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1435 | |
| 1436 | register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier); |
| 1437 | |
| 1438 | return 0; |
| 1439 | } |
| 1440 | |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1441 | /** |
| 1442 | * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1443 | * @skb: the packet |
| 1444 | * @family: protocol family |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1445 | * @secattr: the security attributes |
| 1446 | * |
| 1447 | * Description: |
| 1448 | * Determine the security attributes, if any, for an unlabled packet and return |
| 1449 | * them in @secattr. Returns zero on success and negative values on failure. |
| 1450 | * |
| 1451 | */ |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1452 | int netlbl_unlabel_getattr(const struct sk_buff *skb, |
| 1453 | u16 family, |
| 1454 | struct netlbl_lsm_secattr *secattr) |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1455 | { |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1456 | struct netlbl_unlhsh_iface *iface; |
| 1457 | |
| 1458 | rcu_read_lock(); |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 1459 | iface = netlbl_unlhsh_search_iface(skb->skb_iif); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1460 | if (iface == NULL) |
Paul Moore | b914f3a | 2010-04-01 10:43:57 +0000 | [diff] [blame] | 1461 | iface = rcu_dereference(netlbl_unlhsh_def); |
| 1462 | if (iface == NULL || !iface->valid) |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1463 | goto unlabel_getattr_nolabel; |
Richard Haines | 213d7f9 | 2017-11-13 20:54:22 +0000 | [diff] [blame] | 1464 | |
| 1465 | #if IS_ENABLED(CONFIG_IPV6) |
| 1466 | /* When resolving a fallback label, check the sk_buff version as |
| 1467 | * it is possible (e.g. SCTP) to have family = PF_INET6 while |
| 1468 | * receiving ip_hdr(skb)->version = 4. |
| 1469 | */ |
| 1470 | if (family == PF_INET6 && ip_hdr(skb)->version == 4) |
| 1471 | family = PF_INET; |
| 1472 | #endif /* IPv6 */ |
| 1473 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1474 | switch (family) { |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 1475 | case PF_INET: { |
| 1476 | struct iphdr *hdr4; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1477 | struct netlbl_af4list *addr4; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 1478 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1479 | hdr4 = ip_hdr(skb); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1480 | addr4 = netlbl_af4list_search(hdr4->saddr, |
| 1481 | &iface->addr4_list); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1482 | if (addr4 == NULL) |
| 1483 | goto unlabel_getattr_nolabel; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1484 | secattr->attr.secid = netlbl_unlhsh_addr4_entry(addr4)->secid; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1485 | break; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 1486 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1487 | #if IS_ENABLED(CONFIG_IPV6) |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 1488 | case PF_INET6: { |
| 1489 | struct ipv6hdr *hdr6; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1490 | struct netlbl_af6list *addr6; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 1491 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1492 | hdr6 = ipv6_hdr(skb); |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1493 | addr6 = netlbl_af6list_search(&hdr6->saddr, |
| 1494 | &iface->addr6_list); |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1495 | if (addr6 == NULL) |
| 1496 | goto unlabel_getattr_nolabel; |
Paul Moore | 61e1068 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1497 | secattr->attr.secid = netlbl_unlhsh_addr6_entry(addr6)->secid; |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1498 | break; |
Pavel Emelyanov | 56628b1 | 2008-02-12 22:37:19 -0800 | [diff] [blame] | 1499 | } |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1500 | #endif /* IPv6 */ |
| 1501 | default: |
| 1502 | goto unlabel_getattr_nolabel; |
| 1503 | } |
| 1504 | rcu_read_unlock(); |
| 1505 | |
| 1506 | secattr->flags |= NETLBL_SECATTR_SECID; |
| 1507 | secattr->type = NETLBL_NLTYPE_UNLABELED; |
| 1508 | return 0; |
| 1509 | |
| 1510 | unlabel_getattr_nolabel: |
| 1511 | rcu_read_unlock(); |
Paul Moore | c783f1c | 2008-01-29 08:37:52 -0500 | [diff] [blame] | 1512 | if (netlabel_unlabel_acceptflg == 0) |
| 1513 | return -ENOMSG; |
Paul Moore | 16efd45 | 2008-01-29 08:37:59 -0500 | [diff] [blame] | 1514 | secattr->type = NETLBL_NLTYPE_UNLABELED; |
Paul Moore | c783f1c | 2008-01-29 08:37:52 -0500 | [diff] [blame] | 1515 | return 0; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1516 | } |
| 1517 | |
| 1518 | /** |
| 1519 | * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets |
| 1520 | * |
| 1521 | * Description: |
| 1522 | * Set the default NetLabel configuration to allow incoming unlabeled packets |
| 1523 | * and to send unlabeled network traffic by default. |
| 1524 | * |
| 1525 | */ |
Pavel Emelyanov | 05705e4 | 2008-02-17 22:33:57 -0800 | [diff] [blame] | 1526 | int __init netlbl_unlabel_defconf(void) |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1527 | { |
| 1528 | int ret_val; |
| 1529 | struct netlbl_dom_map *entry; |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 1530 | struct netlbl_audit audit_info; |
Paul Moore | 32f50cd | 2006-09-28 14:51:47 -0700 | [diff] [blame] | 1531 | |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 1532 | /* Only the kernel is allowed to call this function and the only time |
| 1533 | * it is called is at bootup before the audit subsystem is reporting |
| 1534 | * messages so don't worry to much about these values. */ |
| 1535 | security_task_getsecid(current, &audit_info.secid); |
Eric W. Biederman | e1760bd | 2012-09-10 22:39:43 -0700 | [diff] [blame] | 1536 | audit_info.loginuid = GLOBAL_ROOT_UID; |
Eric Paris | 2532386 | 2008-04-18 10:09:25 -0400 | [diff] [blame] | 1537 | audit_info.sessionid = 0; |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1538 | |
| 1539 | entry = kzalloc(sizeof(*entry), GFP_KERNEL); |
| 1540 | if (entry == NULL) |
| 1541 | return -ENOMEM; |
Huw Davies | 8f18e67 | 2016-06-27 15:02:46 -0400 | [diff] [blame] | 1542 | entry->family = AF_UNSPEC; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 1543 | entry->def.type = NETLBL_NLTYPE_UNLABELED; |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 1544 | ret_val = netlbl_domhsh_add_default(entry, &audit_info); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1545 | if (ret_val != 0) |
| 1546 | return ret_val; |
| 1547 | |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 1548 | netlbl_unlabel_acceptflg_set(1, &audit_info); |
Paul Moore | 96cb8e3 | 2006-08-03 16:48:59 -0700 | [diff] [blame] | 1549 | |
| 1550 | return 0; |
| 1551 | } |