blob: 54f13a33b52cb42584c5ab1964b023c37eddd33e [file] [log] [blame]
Paul Moored15c3452006-08-03 16:48:37 -07001/*
2 * NetLabel Kernel API
3 *
4 * This file defines the kernel API for the NetLabel system. The NetLabel
5 * system manages static and dynamic label mappings for network protocols such
6 * as CIPSO and RIPSO.
7 *
Paul Moore82c21bf2011-08-01 11:10:33 +00008 * Author: Paul Moore <paul@paul-moore.com>
Paul Moored15c3452006-08-03 16:48:37 -07009 *
10 */
11
12/*
Paul Moore014ab192008-10-10 10:16:33 -040013 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008
Paul Moored15c3452006-08-03 16:48:37 -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
Jeff Kirsherd484ff12013-12-06 09:13:41 -080026 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Paul Moored15c3452006-08-03 16:48:37 -070027 *
28 */
29
30#include <linux/init.h>
31#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Paul Mooreeda61d32008-02-04 22:29:47 -080033#include <linux/audit.h>
Paul Moore6c2e8ac2008-12-31 12:54:11 -050034#include <linux/in.h>
35#include <linux/in6.h>
Paul Moored15c3452006-08-03 16:48:37 -070036#include <net/ip.h>
Paul Moore6c2e8ac2008-12-31 12:54:11 -050037#include <net/ipv6.h>
Paul Moored15c3452006-08-03 16:48:37 -070038#include <net/netlabel.h>
39#include <net/cipso_ipv4.h>
40#include <asm/bug.h>
Arun Sharma600634972011-07-26 16:09:06 -070041#include <linux/atomic.h>
Paul Moored15c3452006-08-03 16:48:37 -070042
43#include "netlabel_domainhash.h"
44#include "netlabel_unlabeled.h"
Paul Mooreeda61d32008-02-04 22:29:47 -080045#include "netlabel_cipso_v4.h"
Paul Moored15c3452006-08-03 16:48:37 -070046#include "netlabel_user.h"
Paul Moore23bcdc12007-07-18 12:28:45 -040047#include "netlabel_mgmt.h"
Paul Moore6c2e8ac2008-12-31 12:54:11 -050048#include "netlabel_addrlist.h"
Paul Moored15c3452006-08-03 16:48:37 -070049
50/*
Paul Mooreeda61d32008-02-04 22:29:47 -080051 * Configuration Functions
52 */
53
54/**
55 * netlbl_cfg_map_del - Remove a NetLabel/LSM domain mapping
56 * @domain: the domain mapping to remove
Paul Moore6c2e8ac2008-12-31 12:54:11 -050057 * @family: address family
58 * @addr: IP address
59 * @mask: IP address mask
Paul Mooreeda61d32008-02-04 22:29:47 -080060 * @audit_info: NetLabel audit information
61 *
62 * Description:
63 * Removes a NetLabel/LSM domain mapping. A @domain value of NULL causes the
64 * default domain mapping to be removed. Returns zero on success, negative
65 * values on failure.
66 *
67 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -050068int netlbl_cfg_map_del(const char *domain,
69 u16 family,
70 const void *addr,
71 const void *mask,
72 struct netlbl_audit *audit_info)
Paul Mooreeda61d32008-02-04 22:29:47 -080073{
Paul Moore6c2e8ac2008-12-31 12:54:11 -050074 if (addr == NULL && mask == NULL) {
Huw Davies8f18e672016-06-27 15:02:46 -040075 return netlbl_domhsh_remove(domain, family, audit_info);
Paul Moore6c2e8ac2008-12-31 12:54:11 -050076 } else if (addr != NULL && mask != NULL) {
77 switch (family) {
78 case AF_INET:
79 return netlbl_domhsh_remove_af4(domain, addr, mask,
80 audit_info);
81 default:
82 return -EPFNOSUPPORT;
83 }
84 } else
85 return -EINVAL;
Paul Mooreeda61d32008-02-04 22:29:47 -080086}
87
88/**
Paul Moore6c2e8ac2008-12-31 12:54:11 -050089 * netlbl_cfg_unlbl_map_add - Add a new unlabeled mapping
Paul Mooreeda61d32008-02-04 22:29:47 -080090 * @domain: the domain mapping to add
Paul Moore6c2e8ac2008-12-31 12:54:11 -050091 * @family: address family
92 * @addr: IP address
93 * @mask: IP address mask
Paul Mooreeda61d32008-02-04 22:29:47 -080094 * @audit_info: NetLabel audit information
95 *
96 * Description:
97 * Adds a new unlabeled NetLabel/LSM domain mapping. A @domain value of NULL
98 * causes a new default domain mapping to be added. Returns zero on success,
99 * negative values on failure.
100 *
101 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500102int netlbl_cfg_unlbl_map_add(const char *domain,
103 u16 family,
104 const void *addr,
105 const void *mask,
Paul Mooreeda61d32008-02-04 22:29:47 -0800106 struct netlbl_audit *audit_info)
107{
108 int ret_val = -ENOMEM;
109 struct netlbl_dom_map *entry;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500110 struct netlbl_domaddr_map *addrmap = NULL;
111 struct netlbl_domaddr4_map *map4 = NULL;
112 struct netlbl_domaddr6_map *map6 = NULL;
Paul Mooreeda61d32008-02-04 22:29:47 -0800113
114 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
115 if (entry == NULL)
Paul Moore948a7242008-10-10 10:16:30 -0400116 return -ENOMEM;
Paul Mooreeda61d32008-02-04 22:29:47 -0800117 if (domain != NULL) {
118 entry->domain = kstrdup(domain, GFP_ATOMIC);
119 if (entry->domain == NULL)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500120 goto cfg_unlbl_map_add_failure;
Paul Mooreeda61d32008-02-04 22:29:47 -0800121 }
Huw Davies8f18e672016-06-27 15:02:46 -0400122 entry->family = family;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500123
124 if (addr == NULL && mask == NULL)
Paul Moore6a8b7f02013-08-02 14:45:08 -0400125 entry->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500126 else if (addr != NULL && mask != NULL) {
127 addrmap = kzalloc(sizeof(*addrmap), GFP_ATOMIC);
128 if (addrmap == NULL)
129 goto cfg_unlbl_map_add_failure;
130 INIT_LIST_HEAD(&addrmap->list4);
131 INIT_LIST_HEAD(&addrmap->list6);
132
133 switch (family) {
Paul Moore1281bc22011-11-29 10:10:54 +0000134 case AF_INET: {
135 const struct in_addr *addr4 = addr;
136 const struct in_addr *mask4 = mask;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500137 map4 = kzalloc(sizeof(*map4), GFP_ATOMIC);
138 if (map4 == NULL)
139 goto cfg_unlbl_map_add_failure;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400140 map4->def.type = NETLBL_NLTYPE_UNLABELED;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500141 map4->list.addr = addr4->s_addr & mask4->s_addr;
142 map4->list.mask = mask4->s_addr;
143 map4->list.valid = 1;
144 ret_val = netlbl_af4list_add(&map4->list,
145 &addrmap->list4);
146 if (ret_val != 0)
147 goto cfg_unlbl_map_add_failure;
148 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000149 }
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000150#if IS_ENABLED(CONFIG_IPV6)
Paul Moore1281bc22011-11-29 10:10:54 +0000151 case AF_INET6: {
152 const struct in6_addr *addr6 = addr;
153 const struct in6_addr *mask6 = mask;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500154 map6 = kzalloc(sizeof(*map6), GFP_ATOMIC);
Julia Lawallca7daea2009-07-30 04:38:19 +0000155 if (map6 == NULL)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500156 goto cfg_unlbl_map_add_failure;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400157 map6->def.type = NETLBL_NLTYPE_UNLABELED;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000158 map6->list.addr = *addr6;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500159 map6->list.addr.s6_addr32[0] &= mask6->s6_addr32[0];
160 map6->list.addr.s6_addr32[1] &= mask6->s6_addr32[1];
161 map6->list.addr.s6_addr32[2] &= mask6->s6_addr32[2];
162 map6->list.addr.s6_addr32[3] &= mask6->s6_addr32[3];
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000163 map6->list.mask = *mask6;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500164 map6->list.valid = 1;
Dan Carpenter42ca0202011-11-23 21:18:20 +0000165 ret_val = netlbl_af6list_add(&map6->list,
166 &addrmap->list6);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500167 if (ret_val != 0)
168 goto cfg_unlbl_map_add_failure;
169 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000170 }
171#endif /* IPv6 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500172 default:
173 goto cfg_unlbl_map_add_failure;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500174 }
175
Paul Moore6a8b7f02013-08-02 14:45:08 -0400176 entry->def.addrsel = addrmap;
177 entry->def.type = NETLBL_NLTYPE_ADDRSELECT;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500178 } else {
179 ret_val = -EINVAL;
180 goto cfg_unlbl_map_add_failure;
181 }
Paul Mooreeda61d32008-02-04 22:29:47 -0800182
183 ret_val = netlbl_domhsh_add(entry, audit_info);
184 if (ret_val != 0)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500185 goto cfg_unlbl_map_add_failure;
Paul Mooreeda61d32008-02-04 22:29:47 -0800186
187 return 0;
188
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500189cfg_unlbl_map_add_failure:
Julia Lawall47943232009-07-27 06:15:43 +0000190 kfree(entry->domain);
Paul Mooreeda61d32008-02-04 22:29:47 -0800191 kfree(entry);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500192 kfree(addrmap);
193 kfree(map4);
194 kfree(map6);
Paul Mooreeda61d32008-02-04 22:29:47 -0800195 return ret_val;
196}
197
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500198
Paul Mooreeda61d32008-02-04 22:29:47 -0800199/**
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500200 * netlbl_cfg_unlbl_static_add - Adds a new static label
201 * @net: network namespace
202 * @dev_name: interface name
203 * @addr: IP address in network byte order (struct in[6]_addr)
204 * @mask: address mask in network byte order (struct in[6]_addr)
205 * @family: address family
206 * @secid: LSM secid value for the entry
Paul Mooreeda61d32008-02-04 22:29:47 -0800207 * @audit_info: NetLabel audit information
208 *
209 * Description:
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500210 * Adds a new NetLabel static label to be used when protocol provided labels
211 * are not present on incoming traffic. If @dev_name is NULL then the default
212 * interface will be used. Returns zero on success, negative values on failure.
Paul Mooreeda61d32008-02-04 22:29:47 -0800213 *
214 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500215int netlbl_cfg_unlbl_static_add(struct net *net,
216 const char *dev_name,
217 const void *addr,
218 const void *mask,
219 u16 family,
220 u32 secid,
221 struct netlbl_audit *audit_info)
222{
223 u32 addr_len;
224
225 switch (family) {
226 case AF_INET:
227 addr_len = sizeof(struct in_addr);
228 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000229#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500230 case AF_INET6:
231 addr_len = sizeof(struct in6_addr);
232 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000233#endif /* IPv6 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500234 default:
235 return -EPFNOSUPPORT;
236 }
237
238 return netlbl_unlhsh_add(net,
239 dev_name, addr, mask, addr_len,
240 secid, audit_info);
241}
242
243/**
244 * netlbl_cfg_unlbl_static_del - Removes an existing static label
245 * @net: network namespace
246 * @dev_name: interface name
247 * @addr: IP address in network byte order (struct in[6]_addr)
248 * @mask: address mask in network byte order (struct in[6]_addr)
249 * @family: address family
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500250 * @audit_info: NetLabel audit information
251 *
252 * Description:
253 * Removes an existing NetLabel static label used when protocol provided labels
254 * are not present on incoming traffic. If @dev_name is NULL then the default
255 * interface will be used. Returns zero on success, negative values on failure.
256 *
257 */
258int netlbl_cfg_unlbl_static_del(struct net *net,
259 const char *dev_name,
260 const void *addr,
261 const void *mask,
262 u16 family,
263 struct netlbl_audit *audit_info)
264{
265 u32 addr_len;
266
267 switch (family) {
268 case AF_INET:
269 addr_len = sizeof(struct in_addr);
270 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000271#if IS_ENABLED(CONFIG_IPV6)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500272 case AF_INET6:
273 addr_len = sizeof(struct in6_addr);
274 break;
Paul Moore1281bc22011-11-29 10:10:54 +0000275#endif /* IPv6 */
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500276 default:
277 return -EPFNOSUPPORT;
278 }
279
280 return netlbl_unlhsh_remove(net,
281 dev_name, addr, mask, addr_len,
282 audit_info);
283}
284
285/**
286 * netlbl_cfg_cipsov4_add - Add a new CIPSOv4 DOI definition
287 * @doi_def: CIPSO DOI definition
288 * @audit_info: NetLabel audit information
289 *
290 * Description:
291 * Add a new CIPSO DOI definition as defined by @doi_def. Returns zero on
292 * success and negative values on failure.
293 *
294 */
295int netlbl_cfg_cipsov4_add(struct cipso_v4_doi *doi_def,
296 struct netlbl_audit *audit_info)
297{
298 return cipso_v4_doi_add(doi_def, audit_info);
299}
300
301/**
302 * netlbl_cfg_cipsov4_del - Remove an existing CIPSOv4 DOI definition
303 * @doi: CIPSO DOI
304 * @audit_info: NetLabel audit information
305 *
306 * Description:
307 * Remove an existing CIPSO DOI definition matching @doi. Returns zero on
308 * success and negative values on failure.
309 *
310 */
311void netlbl_cfg_cipsov4_del(u32 doi, struct netlbl_audit *audit_info)
312{
313 cipso_v4_doi_remove(doi, audit_info);
314}
315
316/**
317 * netlbl_cfg_cipsov4_map_add - Add a new CIPSOv4 DOI mapping
318 * @doi: the CIPSO DOI
319 * @domain: the domain mapping to add
320 * @addr: IP address
321 * @mask: IP address mask
322 * @audit_info: NetLabel audit information
323 *
324 * Description:
325 * Add a new NetLabel/LSM domain mapping for the given CIPSO DOI to the NetLabel
326 * subsystem. A @domain value of NULL adds a new default domain mapping.
327 * Returns zero on success, negative values on failure.
328 *
329 */
330int netlbl_cfg_cipsov4_map_add(u32 doi,
Paul Mooreeda61d32008-02-04 22:29:47 -0800331 const char *domain,
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500332 const struct in_addr *addr,
333 const struct in_addr *mask,
Paul Mooreeda61d32008-02-04 22:29:47 -0800334 struct netlbl_audit *audit_info)
335{
336 int ret_val = -ENOMEM;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500337 struct cipso_v4_doi *doi_def;
Paul Mooreeda61d32008-02-04 22:29:47 -0800338 struct netlbl_dom_map *entry;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500339 struct netlbl_domaddr_map *addrmap = NULL;
340 struct netlbl_domaddr4_map *addrinfo = NULL;
Paul Mooreeda61d32008-02-04 22:29:47 -0800341
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500342 doi_def = cipso_v4_doi_getdef(doi);
343 if (doi_def == NULL)
344 return -ENOENT;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400345
Paul Mooreeda61d32008-02-04 22:29:47 -0800346 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
347 if (entry == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000348 goto out_entry;
Huw Davies8f18e672016-06-27 15:02:46 -0400349 entry->family = AF_INET;
Paul Mooreeda61d32008-02-04 22:29:47 -0800350 if (domain != NULL) {
351 entry->domain = kstrdup(domain, GFP_ATOMIC);
352 if (entry->domain == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000353 goto out_domain;
Paul Mooreeda61d32008-02-04 22:29:47 -0800354 }
Paul Mooreeda61d32008-02-04 22:29:47 -0800355
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500356 if (addr == NULL && mask == NULL) {
Paul Moore6a8b7f02013-08-02 14:45:08 -0400357 entry->def.cipso = doi_def;
358 entry->def.type = NETLBL_NLTYPE_CIPSOV4;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500359 } else if (addr != NULL && mask != NULL) {
360 addrmap = kzalloc(sizeof(*addrmap), GFP_ATOMIC);
361 if (addrmap == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000362 goto out_addrmap;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500363 INIT_LIST_HEAD(&addrmap->list4);
364 INIT_LIST_HEAD(&addrmap->list6);
365
366 addrinfo = kzalloc(sizeof(*addrinfo), GFP_ATOMIC);
367 if (addrinfo == NULL)
Julia Lawall94a80d62011-08-11 00:06:04 +0000368 goto out_addrinfo;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400369 addrinfo->def.cipso = doi_def;
370 addrinfo->def.type = NETLBL_NLTYPE_CIPSOV4;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500371 addrinfo->list.addr = addr->s_addr & mask->s_addr;
372 addrinfo->list.mask = mask->s_addr;
373 addrinfo->list.valid = 1;
374 ret_val = netlbl_af4list_add(&addrinfo->list, &addrmap->list4);
375 if (ret_val != 0)
376 goto cfg_cipsov4_map_add_failure;
377
Paul Moore6a8b7f02013-08-02 14:45:08 -0400378 entry->def.addrsel = addrmap;
379 entry->def.type = NETLBL_NLTYPE_ADDRSELECT;
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500380 } else {
381 ret_val = -EINVAL;
Julia Lawall94a80d62011-08-11 00:06:04 +0000382 goto out_addrmap;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400383 }
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500384
Paul Mooreeda61d32008-02-04 22:29:47 -0800385 ret_val = netlbl_domhsh_add(entry, audit_info);
386 if (ret_val != 0)
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500387 goto cfg_cipsov4_map_add_failure;
Paul Mooreeda61d32008-02-04 22:29:47 -0800388
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500389 return 0;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400390
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500391cfg_cipsov4_map_add_failure:
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500392 kfree(addrinfo);
Julia Lawall94a80d62011-08-11 00:06:04 +0000393out_addrinfo:
394 kfree(addrmap);
395out_addrmap:
396 kfree(entry->domain);
397out_domain:
398 kfree(entry);
399out_entry:
400 cipso_v4_doi_putdef(doi_def);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500401 return ret_val;
Paul Mooreeda61d32008-02-04 22:29:47 -0800402}
403
Paul Mooreeda61d32008-02-04 22:29:47 -0800404/*
Paul Moore02752762006-11-29 13:18:18 -0500405 * Security Attribute Functions
406 */
407
Paul Moore4b8feff2014-08-01 11:17:17 -0400408#define _CM_F_NONE 0x00000000
409#define _CM_F_ALLOC 0x00000001
Paul Moored960a612014-08-01 11:17:29 -0400410#define _CM_F_WALK 0x00000002
Paul Moore4b8feff2014-08-01 11:17:17 -0400411
412/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400413 * _netlbl_catmap_getnode - Get a individual node from a catmap
Paul Moore4b8feff2014-08-01 11:17:17 -0400414 * @catmap: pointer to the category bitmap
415 * @offset: the requested offset
416 * @cm_flags: catmap flags, see _CM_F_*
417 * @gfp_flags: memory allocation flags
418 *
419 * Description:
Paul Moored960a612014-08-01 11:17:29 -0400420 * Iterate through the catmap looking for the node associated with @offset.
421 * If the _CM_F_ALLOC flag is set in @cm_flags and there is no associated node,
422 * one will be created and inserted into the catmap. If the _CM_F_WALK flag is
423 * set in @cm_flags and there is no associated node, the next highest node will
424 * be returned. Returns a pointer to the node on success, NULL on failure.
Paul Moore4b8feff2014-08-01 11:17:17 -0400425 *
426 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400427static struct netlbl_lsm_catmap *_netlbl_catmap_getnode(
428 struct netlbl_lsm_catmap **catmap,
429 u32 offset,
430 unsigned int cm_flags,
431 gfp_t gfp_flags)
Paul Moore4b8feff2014-08-01 11:17:17 -0400432{
Paul Moore4fbe63d2014-08-01 11:17:37 -0400433 struct netlbl_lsm_catmap *iter = *catmap;
434 struct netlbl_lsm_catmap *prev = NULL;
Paul Moore4b8feff2014-08-01 11:17:17 -0400435
Paul Moored960a612014-08-01 11:17:29 -0400436 if (iter == NULL)
Paul Moore4fbe63d2014-08-01 11:17:37 -0400437 goto catmap_getnode_alloc;
Paul Moored960a612014-08-01 11:17:29 -0400438 if (offset < iter->startbit)
Paul Moore4fbe63d2014-08-01 11:17:37 -0400439 goto catmap_getnode_walk;
Paul Moore4b8feff2014-08-01 11:17:17 -0400440 while (iter && offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) {
441 prev = iter;
442 iter = iter->next;
443 }
444 if (iter == NULL || offset < iter->startbit)
Paul Moore4fbe63d2014-08-01 11:17:37 -0400445 goto catmap_getnode_walk;
Paul Moore4b8feff2014-08-01 11:17:17 -0400446
447 return iter;
448
Paul Moore4fbe63d2014-08-01 11:17:37 -0400449catmap_getnode_walk:
Paul Moored960a612014-08-01 11:17:29 -0400450 if (cm_flags & _CM_F_WALK)
451 return iter;
Paul Moore4fbe63d2014-08-01 11:17:37 -0400452catmap_getnode_alloc:
Paul Moore4b8feff2014-08-01 11:17:17 -0400453 if (!(cm_flags & _CM_F_ALLOC))
454 return NULL;
455
Paul Moore4fbe63d2014-08-01 11:17:37 -0400456 iter = netlbl_catmap_alloc(gfp_flags);
Paul Moore4b8feff2014-08-01 11:17:17 -0400457 if (iter == NULL)
458 return NULL;
459 iter->startbit = offset & ~(NETLBL_CATMAP_SIZE - 1);
460
461 if (prev == NULL) {
462 iter->next = *catmap;
463 *catmap = iter;
464 } else {
465 iter->next = prev->next;
466 prev->next = iter;
467 }
468
469 return iter;
470}
471
Paul Moore02752762006-11-29 13:18:18 -0500472/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400473 * netlbl_catmap_walk - Walk a LSM secattr catmap looking for a bit
Paul Moore02752762006-11-29 13:18:18 -0500474 * @catmap: the category bitmap
475 * @offset: the offset to start searching at, in bits
476 *
477 * Description:
478 * This function walks a LSM secattr category bitmap starting at @offset and
479 * returns the spot of the first set bit or -ENOENT if no bits are set.
480 *
481 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400482int netlbl_catmap_walk(struct netlbl_lsm_catmap *catmap, u32 offset)
Paul Moore02752762006-11-29 13:18:18 -0500483{
Paul Moore4fbe63d2014-08-01 11:17:37 -0400484 struct netlbl_lsm_catmap *iter = catmap;
Paul Moored960a612014-08-01 11:17:29 -0400485 u32 idx;
486 u32 bit;
Paul Moore02752762006-11-29 13:18:18 -0500487 NETLBL_CATMAP_MAPTYPE bitmap;
488
Paul Moore4fbe63d2014-08-01 11:17:37 -0400489 iter = _netlbl_catmap_getnode(&catmap, offset, _CM_F_WALK, 0);
Paul Moored960a612014-08-01 11:17:29 -0400490 if (iter == NULL)
491 return -ENOENT;
Paul Moore02752762006-11-29 13:18:18 -0500492 if (offset > iter->startbit) {
Paul Moored960a612014-08-01 11:17:29 -0400493 offset -= iter->startbit;
494 idx = offset / NETLBL_CATMAP_MAPSIZE;
495 bit = offset % NETLBL_CATMAP_MAPSIZE;
Paul Moore02752762006-11-29 13:18:18 -0500496 } else {
Paul Moored960a612014-08-01 11:17:29 -0400497 idx = 0;
498 bit = 0;
Paul Moore02752762006-11-29 13:18:18 -0500499 }
Paul Moored960a612014-08-01 11:17:29 -0400500 bitmap = iter->bitmap[idx] >> bit;
Paul Moore02752762006-11-29 13:18:18 -0500501
502 for (;;) {
503 if (bitmap != 0) {
504 while ((bitmap & NETLBL_CATMAP_BIT) == 0) {
505 bitmap >>= 1;
Paul Moored960a612014-08-01 11:17:29 -0400506 bit++;
Paul Moore02752762006-11-29 13:18:18 -0500507 }
508 return iter->startbit +
Paul Moored960a612014-08-01 11:17:29 -0400509 (NETLBL_CATMAP_MAPSIZE * idx) + bit;
Paul Moore02752762006-11-29 13:18:18 -0500510 }
Paul Moored960a612014-08-01 11:17:29 -0400511 if (++idx >= NETLBL_CATMAP_MAPCNT) {
Paul Moore02752762006-11-29 13:18:18 -0500512 if (iter->next != NULL) {
513 iter = iter->next;
Paul Moored960a612014-08-01 11:17:29 -0400514 idx = 0;
Paul Moore02752762006-11-29 13:18:18 -0500515 } else
516 return -ENOENT;
517 }
Paul Moored960a612014-08-01 11:17:29 -0400518 bitmap = iter->bitmap[idx];
519 bit = 0;
Paul Moore02752762006-11-29 13:18:18 -0500520 }
521
522 return -ENOENT;
523}
524
525/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400526 * netlbl_catmap_walkrng - Find the end of a string of set bits
Paul Moore02752762006-11-29 13:18:18 -0500527 * @catmap: the category bitmap
528 * @offset: the offset to start searching at, in bits
529 *
530 * Description:
531 * This function walks a LSM secattr category bitmap starting at @offset and
532 * returns the spot of the first cleared bit or -ENOENT if the offset is past
533 * the end of the bitmap.
534 *
535 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400536int netlbl_catmap_walkrng(struct netlbl_lsm_catmap *catmap, u32 offset)
Paul Moore02752762006-11-29 13:18:18 -0500537{
Paul Moore4fbe63d2014-08-01 11:17:37 -0400538 struct netlbl_lsm_catmap *iter;
539 struct netlbl_lsm_catmap *prev = NULL;
Paul Moored960a612014-08-01 11:17:29 -0400540 u32 idx;
541 u32 bit;
Paul Moore02752762006-11-29 13:18:18 -0500542 NETLBL_CATMAP_MAPTYPE bitmask;
543 NETLBL_CATMAP_MAPTYPE bitmap;
544
Paul Moore4fbe63d2014-08-01 11:17:37 -0400545 iter = _netlbl_catmap_getnode(&catmap, offset, _CM_F_WALK, 0);
Paul Moored960a612014-08-01 11:17:29 -0400546 if (iter == NULL)
547 return -ENOENT;
Paul Moore02752762006-11-29 13:18:18 -0500548 if (offset > iter->startbit) {
Paul Moored960a612014-08-01 11:17:29 -0400549 offset -= iter->startbit;
550 idx = offset / NETLBL_CATMAP_MAPSIZE;
551 bit = offset % NETLBL_CATMAP_MAPSIZE;
Paul Moore02752762006-11-29 13:18:18 -0500552 } else {
Paul Moored960a612014-08-01 11:17:29 -0400553 idx = 0;
554 bit = 0;
Paul Moore02752762006-11-29 13:18:18 -0500555 }
Paul Moored960a612014-08-01 11:17:29 -0400556 bitmask = NETLBL_CATMAP_BIT << bit;
Paul Moore02752762006-11-29 13:18:18 -0500557
558 for (;;) {
Paul Moored960a612014-08-01 11:17:29 -0400559 bitmap = iter->bitmap[idx];
Paul Moore02752762006-11-29 13:18:18 -0500560 while (bitmask != 0 && (bitmap & bitmask) != 0) {
561 bitmask <<= 1;
Paul Moored960a612014-08-01 11:17:29 -0400562 bit++;
Paul Moore02752762006-11-29 13:18:18 -0500563 }
564
Paul Moored960a612014-08-01 11:17:29 -0400565 if (prev && idx == 0 && bit == 0)
566 return prev->startbit + NETLBL_CATMAP_SIZE - 1;
567 else if (bitmask != 0)
Paul Moore02752762006-11-29 13:18:18 -0500568 return iter->startbit +
Paul Moored960a612014-08-01 11:17:29 -0400569 (NETLBL_CATMAP_MAPSIZE * idx) + bit - 1;
570 else if (++idx >= NETLBL_CATMAP_MAPCNT) {
Paul Moore02752762006-11-29 13:18:18 -0500571 if (iter->next == NULL)
Paul Moored960a612014-08-01 11:17:29 -0400572 return iter->startbit + NETLBL_CATMAP_SIZE - 1;
573 prev = iter;
Paul Moore02752762006-11-29 13:18:18 -0500574 iter = iter->next;
Paul Moored960a612014-08-01 11:17:29 -0400575 idx = 0;
Paul Moore02752762006-11-29 13:18:18 -0500576 }
577 bitmask = NETLBL_CATMAP_BIT;
Paul Moored960a612014-08-01 11:17:29 -0400578 bit = 0;
Paul Moore02752762006-11-29 13:18:18 -0500579 }
580
581 return -ENOENT;
582}
583
584/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400585 * netlbl_catmap_getlong - Export an unsigned long bitmap
Paul Moore4b8feff2014-08-01 11:17:17 -0400586 * @catmap: pointer to the category bitmap
587 * @offset: pointer to the requested offset
588 * @bitmap: the exported bitmap
589 *
590 * Description:
591 * Export a bitmap with an offset greater than or equal to @offset and return
592 * it in @bitmap. The @offset must be aligned to an unsigned long and will be
593 * updated on return if different from what was requested; if the catmap is
594 * empty at the requested offset and beyond, the @offset is set to (u32)-1.
595 * Returns zero on sucess, negative values on failure.
596 *
597 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400598int netlbl_catmap_getlong(struct netlbl_lsm_catmap *catmap,
599 u32 *offset,
600 unsigned long *bitmap)
Paul Moore4b8feff2014-08-01 11:17:17 -0400601{
Paul Moore4fbe63d2014-08-01 11:17:37 -0400602 struct netlbl_lsm_catmap *iter;
Paul Moore4b8feff2014-08-01 11:17:17 -0400603 u32 off = *offset;
604 u32 idx;
605
606 /* only allow aligned offsets */
607 if ((off & (BITS_PER_LONG - 1)) != 0)
608 return -EINVAL;
609
610 if (off < catmap->startbit) {
611 off = catmap->startbit;
612 *offset = off;
613 }
Paul Moore50b86292016-06-09 10:56:02 -0400614 iter = _netlbl_catmap_getnode(&catmap, off, _CM_F_WALK, 0);
Paul Moore4b8feff2014-08-01 11:17:17 -0400615 if (iter == NULL) {
616 *offset = (u32)-1;
617 return 0;
618 }
619
620 if (off < iter->startbit) {
Paul Moore50b86292016-06-09 10:56:02 -0400621 *offset = iter->startbit;
622 off = 0;
Paul Moore4b8feff2014-08-01 11:17:17 -0400623 } else
624 off -= iter->startbit;
Paul Moore4b8feff2014-08-01 11:17:17 -0400625 idx = off / NETLBL_CATMAP_MAPSIZE;
Paul Moore50b86292016-06-09 10:56:02 -0400626 *bitmap = iter->bitmap[idx] >> (off % NETLBL_CATMAP_MAPSIZE);
Paul Moore4b8feff2014-08-01 11:17:17 -0400627
628 return 0;
629}
630
631/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400632 * netlbl_catmap_setbit - Set a bit in a LSM secattr catmap
Paul Moore41c3bd22014-08-01 11:17:03 -0400633 * @catmap: pointer to the category bitmap
Paul Moore02752762006-11-29 13:18:18 -0500634 * @bit: the bit to set
635 * @flags: memory allocation flags
636 *
637 * Description:
638 * Set the bit specified by @bit in @catmap. Returns zero on success,
639 * negative values on failure.
640 *
641 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400642int netlbl_catmap_setbit(struct netlbl_lsm_catmap **catmap,
643 u32 bit,
644 gfp_t flags)
Paul Moore02752762006-11-29 13:18:18 -0500645{
Paul Moore4fbe63d2014-08-01 11:17:37 -0400646 struct netlbl_lsm_catmap *iter;
Paul Moore4b8feff2014-08-01 11:17:17 -0400647 u32 idx;
Paul Moore02752762006-11-29 13:18:18 -0500648
Paul Moore4fbe63d2014-08-01 11:17:37 -0400649 iter = _netlbl_catmap_getnode(catmap, bit, _CM_F_ALLOC, flags);
Paul Moore4b8feff2014-08-01 11:17:17 -0400650 if (iter == NULL)
651 return -ENOMEM;
Paul Moore02752762006-11-29 13:18:18 -0500652
Paul Moore4b8feff2014-08-01 11:17:17 -0400653 bit -= iter->startbit;
654 idx = bit / NETLBL_CATMAP_MAPSIZE;
655 iter->bitmap[idx] |= NETLBL_CATMAP_BIT << (bit % NETLBL_CATMAP_MAPSIZE);
Paul Moore02752762006-11-29 13:18:18 -0500656
657 return 0;
658}
659
660/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400661 * netlbl_catmap_setrng - Set a range of bits in a LSM secattr catmap
Paul Moore41c3bd22014-08-01 11:17:03 -0400662 * @catmap: pointer to the category bitmap
Paul Moore02752762006-11-29 13:18:18 -0500663 * @start: the starting bit
664 * @end: the last bit in the string
665 * @flags: memory allocation flags
666 *
667 * Description:
668 * Set a range of bits, starting at @start and ending with @end. Returns zero
669 * on success, negative values on failure.
670 *
671 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400672int netlbl_catmap_setrng(struct netlbl_lsm_catmap **catmap,
673 u32 start,
674 u32 end,
675 gfp_t flags)
Paul Moore02752762006-11-29 13:18:18 -0500676{
Paul Moore4b8feff2014-08-01 11:17:17 -0400677 int rc = 0;
678 u32 spot = start;
Paul Moore02752762006-11-29 13:18:18 -0500679
Paul Moore4b8feff2014-08-01 11:17:17 -0400680 while (rc == 0 && spot <= end) {
Janak Desai341e0cb2016-03-28 11:09:46 -0400681 if (((spot & (BITS_PER_LONG - 1)) == 0) &&
Paul Moore4b8feff2014-08-01 11:17:17 -0400682 ((end - spot) > BITS_PER_LONG)) {
Paul Moore4fbe63d2014-08-01 11:17:37 -0400683 rc = netlbl_catmap_setlong(catmap,
684 spot,
685 (unsigned long)-1,
686 flags);
Paul Moore4b8feff2014-08-01 11:17:17 -0400687 spot += BITS_PER_LONG;
688 } else
Paul Moore4fbe63d2014-08-01 11:17:37 -0400689 rc = netlbl_catmap_setbit(catmap, spot++, flags);
Paul Moore02752762006-11-29 13:18:18 -0500690 }
691
Paul Moore4b8feff2014-08-01 11:17:17 -0400692 return rc;
693}
694
695/**
Paul Moore4fbe63d2014-08-01 11:17:37 -0400696 * netlbl_catmap_setlong - Import an unsigned long bitmap
Paul Moore4b8feff2014-08-01 11:17:17 -0400697 * @catmap: pointer to the category bitmap
698 * @offset: offset to the start of the imported bitmap
699 * @bitmap: the bitmap to import
700 * @flags: memory allocation flags
701 *
702 * Description:
703 * Import the bitmap specified in @bitmap into @catmap, using the offset
704 * in @offset. The offset must be aligned to an unsigned long. Returns zero
705 * on success, negative values on failure.
706 *
707 */
Paul Moore4fbe63d2014-08-01 11:17:37 -0400708int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap,
709 u32 offset,
710 unsigned long bitmap,
711 gfp_t flags)
Paul Moore4b8feff2014-08-01 11:17:17 -0400712{
Paul Moore4fbe63d2014-08-01 11:17:37 -0400713 struct netlbl_lsm_catmap *iter;
Paul Moore4b8feff2014-08-01 11:17:17 -0400714 u32 idx;
715
716 /* only allow aligned offsets */
717 if ((offset & (BITS_PER_LONG - 1)) != 0)
718 return -EINVAL;
719
Paul Moore4fbe63d2014-08-01 11:17:37 -0400720 iter = _netlbl_catmap_getnode(catmap, offset, _CM_F_ALLOC, flags);
Paul Moore4b8feff2014-08-01 11:17:17 -0400721 if (iter == NULL)
722 return -ENOMEM;
723
724 offset -= iter->startbit;
725 idx = offset / NETLBL_CATMAP_MAPSIZE;
726 iter->bitmap[idx] |= bitmap << (offset % NETLBL_CATMAP_MAPSIZE);
727
728 return 0;
Paul Moore02752762006-11-29 13:18:18 -0500729}
730
Huw Davies3faa8f92016-06-27 15:02:51 -0400731/* Bitmap functions
732 */
733
734/**
735 * netlbl_bitmap_walk - Walk a bitmap looking for a bit
736 * @bitmap: the bitmap
737 * @bitmap_len: length in bits
738 * @offset: starting offset
739 * @state: if non-zero, look for a set (1) bit else look for a cleared (0) bit
740 *
741 * Description:
742 * Starting at @offset, walk the bitmap from left to right until either the
743 * desired bit is found or we reach the end. Return the bit offset, -1 if
744 * not found, or -2 if error.
745 */
746int netlbl_bitmap_walk(const unsigned char *bitmap, u32 bitmap_len,
747 u32 offset, u8 state)
748{
749 u32 bit_spot;
750 u32 byte_offset;
751 unsigned char bitmask;
752 unsigned char byte;
753
754 byte_offset = offset / 8;
755 byte = bitmap[byte_offset];
756 bit_spot = offset;
757 bitmask = 0x80 >> (offset % 8);
758
759 while (bit_spot < bitmap_len) {
760 if ((state && (byte & bitmask) == bitmask) ||
761 (state == 0 && (byte & bitmask) == 0))
762 return bit_spot;
763
764 bit_spot++;
765 bitmask >>= 1;
766 if (bitmask == 0) {
767 byte = bitmap[++byte_offset];
768 bitmask = 0x80;
769 }
770 }
771
772 return -1;
773}
774EXPORT_SYMBOL(netlbl_bitmap_walk);
775
776/**
777 * netlbl_bitmap_setbit - Sets a single bit in a bitmap
778 * @bitmap: the bitmap
779 * @bit: the bit
780 * @state: if non-zero, set the bit (1) else clear the bit (0)
781 *
782 * Description:
783 * Set a single bit in the bitmask. Returns zero on success, negative values
784 * on error.
785 */
786void netlbl_bitmap_setbit(unsigned char *bitmap, u32 bit, u8 state)
787{
788 u32 byte_spot;
789 u8 bitmask;
790
791 /* gcc always rounds to zero when doing integer division */
792 byte_spot = bit / 8;
793 bitmask = 0x80 >> (bit % 8);
794 if (state)
795 bitmap[byte_spot] |= bitmask;
796 else
797 bitmap[byte_spot] &= ~bitmask;
798}
799EXPORT_SYMBOL(netlbl_bitmap_setbit);
800
Paul Moore02752762006-11-29 13:18:18 -0500801/*
Paul Moored15c3452006-08-03 16:48:37 -0700802 * LSM Functions
803 */
804
805/**
Paul Moore23bcdc12007-07-18 12:28:45 -0400806 * netlbl_enabled - Determine if the NetLabel subsystem is enabled
807 *
808 * Description:
809 * The LSM can use this function to determine if it should use NetLabel
810 * security attributes in it's enforcement mechanism. Currently, NetLabel is
811 * considered to be enabled when it's configuration contains a valid setup for
812 * at least one labeled protocol (i.e. NetLabel can understand incoming
813 * labeled packets of at least one type); otherwise NetLabel is considered to
814 * be disabled.
815 *
816 */
817int netlbl_enabled(void)
818{
819 /* At some point we probably want to expose this mechanism to the user
820 * as well so that admins can toggle NetLabel regardless of the
821 * configuration */
Paul Moorec783f1c2008-01-29 08:37:52 -0500822 return (atomic_read(&netlabel_mgmt_protocount) > 0);
Paul Moore23bcdc12007-07-18 12:28:45 -0400823}
824
825/**
Paul Moore389fb8002009-03-27 17:10:34 -0400826 * netlbl_sock_setattr - Label a socket using the correct protocol
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700827 * @sk: the socket to label
Paul Moore389fb8002009-03-27 17:10:34 -0400828 * @family: protocol family
Paul Moored15c3452006-08-03 16:48:37 -0700829 * @secattr: the security attributes
830 *
831 * Description:
832 * Attach the correct label to the given socket using the security attributes
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700833 * specified in @secattr. This function requires exclusive access to @sk,
834 * which means it either needs to be in the process of being created or locked.
Paul Moore63c41682008-10-10 10:16:32 -0400835 * Returns zero on success, -EDESTADDRREQ if the domain is configured to use
836 * network address selectors (can't blindly label the socket), and negative
837 * values on all other failures.
Paul Moored15c3452006-08-03 16:48:37 -0700838 *
839 */
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700840int netlbl_sock_setattr(struct sock *sk,
Paul Moore389fb8002009-03-27 17:10:34 -0400841 u16 family,
Paul Mooreba6ff9f2007-06-07 18:37:15 -0700842 const struct netlbl_lsm_secattr *secattr)
Paul Moored15c3452006-08-03 16:48:37 -0700843{
Paul Moore389fb8002009-03-27 17:10:34 -0400844 int ret_val;
Paul Moored15c3452006-08-03 16:48:37 -0700845 struct netlbl_dom_map *dom_entry;
846
847 rcu_read_lock();
Huw Davies8f18e672016-06-27 15:02:46 -0400848 dom_entry = netlbl_domhsh_getentry(secattr->domain, family);
Paul Moore389fb8002009-03-27 17:10:34 -0400849 if (dom_entry == NULL) {
850 ret_val = -ENOENT;
Paul Moored15c3452006-08-03 16:48:37 -0700851 goto socket_setattr_return;
Paul Moore389fb8002009-03-27 17:10:34 -0400852 }
853 switch (family) {
854 case AF_INET:
Paul Moore6a8b7f02013-08-02 14:45:08 -0400855 switch (dom_entry->def.type) {
Paul Moore389fb8002009-03-27 17:10:34 -0400856 case NETLBL_NLTYPE_ADDRSELECT:
857 ret_val = -EDESTADDRREQ;
858 break;
859 case NETLBL_NLTYPE_CIPSOV4:
860 ret_val = cipso_v4_sock_setattr(sk,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400861 dom_entry->def.cipso,
862 secattr);
Paul Moore389fb8002009-03-27 17:10:34 -0400863 break;
864 case NETLBL_NLTYPE_UNLABELED:
865 ret_val = 0;
866 break;
867 default:
868 ret_val = -ENOENT;
869 }
Paul Moore63c41682008-10-10 10:16:32 -0400870 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000871#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -0400872 case AF_INET6:
873 /* since we don't support any IPv6 labeling protocols right
874 * now we can optimize everything away until we do */
Paul Moored15c3452006-08-03 16:48:37 -0700875 ret_val = 0;
876 break;
Paul Moore389fb8002009-03-27 17:10:34 -0400877#endif /* IPv6 */
Paul Moored15c3452006-08-03 16:48:37 -0700878 default:
Paul Moore389fb8002009-03-27 17:10:34 -0400879 ret_val = -EPROTONOSUPPORT;
Paul Moored15c3452006-08-03 16:48:37 -0700880 }
881
882socket_setattr_return:
883 rcu_read_unlock();
884 return ret_val;
885}
886
887/**
Paul Moore014ab192008-10-10 10:16:33 -0400888 * netlbl_sock_delattr - Delete all the NetLabel labels on a socket
889 * @sk: the socket
890 *
891 * Description:
892 * Remove all the NetLabel labeling from @sk. The caller is responsible for
893 * ensuring that @sk is locked.
894 *
895 */
896void netlbl_sock_delattr(struct sock *sk)
897{
Paul Moore0e0e3672016-06-06 15:17:20 -0400898 switch (sk->sk_family) {
899 case AF_INET:
900 cipso_v4_sock_delattr(sk);
901 break;
902 }
Paul Moore014ab192008-10-10 10:16:33 -0400903}
904
905/**
Paul Moore14a72f52006-09-25 15:52:01 -0700906 * netlbl_sock_getattr - Determine the security attributes of a sock
907 * @sk: the sock
908 * @secattr: the security attributes
909 *
910 * Description:
Paul Moore8cc44572008-01-29 08:44:21 -0500911 * Examines the given sock to see if any NetLabel style labeling has been
Paul Moore14a72f52006-09-25 15:52:01 -0700912 * applied to the sock, if so it parses the socket label and returns the
913 * security attributes in @secattr. Returns zero on success, negative values
914 * on failure.
915 *
916 */
Paul Moore389fb8002009-03-27 17:10:34 -0400917int netlbl_sock_getattr(struct sock *sk,
918 struct netlbl_lsm_secattr *secattr)
Paul Moore14a72f52006-09-25 15:52:01 -0700919{
Paul Moore389fb8002009-03-27 17:10:34 -0400920 int ret_val;
921
922 switch (sk->sk_family) {
923 case AF_INET:
924 ret_val = cipso_v4_sock_getattr(sk, secattr);
925 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000926#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -0400927 case AF_INET6:
928 ret_val = -ENOMSG;
929 break;
930#endif /* IPv6 */
931 default:
932 ret_val = -EPROTONOSUPPORT;
933 }
934
935 return ret_val;
Paul Moore14a72f52006-09-25 15:52:01 -0700936}
937
938/**
Paul Moore014ab192008-10-10 10:16:33 -0400939 * netlbl_conn_setattr - Label a connected socket using the correct protocol
940 * @sk: the socket to label
941 * @addr: the destination address
942 * @secattr: the security attributes
943 *
944 * Description:
945 * Attach the correct label to the given connected socket using the security
946 * attributes specified in @secattr. The caller is responsible for ensuring
947 * that @sk is locked. Returns zero on success, negative values on failure.
948 *
949 */
950int netlbl_conn_setattr(struct sock *sk,
951 struct sockaddr *addr,
952 const struct netlbl_lsm_secattr *secattr)
953{
954 int ret_val;
955 struct sockaddr_in *addr4;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400956 struct netlbl_dommap_def *entry;
Paul Moore014ab192008-10-10 10:16:33 -0400957
958 rcu_read_lock();
959 switch (addr->sa_family) {
960 case AF_INET:
961 addr4 = (struct sockaddr_in *)addr;
Paul Moore6a8b7f02013-08-02 14:45:08 -0400962 entry = netlbl_domhsh_getentry_af4(secattr->domain,
963 addr4->sin_addr.s_addr);
964 if (entry == NULL) {
Paul Moore014ab192008-10-10 10:16:33 -0400965 ret_val = -ENOENT;
966 goto conn_setattr_return;
967 }
Paul Moore6a8b7f02013-08-02 14:45:08 -0400968 switch (entry->type) {
Paul Moore014ab192008-10-10 10:16:33 -0400969 case NETLBL_NLTYPE_CIPSOV4:
970 ret_val = cipso_v4_sock_setattr(sk,
Paul Moore6a8b7f02013-08-02 14:45:08 -0400971 entry->cipso, secattr);
Paul Moore014ab192008-10-10 10:16:33 -0400972 break;
973 case NETLBL_NLTYPE_UNLABELED:
974 /* just delete the protocols we support for right now
975 * but we could remove other protocols if needed */
976 cipso_v4_sock_delattr(sk);
977 ret_val = 0;
978 break;
979 default:
980 ret_val = -ENOENT;
981 }
982 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000983#if IS_ENABLED(CONFIG_IPV6)
Paul Moore014ab192008-10-10 10:16:33 -0400984 case AF_INET6:
985 /* since we don't support any IPv6 labeling protocols right
986 * now we can optimize everything away until we do */
987 ret_val = 0;
988 break;
989#endif /* IPv6 */
990 default:
Paul Moore389fb8002009-03-27 17:10:34 -0400991 ret_val = -EPROTONOSUPPORT;
Paul Moore014ab192008-10-10 10:16:33 -0400992 }
993
994conn_setattr_return:
995 rcu_read_unlock();
996 return ret_val;
997}
998
999/**
Paul Moore389fb8002009-03-27 17:10:34 -04001000 * netlbl_req_setattr - Label a request socket using the correct protocol
1001 * @req: the request socket to label
1002 * @secattr: the security attributes
1003 *
1004 * Description:
1005 * Attach the correct label to the given socket using the security attributes
1006 * specified in @secattr. Returns zero on success, negative values on failure.
1007 *
1008 */
1009int netlbl_req_setattr(struct request_sock *req,
1010 const struct netlbl_lsm_secattr *secattr)
1011{
1012 int ret_val;
Paul Moore6a8b7f02013-08-02 14:45:08 -04001013 struct netlbl_dommap_def *entry;
Paul Moore389fb8002009-03-27 17:10:34 -04001014
1015 rcu_read_lock();
Paul Moore389fb8002009-03-27 17:10:34 -04001016 switch (req->rsk_ops->family) {
1017 case AF_INET:
Paul Moore6a8b7f02013-08-02 14:45:08 -04001018 entry = netlbl_domhsh_getentry_af4(secattr->domain,
Eric Dumazet634fb9792013-10-09 15:21:29 -07001019 inet_rsk(req)->ir_rmt_addr);
Paul Moore6a8b7f02013-08-02 14:45:08 -04001020 if (entry == NULL) {
1021 ret_val = -ENOENT;
1022 goto req_setattr_return;
Paul Moore389fb8002009-03-27 17:10:34 -04001023 }
Paul Moore6a8b7f02013-08-02 14:45:08 -04001024 switch (entry->type) {
Paul Moore389fb8002009-03-27 17:10:34 -04001025 case NETLBL_NLTYPE_CIPSOV4:
Paul Moore6a8b7f02013-08-02 14:45:08 -04001026 ret_val = cipso_v4_req_setattr(req,
1027 entry->cipso, secattr);
Paul Moore389fb8002009-03-27 17:10:34 -04001028 break;
1029 case NETLBL_NLTYPE_UNLABELED:
1030 /* just delete the protocols we support for right now
1031 * but we could remove other protocols if needed */
1032 cipso_v4_req_delattr(req);
1033 ret_val = 0;
1034 break;
1035 default:
1036 ret_val = -ENOENT;
1037 }
1038 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001039#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -04001040 case AF_INET6:
1041 /* since we don't support any IPv6 labeling protocols right
1042 * now we can optimize everything away until we do */
1043 ret_val = 0;
1044 break;
1045#endif /* IPv6 */
1046 default:
1047 ret_val = -EPROTONOSUPPORT;
1048 }
1049
1050req_setattr_return:
1051 rcu_read_unlock();
1052 return ret_val;
1053}
1054
1055/**
Paul Moore07feee82009-03-27 17:10:54 -04001056* netlbl_req_delattr - Delete all the NetLabel labels on a socket
1057* @req: the socket
1058*
1059* Description:
1060* Remove all the NetLabel labeling from @req.
1061*
1062*/
1063void netlbl_req_delattr(struct request_sock *req)
1064{
Paul Moore0e0e3672016-06-06 15:17:20 -04001065 switch (req->rsk_ops->family) {
1066 case AF_INET:
1067 cipso_v4_req_delattr(req);
1068 break;
1069 }
Paul Moore07feee82009-03-27 17:10:54 -04001070}
1071
1072/**
Paul Moore948bf852008-10-10 10:16:32 -04001073 * netlbl_skbuff_setattr - Label a packet using the correct protocol
1074 * @skb: the packet
1075 * @family: protocol family
1076 * @secattr: the security attributes
1077 *
1078 * Description:
1079 * Attach the correct label to the given packet using the security attributes
1080 * specified in @secattr. Returns zero on success, negative values on failure.
1081 *
1082 */
1083int netlbl_skbuff_setattr(struct sk_buff *skb,
1084 u16 family,
1085 const struct netlbl_lsm_secattr *secattr)
1086{
1087 int ret_val;
1088 struct iphdr *hdr4;
Paul Moore6a8b7f02013-08-02 14:45:08 -04001089 struct netlbl_dommap_def *entry;
Paul Moore948bf852008-10-10 10:16:32 -04001090
1091 rcu_read_lock();
1092 switch (family) {
1093 case AF_INET:
1094 hdr4 = ip_hdr(skb);
Paul Moore6a8b7f02013-08-02 14:45:08 -04001095 entry = netlbl_domhsh_getentry_af4(secattr->domain,hdr4->daddr);
1096 if (entry == NULL) {
Paul Moore948bf852008-10-10 10:16:32 -04001097 ret_val = -ENOENT;
1098 goto skbuff_setattr_return;
1099 }
Paul Moore6a8b7f02013-08-02 14:45:08 -04001100 switch (entry->type) {
Paul Moore948bf852008-10-10 10:16:32 -04001101 case NETLBL_NLTYPE_CIPSOV4:
Paul Moore6a8b7f02013-08-02 14:45:08 -04001102 ret_val = cipso_v4_skbuff_setattr(skb, entry->cipso,
1103 secattr);
Paul Moore948bf852008-10-10 10:16:32 -04001104 break;
1105 case NETLBL_NLTYPE_UNLABELED:
1106 /* just delete the protocols we support for right now
1107 * but we could remove other protocols if needed */
1108 ret_val = cipso_v4_skbuff_delattr(skb);
1109 break;
1110 default:
1111 ret_val = -ENOENT;
1112 }
1113 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001114#if IS_ENABLED(CONFIG_IPV6)
Paul Moore948bf852008-10-10 10:16:32 -04001115 case AF_INET6:
1116 /* since we don't support any IPv6 labeling protocols right
1117 * now we can optimize everything away until we do */
1118 ret_val = 0;
1119 break;
1120#endif /* IPv6 */
1121 default:
Paul Moore389fb8002009-03-27 17:10:34 -04001122 ret_val = -EPROTONOSUPPORT;
Paul Moore948bf852008-10-10 10:16:32 -04001123 }
1124
1125skbuff_setattr_return:
1126 rcu_read_unlock();
1127 return ret_val;
1128}
1129
1130/**
Paul Moored15c3452006-08-03 16:48:37 -07001131 * netlbl_skbuff_getattr - Determine the security attributes of a packet
1132 * @skb: the packet
Paul Moore75e22912008-01-29 08:38:04 -05001133 * @family: protocol family
Paul Moored15c3452006-08-03 16:48:37 -07001134 * @secattr: the security attributes
1135 *
1136 * Description:
1137 * Examines the given packet to see if a recognized form of packet labeling
1138 * is present, if so it parses the packet label and returns the security
1139 * attributes in @secattr. Returns zero on success, negative values on
1140 * failure.
1141 *
1142 */
1143int netlbl_skbuff_getattr(const struct sk_buff *skb,
Paul Moore75e22912008-01-29 08:38:04 -05001144 u16 family,
Paul Moored15c3452006-08-03 16:48:37 -07001145 struct netlbl_lsm_secattr *secattr)
1146{
Paul Moore04f81f02015-02-11 14:46:37 -05001147 unsigned char *ptr;
1148
Paul Moore389fb8002009-03-27 17:10:34 -04001149 switch (family) {
1150 case AF_INET:
Paul Moore04f81f02015-02-11 14:46:37 -05001151 ptr = cipso_v4_optptr(skb);
1152 if (ptr && cipso_v4_getattr(ptr, secattr) == 0)
Paul Moore389fb8002009-03-27 17:10:34 -04001153 return 0;
1154 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001155#if IS_ENABLED(CONFIG_IPV6)
Paul Moore389fb8002009-03-27 17:10:34 -04001156 case AF_INET6:
1157 break;
1158#endif /* IPv6 */
1159 }
Paul Moored15c3452006-08-03 16:48:37 -07001160
Paul Moore8cc44572008-01-29 08:44:21 -05001161 return netlbl_unlabel_getattr(skb, family, secattr);
Paul Moored15c3452006-08-03 16:48:37 -07001162}
1163
1164/**
1165 * netlbl_skbuff_err - Handle a LSM error on a sk_buff
1166 * @skb: the packet
1167 * @error: the error code
Paul Mooredfaebe92008-10-10 10:16:31 -04001168 * @gateway: true if host is acting as a gateway, false otherwise
Paul Moored15c3452006-08-03 16:48:37 -07001169 *
1170 * Description:
1171 * Deal with a LSM problem when handling the packet in @skb, typically this is
1172 * a permission denied problem (-EACCES). The correct action is determined
1173 * according to the packet's labeling protocol.
1174 *
1175 */
Paul Mooredfaebe92008-10-10 10:16:31 -04001176void netlbl_skbuff_err(struct sk_buff *skb, int error, int gateway)
Paul Moored15c3452006-08-03 16:48:37 -07001177{
Paul Moore04f81f02015-02-11 14:46:37 -05001178 if (cipso_v4_optptr(skb))
Paul Mooredfaebe92008-10-10 10:16:31 -04001179 cipso_v4_error(skb, error, gateway);
Paul Moored15c3452006-08-03 16:48:37 -07001180}
1181
1182/**
1183 * netlbl_cache_invalidate - Invalidate all of the NetLabel protocol caches
1184 *
1185 * Description:
1186 * For all of the NetLabel protocols that support some form of label mapping
1187 * cache, invalidate the cache. Returns zero on success, negative values on
1188 * error.
1189 *
1190 */
1191void netlbl_cache_invalidate(void)
1192{
1193 cipso_v4_cache_invalidate();
1194}
1195
1196/**
1197 * netlbl_cache_add - Add an entry to a NetLabel protocol cache
1198 * @skb: the packet
1199 * @secattr: the packet's security attributes
1200 *
1201 * Description:
1202 * Add the LSM security attributes for the given packet to the underlying
1203 * NetLabel protocol's label mapping cache. Returns zero on success, negative
1204 * values on error.
1205 *
1206 */
1207int netlbl_cache_add(const struct sk_buff *skb,
1208 const struct netlbl_lsm_secattr *secattr)
1209{
Paul Moore04f81f02015-02-11 14:46:37 -05001210 unsigned char *ptr;
1211
Paul Moore701a90b2006-11-17 17:38:46 -05001212 if ((secattr->flags & NETLBL_SECATTR_CACHE) == 0)
Paul Moored15c3452006-08-03 16:48:37 -07001213 return -ENOMSG;
1214
Paul Moore04f81f02015-02-11 14:46:37 -05001215 ptr = cipso_v4_optptr(skb);
1216 if (ptr)
1217 return cipso_v4_cache_add(ptr, secattr);
Paul Moored15c3452006-08-03 16:48:37 -07001218
1219 return -ENOMSG;
1220}
1221
1222/*
Paul Moore6c2e8ac2008-12-31 12:54:11 -05001223 * Protocol Engine Functions
1224 */
1225
1226/**
1227 * netlbl_audit_start - Start an audit message
1228 * @type: audit message type
1229 * @audit_info: NetLabel audit information
1230 *
1231 * Description:
1232 * Start an audit message using the type specified in @type and fill the audit
1233 * message with some fields common to all NetLabel audit messages. This
1234 * function should only be used by protocol engines, not LSMs. Returns a
1235 * pointer to the audit buffer on success, NULL on failure.
1236 *
1237 */
1238struct audit_buffer *netlbl_audit_start(int type,
1239 struct netlbl_audit *audit_info)
1240{
1241 return netlbl_audit_start_common(type, audit_info);
1242}
Huw Daviescb72d382016-06-27 15:02:46 -04001243EXPORT_SYMBOL(netlbl_audit_start);
Paul Moore6c2e8ac2008-12-31 12:54:11 -05001244
1245/*
Paul Moored15c3452006-08-03 16:48:37 -07001246 * Setup Functions
1247 */
1248
1249/**
1250 * netlbl_init - Initialize NetLabel
1251 *
1252 * Description:
1253 * Perform the required NetLabel initialization before first use.
1254 *
1255 */
1256static int __init netlbl_init(void)
1257{
1258 int ret_val;
1259
1260 printk(KERN_INFO "NetLabel: Initializing\n");
1261 printk(KERN_INFO "NetLabel: domain hash size = %u\n",
1262 (1 << NETLBL_DOMHSH_BITSIZE));
1263 printk(KERN_INFO "NetLabel: protocols ="
1264 " UNLABELED"
1265 " CIPSOv4"
1266 "\n");
1267
1268 ret_val = netlbl_domhsh_init(NETLBL_DOMHSH_BITSIZE);
1269 if (ret_val != 0)
1270 goto init_failure;
1271
Paul Moore8cc44572008-01-29 08:44:21 -05001272 ret_val = netlbl_unlabel_init(NETLBL_UNLHSH_BITSIZE);
1273 if (ret_val != 0)
1274 goto init_failure;
1275
Paul Moored15c3452006-08-03 16:48:37 -07001276 ret_val = netlbl_netlink_init();
1277 if (ret_val != 0)
1278 goto init_failure;
1279
1280 ret_val = netlbl_unlabel_defconf();
1281 if (ret_val != 0)
1282 goto init_failure;
1283 printk(KERN_INFO "NetLabel: unlabeled traffic allowed by default\n");
1284
1285 return 0;
1286
1287init_failure:
1288 panic("NetLabel: failed to initialize properly (%d)\n", ret_val);
1289}
1290
1291subsys_initcall(netlbl_init);