2 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
13 * 3. Neither the name of the project nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * $FreeBSD: src/usr.sbin/setkey/test-policy.c,v 1.1 2000/01/06 12:40:53 shin Exp $
30 * $DragonFly: src/usr.sbin/setkey/test-policy.c,v 1.3 2004/03/24 18:23:47 cpressey Exp $
33 #include <sys/types.h>
34 #include <sys/param.h>
35 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <netinet6/in6.h>
38 #include <netkey/keyv2.h>
42 #include <netinet6/ipsec.h>
45 "must_error", /* must be error */
46 "ipsec must_error", /* must be error */
47 "ipsec esp/must_error", /* must be error */
51 "bypass", /* may be error */
52 "ipsec esp", /* must be error */
55 "ipsec esp/require ah/default/203.178.141.194",
56 "ipsec ah/use/203.178.141.195 esp/use/203.178.141.194",
57 "ipsec esp/elf.wide.ydc.co.jp esp/www.wide.ydc.co.jp"
59 ipsec esp/require ah/use esp/require/10.0.0.1
60 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
61 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
62 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
63 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
64 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
65 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
66 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1
67 ah/use/3ffe:501:481d::1 ah/use/3ffe:501:481d::1ah/use/3ffe:501:481d::1
73 int test(char *buf
, int family
);
74 char *setpolicy(char *req
);
77 main(int argc __unused
, char **argv __unused
)
82 for (i
= 0; i
< sizeof(requests
)/sizeof(requests
[0]); i
++) {
83 printf("* requests:[%s]\n", requests
[i
]);
84 if ((buf
= setpolicy(requests
[i
])) == NULL
)
86 printf("\tsetlen:%d\n", PFKEY_EXTLEN(buf
));
88 printf("\tPF_INET:\n");
91 printf("\tPF_INET6:\n");
98 test(char *policy
, int family
)
100 int so
, proto
, optname
;
108 optname
= IP_IPSEC_POLICY
;
111 proto
= IPPROTO_IPV6
;
112 optname
= IPV6_IPSEC_POLICY
;
116 if ((so
= socket(family
, SOCK_DGRAM
, 0)) < 0)
119 if (setsockopt(so
, proto
, optname
, policy
, PFKEY_EXTLEN(policy
)) < 0)
120 perror("setsockopt");
122 len
= sizeof(getbuf
);
123 memset(getbuf
, 0, sizeof(getbuf
));
124 if (getsockopt(so
, proto
, optname
, getbuf
, &len
) < 0)
125 perror("getsockopt");
127 printf("\tgetlen:%d\n", len
);
129 if ((buf
= ipsec_dump_policy(getbuf
, NULL
)) == NULL
)
132 printf("\t[%s]\n", buf
);
145 if ((len
= ipsec_get_policylen(req
)) < 0) {
146 printf("ipsec_get_policylen: %s\n", ipsec_strerror());
150 if ((buf
= malloc(len
)) == NULL
) {
155 if ((len
= ipsec_set_policy(buf
, len
, req
)) < 0) {
156 printf("ipsec_set_policy: %s\n", ipsec_strerror());