blob: ea01e42bca783a8e02b93855a2e35f2b3bb3ba10 [file] [log] [blame]
Paul Moored15c3452006-08-03 16:48:37 -07001/*
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 Moore82c21bf2011-08-01 11:10:33 +00008 * Author: Paul Moore <paul@paul-moore.com>
Paul Moored15c3452006-08-03 16:48:37 -07009 *
10 */
11
12/*
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 Kirsherd484ff12013-12-06 09:13:41 -080026 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Paul Moored15c3452006-08-03 16:48:37 -070027 *
28 */
29
30#ifndef _NETLABEL_MGMT_H
31#define _NETLABEL_MGMT_H
32
33#include <net/netlabel.h>
Arun Sharma600634972011-07-26 16:09:06 -070034#include <linux/atomic.h>
Paul Moored15c3452006-08-03 16:48:37 -070035
36/*
Paul Moorefd385852006-09-25 15:56:37 -070037 * The following NetLabel payloads are supported by the management interface.
Paul Moored15c3452006-08-03 16:48:37 -070038 *
39 * o ADD:
40 * Sent by an application to add a domain mapping to the NetLabel system.
Paul Moored15c3452006-08-03 16:48:37 -070041 *
Paul Moorefd385852006-09-25 15:56:37 -070042 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070043 *
Paul Moorefd385852006-09-25 15:56:37 -070044 * NLBL_MGMT_A_DOMAIN
45 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -070046 *
Paul Moore63c41682008-10-10 10:16:32 -040047 * 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 Moorefd385852006-09-25 15:56:37 -070057 * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -070058 *
Paul Moorefd385852006-09-25 15:56:37 -070059 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -070060 *
Huw Davies8f18e672016-06-27 15:02:46 -040061 * If using NETLBL_NLTYPE_UNLABELED no other attributes are required,
62 * however the following attribute may optionally be sent:
63 *
64 * NLBL_MGMT_A_FAMILY
Paul Moored15c3452006-08-03 16:48:37 -070065 *
66 * o REMOVE:
67 * Sent by an application to remove a domain mapping from the NetLabel
Paul Moorefd385852006-09-25 15:56:37 -070068 * system.
Paul Moored15c3452006-08-03 16:48:37 -070069 *
Paul Moorefd385852006-09-25 15:56:37 -070070 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070071 *
Paul Moorefd385852006-09-25 15:56:37 -070072 * NLBL_MGMT_A_DOMAIN
Paul Moored15c3452006-08-03 16:48:37 -070073 *
Paul Moorefd385852006-09-25 15:56:37 -070074 * o LISTALL:
Paul Moored15c3452006-08-03 16:48:37 -070075 * This message can be sent either from an application or by the kernel in
Paul Moorefd385852006-09-25 15:56:37 -070076 * response to an application generated LISTALL message. When sent by an
77 * application there is no payload and the NLM_F_DUMP flag should be set.
78 * The kernel should respond with a series of the following messages.
Paul Moored15c3452006-08-03 16:48:37 -070079 *
Paul Moorefd385852006-09-25 15:56:37 -070080 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070081 *
Paul Moorefd385852006-09-25 15:56:37 -070082 * NLBL_MGMT_A_DOMAIN
Huw Davies8f18e672016-06-27 15:02:46 -040083 * NLBL_MGMT_A_FAMILY
Paul Moore63c41682008-10-10 10:16:32 -040084 *
85 * If the IP address selectors are not used the following attribute is
86 * required:
87 *
Paul Moorefd385852006-09-25 15:56:37 -070088 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -070089 *
Paul Moore63c41682008-10-10 10:16:32 -040090 * If the IP address selectors are used then the following attritbute is
91 * required:
92 *
93 * NLBL_MGMT_A_SELECTORLIST
94 *
95 * If the mapping is using the NETLBL_NLTYPE_CIPSOV4 type then the following
96 * attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -070097 *
Paul Moorefd385852006-09-25 15:56:37 -070098 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -070099 *
Paul Moore63c41682008-10-10 10:16:32 -0400100 * If the mapping is using the NETLBL_NLTYPE_UNLABELED type no other
101 * attributes are required.
Paul Moored15c3452006-08-03 16:48:37 -0700102 *
103 * o ADDDEF:
104 * Sent by an application to set the default domain mapping for the NetLabel
Paul Moorefd385852006-09-25 15:56:37 -0700105 * system.
Paul Moored15c3452006-08-03 16:48:37 -0700106 *
Paul Moorefd385852006-09-25 15:56:37 -0700107 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -0700108 *
Paul Moorefd385852006-09-25 15:56:37 -0700109 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -0700110 *
Paul Moorefd385852006-09-25 15:56:37 -0700111 * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -0700112 *
Paul Moorefd385852006-09-25 15:56:37 -0700113 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -0700114 *
Huw Davies8f18e672016-06-27 15:02:46 -0400115 * If using NETLBL_NLTYPE_UNLABELED no other attributes are required,
116 * however the following attribute may optionally be sent:
117 *
118 * NLBL_MGMT_A_FAMILY
Paul Moored15c3452006-08-03 16:48:37 -0700119 *
120 * o REMOVEDEF:
121 * Sent by an application to remove the default domain mapping from the
Paul Moorefd385852006-09-25 15:56:37 -0700122 * NetLabel system, there is no payload.
Paul Moored15c3452006-08-03 16:48:37 -0700123 *
124 * o LISTDEF:
125 * This message can be sent either from an application or by the kernel in
126 * response to an application generated LISTDEF message. When sent by an
Huw Davies8f18e672016-06-27 15:02:46 -0400127 * application there may be an optional payload.
Paul Moored15c3452006-08-03 16:48:37 -0700128 *
Huw Davies8f18e672016-06-27 15:02:46 -0400129 * NLBL_MGMT_A_FAMILY
130 *
131 * On success the kernel should send a response using the following format:
132 *
133 * If the IP address selectors are not used the following attributes are
Paul Moore63c41682008-10-10 10:16:32 -0400134 * required:
Paul Moored15c3452006-08-03 16:48:37 -0700135 *
Paul Moorefd385852006-09-25 15:56:37 -0700136 * NLBL_MGMT_A_PROTOCOL
Huw Davies8f18e672016-06-27 15:02:46 -0400137 * NLBL_MGMT_A_FAMILY
Paul Moored15c3452006-08-03 16:48:37 -0700138 *
Paul Moore63c41682008-10-10 10:16:32 -0400139 * If the IP address selectors are used then the following attritbute is
140 * required:
141 *
142 * NLBL_MGMT_A_SELECTORLIST
143 *
144 * If the mapping is using the NETLBL_NLTYPE_CIPSOV4 type then the following
145 * attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -0700146 *
Paul Moorefd385852006-09-25 15:56:37 -0700147 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -0700148 *
Paul Moore63c41682008-10-10 10:16:32 -0400149 * If the mapping is using the NETLBL_NLTYPE_UNLABELED type no other
150 * attributes are required.
Paul Moored15c3452006-08-03 16:48:37 -0700151 *
Paul Moorefd385852006-09-25 15:56:37 -0700152 * o PROTOCOLS:
153 * Sent by an application to request a list of configured NetLabel protocols
154 * in the kernel. When sent by an application there is no payload and the
155 * NLM_F_DUMP flag should be set. The kernel should respond with a series of
156 * the following messages.
Paul Moored15c3452006-08-03 16:48:37 -0700157 *
Paul Moorefd385852006-09-25 15:56:37 -0700158 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -0700159 *
Paul Moorefd385852006-09-25 15:56:37 -0700160 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -0700161 *
162 * o VERSION:
Paul Moorefd385852006-09-25 15:56:37 -0700163 * Sent by an application to request the NetLabel version. When sent by an
164 * application there is no payload. This message type is also used by the
165 * kernel to respond to an VERSION request.
Paul Moored15c3452006-08-03 16:48:37 -0700166 *
Paul Moorefd385852006-09-25 15:56:37 -0700167 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -0700168 *
Paul Moorefd385852006-09-25 15:56:37 -0700169 * NLBL_MGMT_A_VERSION
Paul Moored15c3452006-08-03 16:48:37 -0700170 *
171 */
172
173/* NetLabel Management commands */
174enum {
175 NLBL_MGMT_C_UNSPEC,
Paul Moored15c3452006-08-03 16:48:37 -0700176 NLBL_MGMT_C_ADD,
177 NLBL_MGMT_C_REMOVE,
Paul Moorefd385852006-09-25 15:56:37 -0700178 NLBL_MGMT_C_LISTALL,
Paul Moored15c3452006-08-03 16:48:37 -0700179 NLBL_MGMT_C_ADDDEF,
180 NLBL_MGMT_C_REMOVEDEF,
181 NLBL_MGMT_C_LISTDEF,
Paul Moorefd385852006-09-25 15:56:37 -0700182 NLBL_MGMT_C_PROTOCOLS,
Paul Moored15c3452006-08-03 16:48:37 -0700183 NLBL_MGMT_C_VERSION,
184 __NLBL_MGMT_C_MAX,
185};
Paul Moored15c3452006-08-03 16:48:37 -0700186
Paul Moorefd385852006-09-25 15:56:37 -0700187/* NetLabel Management attributes */
188enum {
189 NLBL_MGMT_A_UNSPEC,
190 NLBL_MGMT_A_DOMAIN,
191 /* (NLA_NUL_STRING)
192 * the NULL terminated LSM domain string */
193 NLBL_MGMT_A_PROTOCOL,
194 /* (NLA_U32)
195 * the NetLabel protocol type (defined by NETLBL_NLTYPE_*) */
196 NLBL_MGMT_A_VERSION,
197 /* (NLA_U32)
198 * the NetLabel protocol version number (defined by
199 * NETLBL_PROTO_VERSION) */
200 NLBL_MGMT_A_CV4DOI,
201 /* (NLA_U32)
202 * the CIPSOv4 DOI value */
Paul Moore63c41682008-10-10 10:16:32 -0400203 NLBL_MGMT_A_IPV6ADDR,
204 /* (NLA_BINARY, struct in6_addr)
205 * an IPv6 address */
206 NLBL_MGMT_A_IPV6MASK,
207 /* (NLA_BINARY, struct in6_addr)
208 * an IPv6 address mask */
209 NLBL_MGMT_A_IPV4ADDR,
210 /* (NLA_BINARY, struct in_addr)
211 * an IPv4 address */
212 NLBL_MGMT_A_IPV4MASK,
213 /* (NLA_BINARY, struct in_addr)
214 * and IPv4 address mask */
215 NLBL_MGMT_A_ADDRSELECTOR,
216 /* (NLA_NESTED)
217 * an IP address selector, must contain an address, mask, and protocol
218 * attribute plus any protocol specific attributes */
219 NLBL_MGMT_A_SELECTORLIST,
220 /* (NLA_NESTED)
221 * the selector list, there must be at least one
222 * NLBL_MGMT_A_ADDRSELECTOR attribute */
Huw Davies8f18e672016-06-27 15:02:46 -0400223 NLBL_MGMT_A_FAMILY,
224 /* (NLA_U16)
225 * The address family */
Huw Daviesdc7de732016-06-27 15:02:49 -0400226 NLBL_MGMT_A_CLPDOI,
227 /* (NLA_U32)
228 * the CALIPSO DOI value */
Paul Moorefd385852006-09-25 15:56:37 -0700229 __NLBL_MGMT_A_MAX,
230};
231#define NLBL_MGMT_A_MAX (__NLBL_MGMT_A_MAX - 1)
232
Paul Moored15c3452006-08-03 16:48:37 -0700233/* NetLabel protocol functions */
234int netlbl_mgmt_genl_init(void);
235
Paul Moorec783f1c2008-01-29 08:37:52 -0500236/* NetLabel configured protocol reference counter */
237extern atomic_t netlabel_mgmt_protocount;
Paul Moore23bcdc12007-07-18 12:28:45 -0400238
Paul Moored15c3452006-08-03 16:48:37 -0700239#endif