blob: d2e4ab8d1cb1008da0a9577667d1206d4c0bb309 [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];
Paul Moore56196702008-10-10 10:16:29 -0400210 list_for_each_entry_rcu(iter, bkt_list, list)
Paul Moore8cc44572008-01-29 08:44:21 -0500211 if (iter->valid && iter->ifindex == ifindex)
212 return iter;
213
214 return NULL;
215}
216
217/**
Paul Moore8cc44572008-01-29 08:44:21 -0500218 * netlbl_unlhsh_add_addr4 - Add a new IPv4 address entry to the hash table
219 * @iface: the associated interface entry
220 * @addr: IPv4 address in network byte order
221 * @mask: IPv4 address mask in network byte order
222 * @secid: LSM secid value for entry
223 *
224 * Description:
225 * Add a new address entry into the unlabeled connection hash table using the
226 * interface entry specified by @iface. On success zero is returned, otherwise
Paul Mooreb914f3a2010-04-01 10:43:57 +0000227 * a negative value is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500228 *
229 */
230static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface *iface,
231 const struct in_addr *addr,
232 const struct in_addr *mask,
233 u32 secid)
234{
Paul Moore61e10682008-10-10 10:16:32 -0400235 int ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500236 struct netlbl_unlhsh_addr4 *entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500237
238 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
239 if (entry == NULL)
240 return -ENOMEM;
241
Paul Moore61e10682008-10-10 10:16:32 -0400242 entry->list.addr = addr->s_addr & mask->s_addr;
243 entry->list.mask = mask->s_addr;
244 entry->list.valid = 1;
Paul Moore61e10682008-10-10 10:16:32 -0400245 entry->secid = secid;
Paul Moore8cc44572008-01-29 08:44:21 -0500246
247 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400248 ret_val = netlbl_af4list_add(&entry->list, &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500249 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400250
251 if (ret_val != 0)
252 kfree(entry);
253 return ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500254}
255
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000256#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500257/**
258 * netlbl_unlhsh_add_addr6 - Add a new IPv6 address entry to the hash table
259 * @iface: the associated interface entry
260 * @addr: IPv6 address in network byte order
261 * @mask: IPv6 address mask in network byte order
262 * @secid: LSM secid value for entry
263 *
264 * Description:
265 * Add a new address entry into the unlabeled connection hash table using the
266 * interface entry specified by @iface. On success zero is returned, otherwise
Paul Mooreb914f3a2010-04-01 10:43:57 +0000267 * a negative value is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500268 *
269 */
270static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface *iface,
271 const struct in6_addr *addr,
272 const struct in6_addr *mask,
273 u32 secid)
274{
Paul Moore61e10682008-10-10 10:16:32 -0400275 int ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500276 struct netlbl_unlhsh_addr6 *entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500277
278 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
279 if (entry == NULL)
280 return -ENOMEM;
281
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000282 entry->list.addr = *addr;
Paul Moore61e10682008-10-10 10:16:32 -0400283 entry->list.addr.s6_addr32[0] &= mask->s6_addr32[0];
284 entry->list.addr.s6_addr32[1] &= mask->s6_addr32[1];
285 entry->list.addr.s6_addr32[2] &= mask->s6_addr32[2];
286 entry->list.addr.s6_addr32[3] &= mask->s6_addr32[3];
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000287 entry->list.mask = *mask;
Paul Moore61e10682008-10-10 10:16:32 -0400288 entry->list.valid = 1;
Paul Moore61e10682008-10-10 10:16:32 -0400289 entry->secid = secid;
Paul Moore8cc44572008-01-29 08:44:21 -0500290
291 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400292 ret_val = netlbl_af6list_add(&entry->list, &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500293 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400294
295 if (ret_val != 0)
296 kfree(entry);
Paul Moore8cc44572008-01-29 08:44:21 -0500297 return 0;
298}
299#endif /* IPv6 */
300
301/**
302 * netlbl_unlhsh_add_iface - Adds a new interface entry to the hash table
303 * @ifindex: network interface
304 *
305 * Description:
306 * Add a new, empty, interface entry into the unlabeled connection hash table.
307 * On success a pointer to the new interface entry is returned, on failure NULL
Paul Mooreb914f3a2010-04-01 10:43:57 +0000308 * is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500309 *
310 */
311static struct netlbl_unlhsh_iface *netlbl_unlhsh_add_iface(int ifindex)
312{
313 u32 bkt;
314 struct netlbl_unlhsh_iface *iface;
315
316 iface = kzalloc(sizeof(*iface), GFP_ATOMIC);
317 if (iface == NULL)
318 return NULL;
319
320 iface->ifindex = ifindex;
321 INIT_LIST_HEAD(&iface->addr4_list);
322 INIT_LIST_HEAD(&iface->addr6_list);
323 iface->valid = 1;
Paul Moore8cc44572008-01-29 08:44:21 -0500324
325 spin_lock(&netlbl_unlhsh_lock);
326 if (ifindex > 0) {
327 bkt = netlbl_unlhsh_hash(ifindex);
328 if (netlbl_unlhsh_search_iface(ifindex) != NULL)
329 goto add_iface_failure;
330 list_add_tail_rcu(&iface->list,
Paul Mooreb914f3a2010-04-01 10:43:57 +0000331 &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt]);
Paul Moore8cc44572008-01-29 08:44:21 -0500332 } else {
333 INIT_LIST_HEAD(&iface->list);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000334 if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def) != NULL)
Paul Moore8cc44572008-01-29 08:44:21 -0500335 goto add_iface_failure;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000336 rcu_assign_pointer(netlbl_unlhsh_def, iface);
Paul Moore8cc44572008-01-29 08:44:21 -0500337 }
338 spin_unlock(&netlbl_unlhsh_lock);
339
340 return iface;
341
342add_iface_failure:
343 spin_unlock(&netlbl_unlhsh_lock);
344 kfree(iface);
345 return NULL;
346}
347
348/**
349 * netlbl_unlhsh_add - Adds a new entry to the unlabeled connection hash table
350 * @net: network namespace
351 * @dev_name: interface name
352 * @addr: IP address in network byte order
353 * @mask: address mask in network byte order
354 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
355 * @secid: LSM secid value for the entry
Paul Moore13541b32008-01-29 08:44:23 -0500356 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500357 *
358 * Description:
359 * Adds a new entry to the unlabeled connection hash table. Returns zero on
360 * success, negative values on failure.
361 *
362 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500363int netlbl_unlhsh_add(struct net *net,
364 const char *dev_name,
365 const void *addr,
366 const void *mask,
367 u32 addr_len,
368 u32 secid,
369 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500370{
371 int ret_val;
372 int ifindex;
373 struct net_device *dev;
374 struct netlbl_unlhsh_iface *iface;
Paul Moore13541b32008-01-29 08:44:23 -0500375 struct audit_buffer *audit_buf = NULL;
376 char *secctx = NULL;
377 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500378
379 if (addr_len != sizeof(struct in_addr) &&
380 addr_len != sizeof(struct in6_addr))
381 return -EINVAL;
382
383 rcu_read_lock();
384 if (dev_name != NULL) {
Eric Dumazet122ec6f2009-11-05 20:53:47 -0800385 dev = dev_get_by_name_rcu(net, dev_name);
Paul Moore8cc44572008-01-29 08:44:21 -0500386 if (dev == NULL) {
387 ret_val = -ENODEV;
388 goto unlhsh_add_return;
389 }
390 ifindex = dev->ifindex;
Paul Moore8cc44572008-01-29 08:44:21 -0500391 iface = netlbl_unlhsh_search_iface(ifindex);
392 } else {
393 ifindex = 0;
394 iface = rcu_dereference(netlbl_unlhsh_def);
395 }
396 if (iface == NULL) {
397 iface = netlbl_unlhsh_add_iface(ifindex);
398 if (iface == NULL) {
399 ret_val = -ENOMEM;
400 goto unlhsh_add_return;
401 }
402 }
Paul Moore13541b32008-01-29 08:44:23 -0500403 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD,
404 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500405 switch (addr_len) {
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800406 case sizeof(struct in_addr): {
Joe Perchesea110732011-06-13 16:21:26 +0000407 const struct in_addr *addr4 = addr;
408 const struct in_addr *mask4 = mask;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800409
Paul Moore13541b32008-01-29 08:44:23 -0500410 ret_val = netlbl_unlhsh_add_addr4(iface, addr4, mask4, secid);
411 if (audit_buf != NULL)
Paul Moore63c41682008-10-10 10:16:32 -0400412 netlbl_af4list_audit_addr(audit_buf, 1,
413 dev_name,
414 addr4->s_addr,
415 mask4->s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -0500416 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800417 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000418#if IS_ENABLED(CONFIG_IPV6)
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800419 case sizeof(struct in6_addr): {
Joe Perchesea110732011-06-13 16:21:26 +0000420 const struct in6_addr *addr6 = addr;
421 const struct in6_addr *mask6 = mask;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800422
Paul Moore13541b32008-01-29 08:44:23 -0500423 ret_val = netlbl_unlhsh_add_addr6(iface, addr6, mask6, secid);
424 if (audit_buf != NULL)
Paul Moore63c41682008-10-10 10:16:32 -0400425 netlbl_af6list_audit_addr(audit_buf, 1,
426 dev_name,
427 addr6, mask6);
Paul Moore8cc44572008-01-29 08:44:21 -0500428 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800429 }
Paul Moore8cc44572008-01-29 08:44:21 -0500430#endif /* IPv6 */
431 default:
432 ret_val = -EINVAL;
433 }
434 if (ret_val == 0)
435 atomic_inc(&netlabel_mgmt_protocount);
436
437unlhsh_add_return:
438 rcu_read_unlock();
Paul Moore13541b32008-01-29 08:44:23 -0500439 if (audit_buf != NULL) {
440 if (security_secid_to_secctx(secid,
441 &secctx,
442 &secctx_len) == 0) {
443 audit_log_format(audit_buf, " sec_obj=%s", secctx);
444 security_release_secctx(secctx, secctx_len);
445 }
446 audit_log_format(audit_buf, " res=%u", ret_val == 0 ? 1 : 0);
447 audit_log_end(audit_buf);
448 }
Paul Moore8cc44572008-01-29 08:44:21 -0500449 return ret_val;
450}
451
452/**
453 * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry
Paul Moore13541b32008-01-29 08:44:23 -0500454 * @net: network namespace
Paul Moore8cc44572008-01-29 08:44:21 -0500455 * @iface: interface entry
456 * @addr: IP address
457 * @mask: IP address mask
Paul Moore13541b32008-01-29 08:44:23 -0500458 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500459 *
460 * Description:
461 * Remove an IP address entry from the unlabeled connection hash table.
Paul Mooreb914f3a2010-04-01 10:43:57 +0000462 * Returns zero on success, negative values on failure.
Paul Moore8cc44572008-01-29 08:44:21 -0500463 *
464 */
Paul Moore13541b32008-01-29 08:44:23 -0500465static int netlbl_unlhsh_remove_addr4(struct net *net,
466 struct netlbl_unlhsh_iface *iface,
Paul Moore8cc44572008-01-29 08:44:21 -0500467 const struct in_addr *addr,
Paul Moore13541b32008-01-29 08:44:23 -0500468 const struct in_addr *mask,
469 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500470{
Paul Moore61e10682008-10-10 10:16:32 -0400471 struct netlbl_af4list *list_entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500472 struct netlbl_unlhsh_addr4 *entry;
Paul Moore61e10682008-10-10 10:16:32 -0400473 struct audit_buffer *audit_buf;
Paul Moore13541b32008-01-29 08:44:23 -0500474 struct net_device *dev;
Paul Moore61e10682008-10-10 10:16:32 -0400475 char *secctx;
Paul Moore13541b32008-01-29 08:44:23 -0500476 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500477
478 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400479 list_entry = netlbl_af4list_remove(addr->s_addr, mask->s_addr,
480 &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500481 spin_unlock(&netlbl_unlhsh_lock);
Paul Moored25830e2008-12-03 00:37:04 -0800482 if (list_entry != NULL)
483 entry = netlbl_unlhsh_addr4_entry(list_entry);
484 else
Paul Mooreec8f2372008-12-11 21:31:50 -0800485 entry = NULL;
Paul Moore8cc44572008-01-29 08:44:21 -0500486
Paul Moore13541b32008-01-29 08:44:23 -0500487 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL,
488 audit_info);
489 if (audit_buf != NULL) {
490 dev = dev_get_by_index(net, iface->ifindex);
Paul Moore63c41682008-10-10 10:16:32 -0400491 netlbl_af4list_audit_addr(audit_buf, 1,
492 (dev != NULL ? dev->name : NULL),
493 addr->s_addr, mask->s_addr);
Paul Moore13541b32008-01-29 08:44:23 -0500494 if (dev != NULL)
495 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);
Paul Moore13541b32008-01-29 08:44:23 -0500555 if (dev != NULL)
556 dev_put(dev);
Paul Mooreec8f2372008-12-11 21:31:50 -0800557 if (entry != NULL &&
558 security_secid_to_secctx(entry->secid,
559 &secctx, &secctx_len) == 0) {
Paul Moore13541b32008-01-29 08:44:23 -0500560 audit_log_format(audit_buf, " sec_obj=%s", secctx);
561 security_release_secctx(secctx, secctx_len);
562 }
Paul Mooreec8f2372008-12-11 21:31:50 -0800563 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
Paul Moore13541b32008-01-29 08:44:23 -0500564 audit_log_end(audit_buf);
565 }
566
Paul Mooreec8f2372008-12-11 21:31:50 -0800567 if (entry == NULL)
568 return -ENOENT;
569
Lai Jiangshan6b262232011-03-18 12:04:50 +0800570 kfree_rcu(entry, rcu);
Paul Mooreec8f2372008-12-11 21:31:50 -0800571 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -0500572}
573#endif /* IPv6 */
574
575/**
576 * netlbl_unlhsh_condremove_iface - Remove an interface entry
577 * @iface: the interface entry
578 *
579 * Description:
580 * Remove an interface entry from the unlabeled connection hash table if it is
581 * empty. An interface entry is considered to be empty if there are no
582 * address entries assigned to it.
583 *
584 */
585static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface *iface)
586{
Paul Moore61e10682008-10-10 10:16:32 -0400587 struct netlbl_af4list *iter4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000588#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400589 struct netlbl_af6list *iter6;
590#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500591
592 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400593 netlbl_af4list_foreach_rcu(iter4, &iface->addr4_list)
594 goto unlhsh_condremove_failure;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000595#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400596 netlbl_af6list_foreach_rcu(iter6, &iface->addr6_list)
597 goto unlhsh_condremove_failure;
598#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500599 iface->valid = 0;
600 if (iface->ifindex > 0)
601 list_del_rcu(&iface->list);
602 else
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000603 RCU_INIT_POINTER(netlbl_unlhsh_def, NULL);
Paul Moore8cc44572008-01-29 08:44:21 -0500604 spin_unlock(&netlbl_unlhsh_lock);
605
606 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
607 return;
608
609unlhsh_condremove_failure:
610 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore8cc44572008-01-29 08:44:21 -0500611}
612
613/**
614 * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table
615 * @net: network namespace
616 * @dev_name: interface name
617 * @addr: IP address in network byte order
618 * @mask: address mask in network byte order
619 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
Paul Moore13541b32008-01-29 08:44:23 -0500620 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500621 *
622 * Description:
623 * Removes and existing entry from the unlabeled connection hash table.
624 * Returns zero on success, negative values on failure.
625 *
626 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500627int netlbl_unlhsh_remove(struct net *net,
628 const char *dev_name,
629 const void *addr,
630 const void *mask,
631 u32 addr_len,
632 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500633{
634 int ret_val;
635 struct net_device *dev;
636 struct netlbl_unlhsh_iface *iface;
637
638 if (addr_len != sizeof(struct in_addr) &&
639 addr_len != sizeof(struct in6_addr))
640 return -EINVAL;
641
642 rcu_read_lock();
643 if (dev_name != NULL) {
Eric Dumazet122ec6f2009-11-05 20:53:47 -0800644 dev = dev_get_by_name_rcu(net, dev_name);
Paul Moore8cc44572008-01-29 08:44:21 -0500645 if (dev == NULL) {
646 ret_val = -ENODEV;
647 goto unlhsh_remove_return;
648 }
649 iface = netlbl_unlhsh_search_iface(dev->ifindex);
Paul Moore8cc44572008-01-29 08:44:21 -0500650 } else
651 iface = rcu_dereference(netlbl_unlhsh_def);
652 if (iface == NULL) {
653 ret_val = -ENOENT;
654 goto unlhsh_remove_return;
655 }
656 switch (addr_len) {
657 case sizeof(struct in_addr):
Paul Moore13541b32008-01-29 08:44:23 -0500658 ret_val = netlbl_unlhsh_remove_addr4(net,
659 iface, addr, mask,
660 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500661 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000662#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500663 case sizeof(struct in6_addr):
Paul Moore13541b32008-01-29 08:44:23 -0500664 ret_val = netlbl_unlhsh_remove_addr6(net,
665 iface, addr, mask,
666 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500667 break;
668#endif /* IPv6 */
669 default:
670 ret_val = -EINVAL;
671 }
672 if (ret_val == 0) {
673 netlbl_unlhsh_condremove_iface(iface);
674 atomic_dec(&netlabel_mgmt_protocount);
675 }
676
677unlhsh_remove_return:
678 rcu_read_unlock();
679 return ret_val;
680}
681
682/*
683 * General Helper Functions
684 */
685
686/**
687 * netlbl_unlhsh_netdev_handler - Network device notification handler
688 * @this: notifier block
689 * @event: the event
Jiri Pirko351638e2013-05-28 01:30:21 +0000690 * @ptr: the netdevice notifier info (cast to void)
Paul Moore8cc44572008-01-29 08:44:21 -0500691 *
692 * Description:
693 * Handle network device events, although at present all we care about is a
694 * network device going away. In the case of a device going away we clear any
695 * related entries from the unlabeled connection hash table.
696 *
697 */
698static int netlbl_unlhsh_netdev_handler(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +0000699 unsigned long event, void *ptr)
Paul Moore8cc44572008-01-29 08:44:21 -0500700{
Jiri Pirko351638e2013-05-28 01:30:21 +0000701 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Paul Moore8cc44572008-01-29 08:44:21 -0500702 struct netlbl_unlhsh_iface *iface = NULL;
703
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700704 if (!net_eq(dev_net(dev), &init_net))
Paul Moore8cc44572008-01-29 08:44:21 -0500705 return NOTIFY_DONE;
706
707 /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */
708 if (event == NETDEV_DOWN) {
709 spin_lock(&netlbl_unlhsh_lock);
710 iface = netlbl_unlhsh_search_iface(dev->ifindex);
711 if (iface != NULL && iface->valid) {
712 iface->valid = 0;
713 list_del_rcu(&iface->list);
714 } else
715 iface = NULL;
716 spin_unlock(&netlbl_unlhsh_lock);
717 }
718
719 if (iface != NULL)
720 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
721
722 return NOTIFY_DONE;
723}
724
725/**
Paul Moore32f50cd2006-09-28 14:51:47 -0700726 * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
727 * @value: desired value
Paul Moore95d4e6b2006-09-29 17:05:05 -0700728 * @audit_info: NetLabel audit information
Paul Moore32f50cd2006-09-28 14:51:47 -0700729 *
730 * Description:
731 * Set the value of the unlabeled accept flag to @value.
732 *
733 */
Paul Moore95d4e6b2006-09-29 17:05:05 -0700734static void netlbl_unlabel_acceptflg_set(u8 value,
735 struct netlbl_audit *audit_info)
Paul Moore32f50cd2006-09-28 14:51:47 -0700736{
Paul Moore95d4e6b2006-09-29 17:05:05 -0700737 struct audit_buffer *audit_buf;
738 u8 old_val;
739
Paul Moore4be27002007-10-26 04:29:08 -0700740 old_val = netlabel_unlabel_acceptflg;
Paul Moorecd287862006-11-17 17:38:44 -0500741 netlabel_unlabel_acceptflg = value;
Paul Moore95d4e6b2006-09-29 17:05:05 -0700742 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW,
743 audit_info);
Paul Moorede646882006-11-17 17:38:55 -0500744 if (audit_buf != NULL) {
745 audit_log_format(audit_buf,
746 " unlbl_accept=%u old=%u", value, old_val);
747 audit_log_end(audit_buf);
748 }
Paul Moore32f50cd2006-09-28 14:51:47 -0700749}
750
Paul Moore8cc44572008-01-29 08:44:21 -0500751/**
752 * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information
753 * @info: the Generic NETLINK info block
754 * @addr: the IP address
755 * @mask: the IP address mask
756 * @len: the address length
757 *
758 * Description:
759 * Examine the Generic NETLINK message and extract the IP address information.
760 * Returns zero on success, negative values on failure.
761 *
762 */
763static int netlbl_unlabel_addrinfo_get(struct genl_info *info,
764 void **addr,
765 void **mask,
766 u32 *len)
767{
768 u32 addr_len;
769
Sean Tranchettif88b4c02018-09-20 14:29:45 -0600770 if (info->attrs[NLBL_UNLABEL_A_IPV4ADDR] &&
771 info->attrs[NLBL_UNLABEL_A_IPV4MASK]) {
Paul Moore8cc44572008-01-29 08:44:21 -0500772 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
773 if (addr_len != sizeof(struct in_addr) &&
774 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV4MASK]))
775 return -EINVAL;
776 *len = addr_len;
777 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
778 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4MASK]);
779 return 0;
780 } else if (info->attrs[NLBL_UNLABEL_A_IPV6ADDR]) {
781 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
782 if (addr_len != sizeof(struct in6_addr) &&
783 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV6MASK]))
784 return -EINVAL;
785 *len = addr_len;
786 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
787 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6MASK]);
788 return 0;
789 }
790
791 return -EINVAL;
792}
793
Paul Moore32f50cd2006-09-28 14:51:47 -0700794/*
Paul Moore96cb8e32006-08-03 16:48:59 -0700795 * NetLabel Command Handlers
796 */
797
798/**
799 * netlbl_unlabel_accept - Handle an ACCEPT message
800 * @skb: the NETLINK buffer
801 * @info: the Generic NETLINK info block
802 *
803 * Description:
804 * Process a user generated ACCEPT message and set the accept flag accordingly.
805 * Returns zero on success, negative values on failure.
806 *
807 */
808static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info)
809{
Paul Moorefd385852006-09-25 15:56:37 -0700810 u8 value;
Paul Moore95d4e6b2006-09-29 17:05:05 -0700811 struct netlbl_audit audit_info;
Paul Moore96cb8e32006-08-03 16:48:59 -0700812
Paul Moorefd385852006-09-25 15:56:37 -0700813 if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) {
814 value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]);
Paul Moore96cb8e32006-08-03 16:48:59 -0700815 if (value == 1 || value == 0) {
Paul Moore95d4e6b2006-09-29 17:05:05 -0700816 netlbl_netlink_auditinfo(skb, &audit_info);
817 netlbl_unlabel_acceptflg_set(value, &audit_info);
Paul Moore32f50cd2006-09-28 14:51:47 -0700818 return 0;
Paul Moore96cb8e32006-08-03 16:48:59 -0700819 }
820 }
821
Paul Moore32f50cd2006-09-28 14:51:47 -0700822 return -EINVAL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700823}
824
825/**
826 * netlbl_unlabel_list - Handle a LIST message
827 * @skb: the NETLINK buffer
828 * @info: the Generic NETLINK info block
829 *
830 * Description:
831 * Process a user generated LIST message and respond with the current status.
832 * Returns zero on success, negative values on failure.
833 *
834 */
835static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
836{
Paul Moorefd385852006-09-25 15:56:37 -0700837 int ret_val = -EINVAL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700838 struct sk_buff *ans_skb;
Paul Moorefd385852006-09-25 15:56:37 -0700839 void *data;
Paul Moore96cb8e32006-08-03 16:48:59 -0700840
Thomas Graf339bf982006-11-10 14:10:15 -0800841 ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Paul Moore96cb8e32006-08-03 16:48:59 -0700842 if (ans_skb == NULL)
843 goto list_failure;
Thomas Graf17c157c2006-11-14 19:46:02 -0800844 data = genlmsg_put_reply(ans_skb, info, &netlbl_unlabel_gnl_family,
845 0, NLBL_UNLABEL_C_LIST);
Paul Moorefd385852006-09-25 15:56:37 -0700846 if (data == NULL) {
847 ret_val = -ENOMEM;
Paul Moore96cb8e32006-08-03 16:48:59 -0700848 goto list_failure;
Paul Moorefd385852006-09-25 15:56:37 -0700849 }
Paul Moore96cb8e32006-08-03 16:48:59 -0700850
Paul Moorefd385852006-09-25 15:56:37 -0700851 ret_val = nla_put_u8(ans_skb,
852 NLBL_UNLABEL_A_ACPTFLG,
Paul Moorecd287862006-11-17 17:38:44 -0500853 netlabel_unlabel_acceptflg);
Paul Moore96cb8e32006-08-03 16:48:59 -0700854 if (ret_val != 0)
855 goto list_failure;
856
Paul Moorefd385852006-09-25 15:56:37 -0700857 genlmsg_end(ans_skb, data);
Denis V. Lunevfe785be2008-07-10 16:53:39 -0700858 return genlmsg_reply(ans_skb, info);
Paul Moore96cb8e32006-08-03 16:48:59 -0700859
860list_failure:
Patrick McHardyb08d5842007-02-27 09:57:37 -0800861 kfree_skb(ans_skb);
Paul Moore96cb8e32006-08-03 16:48:59 -0700862 return ret_val;
863}
864
Paul Moore8cc44572008-01-29 08:44:21 -0500865/**
866 * netlbl_unlabel_staticadd - Handle a STATICADD message
867 * @skb: the NETLINK buffer
868 * @info: the Generic NETLINK info block
869 *
870 * Description:
871 * Process a user generated STATICADD message and add a new unlabeled
872 * connection entry to the hash table. Returns zero on success, negative
873 * values on failure.
874 *
875 */
876static int netlbl_unlabel_staticadd(struct sk_buff *skb,
877 struct genl_info *info)
878{
879 int ret_val;
880 char *dev_name;
881 void *addr;
882 void *mask;
883 u32 addr_len;
884 u32 secid;
Paul Moore13541b32008-01-29 08:44:23 -0500885 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500886
887 /* Don't allow users to add both IPv4 and IPv6 addresses for a
888 * single entry. However, allow users to create two entries, one each
889 * for IPv4 and IPv4, with the same LSM security context which should
890 * achieve the same result. */
891 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
892 !info->attrs[NLBL_UNLABEL_A_IFACE] ||
893 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
894 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
895 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
896 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
897 return -EINVAL;
898
Paul Moore13541b32008-01-29 08:44:23 -0500899 netlbl_netlink_auditinfo(skb, &audit_info);
900
Paul Moore8cc44572008-01-29 08:44:21 -0500901 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
902 if (ret_val != 0)
903 return ret_val;
904 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
905 ret_val = security_secctx_to_secid(
906 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
907 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
908 &secid);
909 if (ret_val != 0)
910 return ret_val;
911
912 return netlbl_unlhsh_add(&init_net,
Paul Moore13541b32008-01-29 08:44:23 -0500913 dev_name, addr, mask, addr_len, secid,
914 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500915}
916
917/**
918 * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message
919 * @skb: the NETLINK buffer
920 * @info: the Generic NETLINK info block
921 *
922 * Description:
923 * Process a user generated STATICADDDEF message and add a new default
924 * unlabeled connection entry. Returns zero on success, negative values on
925 * failure.
926 *
927 */
928static int netlbl_unlabel_staticadddef(struct sk_buff *skb,
929 struct genl_info *info)
930{
931 int ret_val;
932 void *addr;
933 void *mask;
934 u32 addr_len;
935 u32 secid;
Paul Moore13541b32008-01-29 08:44:23 -0500936 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500937
938 /* Don't allow users to add both IPv4 and IPv6 addresses for a
939 * single entry. However, allow users to create two entries, one each
940 * for IPv4 and IPv6, with the same LSM security context which should
941 * achieve the same result. */
942 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
943 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
944 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
945 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
946 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
947 return -EINVAL;
948
Paul Moore13541b32008-01-29 08:44:23 -0500949 netlbl_netlink_auditinfo(skb, &audit_info);
950
Paul Moore8cc44572008-01-29 08:44:21 -0500951 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
952 if (ret_val != 0)
953 return ret_val;
954 ret_val = security_secctx_to_secid(
955 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
956 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
957 &secid);
958 if (ret_val != 0)
959 return ret_val;
960
Paul Moore13541b32008-01-29 08:44:23 -0500961 return netlbl_unlhsh_add(&init_net,
962 NULL, addr, mask, addr_len, secid,
963 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500964}
965
966/**
967 * netlbl_unlabel_staticremove - Handle a STATICREMOVE message
968 * @skb: the NETLINK buffer
969 * @info: the Generic NETLINK info block
970 *
971 * Description:
972 * Process a user generated STATICREMOVE message and remove the specified
973 * unlabeled connection entry. Returns zero on success, negative values on
974 * failure.
975 *
976 */
977static int netlbl_unlabel_staticremove(struct sk_buff *skb,
978 struct genl_info *info)
979{
980 int ret_val;
981 char *dev_name;
982 void *addr;
983 void *mask;
984 u32 addr_len;
Paul Moore13541b32008-01-29 08:44:23 -0500985 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500986
987 /* See the note in netlbl_unlabel_staticadd() about not allowing both
988 * IPv4 and IPv6 in the same entry. */
989 if (!info->attrs[NLBL_UNLABEL_A_IFACE] ||
990 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
991 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
992 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
993 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
994 return -EINVAL;
995
Paul Moore13541b32008-01-29 08:44:23 -0500996 netlbl_netlink_auditinfo(skb, &audit_info);
997
Paul Moore8cc44572008-01-29 08:44:21 -0500998 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
999 if (ret_val != 0)
1000 return ret_val;
1001 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
1002
Paul Moore13541b32008-01-29 08:44:23 -05001003 return netlbl_unlhsh_remove(&init_net,
1004 dev_name, addr, mask, addr_len,
1005 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -05001006}
1007
1008/**
1009 * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message
1010 * @skb: the NETLINK buffer
1011 * @info: the Generic NETLINK info block
1012 *
1013 * Description:
1014 * Process a user generated STATICREMOVEDEF message and remove the default
1015 * unlabeled connection entry. Returns zero on success, negative values on
1016 * failure.
1017 *
1018 */
1019static int netlbl_unlabel_staticremovedef(struct sk_buff *skb,
1020 struct genl_info *info)
1021{
1022 int ret_val;
1023 void *addr;
1024 void *mask;
1025 u32 addr_len;
Paul Moore13541b32008-01-29 08:44:23 -05001026 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -05001027
1028 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1029 * IPv4 and IPv6 in the same entry. */
1030 if (!((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
1031 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
1032 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
1033 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
1034 return -EINVAL;
1035
Paul Moore13541b32008-01-29 08:44:23 -05001036 netlbl_netlink_auditinfo(skb, &audit_info);
1037
Paul Moore8cc44572008-01-29 08:44:21 -05001038 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
1039 if (ret_val != 0)
1040 return ret_val;
1041
Paul Moore13541b32008-01-29 08:44:23 -05001042 return netlbl_unlhsh_remove(&init_net,
1043 NULL, addr, mask, addr_len,
1044 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -05001045}
1046
1047
1048/**
1049 * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF]
1050 * @cmd: command/message
1051 * @iface: the interface entry
1052 * @addr4: the IPv4 address entry
1053 * @addr6: the IPv6 address entry
1054 * @arg: the netlbl_unlhsh_walk_arg structure
1055 *
1056 * Description:
1057 * This function is designed to be used to generate a response for a
1058 * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6
1059 * can be specified, not both, the other unspecified entry should be set to
1060 * NULL by the caller. Returns the size of the message on success, negative
1061 * values on failure.
1062 *
1063 */
1064static int netlbl_unlabel_staticlist_gen(u32 cmd,
1065 const struct netlbl_unlhsh_iface *iface,
1066 const struct netlbl_unlhsh_addr4 *addr4,
1067 const struct netlbl_unlhsh_addr6 *addr6,
1068 void *arg)
1069{
1070 int ret_val = -ENOMEM;
1071 struct netlbl_unlhsh_walk_arg *cb_arg = arg;
1072 struct net_device *dev;
1073 void *data;
1074 u32 secid;
1075 char *secctx;
1076 u32 secctx_len;
1077
Eric W. Biederman15e47302012-09-07 20:12:54 +00001078 data = genlmsg_put(cb_arg->skb, NETLINK_CB(cb_arg->nl_cb->skb).portid,
Paul Moore8cc44572008-01-29 08:44:21 -05001079 cb_arg->seq, &netlbl_unlabel_gnl_family,
1080 NLM_F_MULTI, cmd);
1081 if (data == NULL)
1082 goto list_cb_failure;
1083
1084 if (iface->ifindex > 0) {
1085 dev = dev_get_by_index(&init_net, iface->ifindex);
Jesper Juhl794eb6b2008-04-17 23:22:54 -07001086 if (!dev) {
1087 ret_val = -ENODEV;
1088 goto list_cb_failure;
1089 }
Paul Moore8cc44572008-01-29 08:44:21 -05001090 ret_val = nla_put_string(cb_arg->skb,
1091 NLBL_UNLABEL_A_IFACE, dev->name);
1092 dev_put(dev);
1093 if (ret_val != 0)
1094 goto list_cb_failure;
1095 }
1096
1097 if (addr4) {
1098 struct in_addr addr_struct;
1099
Paul Moore61e10682008-10-10 10:16:32 -04001100 addr_struct.s_addr = addr4->list.addr;
Jiri Benc930345e2015-03-29 16:59:25 +02001101 ret_val = nla_put_in_addr(cb_arg->skb,
1102 NLBL_UNLABEL_A_IPV4ADDR,
1103 addr_struct.s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001104 if (ret_val != 0)
1105 goto list_cb_failure;
1106
Paul Moore61e10682008-10-10 10:16:32 -04001107 addr_struct.s_addr = addr4->list.mask;
Jiri Benc930345e2015-03-29 16:59:25 +02001108 ret_val = nla_put_in_addr(cb_arg->skb,
1109 NLBL_UNLABEL_A_IPV4MASK,
1110 addr_struct.s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001111 if (ret_val != 0)
1112 goto list_cb_failure;
1113
1114 secid = addr4->secid;
1115 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02001116 ret_val = nla_put_in6_addr(cb_arg->skb,
1117 NLBL_UNLABEL_A_IPV6ADDR,
1118 &addr6->list.addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001119 if (ret_val != 0)
1120 goto list_cb_failure;
1121
Jiri Benc930345e2015-03-29 16:59:25 +02001122 ret_val = nla_put_in6_addr(cb_arg->skb,
1123 NLBL_UNLABEL_A_IPV6MASK,
1124 &addr6->list.mask);
Paul Moore8cc44572008-01-29 08:44:21 -05001125 if (ret_val != 0)
1126 goto list_cb_failure;
1127
1128 secid = addr6->secid;
1129 }
1130
1131 ret_val = security_secid_to_secctx(secid, &secctx, &secctx_len);
1132 if (ret_val != 0)
1133 goto list_cb_failure;
1134 ret_val = nla_put(cb_arg->skb,
1135 NLBL_UNLABEL_A_SECCTX,
1136 secctx_len,
1137 secctx);
1138 security_release_secctx(secctx, secctx_len);
1139 if (ret_val != 0)
1140 goto list_cb_failure;
1141
1142 cb_arg->seq++;
Johannes Berg053c0952015-01-16 22:09:00 +01001143 genlmsg_end(cb_arg->skb, data);
1144 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -05001145
1146list_cb_failure:
1147 genlmsg_cancel(cb_arg->skb, data);
1148 return ret_val;
1149}
1150
1151/**
1152 * netlbl_unlabel_staticlist - Handle a STATICLIST message
1153 * @skb: the NETLINK buffer
1154 * @cb: the NETLINK callback
1155 *
1156 * Description:
1157 * Process a user generated STATICLIST message and dump the unlabeled
1158 * connection hash table in a form suitable for use in a kernel generated
1159 * STATICLIST message. Returns the length of @skb.
1160 *
1161 */
1162static int netlbl_unlabel_staticlist(struct sk_buff *skb,
1163 struct netlink_callback *cb)
1164{
1165 struct netlbl_unlhsh_walk_arg cb_arg;
1166 u32 skip_bkt = cb->args[0];
1167 u32 skip_chain = cb->args[1];
Paul Moore8cc44572008-01-29 08:44:21 -05001168 u32 iter_bkt;
1169 u32 iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0;
1170 struct netlbl_unlhsh_iface *iface;
Paul Moore56196702008-10-10 10:16:29 -04001171 struct list_head *iter_list;
Paul Moore61e10682008-10-10 10:16:32 -04001172 struct netlbl_af4list *addr4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001173#if IS_ENABLED(CONFIG_IPV6)
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;
1184 iter_bkt++, iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0) {
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 Moorea6a8fe92013-03-08 09:45:39 -05001192 if (iter_addr4++ < cb->args[2])
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 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001205#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001206 netlbl_af6list_foreach_rcu(addr6,
1207 &iface->addr6_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001208 if (iter_addr6++ < cb->args[3])
Paul Moore8cc44572008-01-29 08:44:21 -05001209 continue;
1210 if (netlbl_unlabel_staticlist_gen(
Paul Moore61e10682008-10-10 10:16:32 -04001211 NLBL_UNLABEL_C_STATICLIST,
1212 iface,
1213 NULL,
1214 netlbl_unlhsh_addr6_entry(addr6),
1215 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001216 iter_addr6--;
1217 iter_chain--;
1218 goto unlabel_staticlist_return;
1219 }
1220 }
Paul Moore61e10682008-10-10 10:16:32 -04001221#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -05001222 }
1223 }
1224
1225unlabel_staticlist_return:
1226 rcu_read_unlock();
Paul Moore0c1233a2013-03-06 11:45:24 +00001227 cb->args[0] = iter_bkt;
1228 cb->args[1] = iter_chain;
1229 cb->args[2] = iter_addr4;
1230 cb->args[3] = iter_addr6;
Paul Moore8cc44572008-01-29 08:44:21 -05001231 return skb->len;
1232}
1233
1234/**
1235 * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message
1236 * @skb: the NETLINK buffer
1237 * @cb: the NETLINK callback
1238 *
1239 * Description:
1240 * Process a user generated STATICLISTDEF message and dump the default
1241 * unlabeled connection entry in a form suitable for use in a kernel generated
1242 * STATICLISTDEF message. Returns the length of @skb.
1243 *
1244 */
1245static int netlbl_unlabel_staticlistdef(struct sk_buff *skb,
1246 struct netlink_callback *cb)
1247{
1248 struct netlbl_unlhsh_walk_arg cb_arg;
1249 struct netlbl_unlhsh_iface *iface;
Paul Moorea6a8fe92013-03-08 09:45:39 -05001250 u32 iter_addr4 = 0, iter_addr6 = 0;
Paul Moore61e10682008-10-10 10:16:32 -04001251 struct netlbl_af4list *addr4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001252#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001253 struct netlbl_af6list *addr6;
1254#endif
Paul Moore8cc44572008-01-29 08:44:21 -05001255
1256 cb_arg.nl_cb = cb;
1257 cb_arg.skb = skb;
1258 cb_arg.seq = cb->nlh->nlmsg_seq;
1259
1260 rcu_read_lock();
1261 iface = rcu_dereference(netlbl_unlhsh_def);
1262 if (iface == NULL || !iface->valid)
1263 goto unlabel_staticlistdef_return;
1264
Paul Moore61e10682008-10-10 10:16:32 -04001265 netlbl_af4list_foreach_rcu(addr4, &iface->addr4_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001266 if (iter_addr4++ < cb->args[0])
Paul Moore8cc44572008-01-29 08:44:21 -05001267 continue;
1268 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
Paul Moore61e10682008-10-10 10:16:32 -04001269 iface,
1270 netlbl_unlhsh_addr4_entry(addr4),
1271 NULL,
1272 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001273 iter_addr4--;
1274 goto unlabel_staticlistdef_return;
1275 }
1276 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001277#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001278 netlbl_af6list_foreach_rcu(addr6, &iface->addr6_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001279 if (iter_addr6++ < cb->args[1])
Paul Moore8cc44572008-01-29 08:44:21 -05001280 continue;
1281 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
Paul Moore61e10682008-10-10 10:16:32 -04001282 iface,
1283 NULL,
1284 netlbl_unlhsh_addr6_entry(addr6),
1285 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001286 iter_addr6--;
1287 goto unlabel_staticlistdef_return;
1288 }
1289 }
Paul Moore61e10682008-10-10 10:16:32 -04001290#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -05001291
1292unlabel_staticlistdef_return:
1293 rcu_read_unlock();
Paul Moore0c1233a2013-03-06 11:45:24 +00001294 cb->args[0] = iter_addr4;
1295 cb->args[1] = iter_addr6;
Paul Moore8cc44572008-01-29 08:44:21 -05001296 return skb->len;
1297}
Paul Moore96cb8e32006-08-03 16:48:59 -07001298
1299/*
1300 * NetLabel Generic NETLINK Command Definitions
1301 */
1302
Johannes Berg4534de82013-11-14 17:14:46 +01001303static const struct genl_ops netlbl_unlabel_genl_ops[] = {
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001304 {
Paul Moore8cc44572008-01-29 08:44:21 -05001305 .cmd = NLBL_UNLABEL_C_STATICADD,
Johannes Bergef6243a2019-04-26 14:07:31 +02001306 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001307 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001308 .doit = netlbl_unlabel_staticadd,
1309 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001310 },
1311 {
Paul Moore8cc44572008-01-29 08:44:21 -05001312 .cmd = NLBL_UNLABEL_C_STATICREMOVE,
Johannes Bergef6243a2019-04-26 14:07:31 +02001313 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001314 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001315 .doit = netlbl_unlabel_staticremove,
1316 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001317 },
1318 {
Paul Moore8cc44572008-01-29 08:44:21 -05001319 .cmd = NLBL_UNLABEL_C_STATICLIST,
Johannes Bergef6243a2019-04-26 14:07:31 +02001320 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001321 .flags = 0,
Paul Moore8cc44572008-01-29 08:44:21 -05001322 .doit = NULL,
1323 .dumpit = netlbl_unlabel_staticlist,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001324 },
1325 {
Paul Moore8cc44572008-01-29 08:44:21 -05001326 .cmd = NLBL_UNLABEL_C_STATICADDDEF,
Johannes Bergef6243a2019-04-26 14:07:31 +02001327 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001328 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001329 .doit = netlbl_unlabel_staticadddef,
1330 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001331 },
1332 {
Paul Moore8cc44572008-01-29 08:44:21 -05001333 .cmd = NLBL_UNLABEL_C_STATICREMOVEDEF,
Johannes Bergef6243a2019-04-26 14:07:31 +02001334 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001335 .flags = GENL_ADMIN_PERM,
Paul Moore8cc44572008-01-29 08:44:21 -05001336 .doit = netlbl_unlabel_staticremovedef,
1337 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001338 },
1339 {
Paul Moore8cc44572008-01-29 08:44:21 -05001340 .cmd = NLBL_UNLABEL_C_STATICLISTDEF,
Johannes Bergef6243a2019-04-26 14:07:31 +02001341 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore8cc44572008-01-29 08:44:21 -05001342 .flags = 0,
Paul Moore8cc44572008-01-29 08:44:21 -05001343 .doit = NULL,
1344 .dumpit = netlbl_unlabel_staticlistdef,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001345 },
1346 {
Paul Moore96cb8e32006-08-03 16:48:59 -07001347 .cmd = NLBL_UNLABEL_C_ACCEPT,
Johannes Bergef6243a2019-04-26 14:07:31 +02001348 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moorefd385852006-09-25 15:56:37 -07001349 .flags = GENL_ADMIN_PERM,
Paul Moore96cb8e32006-08-03 16:48:59 -07001350 .doit = netlbl_unlabel_accept,
1351 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001352 },
1353 {
Paul Moore96cb8e32006-08-03 16:48:59 -07001354 .cmd = NLBL_UNLABEL_C_LIST,
Johannes Bergef6243a2019-04-26 14:07:31 +02001355 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Paul Moore96cb8e32006-08-03 16:48:59 -07001356 .flags = 0,
1357 .doit = netlbl_unlabel_list,
1358 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001359 },
Paul Moore96cb8e32006-08-03 16:48:59 -07001360};
1361
Johannes Berg56989f62016-10-24 14:40:05 +02001362static struct genl_family netlbl_unlabel_gnl_family __ro_after_init = {
Johannes Berg489111e2016-10-24 14:40:03 +02001363 .hdrsize = 0,
1364 .name = NETLBL_NLTYPE_UNLABELED_NAME,
1365 .version = NETLBL_PROTO_VERSION,
1366 .maxattr = NLBL_UNLABEL_A_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001367 .policy = netlbl_unlabel_genl_policy,
Johannes Berg489111e2016-10-24 14:40:03 +02001368 .module = THIS_MODULE,
1369 .ops = netlbl_unlabel_genl_ops,
1370 .n_ops = ARRAY_SIZE(netlbl_unlabel_genl_ops),
1371};
1372
Paul Moore96cb8e32006-08-03 16:48:59 -07001373/*
1374 * NetLabel Generic NETLINK Protocol Functions
1375 */
1376
1377/**
1378 * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
1379 *
1380 * Description:
1381 * Register the unlabeled packet NetLabel component with the Generic NETLINK
1382 * mechanism. Returns zero on success, negative values on failure.
1383 *
1384 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001385int __init netlbl_unlabel_genl_init(void)
Paul Moore96cb8e32006-08-03 16:48:59 -07001386{
Johannes Berg489111e2016-10-24 14:40:03 +02001387 return genl_register_family(&netlbl_unlabel_gnl_family);
Paul Moore96cb8e32006-08-03 16:48:59 -07001388}
1389
1390/*
1391 * NetLabel KAPI Hooks
1392 */
1393
Paul Moore8cc44572008-01-29 08:44:21 -05001394static struct notifier_block netlbl_unlhsh_netdev_notifier = {
1395 .notifier_call = netlbl_unlhsh_netdev_handler,
1396};
1397
1398/**
1399 * netlbl_unlabel_init - Initialize the unlabeled connection hash table
1400 * @size: the number of bits to use for the hash buckets
1401 *
1402 * Description:
1403 * Initializes the unlabeled connection hash table and registers a network
1404 * device notification handler. This function should only be called by the
1405 * NetLabel subsystem itself during initialization. Returns zero on success,
1406 * non-zero values on error.
1407 *
1408 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001409int __init netlbl_unlabel_init(u32 size)
Paul Moore8cc44572008-01-29 08:44:21 -05001410{
1411 u32 iter;
1412 struct netlbl_unlhsh_tbl *hsh_tbl;
1413
1414 if (size == 0)
1415 return -EINVAL;
1416
1417 hsh_tbl = kmalloc(sizeof(*hsh_tbl), GFP_KERNEL);
1418 if (hsh_tbl == NULL)
1419 return -ENOMEM;
1420 hsh_tbl->size = 1 << size;
1421 hsh_tbl->tbl = kcalloc(hsh_tbl->size,
1422 sizeof(struct list_head),
1423 GFP_KERNEL);
1424 if (hsh_tbl->tbl == NULL) {
1425 kfree(hsh_tbl);
1426 return -ENOMEM;
1427 }
1428 for (iter = 0; iter < hsh_tbl->size; iter++)
1429 INIT_LIST_HEAD(&hsh_tbl->tbl[iter]);
1430
Paul Moore8cc44572008-01-29 08:44:21 -05001431 spin_lock(&netlbl_unlhsh_lock);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001432 rcu_assign_pointer(netlbl_unlhsh, hsh_tbl);
Paul Moore8cc44572008-01-29 08:44:21 -05001433 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore8cc44572008-01-29 08:44:21 -05001434
1435 register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier);
1436
1437 return 0;
1438}
1439
Paul Moore96cb8e32006-08-03 16:48:59 -07001440/**
1441 * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
Paul Moore8cc44572008-01-29 08:44:21 -05001442 * @skb: the packet
1443 * @family: protocol family
Paul Moore96cb8e32006-08-03 16:48:59 -07001444 * @secattr: the security attributes
1445 *
1446 * Description:
1447 * Determine the security attributes, if any, for an unlabled packet and return
1448 * them in @secattr. Returns zero on success and negative values on failure.
1449 *
1450 */
Paul Moore8cc44572008-01-29 08:44:21 -05001451int netlbl_unlabel_getattr(const struct sk_buff *skb,
1452 u16 family,
1453 struct netlbl_lsm_secattr *secattr)
Paul Moore96cb8e32006-08-03 16:48:59 -07001454{
Paul Moore8cc44572008-01-29 08:44:21 -05001455 struct netlbl_unlhsh_iface *iface;
1456
1457 rcu_read_lock();
Paul Mooreb914f3a2010-04-01 10:43:57 +00001458 iface = netlbl_unlhsh_search_iface(skb->skb_iif);
Paul Moore8cc44572008-01-29 08:44:21 -05001459 if (iface == NULL)
Paul Mooreb914f3a2010-04-01 10:43:57 +00001460 iface = rcu_dereference(netlbl_unlhsh_def);
1461 if (iface == NULL || !iface->valid)
Paul Moore8cc44572008-01-29 08:44:21 -05001462 goto unlabel_getattr_nolabel;
Richard Haines213d7f92017-11-13 20:54:22 +00001463
1464#if IS_ENABLED(CONFIG_IPV6)
1465 /* When resolving a fallback label, check the sk_buff version as
1466 * it is possible (e.g. SCTP) to have family = PF_INET6 while
1467 * receiving ip_hdr(skb)->version = 4.
1468 */
1469 if (family == PF_INET6 && ip_hdr(skb)->version == 4)
1470 family = PF_INET;
1471#endif /* IPv6 */
1472
Paul Moore8cc44572008-01-29 08:44:21 -05001473 switch (family) {
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001474 case PF_INET: {
1475 struct iphdr *hdr4;
Paul Moore61e10682008-10-10 10:16:32 -04001476 struct netlbl_af4list *addr4;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001477
Paul Moore8cc44572008-01-29 08:44:21 -05001478 hdr4 = ip_hdr(skb);
Paul Moore61e10682008-10-10 10:16:32 -04001479 addr4 = netlbl_af4list_search(hdr4->saddr,
1480 &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -05001481 if (addr4 == NULL)
1482 goto unlabel_getattr_nolabel;
Paul Moore61e10682008-10-10 10:16:32 -04001483 secattr->attr.secid = netlbl_unlhsh_addr4_entry(addr4)->secid;
Paul Moore8cc44572008-01-29 08:44:21 -05001484 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001485 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001486#if IS_ENABLED(CONFIG_IPV6)
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001487 case PF_INET6: {
1488 struct ipv6hdr *hdr6;
Paul Moore61e10682008-10-10 10:16:32 -04001489 struct netlbl_af6list *addr6;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001490
Paul Moore8cc44572008-01-29 08:44:21 -05001491 hdr6 = ipv6_hdr(skb);
Paul Moore61e10682008-10-10 10:16:32 -04001492 addr6 = netlbl_af6list_search(&hdr6->saddr,
1493 &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -05001494 if (addr6 == NULL)
1495 goto unlabel_getattr_nolabel;
Paul Moore61e10682008-10-10 10:16:32 -04001496 secattr->attr.secid = netlbl_unlhsh_addr6_entry(addr6)->secid;
Paul Moore8cc44572008-01-29 08:44:21 -05001497 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001498 }
Paul Moore8cc44572008-01-29 08:44:21 -05001499#endif /* IPv6 */
1500 default:
1501 goto unlabel_getattr_nolabel;
1502 }
1503 rcu_read_unlock();
1504
1505 secattr->flags |= NETLBL_SECATTR_SECID;
1506 secattr->type = NETLBL_NLTYPE_UNLABELED;
1507 return 0;
1508
1509unlabel_getattr_nolabel:
1510 rcu_read_unlock();
Paul Moorec783f1c2008-01-29 08:37:52 -05001511 if (netlabel_unlabel_acceptflg == 0)
1512 return -ENOMSG;
Paul Moore16efd452008-01-29 08:37:59 -05001513 secattr->type = NETLBL_NLTYPE_UNLABELED;
Paul Moorec783f1c2008-01-29 08:37:52 -05001514 return 0;
Paul Moore96cb8e32006-08-03 16:48:59 -07001515}
1516
1517/**
1518 * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
1519 *
1520 * Description:
1521 * Set the default NetLabel configuration to allow incoming unlabeled packets
1522 * and to send unlabeled network traffic by default.
1523 *
1524 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001525int __init netlbl_unlabel_defconf(void)
Paul Moore96cb8e32006-08-03 16:48:59 -07001526{
1527 int ret_val;
1528 struct netlbl_dom_map *entry;
Paul Moore95d4e6b2006-09-29 17:05:05 -07001529 struct netlbl_audit audit_info;
Paul Moore32f50cd2006-09-28 14:51:47 -07001530
Paul Moore95d4e6b2006-09-29 17:05:05 -07001531 /* Only the kernel is allowed to call this function and the only time
1532 * it is called is at bootup before the audit subsystem is reporting
1533 * messages so don't worry to much about these values. */
1534 security_task_getsecid(current, &audit_info.secid);
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001535 audit_info.loginuid = GLOBAL_ROOT_UID;
Eric Paris25323862008-04-18 10:09:25 -04001536 audit_info.sessionid = 0;
Paul Moore96cb8e32006-08-03 16:48:59 -07001537
1538 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1539 if (entry == NULL)
1540 return -ENOMEM;
Huw Davies8f18e672016-06-27 15:02:46 -04001541 entry->family = AF_UNSPEC;
Paul Moore6a8b7f02013-08-02 14:45:08 -04001542 entry->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore95d4e6b2006-09-29 17:05:05 -07001543 ret_val = netlbl_domhsh_add_default(entry, &audit_info);
Paul Moore96cb8e32006-08-03 16:48:59 -07001544 if (ret_val != 0)
1545 return ret_val;
1546
Paul Moore95d4e6b2006-09-29 17:05:05 -07001547 netlbl_unlabel_acceptflg_set(1, &audit_info);
Paul Moore96cb8e32006-08-03 16:48:59 -07001548
1549 return 0;
1550}