blob: 8f0897407a2cf950240082cfde9ab07969f96404 [file] [log] [blame]
Paul Moore96cb8e32006-08-03 16:48:59 -07001/*
2 * NetLabel Unlabeled Support
3 *
4 * This file defines functions for dealing with unlabeled packets for the
5 * NetLabel system. The NetLabel system manages static and dynamic label
6 * mappings for network protocols such as CIPSO and RIPSO.
7 *
Paul Moore82c21bf2011-08-01 11:10:33 +00008 * Author: Paul Moore <paul@paul-moore.com>
Paul Moore96cb8e32006-08-03 16:48:59 -07009 *
10 */
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 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
23 * the GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 */
30
31#include <linux/types.h>
Paul Moore8cc44572008-01-29 08:44:21 -050032#include <linux/rcupdate.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070033#include <linux/list.h>
34#include <linux/spinlock.h>
35#include <linux/socket.h>
36#include <linux/string.h>
37#include <linux/skbuff.h>
Paul Moorede646882006-11-17 17:38:55 -050038#include <linux/audit.h>
Paul Moore8cc44572008-01-29 08:44:21 -050039#include <linux/in.h>
40#include <linux/in6.h>
41#include <linux/ip.h>
42#include <linux/ipv6.h>
43#include <linux/notifier.h>
44#include <linux/netdevice.h>
45#include <linux/security.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070047#include <net/sock.h>
48#include <net/netlink.h>
49#include <net/genetlink.h>
Paul Moore8cc44572008-01-29 08:44:21 -050050#include <net/ip.h>
51#include <net/ipv6.h>
52#include <net/net_namespace.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070053#include <net/netlabel.h>
54#include <asm/bug.h>
Arun Sharma600634972011-07-26 16:09:06 -070055#include <linux/atomic.h>
Paul Moore96cb8e32006-08-03 16:48:59 -070056
57#include "netlabel_user.h"
Paul Moore61e10682008-10-10 10:16:32 -040058#include "netlabel_addrlist.h"
Paul Moore96cb8e32006-08-03 16:48:59 -070059#include "netlabel_domainhash.h"
60#include "netlabel_unlabeled.h"
Paul Moore8cc44572008-01-29 08:44:21 -050061#include "netlabel_mgmt.h"
62
63/* NOTE: at present we always use init's network namespace since we don't
64 * presently support different namespaces even though the majority of
65 * the functions in this file are "namespace safe" */
66
67/* The unlabeled connection hash table which we use to map network interfaces
68 * and addresses of unlabeled packets to a user specified secid value for the
69 * LSM. The hash table is used to lookup the network interface entry
70 * (struct netlbl_unlhsh_iface) and then the interface entry is used to
71 * lookup an IP address match from an ordered list. If a network interface
72 * match can not be found in the hash table then the default entry
73 * (netlbl_unlhsh_def) is used. The IP address entry list
74 * (struct netlbl_unlhsh_addr) is ordered such that the entries with a
75 * larger netmask come first.
76 */
77struct netlbl_unlhsh_tbl {
78 struct list_head *tbl;
79 u32 size;
80};
Paul Moore61e10682008-10-10 10:16:32 -040081#define netlbl_unlhsh_addr4_entry(iter) \
82 container_of(iter, struct netlbl_unlhsh_addr4, list)
Paul Moore8cc44572008-01-29 08:44:21 -050083struct netlbl_unlhsh_addr4 {
Paul Moore8cc44572008-01-29 08:44:21 -050084 u32 secid;
85
Paul Moore61e10682008-10-10 10:16:32 -040086 struct netlbl_af4list list;
Paul Moore8cc44572008-01-29 08:44:21 -050087 struct rcu_head rcu;
88};
Paul Moore61e10682008-10-10 10:16:32 -040089#define netlbl_unlhsh_addr6_entry(iter) \
90 container_of(iter, struct netlbl_unlhsh_addr6, list)
Paul Moore8cc44572008-01-29 08:44:21 -050091struct netlbl_unlhsh_addr6 {
Paul Moore8cc44572008-01-29 08:44:21 -050092 u32 secid;
93
Paul Moore61e10682008-10-10 10:16:32 -040094 struct netlbl_af6list list;
Paul Moore8cc44572008-01-29 08:44:21 -050095 struct rcu_head rcu;
96};
97struct netlbl_unlhsh_iface {
98 int ifindex;
99 struct list_head addr4_list;
100 struct list_head addr6_list;
101
102 u32 valid;
103 struct list_head list;
104 struct rcu_head rcu;
105};
106
107/* Argument struct for netlbl_unlhsh_walk() */
108struct netlbl_unlhsh_walk_arg {
109 struct netlink_callback *nl_cb;
110 struct sk_buff *skb;
111 u32 seq;
112};
113
114/* Unlabeled connection hash table */
115/* updates should be so rare that having one spinlock for the entire
116 * hash table should be okay */
117static DEFINE_SPINLOCK(netlbl_unlhsh_lock);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000118#define netlbl_unlhsh_rcu_deref(p) \
Michal Hockod8bf4ca2011-07-08 14:39:41 +0200119 rcu_dereference_check(p, lockdep_is_held(&netlbl_unlhsh_lock))
Paul Moore8cc44572008-01-29 08:44:21 -0500120static struct netlbl_unlhsh_tbl *netlbl_unlhsh = NULL;
121static struct netlbl_unlhsh_iface *netlbl_unlhsh_def = NULL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700122
123/* Accept unlabeled packets flag */
Paul Moorecd287862006-11-17 17:38:44 -0500124static u8 netlabel_unlabel_acceptflg = 0;
Paul Moore96cb8e32006-08-03 16:48:59 -0700125
Paul Moore8cc44572008-01-29 08:44:21 -0500126/* NetLabel Generic NETLINK unlabeled family */
Paul Moore96cb8e32006-08-03 16:48:59 -0700127static struct genl_family netlbl_unlabel_gnl_family = {
128 .id = GENL_ID_GENERATE,
129 .hdrsize = 0,
130 .name = NETLBL_NLTYPE_UNLABELED_NAME,
131 .version = NETLBL_PROTO_VERSION,
Paul Moorefd385852006-09-25 15:56:37 -0700132 .maxattr = NLBL_UNLABEL_A_MAX,
Paul Moore96cb8e32006-08-03 16:48:59 -0700133};
134
Paul Moorefd385852006-09-25 15:56:37 -0700135/* NetLabel Netlink attribute policy */
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700136static const struct nla_policy netlbl_unlabel_genl_policy[NLBL_UNLABEL_A_MAX + 1] = {
Paul Moorefd385852006-09-25 15:56:37 -0700137 [NLBL_UNLABEL_A_ACPTFLG] = { .type = NLA_U8 },
Paul Moore8cc44572008-01-29 08:44:21 -0500138 [NLBL_UNLABEL_A_IPV6ADDR] = { .type = NLA_BINARY,
139 .len = sizeof(struct in6_addr) },
140 [NLBL_UNLABEL_A_IPV6MASK] = { .type = NLA_BINARY,
141 .len = sizeof(struct in6_addr) },
142 [NLBL_UNLABEL_A_IPV4ADDR] = { .type = NLA_BINARY,
143 .len = sizeof(struct in_addr) },
144 [NLBL_UNLABEL_A_IPV4MASK] = { .type = NLA_BINARY,
145 .len = sizeof(struct in_addr) },
146 [NLBL_UNLABEL_A_IFACE] = { .type = NLA_NUL_STRING,
147 .len = IFNAMSIZ - 1 },
148 [NLBL_UNLABEL_A_SECCTX] = { .type = NLA_BINARY }
Paul Moorefd385852006-09-25 15:56:37 -0700149};
Paul Moore96cb8e32006-08-03 16:48:59 -0700150
151/*
Paul Moore8cc44572008-01-29 08:44:21 -0500152 * Unlabeled Connection Hash Table Functions
Paul Moore32f50cd2006-09-28 14:51:47 -0700153 */
154
Paul Moore8cc44572008-01-29 08:44:21 -0500155/**
156 * netlbl_unlhsh_free_iface - Frees an interface entry from the hash table
157 * @entry: the entry's RCU field
158 *
159 * Description:
160 * This function is designed to be used as a callback to the call_rcu()
161 * function so that memory allocated to a hash table interface entry can be
162 * released safely. It is important to note that this function does not free
163 * the IPv4 and IPv6 address lists contained as part of an interface entry. It
164 * is up to the rest of the code to make sure an interface entry is only freed
165 * once it's address lists are empty.
166 *
167 */
168static void netlbl_unlhsh_free_iface(struct rcu_head *entry)
169{
170 struct netlbl_unlhsh_iface *iface;
Paul Moore61e10682008-10-10 10:16:32 -0400171 struct netlbl_af4list *iter4;
172 struct netlbl_af4list *tmp4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000173#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400174 struct netlbl_af6list *iter6;
175 struct netlbl_af6list *tmp6;
176#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500177
178 iface = container_of(entry, struct netlbl_unlhsh_iface, rcu);
179
180 /* no need for locks here since we are the only one with access to this
181 * structure */
182
Paul Moore61e10682008-10-10 10:16:32 -0400183 netlbl_af4list_foreach_safe(iter4, tmp4, &iface->addr4_list) {
184 netlbl_af4list_remove_entry(iter4);
185 kfree(netlbl_unlhsh_addr4_entry(iter4));
186 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000187#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400188 netlbl_af6list_foreach_safe(iter6, tmp6, &iface->addr6_list) {
189 netlbl_af6list_remove_entry(iter6);
190 kfree(netlbl_unlhsh_addr6_entry(iter6));
191 }
192#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500193 kfree(iface);
194}
195
196/**
197 * netlbl_unlhsh_hash - Hashing function for the hash table
198 * @ifindex: the network interface/device to hash
199 *
200 * Description:
201 * This is the hashing function for the unlabeled hash table, it returns the
202 * bucket number for the given device/interface. The caller is responsible for
Paul Mooreb914f3a2010-04-01 10:43:57 +0000203 * ensuring that the hash table is protected with either a RCU read lock or
204 * the hash table lock.
Paul Moore8cc44572008-01-29 08:44:21 -0500205 *
206 */
207static u32 netlbl_unlhsh_hash(int ifindex)
208{
Paul Mooreb914f3a2010-04-01 10:43:57 +0000209 return ifindex & (netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->size - 1);
Paul Moore8cc44572008-01-29 08:44:21 -0500210}
211
212/**
Paul Moore8cc44572008-01-29 08:44:21 -0500213 * netlbl_unlhsh_search_iface - Search for a matching interface entry
214 * @ifindex: the network interface
215 *
216 * Description:
217 * Searches the unlabeled connection hash table and returns a pointer to the
218 * interface entry which matches @ifindex, otherwise NULL is returned. The
Paul Mooreb914f3a2010-04-01 10:43:57 +0000219 * caller is responsible for ensuring that the hash table is protected with
220 * either a RCU read lock or the hash table lock.
Paul Moore8cc44572008-01-29 08:44:21 -0500221 *
222 */
223static struct netlbl_unlhsh_iface *netlbl_unlhsh_search_iface(int ifindex)
224{
225 u32 bkt;
Paul Moore56196702008-10-10 10:16:29 -0400226 struct list_head *bkt_list;
Paul Moore8cc44572008-01-29 08:44:21 -0500227 struct netlbl_unlhsh_iface *iter;
228
229 bkt = netlbl_unlhsh_hash(ifindex);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000230 bkt_list = &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt];
Paul Moore56196702008-10-10 10:16:29 -0400231 list_for_each_entry_rcu(iter, bkt_list, list)
Paul Moore8cc44572008-01-29 08:44:21 -0500232 if (iter->valid && iter->ifindex == ifindex)
233 return iter;
234
235 return NULL;
236}
237
238/**
Paul Moore8cc44572008-01-29 08:44:21 -0500239 * netlbl_unlhsh_add_addr4 - Add a new IPv4 address entry to the hash table
240 * @iface: the associated interface entry
241 * @addr: IPv4 address in network byte order
242 * @mask: IPv4 address mask in network byte order
243 * @secid: LSM secid value for entry
244 *
245 * Description:
246 * Add a new address entry into the unlabeled connection hash table using the
247 * interface entry specified by @iface. On success zero is returned, otherwise
Paul Mooreb914f3a2010-04-01 10:43:57 +0000248 * a negative value is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500249 *
250 */
251static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface *iface,
252 const struct in_addr *addr,
253 const struct in_addr *mask,
254 u32 secid)
255{
Paul Moore61e10682008-10-10 10:16:32 -0400256 int ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500257 struct netlbl_unlhsh_addr4 *entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500258
259 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
260 if (entry == NULL)
261 return -ENOMEM;
262
Paul Moore61e10682008-10-10 10:16:32 -0400263 entry->list.addr = addr->s_addr & mask->s_addr;
264 entry->list.mask = mask->s_addr;
265 entry->list.valid = 1;
Paul Moore61e10682008-10-10 10:16:32 -0400266 entry->secid = secid;
Paul Moore8cc44572008-01-29 08:44:21 -0500267
268 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400269 ret_val = netlbl_af4list_add(&entry->list, &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500270 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400271
272 if (ret_val != 0)
273 kfree(entry);
274 return ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500275}
276
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000277#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500278/**
279 * netlbl_unlhsh_add_addr6 - Add a new IPv6 address entry to the hash table
280 * @iface: the associated interface entry
281 * @addr: IPv6 address in network byte order
282 * @mask: IPv6 address mask in network byte order
283 * @secid: LSM secid value for entry
284 *
285 * Description:
286 * Add a new address entry into the unlabeled connection hash table using the
287 * interface entry specified by @iface. On success zero is returned, otherwise
Paul Mooreb914f3a2010-04-01 10:43:57 +0000288 * a negative value is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500289 *
290 */
291static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface *iface,
292 const struct in6_addr *addr,
293 const struct in6_addr *mask,
294 u32 secid)
295{
Paul Moore61e10682008-10-10 10:16:32 -0400296 int ret_val;
Paul Moore8cc44572008-01-29 08:44:21 -0500297 struct netlbl_unlhsh_addr6 *entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500298
299 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
300 if (entry == NULL)
301 return -ENOMEM;
302
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000303 entry->list.addr = *addr;
Paul Moore61e10682008-10-10 10:16:32 -0400304 entry->list.addr.s6_addr32[0] &= mask->s6_addr32[0];
305 entry->list.addr.s6_addr32[1] &= mask->s6_addr32[1];
306 entry->list.addr.s6_addr32[2] &= mask->s6_addr32[2];
307 entry->list.addr.s6_addr32[3] &= mask->s6_addr32[3];
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000308 entry->list.mask = *mask;
Paul Moore61e10682008-10-10 10:16:32 -0400309 entry->list.valid = 1;
Paul Moore61e10682008-10-10 10:16:32 -0400310 entry->secid = secid;
Paul Moore8cc44572008-01-29 08:44:21 -0500311
312 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400313 ret_val = netlbl_af6list_add(&entry->list, &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500314 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400315
316 if (ret_val != 0)
317 kfree(entry);
Paul Moore8cc44572008-01-29 08:44:21 -0500318 return 0;
319}
320#endif /* IPv6 */
321
322/**
323 * netlbl_unlhsh_add_iface - Adds a new interface entry to the hash table
324 * @ifindex: network interface
325 *
326 * Description:
327 * Add a new, empty, interface entry into the unlabeled connection hash table.
328 * On success a pointer to the new interface entry is returned, on failure NULL
Paul Mooreb914f3a2010-04-01 10:43:57 +0000329 * is returned.
Paul Moore8cc44572008-01-29 08:44:21 -0500330 *
331 */
332static struct netlbl_unlhsh_iface *netlbl_unlhsh_add_iface(int ifindex)
333{
334 u32 bkt;
335 struct netlbl_unlhsh_iface *iface;
336
337 iface = kzalloc(sizeof(*iface), GFP_ATOMIC);
338 if (iface == NULL)
339 return NULL;
340
341 iface->ifindex = ifindex;
342 INIT_LIST_HEAD(&iface->addr4_list);
343 INIT_LIST_HEAD(&iface->addr6_list);
344 iface->valid = 1;
Paul Moore8cc44572008-01-29 08:44:21 -0500345
346 spin_lock(&netlbl_unlhsh_lock);
347 if (ifindex > 0) {
348 bkt = netlbl_unlhsh_hash(ifindex);
349 if (netlbl_unlhsh_search_iface(ifindex) != NULL)
350 goto add_iface_failure;
351 list_add_tail_rcu(&iface->list,
Paul Mooreb914f3a2010-04-01 10:43:57 +0000352 &netlbl_unlhsh_rcu_deref(netlbl_unlhsh)->tbl[bkt]);
Paul Moore8cc44572008-01-29 08:44:21 -0500353 } else {
354 INIT_LIST_HEAD(&iface->list);
Paul Mooreb914f3a2010-04-01 10:43:57 +0000355 if (netlbl_unlhsh_rcu_deref(netlbl_unlhsh_def) != NULL)
Paul Moore8cc44572008-01-29 08:44:21 -0500356 goto add_iface_failure;
Eric Dumazetcf778b02012-01-12 04:41:32 +0000357 rcu_assign_pointer(netlbl_unlhsh_def, iface);
Paul Moore8cc44572008-01-29 08:44:21 -0500358 }
359 spin_unlock(&netlbl_unlhsh_lock);
360
361 return iface;
362
363add_iface_failure:
364 spin_unlock(&netlbl_unlhsh_lock);
365 kfree(iface);
366 return NULL;
367}
368
369/**
370 * netlbl_unlhsh_add - Adds a new entry to the unlabeled connection hash table
371 * @net: network namespace
372 * @dev_name: interface name
373 * @addr: IP address in network byte order
374 * @mask: address mask in network byte order
375 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
376 * @secid: LSM secid value for the entry
Paul Moore13541b32008-01-29 08:44:23 -0500377 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500378 *
379 * Description:
380 * Adds a new entry to the unlabeled connection hash table. Returns zero on
381 * success, negative values on failure.
382 *
383 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500384int netlbl_unlhsh_add(struct net *net,
385 const char *dev_name,
386 const void *addr,
387 const void *mask,
388 u32 addr_len,
389 u32 secid,
390 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500391{
392 int ret_val;
393 int ifindex;
394 struct net_device *dev;
395 struct netlbl_unlhsh_iface *iface;
Paul Moore13541b32008-01-29 08:44:23 -0500396 struct audit_buffer *audit_buf = NULL;
397 char *secctx = NULL;
398 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500399
400 if (addr_len != sizeof(struct in_addr) &&
401 addr_len != sizeof(struct in6_addr))
402 return -EINVAL;
403
404 rcu_read_lock();
405 if (dev_name != NULL) {
Eric Dumazet122ec6f2009-11-05 20:53:47 -0800406 dev = dev_get_by_name_rcu(net, dev_name);
Paul Moore8cc44572008-01-29 08:44:21 -0500407 if (dev == NULL) {
408 ret_val = -ENODEV;
409 goto unlhsh_add_return;
410 }
411 ifindex = dev->ifindex;
Paul Moore8cc44572008-01-29 08:44:21 -0500412 iface = netlbl_unlhsh_search_iface(ifindex);
413 } else {
414 ifindex = 0;
415 iface = rcu_dereference(netlbl_unlhsh_def);
416 }
417 if (iface == NULL) {
418 iface = netlbl_unlhsh_add_iface(ifindex);
419 if (iface == NULL) {
420 ret_val = -ENOMEM;
421 goto unlhsh_add_return;
422 }
423 }
Paul Moore13541b32008-01-29 08:44:23 -0500424 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCADD,
425 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500426 switch (addr_len) {
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800427 case sizeof(struct in_addr): {
Joe Perchesea110732011-06-13 16:21:26 +0000428 const struct in_addr *addr4 = addr;
429 const struct in_addr *mask4 = mask;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800430
Paul Moore13541b32008-01-29 08:44:23 -0500431 ret_val = netlbl_unlhsh_add_addr4(iface, addr4, mask4, secid);
432 if (audit_buf != NULL)
Paul Moore63c41682008-10-10 10:16:32 -0400433 netlbl_af4list_audit_addr(audit_buf, 1,
434 dev_name,
435 addr4->s_addr,
436 mask4->s_addr);
Paul Moore8cc44572008-01-29 08:44:21 -0500437 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800438 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000439#if IS_ENABLED(CONFIG_IPV6)
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800440 case sizeof(struct in6_addr): {
Joe Perchesea110732011-06-13 16:21:26 +0000441 const struct in6_addr *addr6 = addr;
442 const struct in6_addr *mask6 = mask;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800443
Paul Moore13541b32008-01-29 08:44:23 -0500444 ret_val = netlbl_unlhsh_add_addr6(iface, addr6, mask6, secid);
445 if (audit_buf != NULL)
Paul Moore63c41682008-10-10 10:16:32 -0400446 netlbl_af6list_audit_addr(audit_buf, 1,
447 dev_name,
448 addr6, mask6);
Paul Moore8cc44572008-01-29 08:44:21 -0500449 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -0800450 }
Paul Moore8cc44572008-01-29 08:44:21 -0500451#endif /* IPv6 */
452 default:
453 ret_val = -EINVAL;
454 }
455 if (ret_val == 0)
456 atomic_inc(&netlabel_mgmt_protocount);
457
458unlhsh_add_return:
459 rcu_read_unlock();
Paul Moore13541b32008-01-29 08:44:23 -0500460 if (audit_buf != NULL) {
461 if (security_secid_to_secctx(secid,
462 &secctx,
463 &secctx_len) == 0) {
464 audit_log_format(audit_buf, " sec_obj=%s", secctx);
465 security_release_secctx(secctx, secctx_len);
466 }
467 audit_log_format(audit_buf, " res=%u", ret_val == 0 ? 1 : 0);
468 audit_log_end(audit_buf);
469 }
Paul Moore8cc44572008-01-29 08:44:21 -0500470 return ret_val;
471}
472
473/**
474 * netlbl_unlhsh_remove_addr4 - Remove an IPv4 address entry
Paul Moore13541b32008-01-29 08:44:23 -0500475 * @net: network namespace
Paul Moore8cc44572008-01-29 08:44:21 -0500476 * @iface: interface entry
477 * @addr: IP address
478 * @mask: IP address mask
Paul Moore13541b32008-01-29 08:44:23 -0500479 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500480 *
481 * Description:
482 * Remove an IP address entry from the unlabeled connection hash table.
Paul Mooreb914f3a2010-04-01 10:43:57 +0000483 * Returns zero on success, negative values on failure.
Paul Moore8cc44572008-01-29 08:44:21 -0500484 *
485 */
Paul Moore13541b32008-01-29 08:44:23 -0500486static int netlbl_unlhsh_remove_addr4(struct net *net,
487 struct netlbl_unlhsh_iface *iface,
Paul Moore8cc44572008-01-29 08:44:21 -0500488 const struct in_addr *addr,
Paul Moore13541b32008-01-29 08:44:23 -0500489 const struct in_addr *mask,
490 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500491{
Paul Moore61e10682008-10-10 10:16:32 -0400492 struct netlbl_af4list *list_entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500493 struct netlbl_unlhsh_addr4 *entry;
Paul Moore61e10682008-10-10 10:16:32 -0400494 struct audit_buffer *audit_buf;
Paul Moore13541b32008-01-29 08:44:23 -0500495 struct net_device *dev;
Paul Moore61e10682008-10-10 10:16:32 -0400496 char *secctx;
Paul Moore13541b32008-01-29 08:44:23 -0500497 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500498
499 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400500 list_entry = netlbl_af4list_remove(addr->s_addr, mask->s_addr,
501 &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500502 spin_unlock(&netlbl_unlhsh_lock);
Paul Moored25830e2008-12-03 00:37:04 -0800503 if (list_entry != NULL)
504 entry = netlbl_unlhsh_addr4_entry(list_entry);
505 else
Paul Mooreec8f2372008-12-11 21:31:50 -0800506 entry = NULL;
Paul Moore8cc44572008-01-29 08:44:21 -0500507
Paul Moore13541b32008-01-29 08:44:23 -0500508 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL,
509 audit_info);
510 if (audit_buf != NULL) {
511 dev = dev_get_by_index(net, iface->ifindex);
Paul Moore63c41682008-10-10 10:16:32 -0400512 netlbl_af4list_audit_addr(audit_buf, 1,
513 (dev != NULL ? dev->name : NULL),
514 addr->s_addr, mask->s_addr);
Paul Moore13541b32008-01-29 08:44:23 -0500515 if (dev != NULL)
516 dev_put(dev);
Paul Mooreec8f2372008-12-11 21:31:50 -0800517 if (entry != NULL &&
518 security_secid_to_secctx(entry->secid,
519 &secctx, &secctx_len) == 0) {
Paul Moore13541b32008-01-29 08:44:23 -0500520 audit_log_format(audit_buf, " sec_obj=%s", secctx);
521 security_release_secctx(secctx, secctx_len);
522 }
Paul Mooreec8f2372008-12-11 21:31:50 -0800523 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
Paul Moore13541b32008-01-29 08:44:23 -0500524 audit_log_end(audit_buf);
525 }
526
Paul Mooreec8f2372008-12-11 21:31:50 -0800527 if (entry == NULL)
528 return -ENOENT;
529
Lai Jiangshanc3b49422011-03-18 12:03:56 +0800530 kfree_rcu(entry, rcu);
Paul Mooreec8f2372008-12-11 21:31:50 -0800531 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -0500532}
533
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000534#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500535/**
536 * netlbl_unlhsh_remove_addr6 - Remove an IPv6 address entry
Paul Moore13541b32008-01-29 08:44:23 -0500537 * @net: network namespace
Paul Moore8cc44572008-01-29 08:44:21 -0500538 * @iface: interface entry
539 * @addr: IP address
540 * @mask: IP address mask
Paul Moore13541b32008-01-29 08:44:23 -0500541 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500542 *
543 * Description:
544 * Remove an IP address entry from the unlabeled connection hash table.
Paul Mooreb914f3a2010-04-01 10:43:57 +0000545 * Returns zero on success, negative values on failure.
Paul Moore8cc44572008-01-29 08:44:21 -0500546 *
547 */
Paul Moore13541b32008-01-29 08:44:23 -0500548static int netlbl_unlhsh_remove_addr6(struct net *net,
549 struct netlbl_unlhsh_iface *iface,
Paul Moore8cc44572008-01-29 08:44:21 -0500550 const struct in6_addr *addr,
Paul Moore13541b32008-01-29 08:44:23 -0500551 const struct in6_addr *mask,
552 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500553{
Paul Moore61e10682008-10-10 10:16:32 -0400554 struct netlbl_af6list *list_entry;
Paul Moore8cc44572008-01-29 08:44:21 -0500555 struct netlbl_unlhsh_addr6 *entry;
Paul Moore61e10682008-10-10 10:16:32 -0400556 struct audit_buffer *audit_buf;
Paul Moore13541b32008-01-29 08:44:23 -0500557 struct net_device *dev;
Paul Moore61e10682008-10-10 10:16:32 -0400558 char *secctx;
Paul Moore13541b32008-01-29 08:44:23 -0500559 u32 secctx_len;
Paul Moore8cc44572008-01-29 08:44:21 -0500560
561 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400562 list_entry = netlbl_af6list_remove(addr, mask, &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -0500563 spin_unlock(&netlbl_unlhsh_lock);
Paul Moored25830e2008-12-03 00:37:04 -0800564 if (list_entry != NULL)
565 entry = netlbl_unlhsh_addr6_entry(list_entry);
566 else
Paul Mooreec8f2372008-12-11 21:31:50 -0800567 entry = NULL;
Paul Moore8cc44572008-01-29 08:44:21 -0500568
Paul Moore13541b32008-01-29 08:44:23 -0500569 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_STCDEL,
570 audit_info);
571 if (audit_buf != NULL) {
572 dev = dev_get_by_index(net, iface->ifindex);
Paul Moore63c41682008-10-10 10:16:32 -0400573 netlbl_af6list_audit_addr(audit_buf, 1,
574 (dev != NULL ? dev->name : NULL),
575 addr, mask);
Paul Moore13541b32008-01-29 08:44:23 -0500576 if (dev != NULL)
577 dev_put(dev);
Paul Mooreec8f2372008-12-11 21:31:50 -0800578 if (entry != NULL &&
579 security_secid_to_secctx(entry->secid,
580 &secctx, &secctx_len) == 0) {
Paul Moore13541b32008-01-29 08:44:23 -0500581 audit_log_format(audit_buf, " sec_obj=%s", secctx);
582 security_release_secctx(secctx, secctx_len);
583 }
Paul Mooreec8f2372008-12-11 21:31:50 -0800584 audit_log_format(audit_buf, " res=%u", entry != NULL ? 1 : 0);
Paul Moore13541b32008-01-29 08:44:23 -0500585 audit_log_end(audit_buf);
586 }
587
Paul Mooreec8f2372008-12-11 21:31:50 -0800588 if (entry == NULL)
589 return -ENOENT;
590
Lai Jiangshan6b262232011-03-18 12:04:50 +0800591 kfree_rcu(entry, rcu);
Paul Mooreec8f2372008-12-11 21:31:50 -0800592 return 0;
Paul Moore8cc44572008-01-29 08:44:21 -0500593}
594#endif /* IPv6 */
595
596/**
597 * netlbl_unlhsh_condremove_iface - Remove an interface entry
598 * @iface: the interface entry
599 *
600 * Description:
601 * Remove an interface entry from the unlabeled connection hash table if it is
602 * empty. An interface entry is considered to be empty if there are no
603 * address entries assigned to it.
604 *
605 */
606static void netlbl_unlhsh_condremove_iface(struct netlbl_unlhsh_iface *iface)
607{
Paul Moore61e10682008-10-10 10:16:32 -0400608 struct netlbl_af4list *iter4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000609#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400610 struct netlbl_af6list *iter6;
611#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500612
613 spin_lock(&netlbl_unlhsh_lock);
Paul Moore61e10682008-10-10 10:16:32 -0400614 netlbl_af4list_foreach_rcu(iter4, &iface->addr4_list)
615 goto unlhsh_condremove_failure;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000616#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -0400617 netlbl_af6list_foreach_rcu(iter6, &iface->addr6_list)
618 goto unlhsh_condremove_failure;
619#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -0500620 iface->valid = 0;
621 if (iface->ifindex > 0)
622 list_del_rcu(&iface->list);
623 else
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000624 RCU_INIT_POINTER(netlbl_unlhsh_def, NULL);
Paul Moore8cc44572008-01-29 08:44:21 -0500625 spin_unlock(&netlbl_unlhsh_lock);
626
627 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
628 return;
629
630unlhsh_condremove_failure:
631 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore8cc44572008-01-29 08:44:21 -0500632}
633
634/**
635 * netlbl_unlhsh_remove - Remove an entry from the unlabeled hash table
636 * @net: network namespace
637 * @dev_name: interface name
638 * @addr: IP address in network byte order
639 * @mask: address mask in network byte order
640 * @addr_len: length of address/mask (4 for IPv4, 16 for IPv6)
Paul Moore13541b32008-01-29 08:44:23 -0500641 * @audit_info: NetLabel audit information
Paul Moore8cc44572008-01-29 08:44:21 -0500642 *
643 * Description:
644 * Removes and existing entry from the unlabeled connection hash table.
645 * Returns zero on success, negative values on failure.
646 *
647 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500648int netlbl_unlhsh_remove(struct net *net,
649 const char *dev_name,
650 const void *addr,
651 const void *mask,
652 u32 addr_len,
653 struct netlbl_audit *audit_info)
Paul Moore8cc44572008-01-29 08:44:21 -0500654{
655 int ret_val;
656 struct net_device *dev;
657 struct netlbl_unlhsh_iface *iface;
658
659 if (addr_len != sizeof(struct in_addr) &&
660 addr_len != sizeof(struct in6_addr))
661 return -EINVAL;
662
663 rcu_read_lock();
664 if (dev_name != NULL) {
Eric Dumazet122ec6f2009-11-05 20:53:47 -0800665 dev = dev_get_by_name_rcu(net, dev_name);
Paul Moore8cc44572008-01-29 08:44:21 -0500666 if (dev == NULL) {
667 ret_val = -ENODEV;
668 goto unlhsh_remove_return;
669 }
670 iface = netlbl_unlhsh_search_iface(dev->ifindex);
Paul Moore8cc44572008-01-29 08:44:21 -0500671 } else
672 iface = rcu_dereference(netlbl_unlhsh_def);
673 if (iface == NULL) {
674 ret_val = -ENOENT;
675 goto unlhsh_remove_return;
676 }
677 switch (addr_len) {
678 case sizeof(struct in_addr):
Paul Moore13541b32008-01-29 08:44:23 -0500679 ret_val = netlbl_unlhsh_remove_addr4(net,
680 iface, addr, mask,
681 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500682 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000683#if IS_ENABLED(CONFIG_IPV6)
Paul Moore8cc44572008-01-29 08:44:21 -0500684 case sizeof(struct in6_addr):
Paul Moore13541b32008-01-29 08:44:23 -0500685 ret_val = netlbl_unlhsh_remove_addr6(net,
686 iface, addr, mask,
687 audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500688 break;
689#endif /* IPv6 */
690 default:
691 ret_val = -EINVAL;
692 }
693 if (ret_val == 0) {
694 netlbl_unlhsh_condremove_iface(iface);
695 atomic_dec(&netlabel_mgmt_protocount);
696 }
697
698unlhsh_remove_return:
699 rcu_read_unlock();
700 return ret_val;
701}
702
703/*
704 * General Helper Functions
705 */
706
707/**
708 * netlbl_unlhsh_netdev_handler - Network device notification handler
709 * @this: notifier block
710 * @event: the event
Jiri Pirko351638e2013-05-28 01:30:21 +0000711 * @ptr: the netdevice notifier info (cast to void)
Paul Moore8cc44572008-01-29 08:44:21 -0500712 *
713 * Description:
714 * Handle network device events, although at present all we care about is a
715 * network device going away. In the case of a device going away we clear any
716 * related entries from the unlabeled connection hash table.
717 *
718 */
719static int netlbl_unlhsh_netdev_handler(struct notifier_block *this,
Jiri Pirko351638e2013-05-28 01:30:21 +0000720 unsigned long event, void *ptr)
Paul Moore8cc44572008-01-29 08:44:21 -0500721{
Jiri Pirko351638e2013-05-28 01:30:21 +0000722 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Paul Moore8cc44572008-01-29 08:44:21 -0500723 struct netlbl_unlhsh_iface *iface = NULL;
724
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700725 if (!net_eq(dev_net(dev), &init_net))
Paul Moore8cc44572008-01-29 08:44:21 -0500726 return NOTIFY_DONE;
727
728 /* XXX - should this be a check for NETDEV_DOWN or _UNREGISTER? */
729 if (event == NETDEV_DOWN) {
730 spin_lock(&netlbl_unlhsh_lock);
731 iface = netlbl_unlhsh_search_iface(dev->ifindex);
732 if (iface != NULL && iface->valid) {
733 iface->valid = 0;
734 list_del_rcu(&iface->list);
735 } else
736 iface = NULL;
737 spin_unlock(&netlbl_unlhsh_lock);
738 }
739
740 if (iface != NULL)
741 call_rcu(&iface->rcu, netlbl_unlhsh_free_iface);
742
743 return NOTIFY_DONE;
744}
745
746/**
Paul Moore32f50cd2006-09-28 14:51:47 -0700747 * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
748 * @value: desired value
Paul Moore95d4e6b2006-09-29 17:05:05 -0700749 * @audit_info: NetLabel audit information
Paul Moore32f50cd2006-09-28 14:51:47 -0700750 *
751 * Description:
752 * Set the value of the unlabeled accept flag to @value.
753 *
754 */
Paul Moore95d4e6b2006-09-29 17:05:05 -0700755static void netlbl_unlabel_acceptflg_set(u8 value,
756 struct netlbl_audit *audit_info)
Paul Moore32f50cd2006-09-28 14:51:47 -0700757{
Paul Moore95d4e6b2006-09-29 17:05:05 -0700758 struct audit_buffer *audit_buf;
759 u8 old_val;
760
Paul Moore4be27002007-10-26 04:29:08 -0700761 old_val = netlabel_unlabel_acceptflg;
Paul Moorecd287862006-11-17 17:38:44 -0500762 netlabel_unlabel_acceptflg = value;
Paul Moore95d4e6b2006-09-29 17:05:05 -0700763 audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW,
764 audit_info);
Paul Moorede646882006-11-17 17:38:55 -0500765 if (audit_buf != NULL) {
766 audit_log_format(audit_buf,
767 " unlbl_accept=%u old=%u", value, old_val);
768 audit_log_end(audit_buf);
769 }
Paul Moore32f50cd2006-09-28 14:51:47 -0700770}
771
Paul Moore8cc44572008-01-29 08:44:21 -0500772/**
773 * netlbl_unlabel_addrinfo_get - Get the IPv4/6 address information
774 * @info: the Generic NETLINK info block
775 * @addr: the IP address
776 * @mask: the IP address mask
777 * @len: the address length
778 *
779 * Description:
780 * Examine the Generic NETLINK message and extract the IP address information.
781 * Returns zero on success, negative values on failure.
782 *
783 */
784static int netlbl_unlabel_addrinfo_get(struct genl_info *info,
785 void **addr,
786 void **mask,
787 u32 *len)
788{
789 u32 addr_len;
790
791 if (info->attrs[NLBL_UNLABEL_A_IPV4ADDR]) {
792 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
793 if (addr_len != sizeof(struct in_addr) &&
794 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV4MASK]))
795 return -EINVAL;
796 *len = addr_len;
797 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4ADDR]);
798 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV4MASK]);
799 return 0;
800 } else if (info->attrs[NLBL_UNLABEL_A_IPV6ADDR]) {
801 addr_len = nla_len(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
802 if (addr_len != sizeof(struct in6_addr) &&
803 addr_len != nla_len(info->attrs[NLBL_UNLABEL_A_IPV6MASK]))
804 return -EINVAL;
805 *len = addr_len;
806 *addr = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6ADDR]);
807 *mask = nla_data(info->attrs[NLBL_UNLABEL_A_IPV6MASK]);
808 return 0;
809 }
810
811 return -EINVAL;
812}
813
Paul Moore32f50cd2006-09-28 14:51:47 -0700814/*
Paul Moore96cb8e32006-08-03 16:48:59 -0700815 * NetLabel Command Handlers
816 */
817
818/**
819 * netlbl_unlabel_accept - Handle an ACCEPT message
820 * @skb: the NETLINK buffer
821 * @info: the Generic NETLINK info block
822 *
823 * Description:
824 * Process a user generated ACCEPT message and set the accept flag accordingly.
825 * Returns zero on success, negative values on failure.
826 *
827 */
828static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info)
829{
Paul Moorefd385852006-09-25 15:56:37 -0700830 u8 value;
Paul Moore95d4e6b2006-09-29 17:05:05 -0700831 struct netlbl_audit audit_info;
Paul Moore96cb8e32006-08-03 16:48:59 -0700832
Paul Moorefd385852006-09-25 15:56:37 -0700833 if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) {
834 value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]);
Paul Moore96cb8e32006-08-03 16:48:59 -0700835 if (value == 1 || value == 0) {
Paul Moore95d4e6b2006-09-29 17:05:05 -0700836 netlbl_netlink_auditinfo(skb, &audit_info);
837 netlbl_unlabel_acceptflg_set(value, &audit_info);
Paul Moore32f50cd2006-09-28 14:51:47 -0700838 return 0;
Paul Moore96cb8e32006-08-03 16:48:59 -0700839 }
840 }
841
Paul Moore32f50cd2006-09-28 14:51:47 -0700842 return -EINVAL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700843}
844
845/**
846 * netlbl_unlabel_list - Handle a LIST message
847 * @skb: the NETLINK buffer
848 * @info: the Generic NETLINK info block
849 *
850 * Description:
851 * Process a user generated LIST message and respond with the current status.
852 * Returns zero on success, negative values on failure.
853 *
854 */
855static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
856{
Paul Moorefd385852006-09-25 15:56:37 -0700857 int ret_val = -EINVAL;
Paul Moore96cb8e32006-08-03 16:48:59 -0700858 struct sk_buff *ans_skb;
Paul Moorefd385852006-09-25 15:56:37 -0700859 void *data;
Paul Moore96cb8e32006-08-03 16:48:59 -0700860
Thomas Graf339bf982006-11-10 14:10:15 -0800861 ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Paul Moore96cb8e32006-08-03 16:48:59 -0700862 if (ans_skb == NULL)
863 goto list_failure;
Thomas Graf17c157c2006-11-14 19:46:02 -0800864 data = genlmsg_put_reply(ans_skb, info, &netlbl_unlabel_gnl_family,
865 0, NLBL_UNLABEL_C_LIST);
Paul Moorefd385852006-09-25 15:56:37 -0700866 if (data == NULL) {
867 ret_val = -ENOMEM;
Paul Moore96cb8e32006-08-03 16:48:59 -0700868 goto list_failure;
Paul Moorefd385852006-09-25 15:56:37 -0700869 }
Paul Moore96cb8e32006-08-03 16:48:59 -0700870
Paul Moorefd385852006-09-25 15:56:37 -0700871 ret_val = nla_put_u8(ans_skb,
872 NLBL_UNLABEL_A_ACPTFLG,
Paul Moorecd287862006-11-17 17:38:44 -0500873 netlabel_unlabel_acceptflg);
Paul Moore96cb8e32006-08-03 16:48:59 -0700874 if (ret_val != 0)
875 goto list_failure;
876
Paul Moorefd385852006-09-25 15:56:37 -0700877 genlmsg_end(ans_skb, data);
Denis V. Lunevfe785be2008-07-10 16:53:39 -0700878 return genlmsg_reply(ans_skb, info);
Paul Moore96cb8e32006-08-03 16:48:59 -0700879
880list_failure:
Patrick McHardyb08d5842007-02-27 09:57:37 -0800881 kfree_skb(ans_skb);
Paul Moore96cb8e32006-08-03 16:48:59 -0700882 return ret_val;
883}
884
Paul Moore8cc44572008-01-29 08:44:21 -0500885/**
886 * netlbl_unlabel_staticadd - Handle a STATICADD message
887 * @skb: the NETLINK buffer
888 * @info: the Generic NETLINK info block
889 *
890 * Description:
891 * Process a user generated STATICADD message and add a new unlabeled
892 * connection entry to the hash table. Returns zero on success, negative
893 * values on failure.
894 *
895 */
896static int netlbl_unlabel_staticadd(struct sk_buff *skb,
897 struct genl_info *info)
898{
899 int ret_val;
900 char *dev_name;
901 void *addr;
902 void *mask;
903 u32 addr_len;
904 u32 secid;
Paul Moore13541b32008-01-29 08:44:23 -0500905 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500906
907 /* Don't allow users to add both IPv4 and IPv6 addresses for a
908 * single entry. However, allow users to create two entries, one each
909 * for IPv4 and IPv4, with the same LSM security context which should
910 * achieve the same result. */
911 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
912 !info->attrs[NLBL_UNLABEL_A_IFACE] ||
913 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
914 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
915 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
916 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
917 return -EINVAL;
918
Paul Moore13541b32008-01-29 08:44:23 -0500919 netlbl_netlink_auditinfo(skb, &audit_info);
920
Paul Moore8cc44572008-01-29 08:44:21 -0500921 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
922 if (ret_val != 0)
923 return ret_val;
924 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
925 ret_val = security_secctx_to_secid(
926 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
927 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
928 &secid);
929 if (ret_val != 0)
930 return ret_val;
931
932 return netlbl_unlhsh_add(&init_net,
Paul Moore13541b32008-01-29 08:44:23 -0500933 dev_name, addr, mask, addr_len, secid,
934 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500935}
936
937/**
938 * netlbl_unlabel_staticadddef - Handle a STATICADDDEF message
939 * @skb: the NETLINK buffer
940 * @info: the Generic NETLINK info block
941 *
942 * Description:
943 * Process a user generated STATICADDDEF message and add a new default
944 * unlabeled connection entry. Returns zero on success, negative values on
945 * failure.
946 *
947 */
948static int netlbl_unlabel_staticadddef(struct sk_buff *skb,
949 struct genl_info *info)
950{
951 int ret_val;
952 void *addr;
953 void *mask;
954 u32 addr_len;
955 u32 secid;
Paul Moore13541b32008-01-29 08:44:23 -0500956 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -0500957
958 /* Don't allow users to add both IPv4 and IPv6 addresses for a
959 * single entry. However, allow users to create two entries, one each
960 * for IPv4 and IPv6, with the same LSM security context which should
961 * achieve the same result. */
962 if (!info->attrs[NLBL_UNLABEL_A_SECCTX] ||
963 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
964 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
965 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
966 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
967 return -EINVAL;
968
Paul Moore13541b32008-01-29 08:44:23 -0500969 netlbl_netlink_auditinfo(skb, &audit_info);
970
Paul Moore8cc44572008-01-29 08:44:21 -0500971 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
972 if (ret_val != 0)
973 return ret_val;
974 ret_val = security_secctx_to_secid(
975 nla_data(info->attrs[NLBL_UNLABEL_A_SECCTX]),
976 nla_len(info->attrs[NLBL_UNLABEL_A_SECCTX]),
977 &secid);
978 if (ret_val != 0)
979 return ret_val;
980
Paul Moore13541b32008-01-29 08:44:23 -0500981 return netlbl_unlhsh_add(&init_net,
982 NULL, addr, mask, addr_len, secid,
983 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -0500984}
985
986/**
987 * netlbl_unlabel_staticremove - Handle a STATICREMOVE message
988 * @skb: the NETLINK buffer
989 * @info: the Generic NETLINK info block
990 *
991 * Description:
992 * Process a user generated STATICREMOVE message and remove the specified
993 * unlabeled connection entry. Returns zero on success, negative values on
994 * failure.
995 *
996 */
997static int netlbl_unlabel_staticremove(struct sk_buff *skb,
998 struct genl_info *info)
999{
1000 int ret_val;
1001 char *dev_name;
1002 void *addr;
1003 void *mask;
1004 u32 addr_len;
Paul Moore13541b32008-01-29 08:44:23 -05001005 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -05001006
1007 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1008 * IPv4 and IPv6 in the same entry. */
1009 if (!info->attrs[NLBL_UNLABEL_A_IFACE] ||
1010 !((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
1011 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
1012 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
1013 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
1014 return -EINVAL;
1015
Paul Moore13541b32008-01-29 08:44:23 -05001016 netlbl_netlink_auditinfo(skb, &audit_info);
1017
Paul Moore8cc44572008-01-29 08:44:21 -05001018 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
1019 if (ret_val != 0)
1020 return ret_val;
1021 dev_name = nla_data(info->attrs[NLBL_UNLABEL_A_IFACE]);
1022
Paul Moore13541b32008-01-29 08:44:23 -05001023 return netlbl_unlhsh_remove(&init_net,
1024 dev_name, addr, mask, addr_len,
1025 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -05001026}
1027
1028/**
1029 * netlbl_unlabel_staticremovedef - Handle a STATICREMOVEDEF message
1030 * @skb: the NETLINK buffer
1031 * @info: the Generic NETLINK info block
1032 *
1033 * Description:
1034 * Process a user generated STATICREMOVEDEF message and remove the default
1035 * unlabeled connection entry. Returns zero on success, negative values on
1036 * failure.
1037 *
1038 */
1039static int netlbl_unlabel_staticremovedef(struct sk_buff *skb,
1040 struct genl_info *info)
1041{
1042 int ret_val;
1043 void *addr;
1044 void *mask;
1045 u32 addr_len;
Paul Moore13541b32008-01-29 08:44:23 -05001046 struct netlbl_audit audit_info;
Paul Moore8cc44572008-01-29 08:44:21 -05001047
1048 /* See the note in netlbl_unlabel_staticadd() about not allowing both
1049 * IPv4 and IPv6 in the same entry. */
1050 if (!((!info->attrs[NLBL_UNLABEL_A_IPV4ADDR] ||
1051 !info->attrs[NLBL_UNLABEL_A_IPV4MASK]) ^
1052 (!info->attrs[NLBL_UNLABEL_A_IPV6ADDR] ||
1053 !info->attrs[NLBL_UNLABEL_A_IPV6MASK])))
1054 return -EINVAL;
1055
Paul Moore13541b32008-01-29 08:44:23 -05001056 netlbl_netlink_auditinfo(skb, &audit_info);
1057
Paul Moore8cc44572008-01-29 08:44:21 -05001058 ret_val = netlbl_unlabel_addrinfo_get(info, &addr, &mask, &addr_len);
1059 if (ret_val != 0)
1060 return ret_val;
1061
Paul Moore13541b32008-01-29 08:44:23 -05001062 return netlbl_unlhsh_remove(&init_net,
1063 NULL, addr, mask, addr_len,
1064 &audit_info);
Paul Moore8cc44572008-01-29 08:44:21 -05001065}
1066
1067
1068/**
1069 * netlbl_unlabel_staticlist_gen - Generate messages for STATICLIST[DEF]
1070 * @cmd: command/message
1071 * @iface: the interface entry
1072 * @addr4: the IPv4 address entry
1073 * @addr6: the IPv6 address entry
1074 * @arg: the netlbl_unlhsh_walk_arg structure
1075 *
1076 * Description:
1077 * This function is designed to be used to generate a response for a
1078 * STATICLIST or STATICLISTDEF message. When called either @addr4 or @addr6
1079 * can be specified, not both, the other unspecified entry should be set to
1080 * NULL by the caller. Returns the size of the message on success, negative
1081 * values on failure.
1082 *
1083 */
1084static int netlbl_unlabel_staticlist_gen(u32 cmd,
1085 const struct netlbl_unlhsh_iface *iface,
1086 const struct netlbl_unlhsh_addr4 *addr4,
1087 const struct netlbl_unlhsh_addr6 *addr6,
1088 void *arg)
1089{
1090 int ret_val = -ENOMEM;
1091 struct netlbl_unlhsh_walk_arg *cb_arg = arg;
1092 struct net_device *dev;
1093 void *data;
1094 u32 secid;
1095 char *secctx;
1096 u32 secctx_len;
1097
Eric W. Biederman15e47302012-09-07 20:12:54 +00001098 data = genlmsg_put(cb_arg->skb, NETLINK_CB(cb_arg->nl_cb->skb).portid,
Paul Moore8cc44572008-01-29 08:44:21 -05001099 cb_arg->seq, &netlbl_unlabel_gnl_family,
1100 NLM_F_MULTI, cmd);
1101 if (data == NULL)
1102 goto list_cb_failure;
1103
1104 if (iface->ifindex > 0) {
1105 dev = dev_get_by_index(&init_net, iface->ifindex);
Jesper Juhl794eb6b2008-04-17 23:22:54 -07001106 if (!dev) {
1107 ret_val = -ENODEV;
1108 goto list_cb_failure;
1109 }
Paul Moore8cc44572008-01-29 08:44:21 -05001110 ret_val = nla_put_string(cb_arg->skb,
1111 NLBL_UNLABEL_A_IFACE, dev->name);
1112 dev_put(dev);
1113 if (ret_val != 0)
1114 goto list_cb_failure;
1115 }
1116
1117 if (addr4) {
1118 struct in_addr addr_struct;
1119
Paul Moore61e10682008-10-10 10:16:32 -04001120 addr_struct.s_addr = addr4->list.addr;
Paul Moore8cc44572008-01-29 08:44:21 -05001121 ret_val = nla_put(cb_arg->skb,
1122 NLBL_UNLABEL_A_IPV4ADDR,
1123 sizeof(struct in_addr),
1124 &addr_struct);
1125 if (ret_val != 0)
1126 goto list_cb_failure;
1127
Paul Moore61e10682008-10-10 10:16:32 -04001128 addr_struct.s_addr = addr4->list.mask;
Paul Moore8cc44572008-01-29 08:44:21 -05001129 ret_val = nla_put(cb_arg->skb,
1130 NLBL_UNLABEL_A_IPV4MASK,
1131 sizeof(struct in_addr),
1132 &addr_struct);
1133 if (ret_val != 0)
1134 goto list_cb_failure;
1135
1136 secid = addr4->secid;
1137 } else {
1138 ret_val = nla_put(cb_arg->skb,
1139 NLBL_UNLABEL_A_IPV6ADDR,
1140 sizeof(struct in6_addr),
Paul Moore61e10682008-10-10 10:16:32 -04001141 &addr6->list.addr);
Paul Moore8cc44572008-01-29 08:44:21 -05001142 if (ret_val != 0)
1143 goto list_cb_failure;
1144
1145 ret_val = nla_put(cb_arg->skb,
1146 NLBL_UNLABEL_A_IPV6MASK,
1147 sizeof(struct in6_addr),
Paul Moore61e10682008-10-10 10:16:32 -04001148 &addr6->list.mask);
Paul Moore8cc44572008-01-29 08:44:21 -05001149 if (ret_val != 0)
1150 goto list_cb_failure;
1151
1152 secid = addr6->secid;
1153 }
1154
1155 ret_val = security_secid_to_secctx(secid, &secctx, &secctx_len);
1156 if (ret_val != 0)
1157 goto list_cb_failure;
1158 ret_val = nla_put(cb_arg->skb,
1159 NLBL_UNLABEL_A_SECCTX,
1160 secctx_len,
1161 secctx);
1162 security_release_secctx(secctx, secctx_len);
1163 if (ret_val != 0)
1164 goto list_cb_failure;
1165
1166 cb_arg->seq++;
1167 return genlmsg_end(cb_arg->skb, data);
1168
1169list_cb_failure:
1170 genlmsg_cancel(cb_arg->skb, data);
1171 return ret_val;
1172}
1173
1174/**
1175 * netlbl_unlabel_staticlist - Handle a STATICLIST message
1176 * @skb: the NETLINK buffer
1177 * @cb: the NETLINK callback
1178 *
1179 * Description:
1180 * Process a user generated STATICLIST message and dump the unlabeled
1181 * connection hash table in a form suitable for use in a kernel generated
1182 * STATICLIST message. Returns the length of @skb.
1183 *
1184 */
1185static int netlbl_unlabel_staticlist(struct sk_buff *skb,
1186 struct netlink_callback *cb)
1187{
1188 struct netlbl_unlhsh_walk_arg cb_arg;
1189 u32 skip_bkt = cb->args[0];
1190 u32 skip_chain = cb->args[1];
Paul Moore8cc44572008-01-29 08:44:21 -05001191 u32 iter_bkt;
1192 u32 iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0;
1193 struct netlbl_unlhsh_iface *iface;
Paul Moore56196702008-10-10 10:16:29 -04001194 struct list_head *iter_list;
Paul Moore61e10682008-10-10 10:16:32 -04001195 struct netlbl_af4list *addr4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001196#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001197 struct netlbl_af6list *addr6;
1198#endif
Paul Moore8cc44572008-01-29 08:44:21 -05001199
1200 cb_arg.nl_cb = cb;
1201 cb_arg.skb = skb;
1202 cb_arg.seq = cb->nlh->nlmsg_seq;
1203
1204 rcu_read_lock();
1205 for (iter_bkt = skip_bkt;
1206 iter_bkt < rcu_dereference(netlbl_unlhsh)->size;
1207 iter_bkt++, iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0) {
Paul Moore56196702008-10-10 10:16:29 -04001208 iter_list = &rcu_dereference(netlbl_unlhsh)->tbl[iter_bkt];
1209 list_for_each_entry_rcu(iface, iter_list, list) {
Paul Moore8cc44572008-01-29 08:44:21 -05001210 if (!iface->valid ||
1211 iter_chain++ < skip_chain)
1212 continue;
Paul Moore61e10682008-10-10 10:16:32 -04001213 netlbl_af4list_foreach_rcu(addr4,
1214 &iface->addr4_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001215 if (iter_addr4++ < cb->args[2])
Paul Moore8cc44572008-01-29 08:44:21 -05001216 continue;
1217 if (netlbl_unlabel_staticlist_gen(
Paul Moore61e10682008-10-10 10:16:32 -04001218 NLBL_UNLABEL_C_STATICLIST,
1219 iface,
1220 netlbl_unlhsh_addr4_entry(addr4),
1221 NULL,
1222 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001223 iter_addr4--;
1224 iter_chain--;
1225 goto unlabel_staticlist_return;
1226 }
1227 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001228#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001229 netlbl_af6list_foreach_rcu(addr6,
1230 &iface->addr6_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001231 if (iter_addr6++ < cb->args[3])
Paul Moore8cc44572008-01-29 08:44:21 -05001232 continue;
1233 if (netlbl_unlabel_staticlist_gen(
Paul Moore61e10682008-10-10 10:16:32 -04001234 NLBL_UNLABEL_C_STATICLIST,
1235 iface,
1236 NULL,
1237 netlbl_unlhsh_addr6_entry(addr6),
1238 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001239 iter_addr6--;
1240 iter_chain--;
1241 goto unlabel_staticlist_return;
1242 }
1243 }
Paul Moore61e10682008-10-10 10:16:32 -04001244#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -05001245 }
1246 }
1247
1248unlabel_staticlist_return:
1249 rcu_read_unlock();
Paul Moore0c1233a2013-03-06 11:45:24 +00001250 cb->args[0] = iter_bkt;
1251 cb->args[1] = iter_chain;
1252 cb->args[2] = iter_addr4;
1253 cb->args[3] = iter_addr6;
Paul Moore8cc44572008-01-29 08:44:21 -05001254 return skb->len;
1255}
1256
1257/**
1258 * netlbl_unlabel_staticlistdef - Handle a STATICLISTDEF message
1259 * @skb: the NETLINK buffer
1260 * @cb: the NETLINK callback
1261 *
1262 * Description:
1263 * Process a user generated STATICLISTDEF message and dump the default
1264 * unlabeled connection entry in a form suitable for use in a kernel generated
1265 * STATICLISTDEF message. Returns the length of @skb.
1266 *
1267 */
1268static int netlbl_unlabel_staticlistdef(struct sk_buff *skb,
1269 struct netlink_callback *cb)
1270{
1271 struct netlbl_unlhsh_walk_arg cb_arg;
1272 struct netlbl_unlhsh_iface *iface;
Paul Moorea6a8fe92013-03-08 09:45:39 -05001273 u32 iter_addr4 = 0, iter_addr6 = 0;
Paul Moore61e10682008-10-10 10:16:32 -04001274 struct netlbl_af4list *addr4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001275#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001276 struct netlbl_af6list *addr6;
1277#endif
Paul Moore8cc44572008-01-29 08:44:21 -05001278
1279 cb_arg.nl_cb = cb;
1280 cb_arg.skb = skb;
1281 cb_arg.seq = cb->nlh->nlmsg_seq;
1282
1283 rcu_read_lock();
1284 iface = rcu_dereference(netlbl_unlhsh_def);
1285 if (iface == NULL || !iface->valid)
1286 goto unlabel_staticlistdef_return;
1287
Paul Moore61e10682008-10-10 10:16:32 -04001288 netlbl_af4list_foreach_rcu(addr4, &iface->addr4_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001289 if (iter_addr4++ < cb->args[0])
Paul Moore8cc44572008-01-29 08:44:21 -05001290 continue;
1291 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
Paul Moore61e10682008-10-10 10:16:32 -04001292 iface,
1293 netlbl_unlhsh_addr4_entry(addr4),
1294 NULL,
1295 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001296 iter_addr4--;
1297 goto unlabel_staticlistdef_return;
1298 }
1299 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001300#if IS_ENABLED(CONFIG_IPV6)
Paul Moore61e10682008-10-10 10:16:32 -04001301 netlbl_af6list_foreach_rcu(addr6, &iface->addr6_list) {
Paul Moorea6a8fe92013-03-08 09:45:39 -05001302 if (iter_addr6++ < cb->args[1])
Paul Moore8cc44572008-01-29 08:44:21 -05001303 continue;
1304 if (netlbl_unlabel_staticlist_gen(NLBL_UNLABEL_C_STATICLISTDEF,
Paul Moore61e10682008-10-10 10:16:32 -04001305 iface,
1306 NULL,
1307 netlbl_unlhsh_addr6_entry(addr6),
1308 &cb_arg) < 0) {
Paul Moore8cc44572008-01-29 08:44:21 -05001309 iter_addr6--;
1310 goto unlabel_staticlistdef_return;
1311 }
1312 }
Paul Moore61e10682008-10-10 10:16:32 -04001313#endif /* IPv6 */
Paul Moore8cc44572008-01-29 08:44:21 -05001314
1315unlabel_staticlistdef_return:
1316 rcu_read_unlock();
Paul Moore0c1233a2013-03-06 11:45:24 +00001317 cb->args[0] = iter_addr4;
1318 cb->args[1] = iter_addr6;
Paul Moore8cc44572008-01-29 08:44:21 -05001319 return skb->len;
1320}
Paul Moore96cb8e32006-08-03 16:48:59 -07001321
1322/*
1323 * NetLabel Generic NETLINK Command Definitions
1324 */
1325
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001326static struct genl_ops netlbl_unlabel_genl_ops[] = {
1327 {
Paul Moore8cc44572008-01-29 08:44:21 -05001328 .cmd = NLBL_UNLABEL_C_STATICADD,
1329 .flags = GENL_ADMIN_PERM,
1330 .policy = netlbl_unlabel_genl_policy,
1331 .doit = netlbl_unlabel_staticadd,
1332 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001333 },
1334 {
Paul Moore8cc44572008-01-29 08:44:21 -05001335 .cmd = NLBL_UNLABEL_C_STATICREMOVE,
1336 .flags = GENL_ADMIN_PERM,
1337 .policy = netlbl_unlabel_genl_policy,
1338 .doit = netlbl_unlabel_staticremove,
1339 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001340 },
1341 {
Paul Moore8cc44572008-01-29 08:44:21 -05001342 .cmd = NLBL_UNLABEL_C_STATICLIST,
1343 .flags = 0,
1344 .policy = netlbl_unlabel_genl_policy,
1345 .doit = NULL,
1346 .dumpit = netlbl_unlabel_staticlist,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001347 },
1348 {
Paul Moore8cc44572008-01-29 08:44:21 -05001349 .cmd = NLBL_UNLABEL_C_STATICADDDEF,
1350 .flags = GENL_ADMIN_PERM,
1351 .policy = netlbl_unlabel_genl_policy,
1352 .doit = netlbl_unlabel_staticadddef,
1353 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001354 },
1355 {
Paul Moore8cc44572008-01-29 08:44:21 -05001356 .cmd = NLBL_UNLABEL_C_STATICREMOVEDEF,
1357 .flags = GENL_ADMIN_PERM,
1358 .policy = netlbl_unlabel_genl_policy,
1359 .doit = netlbl_unlabel_staticremovedef,
1360 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001361 },
1362 {
Paul Moore8cc44572008-01-29 08:44:21 -05001363 .cmd = NLBL_UNLABEL_C_STATICLISTDEF,
1364 .flags = 0,
1365 .policy = netlbl_unlabel_genl_policy,
1366 .doit = NULL,
1367 .dumpit = netlbl_unlabel_staticlistdef,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001368 },
1369 {
Paul Moore96cb8e32006-08-03 16:48:59 -07001370 .cmd = NLBL_UNLABEL_C_ACCEPT,
Paul Moorefd385852006-09-25 15:56:37 -07001371 .flags = GENL_ADMIN_PERM,
1372 .policy = netlbl_unlabel_genl_policy,
Paul Moore96cb8e32006-08-03 16:48:59 -07001373 .doit = netlbl_unlabel_accept,
1374 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001375 },
1376 {
Paul Moore96cb8e32006-08-03 16:48:59 -07001377 .cmd = NLBL_UNLABEL_C_LIST,
1378 .flags = 0,
Paul Moorefd385852006-09-25 15:56:37 -07001379 .policy = netlbl_unlabel_genl_policy,
Paul Moore96cb8e32006-08-03 16:48:59 -07001380 .doit = netlbl_unlabel_list,
1381 .dumpit = NULL,
Pavel Emelyanov227c43c2008-02-17 22:33:16 -08001382 },
Paul Moore96cb8e32006-08-03 16:48:59 -07001383};
1384
Paul Moore96cb8e32006-08-03 16:48:59 -07001385/*
1386 * NetLabel Generic NETLINK Protocol Functions
1387 */
1388
1389/**
1390 * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
1391 *
1392 * Description:
1393 * Register the unlabeled packet NetLabel component with the Generic NETLINK
1394 * mechanism. Returns zero on success, negative values on failure.
1395 *
1396 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001397int __init netlbl_unlabel_genl_init(void)
Paul Moore96cb8e32006-08-03 16:48:59 -07001398{
Michał Mirosław7ae740d2009-05-21 10:34:05 +00001399 return genl_register_family_with_ops(&netlbl_unlabel_gnl_family,
1400 netlbl_unlabel_genl_ops, ARRAY_SIZE(netlbl_unlabel_genl_ops));
Paul Moore96cb8e32006-08-03 16:48:59 -07001401}
1402
1403/*
1404 * NetLabel KAPI Hooks
1405 */
1406
Paul Moore8cc44572008-01-29 08:44:21 -05001407static struct notifier_block netlbl_unlhsh_netdev_notifier = {
1408 .notifier_call = netlbl_unlhsh_netdev_handler,
1409};
1410
1411/**
1412 * netlbl_unlabel_init - Initialize the unlabeled connection hash table
1413 * @size: the number of bits to use for the hash buckets
1414 *
1415 * Description:
1416 * Initializes the unlabeled connection hash table and registers a network
1417 * device notification handler. This function should only be called by the
1418 * NetLabel subsystem itself during initialization. Returns zero on success,
1419 * non-zero values on error.
1420 *
1421 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001422int __init netlbl_unlabel_init(u32 size)
Paul Moore8cc44572008-01-29 08:44:21 -05001423{
1424 u32 iter;
1425 struct netlbl_unlhsh_tbl *hsh_tbl;
1426
1427 if (size == 0)
1428 return -EINVAL;
1429
1430 hsh_tbl = kmalloc(sizeof(*hsh_tbl), GFP_KERNEL);
1431 if (hsh_tbl == NULL)
1432 return -ENOMEM;
1433 hsh_tbl->size = 1 << size;
1434 hsh_tbl->tbl = kcalloc(hsh_tbl->size,
1435 sizeof(struct list_head),
1436 GFP_KERNEL);
1437 if (hsh_tbl->tbl == NULL) {
1438 kfree(hsh_tbl);
1439 return -ENOMEM;
1440 }
1441 for (iter = 0; iter < hsh_tbl->size; iter++)
1442 INIT_LIST_HEAD(&hsh_tbl->tbl[iter]);
1443
Paul Moore8cc44572008-01-29 08:44:21 -05001444 spin_lock(&netlbl_unlhsh_lock);
Eric Dumazetcf778b02012-01-12 04:41:32 +00001445 rcu_assign_pointer(netlbl_unlhsh, hsh_tbl);
Paul Moore8cc44572008-01-29 08:44:21 -05001446 spin_unlock(&netlbl_unlhsh_lock);
Paul Moore8cc44572008-01-29 08:44:21 -05001447
1448 register_netdevice_notifier(&netlbl_unlhsh_netdev_notifier);
1449
1450 return 0;
1451}
1452
Paul Moore96cb8e32006-08-03 16:48:59 -07001453/**
1454 * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
Paul Moore8cc44572008-01-29 08:44:21 -05001455 * @skb: the packet
1456 * @family: protocol family
Paul Moore96cb8e32006-08-03 16:48:59 -07001457 * @secattr: the security attributes
1458 *
1459 * Description:
1460 * Determine the security attributes, if any, for an unlabled packet and return
1461 * them in @secattr. Returns zero on success and negative values on failure.
1462 *
1463 */
Paul Moore8cc44572008-01-29 08:44:21 -05001464int netlbl_unlabel_getattr(const struct sk_buff *skb,
1465 u16 family,
1466 struct netlbl_lsm_secattr *secattr)
Paul Moore96cb8e32006-08-03 16:48:59 -07001467{
Paul Moore8cc44572008-01-29 08:44:21 -05001468 struct netlbl_unlhsh_iface *iface;
1469
1470 rcu_read_lock();
Paul Mooreb914f3a2010-04-01 10:43:57 +00001471 iface = netlbl_unlhsh_search_iface(skb->skb_iif);
Paul Moore8cc44572008-01-29 08:44:21 -05001472 if (iface == NULL)
Paul Mooreb914f3a2010-04-01 10:43:57 +00001473 iface = rcu_dereference(netlbl_unlhsh_def);
1474 if (iface == NULL || !iface->valid)
Paul Moore8cc44572008-01-29 08:44:21 -05001475 goto unlabel_getattr_nolabel;
1476 switch (family) {
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001477 case PF_INET: {
1478 struct iphdr *hdr4;
Paul Moore61e10682008-10-10 10:16:32 -04001479 struct netlbl_af4list *addr4;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001480
Paul Moore8cc44572008-01-29 08:44:21 -05001481 hdr4 = ip_hdr(skb);
Paul Moore61e10682008-10-10 10:16:32 -04001482 addr4 = netlbl_af4list_search(hdr4->saddr,
1483 &iface->addr4_list);
Paul Moore8cc44572008-01-29 08:44:21 -05001484 if (addr4 == NULL)
1485 goto unlabel_getattr_nolabel;
Paul Moore61e10682008-10-10 10:16:32 -04001486 secattr->attr.secid = netlbl_unlhsh_addr4_entry(addr4)->secid;
Paul Moore8cc44572008-01-29 08:44:21 -05001487 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001488 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001489#if IS_ENABLED(CONFIG_IPV6)
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001490 case PF_INET6: {
1491 struct ipv6hdr *hdr6;
Paul Moore61e10682008-10-10 10:16:32 -04001492 struct netlbl_af6list *addr6;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001493
Paul Moore8cc44572008-01-29 08:44:21 -05001494 hdr6 = ipv6_hdr(skb);
Paul Moore61e10682008-10-10 10:16:32 -04001495 addr6 = netlbl_af6list_search(&hdr6->saddr,
1496 &iface->addr6_list);
Paul Moore8cc44572008-01-29 08:44:21 -05001497 if (addr6 == NULL)
1498 goto unlabel_getattr_nolabel;
Paul Moore61e10682008-10-10 10:16:32 -04001499 secattr->attr.secid = netlbl_unlhsh_addr6_entry(addr6)->secid;
Paul Moore8cc44572008-01-29 08:44:21 -05001500 break;
Pavel Emelyanov56628b12008-02-12 22:37:19 -08001501 }
Paul Moore8cc44572008-01-29 08:44:21 -05001502#endif /* IPv6 */
1503 default:
1504 goto unlabel_getattr_nolabel;
1505 }
1506 rcu_read_unlock();
1507
1508 secattr->flags |= NETLBL_SECATTR_SECID;
1509 secattr->type = NETLBL_NLTYPE_UNLABELED;
1510 return 0;
1511
1512unlabel_getattr_nolabel:
1513 rcu_read_unlock();
Paul Moorec783f1c2008-01-29 08:37:52 -05001514 if (netlabel_unlabel_acceptflg == 0)
1515 return -ENOMSG;
Paul Moore16efd452008-01-29 08:37:59 -05001516 secattr->type = NETLBL_NLTYPE_UNLABELED;
Paul Moorec783f1c2008-01-29 08:37:52 -05001517 return 0;
Paul Moore96cb8e32006-08-03 16:48:59 -07001518}
1519
1520/**
1521 * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
1522 *
1523 * Description:
1524 * Set the default NetLabel configuration to allow incoming unlabeled packets
1525 * and to send unlabeled network traffic by default.
1526 *
1527 */
Pavel Emelyanov05705e42008-02-17 22:33:57 -08001528int __init netlbl_unlabel_defconf(void)
Paul Moore96cb8e32006-08-03 16:48:59 -07001529{
1530 int ret_val;
1531 struct netlbl_dom_map *entry;
Paul Moore95d4e6b2006-09-29 17:05:05 -07001532 struct netlbl_audit audit_info;
Paul Moore32f50cd2006-09-28 14:51:47 -07001533
Paul Moore95d4e6b2006-09-29 17:05:05 -07001534 /* Only the kernel is allowed to call this function and the only time
1535 * it is called is at bootup before the audit subsystem is reporting
1536 * messages so don't worry to much about these values. */
1537 security_task_getsecid(current, &audit_info.secid);
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001538 audit_info.loginuid = GLOBAL_ROOT_UID;
Eric Paris25323862008-04-18 10:09:25 -04001539 audit_info.sessionid = 0;
Paul Moore96cb8e32006-08-03 16:48:59 -07001540
1541 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1542 if (entry == NULL)
1543 return -ENOMEM;
Paul Moore6a8b7f02013-08-02 14:45:08 -04001544 entry->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore95d4e6b2006-09-29 17:05:05 -07001545 ret_val = netlbl_domhsh_add_default(entry, &audit_info);
Paul Moore96cb8e32006-08-03 16:48:59 -07001546 if (ret_val != 0)
1547 return ret_val;
1548
Paul Moore95d4e6b2006-09-29 17:05:05 -07001549 netlbl_unlabel_acceptflg_set(1, &audit_info);
Paul Moore96cb8e32006-08-03 16:48:59 -07001550
1551 return 0;
1552}