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 | /* |
| 13 | * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 |
| 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 | #ifndef _NETLABEL_MGMT_H |
| 31 | #define _NETLABEL_MGMT_H |
| 32 | |
| 33 | #include <net/netlabel.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 34 | #include <linux/atomic.h> |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 35 | |
| 36 | /* |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 37 | * The following NetLabel payloads are supported by the management interface. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 38 | * |
| 39 | * o ADD: |
| 40 | * Sent by an application to add a domain mapping to the NetLabel system. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 41 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 42 | * Required attributes: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 43 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 44 | * NLBL_MGMT_A_DOMAIN |
| 45 | * NLBL_MGMT_A_PROTOCOL |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 46 | * |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 47 | * If IPv4 is specified the following attributes are required: |
| 48 | * |
| 49 | * NLBL_MGMT_A_IPV4ADDR |
| 50 | * NLBL_MGMT_A_IPV4MASK |
| 51 | * |
| 52 | * If IPv6 is specified the following attributes are required: |
| 53 | * |
| 54 | * NLBL_MGMT_A_IPV6ADDR |
| 55 | * NLBL_MGMT_A_IPV6MASK |
| 56 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 57 | * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 58 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 59 | * NLBL_MGMT_A_CV4DOI |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 60 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 61 | * If using NETLBL_NLTYPE_UNLABELED no other attributes are required. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 62 | * |
| 63 | * o REMOVE: |
| 64 | * Sent by an application to remove a domain mapping from the NetLabel |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 65 | * system. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 66 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 67 | * Required attributes: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 68 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 69 | * NLBL_MGMT_A_DOMAIN |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 70 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 71 | * o LISTALL: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 72 | * This message can be sent either from an application or by the kernel in |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 73 | * response to an application generated LISTALL message. When sent by an |
| 74 | * application there is no payload and the NLM_F_DUMP flag should be set. |
| 75 | * The kernel should respond with a series of the following messages. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 76 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 77 | * Required attributes: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 78 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 79 | * NLBL_MGMT_A_DOMAIN |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 80 | * |
| 81 | * If the IP address selectors are not used the following attribute is |
| 82 | * required: |
| 83 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 84 | * NLBL_MGMT_A_PROTOCOL |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 85 | * |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 86 | * If the IP address selectors are used then the following attritbute is |
| 87 | * required: |
| 88 | * |
| 89 | * NLBL_MGMT_A_SELECTORLIST |
| 90 | * |
| 91 | * If the mapping is using the NETLBL_NLTYPE_CIPSOV4 type then the following |
| 92 | * attributes are required: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 93 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 94 | * NLBL_MGMT_A_CV4DOI |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 95 | * |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 96 | * If the mapping is using the NETLBL_NLTYPE_UNLABELED type no other |
| 97 | * attributes are required. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 98 | * |
| 99 | * o ADDDEF: |
| 100 | * Sent by an application to set the default domain mapping for the NetLabel |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 101 | * system. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 102 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 103 | * Required attributes: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 104 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 105 | * NLBL_MGMT_A_PROTOCOL |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 106 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 107 | * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 108 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 109 | * NLBL_MGMT_A_CV4DOI |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 110 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 111 | * If using NETLBL_NLTYPE_UNLABELED no other attributes are required. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 112 | * |
| 113 | * o REMOVEDEF: |
| 114 | * Sent by an application to remove the default domain mapping from the |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 115 | * NetLabel system, there is no payload. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 116 | * |
| 117 | * o LISTDEF: |
| 118 | * This message can be sent either from an application or by the kernel in |
| 119 | * response to an application generated LISTDEF message. When sent by an |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 120 | * application there is no payload. On success the kernel should send a |
| 121 | * response using the following format. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 122 | * |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 123 | * If the IP address selectors are not used the following attribute is |
| 124 | * required: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 125 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 126 | * NLBL_MGMT_A_PROTOCOL |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 127 | * |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 128 | * If the IP address selectors are used then the following attritbute is |
| 129 | * required: |
| 130 | * |
| 131 | * NLBL_MGMT_A_SELECTORLIST |
| 132 | * |
| 133 | * If the mapping is using the NETLBL_NLTYPE_CIPSOV4 type then the following |
| 134 | * attributes are required: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 135 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 136 | * NLBL_MGMT_A_CV4DOI |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 137 | * |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 138 | * If the mapping is using the NETLBL_NLTYPE_UNLABELED type no other |
| 139 | * attributes are required. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 140 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 141 | * o PROTOCOLS: |
| 142 | * Sent by an application to request a list of configured NetLabel protocols |
| 143 | * in the kernel. When sent by an application there is no payload and the |
| 144 | * NLM_F_DUMP flag should be set. The kernel should respond with a series of |
| 145 | * the following messages. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 146 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 147 | * Required attributes: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 148 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 149 | * NLBL_MGMT_A_PROTOCOL |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 150 | * |
| 151 | * o VERSION: |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 152 | * Sent by an application to request the NetLabel version. When sent by an |
| 153 | * application there is no payload. This message type is also used by the |
| 154 | * kernel to respond to an VERSION request. |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 155 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 156 | * Required attributes: |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 157 | * |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 158 | * NLBL_MGMT_A_VERSION |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 159 | * |
| 160 | */ |
| 161 | |
| 162 | /* NetLabel Management commands */ |
| 163 | enum { |
| 164 | NLBL_MGMT_C_UNSPEC, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 165 | NLBL_MGMT_C_ADD, |
| 166 | NLBL_MGMT_C_REMOVE, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 167 | NLBL_MGMT_C_LISTALL, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 168 | NLBL_MGMT_C_ADDDEF, |
| 169 | NLBL_MGMT_C_REMOVEDEF, |
| 170 | NLBL_MGMT_C_LISTDEF, |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 171 | NLBL_MGMT_C_PROTOCOLS, |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 172 | NLBL_MGMT_C_VERSION, |
| 173 | __NLBL_MGMT_C_MAX, |
| 174 | }; |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 175 | |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 176 | /* NetLabel Management attributes */ |
| 177 | enum { |
| 178 | NLBL_MGMT_A_UNSPEC, |
| 179 | NLBL_MGMT_A_DOMAIN, |
| 180 | /* (NLA_NUL_STRING) |
| 181 | * the NULL terminated LSM domain string */ |
| 182 | NLBL_MGMT_A_PROTOCOL, |
| 183 | /* (NLA_U32) |
| 184 | * the NetLabel protocol type (defined by NETLBL_NLTYPE_*) */ |
| 185 | NLBL_MGMT_A_VERSION, |
| 186 | /* (NLA_U32) |
| 187 | * the NetLabel protocol version number (defined by |
| 188 | * NETLBL_PROTO_VERSION) */ |
| 189 | NLBL_MGMT_A_CV4DOI, |
| 190 | /* (NLA_U32) |
| 191 | * the CIPSOv4 DOI value */ |
Paul Moore | 63c4168 | 2008-10-10 10:16:32 -0400 | [diff] [blame] | 192 | NLBL_MGMT_A_IPV6ADDR, |
| 193 | /* (NLA_BINARY, struct in6_addr) |
| 194 | * an IPv6 address */ |
| 195 | NLBL_MGMT_A_IPV6MASK, |
| 196 | /* (NLA_BINARY, struct in6_addr) |
| 197 | * an IPv6 address mask */ |
| 198 | NLBL_MGMT_A_IPV4ADDR, |
| 199 | /* (NLA_BINARY, struct in_addr) |
| 200 | * an IPv4 address */ |
| 201 | NLBL_MGMT_A_IPV4MASK, |
| 202 | /* (NLA_BINARY, struct in_addr) |
| 203 | * and IPv4 address mask */ |
| 204 | NLBL_MGMT_A_ADDRSELECTOR, |
| 205 | /* (NLA_NESTED) |
| 206 | * an IP address selector, must contain an address, mask, and protocol |
| 207 | * attribute plus any protocol specific attributes */ |
| 208 | NLBL_MGMT_A_SELECTORLIST, |
| 209 | /* (NLA_NESTED) |
| 210 | * the selector list, there must be at least one |
| 211 | * NLBL_MGMT_A_ADDRSELECTOR attribute */ |
Paul Moore | fd38585 | 2006-09-25 15:56:37 -0700 | [diff] [blame] | 212 | __NLBL_MGMT_A_MAX, |
| 213 | }; |
| 214 | #define NLBL_MGMT_A_MAX (__NLBL_MGMT_A_MAX - 1) |
| 215 | |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 216 | /* NetLabel protocol functions */ |
| 217 | int netlbl_mgmt_genl_init(void); |
| 218 | |
Paul Moore | c783f1c | 2008-01-29 08:37:52 -0500 | [diff] [blame] | 219 | /* NetLabel configured protocol reference counter */ |
| 220 | extern atomic_t netlabel_mgmt_protocount; |
Paul Moore | 23bcdc1 | 2007-07-18 12:28:45 -0400 | [diff] [blame] | 221 | |
Paul Moore | d15c345 | 2006-08-03 16:48:37 -0700 | [diff] [blame] | 222 | #endif |