Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1 | /* |
| 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 Moore | 82c21bf | 2011-08-01 11:10:33 +0000 | [diff] [blame] | 8 | * Author: Paul Moore <paul@paul-moore.com> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 9 | * |
| 10 | */ |
| 11 | |
| 12 | /* |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 13 | * (c) Copyright Hewlett-Packard Development Company, L.P., 2006, 2008 |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 14 | * |
| 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 Kirsher | d484ff1 | 2013-12-06 09:13:41 -0800 | [diff] [blame] | 26 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 27 | * |
| 28 | */ |
| 29 | |
| 30 | #include <linux/init.h> |
| 31 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 33 | #include <linux/audit.h> |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 34 | #include <linux/in.h> |
| 35 | #include <linux/in6.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 36 | #include <net/ip.h> |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 37 | #include <net/ipv6.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 38 | #include <net/netlabel.h> |
| 39 | #include <net/cipso_ipv4.h> |
| 40 | #include <asm/bug.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 41 | #include <linux/atomic.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 42 | |
| 43 | #include "netlabel_domainhash.h" |
| 44 | #include "netlabel_unlabeled.h" |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 45 | #include "netlabel_cipso_v4.h" |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 46 | #include "netlabel_user.h" |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 47 | #include "netlabel_mgmt.h" |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 48 | #include "netlabel_addrlist.h" |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 49 | |
| 50 | /* |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 51 | * Configuration Functions |
| 52 | */ |
| 53 | |
| 54 | /** |
| 55 | * netlbl_cfg_map_del - Remove a NetLabel/LSM domain mapping |
| 56 | * @domain: the domain mapping to remove |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 57 | * @family: address family |
| 58 | * @addr: IP address |
| 59 | * @mask: IP address mask |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 60 | * @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 Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 68 | int 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 Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 73 | { |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 74 | if (addr == NULL && mask == NULL) { |
| 75 | return netlbl_domhsh_remove(domain, audit_info); |
| 76 | } 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 Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | /** |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 89 | * netlbl_cfg_unlbl_map_add - Add a new unlabeled mapping |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 90 | * @domain: the domain mapping to add |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 91 | * @family: address family |
| 92 | * @addr: IP address |
| 93 | * @mask: IP address mask |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 94 | * @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 Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 102 | int netlbl_cfg_unlbl_map_add(const char *domain, |
| 103 | u16 family, |
| 104 | const void *addr, |
| 105 | const void *mask, |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 106 | struct netlbl_audit *audit_info) |
| 107 | { |
| 108 | int ret_val = -ENOMEM; |
| 109 | struct netlbl_dom_map *entry; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 110 | struct netlbl_domaddr_map *addrmap = NULL; |
| 111 | struct netlbl_domaddr4_map *map4 = NULL; |
| 112 | struct netlbl_domaddr6_map *map6 = NULL; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 113 | |
| 114 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
| 115 | if (entry == NULL) |
Paul Moore | 948a724 | 2008-10-10 10:16:30 -0400 | [diff] [blame] | 116 | return -ENOMEM; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 117 | if (domain != NULL) { |
| 118 | entry->domain = kstrdup(domain, GFP_ATOMIC); |
| 119 | if (entry->domain == NULL) |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 120 | goto cfg_unlbl_map_add_failure; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 121 | } |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 122 | |
| 123 | if (addr == NULL && mask == NULL) |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 124 | entry->def.type = NETLBL_NLTYPE_UNLABELED; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 125 | else if (addr != NULL && mask != NULL) { |
| 126 | addrmap = kzalloc(sizeof(*addrmap), GFP_ATOMIC); |
| 127 | if (addrmap == NULL) |
| 128 | goto cfg_unlbl_map_add_failure; |
| 129 | INIT_LIST_HEAD(&addrmap->list4); |
| 130 | INIT_LIST_HEAD(&addrmap->list6); |
| 131 | |
| 132 | switch (family) { |
Paul Moore | 1281bc2 | 2011-11-29 10:10:54 +0000 | [diff] [blame] | 133 | case AF_INET: { |
| 134 | const struct in_addr *addr4 = addr; |
| 135 | const struct in_addr *mask4 = mask; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 136 | map4 = kzalloc(sizeof(*map4), GFP_ATOMIC); |
| 137 | if (map4 == NULL) |
| 138 | goto cfg_unlbl_map_add_failure; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 139 | map4->def.type = NETLBL_NLTYPE_UNLABELED; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 140 | map4->list.addr = addr4->s_addr & mask4->s_addr; |
| 141 | map4->list.mask = mask4->s_addr; |
| 142 | map4->list.valid = 1; |
| 143 | ret_val = netlbl_af4list_add(&map4->list, |
| 144 | &addrmap->list4); |
| 145 | if (ret_val != 0) |
| 146 | goto cfg_unlbl_map_add_failure; |
| 147 | break; |
Paul Moore | 1281bc2 | 2011-11-29 10:10:54 +0000 | [diff] [blame] | 148 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 149 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 1281bc2 | 2011-11-29 10:10:54 +0000 | [diff] [blame] | 150 | case AF_INET6: { |
| 151 | const struct in6_addr *addr6 = addr; |
| 152 | const struct in6_addr *mask6 = mask; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 153 | map6 = kzalloc(sizeof(*map6), GFP_ATOMIC); |
Julia Lawall | ca7daea | 2009-07-30 04:38:19 +0000 | [diff] [blame] | 154 | if (map6 == NULL) |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 155 | goto cfg_unlbl_map_add_failure; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 156 | map6->def.type = NETLBL_NLTYPE_UNLABELED; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 157 | map6->list.addr = *addr6; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 158 | map6->list.addr.s6_addr32[0] &= mask6->s6_addr32[0]; |
| 159 | map6->list.addr.s6_addr32[1] &= mask6->s6_addr32[1]; |
| 160 | map6->list.addr.s6_addr32[2] &= mask6->s6_addr32[2]; |
| 161 | map6->list.addr.s6_addr32[3] &= mask6->s6_addr32[3]; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 162 | map6->list.mask = *mask6; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 163 | map6->list.valid = 1; |
Dan Carpenter | 42ca020 | 2011-11-23 21:18:20 +0000 | [diff] [blame] | 164 | ret_val = netlbl_af6list_add(&map6->list, |
| 165 | &addrmap->list6); |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 166 | if (ret_val != 0) |
| 167 | goto cfg_unlbl_map_add_failure; |
| 168 | break; |
Paul Moore | 1281bc2 | 2011-11-29 10:10:54 +0000 | [diff] [blame] | 169 | } |
| 170 | #endif /* IPv6 */ |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 171 | default: |
| 172 | goto cfg_unlbl_map_add_failure; |
| 173 | break; |
| 174 | } |
| 175 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 176 | entry->def.addrsel = addrmap; |
| 177 | entry->def.type = NETLBL_NLTYPE_ADDRSELECT; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 178 | } else { |
| 179 | ret_val = -EINVAL; |
| 180 | goto cfg_unlbl_map_add_failure; |
| 181 | } |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 182 | |
| 183 | ret_val = netlbl_domhsh_add(entry, audit_info); |
| 184 | if (ret_val != 0) |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 185 | goto cfg_unlbl_map_add_failure; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 186 | |
| 187 | return 0; |
| 188 | |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 189 | cfg_unlbl_map_add_failure: |
Julia Lawall | 4794323 | 2009-07-27 06:15:43 +0000 | [diff] [blame] | 190 | kfree(entry->domain); |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 191 | kfree(entry); |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 192 | kfree(addrmap); |
| 193 | kfree(map4); |
| 194 | kfree(map6); |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 195 | return ret_val; |
| 196 | } |
| 197 | |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 198 | |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 199 | /** |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 200 | * 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 Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 207 | * @audit_info: NetLabel audit information |
| 208 | * |
| 209 | * Description: |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 210 | * 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 Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 213 | * |
| 214 | */ |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 215 | int 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 Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 229 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 230 | case AF_INET6: |
| 231 | addr_len = sizeof(struct in6_addr); |
| 232 | break; |
Paul Moore | 1281bc2 | 2011-11-29 10:10:54 +0000 | [diff] [blame] | 233 | #endif /* IPv6 */ |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 234 | 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 |
| 250 | * @secid: LSM secid value for the entry |
| 251 | * @audit_info: NetLabel audit information |
| 252 | * |
| 253 | * Description: |
| 254 | * Removes an existing NetLabel static label used when protocol provided labels |
| 255 | * are not present on incoming traffic. If @dev_name is NULL then the default |
| 256 | * interface will be used. Returns zero on success, negative values on failure. |
| 257 | * |
| 258 | */ |
| 259 | int netlbl_cfg_unlbl_static_del(struct net *net, |
| 260 | const char *dev_name, |
| 261 | const void *addr, |
| 262 | const void *mask, |
| 263 | u16 family, |
| 264 | struct netlbl_audit *audit_info) |
| 265 | { |
| 266 | u32 addr_len; |
| 267 | |
| 268 | switch (family) { |
| 269 | case AF_INET: |
| 270 | addr_len = sizeof(struct in_addr); |
| 271 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 272 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 273 | case AF_INET6: |
| 274 | addr_len = sizeof(struct in6_addr); |
| 275 | break; |
Paul Moore | 1281bc2 | 2011-11-29 10:10:54 +0000 | [diff] [blame] | 276 | #endif /* IPv6 */ |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 277 | default: |
| 278 | return -EPFNOSUPPORT; |
| 279 | } |
| 280 | |
| 281 | return netlbl_unlhsh_remove(net, |
| 282 | dev_name, addr, mask, addr_len, |
| 283 | audit_info); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * netlbl_cfg_cipsov4_add - Add a new CIPSOv4 DOI definition |
| 288 | * @doi_def: CIPSO DOI definition |
| 289 | * @audit_info: NetLabel audit information |
| 290 | * |
| 291 | * Description: |
| 292 | * Add a new CIPSO DOI definition as defined by @doi_def. Returns zero on |
| 293 | * success and negative values on failure. |
| 294 | * |
| 295 | */ |
| 296 | int netlbl_cfg_cipsov4_add(struct cipso_v4_doi *doi_def, |
| 297 | struct netlbl_audit *audit_info) |
| 298 | { |
| 299 | return cipso_v4_doi_add(doi_def, audit_info); |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * netlbl_cfg_cipsov4_del - Remove an existing CIPSOv4 DOI definition |
| 304 | * @doi: CIPSO DOI |
| 305 | * @audit_info: NetLabel audit information |
| 306 | * |
| 307 | * Description: |
| 308 | * Remove an existing CIPSO DOI definition matching @doi. Returns zero on |
| 309 | * success and negative values on failure. |
| 310 | * |
| 311 | */ |
| 312 | void netlbl_cfg_cipsov4_del(u32 doi, struct netlbl_audit *audit_info) |
| 313 | { |
| 314 | cipso_v4_doi_remove(doi, audit_info); |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * netlbl_cfg_cipsov4_map_add - Add a new CIPSOv4 DOI mapping |
| 319 | * @doi: the CIPSO DOI |
| 320 | * @domain: the domain mapping to add |
| 321 | * @addr: IP address |
| 322 | * @mask: IP address mask |
| 323 | * @audit_info: NetLabel audit information |
| 324 | * |
| 325 | * Description: |
| 326 | * Add a new NetLabel/LSM domain mapping for the given CIPSO DOI to the NetLabel |
| 327 | * subsystem. A @domain value of NULL adds a new default domain mapping. |
| 328 | * Returns zero on success, negative values on failure. |
| 329 | * |
| 330 | */ |
| 331 | int netlbl_cfg_cipsov4_map_add(u32 doi, |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 332 | const char *domain, |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 333 | const struct in_addr *addr, |
| 334 | const struct in_addr *mask, |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 335 | struct netlbl_audit *audit_info) |
| 336 | { |
| 337 | int ret_val = -ENOMEM; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 338 | struct cipso_v4_doi *doi_def; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 339 | struct netlbl_dom_map *entry; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 340 | struct netlbl_domaddr_map *addrmap = NULL; |
| 341 | struct netlbl_domaddr4_map *addrinfo = NULL; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 342 | |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 343 | doi_def = cipso_v4_doi_getdef(doi); |
| 344 | if (doi_def == NULL) |
| 345 | return -ENOENT; |
Paul Moore | b1edeb1 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 346 | |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 347 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
| 348 | if (entry == NULL) |
Julia Lawall | 94a80d6 | 2011-08-11 00:06:04 +0000 | [diff] [blame] | 349 | goto out_entry; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 350 | if (domain != NULL) { |
| 351 | entry->domain = kstrdup(domain, GFP_ATOMIC); |
| 352 | if (entry->domain == NULL) |
Julia Lawall | 94a80d6 | 2011-08-11 00:06:04 +0000 | [diff] [blame] | 353 | goto out_domain; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 354 | } |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 355 | |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 356 | if (addr == NULL && mask == NULL) { |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 357 | entry->def.cipso = doi_def; |
| 358 | entry->def.type = NETLBL_NLTYPE_CIPSOV4; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 359 | } else if (addr != NULL && mask != NULL) { |
| 360 | addrmap = kzalloc(sizeof(*addrmap), GFP_ATOMIC); |
| 361 | if (addrmap == NULL) |
Julia Lawall | 94a80d6 | 2011-08-11 00:06:04 +0000 | [diff] [blame] | 362 | goto out_addrmap; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 363 | INIT_LIST_HEAD(&addrmap->list4); |
| 364 | INIT_LIST_HEAD(&addrmap->list6); |
| 365 | |
| 366 | addrinfo = kzalloc(sizeof(*addrinfo), GFP_ATOMIC); |
| 367 | if (addrinfo == NULL) |
Julia Lawall | 94a80d6 | 2011-08-11 00:06:04 +0000 | [diff] [blame] | 368 | goto out_addrinfo; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 369 | addrinfo->def.cipso = doi_def; |
| 370 | addrinfo->def.type = NETLBL_NLTYPE_CIPSOV4; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 371 | 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 Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 378 | entry->def.addrsel = addrmap; |
| 379 | entry->def.type = NETLBL_NLTYPE_ADDRSELECT; |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 380 | } else { |
| 381 | ret_val = -EINVAL; |
Julia Lawall | 94a80d6 | 2011-08-11 00:06:04 +0000 | [diff] [blame] | 382 | goto out_addrmap; |
Paul Moore | b1edeb1 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 383 | } |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 384 | |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 385 | ret_val = netlbl_domhsh_add(entry, audit_info); |
| 386 | if (ret_val != 0) |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 387 | goto cfg_cipsov4_map_add_failure; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 388 | |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 389 | return 0; |
Paul Moore | b1edeb1 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 390 | |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 391 | cfg_cipsov4_map_add_failure: |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 392 | kfree(addrinfo); |
Julia Lawall | 94a80d6 | 2011-08-11 00:06:04 +0000 | [diff] [blame] | 393 | out_addrinfo: |
| 394 | kfree(addrmap); |
| 395 | out_addrmap: |
| 396 | kfree(entry->domain); |
| 397 | out_domain: |
| 398 | kfree(entry); |
| 399 | out_entry: |
| 400 | cipso_v4_doi_putdef(doi_def); |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 401 | return ret_val; |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 402 | } |
| 403 | |
Paul Moore | eda61d3 | 2008-02-04 22:29:47 -0800 | [diff] [blame] | 404 | /* |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 405 | * Security Attribute Functions |
| 406 | */ |
| 407 | |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 408 | #define _CM_F_NONE 0x00000000 |
| 409 | #define _CM_F_ALLOC 0x00000001 |
| 410 | |
| 411 | /** |
| 412 | * _netlbl_secattr_catmap_getnode - Get a individual node from a catmap |
| 413 | * @catmap: pointer to the category bitmap |
| 414 | * @offset: the requested offset |
| 415 | * @cm_flags: catmap flags, see _CM_F_* |
| 416 | * @gfp_flags: memory allocation flags |
| 417 | * |
| 418 | * Description: |
| 419 | * Iterate through the catmap looking for the node associated with @offset; if |
| 420 | * the _CM_F_ALLOC flag is set in @cm_flags and there is no associated node, |
| 421 | * one will be created and inserted into the catmap. Returns a pointer to the |
| 422 | * node on success, NULL on failure. |
| 423 | * |
| 424 | */ |
| 425 | static struct netlbl_lsm_secattr_catmap *_netlbl_secattr_catmap_getnode( |
| 426 | struct netlbl_lsm_secattr_catmap **catmap, |
| 427 | u32 offset, |
| 428 | unsigned int cm_flags, |
| 429 | gfp_t gfp_flags) |
| 430 | { |
| 431 | struct netlbl_lsm_secattr_catmap *iter = *catmap; |
| 432 | struct netlbl_lsm_secattr_catmap *prev = NULL; |
| 433 | |
| 434 | if (iter == NULL || offset < iter->startbit) |
| 435 | goto secattr_catmap_getnode_alloc; |
| 436 | while (iter && offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) { |
| 437 | prev = iter; |
| 438 | iter = iter->next; |
| 439 | } |
| 440 | if (iter == NULL || offset < iter->startbit) |
| 441 | goto secattr_catmap_getnode_alloc; |
| 442 | |
| 443 | return iter; |
| 444 | |
| 445 | secattr_catmap_getnode_alloc: |
| 446 | if (!(cm_flags & _CM_F_ALLOC)) |
| 447 | return NULL; |
| 448 | |
| 449 | iter = netlbl_secattr_catmap_alloc(gfp_flags); |
| 450 | if (iter == NULL) |
| 451 | return NULL; |
| 452 | iter->startbit = offset & ~(NETLBL_CATMAP_SIZE - 1); |
| 453 | |
| 454 | if (prev == NULL) { |
| 455 | iter->next = *catmap; |
| 456 | *catmap = iter; |
| 457 | } else { |
| 458 | iter->next = prev->next; |
| 459 | prev->next = iter; |
| 460 | } |
| 461 | |
| 462 | return iter; |
| 463 | } |
| 464 | |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 465 | /** |
| 466 | * netlbl_secattr_catmap_walk - Walk a LSM secattr catmap looking for a bit |
| 467 | * @catmap: the category bitmap |
| 468 | * @offset: the offset to start searching at, in bits |
| 469 | * |
| 470 | * Description: |
| 471 | * This function walks a LSM secattr category bitmap starting at @offset and |
| 472 | * returns the spot of the first set bit or -ENOENT if no bits are set. |
| 473 | * |
| 474 | */ |
| 475 | int netlbl_secattr_catmap_walk(struct netlbl_lsm_secattr_catmap *catmap, |
| 476 | u32 offset) |
| 477 | { |
| 478 | struct netlbl_lsm_secattr_catmap *iter = catmap; |
| 479 | u32 node_idx; |
| 480 | u32 node_bit; |
| 481 | NETLBL_CATMAP_MAPTYPE bitmap; |
| 482 | |
| 483 | if (offset > iter->startbit) { |
| 484 | while (offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) { |
| 485 | iter = iter->next; |
| 486 | if (iter == NULL) |
| 487 | return -ENOENT; |
| 488 | } |
| 489 | node_idx = (offset - iter->startbit) / NETLBL_CATMAP_MAPSIZE; |
| 490 | node_bit = offset - iter->startbit - |
| 491 | (NETLBL_CATMAP_MAPSIZE * node_idx); |
| 492 | } else { |
| 493 | node_idx = 0; |
| 494 | node_bit = 0; |
| 495 | } |
| 496 | bitmap = iter->bitmap[node_idx] >> node_bit; |
| 497 | |
| 498 | for (;;) { |
| 499 | if (bitmap != 0) { |
| 500 | while ((bitmap & NETLBL_CATMAP_BIT) == 0) { |
| 501 | bitmap >>= 1; |
| 502 | node_bit++; |
| 503 | } |
| 504 | return iter->startbit + |
| 505 | (NETLBL_CATMAP_MAPSIZE * node_idx) + node_bit; |
| 506 | } |
| 507 | if (++node_idx >= NETLBL_CATMAP_MAPCNT) { |
| 508 | if (iter->next != NULL) { |
| 509 | iter = iter->next; |
| 510 | node_idx = 0; |
| 511 | } else |
| 512 | return -ENOENT; |
| 513 | } |
| 514 | bitmap = iter->bitmap[node_idx]; |
| 515 | node_bit = 0; |
| 516 | } |
| 517 | |
| 518 | return -ENOENT; |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * netlbl_secattr_catmap_walk_rng - Find the end of a string of set bits |
| 523 | * @catmap: the category bitmap |
| 524 | * @offset: the offset to start searching at, in bits |
| 525 | * |
| 526 | * Description: |
| 527 | * This function walks a LSM secattr category bitmap starting at @offset and |
| 528 | * returns the spot of the first cleared bit or -ENOENT if the offset is past |
| 529 | * the end of the bitmap. |
| 530 | * |
| 531 | */ |
| 532 | int netlbl_secattr_catmap_walk_rng(struct netlbl_lsm_secattr_catmap *catmap, |
| 533 | u32 offset) |
| 534 | { |
| 535 | struct netlbl_lsm_secattr_catmap *iter = catmap; |
| 536 | u32 node_idx; |
| 537 | u32 node_bit; |
| 538 | NETLBL_CATMAP_MAPTYPE bitmask; |
| 539 | NETLBL_CATMAP_MAPTYPE bitmap; |
| 540 | |
| 541 | if (offset > iter->startbit) { |
| 542 | while (offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) { |
| 543 | iter = iter->next; |
| 544 | if (iter == NULL) |
| 545 | return -ENOENT; |
| 546 | } |
| 547 | node_idx = (offset - iter->startbit) / NETLBL_CATMAP_MAPSIZE; |
| 548 | node_bit = offset - iter->startbit - |
| 549 | (NETLBL_CATMAP_MAPSIZE * node_idx); |
| 550 | } else { |
| 551 | node_idx = 0; |
| 552 | node_bit = 0; |
| 553 | } |
| 554 | bitmask = NETLBL_CATMAP_BIT << node_bit; |
| 555 | |
| 556 | for (;;) { |
| 557 | bitmap = iter->bitmap[node_idx]; |
| 558 | while (bitmask != 0 && (bitmap & bitmask) != 0) { |
| 559 | bitmask <<= 1; |
| 560 | node_bit++; |
| 561 | } |
| 562 | |
| 563 | if (bitmask != 0) |
| 564 | return iter->startbit + |
| 565 | (NETLBL_CATMAP_MAPSIZE * node_idx) + |
| 566 | node_bit - 1; |
| 567 | else if (++node_idx >= NETLBL_CATMAP_MAPCNT) { |
| 568 | if (iter->next == NULL) |
| 569 | return iter->startbit + NETLBL_CATMAP_SIZE - 1; |
| 570 | iter = iter->next; |
| 571 | node_idx = 0; |
| 572 | } |
| 573 | bitmask = NETLBL_CATMAP_BIT; |
| 574 | node_bit = 0; |
| 575 | } |
| 576 | |
| 577 | return -ENOENT; |
| 578 | } |
| 579 | |
| 580 | /** |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 581 | * netlbl_secattr_catmap_getlong - Export an unsigned long bitmap |
| 582 | * @catmap: pointer to the category bitmap |
| 583 | * @offset: pointer to the requested offset |
| 584 | * @bitmap: the exported bitmap |
| 585 | * |
| 586 | * Description: |
| 587 | * Export a bitmap with an offset greater than or equal to @offset and return |
| 588 | * it in @bitmap. The @offset must be aligned to an unsigned long and will be |
| 589 | * updated on return if different from what was requested; if the catmap is |
| 590 | * empty at the requested offset and beyond, the @offset is set to (u32)-1. |
| 591 | * Returns zero on sucess, negative values on failure. |
| 592 | * |
| 593 | */ |
| 594 | int netlbl_secattr_catmap_getlong(struct netlbl_lsm_secattr_catmap *catmap, |
| 595 | u32 *offset, |
| 596 | unsigned long *bitmap) |
| 597 | { |
| 598 | struct netlbl_lsm_secattr_catmap *iter; |
| 599 | u32 off = *offset; |
| 600 | u32 idx; |
| 601 | |
| 602 | /* only allow aligned offsets */ |
| 603 | if ((off & (BITS_PER_LONG - 1)) != 0) |
| 604 | return -EINVAL; |
| 605 | |
| 606 | if (off < catmap->startbit) { |
| 607 | off = catmap->startbit; |
| 608 | *offset = off; |
| 609 | } |
| 610 | iter = _netlbl_secattr_catmap_getnode(&catmap, off, _CM_F_NONE, 0); |
| 611 | if (iter == NULL) { |
| 612 | *offset = (u32)-1; |
| 613 | return 0; |
| 614 | } |
| 615 | |
| 616 | if (off < iter->startbit) { |
| 617 | off = iter->startbit; |
| 618 | *offset = off; |
| 619 | } else |
| 620 | off -= iter->startbit; |
| 621 | |
| 622 | idx = off / NETLBL_CATMAP_MAPSIZE; |
| 623 | *bitmap = iter->bitmap[idx] >> (off % NETLBL_CATMAP_SIZE); |
| 624 | |
| 625 | return 0; |
| 626 | } |
| 627 | |
| 628 | /** |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 629 | * netlbl_secattr_catmap_setbit - Set a bit in a LSM secattr catmap |
Paul Moore | 41c3bd2 | 2014-08-01 11:17:03 -0400 | [diff] [blame] | 630 | * @catmap: pointer to the category bitmap |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 631 | * @bit: the bit to set |
| 632 | * @flags: memory allocation flags |
| 633 | * |
| 634 | * Description: |
| 635 | * Set the bit specified by @bit in @catmap. Returns zero on success, |
| 636 | * negative values on failure. |
| 637 | * |
| 638 | */ |
Paul Moore | 41c3bd2 | 2014-08-01 11:17:03 -0400 | [diff] [blame] | 639 | int netlbl_secattr_catmap_setbit(struct netlbl_lsm_secattr_catmap **catmap, |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 640 | u32 bit, |
| 641 | gfp_t flags) |
| 642 | { |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 643 | struct netlbl_lsm_secattr_catmap *iter; |
| 644 | u32 idx; |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 645 | |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 646 | iter = _netlbl_secattr_catmap_getnode(catmap, bit, _CM_F_ALLOC, flags); |
| 647 | if (iter == NULL) |
| 648 | return -ENOMEM; |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 649 | |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 650 | bit -= iter->startbit; |
| 651 | idx = bit / NETLBL_CATMAP_MAPSIZE; |
| 652 | iter->bitmap[idx] |= NETLBL_CATMAP_BIT << (bit % NETLBL_CATMAP_MAPSIZE); |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 653 | |
| 654 | return 0; |
| 655 | } |
| 656 | |
| 657 | /** |
| 658 | * netlbl_secattr_catmap_setrng - Set a range of bits in a LSM secattr catmap |
Paul Moore | 41c3bd2 | 2014-08-01 11:17:03 -0400 | [diff] [blame] | 659 | * @catmap: pointer to the category bitmap |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 660 | * @start: the starting bit |
| 661 | * @end: the last bit in the string |
| 662 | * @flags: memory allocation flags |
| 663 | * |
| 664 | * Description: |
| 665 | * Set a range of bits, starting at @start and ending with @end. Returns zero |
| 666 | * on success, negative values on failure. |
| 667 | * |
| 668 | */ |
Paul Moore | 41c3bd2 | 2014-08-01 11:17:03 -0400 | [diff] [blame] | 669 | int netlbl_secattr_catmap_setrng(struct netlbl_lsm_secattr_catmap **catmap, |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 670 | u32 start, |
| 671 | u32 end, |
| 672 | gfp_t flags) |
| 673 | { |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 674 | int rc = 0; |
| 675 | u32 spot = start; |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 676 | |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 677 | while (rc == 0 && spot <= end) { |
| 678 | if (((spot & (BITS_PER_LONG - 1)) != 0) && |
| 679 | ((end - spot) > BITS_PER_LONG)) { |
| 680 | rc = netlbl_secattr_catmap_setlong(catmap, |
| 681 | spot, |
| 682 | (unsigned long)-1, |
| 683 | flags); |
| 684 | spot += BITS_PER_LONG; |
| 685 | } else |
| 686 | rc = netlbl_secattr_catmap_setbit(catmap, |
| 687 | spot++, |
| 688 | flags); |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 689 | } |
| 690 | |
Paul Moore | 4b8feff | 2014-08-01 11:17:17 -0400 | [diff] [blame^] | 691 | return rc; |
| 692 | } |
| 693 | |
| 694 | /** |
| 695 | * netlbl_secattr_catmap_setlong - Import an unsigned long bitmap |
| 696 | * @catmap: pointer to the category bitmap |
| 697 | * @offset: offset to the start of the imported bitmap |
| 698 | * @bitmap: the bitmap to import |
| 699 | * @flags: memory allocation flags |
| 700 | * |
| 701 | * Description: |
| 702 | * Import the bitmap specified in @bitmap into @catmap, using the offset |
| 703 | * in @offset. The offset must be aligned to an unsigned long. Returns zero |
| 704 | * on success, negative values on failure. |
| 705 | * |
| 706 | */ |
| 707 | int netlbl_secattr_catmap_setlong(struct netlbl_lsm_secattr_catmap **catmap, |
| 708 | u32 offset, |
| 709 | unsigned long bitmap, |
| 710 | gfp_t flags) |
| 711 | { |
| 712 | struct netlbl_lsm_secattr_catmap *iter; |
| 713 | u32 idx; |
| 714 | |
| 715 | /* only allow aligned offsets */ |
| 716 | if ((offset & (BITS_PER_LONG - 1)) != 0) |
| 717 | return -EINVAL; |
| 718 | |
| 719 | iter = _netlbl_secattr_catmap_getnode(catmap, |
| 720 | offset, _CM_F_ALLOC, flags); |
| 721 | 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 Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | /* |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 732 | * LSM Functions |
| 733 | */ |
| 734 | |
| 735 | /** |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 736 | * netlbl_enabled - Determine if the NetLabel subsystem is enabled |
| 737 | * |
| 738 | * Description: |
| 739 | * The LSM can use this function to determine if it should use NetLabel |
| 740 | * security attributes in it's enforcement mechanism. Currently, NetLabel is |
| 741 | * considered to be enabled when it's configuration contains a valid setup for |
| 742 | * at least one labeled protocol (i.e. NetLabel can understand incoming |
| 743 | * labeled packets of at least one type); otherwise NetLabel is considered to |
| 744 | * be disabled. |
| 745 | * |
| 746 | */ |
| 747 | int netlbl_enabled(void) |
| 748 | { |
| 749 | /* At some point we probably want to expose this mechanism to the user |
| 750 | * as well so that admins can toggle NetLabel regardless of the |
| 751 | * configuration */ |
Paul Moore | c783f1c | 2008-01-29 08:37:52 -0500 | [diff] [blame] | 752 | return (atomic_read(&netlabel_mgmt_protocount) > 0); |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | /** |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 756 | * netlbl_sock_setattr - Label a socket using the correct protocol |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 757 | * @sk: the socket to label |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 758 | * @family: protocol family |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 759 | * @secattr: the security attributes |
| 760 | * |
| 761 | * Description: |
| 762 | * Attach the correct label to the given socket using the security attributes |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 763 | * specified in @secattr. This function requires exclusive access to @sk, |
| 764 | * which means it either needs to be in the process of being created or locked. |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 765 | * Returns zero on success, -EDESTADDRREQ if the domain is configured to use |
| 766 | * network address selectors (can't blindly label the socket), and negative |
| 767 | * values on all other failures. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 768 | * |
| 769 | */ |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 770 | int netlbl_sock_setattr(struct sock *sk, |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 771 | u16 family, |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 772 | const struct netlbl_lsm_secattr *secattr) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 773 | { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 774 | int ret_val; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 775 | struct netlbl_dom_map *dom_entry; |
| 776 | |
| 777 | rcu_read_lock(); |
| 778 | dom_entry = netlbl_domhsh_getentry(secattr->domain); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 779 | if (dom_entry == NULL) { |
| 780 | ret_val = -ENOENT; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 781 | goto socket_setattr_return; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 782 | } |
| 783 | switch (family) { |
| 784 | case AF_INET: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 785 | switch (dom_entry->def.type) { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 786 | case NETLBL_NLTYPE_ADDRSELECT: |
| 787 | ret_val = -EDESTADDRREQ; |
| 788 | break; |
| 789 | case NETLBL_NLTYPE_CIPSOV4: |
| 790 | ret_val = cipso_v4_sock_setattr(sk, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 791 | dom_entry->def.cipso, |
| 792 | secattr); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 793 | break; |
| 794 | case NETLBL_NLTYPE_UNLABELED: |
| 795 | ret_val = 0; |
| 796 | break; |
| 797 | default: |
| 798 | ret_val = -ENOENT; |
| 799 | } |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 800 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 801 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 802 | case AF_INET6: |
| 803 | /* since we don't support any IPv6 labeling protocols right |
| 804 | * now we can optimize everything away until we do */ |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 805 | ret_val = 0; |
| 806 | break; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 807 | #endif /* IPv6 */ |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 808 | default: |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 809 | ret_val = -EPROTONOSUPPORT; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | socket_setattr_return: |
| 813 | rcu_read_unlock(); |
| 814 | return ret_val; |
| 815 | } |
| 816 | |
| 817 | /** |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 818 | * netlbl_sock_delattr - Delete all the NetLabel labels on a socket |
| 819 | * @sk: the socket |
| 820 | * |
| 821 | * Description: |
| 822 | * Remove all the NetLabel labeling from @sk. The caller is responsible for |
| 823 | * ensuring that @sk is locked. |
| 824 | * |
| 825 | */ |
| 826 | void netlbl_sock_delattr(struct sock *sk) |
| 827 | { |
| 828 | cipso_v4_sock_delattr(sk); |
| 829 | } |
| 830 | |
| 831 | /** |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 832 | * netlbl_sock_getattr - Determine the security attributes of a sock |
| 833 | * @sk: the sock |
| 834 | * @secattr: the security attributes |
| 835 | * |
| 836 | * Description: |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 837 | * Examines the given sock to see if any NetLabel style labeling has been |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 838 | * applied to the sock, if so it parses the socket label and returns the |
| 839 | * security attributes in @secattr. Returns zero on success, negative values |
| 840 | * on failure. |
| 841 | * |
| 842 | */ |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 843 | int netlbl_sock_getattr(struct sock *sk, |
| 844 | struct netlbl_lsm_secattr *secattr) |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 845 | { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 846 | int ret_val; |
| 847 | |
| 848 | switch (sk->sk_family) { |
| 849 | case AF_INET: |
| 850 | ret_val = cipso_v4_sock_getattr(sk, secattr); |
| 851 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 852 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 853 | case AF_INET6: |
| 854 | ret_val = -ENOMSG; |
| 855 | break; |
| 856 | #endif /* IPv6 */ |
| 857 | default: |
| 858 | ret_val = -EPROTONOSUPPORT; |
| 859 | } |
| 860 | |
| 861 | return ret_val; |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | /** |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 865 | * netlbl_conn_setattr - Label a connected socket using the correct protocol |
| 866 | * @sk: the socket to label |
| 867 | * @addr: the destination address |
| 868 | * @secattr: the security attributes |
| 869 | * |
| 870 | * Description: |
| 871 | * Attach the correct label to the given connected socket using the security |
| 872 | * attributes specified in @secattr. The caller is responsible for ensuring |
| 873 | * that @sk is locked. Returns zero on success, negative values on failure. |
| 874 | * |
| 875 | */ |
| 876 | int netlbl_conn_setattr(struct sock *sk, |
| 877 | struct sockaddr *addr, |
| 878 | const struct netlbl_lsm_secattr *secattr) |
| 879 | { |
| 880 | int ret_val; |
| 881 | struct sockaddr_in *addr4; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 882 | struct netlbl_dommap_def *entry; |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 883 | |
| 884 | rcu_read_lock(); |
| 885 | switch (addr->sa_family) { |
| 886 | case AF_INET: |
| 887 | addr4 = (struct sockaddr_in *)addr; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 888 | entry = netlbl_domhsh_getentry_af4(secattr->domain, |
| 889 | addr4->sin_addr.s_addr); |
| 890 | if (entry == NULL) { |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 891 | ret_val = -ENOENT; |
| 892 | goto conn_setattr_return; |
| 893 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 894 | switch (entry->type) { |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 895 | case NETLBL_NLTYPE_CIPSOV4: |
| 896 | ret_val = cipso_v4_sock_setattr(sk, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 897 | entry->cipso, secattr); |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 898 | break; |
| 899 | case NETLBL_NLTYPE_UNLABELED: |
| 900 | /* just delete the protocols we support for right now |
| 901 | * but we could remove other protocols if needed */ |
| 902 | cipso_v4_sock_delattr(sk); |
| 903 | ret_val = 0; |
| 904 | break; |
| 905 | default: |
| 906 | ret_val = -ENOENT; |
| 907 | } |
| 908 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 909 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 910 | case AF_INET6: |
| 911 | /* since we don't support any IPv6 labeling protocols right |
| 912 | * now we can optimize everything away until we do */ |
| 913 | ret_val = 0; |
| 914 | break; |
| 915 | #endif /* IPv6 */ |
| 916 | default: |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 917 | ret_val = -EPROTONOSUPPORT; |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | conn_setattr_return: |
| 921 | rcu_read_unlock(); |
| 922 | return ret_val; |
| 923 | } |
| 924 | |
| 925 | /** |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 926 | * netlbl_req_setattr - Label a request socket using the correct protocol |
| 927 | * @req: the request socket to label |
| 928 | * @secattr: the security attributes |
| 929 | * |
| 930 | * Description: |
| 931 | * Attach the correct label to the given socket using the security attributes |
| 932 | * specified in @secattr. Returns zero on success, negative values on failure. |
| 933 | * |
| 934 | */ |
| 935 | int netlbl_req_setattr(struct request_sock *req, |
| 936 | const struct netlbl_lsm_secattr *secattr) |
| 937 | { |
| 938 | int ret_val; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 939 | struct netlbl_dommap_def *entry; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 940 | |
| 941 | rcu_read_lock(); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 942 | switch (req->rsk_ops->family) { |
| 943 | case AF_INET: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 944 | entry = netlbl_domhsh_getentry_af4(secattr->domain, |
Eric Dumazet | 634fb979 | 2013-10-09 15:21:29 -0700 | [diff] [blame] | 945 | inet_rsk(req)->ir_rmt_addr); |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 946 | if (entry == NULL) { |
| 947 | ret_val = -ENOENT; |
| 948 | goto req_setattr_return; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 949 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 950 | switch (entry->type) { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 951 | case NETLBL_NLTYPE_CIPSOV4: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 952 | ret_val = cipso_v4_req_setattr(req, |
| 953 | entry->cipso, secattr); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 954 | break; |
| 955 | case NETLBL_NLTYPE_UNLABELED: |
| 956 | /* just delete the protocols we support for right now |
| 957 | * but we could remove other protocols if needed */ |
| 958 | cipso_v4_req_delattr(req); |
| 959 | ret_val = 0; |
| 960 | break; |
| 961 | default: |
| 962 | ret_val = -ENOENT; |
| 963 | } |
| 964 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 965 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 966 | case AF_INET6: |
| 967 | /* since we don't support any IPv6 labeling protocols right |
| 968 | * now we can optimize everything away until we do */ |
| 969 | ret_val = 0; |
| 970 | break; |
| 971 | #endif /* IPv6 */ |
| 972 | default: |
| 973 | ret_val = -EPROTONOSUPPORT; |
| 974 | } |
| 975 | |
| 976 | req_setattr_return: |
| 977 | rcu_read_unlock(); |
| 978 | return ret_val; |
| 979 | } |
| 980 | |
| 981 | /** |
Paul Moore | 07feee8 | 2009-03-27 17:10:54 -0400 | [diff] [blame] | 982 | * netlbl_req_delattr - Delete all the NetLabel labels on a socket |
| 983 | * @req: the socket |
| 984 | * |
| 985 | * Description: |
| 986 | * Remove all the NetLabel labeling from @req. |
| 987 | * |
| 988 | */ |
| 989 | void netlbl_req_delattr(struct request_sock *req) |
| 990 | { |
| 991 | cipso_v4_req_delattr(req); |
| 992 | } |
| 993 | |
| 994 | /** |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 995 | * netlbl_skbuff_setattr - Label a packet using the correct protocol |
| 996 | * @skb: the packet |
| 997 | * @family: protocol family |
| 998 | * @secattr: the security attributes |
| 999 | * |
| 1000 | * Description: |
| 1001 | * Attach the correct label to the given packet using the security attributes |
| 1002 | * specified in @secattr. Returns zero on success, negative values on failure. |
| 1003 | * |
| 1004 | */ |
| 1005 | int netlbl_skbuff_setattr(struct sk_buff *skb, |
| 1006 | u16 family, |
| 1007 | const struct netlbl_lsm_secattr *secattr) |
| 1008 | { |
| 1009 | int ret_val; |
| 1010 | struct iphdr *hdr4; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 1011 | struct netlbl_dommap_def *entry; |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1012 | |
| 1013 | rcu_read_lock(); |
| 1014 | switch (family) { |
| 1015 | case AF_INET: |
| 1016 | hdr4 = ip_hdr(skb); |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 1017 | entry = netlbl_domhsh_getentry_af4(secattr->domain,hdr4->daddr); |
| 1018 | if (entry == NULL) { |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1019 | ret_val = -ENOENT; |
| 1020 | goto skbuff_setattr_return; |
| 1021 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 1022 | switch (entry->type) { |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1023 | case NETLBL_NLTYPE_CIPSOV4: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 1024 | ret_val = cipso_v4_skbuff_setattr(skb, entry->cipso, |
| 1025 | secattr); |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1026 | break; |
| 1027 | case NETLBL_NLTYPE_UNLABELED: |
| 1028 | /* just delete the protocols we support for right now |
| 1029 | * but we could remove other protocols if needed */ |
| 1030 | ret_val = cipso_v4_skbuff_delattr(skb); |
| 1031 | break; |
| 1032 | default: |
| 1033 | ret_val = -ENOENT; |
| 1034 | } |
| 1035 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1036 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1037 | case AF_INET6: |
| 1038 | /* since we don't support any IPv6 labeling protocols right |
| 1039 | * now we can optimize everything away until we do */ |
| 1040 | ret_val = 0; |
| 1041 | break; |
| 1042 | #endif /* IPv6 */ |
| 1043 | default: |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 1044 | ret_val = -EPROTONOSUPPORT; |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | skbuff_setattr_return: |
| 1048 | rcu_read_unlock(); |
| 1049 | return ret_val; |
| 1050 | } |
| 1051 | |
| 1052 | /** |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1053 | * netlbl_skbuff_getattr - Determine the security attributes of a packet |
| 1054 | * @skb: the packet |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 1055 | * @family: protocol family |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1056 | * @secattr: the security attributes |
| 1057 | * |
| 1058 | * Description: |
| 1059 | * Examines the given packet to see if a recognized form of packet labeling |
| 1060 | * is present, if so it parses the packet label and returns the security |
| 1061 | * attributes in @secattr. Returns zero on success, negative values on |
| 1062 | * failure. |
| 1063 | * |
| 1064 | */ |
| 1065 | int netlbl_skbuff_getattr(const struct sk_buff *skb, |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 1066 | u16 family, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1067 | struct netlbl_lsm_secattr *secattr) |
| 1068 | { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 1069 | switch (family) { |
| 1070 | case AF_INET: |
| 1071 | if (CIPSO_V4_OPTEXIST(skb) && |
| 1072 | cipso_v4_skbuff_getattr(skb, secattr) == 0) |
| 1073 | return 0; |
| 1074 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 1075 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 1076 | case AF_INET6: |
| 1077 | break; |
| 1078 | #endif /* IPv6 */ |
| 1079 | } |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1080 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1081 | return netlbl_unlabel_getattr(skb, family, secattr); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | /** |
| 1085 | * netlbl_skbuff_err - Handle a LSM error on a sk_buff |
| 1086 | * @skb: the packet |
| 1087 | * @error: the error code |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 1088 | * @gateway: true if host is acting as a gateway, false otherwise |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1089 | * |
| 1090 | * Description: |
| 1091 | * Deal with a LSM problem when handling the packet in @skb, typically this is |
| 1092 | * a permission denied problem (-EACCES). The correct action is determined |
| 1093 | * according to the packet's labeling protocol. |
| 1094 | * |
| 1095 | */ |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 1096 | void netlbl_skbuff_err(struct sk_buff *skb, int error, int gateway) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1097 | { |
| 1098 | if (CIPSO_V4_OPTEXIST(skb)) |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 1099 | cipso_v4_error(skb, error, gateway); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | /** |
| 1103 | * netlbl_cache_invalidate - Invalidate all of the NetLabel protocol caches |
| 1104 | * |
| 1105 | * Description: |
| 1106 | * For all of the NetLabel protocols that support some form of label mapping |
| 1107 | * cache, invalidate the cache. Returns zero on success, negative values on |
| 1108 | * error. |
| 1109 | * |
| 1110 | */ |
| 1111 | void netlbl_cache_invalidate(void) |
| 1112 | { |
| 1113 | cipso_v4_cache_invalidate(); |
| 1114 | } |
| 1115 | |
| 1116 | /** |
| 1117 | * netlbl_cache_add - Add an entry to a NetLabel protocol cache |
| 1118 | * @skb: the packet |
| 1119 | * @secattr: the packet's security attributes |
| 1120 | * |
| 1121 | * Description: |
| 1122 | * Add the LSM security attributes for the given packet to the underlying |
| 1123 | * NetLabel protocol's label mapping cache. Returns zero on success, negative |
| 1124 | * values on error. |
| 1125 | * |
| 1126 | */ |
| 1127 | int netlbl_cache_add(const struct sk_buff *skb, |
| 1128 | const struct netlbl_lsm_secattr *secattr) |
| 1129 | { |
Paul Moore | 701a90b | 2006-11-17 17:38:46 -0500 | [diff] [blame] | 1130 | if ((secattr->flags & NETLBL_SECATTR_CACHE) == 0) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1131 | return -ENOMSG; |
| 1132 | |
| 1133 | if (CIPSO_V4_OPTEXIST(skb)) |
| 1134 | return cipso_v4_cache_add(skb, secattr); |
| 1135 | |
| 1136 | return -ENOMSG; |
| 1137 | } |
| 1138 | |
| 1139 | /* |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 1140 | * Protocol Engine Functions |
| 1141 | */ |
| 1142 | |
| 1143 | /** |
| 1144 | * netlbl_audit_start - Start an audit message |
| 1145 | * @type: audit message type |
| 1146 | * @audit_info: NetLabel audit information |
| 1147 | * |
| 1148 | * Description: |
| 1149 | * Start an audit message using the type specified in @type and fill the audit |
| 1150 | * message with some fields common to all NetLabel audit messages. This |
| 1151 | * function should only be used by protocol engines, not LSMs. Returns a |
| 1152 | * pointer to the audit buffer on success, NULL on failure. |
| 1153 | * |
| 1154 | */ |
| 1155 | struct audit_buffer *netlbl_audit_start(int type, |
| 1156 | struct netlbl_audit *audit_info) |
| 1157 | { |
| 1158 | return netlbl_audit_start_common(type, audit_info); |
| 1159 | } |
| 1160 | |
| 1161 | /* |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1162 | * Setup Functions |
| 1163 | */ |
| 1164 | |
| 1165 | /** |
| 1166 | * netlbl_init - Initialize NetLabel |
| 1167 | * |
| 1168 | * Description: |
| 1169 | * Perform the required NetLabel initialization before first use. |
| 1170 | * |
| 1171 | */ |
| 1172 | static int __init netlbl_init(void) |
| 1173 | { |
| 1174 | int ret_val; |
| 1175 | |
| 1176 | printk(KERN_INFO "NetLabel: Initializing\n"); |
| 1177 | printk(KERN_INFO "NetLabel: domain hash size = %u\n", |
| 1178 | (1 << NETLBL_DOMHSH_BITSIZE)); |
| 1179 | printk(KERN_INFO "NetLabel: protocols =" |
| 1180 | " UNLABELED" |
| 1181 | " CIPSOv4" |
| 1182 | "\n"); |
| 1183 | |
| 1184 | ret_val = netlbl_domhsh_init(NETLBL_DOMHSH_BITSIZE); |
| 1185 | if (ret_val != 0) |
| 1186 | goto init_failure; |
| 1187 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1188 | ret_val = netlbl_unlabel_init(NETLBL_UNLHSH_BITSIZE); |
| 1189 | if (ret_val != 0) |
| 1190 | goto init_failure; |
| 1191 | |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1192 | ret_val = netlbl_netlink_init(); |
| 1193 | if (ret_val != 0) |
| 1194 | goto init_failure; |
| 1195 | |
| 1196 | ret_val = netlbl_unlabel_defconf(); |
| 1197 | if (ret_val != 0) |
| 1198 | goto init_failure; |
| 1199 | printk(KERN_INFO "NetLabel: unlabeled traffic allowed by default\n"); |
| 1200 | |
| 1201 | return 0; |
| 1202 | |
| 1203 | init_failure: |
| 1204 | panic("NetLabel: failed to initialize properly (%d)\n", ret_val); |
| 1205 | } |
| 1206 | |
| 1207 | subsys_initcall(netlbl_init); |