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 | |
| 408 | /** |
| 409 | * netlbl_secattr_catmap_walk - Walk a LSM secattr catmap looking for a bit |
| 410 | * @catmap: the category bitmap |
| 411 | * @offset: the offset to start searching at, in bits |
| 412 | * |
| 413 | * Description: |
| 414 | * This function walks a LSM secattr category bitmap starting at @offset and |
| 415 | * returns the spot of the first set bit or -ENOENT if no bits are set. |
| 416 | * |
| 417 | */ |
| 418 | int netlbl_secattr_catmap_walk(struct netlbl_lsm_secattr_catmap *catmap, |
| 419 | u32 offset) |
| 420 | { |
| 421 | struct netlbl_lsm_secattr_catmap *iter = catmap; |
| 422 | u32 node_idx; |
| 423 | u32 node_bit; |
| 424 | NETLBL_CATMAP_MAPTYPE bitmap; |
| 425 | |
| 426 | if (offset > iter->startbit) { |
| 427 | while (offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) { |
| 428 | iter = iter->next; |
| 429 | if (iter == NULL) |
| 430 | return -ENOENT; |
| 431 | } |
| 432 | node_idx = (offset - iter->startbit) / NETLBL_CATMAP_MAPSIZE; |
| 433 | node_bit = offset - iter->startbit - |
| 434 | (NETLBL_CATMAP_MAPSIZE * node_idx); |
| 435 | } else { |
| 436 | node_idx = 0; |
| 437 | node_bit = 0; |
| 438 | } |
| 439 | bitmap = iter->bitmap[node_idx] >> node_bit; |
| 440 | |
| 441 | for (;;) { |
| 442 | if (bitmap != 0) { |
| 443 | while ((bitmap & NETLBL_CATMAP_BIT) == 0) { |
| 444 | bitmap >>= 1; |
| 445 | node_bit++; |
| 446 | } |
| 447 | return iter->startbit + |
| 448 | (NETLBL_CATMAP_MAPSIZE * node_idx) + node_bit; |
| 449 | } |
| 450 | if (++node_idx >= NETLBL_CATMAP_MAPCNT) { |
| 451 | if (iter->next != NULL) { |
| 452 | iter = iter->next; |
| 453 | node_idx = 0; |
| 454 | } else |
| 455 | return -ENOENT; |
| 456 | } |
| 457 | bitmap = iter->bitmap[node_idx]; |
| 458 | node_bit = 0; |
| 459 | } |
| 460 | |
| 461 | return -ENOENT; |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * netlbl_secattr_catmap_walk_rng - Find the end of a string of set bits |
| 466 | * @catmap: the category bitmap |
| 467 | * @offset: the offset to start searching at, in bits |
| 468 | * |
| 469 | * Description: |
| 470 | * This function walks a LSM secattr category bitmap starting at @offset and |
| 471 | * returns the spot of the first cleared bit or -ENOENT if the offset is past |
| 472 | * the end of the bitmap. |
| 473 | * |
| 474 | */ |
| 475 | int netlbl_secattr_catmap_walk_rng(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 bitmask; |
| 482 | NETLBL_CATMAP_MAPTYPE bitmap; |
| 483 | |
| 484 | if (offset > iter->startbit) { |
| 485 | while (offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) { |
| 486 | iter = iter->next; |
| 487 | if (iter == NULL) |
| 488 | return -ENOENT; |
| 489 | } |
| 490 | node_idx = (offset - iter->startbit) / NETLBL_CATMAP_MAPSIZE; |
| 491 | node_bit = offset - iter->startbit - |
| 492 | (NETLBL_CATMAP_MAPSIZE * node_idx); |
| 493 | } else { |
| 494 | node_idx = 0; |
| 495 | node_bit = 0; |
| 496 | } |
| 497 | bitmask = NETLBL_CATMAP_BIT << node_bit; |
| 498 | |
| 499 | for (;;) { |
| 500 | bitmap = iter->bitmap[node_idx]; |
| 501 | while (bitmask != 0 && (bitmap & bitmask) != 0) { |
| 502 | bitmask <<= 1; |
| 503 | node_bit++; |
| 504 | } |
| 505 | |
| 506 | if (bitmask != 0) |
| 507 | return iter->startbit + |
| 508 | (NETLBL_CATMAP_MAPSIZE * node_idx) + |
| 509 | node_bit - 1; |
| 510 | else if (++node_idx >= NETLBL_CATMAP_MAPCNT) { |
| 511 | if (iter->next == NULL) |
| 512 | return iter->startbit + NETLBL_CATMAP_SIZE - 1; |
| 513 | iter = iter->next; |
| 514 | node_idx = 0; |
| 515 | } |
| 516 | bitmask = NETLBL_CATMAP_BIT; |
| 517 | node_bit = 0; |
| 518 | } |
| 519 | |
| 520 | return -ENOENT; |
| 521 | } |
| 522 | |
| 523 | /** |
| 524 | * netlbl_secattr_catmap_setbit - Set a bit in a LSM secattr catmap |
| 525 | * @catmap: the category bitmap |
| 526 | * @bit: the bit to set |
| 527 | * @flags: memory allocation flags |
| 528 | * |
| 529 | * Description: |
| 530 | * Set the bit specified by @bit in @catmap. Returns zero on success, |
| 531 | * negative values on failure. |
| 532 | * |
| 533 | */ |
| 534 | int netlbl_secattr_catmap_setbit(struct netlbl_lsm_secattr_catmap *catmap, |
| 535 | u32 bit, |
| 536 | gfp_t flags) |
| 537 | { |
| 538 | struct netlbl_lsm_secattr_catmap *iter = catmap; |
| 539 | u32 node_bit; |
| 540 | u32 node_idx; |
| 541 | |
| 542 | while (iter->next != NULL && |
| 543 | bit >= (iter->startbit + NETLBL_CATMAP_SIZE)) |
| 544 | iter = iter->next; |
| 545 | if (bit >= (iter->startbit + NETLBL_CATMAP_SIZE)) { |
| 546 | iter->next = netlbl_secattr_catmap_alloc(flags); |
| 547 | if (iter->next == NULL) |
| 548 | return -ENOMEM; |
| 549 | iter = iter->next; |
| 550 | iter->startbit = bit & ~(NETLBL_CATMAP_SIZE - 1); |
| 551 | } |
| 552 | |
| 553 | /* gcc always rounds to zero when doing integer division */ |
| 554 | node_idx = (bit - iter->startbit) / NETLBL_CATMAP_MAPSIZE; |
| 555 | node_bit = bit - iter->startbit - (NETLBL_CATMAP_MAPSIZE * node_idx); |
| 556 | iter->bitmap[node_idx] |= NETLBL_CATMAP_BIT << node_bit; |
| 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | /** |
| 562 | * netlbl_secattr_catmap_setrng - Set a range of bits in a LSM secattr catmap |
| 563 | * @catmap: the category bitmap |
| 564 | * @start: the starting bit |
| 565 | * @end: the last bit in the string |
| 566 | * @flags: memory allocation flags |
| 567 | * |
| 568 | * Description: |
| 569 | * Set a range of bits, starting at @start and ending with @end. Returns zero |
| 570 | * on success, negative values on failure. |
| 571 | * |
| 572 | */ |
| 573 | int netlbl_secattr_catmap_setrng(struct netlbl_lsm_secattr_catmap *catmap, |
| 574 | u32 start, |
| 575 | u32 end, |
| 576 | gfp_t flags) |
| 577 | { |
| 578 | int ret_val = 0; |
| 579 | struct netlbl_lsm_secattr_catmap *iter = catmap; |
| 580 | u32 iter_max_spot; |
| 581 | u32 spot; |
| 582 | |
| 583 | /* XXX - This could probably be made a bit faster by combining writes |
| 584 | * to the catmap instead of setting a single bit each time, but for |
| 585 | * right now skipping to the start of the range in the catmap should |
| 586 | * be a nice improvement over calling the individual setbit function |
| 587 | * repeatedly from a loop. */ |
| 588 | |
| 589 | while (iter->next != NULL && |
| 590 | start >= (iter->startbit + NETLBL_CATMAP_SIZE)) |
| 591 | iter = iter->next; |
| 592 | iter_max_spot = iter->startbit + NETLBL_CATMAP_SIZE; |
| 593 | |
| 594 | for (spot = start; spot <= end && ret_val == 0; spot++) { |
| 595 | if (spot >= iter_max_spot && iter->next != NULL) { |
| 596 | iter = iter->next; |
| 597 | iter_max_spot = iter->startbit + NETLBL_CATMAP_SIZE; |
| 598 | } |
Dan Carpenter | 64b5fad | 2012-03-21 20:41:01 +0000 | [diff] [blame] | 599 | ret_val = netlbl_secattr_catmap_setbit(iter, spot, flags); |
Paul Moore | 0275276 | 2006-11-29 13:18:18 -0500 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | return ret_val; |
| 603 | } |
| 604 | |
| 605 | /* |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 606 | * LSM Functions |
| 607 | */ |
| 608 | |
| 609 | /** |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 610 | * netlbl_enabled - Determine if the NetLabel subsystem is enabled |
| 611 | * |
| 612 | * Description: |
| 613 | * The LSM can use this function to determine if it should use NetLabel |
| 614 | * security attributes in it's enforcement mechanism. Currently, NetLabel is |
| 615 | * considered to be enabled when it's configuration contains a valid setup for |
| 616 | * at least one labeled protocol (i.e. NetLabel can understand incoming |
| 617 | * labeled packets of at least one type); otherwise NetLabel is considered to |
| 618 | * be disabled. |
| 619 | * |
| 620 | */ |
| 621 | int netlbl_enabled(void) |
| 622 | { |
| 623 | /* At some point we probably want to expose this mechanism to the user |
| 624 | * as well so that admins can toggle NetLabel regardless of the |
| 625 | * configuration */ |
Paul Moore | c783f1c | 2008-01-29 08:37:52 -0500 | [diff] [blame] | 626 | return (atomic_read(&netlabel_mgmt_protocount) > 0); |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | /** |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 630 | * netlbl_sock_setattr - Label a socket using the correct protocol |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 631 | * @sk: the socket to label |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 632 | * @family: protocol family |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 633 | * @secattr: the security attributes |
| 634 | * |
| 635 | * Description: |
| 636 | * Attach the correct label to the given socket using the security attributes |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 637 | * specified in @secattr. This function requires exclusive access to @sk, |
| 638 | * 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] | 639 | * Returns zero on success, -EDESTADDRREQ if the domain is configured to use |
| 640 | * network address selectors (can't blindly label the socket), and negative |
| 641 | * values on all other failures. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 642 | * |
| 643 | */ |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 644 | int netlbl_sock_setattr(struct sock *sk, |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 645 | u16 family, |
Paul Moore | ba6ff9f | 2007-06-07 18:37:15 -0700 | [diff] [blame] | 646 | const struct netlbl_lsm_secattr *secattr) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 647 | { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 648 | int ret_val; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 649 | struct netlbl_dom_map *dom_entry; |
| 650 | |
| 651 | rcu_read_lock(); |
| 652 | dom_entry = netlbl_domhsh_getentry(secattr->domain); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 653 | if (dom_entry == NULL) { |
| 654 | ret_val = -ENOENT; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 655 | goto socket_setattr_return; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 656 | } |
| 657 | switch (family) { |
| 658 | case AF_INET: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 659 | switch (dom_entry->def.type) { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 660 | case NETLBL_NLTYPE_ADDRSELECT: |
| 661 | ret_val = -EDESTADDRREQ; |
| 662 | break; |
| 663 | case NETLBL_NLTYPE_CIPSOV4: |
| 664 | ret_val = cipso_v4_sock_setattr(sk, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 665 | dom_entry->def.cipso, |
| 666 | secattr); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 667 | break; |
| 668 | case NETLBL_NLTYPE_UNLABELED: |
| 669 | ret_val = 0; |
| 670 | break; |
| 671 | default: |
| 672 | ret_val = -ENOENT; |
| 673 | } |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 674 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 675 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 676 | case AF_INET6: |
| 677 | /* since we don't support any IPv6 labeling protocols right |
| 678 | * now we can optimize everything away until we do */ |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 679 | ret_val = 0; |
| 680 | break; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 681 | #endif /* IPv6 */ |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 682 | default: |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 683 | ret_val = -EPROTONOSUPPORT; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | socket_setattr_return: |
| 687 | rcu_read_unlock(); |
| 688 | return ret_val; |
| 689 | } |
| 690 | |
| 691 | /** |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 692 | * netlbl_sock_delattr - Delete all the NetLabel labels on a socket |
| 693 | * @sk: the socket |
| 694 | * |
| 695 | * Description: |
| 696 | * Remove all the NetLabel labeling from @sk. The caller is responsible for |
| 697 | * ensuring that @sk is locked. |
| 698 | * |
| 699 | */ |
| 700 | void netlbl_sock_delattr(struct sock *sk) |
| 701 | { |
| 702 | cipso_v4_sock_delattr(sk); |
| 703 | } |
| 704 | |
| 705 | /** |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 706 | * netlbl_sock_getattr - Determine the security attributes of a sock |
| 707 | * @sk: the sock |
| 708 | * @secattr: the security attributes |
| 709 | * |
| 710 | * Description: |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 711 | * 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] | 712 | * applied to the sock, if so it parses the socket label and returns the |
| 713 | * security attributes in @secattr. Returns zero on success, negative values |
| 714 | * on failure. |
| 715 | * |
| 716 | */ |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 717 | int netlbl_sock_getattr(struct sock *sk, |
| 718 | struct netlbl_lsm_secattr *secattr) |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 719 | { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 720 | int ret_val; |
| 721 | |
| 722 | switch (sk->sk_family) { |
| 723 | case AF_INET: |
| 724 | ret_val = cipso_v4_sock_getattr(sk, secattr); |
| 725 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 726 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 727 | case AF_INET6: |
| 728 | ret_val = -ENOMSG; |
| 729 | break; |
| 730 | #endif /* IPv6 */ |
| 731 | default: |
| 732 | ret_val = -EPROTONOSUPPORT; |
| 733 | } |
| 734 | |
| 735 | return ret_val; |
Paul Moore | 14a72f5 | 2006-09-25 15:52:01 -0700 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | /** |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 739 | * netlbl_conn_setattr - Label a connected socket using the correct protocol |
| 740 | * @sk: the socket to label |
| 741 | * @addr: the destination address |
| 742 | * @secattr: the security attributes |
| 743 | * |
| 744 | * Description: |
| 745 | * Attach the correct label to the given connected socket using the security |
| 746 | * attributes specified in @secattr. The caller is responsible for ensuring |
| 747 | * that @sk is locked. Returns zero on success, negative values on failure. |
| 748 | * |
| 749 | */ |
| 750 | int netlbl_conn_setattr(struct sock *sk, |
| 751 | struct sockaddr *addr, |
| 752 | const struct netlbl_lsm_secattr *secattr) |
| 753 | { |
| 754 | int ret_val; |
| 755 | struct sockaddr_in *addr4; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 756 | struct netlbl_dommap_def *entry; |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 757 | |
| 758 | rcu_read_lock(); |
| 759 | switch (addr->sa_family) { |
| 760 | case AF_INET: |
| 761 | addr4 = (struct sockaddr_in *)addr; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 762 | entry = netlbl_domhsh_getentry_af4(secattr->domain, |
| 763 | addr4->sin_addr.s_addr); |
| 764 | if (entry == NULL) { |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 765 | ret_val = -ENOENT; |
| 766 | goto conn_setattr_return; |
| 767 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 768 | switch (entry->type) { |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 769 | case NETLBL_NLTYPE_CIPSOV4: |
| 770 | ret_val = cipso_v4_sock_setattr(sk, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 771 | entry->cipso, secattr); |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 772 | break; |
| 773 | case NETLBL_NLTYPE_UNLABELED: |
| 774 | /* just delete the protocols we support for right now |
| 775 | * but we could remove other protocols if needed */ |
| 776 | cipso_v4_sock_delattr(sk); |
| 777 | ret_val = 0; |
| 778 | break; |
| 779 | default: |
| 780 | ret_val = -ENOENT; |
| 781 | } |
| 782 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 783 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 784 | case AF_INET6: |
| 785 | /* since we don't support any IPv6 labeling protocols right |
| 786 | * now we can optimize everything away until we do */ |
| 787 | ret_val = 0; |
| 788 | break; |
| 789 | #endif /* IPv6 */ |
| 790 | default: |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 791 | ret_val = -EPROTONOSUPPORT; |
Paul Moore | 014ab19 | 2008-10-10 10:16:33 -0400 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | conn_setattr_return: |
| 795 | rcu_read_unlock(); |
| 796 | return ret_val; |
| 797 | } |
| 798 | |
| 799 | /** |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 800 | * netlbl_req_setattr - Label a request socket using the correct protocol |
| 801 | * @req: the request socket to label |
| 802 | * @secattr: the security attributes |
| 803 | * |
| 804 | * Description: |
| 805 | * Attach the correct label to the given socket using the security attributes |
| 806 | * specified in @secattr. Returns zero on success, negative values on failure. |
| 807 | * |
| 808 | */ |
| 809 | int netlbl_req_setattr(struct request_sock *req, |
| 810 | const struct netlbl_lsm_secattr *secattr) |
| 811 | { |
| 812 | int ret_val; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 813 | struct netlbl_dommap_def *entry; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 814 | |
| 815 | rcu_read_lock(); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 816 | switch (req->rsk_ops->family) { |
| 817 | case AF_INET: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 818 | entry = netlbl_domhsh_getentry_af4(secattr->domain, |
Eric Dumazet | 634fb979 | 2013-10-09 15:21:29 -0700 | [diff] [blame] | 819 | inet_rsk(req)->ir_rmt_addr); |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 820 | if (entry == NULL) { |
| 821 | ret_val = -ENOENT; |
| 822 | goto req_setattr_return; |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 823 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 824 | switch (entry->type) { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 825 | case NETLBL_NLTYPE_CIPSOV4: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 826 | ret_val = cipso_v4_req_setattr(req, |
| 827 | entry->cipso, secattr); |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 828 | break; |
| 829 | case NETLBL_NLTYPE_UNLABELED: |
| 830 | /* just delete the protocols we support for right now |
| 831 | * but we could remove other protocols if needed */ |
| 832 | cipso_v4_req_delattr(req); |
| 833 | ret_val = 0; |
| 834 | break; |
| 835 | default: |
| 836 | ret_val = -ENOENT; |
| 837 | } |
| 838 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 839 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 840 | case AF_INET6: |
| 841 | /* since we don't support any IPv6 labeling protocols right |
| 842 | * now we can optimize everything away until we do */ |
| 843 | ret_val = 0; |
| 844 | break; |
| 845 | #endif /* IPv6 */ |
| 846 | default: |
| 847 | ret_val = -EPROTONOSUPPORT; |
| 848 | } |
| 849 | |
| 850 | req_setattr_return: |
| 851 | rcu_read_unlock(); |
| 852 | return ret_val; |
| 853 | } |
| 854 | |
| 855 | /** |
Paul Moore | 07feee8 | 2009-03-27 17:10:54 -0400 | [diff] [blame] | 856 | * netlbl_req_delattr - Delete all the NetLabel labels on a socket |
| 857 | * @req: the socket |
| 858 | * |
| 859 | * Description: |
| 860 | * Remove all the NetLabel labeling from @req. |
| 861 | * |
| 862 | */ |
| 863 | void netlbl_req_delattr(struct request_sock *req) |
| 864 | { |
| 865 | cipso_v4_req_delattr(req); |
| 866 | } |
| 867 | |
| 868 | /** |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 869 | * netlbl_skbuff_setattr - Label a packet using the correct protocol |
| 870 | * @skb: the packet |
| 871 | * @family: protocol family |
| 872 | * @secattr: the security attributes |
| 873 | * |
| 874 | * Description: |
| 875 | * Attach the correct label to the given packet using the security attributes |
| 876 | * specified in @secattr. Returns zero on success, negative values on failure. |
| 877 | * |
| 878 | */ |
| 879 | int netlbl_skbuff_setattr(struct sk_buff *skb, |
| 880 | u16 family, |
| 881 | const struct netlbl_lsm_secattr *secattr) |
| 882 | { |
| 883 | int ret_val; |
| 884 | struct iphdr *hdr4; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 885 | struct netlbl_dommap_def *entry; |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 886 | |
| 887 | rcu_read_lock(); |
| 888 | switch (family) { |
| 889 | case AF_INET: |
| 890 | hdr4 = ip_hdr(skb); |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 891 | entry = netlbl_domhsh_getentry_af4(secattr->domain,hdr4->daddr); |
| 892 | if (entry == NULL) { |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 893 | ret_val = -ENOENT; |
| 894 | goto skbuff_setattr_return; |
| 895 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 896 | switch (entry->type) { |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 897 | case NETLBL_NLTYPE_CIPSOV4: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 898 | ret_val = cipso_v4_skbuff_setattr(skb, entry->cipso, |
| 899 | secattr); |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 900 | break; |
| 901 | case NETLBL_NLTYPE_UNLABELED: |
| 902 | /* just delete the protocols we support for right now |
| 903 | * but we could remove other protocols if needed */ |
| 904 | ret_val = cipso_v4_skbuff_delattr(skb); |
| 905 | break; |
| 906 | default: |
| 907 | ret_val = -ENOENT; |
| 908 | } |
| 909 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 910 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 911 | case AF_INET6: |
| 912 | /* since we don't support any IPv6 labeling protocols right |
| 913 | * now we can optimize everything away until we do */ |
| 914 | ret_val = 0; |
| 915 | break; |
| 916 | #endif /* IPv6 */ |
| 917 | default: |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 918 | ret_val = -EPROTONOSUPPORT; |
Paul Moore | 948bf85 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | skbuff_setattr_return: |
| 922 | rcu_read_unlock(); |
| 923 | return ret_val; |
| 924 | } |
| 925 | |
| 926 | /** |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 927 | * netlbl_skbuff_getattr - Determine the security attributes of a packet |
| 928 | * @skb: the packet |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 929 | * @family: protocol family |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 930 | * @secattr: the security attributes |
| 931 | * |
| 932 | * Description: |
| 933 | * Examines the given packet to see if a recognized form of packet labeling |
| 934 | * is present, if so it parses the packet label and returns the security |
| 935 | * attributes in @secattr. Returns zero on success, negative values on |
| 936 | * failure. |
| 937 | * |
| 938 | */ |
| 939 | int netlbl_skbuff_getattr(const struct sk_buff *skb, |
Paul Moore | 75e2291 | 2008-01-29 08:38:04 -0500 | [diff] [blame] | 940 | u16 family, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 941 | struct netlbl_lsm_secattr *secattr) |
| 942 | { |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 943 | switch (family) { |
| 944 | case AF_INET: |
| 945 | if (CIPSO_V4_OPTEXIST(skb) && |
| 946 | cipso_v4_skbuff_getattr(skb, secattr) == 0) |
| 947 | return 0; |
| 948 | break; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 949 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 389fb800 | 2009-03-27 17:10:34 -0400 | [diff] [blame] | 950 | case AF_INET6: |
| 951 | break; |
| 952 | #endif /* IPv6 */ |
| 953 | } |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 954 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 955 | return netlbl_unlabel_getattr(skb, family, secattr); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | /** |
| 959 | * netlbl_skbuff_err - Handle a LSM error on a sk_buff |
| 960 | * @skb: the packet |
| 961 | * @error: the error code |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 962 | * @gateway: true if host is acting as a gateway, false otherwise |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 963 | * |
| 964 | * Description: |
| 965 | * Deal with a LSM problem when handling the packet in @skb, typically this is |
| 966 | * a permission denied problem (-EACCES). The correct action is determined |
| 967 | * according to the packet's labeling protocol. |
| 968 | * |
| 969 | */ |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 970 | void netlbl_skbuff_err(struct sk_buff *skb, int error, int gateway) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 971 | { |
| 972 | if (CIPSO_V4_OPTEXIST(skb)) |
Paul Moore | dfaebe9 | 2008-10-10 10:16:31 -0400 | [diff] [blame] | 973 | cipso_v4_error(skb, error, gateway); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | /** |
| 977 | * netlbl_cache_invalidate - Invalidate all of the NetLabel protocol caches |
| 978 | * |
| 979 | * Description: |
| 980 | * For all of the NetLabel protocols that support some form of label mapping |
| 981 | * cache, invalidate the cache. Returns zero on success, negative values on |
| 982 | * error. |
| 983 | * |
| 984 | */ |
| 985 | void netlbl_cache_invalidate(void) |
| 986 | { |
| 987 | cipso_v4_cache_invalidate(); |
| 988 | } |
| 989 | |
| 990 | /** |
| 991 | * netlbl_cache_add - Add an entry to a NetLabel protocol cache |
| 992 | * @skb: the packet |
| 993 | * @secattr: the packet's security attributes |
| 994 | * |
| 995 | * Description: |
| 996 | * Add the LSM security attributes for the given packet to the underlying |
| 997 | * NetLabel protocol's label mapping cache. Returns zero on success, negative |
| 998 | * values on error. |
| 999 | * |
| 1000 | */ |
| 1001 | int netlbl_cache_add(const struct sk_buff *skb, |
| 1002 | const struct netlbl_lsm_secattr *secattr) |
| 1003 | { |
Paul Moore | 701a90b | 2006-11-17 17:38:46 -0500 | [diff] [blame] | 1004 | if ((secattr->flags & NETLBL_SECATTR_CACHE) == 0) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1005 | return -ENOMSG; |
| 1006 | |
| 1007 | if (CIPSO_V4_OPTEXIST(skb)) |
| 1008 | return cipso_v4_cache_add(skb, secattr); |
| 1009 | |
| 1010 | return -ENOMSG; |
| 1011 | } |
| 1012 | |
| 1013 | /* |
Paul Moore | 6c2e8ac | 2008-12-31 12:54:11 -0500 | [diff] [blame] | 1014 | * Protocol Engine Functions |
| 1015 | */ |
| 1016 | |
| 1017 | /** |
| 1018 | * netlbl_audit_start - Start an audit message |
| 1019 | * @type: audit message type |
| 1020 | * @audit_info: NetLabel audit information |
| 1021 | * |
| 1022 | * Description: |
| 1023 | * Start an audit message using the type specified in @type and fill the audit |
| 1024 | * message with some fields common to all NetLabel audit messages. This |
| 1025 | * function should only be used by protocol engines, not LSMs. Returns a |
| 1026 | * pointer to the audit buffer on success, NULL on failure. |
| 1027 | * |
| 1028 | */ |
| 1029 | struct audit_buffer *netlbl_audit_start(int type, |
| 1030 | struct netlbl_audit *audit_info) |
| 1031 | { |
| 1032 | return netlbl_audit_start_common(type, audit_info); |
| 1033 | } |
| 1034 | |
| 1035 | /* |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1036 | * Setup Functions |
| 1037 | */ |
| 1038 | |
| 1039 | /** |
| 1040 | * netlbl_init - Initialize NetLabel |
| 1041 | * |
| 1042 | * Description: |
| 1043 | * Perform the required NetLabel initialization before first use. |
| 1044 | * |
| 1045 | */ |
| 1046 | static int __init netlbl_init(void) |
| 1047 | { |
| 1048 | int ret_val; |
| 1049 | |
| 1050 | printk(KERN_INFO "NetLabel: Initializing\n"); |
| 1051 | printk(KERN_INFO "NetLabel: domain hash size = %u\n", |
| 1052 | (1 << NETLBL_DOMHSH_BITSIZE)); |
| 1053 | printk(KERN_INFO "NetLabel: protocols =" |
| 1054 | " UNLABELED" |
| 1055 | " CIPSOv4" |
| 1056 | "\n"); |
| 1057 | |
| 1058 | ret_val = netlbl_domhsh_init(NETLBL_DOMHSH_BITSIZE); |
| 1059 | if (ret_val != 0) |
| 1060 | goto init_failure; |
| 1061 | |
Paul Moore | 8cc4457 | 2008-01-29 08:44:21 -0500 | [diff] [blame] | 1062 | ret_val = netlbl_unlabel_init(NETLBL_UNLHSH_BITSIZE); |
| 1063 | if (ret_val != 0) |
| 1064 | goto init_failure; |
| 1065 | |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1066 | ret_val = netlbl_netlink_init(); |
| 1067 | if (ret_val != 0) |
| 1068 | goto init_failure; |
| 1069 | |
| 1070 | ret_val = netlbl_unlabel_defconf(); |
| 1071 | if (ret_val != 0) |
| 1072 | goto init_failure; |
| 1073 | printk(KERN_INFO "NetLabel: unlabeled traffic allowed by default\n"); |
| 1074 | |
| 1075 | return 0; |
| 1076 | |
| 1077 | init_failure: |
| 1078 | panic("NetLabel: failed to initialize properly (%d)\n", ret_val); |
| 1079 | } |
| 1080 | |
| 1081 | subsys_initcall(netlbl_init); |