blob: 8490e46359ae0a4eac91a1b54f46375c43fb0c08 [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Paul Moore96cb8e32006-08-03 16:48:59 -07002/*
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 Moore82c21bf2011-08-01 11:10:33 +00009 * Author: Paul Moore <paul@paul-moore.com>
Paul Moore96cb8e32006-08-03 16:48:59 -070010 */
11
12/*
Paul Moore61e10682008-10-10 10:16:32 -040013 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - 2008
Paul Moore96cb8e32006-08-03 16:48:59 -070014 */
15
16#include <linux/types.h>
Paul Moore8cc44572008-01-29 08:44:21 -050017#include <linux/rcupdate.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070018#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 Moorede646882006-11-17 17:38:55 -050023#include <linux/audit.h>
Paul Moore8cc44572008-01-29 08:44:21 -050024#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 Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070032#include <net/sock.h>
33#include <net/netlink.h>
34#include <net/genetlink.h>
Paul Moore8cc44572008-01-29 08:44:21 -050035#include <net/ip.h>
36#include <net/ipv6.h>
37#include <net/net_namespace.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070038#include <net/netlabel.h>
39#include <asm/bug.h>
Arun Sharma600634972011-07-26 16:09:06 -070040#include <linux/atomic.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070041
42#include "netlabel_user.h"
Paul Moore61e10682008-10-10 10:16:32 -040043#include "netlabel_addrlist.h"
Paul Moore96cb8e32006-08-03 16:48:59 -070044#include "netlabel_domainhash.h"
45#include "netlabel_unlabeled.h"
Paul Moore8cc44572008-01-29 08:44:21 -050046#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 */
62struct netlbl_unlhsh_tbl {
63 struct list_head *tbl;
64 u32 size;
65};
Paul Moore61e10682008-10-10 10:16:32 -040066#define netlbl_unlhsh_addr4_entry(iter) \
67 container_of(iter, struct netlbl_unlhsh_addr4, list)
Paul Moore8cc44572008-01-29 08:44:21 -050068struct netlbl_unlhsh_addr4 {
Paul Moore8cc44572008-01-29 08:44:21 -050069 u32 secid;
70
Paul Moore61e10682008-10-10 10:16:32 -040071 struct netlbl_af4list list;
Paul Moore8cc44572008-01-29 08:44:21 -050072 struct rcu_head rcu;
73};
Paul Moore61e10682008-10-10 10:16:32 -040074#define netlbl_unlhsh_addr6_entry(iter) \
75 container_of(iter, struct netlbl_unlhsh_addr6, list)
Paul Moore8cc44572008-01-29 08:44:21 -050076struct netlbl_unlhsh_addr6 {
Paul Moore8cc44572008-01-29 08:44:21 -050077 u32 secid;
78
Paul Moore61e10682008-10-10 10:16:32 -040079 struct netlbl_af6list list;
Paul Moore8cc44572008-01-29 08:44:21 -050080 struct rcu_head rcu;
81};
82struct 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() */
93struct 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 */
102static DEFINE_SPINLOCK(netlbl_unlhsh_lock);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000103#define netlbl_unlhsh_rcu_deref(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +0200104 rcu_dereference_check(p, lockdep_is_held(&netlbl_unlhsh_lock))
Huw Davies96a8f7f2016-06-27 15:02:45 -0400105static struct netlbl_unlhsh_tbl __rcu *netlbl_unlhsh;
106static struct netlbl_unlhsh_iface __rcu *netlbl_unlhsh_def;
Paul Moore96cb8e32006-08-03 16:48:59 -0700107
108/* Accept unlabeled packets flag */
Wei Tang795f3512016-03-07 14:25:10 +0800109static u8 netlabel_unlabel_acceptflg;
Paul Moore96cb8e32006-08-03 16:48:59 -0700110
Paul Moore8cc44572008-01-29 08:44:21 -0500111/* NetLabel Generic NETLINK unlabeled family */
Johannes Berg489111e2016-10-24 14:40:03 +0200112static struct genl_family netlbl_unlabel_gnl_family;
Paul Moore96cb8e32006-08-03 16:48:59 -0700113
Paul Moorefd385852006-09-25 15:56:37 -0700114/* NetLabel Netlink attribute policy */
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700115static const struct nla_policy netlbl_unlabel_genl_policy[NLBL_UNLABEL_A_MAX + 1] = {
Paul Moorefd385852006-09-25 15:56:37 -0700116 [NLBL_UNLABEL_A_ACPTFLG] = { .type = NLA_U8 },
Paul Moore8cc44572008-01-29 08:44:21 -0500117 [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 Moorefd385852006-09-25 15:56:37 -0700128};
Paul Moore96cb8e32006-08-03 16:48:59 -0700129
130/*
Paul Moore8cc44572008-01-29 08:44:21 -0500131 * Unlabeled Connection Hash Table Functions
Paul Moore32f50cd2006-09-28 14:51:47 -0700132 */
133
Paul Moore8cc44572008-01-29 08:44:21 -0500134/**
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 */
147static void netlbl_unlhsh_free_iface(struct rcu_head *entry)
148{
149 struct netlbl_unlhsh_iface *iface;
Paul Moore61e10682008-10-10 10:16:32 -0400150 struct netlbl_af4list *iter4;
151 struct netlbl_af4list *tmp4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000152#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400153 struct netlbl_af6list *iter6;
154 struct netlbl_af6list *tmp6;
155#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500156
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 Moore61e10682008-10-10 10:16:32 -0400162 netlbl_af4list_foreach_safe(iter4, tmp4, &iface->addr4_list) {
163 netlbl_af4list_remove_entry(iter4);
164 kfree(netlbl_unlhsh_addr4_entry(iter4));
165 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000166#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400167 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 Moore8cc44572008-01-29 08:44:21 -0500172 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 Mooreb914f3a2010-04-01 10:43:57 +0000182 * ensuring that the hash table is protected with either a RCU read lock or
183 * the hash table lock.
Paul Moore8cc44572008-01-29 08:44:21 -0500184 *
185 */
186static u32 netlbl_unlhsh_hash(int ifindex)
187{
Paul Mooreb914f3a2010-04-01 10:43:57 +0000188 return ifindex & (netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->size - 1);
Paul Moore8cc44572008-01-29 08:44:21 -0500189}
190
191/**
Paul Moore8cc44572008-01-29 08:44:21 -0500192 * 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 Mooreb914f3a2010-04-01 10:43:57 +0000198 * caller is responsible for ensuring that the hash table is protected with
199 * either a RCU read lock or the hash table lock.
Paul Moore8cc44572008-01-29 08:44:21 -0500200 *
201 */
202static struct netlbl_unlhsh_iface *netlbl_unlhsh_search_iface(int ifindex)
203{
204 u32 bkt;
Paul Moore56196702008-10-10 10:16:29 -0400205 struct list_head *bkt_list;
Paul Moore8cc44572008-01-29 08:44:21 -0500206 struct netlbl_unlhsh_iface *iter;
207
208 bkt = netlbl_unlhsh_hash(ifindex);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000209 bkt_list = &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt];
Madhuparna Bhowmik8c70c3d2020-02-18 23:47:18 +0530210 list_for_each_entry_rcu(iter, bkt_list, list,
211 lockdep_is_held(&netlbl_unlhsh_lock))
Paul Moore8cc44572008-01-29 08:44:21 -0500212 if (iter->valid && iter->ifindex == ifindex)
213 return iter;
214
215 return NULL;
216}
217
218/**
Paul Moore8cc44572008-01-29 08:44:21 -0500219 * 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 Mooreb914f3a2010-04-01 10:43:57 +0000228 * a negative value is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500229 *
230 */
231static 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 Moore61e10682008-10-10 10:16:32 -0400236 int ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500237 struct netlbl_unlhsh_addr4 *entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500238
239 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
240 if (entry == NULL)
241 return -ENOMEM;
242
Paul Moore61e10682008-10-10 10:16:32 -0400243 entry->list.addr = addr->s_addr & mask->s_addr;
244 entry->list.mask = mask->s_addr;
245 entry->list.valid = 1;
Paul Moore61e10682008-10-10 10:16:32 -0400246 entry->secid = secid;
Paul Moore8cc44572008-01-29 08:44:21 -0500247
248 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400249 ret_val = netlbl_af4list_add(&entry->list, &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500250 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400251
252 if (ret_val != 0)
253 kfree(entry);
254 return ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500255}
256
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000257#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500258/**
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 Mooreb914f3a2010-04-01 10:43:57 +0000268 * a negative value is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500269 *
270 */
271static 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 Moore61e10682008-10-10 10:16:32 -0400276 int ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500277 struct netlbl_unlhsh_addr6 *entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500278
279 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
280 if (entry == NULL)
281 return -ENOMEM;
282
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000283 entry->list.addr = *addr;
Paul Moore61e10682008-10-10 10:16:32 -0400284 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 Dobriyan4e3fd7a2011-11-21 03:39:03 +0000288 entry->list.mask = *mask;
Paul Moore61e10682008-10-10 10:16:32 -0400289 entry->list.valid = 1;
Paul Moore61e10682008-10-10 10:16:32 -0400290 entry->secid = secid;
Paul Moore8cc44572008-01-29 08:44:21 -0500291
292 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400293 ret_val = netlbl_af6list_add(&entry->list, &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500294 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400295
296 if (ret_val != 0)
297 kfree(entry);
Paul Moore8cc44572008-01-29 08:44:21 -0500298 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 Mooreb914f3a2010-04-01 10:43:57 +0000309 * is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500310 *
311 */
312static 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 Moore8cc44572008-01-29 08:44:21 -0500325
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 Mooreb914f3a2010-04-01 10:43:57 +0000332 &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt]);
Paul Moore8cc44572008-01-29 08:44:21 -0500333 } else {
334 INIT_LIST_HEAD(&iface->list);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000335 if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def) != NULL)
Paul Moore8cc44572008-01-29 08:44:21 -0500336 goto add_iface_failure;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000337 rcu_assign_pointer(netlbl_unlhsh_def, iface);
Paul Moore8cc44572008-01-29 08:44:21 -0500338 }
339 spin_unlock(&netlbl_unlhsh_lock);
340
341 return iface;
342
343add_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 Moore13541b32008-01-29 08:44:23 -0500357 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500358 *
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 Moore6c2e8ac2008-12-31 12:54:11 -0500364int 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 Moore8cc44572008-01-29 08:44:21 -0500371{
372 int ret_val;
373 int ifindex;
374 struct net_device *dev;
375 struct netlbl_unlhsh_iface *iface;
Paul Moore13541b32008-01-29 08:44:23 -0500376 struct audit_buffer *audit_buf = NULL;
377 char *secctx = NULL;
378 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500379
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 Dumazet122ec6f2009-11-05 20:53:47 -0800386 dev = dev_get_by_name_rcu(net, dev_name);
Paul Moore8cc44572008-01-29 08:44:21 -0500387 if (dev == NULL) {
388 ret_val = -ENODEV;
389 goto unlhsh_add_return;
390 }
391 ifindex = dev->ifindex;
Paul Moore8cc44572008-01-29 08:44:21 -0500392 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 Moore13541b32008-01-29 08:44:23 -0500404 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD,
405 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500406 switch (addr_len) {
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800407 case sizeof(struct in_addr): {
Joe Perchesea110732011-06-13 16:21:26 +0000408 const struct in_addr *addr4 = addr;
409 const struct in_addr *mask4 = mask;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800410
Paul Moore13541b32008-01-29 08:44:23 -0500411 ret_val = netlbl_unlhsh_add_addr4(iface, addr4, mask4, secid);
412 if (audit_buf != NULL)
Paul Moore63c41682008-10-10 10:16:32 -0400413 netlbl_af4list_audit_addr(audit_buf, 1,
414 dev_name,
415 addr4->s_addr,
416 mask4->s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -0500417 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800418 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000419#if IS_ENABLED(CONFIG_IPV6)
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800420 case sizeof(struct in6_addr): {
Joe Perchesea110732011-06-13 16:21:26 +0000421 const struct in6_addr *addr6 = addr;
422 const struct in6_addr *mask6 = mask;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800423
Paul Moore13541b32008-01-29 08:44:23 -0500424 ret_val = netlbl_unlhsh_add_addr6(iface, addr6, mask6, secid);
425 if (audit_buf != NULL)
Paul Moore63c41682008-10-10 10:16:32 -0400426 netlbl_af6list_audit_addr(audit_buf, 1,
427 dev_name,
428 addr6, mask6);
Paul Moore8cc44572008-01-29 08:44:21 -0500429 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800430 }
Paul Moore8cc44572008-01-29 08:44:21 -0500431#endif /* IPv6 */
432 default:
433 ret_val = -EINVAL;
434 }
435 if (ret_val == 0)
436 atomic_inc(&netlabel_mgmt_protocount);
437
438unlhsh_add_return:
439 rcu_read_unlock();
Paul Moore13541b32008-01-29 08:44:23 -0500440 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 Moore8cc44572008-01-29 08:44:21 -0500450 return ret_val;
451}
452
453/**
454 * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry
Paul Moore13541b32008-01-29 08:44:23 -0500455 * @net: network namespace
Paul Moore8cc44572008-01-29 08:44:21 -0500456 * @iface: interface entry
457 * @addr: IP address
458 * @mask: IP address mask
Paul Moore13541b32008-01-29 08:44:23 -0500459 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500460 *
461 * Description:
462 * Remove an IP address entry from the unlabeled connection hash table.
Paul Mooreb914f3a2010-04-01 10:43:57 +0000463 * Returns zero on success, negative values on failure.
Paul Moore8cc44572008-01-29 08:44:21 -0500464 *
465 */
Paul Moore13541b32008-01-29 08:44:23 -0500466static int netlbl_unlhsh_remove_addr4(struct net *net,
467 struct netlbl_unlhsh_iface *iface,
Paul Moore8cc44572008-01-29 08:44:21 -0500468 const struct in_addr *addr,
Paul Moore13541b32008-01-29 08:44:23 -0500469 const struct in_addr *mask,
470 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500471{
Paul Moore61e10682008-10-10 10:16:32 -0400472 struct netlbl_af4list *list_entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500473 struct netlbl_unlhsh_addr4 *entry;
Paul Moore61e10682008-10-10 10:16:32 -0400474 struct audit_buffer *audit_buf;
Paul Moore13541b32008-01-29 08:44:23 -0500475 struct net_device *dev;
Paul Moore61e10682008-10-10 10:16:32 -0400476 char *secctx;
Paul Moore13541b32008-01-29 08:44:23 -0500477 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500478
479 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400480 list_entry = netlbl_af4list_remove(addr->s_addr, mask->s_addr,
481 &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500482 spin_unlock(&netlbl_unlhsh_lock);
Paul Moored25830e2008-12-03 00:37:04 -0800483 if (list_entry != NULL)
484 entry = netlbl_unlhsh_addr4_entry(list_entry);
485 else
Paul Mooreec8f2372008-12-11 21:31:50 -0800486 entry = NULL;
Paul Moore8cc44572008-01-29 08:44:21 -0500487
Paul Moore13541b32008-01-29 08:44:23 -0500488 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 Moore63c41682008-10-10 10:16:32 -0400492 netlbl_af4list_audit_addr(audit_buf, 1,
493 (dev != NULL ? dev->name : NULL),
494 addr->s_addr, mask->s_addr);
Yajun Deng1160dfa2021-08-05 19:55:27 +0800495 dev_put(dev);
Paul Mooreec8f2372008-12-11 21:31:50 -0800496 if (entry != NULL &&
497 security_secid_to_secctx(entry->secid,
498 &secctx, &secctx_len) == 0) {
Paul Moore13541b32008-01-29 08:44:23 -0500499 audit_log_format(audit_buf, " sec_obj=%s", secctx);
500 security_release_secctx(secctx, secctx_len);
501 }
Paul Mooreec8f2372008-12-11 21:31:50 -0800502 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
Paul Moore13541b32008-01-29 08:44:23 -0500503 audit_log_end(audit_buf);
504 }
505
Paul Mooreec8f2372008-12-11 21:31:50 -0800506 if (entry == NULL)
507 return -ENOENT;
508
Lai Jiangshanc3b49422011-03-18 12:03:56 +0800509 kfree_rcu(entry, rcu);
Paul Mooreec8f2372008-12-11 21:31:50 -0800510 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -0500511}
512
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000513#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500514/**
515 * netlbl_unlhsh_remove_addr6 - Remove an IPv6 address entry
Paul Moore13541b32008-01-29 08:44:23 -0500516 * @net: network namespace
Paul Moore8cc44572008-01-29 08:44:21 -0500517 * @iface: interface entry
518 * @addr: IP address
519 * @mask: IP address mask
Paul Moore13541b32008-01-29 08:44:23 -0500520 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500521 *
522 * Description:
523 * Remove an IP address entry from the unlabeled connection hash table.
Paul Mooreb914f3a2010-04-01 10:43:57 +0000524 * Returns zero on success, negative values on failure.
Paul Moore8cc44572008-01-29 08:44:21 -0500525 *
526 */
Paul Moore13541b32008-01-29 08:44:23 -0500527static int netlbl_unlhsh_remove_addr6(struct net *net,
528 struct netlbl_unlhsh_iface *iface,
Paul Moore8cc44572008-01-29 08:44:21 -0500529 const struct in6_addr *addr,
Paul Moore13541b32008-01-29 08:44:23 -0500530 const struct in6_addr *mask,
531 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500532{
Paul Moore61e10682008-10-10 10:16:32 -0400533 struct netlbl_af6list *list_entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500534 struct netlbl_unlhsh_addr6 *entry;
Paul Moore61e10682008-10-10 10:16:32 -0400535 struct audit_buffer *audit_buf;
Paul Moore13541b32008-01-29 08:44:23 -0500536 struct net_device *dev;
Paul Moore61e10682008-10-10 10:16:32 -0400537 char *secctx;
Paul Moore13541b32008-01-29 08:44:23 -0500538 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500539
540 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400541 list_entry = netlbl_af6list_remove(addr, mask, &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500542 spin_unlock(&netlbl_unlhsh_lock);
Paul Moored25830e2008-12-03 00:37:04 -0800543 if (list_entry != NULL)
544 entry = netlbl_unlhsh_addr6_entry(list_entry);
545 else
Paul Mooreec8f2372008-12-11 21:31:50 -0800546 entry = NULL;
Paul Moore8cc44572008-01-29 08:44:21 -0500547
Paul Moore13541b32008-01-29 08:44:23 -0500548 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL,
549 audit_info);
550 if (audit_buf != NULL) {
551 dev = dev_get_by_index(net, iface->ifindex);
Paul Moore63c41682008-10-10 10:16:32 -0400552 netlbl_af6list_audit_addr(audit_buf, 1,
553 (dev != NULL ? dev->name : NULL),
554 addr, mask);
Yajun Deng1160dfa2021-08-05 19:55:27 +0800555 dev_put(dev);
Paul Mooreec8f2372008-12-11 21:31:50 -0800556 if (entry != NULL &&
557 security_secid_to_secctx(entry->secid,
558 &secctx, &secctx_len) == 0) {
Paul Moore13541b32008-01-29 08:44:23 -0500559 audit_log_format(audit_buf, " sec_obj=%s", secctx);
560 security_release_secctx(secctx, secctx_len);
561 }
Paul Mooreec8f2372008-12-11 21:31:50 -0800562 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
Paul Moore13541b32008-01-29 08:44:23 -0500563 audit_log_end(audit_buf);
564 }
565
Paul Mooreec8f2372008-12-11 21:31:50 -0800566 if (entry == NULL)
567 return -ENOENT;
568
Lai Jiangshan6b262232011-03-18 12:04:50 +0800569 kfree_rcu(entry, rcu);
Paul Mooreec8f2372008-12-11 21:31:50 -0800570 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -0500571}
572#endif /* IPv6 */
573
574/**
575 * netlbl_unlhsh_condremove_iface - Remove an interface entry
576 * @iface: the interface entry
577 *
578 * Description:
579 * Remove an interface entry from the unlabeled connection hash table if it is
580 * empty. An interface entry is considered to be empty if there are no
581 * address entries assigned to it.
582 *
583 */
584static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface *iface)
585{
Paul Moore61e10682008-10-10 10:16:32 -0400586 struct netlbl_af4list *iter4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000587#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400588 struct netlbl_af6list *iter6;
589#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500590
591 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400592 netlbl_af4list_foreach_rcu(iter4, &iface->addr4_list)
593 goto unlhsh_condremove_failure;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000594#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400595 netlbl_af6list_foreach_rcu(iter6, &iface->addr6_list)
596 goto unlhsh_condremove_failure;
597#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500598 iface->valid = 0;
599 if (iface->ifindex > 0)
600 list_del_rcu(&iface->list);
601 else
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000602 RCU_INIT_POINTER(netlbl_unlhsh_def, NULL);
Paul Moore8cc44572008-01-29 08:44:21 -0500603 spin_unlock(&netlbl_unlhsh_lock);
604
605 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
606 return;
607
608unlhsh_condremove_failure:
609 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore8cc44572008-01-29 08:44:21 -0500610}
611
612/**
613 * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table
614 * @net: network namespace
615 * @dev_name: interface name
616 * @addr: IP address in network byte order
617 * @mask: address mask in network byte order
618 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
Paul Moore13541b32008-01-29 08:44:23 -0500619 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500620 *
621 * Description:
622 * Removes and existing entry from the unlabeled connection hash table.
623 * Returns zero on success, negative values on failure.
624 *
625 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500626int netlbl_unlhsh_remove(struct net *net,
627 const char *dev_name,
628 const void *addr,
629 const void *mask,
630 u32 addr_len,
631 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500632{
633 int ret_val;
634 struct net_device *dev;
635 struct netlbl_unlhsh_iface *iface;
636
637 if (addr_len != sizeof(struct in_addr) &&
638 addr_len != sizeof(struct in6_addr))
639 return -EINVAL;
640
641 rcu_read_lock();
642 if (dev_name != NULL) {
Eric Dumazet122ec6f2009-11-05 20:53:47 -0800643 dev = dev_get_by_name_rcu(net, dev_name);
Paul Moore8cc44572008-01-29 08:44:21 -0500644 if (dev == NULL) {
645 ret_val = -ENODEV;
646 goto unlhsh_remove_return;
647 }
648 iface = netlbl_unlhsh_search_iface(dev->ifindex);
Paul Moore8cc44572008-01-29 08:44:21 -0500649 } else
650 iface = rcu_dereference(netlbl_unlhsh_def);
651 if (iface == NULL) {
652 ret_val = -ENOENT;
653 goto unlhsh_remove_return;
654 }
655 switch (addr_len) {
656 case sizeof(struct in_addr):
Paul Moore13541b32008-01-29 08:44:23 -0500657 ret_val = netlbl_unlhsh_remove_addr4(net,
658 iface, addr, mask,
659 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500660 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000661#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500662 case sizeof(struct in6_addr):
Paul Moore13541b32008-01-29 08:44:23 -0500663 ret_val = netlbl_unlhsh_remove_addr6(net,
664 iface, addr, mask,
665 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500666 break;
667#endif /* IPv6 */
668 default:
669 ret_val = -EINVAL;
670 }
671 if (ret_val == 0) {
672 netlbl_unlhsh_condremove_iface(iface);
673 atomic_dec(&netlabel_mgmt_protocount);
674 }
675
676unlhsh_remove_return:
677 rcu_read_unlock();
678 return ret_val;
679}
680
681/*
682 * General Helper Functions
683 */
684
685/**
686 * netlbl_unlhsh_netdev_handler - Network device notification handler
687 * @this: notifier block
688 * @event: the event
Jiri Pirko351638e2013-05-28 01:30:21 +0000689 * @ptr: the netdevice notifier info (cast to void)
Paul Moore8cc44572008-01-29 08:44:21 -0500690 *
691 * Description:
692 * Handle network device events, although at present all we care about is a
693 * network device going away. In the case of a device going away we clear any
694 * related entries from the unlabeled connection hash table.
695 *
696 */
697static int netlbl_unlhsh_netdev_handler(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +0000698 unsigned long event, void *ptr)
Paul Moore8cc44572008-01-29 08:44:21 -0500699{
Jiri Pirko351638e2013-05-28 01:30:21 +0000700 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Paul Moore8cc44572008-01-29 08:44:21 -0500701 struct netlbl_unlhsh_iface *iface = NULL;
702
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700703 if (!net_eq(dev_net(dev), &init_net))
Paul Moore8cc44572008-01-29 08:44:21 -0500704 return NOTIFY_DONE;
705
706 /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */
707 if (event == NETDEV_DOWN) {
708 spin_lock(&netlbl_unlhsh_lock);
709 iface = netlbl_unlhsh_search_iface(dev->ifindex);
710 if (iface != NULL && iface->valid) {
711 iface->valid = 0;
712 list_del_rcu(&iface->list);
713 } else
714 iface = NULL;
715 spin_unlock(&netlbl_unlhsh_lock);
716 }
717
718 if (iface != NULL)
719 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
720
721 return NOTIFY_DONE;
722}
723
724/**
Paul Moore32f50cd2006-09-28 14:51:47 -0700725 * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
726 * @value: desired value
Paul Moore95d4e6b2006-09-29 17:05:05 -0700727 * @audit_info: NetLabel audit information
Paul Moore32f50cd2006-09-28 14:51:47 -0700728 *
729 * Description:
730 * Set the value of the unlabeled accept flag to @value.
731 *
732 */
Paul Moore95d4e6b2006-09-29 17:05:05 -0700733static void netlbl_unlabel_acceptflg_set(u8 value,
734 struct netlbl_audit *audit_info)
Paul Moore32f50cd2006-09-28 14:51:47 -0700735{
Paul Moore95d4e6b2006-09-29 17:05:05 -0700736 struct audit_buffer *audit_buf;
737 u8 old_val;
738
Paul Moore4be27002007-10-26 04:29:08 -0700739 old_val = netlabel_unlabel_acceptflg;
Paul Moorecd287862006-11-17 17:38:44 -0500740 netlabel_unlabel_acceptflg = value;
Paul Moore95d4e6b2006-09-29 17:05:05 -0700741 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW,
742 audit_info);
Paul Moorede646882006-11-17 17:38:55 -0500743 if (audit_buf != NULL) {
744 audit_log_format(audit_buf,
745 " unlbl_accept=%u old=%u", value, old_val);
746 audit_log_end(audit_buf);
747 }
Paul Moore32f50cd2006-09-28 14:51:47 -0700748}
749
Paul Moore8cc44572008-01-29 08:44:21 -0500750/**
751 * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information
752 * @info: the Generic NETLINK info block
753 * @addr: the IP address
754 * @mask: the IP address mask
755 * @len: the address length
756 *
757 * Description:
758 * Examine the Generic NETLINK message and extract the IP address information.
759 * Returns zero on success, negative values on failure.
760 *
761 */
762static int netlbl_unlabel_addrinfo_get(struct genl_info *info,
763 void **addr,
764 void **mask,
765 u32 *len)
766{
767 u32 addr_len;
768
Sean Tranchettif88b4c02018-09-20 14:29:45 -0600769 if (info->attrs[NLBL_UNLABEL_A_IPV4ADDR] &&
770 info->attrs[NLBL_UNLABEL_A_IPV4MASK]) {
Paul Moore8cc44572008-01-29 08:44:21 -0500771 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
772 if (addr_len != sizeof(struct in_addr) &&
773 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV4MASK]))
774 return -EINVAL;
775 *len = addr_len;
776 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
777 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4MASK]);
778 return 0;
779 } else if (info->attrs[NLBL_UNLABEL_A_IPV6ADDR]) {
780 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
781 if (addr_len != sizeof(struct in6_addr) &&
782 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV6MASK]))
783 return -EINVAL;
784 *len = addr_len;
785 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
786 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6MASK]);
787 return 0;
788 }
789
790 return -EINVAL;
791}
792
Paul Moore32f50cd2006-09-28 14:51:47 -0700793/*
Paul Moore96cb8e32006-08-03 16:48:59 -0700794 * NetLabel Command Handlers
795 */
796
797/**
798 * netlbl_unlabel_accept - Handle an ACCEPT message
799 * @skb: the NETLINK buffer
800 * @info: the Generic NETLINK info block
801 *
802 * Description:
803 * Process a user generated ACCEPT message and set the accept flag accordingly.
804 * Returns zero on success, negative values on failure.
805 *
806 */
807static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info)
808{
Paul Moorefd385852006-09-25 15:56:37 -0700809 u8 value;
Paul Moore95d4e6b2006-09-29 17:05:05 -0700810 struct netlbl_audit audit_info;
Paul Moore96cb8e32006-08-03 16:48:59 -0700811
Paul Moorefd385852006-09-25 15:56:37 -0700812 if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) {
813 value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]);
Paul Moore96cb8e32006-08-03 16:48:59 -0700814 if (value == 1 || value == 0) {
Zheng Yejianf7e03182021-05-19 15:34:38 +0800815 netlbl_netlink_auditinfo(&audit_info);
Paul Moore95d4e6b2006-09-29 17:05:05 -0700816 netlbl_unlabel_acceptflg_set(value, &audit_info);
Paul Moore32f50cd2006-09-28 14:51:47 -0700817 return 0;
Paul Moore96cb8e32006-08-03 16:48:59 -0700818 }
819 }
820
Paul Moore32f50cd2006-09-28 14:51:47 -0700821 return -EINVAL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700822}
823
824/**
825 * netlbl_unlabel_list - Handle a LIST message
826 * @skb: the NETLINK buffer
827 * @info: the Generic NETLINK info block
828 *
829 * Description:
830 * Process a user generated LIST message and respond with the current status.
831 * Returns zero on success, negative values on failure.
832 *
833 */
834static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
835{
Paul Moorefd385852006-09-25 15:56:37 -0700836 int ret_val = -EINVAL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700837 struct sk_buff *ans_skb;
Paul Moorefd385852006-09-25 15:56:37 -0700838 void *data;
Paul Moore96cb8e32006-08-03 16:48:59 -0700839
Thomas Graf339bf982006-11-10 14:10:15 -0800840 ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Paul Moore96cb8e32006-08-03 16:48:59 -0700841 if (ans_skb == NULL)
842 goto list_failure;
Thomas Graf17c157c2006-11-14 19:46:02 -0800843 data = genlmsg_put_reply(ans_skb, info, &netlbl_unlabel_gnl_family,
844 0, NLBL_UNLABEL_C_LIST);
Paul Moorefd385852006-09-25 15:56:37 -0700845 if (data == NULL) {
846 ret_val = -ENOMEM;
Paul Moore96cb8e32006-08-03 16:48:59 -0700847 goto list_failure;
Paul Moorefd385852006-09-25 15:56:37 -0700848 }
Paul Moore96cb8e32006-08-03 16:48:59 -0700849
Paul Moorefd385852006-09-25 15:56:37 -0700850 ret_val = nla_put_u8(ans_skb,
851 NLBL_UNLABEL_A_ACPTFLG,
Paul Moorecd287862006-11-17 17:38:44 -0500852 netlabel_unlabel_acceptflg);
Paul Moore96cb8e32006-08-03 16:48:59 -0700853 if (ret_val != 0)
854 goto list_failure;
855
Paul Moorefd385852006-09-25 15:56:37 -0700856 genlmsg_end(ans_skb, data);
Denis V. Lunevfe785be2008-07-10 16:53:39 -0700857 return genlmsg_reply(ans_skb, info);
Paul Moore96cb8e32006-08-03 16:48:59 -0700858
859list_failure:
Patrick McHardyb08d5842007-02-27 09:57:37 -0800860 kfree_skb(ans_skb);
Paul Moore96cb8e32006-08-03 16:48:59 -0700861 return ret_val;
862}
863
Paul Moore8cc44572008-01-29 08:44:21 -0500864/**
865 * netlbl_unlabel_staticadd - Handle a STATICADD message
866 * @skb: the NETLINK buffer
867 * @info: the Generic NETLINK info block
868 *
869 * Description:
870 * Process a user generated STATICADD message and add a new unlabeled
871 * connection entry to the hash table. Returns zero on success, negative
872 * values on failure.
873 *
874 */
875static int netlbl_unlabel_staticadd(struct sk_buff *skb,
876 struct genl_info *info)
877{
878 int ret_val;
879 char *dev_name;
880 void *addr;
881 void *mask;
882 u32 addr_len;
883 u32 secid;
Paul Moore13541b32008-01-29 08:44:23 -0500884 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500885
886 /* Don't allow users to add both IPv4 and IPv6 addresses for a
887 * single entry. However, allow users to create two entries, one each
888 * for IPv4 and IPv4, with the same LSM security context which should
889 * achieve the same result. */
890 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
891 !info->attrs[NLBL_UNLABEL_A_IFACE] ||
892 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
893 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
894 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
895 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
896 return -EINVAL;
897
Zheng Yejianf7e03182021-05-19 15:34:38 +0800898 netlbl_netlink_auditinfo(&audit_info);
Paul Moore13541b32008-01-29 08:44:23 -0500899
Paul Moore8cc44572008-01-29 08:44:21 -0500900 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
901 if (ret_val != 0)
902 return ret_val;
903 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
904 ret_val = security_secctx_to_secid(
905 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
906 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
907 &secid);
908 if (ret_val != 0)
909 return ret_val;
910
911 return netlbl_unlhsh_add(&init_net,
Paul Moore13541b32008-01-29 08:44:23 -0500912 dev_name, addr, mask, addr_len, secid,
913 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500914}
915
916/**
917 * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message
918 * @skb: the NETLINK buffer
919 * @info: the Generic NETLINK info block
920 *
921 * Description:
922 * Process a user generated STATICADDDEF message and add a new default
923 * unlabeled connection entry. Returns zero on success, negative values on
924 * failure.
925 *
926 */
927static int netlbl_unlabel_staticadddef(struct sk_buff *skb,
928 struct genl_info *info)
929{
930 int ret_val;
931 void *addr;
932 void *mask;
933 u32 addr_len;
934 u32 secid;
Paul Moore13541b32008-01-29 08:44:23 -0500935 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500936
937 /* Don't allow users to add both IPv4 and IPv6 addresses for a
938 * single entry. However, allow users to create two entries, one each
939 * for IPv4 and IPv6, with the same LSM security context which should
940 * achieve the same result. */
941 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
942 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
943 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
944 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
945 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
946 return -EINVAL;
947
Zheng Yejianf7e03182021-05-19 15:34:38 +0800948 netlbl_netlink_auditinfo(&audit_info);
Paul Moore13541b32008-01-29 08:44:23 -0500949
Paul Moore8cc44572008-01-29 08:44:21 -0500950 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
951 if (ret_val != 0)
952 return ret_val;
953 ret_val = security_secctx_to_secid(
954 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
955 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
956 &secid);
957 if (ret_val != 0)
958 return ret_val;
959
Paul Moore13541b32008-01-29 08:44:23 -0500960 return netlbl_unlhsh_add(&init_net,
961 NULL, addr, mask, addr_len, secid,
962 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500963}
964
965/**
966 * netlbl_unlabel_staticremove - Handle a STATICREMOVE message
967 * @skb: the NETLINK buffer
968 * @info: the Generic NETLINK info block
969 *
970 * Description:
971 * Process a user generated STATICREMOVE message and remove the specified
972 * unlabeled connection entry. Returns zero on success, negative values on
973 * failure.
974 *
975 */
976static int netlbl_unlabel_staticremove(struct sk_buff *skb,
977 struct genl_info *info)
978{
979 int ret_val;
980 char *dev_name;
981 void *addr;
982 void *mask;
983 u32 addr_len;
Paul Moore13541b32008-01-29 08:44:23 -0500984 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500985
986 /* See the note in netlbl_unlabel_staticadd() about not allowing both
987 * IPv4 and IPv6 in the same entry. */
988 if (!info->attrs[NLBL_UNLABEL_A_IFACE] ||
989 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
990 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
991 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
992 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
993 return -EINVAL;
994
Zheng Yejianf7e03182021-05-19 15:34:38 +0800995 netlbl_netlink_auditinfo(&audit_info);
Paul Moore13541b32008-01-29 08:44:23 -0500996
Paul Moore8cc44572008-01-29 08:44:21 -0500997 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
998 if (ret_val != 0)
999 return ret_val;
1000 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
1001
Paul Moore13541b32008-01-29 08:44:23 -05001002 return netlbl_unlhsh_remove(&init_net,
1003 dev_name, addr, mask, addr_len,
1004 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -05001005}
1006
1007/**
1008 * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message
1009 * @skb: the NETLINK buffer
1010 * @info: the Generic NETLINK info block
1011 *
1012 * Description:
1013 * Process a user generated STATICREMOVEDEF message and remove the default
1014 * unlabeled connection entry. Returns zero on success, negative values on
1015 * failure.
1016 *
1017 */
1018static int netlbl_unlabel_staticremovedef(struct sk_buff *skb,
1019 struct genl_info *info)
1020{
1021 int ret_val;
1022 void *addr;
1023 void *mask;
1024 u32 addr_len;
Paul Moore13541b32008-01-29 08:44:23 -05001025 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -05001026
1027 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1028 * IPv4 and IPv6 in the same entry. */
1029 if (!((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
1030 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
1031 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
1032 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
1033 return -EINVAL;
1034
Zheng Yejianf7e03182021-05-19 15:34:38 +08001035 netlbl_netlink_auditinfo(&audit_info);
Paul Moore13541b32008-01-29 08:44:23 -05001036
Paul Moore8cc44572008-01-29 08:44:21 -05001037 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
1038 if (ret_val != 0)
1039 return ret_val;
1040
Paul Moore13541b32008-01-29 08:44:23 -05001041 return netlbl_unlhsh_remove(&init_net,
1042 NULL, addr, mask, addr_len,
1043 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -05001044}
1045
1046
1047/**
1048 * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF]
1049 * @cmd: command/message
1050 * @iface: the interface entry
1051 * @addr4: the IPv4 address entry
1052 * @addr6: the IPv6 address entry
1053 * @arg: the netlbl_unlhsh_walk_arg structure
1054 *
1055 * Description:
1056 * This function is designed to be used to generate a response for a
1057 * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6
1058 * can be specified, not both, the other unspecified entry should be set to
1059 * NULL by the caller. Returns the size of the message on success, negative
1060 * values on failure.
1061 *
1062 */
1063static int netlbl_unlabel_staticlist_gen(u32 cmd,
1064 const struct netlbl_unlhsh_iface *iface,
1065 const struct netlbl_unlhsh_addr4 *addr4,
1066 const struct netlbl_unlhsh_addr6 *addr6,
1067 void *arg)
1068{
1069 int ret_val = -ENOMEM;
1070 struct netlbl_unlhsh_walk_arg *cb_arg = arg;
1071 struct net_device *dev;
1072 void *data;
1073 u32 secid;
1074 char *secctx;
1075 u32 secctx_len;
1076
Eric W. Biederman15e47302012-09-07 20:12:54 +00001077 data = genlmsg_put(cb_arg->skb, NETLINK_CB(cb_arg->nl_cb->skb).portid,
Paul Moore8cc44572008-01-29 08:44:21 -05001078 cb_arg->seq, &netlbl_unlabel_gnl_family,
1079 NLM_F_MULTI, cmd);
1080 if (data == NULL)
1081 goto list_cb_failure;
1082
1083 if (iface->ifindex > 0) {
1084 dev = dev_get_by_index(&init_net, iface->ifindex);
Jesper Juhl794eb6b2008-04-17 23:22:54 -07001085 if (!dev) {
1086 ret_val = -ENODEV;
1087 goto list_cb_failure;
1088 }
Paul Moore8cc44572008-01-29 08:44:21 -05001089 ret_val = nla_put_string(cb_arg->skb,
1090 NLBL_UNLABEL_A_IFACE, dev->name);
1091 dev_put(dev);
1092 if (ret_val != 0)
1093 goto list_cb_failure;
1094 }
1095
1096 if (addr4) {
1097 struct in_addr addr_struct;
1098
Paul Moore61e10682008-10-10 10:16:32 -04001099 addr_struct.s_addr = addr4->list.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02001100 ret_val = nla_put_in_addr(cb_arg->skb,
1101 NLBL_UNLABEL_A_IPV4ADDR,
1102 addr_struct.s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001103 if (ret_val != 0)
1104 goto list_cb_failure;
1105
Paul Moore61e10682008-10-10 10:16:32 -04001106 addr_struct.s_addr = addr4->list.mask;
Jiri Benc930345e2015-03-29 16:59:25 +02001107 ret_val = nla_put_in_addr(cb_arg->skb,
1108 NLBL_UNLABEL_A_IPV4MASK,
1109 addr_struct.s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001110 if (ret_val != 0)
1111 goto list_cb_failure;
1112
1113 secid = addr4->secid;
1114 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02001115 ret_val = nla_put_in6_addr(cb_arg->skb,
1116 NLBL_UNLABEL_A_IPV6ADDR,
1117 &addr6->list.addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001118 if (ret_val != 0)
1119 goto list_cb_failure;
1120
Jiri Benc930345e2015-03-29 16:59:25 +02001121 ret_val = nla_put_in6_addr(cb_arg->skb,
1122 NLBL_UNLABEL_A_IPV6MASK,
1123 &addr6->list.mask);
Paul Moore8cc44572008-01-29 08:44:21 -05001124 if (ret_val != 0)
1125 goto list_cb_failure;
1126
1127 secid = addr6->secid;
1128 }
1129
1130 ret_val = security_secid_to_secctx(secid, &secctx, &secctx_len);
1131 if (ret_val != 0)
1132 goto list_cb_failure;
1133 ret_val = nla_put(cb_arg->skb,
1134 NLBL_UNLABEL_A_SECCTX,
1135 secctx_len,
1136 secctx);
1137 security_release_secctx(secctx, secctx_len);
1138 if (ret_val != 0)
1139 goto list_cb_failure;
1140
1141 cb_arg->seq++;
Johannes Berg053c0952015-01-16 22:09:00 +01001142 genlmsg_end(cb_arg->skb, data);
1143 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -05001144
1145list_cb_failure:
1146 genlmsg_cancel(cb_arg->skb, data);
1147 return ret_val;
1148}
1149
1150/**
1151 * netlbl_unlabel_staticlist - Handle a STATICLIST message
1152 * @skb: the NETLINK buffer
1153 * @cb: the NETLINK callback
1154 *
1155 * Description:
1156 * Process a user generated STATICLIST message and dump the unlabeled
1157 * connection hash table in a form suitable for use in a kernel generated
1158 * STATICLIST message. Returns the length of @skb.
1159 *
1160 */
1161static int netlbl_unlabel_staticlist(struct sk_buff *skb,
1162 struct netlink_callback *cb)
1163{
1164 struct netlbl_unlhsh_walk_arg cb_arg;
1165 u32 skip_bkt = cb->args[0];
1166 u32 skip_chain = cb->args[1];
Paul Moore866358e2020-11-08 09:08:26 -05001167 u32 skip_addr4 = cb->args[2];
Paul Moore1ba86d42020-11-13 16:30:40 -05001168 u32 iter_bkt, iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0;
Paul Moore8cc44572008-01-29 08:44:21 -05001169 struct netlbl_unlhsh_iface *iface;
Paul Moore56196702008-10-10 10:16:29 -04001170 struct list_head *iter_list;
Paul Moore61e10682008-10-10 10:16:32 -04001171 struct netlbl_af4list *addr4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001172#if IS_ENABLED(CONFIG_IPV6)
Paul Moore866358e2020-11-08 09:08:26 -05001173 u32 skip_addr6 = cb->args[3];
Paul Moore61e10682008-10-10 10:16:32 -04001174 struct netlbl_af6list *addr6;
1175#endif
Paul Moore8cc44572008-01-29 08:44:21 -05001176
1177 cb_arg.nl_cb = cb;
1178 cb_arg.skb = skb;
1179 cb_arg.seq = cb->nlh->nlmsg_seq;
1180
1181 rcu_read_lock();
1182 for (iter_bkt = skip_bkt;
1183 iter_bkt < rcu_dereference(netlbl_unlhsh)->size;
Paul Moore866358e2020-11-08 09:08:26 -05001184 iter_bkt++) {
Paul Moore56196702008-10-10 10:16:29 -04001185 iter_list = &rcu_dereference(netlbl_unlhsh)->tbl[iter_bkt];
1186 list_for_each_entry_rcu(iface, iter_list, list) {
Paul Moore8cc44572008-01-29 08:44:21 -05001187 if (!iface->valid ||
1188 iter_chain++ < skip_chain)
1189 continue;
Paul Moore61e10682008-10-10 10:16:32 -04001190 netlbl_af4list_foreach_rcu(addr4,
1191 &iface->addr4_list) {
Paul Moore866358e2020-11-08 09:08:26 -05001192 if (iter_addr4++ < skip_addr4)
Paul Moore8cc44572008-01-29 08:44:21 -05001193 continue;
1194 if (netlbl_unlabel_staticlist_gen(
Paul Moore61e10682008-10-10 10:16:32 -04001195 NLBL_UNLABEL_C_STATICLIST,
1196 iface,
1197 netlbl_unlhsh_addr4_entry(addr4),
1198 NULL,
1199 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001200 iter_addr4--;
1201 iter_chain--;
1202 goto unlabel_staticlist_return;
1203 }
1204 }
Paul Moore866358e2020-11-08 09:08:26 -05001205 iter_addr4 = 0;
1206 skip_addr4 = 0;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001207#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001208 netlbl_af6list_foreach_rcu(addr6,
1209 &iface->addr6_list) {
Paul Moore866358e2020-11-08 09:08:26 -05001210 if (iter_addr6++ < skip_addr6)
Paul Moore8cc44572008-01-29 08:44:21 -05001211 continue;
1212 if (netlbl_unlabel_staticlist_gen(
Paul Moore61e10682008-10-10 10:16:32 -04001213 NLBL_UNLABEL_C_STATICLIST,
1214 iface,
1215 NULL,
1216 netlbl_unlhsh_addr6_entry(addr6),
1217 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001218 iter_addr6--;
1219 iter_chain--;
1220 goto unlabel_staticlist_return;
1221 }
1222 }
Paul Moore866358e2020-11-08 09:08:26 -05001223 iter_addr6 = 0;
1224 skip_addr6 = 0;
Paul Moore61e10682008-10-10 10:16:32 -04001225#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -05001226 }
Paul Moore866358e2020-11-08 09:08:26 -05001227 iter_chain = 0;
1228 skip_chain = 0;
Paul Moore8cc44572008-01-29 08:44:21 -05001229 }
1230
1231unlabel_staticlist_return:
1232 rcu_read_unlock();
Paul Moore0c1233a2013-03-06 11:45:24 +00001233 cb->args[0] = iter_bkt;
1234 cb->args[1] = iter_chain;
1235 cb->args[2] = iter_addr4;
1236 cb->args[3] = iter_addr6;
Paul Moore8cc44572008-01-29 08:44:21 -05001237 return skb->len;
1238}
1239
1240/**
1241 * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message
1242 * @skb: the NETLINK buffer
1243 * @cb: the NETLINK callback
1244 *
1245 * Description:
1246 * Process a user generated STATICLISTDEF message and dump the default
1247 * unlabeled connection entry in a form suitable for use in a kernel generated
1248 * STATICLISTDEF message. Returns the length of @skb.
1249 *
1250 */
1251static int netlbl_unlabel_staticlistdef(struct sk_buff *skb,
1252 struct netlink_callback *cb)
1253{
1254 struct netlbl_unlhsh_walk_arg cb_arg;
1255 struct netlbl_unlhsh_iface *iface;
Paul Moorea6a8fe92013-03-08 09:45:39 -05001256 u32 iter_addr4 = 0, iter_addr6 = 0;
Paul Moore61e10682008-10-10 10:16:32 -04001257 struct netlbl_af4list *addr4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001258#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001259 struct netlbl_af6list *addr6;
1260#endif
Paul Moore8cc44572008-01-29 08:44:21 -05001261
1262 cb_arg.nl_cb = cb;
1263 cb_arg.skb = skb;
1264 cb_arg.seq = cb->nlh->nlmsg_seq;
1265
1266 rcu_read_lock();
1267 iface = rcu_dereference(netlbl_unlhsh_def);
1268 if (iface == NULL || !iface->valid)
1269 goto unlabel_staticlistdef_return;
1270
Paul Moore61e10682008-10-10 10:16:32 -04001271 netlbl_af4list_foreach_rcu(addr4, &iface->addr4_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001272 if (iter_addr4++ < cb->args[0])
Paul Moore8cc44572008-01-29 08:44:21 -05001273 continue;
1274 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
Paul Moore61e10682008-10-10 10:16:32 -04001275 iface,
1276 netlbl_unlhsh_addr4_entry(addr4),
1277 NULL,
1278 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001279 iter_addr4--;
1280 goto unlabel_staticlistdef_return;
1281 }
1282 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001283#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001284 netlbl_af6list_foreach_rcu(addr6, &iface->addr6_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001285 if (iter_addr6++ < cb->args[1])
Paul Moore8cc44572008-01-29 08:44:21 -05001286 continue;
1287 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
Paul Moore61e10682008-10-10 10:16:32 -04001288 iface,
1289 NULL,
1290 netlbl_unlhsh_addr6_entry(addr6),
1291 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001292 iter_addr6--;
1293 goto unlabel_staticlistdef_return;
1294 }
1295 }
Paul Moore61e10682008-10-10 10:16:32 -04001296#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -05001297
1298unlabel_staticlistdef_return:
1299 rcu_read_unlock();
Paul Moore0c1233a2013-03-06 11:45:24 +00001300 cb->args[0] = iter_addr4;
1301 cb->args[1] = iter_addr6;
Paul Moore8cc44572008-01-29 08:44:21 -05001302 return skb->len;
1303}
Paul Moore96cb8e32006-08-03 16:48:59 -07001304
1305/*
1306 * NetLabel Generic NETLINK Command Definitions
1307 */
1308
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001309static const struct genl_small_ops netlbl_unlabel_genl_ops[] = {
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001310 {
Paul Moore8cc44572008-01-29 08:44:21 -05001311 .cmd = NLBL_UNLABEL_C_STATICADD,
Johannes Bergef6243a2019-04-26 14:07:31 +02001312 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001313 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001314 .doit = netlbl_unlabel_staticadd,
1315 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001316 },
1317 {
Paul Moore8cc44572008-01-29 08:44:21 -05001318 .cmd = NLBL_UNLABEL_C_STATICREMOVE,
Johannes Bergef6243a2019-04-26 14:07:31 +02001319 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001320 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001321 .doit = netlbl_unlabel_staticremove,
1322 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001323 },
1324 {
Paul Moore8cc44572008-01-29 08:44:21 -05001325 .cmd = NLBL_UNLABEL_C_STATICLIST,
Johannes Bergef6243a2019-04-26 14:07:31 +02001326 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001327 .flags = 0,
Paul Moore8cc44572008-01-29 08:44:21 -05001328 .doit = NULL,
1329 .dumpit = netlbl_unlabel_staticlist,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001330 },
1331 {
Paul Moore8cc44572008-01-29 08:44:21 -05001332 .cmd = NLBL_UNLABEL_C_STATICADDDEF,
Johannes Bergef6243a2019-04-26 14:07:31 +02001333 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001334 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001335 .doit = netlbl_unlabel_staticadddef,
1336 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001337 },
1338 {
Paul Moore8cc44572008-01-29 08:44:21 -05001339 .cmd = NLBL_UNLABEL_C_STATICREMOVEDEF,
Johannes Bergef6243a2019-04-26 14:07:31 +02001340 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001341 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001342 .doit = netlbl_unlabel_staticremovedef,
1343 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001344 },
1345 {
Paul Moore8cc44572008-01-29 08:44:21 -05001346 .cmd = NLBL_UNLABEL_C_STATICLISTDEF,
Johannes Bergef6243a2019-04-26 14:07:31 +02001347 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001348 .flags = 0,
Paul Moore8cc44572008-01-29 08:44:21 -05001349 .doit = NULL,
1350 .dumpit = netlbl_unlabel_staticlistdef,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001351 },
1352 {
Paul Moore96cb8e32006-08-03 16:48:59 -07001353 .cmd = NLBL_UNLABEL_C_ACCEPT,
Johannes Bergef6243a2019-04-26 14:07:31 +02001354 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moorefd385852006-09-25 15:56:37 -07001355 .flags = GENL_ADMIN_PERM,
Paul Moore96cb8e32006-08-03 16:48:59 -07001356 .doit = netlbl_unlabel_accept,
1357 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001358 },
1359 {
Paul Moore96cb8e32006-08-03 16:48:59 -07001360 .cmd = NLBL_UNLABEL_C_LIST,
Johannes Bergef6243a2019-04-26 14:07:31 +02001361 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore96cb8e32006-08-03 16:48:59 -07001362 .flags = 0,
1363 .doit = netlbl_unlabel_list,
1364 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001365 },
Paul Moore96cb8e32006-08-03 16:48:59 -07001366};
1367
Johannes Berg56989f62016-10-24 14:40:05 +02001368static struct genl_family netlbl_unlabel_gnl_family __ro_after_init = {
Johannes Berg489111e2016-10-24 14:40:03 +02001369 .hdrsize = 0,
1370 .name = NETLBL_NLTYPE_UNLABELED_NAME,
1371 .version = NETLBL_PROTO_VERSION,
1372 .maxattr = NLBL_UNLABEL_A_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001373 .policy = netlbl_unlabel_genl_policy,
Johannes Berg489111e2016-10-24 14:40:03 +02001374 .module = THIS_MODULE,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001375 .small_ops = netlbl_unlabel_genl_ops,
1376 .n_small_ops = ARRAY_SIZE(netlbl_unlabel_genl_ops),
Johannes Berg489111e2016-10-24 14:40:03 +02001377};
1378
Paul Moore96cb8e32006-08-03 16:48:59 -07001379/*
1380 * NetLabel Generic NETLINK Protocol Functions
1381 */
1382
1383/**
1384 * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
1385 *
1386 * Description:
1387 * Register the unlabeled packet NetLabel component with the Generic NETLINK
1388 * mechanism. Returns zero on success, negative values on failure.
1389 *
1390 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001391int __init netlbl_unlabel_genl_init(void)
Paul Moore96cb8e32006-08-03 16:48:59 -07001392{
Johannes Berg489111e2016-10-24 14:40:03 +02001393 return genl_register_family(&netlbl_unlabel_gnl_family);
Paul Moore96cb8e32006-08-03 16:48:59 -07001394}
1395
1396/*
1397 * NetLabel KAPI Hooks
1398 */
1399
Paul Moore8cc44572008-01-29 08:44:21 -05001400static struct notifier_block netlbl_unlhsh_netdev_notifier = {
1401 .notifier_call = netlbl_unlhsh_netdev_handler,
1402};
1403
1404/**
1405 * netlbl_unlabel_init - Initialize the unlabeled connection hash table
1406 * @size: the number of bits to use for the hash buckets
1407 *
1408 * Description:
1409 * Initializes the unlabeled connection hash table and registers a network
1410 * device notification handler. This function should only be called by the
1411 * NetLabel subsystem itself during initialization. Returns zero on success,
1412 * non-zero values on error.
1413 *
1414 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001415int __init netlbl_unlabel_init(u32 size)
Paul Moore8cc44572008-01-29 08:44:21 -05001416{
1417 u32 iter;
1418 struct netlbl_unlhsh_tbl *hsh_tbl;
1419
1420 if (size == 0)
1421 return -EINVAL;
1422
1423 hsh_tbl = kmalloc(sizeof(*hsh_tbl), GFP_KERNEL);
1424 if (hsh_tbl == NULL)
1425 return -ENOMEM;
1426 hsh_tbl->size = 1 << size;
1427 hsh_tbl->tbl = kcalloc(hsh_tbl->size,
1428 sizeof(struct list_head),
1429 GFP_KERNEL);
1430 if (hsh_tbl->tbl == NULL) {
1431 kfree(hsh_tbl);
1432 return -ENOMEM;
1433 }
1434 for (iter = 0; iter < hsh_tbl->size; iter++)
1435 INIT_LIST_HEAD(&hsh_tbl->tbl[iter]);
1436
Paul Moore8cc44572008-01-29 08:44:21 -05001437 spin_lock(&netlbl_unlhsh_lock);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001438 rcu_assign_pointer(netlbl_unlhsh, hsh_tbl);
Paul Moore8cc44572008-01-29 08:44:21 -05001439 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore8cc44572008-01-29 08:44:21 -05001440
1441 register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier);
1442
1443 return 0;
1444}
1445
Paul Moore96cb8e32006-08-03 16:48:59 -07001446/**
1447 * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
Paul Moore8cc44572008-01-29 08:44:21 -05001448 * @skb: the packet
1449 * @family: protocol family
Paul Moore96cb8e32006-08-03 16:48:59 -07001450 * @secattr: the security attributes
1451 *
1452 * Description:
1453 * Determine the security attributes, if any, for an unlabled packet and return
1454 * them in @secattr. Returns zero on success and negative values on failure.
1455 *
1456 */
Paul Moore8cc44572008-01-29 08:44:21 -05001457int netlbl_unlabel_getattr(const struct sk_buff *skb,
1458 u16 family,
1459 struct netlbl_lsm_secattr *secattr)
Paul Moore96cb8e32006-08-03 16:48:59 -07001460{
Paul Moore8cc44572008-01-29 08:44:21 -05001461 struct netlbl_unlhsh_iface *iface;
1462
1463 rcu_read_lock();
Paul Mooreb914f3a2010-04-01 10:43:57 +00001464 iface = netlbl_unlhsh_search_iface(skb->skb_iif);
Paul Moore8cc44572008-01-29 08:44:21 -05001465 if (iface == NULL)
Paul Mooreb914f3a2010-04-01 10:43:57 +00001466 iface = rcu_dereference(netlbl_unlhsh_def);
1467 if (iface == NULL || !iface->valid)
Paul Moore8cc44572008-01-29 08:44:21 -05001468 goto unlabel_getattr_nolabel;
Richard Haines213d7f92017-11-13 20:54:22 +00001469
1470#if IS_ENABLED(CONFIG_IPV6)
1471 /* When resolving a fallback label, check the sk_buff version as
1472 * it is possible (e.g. SCTP) to have family = PF_INET6 while
1473 * receiving ip_hdr(skb)->version = 4.
1474 */
1475 if (family == PF_INET6 && ip_hdr(skb)->version == 4)
1476 family = PF_INET;
1477#endif /* IPv6 */
1478
Paul Moore8cc44572008-01-29 08:44:21 -05001479 switch (family) {
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001480 case PF_INET: {
1481 struct iphdr *hdr4;
Paul Moore61e10682008-10-10 10:16:32 -04001482 struct netlbl_af4list *addr4;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001483
Paul Moore8cc44572008-01-29 08:44:21 -05001484 hdr4 = ip_hdr(skb);
Paul Moore61e10682008-10-10 10:16:32 -04001485 addr4 = netlbl_af4list_search(hdr4->saddr,
1486 &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -05001487 if (addr4 == NULL)
1488 goto unlabel_getattr_nolabel;
Paul Moore61e10682008-10-10 10:16:32 -04001489 secattr->attr.secid = netlbl_unlhsh_addr4_entry(addr4)->secid;
Paul Moore8cc44572008-01-29 08:44:21 -05001490 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001491 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001492#if IS_ENABLED(CONFIG_IPV6)
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001493 case PF_INET6: {
1494 struct ipv6hdr *hdr6;
Paul Moore61e10682008-10-10 10:16:32 -04001495 struct netlbl_af6list *addr6;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001496
Paul Moore8cc44572008-01-29 08:44:21 -05001497 hdr6 = ipv6_hdr(skb);
Paul Moore61e10682008-10-10 10:16:32 -04001498 addr6 = netlbl_af6list_search(&hdr6->saddr,
1499 &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -05001500 if (addr6 == NULL)
1501 goto unlabel_getattr_nolabel;
Paul Moore61e10682008-10-10 10:16:32 -04001502 secattr->attr.secid = netlbl_unlhsh_addr6_entry(addr6)->secid;
Paul Moore8cc44572008-01-29 08:44:21 -05001503 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001504 }
Paul Moore8cc44572008-01-29 08:44:21 -05001505#endif /* IPv6 */
1506 default:
1507 goto unlabel_getattr_nolabel;
1508 }
1509 rcu_read_unlock();
1510
1511 secattr->flags |= NETLBL_SECATTR_SECID;
1512 secattr->type = NETLBL_NLTYPE_UNLABELED;
1513 return 0;
1514
1515unlabel_getattr_nolabel:
1516 rcu_read_unlock();
Paul Moorec783f1c2008-01-29 08:37:52 -05001517 if (netlabel_unlabel_acceptflg == 0)
1518 return -ENOMSG;
Paul Moore16efd452008-01-29 08:37:59 -05001519 secattr->type = NETLBL_NLTYPE_UNLABELED;
Paul Moorec783f1c2008-01-29 08:37:52 -05001520 return 0;
Paul Moore96cb8e32006-08-03 16:48:59 -07001521}
1522
1523/**
1524 * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
1525 *
1526 * Description:
1527 * Set the default NetLabel configuration to allow incoming unlabeled packets
1528 * and to send unlabeled network traffic by default.
1529 *
1530 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001531int __init netlbl_unlabel_defconf(void)
Paul Moore96cb8e32006-08-03 16:48:59 -07001532{
1533 int ret_val;
1534 struct netlbl_dom_map *entry;
Paul Moore95d4e6b2006-09-29 17:05:05 -07001535 struct netlbl_audit audit_info;
Paul Moore32f50cd2006-09-28 14:51:47 -07001536
Paul Moore95d4e6b2006-09-29 17:05:05 -07001537 /* Only the kernel is allowed to call this function and the only time
1538 * it is called is at bootup before the audit subsystem is reporting
1539 * messages so don't worry to much about these values. */
Paul Moore63269482021-09-29 11:01:21 -04001540 security_current_getsecid_subj(&audit_info.secid);
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001541 audit_info.loginuid = GLOBAL_ROOT_UID;
Eric Paris25323862008-04-18 10:09:25 -04001542 audit_info.sessionid = 0;
Paul Moore96cb8e32006-08-03 16:48:59 -07001543
1544 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1545 if (entry == NULL)
1546 return -ENOMEM;
Huw Davies8f18e672016-06-27 15:02:46 -04001547 entry->family = AF_UNSPEC;
Paul Moore6a8b7f02013-08-02 14:45:08 -04001548 entry->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore95d4e6b2006-09-29 17:05:05 -07001549 ret_val = netlbl_domhsh_add_default(entry, &audit_info);
Paul Moore96cb8e32006-08-03 16:48:59 -07001550 if (ret_val != 0)
1551 return ret_val;
1552
Paul Moore95d4e6b2006-09-29 17:05:05 -07001553 netlbl_unlabel_acceptflg_set(1, &audit_info);
Paul Moore96cb8e32006-08-03 16:48:59 -07001554
1555 return 0;
1556}