turns printfs back on
[freebsd-src/fkvm-freebsd.git] / tools / regression / priv / priv_netinet_ipsec.c
blobc2014da1d246b899d9aaf3bbbd7069b750b2f190
1 /*-
2 * Copyright (c) 2007 Bjoern A. Zeeb
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR, NCIRCLE NETWORK SECURITY,
18 * INC., OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
20 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
23 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 * $FreeBSD$
30 * Confirm that privilege is required to open a pfkey socket, and that this
31 * is not allowed in jail.
34 #include <sys/types.h>
35 #include <sys/socket.h>
36 #include <net/pfkeyv2.h>
37 #include <netinet/in.h>
38 #include <netipsec/ipsec.h>
40 #include <err.h>
41 #include <errno.h>
42 #include <stdlib.h>
43 #include <unistd.h>
45 #include "main.h"
47 static char policy_bypass[] = "in bypass";
48 static char policy_entrust[] = "in entrust";
49 static char *bypassbuf = NULL;
50 static char *entrustbuf = NULL;
51 static int sd = -1;
54 static int
55 priv_netinet_ipsec_policy_bypass_setup_af(int asroot, int injail,
56 struct test *test, int af)
59 bypassbuf = ipsec_set_policy(policy_bypass, sizeof(policy_bypass) - 1);
60 if (bypassbuf == NULL) {
61 warn("%s: ipsec_set_policy(NULL)", __func__);
62 return (-1);
64 switch (af) {
65 case AF_INET:
66 sd = socket(AF_INET, SOCK_DGRAM, 0);
67 if (sd < 0) {
68 warn("%s: socket4", __func__);
69 return (-1);
71 break;
72 case AF_INET6:
73 sd = socket(AF_INET6, SOCK_DGRAM, 0);
74 if (sd < 0) {
75 warn("%s: socket6", __func__);
76 return (-1);
78 break;
79 default:
80 warnx("%s: unexpected address family", __func__);
81 return (-1);
83 return (0);
86 int
87 priv_netinet_ipsec_policy4_bypass_setup(int asroot, int injail,
88 struct test *test)
91 return (priv_netinet_ipsec_policy_bypass_setup_af(asroot, injail, test,
92 AF_INET));
95 int
96 priv_netinet_ipsec_policy6_bypass_setup(int asroot, int injail,
97 struct test *test)
100 return (priv_netinet_ipsec_policy_bypass_setup_af(asroot, injail, test,
101 AF_INET6));
106 static int
107 priv_netinet_ipsec_policy_entrust_setup_af(int asroot, int injail,
108 struct test *test, int af)
111 entrustbuf = ipsec_set_policy(policy_entrust, sizeof(policy_entrust)-1);
112 if (entrustbuf == NULL) {
113 warn("%s: ipsec_set_policy(NULL)", __func__);
114 return (-1);
116 switch (af) {
117 case AF_INET:
118 sd = socket(AF_INET, SOCK_DGRAM, 0);
119 if (sd < 0) {
120 warn("%s: socket4", __func__);
121 return (-1);
123 break;
124 case AF_INET6:
125 sd = socket(AF_INET6, SOCK_DGRAM, 0);
126 if (sd < 0) {
127 warn("%s: socket6", __func__);
128 return (-1);
130 break;
131 default:
132 warnx("%s: unexpected address family", __func__);
133 return (-1);
135 return (0);
139 priv_netinet_ipsec_policy4_entrust_setup(int asroot, int injail,
140 struct test *test)
143 return (priv_netinet_ipsec_policy_entrust_setup_af(asroot, injail, test,
144 AF_INET));
148 priv_netinet_ipsec_policy6_entrust_setup(int asroot, int injail,
149 struct test *test)
152 return (priv_netinet_ipsec_policy_entrust_setup_af(asroot, injail, test,
153 AF_INET6));
157 void
158 priv_netinet_ipsec_pfkey(int asroot, int injail, struct test *test)
160 int error, fd;
162 fd = socket(PF_KEY, SOCK_RAW, PF_KEY_V2);
163 if (fd < 0)
164 error = -1;
165 else
166 error = 0;
168 * The injail checks are not really priv checks but making sure
169 * sys/kern/uipc_socket.c:socreate cred checks are working correctly.
171 if (asroot && injail)
172 expect("priv_netinet_ipsec_pfkey(asroot, injail)", error,
173 -1, EPROTONOSUPPORT);
174 if (asroot && !injail)
175 expect("priv_netinet_ipsec_pfkey(asroot, !injail)", error,
176 0, 0);
177 if (!asroot && injail)
178 expect("priv_netinet_ipsec_pfkey(!asroot, injail)", error,
179 -1, EPROTONOSUPPORT);
180 if (!asroot && !injail)
181 expect("priv_netinet_ipsec_pfkey(!asroot, !injail)", error,
182 -1, EPERM);
183 if (fd >= 0)
184 (void)close(fd);
188 static void
189 priv_netinet_ipsec_policy_bypass_af(int asroot, int injail, struct test *test,
190 int af)
192 int error, level, optname;
194 switch (af) {
195 case AF_INET:
196 level = IPPROTO_IP;
197 optname = IP_IPSEC_POLICY;
198 break;
199 case AF_INET6:
200 level = IPPROTO_IPV6;
201 optname = IPV6_IPSEC_POLICY;
202 break;
203 default:
204 warnx("%s: unexpected address family", __func__);
205 return;
207 error = setsockopt(sd, level, optname,
208 bypassbuf, ipsec_get_policylen(bypassbuf));
209 if (asroot && injail)
210 expect("priv_netinet_ipsec_policy_bypass(asroot, injail)",
211 error, -1, EACCES); /* see ipsec_set_policy */
212 if (asroot && !injail)
213 expect("priv_netinet_ipsec_policy_bypass(asroot, !injail)",
214 error, 0, 0);
215 if (!asroot && injail)
216 expect("priv_netinet_ipsec_policy_bypass(!asroot, injail)",
217 error, -1, EACCES); /* see ipsec_set_policy */
218 if (!asroot && !injail)
219 expect("priv_netinet_ipsec_policy_bypass(!asroot, !injail)",
220 error, -1, EACCES); /* see ipsec_set_policy */
223 void
224 priv_netinet_ipsec_policy4_bypass(int asroot, int injail, struct test *test)
227 priv_netinet_ipsec_policy_bypass_af(asroot, injail, test, AF_INET);
230 void
231 priv_netinet_ipsec_policy6_bypass(int asroot, int injail, struct test *test)
234 priv_netinet_ipsec_policy_bypass_af(asroot, injail, test, AF_INET6);
238 static void
239 priv_netinet_ipsec_policy_entrust_af(int asroot, int injail, struct test *test,
240 int af)
242 int error, level, optname;
244 switch (af) {
245 case AF_INET:
246 level = IPPROTO_IP;
247 optname = IP_IPSEC_POLICY;
248 break;
249 case AF_INET6:
250 level = IPPROTO_IPV6;
251 optname = IPV6_IPSEC_POLICY;
252 break;
253 default:
254 warnx("%s: unexpected address family", __func__);
255 return;
257 error = setsockopt(sd, level, optname,
258 entrustbuf, ipsec_get_policylen(entrustbuf));
259 if (asroot && injail)
260 expect("priv_netinet_ipsec_policy_entrust(asroot, injail)",
261 error, 0, 0); /* XXX ipsec_set_policy */
262 if (asroot && !injail)
263 expect("priv_netinet_ipsec_policy_entrust(asroot, !injail)",
264 error, 0, 0);
265 if (!asroot && injail)
266 expect("priv_netinet_ipsec_policy_entrust(!asroot, injail)",
267 error, 0, 0); /* XXX ipsec_set_policy */
268 if (!asroot && !injail)
269 expect("priv_netinet_ipsec_policy_entrust(!asroot, !injail)",
270 error, 0, 0); /* XXX ipsec_set_policy */
273 void
274 priv_netinet_ipsec_policy4_entrust(int asroot, int injail, struct test *test)
277 priv_netinet_ipsec_policy_entrust_af(asroot, injail, test, AF_INET);
280 void
281 priv_netinet_ipsec_policy6_entrust(int asroot, int injail, struct test *test)
284 priv_netinet_ipsec_policy_entrust_af(asroot, injail, test, AF_INET6);
288 void
289 priv_netinet_ipsec_policy_bypass_cleanup(int asroot, int injail,
290 struct test *test)
293 if (bypassbuf != NULL) {
294 free(bypassbuf);
295 bypassbuf = NULL;
297 if (sd >= 0) {
298 close(sd);
299 sd = -1;
303 void
304 priv_netinet_ipsec_policy_entrust_cleanup(int asroot, int injail,
305 struct test *test)
308 if (entrustbuf != NULL) {
309 free(entrustbuf);
310 entrustbuf = NULL;
312 if (sd >= 0) {
313 close(sd);
314 sd = -1;