Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 1 | /* |
| 2 | * NetLabel Management Support |
| 3 | * |
| 4 | * This file defines the management functions for the NetLabel system. The |
| 5 | * NetLabel system manages static and dynamic label mappings for network |
| 6 | * protocols such 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 | 63c4168 | 2008-10-10 10:16:32 -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 |
| 26 | * along with this program; if not, write to the Free Software |
| 27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 28 | * |
| 29 | */ |
| 30 | |
| 31 | #include <linux/types.h> |
| 32 | #include <linux/socket.h> |
| 33 | #include <linux/string.h> |
| 34 | #include <linux/skbuff.h> |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 35 | #include <linux/in.h> |
| 36 | #include <linux/in6.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 37 | #include <linux/slab.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 38 | #include <net/sock.h> |
| 39 | #include <net/netlink.h> |
| 40 | #include <net/genetlink.h> |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 41 | #include <net/ip.h> |
| 42 | #include <net/ipv6.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 43 | #include <net/netlabel.h> |
| 44 | #include <net/cipso_ipv4.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 45 | #include <linux/atomic.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 46 | |
| 47 | #include "netlabel_domainhash.h" |
| 48 | #include "netlabel_user.h" |
| 49 | #include "netlabel_mgmt.h" |
| 50 | |
Paul Moore | c783f1c | 2008-01-29 08:37:52 -0500 | [diff] [blame] | 51 | /* NetLabel configured protocol counter */ |
| 52 | atomic_t netlabel_mgmt_protocount = ATOMIC_INIT(0); |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 53 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 54 | /* Argument struct for netlbl_domhsh_walk() */ |
| 55 | struct netlbl_domhsh_walk_arg { |
| 56 | struct netlink_callback *nl_cb; |
| 57 | struct sk_buff *skb; |
| 58 | u32 seq; |
| 59 | }; |
| 60 | |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 61 | /* NetLabel Generic NETLINK CIPSOv4 family */ |
| 62 | static struct genl_family netlbl_mgmt_gnl_family = { |
| 63 | .id = GENL_ID_GENERATE, |
| 64 | .hdrsize = 0, |
| 65 | .name = NETLBL_NLTYPE_MGMT_NAME, |
| 66 | .version = NETLBL_PROTO_VERSION, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 67 | .maxattr = NLBL_MGMT_A_MAX, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 70 | /* NetLabel Netlink attribute policy */ |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 71 | static const struct nla_policy netlbl_mgmt_genl_policy[NLBL_MGMT_A_MAX + 1] = { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 72 | [NLBL_MGMT_A_DOMAIN] = { .type = NLA_NUL_STRING }, |
| 73 | [NLBL_MGMT_A_PROTOCOL] = { .type = NLA_U32 }, |
| 74 | [NLBL_MGMT_A_VERSION] = { .type = NLA_U32 }, |
| 75 | [NLBL_MGMT_A_CV4DOI] = { .type = NLA_U32 }, |
| 76 | }; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 77 | |
| 78 | /* |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 79 | * Helper Functions |
| 80 | */ |
| 81 | |
| 82 | /** |
| 83 | * netlbl_mgmt_add - Handle an ADD message |
| 84 | * @info: the Generic NETLINK info block |
| 85 | * @audit_info: NetLabel audit information |
| 86 | * |
| 87 | * Description: |
| 88 | * Helper function for the ADD and ADDDEF messages to add the domain mappings |
| 89 | * from the message to the hash table. See netlabel.h for a description of the |
| 90 | * message format. Returns zero on success, negative values on failure. |
| 91 | * |
| 92 | */ |
| 93 | static int netlbl_mgmt_add_common(struct genl_info *info, |
| 94 | struct netlbl_audit *audit_info) |
| 95 | { |
| 96 | int ret_val = -EINVAL; |
| 97 | struct netlbl_dom_map *entry = NULL; |
| 98 | struct netlbl_domaddr_map *addrmap = NULL; |
| 99 | struct cipso_v4_doi *cipsov4 = NULL; |
| 100 | u32 tmp_val; |
| 101 | |
| 102 | entry = kzalloc(sizeof(*entry), GFP_KERNEL); |
| 103 | if (entry == NULL) { |
| 104 | ret_val = -ENOMEM; |
| 105 | goto add_failure; |
| 106 | } |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 107 | entry->def.type = nla_get_u32(info->attrs[NLBL_MGMT_A_PROTOCOL]); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 108 | if (info->attrs[NLBL_MGMT_A_DOMAIN]) { |
| 109 | size_t tmp_size = nla_len(info->attrs[NLBL_MGMT_A_DOMAIN]); |
| 110 | entry->domain = kmalloc(tmp_size, GFP_KERNEL); |
| 111 | if (entry->domain == NULL) { |
| 112 | ret_val = -ENOMEM; |
| 113 | goto add_failure; |
| 114 | } |
| 115 | nla_strlcpy(entry->domain, |
| 116 | info->attrs[NLBL_MGMT_A_DOMAIN], tmp_size); |
| 117 | } |
| 118 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 119 | /* NOTE: internally we allow/use a entry->def.type value of |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 120 | * NETLBL_NLTYPE_ADDRSELECT but we don't currently allow users |
| 121 | * to pass that as a protocol value because we need to know the |
| 122 | * "real" protocol */ |
| 123 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 124 | switch (entry->def.type) { |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 125 | case NETLBL_NLTYPE_UNLABELED: |
| 126 | break; |
| 127 | case NETLBL_NLTYPE_CIPSOV4: |
| 128 | if (!info->attrs[NLBL_MGMT_A_CV4DOI]) |
| 129 | goto add_failure; |
| 130 | |
| 131 | tmp_val = nla_get_u32(info->attrs[NLBL_MGMT_A_CV4DOI]); |
| 132 | cipsov4 = cipso_v4_doi_getdef(tmp_val); |
| 133 | if (cipsov4 == NULL) |
| 134 | goto add_failure; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 135 | entry->def.cipso = cipsov4; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 136 | break; |
| 137 | default: |
| 138 | goto add_failure; |
| 139 | } |
| 140 | |
| 141 | if (info->attrs[NLBL_MGMT_A_IPV4ADDR]) { |
| 142 | struct in_addr *addr; |
| 143 | struct in_addr *mask; |
| 144 | struct netlbl_domaddr4_map *map; |
| 145 | |
| 146 | addrmap = kzalloc(sizeof(*addrmap), GFP_KERNEL); |
| 147 | if (addrmap == NULL) { |
| 148 | ret_val = -ENOMEM; |
| 149 | goto add_failure; |
| 150 | } |
| 151 | INIT_LIST_HEAD(&addrmap->list4); |
| 152 | INIT_LIST_HEAD(&addrmap->list6); |
| 153 | |
| 154 | if (nla_len(info->attrs[NLBL_MGMT_A_IPV4ADDR]) != |
| 155 | sizeof(struct in_addr)) { |
| 156 | ret_val = -EINVAL; |
| 157 | goto add_failure; |
| 158 | } |
| 159 | if (nla_len(info->attrs[NLBL_MGMT_A_IPV4MASK]) != |
| 160 | sizeof(struct in_addr)) { |
| 161 | ret_val = -EINVAL; |
| 162 | goto add_failure; |
| 163 | } |
| 164 | addr = nla_data(info->attrs[NLBL_MGMT_A_IPV4ADDR]); |
| 165 | mask = nla_data(info->attrs[NLBL_MGMT_A_IPV4MASK]); |
| 166 | |
| 167 | map = kzalloc(sizeof(*map), GFP_KERNEL); |
| 168 | if (map == NULL) { |
| 169 | ret_val = -ENOMEM; |
| 170 | goto add_failure; |
| 171 | } |
| 172 | map->list.addr = addr->s_addr & mask->s_addr; |
| 173 | map->list.mask = mask->s_addr; |
| 174 | map->list.valid = 1; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 175 | map->def.type = entry->def.type; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 176 | if (cipsov4) |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 177 | map->def.cipso = cipsov4; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 178 | |
| 179 | ret_val = netlbl_af4list_add(&map->list, &addrmap->list4); |
| 180 | if (ret_val != 0) { |
| 181 | kfree(map); |
| 182 | goto add_failure; |
| 183 | } |
| 184 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 185 | entry->def.type = NETLBL_NLTYPE_ADDRSELECT; |
| 186 | entry->def.addrsel = addrmap; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 187 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 188 | } else if (info->attrs[NLBL_MGMT_A_IPV6ADDR]) { |
| 189 | struct in6_addr *addr; |
| 190 | struct in6_addr *mask; |
| 191 | struct netlbl_domaddr6_map *map; |
| 192 | |
| 193 | addrmap = kzalloc(sizeof(*addrmap), GFP_KERNEL); |
| 194 | if (addrmap == NULL) { |
| 195 | ret_val = -ENOMEM; |
| 196 | goto add_failure; |
| 197 | } |
| 198 | INIT_LIST_HEAD(&addrmap->list4); |
| 199 | INIT_LIST_HEAD(&addrmap->list6); |
| 200 | |
| 201 | if (nla_len(info->attrs[NLBL_MGMT_A_IPV6ADDR]) != |
| 202 | sizeof(struct in6_addr)) { |
| 203 | ret_val = -EINVAL; |
| 204 | goto add_failure; |
| 205 | } |
| 206 | if (nla_len(info->attrs[NLBL_MGMT_A_IPV6MASK]) != |
| 207 | sizeof(struct in6_addr)) { |
| 208 | ret_val = -EINVAL; |
| 209 | goto add_failure; |
| 210 | } |
| 211 | addr = nla_data(info->attrs[NLBL_MGMT_A_IPV6ADDR]); |
| 212 | mask = nla_data(info->attrs[NLBL_MGMT_A_IPV6MASK]); |
| 213 | |
| 214 | map = kzalloc(sizeof(*map), GFP_KERNEL); |
| 215 | if (map == NULL) { |
| 216 | ret_val = -ENOMEM; |
| 217 | goto add_failure; |
| 218 | } |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 219 | map->list.addr = *addr; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 220 | map->list.addr.s6_addr32[0] &= mask->s6_addr32[0]; |
| 221 | map->list.addr.s6_addr32[1] &= mask->s6_addr32[1]; |
| 222 | map->list.addr.s6_addr32[2] &= mask->s6_addr32[2]; |
| 223 | map->list.addr.s6_addr32[3] &= mask->s6_addr32[3]; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 224 | map->list.mask = *mask; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 225 | map->list.valid = 1; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 226 | map->def.type = entry->def.type; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 227 | |
| 228 | ret_val = netlbl_af6list_add(&map->list, &addrmap->list6); |
| 229 | if (ret_val != 0) { |
| 230 | kfree(map); |
| 231 | goto add_failure; |
| 232 | } |
| 233 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 234 | entry->def.type = NETLBL_NLTYPE_ADDRSELECT; |
| 235 | entry->def.addrsel = addrmap; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 236 | #endif /* IPv6 */ |
| 237 | } |
| 238 | |
| 239 | ret_val = netlbl_domhsh_add(entry, audit_info); |
| 240 | if (ret_val != 0) |
| 241 | goto add_failure; |
| 242 | |
| 243 | return 0; |
| 244 | |
| 245 | add_failure: |
| 246 | if (cipsov4) |
| 247 | cipso_v4_doi_putdef(cipsov4); |
| 248 | if (entry) |
| 249 | kfree(entry->domain); |
| 250 | kfree(addrmap); |
| 251 | kfree(entry); |
| 252 | return ret_val; |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * netlbl_mgmt_listentry - List a NetLabel/LSM domain map entry |
| 257 | * @skb: the NETLINK buffer |
| 258 | * @entry: the map entry |
| 259 | * |
| 260 | * Description: |
| 261 | * This function is a helper function used by the LISTALL and LISTDEF command |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 262 | * handlers. The caller is responsible for ensuring that the RCU read lock |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 263 | * is held. Returns zero on success, negative values on failure. |
| 264 | * |
| 265 | */ |
| 266 | static int netlbl_mgmt_listentry(struct sk_buff *skb, |
| 267 | struct netlbl_dom_map *entry) |
| 268 | { |
Paul Moore | f8a0247 | 2008-10-29 16:09:12 -0400 | [diff] [blame] | 269 | int ret_val = 0; |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 270 | struct nlattr *nla_a; |
| 271 | struct nlattr *nla_b; |
| 272 | struct netlbl_af4list *iter4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 273 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 274 | struct netlbl_af6list *iter6; |
| 275 | #endif |
| 276 | |
| 277 | if (entry->domain != NULL) { |
| 278 | ret_val = nla_put_string(skb, |
| 279 | NLBL_MGMT_A_DOMAIN, entry->domain); |
| 280 | if (ret_val != 0) |
| 281 | return ret_val; |
| 282 | } |
| 283 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 284 | switch (entry->def.type) { |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 285 | case NETLBL_NLTYPE_ADDRSELECT: |
| 286 | nla_a = nla_nest_start(skb, NLBL_MGMT_A_SELECTORLIST); |
| 287 | if (nla_a == NULL) |
| 288 | return -ENOMEM; |
| 289 | |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 290 | netlbl_af4list_foreach_rcu(iter4, &entry->def.addrsel->list4) { |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 291 | struct netlbl_domaddr4_map *map4; |
| 292 | struct in_addr addr_struct; |
| 293 | |
| 294 | nla_b = nla_nest_start(skb, NLBL_MGMT_A_ADDRSELECTOR); |
| 295 | if (nla_b == NULL) |
| 296 | return -ENOMEM; |
| 297 | |
| 298 | addr_struct.s_addr = iter4->addr; |
| 299 | ret_val = nla_put(skb, NLBL_MGMT_A_IPV4ADDR, |
| 300 | sizeof(struct in_addr), |
| 301 | &addr_struct); |
| 302 | if (ret_val != 0) |
| 303 | return ret_val; |
| 304 | addr_struct.s_addr = iter4->mask; |
| 305 | ret_val = nla_put(skb, NLBL_MGMT_A_IPV4MASK, |
| 306 | sizeof(struct in_addr), |
| 307 | &addr_struct); |
| 308 | if (ret_val != 0) |
| 309 | return ret_val; |
| 310 | map4 = netlbl_domhsh_addr4_entry(iter4); |
| 311 | ret_val = nla_put_u32(skb, NLBL_MGMT_A_PROTOCOL, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 312 | map4->def.type); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 313 | if (ret_val != 0) |
| 314 | return ret_val; |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 315 | switch (map4->def.type) { |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 316 | case NETLBL_NLTYPE_CIPSOV4: |
| 317 | ret_val = nla_put_u32(skb, NLBL_MGMT_A_CV4DOI, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 318 | map4->def.cipso->doi); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 319 | if (ret_val != 0) |
| 320 | return ret_val; |
| 321 | break; |
| 322 | } |
| 323 | |
| 324 | nla_nest_end(skb, nla_b); |
| 325 | } |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 326 | #if IS_ENABLED(CONFIG_IPV6) |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 327 | netlbl_af6list_foreach_rcu(iter6, &entry->def.addrsel->list6) { |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 328 | struct netlbl_domaddr6_map *map6; |
| 329 | |
| 330 | nla_b = nla_nest_start(skb, NLBL_MGMT_A_ADDRSELECTOR); |
| 331 | if (nla_b == NULL) |
| 332 | return -ENOMEM; |
| 333 | |
| 334 | ret_val = nla_put(skb, NLBL_MGMT_A_IPV6ADDR, |
| 335 | sizeof(struct in6_addr), |
| 336 | &iter6->addr); |
| 337 | if (ret_val != 0) |
| 338 | return ret_val; |
| 339 | ret_val = nla_put(skb, NLBL_MGMT_A_IPV6MASK, |
| 340 | sizeof(struct in6_addr), |
| 341 | &iter6->mask); |
| 342 | if (ret_val != 0) |
| 343 | return ret_val; |
| 344 | map6 = netlbl_domhsh_addr6_entry(iter6); |
| 345 | ret_val = nla_put_u32(skb, NLBL_MGMT_A_PROTOCOL, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 346 | map6->def.type); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 347 | if (ret_val != 0) |
| 348 | return ret_val; |
| 349 | |
| 350 | nla_nest_end(skb, nla_b); |
| 351 | } |
| 352 | #endif /* IPv6 */ |
| 353 | |
| 354 | nla_nest_end(skb, nla_a); |
| 355 | break; |
| 356 | case NETLBL_NLTYPE_UNLABELED: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 357 | ret_val = nla_put_u32(skb,NLBL_MGMT_A_PROTOCOL,entry->def.type); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 358 | break; |
| 359 | case NETLBL_NLTYPE_CIPSOV4: |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 360 | ret_val = nla_put_u32(skb,NLBL_MGMT_A_PROTOCOL,entry->def.type); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 361 | if (ret_val != 0) |
| 362 | return ret_val; |
| 363 | ret_val = nla_put_u32(skb, NLBL_MGMT_A_CV4DOI, |
Paul Moore | 6a8b7f0 | 2013-08-02 14:45:08 -0400 | [diff] [blame] | 364 | entry->def.cipso->doi); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 365 | break; |
| 366 | } |
| 367 | |
| 368 | return ret_val; |
| 369 | } |
| 370 | |
| 371 | /* |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 372 | * NetLabel Command Handlers |
| 373 | */ |
| 374 | |
| 375 | /** |
| 376 | * netlbl_mgmt_add - Handle an ADD message |
| 377 | * @skb: the NETLINK buffer |
| 378 | * @info: the Generic NETLINK info block |
| 379 | * |
| 380 | * Description: |
| 381 | * Process a user generated ADD message and add the domains from the message |
| 382 | * to the hash table. See netlabel.h for a description of the message format. |
| 383 | * Returns zero on success, negative values on failure. |
| 384 | * |
| 385 | */ |
| 386 | static int netlbl_mgmt_add(struct sk_buff *skb, struct genl_info *info) |
| 387 | { |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 388 | struct netlbl_audit audit_info; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 389 | |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 390 | if ((!info->attrs[NLBL_MGMT_A_DOMAIN]) || |
| 391 | (!info->attrs[NLBL_MGMT_A_PROTOCOL]) || |
| 392 | (info->attrs[NLBL_MGMT_A_IPV4ADDR] && |
| 393 | info->attrs[NLBL_MGMT_A_IPV6ADDR]) || |
| 394 | (info->attrs[NLBL_MGMT_A_IPV4MASK] && |
| 395 | info->attrs[NLBL_MGMT_A_IPV6MASK]) || |
| 396 | ((info->attrs[NLBL_MGMT_A_IPV4ADDR] != NULL) ^ |
| 397 | (info->attrs[NLBL_MGMT_A_IPV4MASK] != NULL)) || |
| 398 | ((info->attrs[NLBL_MGMT_A_IPV6ADDR] != NULL) ^ |
| 399 | (info->attrs[NLBL_MGMT_A_IPV6MASK] != NULL))) |
| 400 | return -EINVAL; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 401 | |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 402 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 403 | |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 404 | return netlbl_mgmt_add_common(info, &audit_info); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | /** |
| 408 | * netlbl_mgmt_remove - Handle a REMOVE message |
| 409 | * @skb: the NETLINK buffer |
| 410 | * @info: the Generic NETLINK info block |
| 411 | * |
| 412 | * Description: |
| 413 | * Process a user generated REMOVE message and remove the specified domain |
| 414 | * mappings. Returns zero on success, negative values on failure. |
| 415 | * |
| 416 | */ |
| 417 | static int netlbl_mgmt_remove(struct sk_buff *skb, struct genl_info *info) |
| 418 | { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 419 | char *domain; |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 420 | struct netlbl_audit audit_info; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 421 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 422 | if (!info->attrs[NLBL_MGMT_A_DOMAIN]) |
| 423 | return -EINVAL; |
| 424 | |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 425 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 426 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 427 | domain = nla_data(info->attrs[NLBL_MGMT_A_DOMAIN]); |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 428 | return netlbl_domhsh_remove(domain, &audit_info); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | /** |
| 432 | * netlbl_mgmt_listall_cb - netlbl_domhsh_walk() callback for LISTALL |
| 433 | * @entry: the domain mapping hash table entry |
| 434 | * @arg: the netlbl_domhsh_walk_arg structure |
| 435 | * |
| 436 | * Description: |
| 437 | * This function is designed to be used as a callback to the |
| 438 | * netlbl_domhsh_walk() function for use in generating a response for a LISTALL |
| 439 | * message. Returns the size of the message on success, negative values on |
| 440 | * failure. |
| 441 | * |
| 442 | */ |
| 443 | static int netlbl_mgmt_listall_cb(struct netlbl_dom_map *entry, void *arg) |
| 444 | { |
| 445 | int ret_val = -ENOMEM; |
| 446 | struct netlbl_domhsh_walk_arg *cb_arg = arg; |
| 447 | void *data; |
| 448 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 449 | data = genlmsg_put(cb_arg->skb, NETLINK_CB(cb_arg->nl_cb->skb).portid, |
Thomas Graf | 17c157c | 2006-11-14 19:46:02 -0800 | [diff] [blame] | 450 | cb_arg->seq, &netlbl_mgmt_gnl_family, |
| 451 | NLM_F_MULTI, NLBL_MGMT_C_LISTALL); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 452 | if (data == NULL) |
| 453 | goto listall_cb_failure; |
| 454 | |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 455 | ret_val = netlbl_mgmt_listentry(cb_arg->skb, entry); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 456 | if (ret_val != 0) |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 457 | goto listall_cb_failure; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 458 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 459 | cb_arg->seq++; |
| 460 | return genlmsg_end(cb_arg->skb, data); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 461 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 462 | listall_cb_failure: |
| 463 | genlmsg_cancel(cb_arg->skb, data); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 464 | return ret_val; |
| 465 | } |
| 466 | |
| 467 | /** |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 468 | * netlbl_mgmt_listall - Handle a LISTALL message |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 469 | * @skb: the NETLINK buffer |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 470 | * @cb: the NETLINK callback |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 471 | * |
| 472 | * Description: |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 473 | * Process a user generated LISTALL message and dumps the domain hash table in |
| 474 | * a form suitable for use in a kernel generated LISTALL message. Returns zero |
| 475 | * on success, negative values on failure. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 476 | * |
| 477 | */ |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 478 | static int netlbl_mgmt_listall(struct sk_buff *skb, |
| 479 | struct netlink_callback *cb) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 480 | { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 481 | struct netlbl_domhsh_walk_arg cb_arg; |
| 482 | u32 skip_bkt = cb->args[0]; |
| 483 | u32 skip_chain = cb->args[1]; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 484 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 485 | cb_arg.nl_cb = cb; |
| 486 | cb_arg.skb = skb; |
| 487 | cb_arg.seq = cb->nlh->nlmsg_seq; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 488 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 489 | netlbl_domhsh_walk(&skip_bkt, |
| 490 | &skip_chain, |
| 491 | netlbl_mgmt_listall_cb, |
| 492 | &cb_arg); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 493 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 494 | cb->args[0] = skip_bkt; |
| 495 | cb->args[1] = skip_chain; |
| 496 | return skb->len; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | /** |
| 500 | * netlbl_mgmt_adddef - Handle an ADDDEF message |
| 501 | * @skb: the NETLINK buffer |
| 502 | * @info: the Generic NETLINK info block |
| 503 | * |
| 504 | * Description: |
| 505 | * Process a user generated ADDDEF message and respond accordingly. Returns |
| 506 | * zero on success, negative values on failure. |
| 507 | * |
| 508 | */ |
| 509 | static int netlbl_mgmt_adddef(struct sk_buff *skb, struct genl_info *info) |
| 510 | { |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 511 | struct netlbl_audit audit_info; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 512 | |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 513 | if ((!info->attrs[NLBL_MGMT_A_PROTOCOL]) || |
| 514 | (info->attrs[NLBL_MGMT_A_IPV4ADDR] && |
| 515 | info->attrs[NLBL_MGMT_A_IPV6ADDR]) || |
| 516 | (info->attrs[NLBL_MGMT_A_IPV4MASK] && |
| 517 | info->attrs[NLBL_MGMT_A_IPV6MASK]) || |
| 518 | ((info->attrs[NLBL_MGMT_A_IPV4ADDR] != NULL) ^ |
| 519 | (info->attrs[NLBL_MGMT_A_IPV4MASK] != NULL)) || |
| 520 | ((info->attrs[NLBL_MGMT_A_IPV6ADDR] != NULL) ^ |
| 521 | (info->attrs[NLBL_MGMT_A_IPV6MASK] != NULL))) |
| 522 | return -EINVAL; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 523 | |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 524 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 525 | |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 526 | return netlbl_mgmt_add_common(info, &audit_info); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | /** |
| 530 | * netlbl_mgmt_removedef - Handle a REMOVEDEF message |
| 531 | * @skb: the NETLINK buffer |
| 532 | * @info: the Generic NETLINK info block |
| 533 | * |
| 534 | * Description: |
| 535 | * Process a user generated REMOVEDEF message and remove the default domain |
| 536 | * mapping. Returns zero on success, negative values on failure. |
| 537 | * |
| 538 | */ |
| 539 | static int netlbl_mgmt_removedef(struct sk_buff *skb, struct genl_info *info) |
| 540 | { |
Paul Moore | 95d4e6b | 2006-09-29 17:05:05 -0700 | [diff] [blame] | 541 | struct netlbl_audit audit_info; |
| 542 | |
| 543 | netlbl_netlink_auditinfo(skb, &audit_info); |
| 544 | |
| 545 | return netlbl_domhsh_remove_default(&audit_info); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 546 | } |
| 547 | |
| 548 | /** |
| 549 | * netlbl_mgmt_listdef - Handle a LISTDEF message |
| 550 | * @skb: the NETLINK buffer |
| 551 | * @info: the Generic NETLINK info block |
| 552 | * |
| 553 | * Description: |
| 554 | * Process a user generated LISTDEF message and dumps the default domain |
| 555 | * mapping in a form suitable for use in a kernel generated LISTDEF message. |
| 556 | * Returns zero on success, negative values on failure. |
| 557 | * |
| 558 | */ |
| 559 | static int netlbl_mgmt_listdef(struct sk_buff *skb, struct genl_info *info) |
| 560 | { |
| 561 | int ret_val = -ENOMEM; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 562 | struct sk_buff *ans_skb = NULL; |
| 563 | void *data; |
| 564 | struct netlbl_dom_map *entry; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 565 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 566 | ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 567 | if (ans_skb == NULL) |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 568 | return -ENOMEM; |
Thomas Graf | 17c157c | 2006-11-14 19:46:02 -0800 | [diff] [blame] | 569 | data = genlmsg_put_reply(ans_skb, info, &netlbl_mgmt_gnl_family, |
| 570 | 0, NLBL_MGMT_C_LISTDEF); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 571 | if (data == NULL) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 572 | goto listdef_failure; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 573 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 574 | rcu_read_lock(); |
| 575 | entry = netlbl_domhsh_getentry(NULL); |
| 576 | if (entry == NULL) { |
| 577 | ret_val = -ENOENT; |
| 578 | goto listdef_failure_lock; |
| 579 | } |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 580 | ret_val = netlbl_mgmt_listentry(ans_skb, entry); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 581 | rcu_read_unlock(); |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 582 | if (ret_val != 0) |
| 583 | goto listdef_failure; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 584 | |
| 585 | genlmsg_end(ans_skb, data); |
Denis V. Lunev | fe785be | 2008-07-10 16:53:39 -0700 | [diff] [blame] | 586 | return genlmsg_reply(ans_skb, info); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 587 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 588 | listdef_failure_lock: |
| 589 | rcu_read_unlock(); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 590 | listdef_failure: |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 591 | kfree_skb(ans_skb); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 592 | return ret_val; |
| 593 | } |
| 594 | |
| 595 | /** |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 596 | * netlbl_mgmt_protocols_cb - Write an individual PROTOCOL message response |
| 597 | * @skb: the skb to write to |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 598 | * @cb: the NETLINK callback |
| 599 | * @protocol: the NetLabel protocol to use in the message |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 600 | * |
| 601 | * Description: |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 602 | * This function is to be used in conjunction with netlbl_mgmt_protocols() to |
| 603 | * answer a application's PROTOCOLS message. Returns the size of the message |
| 604 | * on success, negative values on failure. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 605 | * |
| 606 | */ |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 607 | static int netlbl_mgmt_protocols_cb(struct sk_buff *skb, |
| 608 | struct netlink_callback *cb, |
| 609 | u32 protocol) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 610 | { |
| 611 | int ret_val = -ENOMEM; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 612 | void *data; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 613 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 614 | data = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq, |
Thomas Graf | 17c157c | 2006-11-14 19:46:02 -0800 | [diff] [blame] | 615 | &netlbl_mgmt_gnl_family, NLM_F_MULTI, |
| 616 | NLBL_MGMT_C_PROTOCOLS); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 617 | if (data == NULL) |
| 618 | goto protocols_cb_failure; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 619 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 620 | ret_val = nla_put_u32(skb, NLBL_MGMT_A_PROTOCOL, protocol); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 621 | if (ret_val != 0) |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 622 | goto protocols_cb_failure; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 623 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 624 | return genlmsg_end(skb, data); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 625 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 626 | protocols_cb_failure: |
| 627 | genlmsg_cancel(skb, data); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 628 | return ret_val; |
| 629 | } |
| 630 | |
| 631 | /** |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 632 | * netlbl_mgmt_protocols - Handle a PROTOCOLS message |
| 633 | * @skb: the NETLINK buffer |
| 634 | * @cb: the NETLINK callback |
| 635 | * |
| 636 | * Description: |
| 637 | * Process a user generated PROTOCOLS message and respond accordingly. |
| 638 | * |
| 639 | */ |
| 640 | static int netlbl_mgmt_protocols(struct sk_buff *skb, |
| 641 | struct netlink_callback *cb) |
| 642 | { |
| 643 | u32 protos_sent = cb->args[0]; |
| 644 | |
| 645 | if (protos_sent == 0) { |
| 646 | if (netlbl_mgmt_protocols_cb(skb, |
| 647 | cb, |
| 648 | NETLBL_NLTYPE_UNLABELED) < 0) |
| 649 | goto protocols_return; |
| 650 | protos_sent++; |
| 651 | } |
| 652 | if (protos_sent == 1) { |
| 653 | if (netlbl_mgmt_protocols_cb(skb, |
| 654 | cb, |
| 655 | NETLBL_NLTYPE_CIPSOV4) < 0) |
| 656 | goto protocols_return; |
| 657 | protos_sent++; |
| 658 | } |
| 659 | |
| 660 | protocols_return: |
| 661 | cb->args[0] = protos_sent; |
| 662 | return skb->len; |
| 663 | } |
| 664 | |
| 665 | /** |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 666 | * netlbl_mgmt_version - Handle a VERSION message |
| 667 | * @skb: the NETLINK buffer |
| 668 | * @info: the Generic NETLINK info block |
| 669 | * |
| 670 | * Description: |
| 671 | * Process a user generated VERSION message and respond accordingly. Returns |
| 672 | * zero on success, negative values on failure. |
| 673 | * |
| 674 | */ |
| 675 | static int netlbl_mgmt_version(struct sk_buff *skb, struct genl_info *info) |
| 676 | { |
| 677 | int ret_val = -ENOMEM; |
| 678 | struct sk_buff *ans_skb = NULL; |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 679 | void *data; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 680 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 681 | ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 682 | if (ans_skb == NULL) |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 683 | return -ENOMEM; |
Thomas Graf | 17c157c | 2006-11-14 19:46:02 -0800 | [diff] [blame] | 684 | data = genlmsg_put_reply(ans_skb, info, &netlbl_mgmt_gnl_family, |
| 685 | 0, NLBL_MGMT_C_VERSION); |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 686 | if (data == NULL) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 687 | goto version_failure; |
| 688 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 689 | ret_val = nla_put_u32(ans_skb, |
| 690 | NLBL_MGMT_A_VERSION, |
| 691 | NETLBL_PROTO_VERSION); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 692 | if (ret_val != 0) |
| 693 | goto version_failure; |
| 694 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 695 | genlmsg_end(ans_skb, data); |
Denis V. Lunev | fe785be | 2008-07-10 16:53:39 -0700 | [diff] [blame] | 696 | return genlmsg_reply(ans_skb, info); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 697 | |
| 698 | version_failure: |
| 699 | kfree_skb(ans_skb); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 700 | return ret_val; |
| 701 | } |
| 702 | |
| 703 | |
| 704 | /* |
| 705 | * NetLabel Generic NETLINK Command Definitions |
| 706 | */ |
| 707 | |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 708 | static struct genl_ops netlbl_mgmt_genl_ops[] = { |
| 709 | { |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 710 | .cmd = NLBL_MGMT_C_ADD, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 711 | .flags = GENL_ADMIN_PERM, |
| 712 | .policy = netlbl_mgmt_genl_policy, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 713 | .doit = netlbl_mgmt_add, |
| 714 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 715 | }, |
| 716 | { |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 717 | .cmd = NLBL_MGMT_C_REMOVE, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 718 | .flags = GENL_ADMIN_PERM, |
| 719 | .policy = netlbl_mgmt_genl_policy, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 720 | .doit = netlbl_mgmt_remove, |
| 721 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 722 | }, |
| 723 | { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 724 | .cmd = NLBL_MGMT_C_LISTALL, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 725 | .flags = 0, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 726 | .policy = netlbl_mgmt_genl_policy, |
| 727 | .doit = NULL, |
| 728 | .dumpit = netlbl_mgmt_listall, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 729 | }, |
| 730 | { |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 731 | .cmd = NLBL_MGMT_C_ADDDEF, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 732 | .flags = GENL_ADMIN_PERM, |
| 733 | .policy = netlbl_mgmt_genl_policy, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 734 | .doit = netlbl_mgmt_adddef, |
| 735 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 736 | }, |
| 737 | { |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 738 | .cmd = NLBL_MGMT_C_REMOVEDEF, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 739 | .flags = GENL_ADMIN_PERM, |
| 740 | .policy = netlbl_mgmt_genl_policy, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 741 | .doit = netlbl_mgmt_removedef, |
| 742 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 743 | }, |
| 744 | { |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 745 | .cmd = NLBL_MGMT_C_LISTDEF, |
| 746 | .flags = 0, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 747 | .policy = netlbl_mgmt_genl_policy, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 748 | .doit = netlbl_mgmt_listdef, |
| 749 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 750 | }, |
| 751 | { |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 752 | .cmd = NLBL_MGMT_C_PROTOCOLS, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 753 | .flags = 0, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 754 | .policy = netlbl_mgmt_genl_policy, |
| 755 | .doit = NULL, |
| 756 | .dumpit = netlbl_mgmt_protocols, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 757 | }, |
| 758 | { |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 759 | .cmd = NLBL_MGMT_C_VERSION, |
| 760 | .flags = 0, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 761 | .policy = netlbl_mgmt_genl_policy, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 762 | .doit = netlbl_mgmt_version, |
| 763 | .dumpit = NULL, |
Pavel Emelyanov | 227c43c | 2008-02-17 22:33:16 -0800 | [diff] [blame] | 764 | }, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 765 | }; |
| 766 | |
| 767 | /* |
| 768 | * NetLabel Generic NETLINK Protocol Functions |
| 769 | */ |
| 770 | |
| 771 | /** |
| 772 | * netlbl_mgmt_genl_init - Register the NetLabel management component |
| 773 | * |
| 774 | * Description: |
| 775 | * Register the NetLabel management component with the Generic NETLINK |
| 776 | * mechanism. Returns zero on success, negative values on failure. |
| 777 | * |
| 778 | */ |
Pavel Emelyanov | 05705e4 | 2008-02-17 22:33:57 -0800 | [diff] [blame] | 779 | int __init netlbl_mgmt_genl_init(void) |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 780 | { |
Michał Mirosław | 7ae740d | 2009-05-21 10:34:05 +0000 | [diff] [blame] | 781 | return genl_register_family_with_ops(&netlbl_mgmt_gnl_family, |
| 782 | netlbl_mgmt_genl_ops, ARRAY_SIZE(netlbl_mgmt_genl_ops)); |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 783 | } |