blob: db20dfbbd8c4c70b11923017a6c0cc009dacf942 [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Paul Moored15c3452006-08-03 16:48:37 -07002/*
3 * NetLabel Management Support
4 *
5 * This file defines the management functions for the NetLabel system. The
6 * NetLabel system manages static and dynamic label mappings for network
7 * protocols such as CIPSO and RIPSO.
8 *
Paul Moore82c21bf2011-08-01 11:10:33 +00009 * Author: Paul Moore <paul@paul-moore.com>
Paul Moored15c3452006-08-03 16:48:37 -070010 */
11
12/*
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
Paul Moored15c3452006-08-03 16:48:37 -070014 */
15
16#ifndef _NETLABEL_MGMT_H
17#define _NETLABEL_MGMT_H
18
19#include <net/netlabel.h>
Arun Sharma600634972011-07-26 16:09:06 -070020#include <linux/atomic.h>
Paul Moored15c3452006-08-03 16:48:37 -070021
22/*
Paul Moorefd385852006-09-25 15:56:37 -070023 * The following NetLabel payloads are supported by the management interface.
Paul Moored15c3452006-08-03 16:48:37 -070024 *
25 * o ADD:
26 * Sent by an application to add a domain mapping to the NetLabel system.
Paul Moored15c3452006-08-03 16:48:37 -070027 *
Paul Moorefd385852006-09-25 15:56:37 -070028 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070029 *
Paul Moorefd385852006-09-25 15:56:37 -070030 * NLBL_MGMT_A_DOMAIN
31 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -070032 *
Paul Moore63c41682008-10-10 10:16:32 -040033 * If IPv4 is specified the following attributes are required:
34 *
35 * NLBL_MGMT_A_IPV4ADDR
36 * NLBL_MGMT_A_IPV4MASK
37 *
38 * If IPv6 is specified the following attributes are required:
39 *
40 * NLBL_MGMT_A_IPV6ADDR
41 * NLBL_MGMT_A_IPV6MASK
42 *
Paul Moorefd385852006-09-25 15:56:37 -070043 * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -070044 *
Paul Moorefd385852006-09-25 15:56:37 -070045 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -070046 *
Huw Davies8f18e672016-06-27 15:02:46 -040047 * If using NETLBL_NLTYPE_UNLABELED no other attributes are required,
48 * however the following attribute may optionally be sent:
49 *
50 * NLBL_MGMT_A_FAMILY
Paul Moored15c3452006-08-03 16:48:37 -070051 *
52 * o REMOVE:
53 * Sent by an application to remove a domain mapping from the NetLabel
Paul Moorefd385852006-09-25 15:56:37 -070054 * system.
Paul Moored15c3452006-08-03 16:48:37 -070055 *
Paul Moorefd385852006-09-25 15:56:37 -070056 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070057 *
Paul Moorefd385852006-09-25 15:56:37 -070058 * NLBL_MGMT_A_DOMAIN
Paul Moored15c3452006-08-03 16:48:37 -070059 *
Paul Moorefd385852006-09-25 15:56:37 -070060 * o LISTALL:
Paul Moored15c3452006-08-03 16:48:37 -070061 * This message can be sent either from an application or by the kernel in
Paul Moorefd385852006-09-25 15:56:37 -070062 * response to an application generated LISTALL message. When sent by an
63 * application there is no payload and the NLM_F_DUMP flag should be set.
64 * The kernel should respond with a series of the following messages.
Paul Moored15c3452006-08-03 16:48:37 -070065 *
Paul Moorefd385852006-09-25 15:56:37 -070066 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070067 *
Paul Moorefd385852006-09-25 15:56:37 -070068 * NLBL_MGMT_A_DOMAIN
Huw Davies8f18e672016-06-27 15:02:46 -040069 * NLBL_MGMT_A_FAMILY
Paul Moore63c41682008-10-10 10:16:32 -040070 *
71 * If the IP address selectors are not used the following attribute is
72 * required:
73 *
Paul Moorefd385852006-09-25 15:56:37 -070074 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -070075 *
Paul Moore63c41682008-10-10 10:16:32 -040076 * If the IP address selectors are used then the following attritbute is
77 * required:
78 *
79 * NLBL_MGMT_A_SELECTORLIST
80 *
81 * If the mapping is using the NETLBL_NLTYPE_CIPSOV4 type then the following
82 * attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -070083 *
Paul Moorefd385852006-09-25 15:56:37 -070084 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -070085 *
Paul Moore63c41682008-10-10 10:16:32 -040086 * If the mapping is using the NETLBL_NLTYPE_UNLABELED type no other
87 * attributes are required.
Paul Moored15c3452006-08-03 16:48:37 -070088 *
89 * o ADDDEF:
90 * Sent by an application to set the default domain mapping for the NetLabel
Paul Moorefd385852006-09-25 15:56:37 -070091 * system.
Paul Moored15c3452006-08-03 16:48:37 -070092 *
Paul Moorefd385852006-09-25 15:56:37 -070093 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -070094 *
Paul Moorefd385852006-09-25 15:56:37 -070095 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -070096 *
Paul Moorefd385852006-09-25 15:56:37 -070097 * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -070098 *
Paul Moorefd385852006-09-25 15:56:37 -070099 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -0700100 *
Huw Davies8f18e672016-06-27 15:02:46 -0400101 * If using NETLBL_NLTYPE_UNLABELED no other attributes are required,
102 * however the following attribute may optionally be sent:
103 *
104 * NLBL_MGMT_A_FAMILY
Paul Moored15c3452006-08-03 16:48:37 -0700105 *
106 * o REMOVEDEF:
107 * Sent by an application to remove the default domain mapping from the
Paul Moorefd385852006-09-25 15:56:37 -0700108 * NetLabel system, there is no payload.
Paul Moored15c3452006-08-03 16:48:37 -0700109 *
110 * o LISTDEF:
111 * This message can be sent either from an application or by the kernel in
112 * response to an application generated LISTDEF message. When sent by an
Huw Davies8f18e672016-06-27 15:02:46 -0400113 * application there may be an optional payload.
Paul Moored15c3452006-08-03 16:48:37 -0700114 *
Huw Davies8f18e672016-06-27 15:02:46 -0400115 * NLBL_MGMT_A_FAMILY
116 *
117 * On success the kernel should send a response using the following format:
118 *
119 * If the IP address selectors are not used the following attributes are
Paul Moore63c41682008-10-10 10:16:32 -0400120 * required:
Paul Moored15c3452006-08-03 16:48:37 -0700121 *
Paul Moorefd385852006-09-25 15:56:37 -0700122 * NLBL_MGMT_A_PROTOCOL
Huw Davies8f18e672016-06-27 15:02:46 -0400123 * NLBL_MGMT_A_FAMILY
Paul Moored15c3452006-08-03 16:48:37 -0700124 *
Paul Moore63c41682008-10-10 10:16:32 -0400125 * If the IP address selectors are used then the following attritbute is
126 * required:
127 *
128 * NLBL_MGMT_A_SELECTORLIST
129 *
130 * If the mapping is using the NETLBL_NLTYPE_CIPSOV4 type then the following
131 * attributes are required:
Paul Moored15c3452006-08-03 16:48:37 -0700132 *
Paul Moorefd385852006-09-25 15:56:37 -0700133 * NLBL_MGMT_A_CV4DOI
Paul Moored15c3452006-08-03 16:48:37 -0700134 *
Paul Moore63c41682008-10-10 10:16:32 -0400135 * If the mapping is using the NETLBL_NLTYPE_UNLABELED type no other
136 * attributes are required.
Paul Moored15c3452006-08-03 16:48:37 -0700137 *
Paul Moorefd385852006-09-25 15:56:37 -0700138 * o PROTOCOLS:
139 * Sent by an application to request a list of configured NetLabel protocols
140 * in the kernel. When sent by an application there is no payload and the
141 * NLM_F_DUMP flag should be set. The kernel should respond with a series of
142 * the following messages.
Paul Moored15c3452006-08-03 16:48:37 -0700143 *
Paul Moorefd385852006-09-25 15:56:37 -0700144 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -0700145 *
Paul Moorefd385852006-09-25 15:56:37 -0700146 * NLBL_MGMT_A_PROTOCOL
Paul Moored15c3452006-08-03 16:48:37 -0700147 *
148 * o VERSION:
Paul Moorefd385852006-09-25 15:56:37 -0700149 * Sent by an application to request the NetLabel version. When sent by an
150 * application there is no payload. This message type is also used by the
151 * kernel to respond to an VERSION request.
Paul Moored15c3452006-08-03 16:48:37 -0700152 *
Paul Moorefd385852006-09-25 15:56:37 -0700153 * Required attributes:
Paul Moored15c3452006-08-03 16:48:37 -0700154 *
Paul Moorefd385852006-09-25 15:56:37 -0700155 * NLBL_MGMT_A_VERSION
Paul Moored15c3452006-08-03 16:48:37 -0700156 *
157 */
158
159/* NetLabel Management commands */
160enum {
161 NLBL_MGMT_C_UNSPEC,
Paul Moored15c3452006-08-03 16:48:37 -0700162 NLBL_MGMT_C_ADD,
163 NLBL_MGMT_C_REMOVE,
Paul Moorefd385852006-09-25 15:56:37 -0700164 NLBL_MGMT_C_LISTALL,
Paul Moored15c3452006-08-03 16:48:37 -0700165 NLBL_MGMT_C_ADDDEF,
166 NLBL_MGMT_C_REMOVEDEF,
167 NLBL_MGMT_C_LISTDEF,
Paul Moorefd385852006-09-25 15:56:37 -0700168 NLBL_MGMT_C_PROTOCOLS,
Paul Moored15c3452006-08-03 16:48:37 -0700169 NLBL_MGMT_C_VERSION,
170 __NLBL_MGMT_C_MAX,
171};
Paul Moored15c3452006-08-03 16:48:37 -0700172
Paul Moorefd385852006-09-25 15:56:37 -0700173/* NetLabel Management attributes */
174enum {
175 NLBL_MGMT_A_UNSPEC,
176 NLBL_MGMT_A_DOMAIN,
177 /* (NLA_NUL_STRING)
178 * the NULL terminated LSM domain string */
179 NLBL_MGMT_A_PROTOCOL,
180 /* (NLA_U32)
181 * the NetLabel protocol type (defined by NETLBL_NLTYPE_*) */
182 NLBL_MGMT_A_VERSION,
183 /* (NLA_U32)
184 * the NetLabel protocol version number (defined by
185 * NETLBL_PROTO_VERSION) */
186 NLBL_MGMT_A_CV4DOI,
187 /* (NLA_U32)
188 * the CIPSOv4 DOI value */
Paul Moore63c41682008-10-10 10:16:32 -0400189 NLBL_MGMT_A_IPV6ADDR,
190 /* (NLA_BINARY, struct in6_addr)
191 * an IPv6 address */
192 NLBL_MGMT_A_IPV6MASK,
193 /* (NLA_BINARY, struct in6_addr)
194 * an IPv6 address mask */
195 NLBL_MGMT_A_IPV4ADDR,
196 /* (NLA_BINARY, struct in_addr)
197 * an IPv4 address */
198 NLBL_MGMT_A_IPV4MASK,
199 /* (NLA_BINARY, struct in_addr)
200 * and IPv4 address mask */
201 NLBL_MGMT_A_ADDRSELECTOR,
202 /* (NLA_NESTED)
203 * an IP address selector, must contain an address, mask, and protocol
204 * attribute plus any protocol specific attributes */
205 NLBL_MGMT_A_SELECTORLIST,
206 /* (NLA_NESTED)
207 * the selector list, there must be at least one
208 * NLBL_MGMT_A_ADDRSELECTOR attribute */
Huw Davies8f18e672016-06-27 15:02:46 -0400209 NLBL_MGMT_A_FAMILY,
210 /* (NLA_U16)
211 * The address family */
Huw Daviesdc7de732016-06-27 15:02:49 -0400212 NLBL_MGMT_A_CLPDOI,
213 /* (NLA_U32)
214 * the CALIPSO DOI value */
Paul Moorefd385852006-09-25 15:56:37 -0700215 __NLBL_MGMT_A_MAX,
216};
217#define NLBL_MGMT_A_MAX (__NLBL_MGMT_A_MAX - 1)
218
Paul Moored15c3452006-08-03 16:48:37 -0700219/* NetLabel protocol functions */
220int netlbl_mgmt_genl_init(void);
221
Paul Moorec783f1c2008-01-29 08:37:52 -0500222/* NetLabel configured protocol reference counter */
223extern atomic_t netlabel_mgmt_protocount;
Paul Moore23bcdc12007-07-18 12:28:45 -0400224
Paul Moored15c3452006-08-03 16:48:37 -0700225#endif