ipsec.c revision 1.72 1 1.72 ozaki /* $NetBSD: ipsec.c,v 1.72 2017/04/18 05:25:32 ozaki-r Exp $ */
2 1.1 jonathan /* $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netipsec/ipsec.c,v 1.2.2.2 2003/07/01 01:38:13 sam Exp $ */
3 1.1 jonathan /* $KAME: ipsec.c,v 1.103 2001/05/24 07:14:18 sakane Exp $ */
4 1.1 jonathan
5 1.1 jonathan /*
6 1.1 jonathan * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 1.1 jonathan * All rights reserved.
8 1.1 jonathan *
9 1.1 jonathan * Redistribution and use in source and binary forms, with or without
10 1.1 jonathan * modification, are permitted provided that the following conditions
11 1.1 jonathan * are met:
12 1.1 jonathan * 1. Redistributions of source code must retain the above copyright
13 1.26 degroote * notice, this list of conditions and the following disclaimer.
14 1.1 jonathan * 2. Redistributions in binary form must reproduce the above copyright
15 1.26 degroote * notice, this list of conditions and the following disclaimer in the
16 1.26 degroote * documentation and/or other materials provided with the distribution.
17 1.1 jonathan * 3. Neither the name of the project nor the names of its contributors
18 1.26 degroote * may be used to endorse or promote products derived from this software
19 1.26 degroote * without specific prior written permission.
20 1.1 jonathan *
21 1.1 jonathan * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 1.1 jonathan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 jonathan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 jonathan * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 1.1 jonathan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 jonathan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 jonathan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 jonathan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 jonathan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 jonathan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 jonathan * SUCH DAMAGE.
32 1.1 jonathan */
33 1.1 jonathan
34 1.1 jonathan #include <sys/cdefs.h>
35 1.72 ozaki __KERNEL_RCSID(0, "$NetBSD: ipsec.c,v 1.72 2017/04/18 05:25:32 ozaki-r Exp $");
36 1.1 jonathan
37 1.1 jonathan /*
38 1.1 jonathan * IPsec controller part.
39 1.1 jonathan */
40 1.1 jonathan
41 1.71 ozaki #if defined(_KERNEL_OPT)
42 1.1 jonathan #include "opt_inet.h"
43 1.1 jonathan #include "opt_ipsec.h"
44 1.71 ozaki #endif
45 1.1 jonathan
46 1.1 jonathan #include <sys/param.h>
47 1.1 jonathan #include <sys/systm.h>
48 1.1 jonathan #include <sys/malloc.h>
49 1.1 jonathan #include <sys/mbuf.h>
50 1.1 jonathan #include <sys/domain.h>
51 1.1 jonathan #include <sys/protosw.h>
52 1.1 jonathan #include <sys/socket.h>
53 1.1 jonathan #include <sys/socketvar.h>
54 1.1 jonathan #include <sys/errno.h>
55 1.1 jonathan #include <sys/time.h>
56 1.1 jonathan #include <sys/kernel.h>
57 1.1 jonathan #include <sys/syslog.h>
58 1.1 jonathan #include <sys/sysctl.h>
59 1.1 jonathan #include <sys/proc.h>
60 1.44 elad #include <sys/kauth.h>
61 1.1 jonathan
62 1.1 jonathan #include <net/if.h>
63 1.1 jonathan #include <net/route.h>
64 1.1 jonathan
65 1.1 jonathan #include <netinet/in.h>
66 1.1 jonathan #include <netinet/in_systm.h>
67 1.1 jonathan #include <netinet/ip.h>
68 1.1 jonathan #include <netinet/ip_var.h>
69 1.1 jonathan #include <netinet/in_var.h>
70 1.1 jonathan #include <netinet/udp.h>
71 1.1 jonathan #include <netinet/udp_var.h>
72 1.1 jonathan #include <netinet/tcp.h>
73 1.1 jonathan #include <netinet/udp.h>
74 1.38 mlelstv #include <netinet/ip_icmp.h>
75 1.60 rmind #include <netinet/ip_private.h>
76 1.1 jonathan
77 1.1 jonathan #include <netinet/ip6.h>
78 1.1 jonathan #ifdef INET6
79 1.1 jonathan #include <netinet6/ip6_var.h>
80 1.1 jonathan #endif
81 1.1 jonathan #include <netinet/in_pcb.h>
82 1.1 jonathan #ifdef INET6
83 1.5 jonathan #include <netinet6/in6_pcb.h>
84 1.1 jonathan #include <netinet/icmp6.h>
85 1.1 jonathan #endif
86 1.1 jonathan
87 1.1 jonathan #include <netipsec/ipsec.h>
88 1.13 jonathan #include <netipsec/ipsec_var.h>
89 1.37 thorpej #include <netipsec/ipsec_private.h>
90 1.1 jonathan #ifdef INET6
91 1.1 jonathan #include <netipsec/ipsec6.h>
92 1.1 jonathan #endif
93 1.1 jonathan #include <netipsec/ah_var.h>
94 1.1 jonathan #include <netipsec/esp_var.h>
95 1.1 jonathan #include <netipsec/ipcomp.h> /*XXX*/
96 1.1 jonathan #include <netipsec/ipcomp_var.h>
97 1.1 jonathan
98 1.4 tls #include <netipsec/key.h>
99 1.4 tls #include <netipsec/keydb.h>
100 1.4 tls #include <netipsec/key_debug.h>
101 1.1 jonathan
102 1.1 jonathan #include <netipsec/xform.h>
103 1.1 jonathan
104 1.1 jonathan #include <netipsec/ipsec_osdep.h>
105 1.1 jonathan
106 1.1 jonathan #include <net/net_osdep.h>
107 1.1 jonathan
108 1.63 christos int ipsec_used = 0;
109 1.63 christos int ipsec_enabled = 1;
110 1.63 christos
111 1.1 jonathan #ifdef IPSEC_DEBUG
112 1.1 jonathan int ipsec_debug = 1;
113 1.21 rpaulo
114 1.26 degroote /*
115 1.21 rpaulo * When set to 1, IPsec will send packets with the same sequence number.
116 1.21 rpaulo * This allows to verify if the other side has proper replay attacks detection.
117 1.21 rpaulo */
118 1.21 rpaulo int ipsec_replay = 0;
119 1.21 rpaulo
120 1.21 rpaulo /*
121 1.21 rpaulo * When set 1, IPsec will send packets with corrupted HMAC.
122 1.21 rpaulo * This allows to verify if the other side properly detects modified packets.
123 1.21 rpaulo */
124 1.21 rpaulo int ipsec_integrity = 0;
125 1.1 jonathan #else
126 1.1 jonathan int ipsec_debug = 0;
127 1.1 jonathan #endif
128 1.1 jonathan
129 1.37 thorpej percpu_t *ipsecstat_percpu;
130 1.1 jonathan int ip4_ah_offsetmask = 0; /* maybe IP_DF? */
131 1.18 christos int ip4_ipsec_dfbit = 2; /* DF bit on encap. 0: clear 1: set 2: copy */
132 1.1 jonathan int ip4_esp_trans_deflev = IPSEC_LEVEL_USE;
133 1.1 jonathan int ip4_esp_net_deflev = IPSEC_LEVEL_USE;
134 1.1 jonathan int ip4_ah_trans_deflev = IPSEC_LEVEL_USE;
135 1.1 jonathan int ip4_ah_net_deflev = IPSEC_LEVEL_USE;
136 1.1 jonathan struct secpolicy ip4_def_policy;
137 1.1 jonathan int ip4_ipsec_ecn = 0; /* ECN ignore(-1)/forbidden(0)/allowed(1) */
138 1.1 jonathan int ip4_esp_randpad = -1;
139 1.9 thorpej
140 1.9 thorpej u_int ipsec_spdgen = 1; /* SPD generation # */
141 1.9 thorpej
142 1.33 degroote static struct secpolicy *ipsec_checkpcbcache (struct mbuf *,
143 1.33 degroote struct inpcbpolicy *, int);
144 1.33 degroote static int ipsec_fillpcbcache (struct inpcbpolicy *, struct mbuf *,
145 1.33 degroote struct secpolicy *, int);
146 1.33 degroote static int ipsec_invalpcbcache (struct inpcbpolicy *, int);
147 1.9 thorpej
148 1.1 jonathan /*
149 1.1 jonathan * Crypto support requirements:
150 1.1 jonathan *
151 1.1 jonathan * 1 require hardware support
152 1.1 jonathan * -1 require software support
153 1.1 jonathan * 0 take anything
154 1.1 jonathan */
155 1.1 jonathan int crypto_support = 0;
156 1.1 jonathan
157 1.5 jonathan static struct secpolicy *ipsec_getpolicybysock(struct mbuf *, u_int,
158 1.5 jonathan PCB_T *, int *);
159 1.5 jonathan
160 1.1 jonathan #ifdef __FreeBSD__
161 1.1 jonathan /* net.inet.ipsec */
162 1.1 jonathan SYSCTL_INT(_net_inet_ipsec, IPSECCTL_ESP_RANDPAD,
163 1.1 jonathan esp_randpad, CTLFLAG_RW, &ip4_esp_randpad, 0, "");
164 1.1 jonathan SYSCTL_INT(_net_inet_ipsec, OID_AUTO,
165 1.1 jonathan crypto_support, CTLFLAG_RW, &crypto_support,0, "");
166 1.21 rpaulo SYSCTL_INT(_net_inet_ipsec, OID_AUTO, test_replay, CTLFLAG_RW, &ipsec_replay, 0,
167 1.26 degroote "Emulate replay attack");
168 1.21 rpaulo SYSCTL_INT(_net_inet_ipsec, OID_AUTO, test_integrity, CTLFLAG_RW,
169 1.26 degroote &ipsec_integrity, 0, "Emulate man-in-the-middle attack");
170 1.4 tls #endif /* __FreeBSD__ */
171 1.1 jonathan
172 1.1 jonathan #ifdef INET6
173 1.1 jonathan int ip6_esp_trans_deflev = IPSEC_LEVEL_USE;
174 1.1 jonathan int ip6_esp_net_deflev = IPSEC_LEVEL_USE;
175 1.1 jonathan int ip6_ah_trans_deflev = IPSEC_LEVEL_USE;
176 1.1 jonathan int ip6_ah_net_deflev = IPSEC_LEVEL_USE;
177 1.5 jonathan struct secpolicy ip6_def_policy;
178 1.1 jonathan int ip6_ipsec_ecn = 0; /* ECN ignore(-1)/forbidden(0)/allowed(1) */
179 1.1 jonathan int ip6_esp_randpad = -1;
180 1.1 jonathan
181 1.5 jonathan
182 1.5 jonathan #ifdef __FreeBSD__
183 1.1 jonathan /* net.inet6.ipsec6 */
184 1.1 jonathan SYSCTL_INT(_net_inet6_ipsec6, IPSECCTL_ESP_RANDPAD,
185 1.1 jonathan esp_randpad, CTLFLAG_RW, &ip6_esp_randpad, 0, "");
186 1.65 ozaki #endif /* __FreeBSD__ */
187 1.1 jonathan #endif /* INET6 */
188 1.1 jonathan
189 1.33 degroote static int ipsec4_setspidx_inpcb (struct mbuf *, struct inpcb *);
190 1.1 jonathan #ifdef INET6
191 1.33 degroote static int ipsec6_setspidx_in6pcb (struct mbuf *, struct in6pcb *);
192 1.1 jonathan #endif
193 1.33 degroote static int ipsec_setspidx (struct mbuf *, struct secpolicyindex *, int);
194 1.33 degroote static void ipsec4_get_ulp (struct mbuf *m, struct secpolicyindex *, int);
195 1.33 degroote static int ipsec4_setspidx_ipaddr (struct mbuf *, struct secpolicyindex *);
196 1.1 jonathan #ifdef INET6
197 1.33 degroote static void ipsec6_get_ulp (struct mbuf *m, struct secpolicyindex *, int);
198 1.33 degroote static int ipsec6_setspidx_ipaddr (struct mbuf *, struct secpolicyindex *);
199 1.1 jonathan #endif
200 1.33 degroote static void ipsec_delpcbpolicy (struct inpcbpolicy *);
201 1.52 christos static struct secpolicy *ipsec_deepcopy_policy (const struct secpolicy *);
202 1.55 drochner static int ipsec_set_policy (struct secpolicy **, int, const void *, size_t,
203 1.55 drochner kauth_cred_t);
204 1.33 degroote static int ipsec_get_policy (struct secpolicy *, struct mbuf **);
205 1.33 degroote static void vshiftl (unsigned char *, int, int);
206 1.55 drochner static size_t ipsec_hdrsiz (const struct secpolicy *);
207 1.1 jonathan
208 1.9 thorpej /*
209 1.9 thorpej * Try to validate and use cached policy on a PCB.
210 1.9 thorpej */
211 1.9 thorpej static struct secpolicy *
212 1.9 thorpej ipsec_checkpcbcache(struct mbuf *m, struct inpcbpolicy *pcbsp, int dir)
213 1.9 thorpej {
214 1.9 thorpej struct secpolicyindex spidx;
215 1.9 thorpej
216 1.9 thorpej switch (dir) {
217 1.9 thorpej case IPSEC_DIR_INBOUND:
218 1.9 thorpej case IPSEC_DIR_OUTBOUND:
219 1.9 thorpej case IPSEC_DIR_ANY:
220 1.9 thorpej break;
221 1.9 thorpej default:
222 1.9 thorpej return NULL;
223 1.9 thorpej }
224 1.9 thorpej #ifdef DIAGNOSTIC
225 1.13 jonathan if (pcbsp == NULL) {
226 1.62 christos printf("%s: NULL pcbsp\n", __func__);
227 1.13 jonathan /* XXX panic? */
228 1.13 jonathan return NULL;
229 1.13 jonathan }
230 1.13 jonathan #endif
231 1.13 jonathan
232 1.13 jonathan #ifdef DIAGNOSTIC
233 1.9 thorpej if (dir >= sizeof(pcbsp->sp_cache)/sizeof(pcbsp->sp_cache[0]))
234 1.9 thorpej panic("dir too big in ipsec_checkpcbcache");
235 1.9 thorpej #endif
236 1.9 thorpej /* SPD table change invalidate all the caches. */
237 1.9 thorpej if (ipsec_spdgen != pcbsp->sp_cache[dir].cachegen) {
238 1.9 thorpej ipsec_invalpcbcache(pcbsp, dir);
239 1.9 thorpej return NULL;
240 1.9 thorpej }
241 1.9 thorpej if (!pcbsp->sp_cache[dir].cachesp)
242 1.9 thorpej return NULL;
243 1.9 thorpej if (pcbsp->sp_cache[dir].cachesp->state != IPSEC_SPSTATE_ALIVE) {
244 1.9 thorpej ipsec_invalpcbcache(pcbsp, dir);
245 1.9 thorpej return NULL;
246 1.9 thorpej }
247 1.9 thorpej if ((pcbsp->sp_cacheflags & IPSEC_PCBSP_CONNECTED) == 0) {
248 1.9 thorpej if (!pcbsp->sp_cache[dir].cachesp)
249 1.9 thorpej return NULL;
250 1.9 thorpej if (ipsec_setspidx(m, &spidx, 1) != 0)
251 1.9 thorpej return NULL;
252 1.29 degroote
253 1.29 degroote /*
254 1.29 degroote * We have to make an exact match here since the cached rule
255 1.29 degroote * might have lower priority than a rule that would otherwise
256 1.29 degroote * have matched the packet.
257 1.29 degroote */
258 1.29 degroote
259 1.40 cegger if (memcmp(&pcbsp->sp_cache[dir].cacheidx, &spidx, sizeof(spidx)))
260 1.29 degroote return NULL;
261 1.29 degroote
262 1.9 thorpej } else {
263 1.9 thorpej /*
264 1.9 thorpej * The pcb is connected, and the L4 code is sure that:
265 1.9 thorpej * - outgoing side uses inp_[lf]addr
266 1.9 thorpej * - incoming side looks up policy after inpcb lookup
267 1.9 thorpej * and address pair is know to be stable. We do not need
268 1.9 thorpej * to generate spidx again, nor check the address match again.
269 1.9 thorpej *
270 1.9 thorpej * For IPv4/v6 SOCK_STREAM sockets, this assumptions holds
271 1.9 thorpej * and there are calls to ipsec_pcbconn() from in_pcbconnect().
272 1.9 thorpej */
273 1.9 thorpej }
274 1.9 thorpej
275 1.23 kardel pcbsp->sp_cache[dir].cachesp->lastused = time_second;
276 1.9 thorpej pcbsp->sp_cache[dir].cachesp->refcnt++;
277 1.9 thorpej KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
278 1.62 christos printf("DP %s cause refcnt++:%d SP:%p\n", __func__,
279 1.62 christos pcbsp->sp_cache[dir].cachesp->refcnt,
280 1.62 christos pcbsp->sp_cache[dir].cachesp));
281 1.9 thorpej return pcbsp->sp_cache[dir].cachesp;
282 1.9 thorpej }
283 1.9 thorpej
284 1.9 thorpej static int
285 1.9 thorpej ipsec_fillpcbcache(struct inpcbpolicy *pcbsp, struct mbuf *m,
286 1.26 degroote struct secpolicy *sp, int dir)
287 1.9 thorpej {
288 1.9 thorpej
289 1.9 thorpej switch (dir) {
290 1.9 thorpej case IPSEC_DIR_INBOUND:
291 1.9 thorpej case IPSEC_DIR_OUTBOUND:
292 1.9 thorpej break;
293 1.9 thorpej default:
294 1.9 thorpej return EINVAL;
295 1.9 thorpej }
296 1.9 thorpej #ifdef DIAGNOSTIC
297 1.9 thorpej if (dir >= sizeof(pcbsp->sp_cache)/sizeof(pcbsp->sp_cache[0]))
298 1.9 thorpej panic("dir too big in ipsec_fillpcbcache");
299 1.9 thorpej #endif
300 1.9 thorpej
301 1.9 thorpej if (pcbsp->sp_cache[dir].cachesp)
302 1.9 thorpej KEY_FREESP(&pcbsp->sp_cache[dir].cachesp);
303 1.9 thorpej pcbsp->sp_cache[dir].cachesp = NULL;
304 1.9 thorpej pcbsp->sp_cache[dir].cachehint = IPSEC_PCBHINT_MAYBE;
305 1.9 thorpej if (ipsec_setspidx(m, &pcbsp->sp_cache[dir].cacheidx, 1) != 0) {
306 1.9 thorpej return EINVAL;
307 1.9 thorpej }
308 1.9 thorpej pcbsp->sp_cache[dir].cachesp = sp;
309 1.9 thorpej if (pcbsp->sp_cache[dir].cachesp) {
310 1.9 thorpej pcbsp->sp_cache[dir].cachesp->refcnt++;
311 1.9 thorpej KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
312 1.62 christos printf("DP %s cause refcnt++:%d SP:%p\n", __func__,
313 1.62 christos pcbsp->sp_cache[dir].cachesp->refcnt,
314 1.62 christos pcbsp->sp_cache[dir].cachesp));
315 1.9 thorpej
316 1.9 thorpej /*
317 1.9 thorpej * If the PCB is connected, we can remember a hint to
318 1.9 thorpej * possibly short-circuit IPsec processing in other places.
319 1.9 thorpej */
320 1.9 thorpej if (pcbsp->sp_cacheflags & IPSEC_PCBSP_CONNECTED) {
321 1.9 thorpej switch (pcbsp->sp_cache[dir].cachesp->policy) {
322 1.9 thorpej case IPSEC_POLICY_NONE:
323 1.9 thorpej case IPSEC_POLICY_BYPASS:
324 1.9 thorpej pcbsp->sp_cache[dir].cachehint =
325 1.26 degroote IPSEC_PCBHINT_NO;
326 1.9 thorpej break;
327 1.9 thorpej default:
328 1.9 thorpej pcbsp->sp_cache[dir].cachehint =
329 1.26 degroote IPSEC_PCBHINT_YES;
330 1.9 thorpej }
331 1.9 thorpej }
332 1.9 thorpej }
333 1.9 thorpej pcbsp->sp_cache[dir].cachegen = ipsec_spdgen;
334 1.9 thorpej
335 1.9 thorpej return 0;
336 1.9 thorpej }
337 1.9 thorpej
338 1.9 thorpej static int
339 1.9 thorpej ipsec_invalpcbcache(struct inpcbpolicy *pcbsp, int dir)
340 1.9 thorpej {
341 1.9 thorpej int i;
342 1.9 thorpej
343 1.9 thorpej for (i = IPSEC_DIR_INBOUND; i <= IPSEC_DIR_OUTBOUND; i++) {
344 1.9 thorpej if (dir != IPSEC_DIR_ANY && i != dir)
345 1.9 thorpej continue;
346 1.9 thorpej if (pcbsp->sp_cache[i].cachesp)
347 1.9 thorpej KEY_FREESP(&pcbsp->sp_cache[i].cachesp);
348 1.9 thorpej pcbsp->sp_cache[i].cachesp = NULL;
349 1.9 thorpej pcbsp->sp_cache[i].cachehint = IPSEC_PCBHINT_MAYBE;
350 1.9 thorpej pcbsp->sp_cache[i].cachegen = 0;
351 1.41 cegger memset(&pcbsp->sp_cache[i].cacheidx, 0,
352 1.26 degroote sizeof(pcbsp->sp_cache[i].cacheidx));
353 1.9 thorpej }
354 1.9 thorpej return 0;
355 1.9 thorpej }
356 1.9 thorpej
357 1.9 thorpej void
358 1.9 thorpej ipsec_pcbconn(struct inpcbpolicy *pcbsp)
359 1.9 thorpej {
360 1.9 thorpej
361 1.9 thorpej pcbsp->sp_cacheflags |= IPSEC_PCBSP_CONNECTED;
362 1.9 thorpej ipsec_invalpcbcache(pcbsp, IPSEC_DIR_ANY);
363 1.9 thorpej }
364 1.9 thorpej
365 1.9 thorpej void
366 1.9 thorpej ipsec_pcbdisconn(struct inpcbpolicy *pcbsp)
367 1.9 thorpej {
368 1.9 thorpej
369 1.9 thorpej pcbsp->sp_cacheflags &= ~IPSEC_PCBSP_CONNECTED;
370 1.9 thorpej ipsec_invalpcbcache(pcbsp, IPSEC_DIR_ANY);
371 1.9 thorpej }
372 1.9 thorpej
373 1.9 thorpej void
374 1.9 thorpej ipsec_invalpcbcacheall(void)
375 1.9 thorpej {
376 1.9 thorpej
377 1.9 thorpej if (ipsec_spdgen == UINT_MAX)
378 1.9 thorpej ipsec_spdgen = 1;
379 1.9 thorpej else
380 1.9 thorpej ipsec_spdgen++;
381 1.9 thorpej }
382 1.9 thorpej
383 1.1 jonathan /*
384 1.1 jonathan * Return a held reference to the default SP.
385 1.1 jonathan */
386 1.1 jonathan static struct secpolicy *
387 1.51 drochner key_allocsp_default(int af, const char *where, int tag)
388 1.1 jonathan {
389 1.1 jonathan struct secpolicy *sp;
390 1.1 jonathan
391 1.1 jonathan KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
392 1.62 christos printf("DP %s from %s:%u\n", __func__, where, tag));
393 1.1 jonathan
394 1.31 degroote switch(af) {
395 1.31 degroote case AF_INET:
396 1.31 degroote sp = &ip4_def_policy;
397 1.31 degroote break;
398 1.31 degroote #ifdef INET6
399 1.31 degroote case AF_INET6:
400 1.31 degroote sp = &ip6_def_policy;
401 1.31 degroote break;
402 1.31 degroote #endif
403 1.31 degroote default:
404 1.31 degroote KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
405 1.62 christos printf("%s: unexpected protocol family %u\n", __func__,
406 1.62 christos af));
407 1.31 degroote return NULL;
408 1.31 degroote }
409 1.31 degroote
410 1.1 jonathan if (sp->policy != IPSEC_POLICY_DISCARD &&
411 1.26 degroote sp->policy != IPSEC_POLICY_NONE) {
412 1.1 jonathan ipseclog((LOG_INFO, "fixed system default policy: %d->%d\n",
413 1.62 christos sp->policy, IPSEC_POLICY_NONE));
414 1.1 jonathan sp->policy = IPSEC_POLICY_NONE;
415 1.1 jonathan }
416 1.1 jonathan sp->refcnt++;
417 1.1 jonathan
418 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_STAMP, printf("DP %s returns SP:%p (%u)\n",
419 1.62 christos __func__, sp, sp->refcnt));
420 1.1 jonathan return sp;
421 1.1 jonathan }
422 1.31 degroote #define KEY_ALLOCSP_DEFAULT(af) \
423 1.31 degroote key_allocsp_default((af),__FILE__, __LINE__)
424 1.1 jonathan
425 1.1 jonathan /*
426 1.1 jonathan * For OUTBOUND packet having a socket. Searching SPD for packet,
427 1.1 jonathan * and return a pointer to SP.
428 1.1 jonathan * OUT: NULL: no apropreate SP found, the following value is set to error.
429 1.1 jonathan * 0 : bypass
430 1.1 jonathan * EACCES : discard packet.
431 1.1 jonathan * ENOENT : ipsec_acquire() in progress, maybe.
432 1.7 wiz * others : error occurred.
433 1.1 jonathan * others: a pointer to SP
434 1.1 jonathan *
435 1.20 wiz * NOTE: IPv6 mapped address concern is implemented here.
436 1.1 jonathan */
437 1.1 jonathan struct secpolicy *
438 1.55 drochner ipsec_getpolicy(const struct tdb_ident *tdbi, u_int dir)
439 1.1 jonathan {
440 1.1 jonathan struct secpolicy *sp;
441 1.1 jonathan
442 1.62 christos IPSEC_ASSERT(tdbi != NULL, ("%s: null tdbi", __func__));
443 1.1 jonathan IPSEC_ASSERT(dir == IPSEC_DIR_INBOUND || dir == IPSEC_DIR_OUTBOUND,
444 1.62 christos ("%s: invalid direction %u", __func__, dir));
445 1.1 jonathan
446 1.1 jonathan sp = KEY_ALLOCSP2(tdbi->spi, &tdbi->dst, tdbi->proto, dir);
447 1.1 jonathan if (sp == NULL) /*XXX????*/
448 1.31 degroote sp = KEY_ALLOCSP_DEFAULT(tdbi->dst.sa.sa_family);
449 1.62 christos IPSEC_ASSERT(sp != NULL, ("%s: null SP", __func__));
450 1.1 jonathan return sp;
451 1.1 jonathan }
452 1.1 jonathan
453 1.1 jonathan /*
454 1.1 jonathan * For OUTBOUND packet having a socket. Searching SPD for packet,
455 1.1 jonathan * and return a pointer to SP.
456 1.1 jonathan * OUT: NULL: no apropreate SP found, the following value is set to error.
457 1.1 jonathan * 0 : bypass
458 1.1 jonathan * EACCES : discard packet.
459 1.1 jonathan * ENOENT : ipsec_acquire() in progress, maybe.
460 1.7 wiz * others : error occurred.
461 1.1 jonathan * others: a pointer to SP
462 1.1 jonathan *
463 1.20 wiz * NOTE: IPv6 mapped address concern is implemented here.
464 1.1 jonathan */
465 1.5 jonathan static struct secpolicy *
466 1.33 degroote ipsec_getpolicybysock(struct mbuf *m, u_int dir, PCB_T *inp, int *error)
467 1.1 jonathan {
468 1.1 jonathan struct inpcbpolicy *pcbsp = NULL;
469 1.1 jonathan struct secpolicy *currsp = NULL; /* policy on socket */
470 1.1 jonathan struct secpolicy *sp;
471 1.1 jonathan int af;
472 1.1 jonathan
473 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
474 1.62 christos IPSEC_ASSERT(inp != NULL, ("%s: null inpcb", __func__));
475 1.62 christos IPSEC_ASSERT(error != NULL, ("%s: null error", __func__));
476 1.1 jonathan IPSEC_ASSERT(dir == IPSEC_DIR_INBOUND || dir == IPSEC_DIR_OUTBOUND,
477 1.62 christos ("%s: invalid direction %u", __func__, dir));
478 1.1 jonathan
479 1.62 christos IPSEC_ASSERT(PCB_SOCKET(inp) != NULL, ("%s: null socket", __func__));
480 1.5 jonathan
481 1.5 jonathan /* XXX FIXME inpcb/in6pcb vs socket*/
482 1.5 jonathan af = PCB_FAMILY(inp);
483 1.1 jonathan IPSEC_ASSERT(af == AF_INET || af == AF_INET6,
484 1.62 christos ("%s: unexpected protocol family %u", __func__, af));
485 1.1 jonathan
486 1.13 jonathan IPSEC_ASSERT(inp->inph_sp != NULL, ("null PCB policy cache"));
487 1.9 thorpej /* If we have a cached entry, and if it is still valid, use it. */
488 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_SPDCACHELOOKUP);
489 1.9 thorpej currsp = ipsec_checkpcbcache(m, /*inpcb_hdr*/inp->inph_sp, dir);
490 1.9 thorpej if (currsp) {
491 1.9 thorpej *error = 0;
492 1.9 thorpej return currsp;
493 1.9 thorpej }
494 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_SPDCACHEMISS);
495 1.9 thorpej
496 1.1 jonathan switch (af) {
497 1.5 jonathan case AF_INET: {
498 1.5 jonathan struct inpcb *in4p = PCB_TO_IN4PCB(inp);
499 1.1 jonathan /* set spidx in pcb */
500 1.5 jonathan *error = ipsec4_setspidx_inpcb(m, in4p);
501 1.5 jonathan pcbsp = in4p->inp_sp;
502 1.1 jonathan break;
503 1.5 jonathan }
504 1.5 jonathan
505 1.5 jonathan #if defined(INET6)
506 1.5 jonathan case AF_INET6: {
507 1.5 jonathan struct in6pcb *in6p = PCB_TO_IN6PCB(inp);
508 1.1 jonathan /* set spidx in pcb */
509 1.5 jonathan *error = ipsec6_setspidx_in6pcb(m, in6p);
510 1.5 jonathan pcbsp = in6p->in6p_sp;
511 1.1 jonathan break;
512 1.5 jonathan }
513 1.1 jonathan #endif
514 1.1 jonathan default:
515 1.1 jonathan *error = EPFNOSUPPORT;
516 1.1 jonathan break;
517 1.1 jonathan }
518 1.1 jonathan if (*error)
519 1.1 jonathan return NULL;
520 1.1 jonathan
521 1.62 christos IPSEC_ASSERT(pcbsp != NULL, ("%s: null pcbsp", __func__));
522 1.1 jonathan switch (dir) {
523 1.1 jonathan case IPSEC_DIR_INBOUND:
524 1.1 jonathan currsp = pcbsp->sp_in;
525 1.1 jonathan break;
526 1.1 jonathan case IPSEC_DIR_OUTBOUND:
527 1.1 jonathan currsp = pcbsp->sp_out;
528 1.1 jonathan break;
529 1.1 jonathan }
530 1.62 christos IPSEC_ASSERT(currsp != NULL, ("%s: null currsp", __func__));
531 1.1 jonathan
532 1.1 jonathan if (pcbsp->priv) { /* when privilieged socket */
533 1.1 jonathan switch (currsp->policy) {
534 1.1 jonathan case IPSEC_POLICY_BYPASS:
535 1.1 jonathan case IPSEC_POLICY_IPSEC:
536 1.1 jonathan currsp->refcnt++;
537 1.1 jonathan sp = currsp;
538 1.1 jonathan break;
539 1.1 jonathan
540 1.1 jonathan case IPSEC_POLICY_ENTRUST:
541 1.1 jonathan /* look for a policy in SPD */
542 1.1 jonathan sp = KEY_ALLOCSP(&currsp->spidx, dir);
543 1.1 jonathan if (sp == NULL) /* no SP found */
544 1.31 degroote sp = KEY_ALLOCSP_DEFAULT(af);
545 1.1 jonathan break;
546 1.1 jonathan
547 1.1 jonathan default:
548 1.62 christos ipseclog((LOG_ERR, "%s: Invalid policy for PCB %d\n",
549 1.62 christos __func__, currsp->policy));
550 1.1 jonathan *error = EINVAL;
551 1.1 jonathan return NULL;
552 1.1 jonathan }
553 1.1 jonathan } else { /* unpriv, SPD has policy */
554 1.1 jonathan sp = KEY_ALLOCSP(&currsp->spidx, dir);
555 1.1 jonathan if (sp == NULL) { /* no SP found */
556 1.1 jonathan switch (currsp->policy) {
557 1.1 jonathan case IPSEC_POLICY_BYPASS:
558 1.62 christos ipseclog((LOG_ERR, "%s: Illegal policy for "
559 1.62 christos "non-priviliged defined %d\n", __func__,
560 1.62 christos currsp->policy));
561 1.1 jonathan *error = EINVAL;
562 1.1 jonathan return NULL;
563 1.1 jonathan
564 1.1 jonathan case IPSEC_POLICY_ENTRUST:
565 1.31 degroote sp = KEY_ALLOCSP_DEFAULT(af);
566 1.1 jonathan break;
567 1.1 jonathan
568 1.1 jonathan case IPSEC_POLICY_IPSEC:
569 1.1 jonathan currsp->refcnt++;
570 1.1 jonathan sp = currsp;
571 1.1 jonathan break;
572 1.1 jonathan
573 1.1 jonathan default:
574 1.62 christos ipseclog((LOG_ERR, "%s: Invalid policy for "
575 1.62 christos "PCB %d\n", __func__, currsp->policy));
576 1.1 jonathan *error = EINVAL;
577 1.1 jonathan return NULL;
578 1.1 jonathan }
579 1.1 jonathan }
580 1.1 jonathan }
581 1.1 jonathan IPSEC_ASSERT(sp != NULL,
582 1.62 christos ("%s: null SP (priv %u policy %u", __func__, pcbsp->priv,
583 1.62 christos currsp->policy));
584 1.1 jonathan KEYDEBUG(KEYDEBUG_IPSEC_STAMP,
585 1.62 christos printf("DP %s (priv %u policy %u) allocates SP:%p (refcnt %u)\n",
586 1.62 christos __func__, pcbsp->priv, currsp->policy, sp, sp->refcnt));
587 1.9 thorpej ipsec_fillpcbcache(pcbsp, m, sp, dir);
588 1.1 jonathan return sp;
589 1.1 jonathan }
590 1.1 jonathan
591 1.1 jonathan /*
592 1.1 jonathan * For FORWADING packet or OUTBOUND without a socket. Searching SPD for packet,
593 1.1 jonathan * and return a pointer to SP.
594 1.1 jonathan * OUT: positive: a pointer to the entry for security policy leaf matched.
595 1.1 jonathan * NULL: no apropreate SP found, the following value is set to error.
596 1.1 jonathan * 0 : bypass
597 1.1 jonathan * EACCES : discard packet.
598 1.1 jonathan * ENOENT : ipsec_acquire() in progress, maybe.
599 1.7 wiz * others : error occurred.
600 1.1 jonathan */
601 1.1 jonathan struct secpolicy *
602 1.33 degroote ipsec_getpolicybyaddr(struct mbuf *m, u_int dir, int flag, int *error)
603 1.1 jonathan {
604 1.1 jonathan struct secpolicyindex spidx;
605 1.1 jonathan struct secpolicy *sp;
606 1.1 jonathan
607 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
608 1.62 christos IPSEC_ASSERT(error != NULL, ("%s: null error", __func__));
609 1.1 jonathan IPSEC_ASSERT(dir == IPSEC_DIR_INBOUND || dir == IPSEC_DIR_OUTBOUND,
610 1.62 christos ("%s: invalid direction %u", __func__, dir));
611 1.1 jonathan
612 1.1 jonathan sp = NULL;
613 1.32 degroote
614 1.32 degroote /* Make an index to look for a policy. */
615 1.32 degroote *error = ipsec_setspidx(m, &spidx, (flag & IP_FORWARDING) ? 0 : 1);
616 1.32 degroote if (*error != 0) {
617 1.62 christos DPRINTF(("%s: setpidx failed, dir %u flag %u\n", __func__,
618 1.62 christos dir, flag));
619 1.41 cegger memset(&spidx, 0, sizeof (spidx));
620 1.32 degroote return NULL;
621 1.32 degroote }
622 1.32 degroote
623 1.32 degroote spidx.dir = dir;
624 1.32 degroote
625 1.1 jonathan if (key_havesp(dir)) {
626 1.1 jonathan sp = KEY_ALLOCSP(&spidx, dir);
627 1.1 jonathan }
628 1.32 degroote
629 1.1 jonathan if (sp == NULL) /* no SP found, use system default */
630 1.31 degroote sp = KEY_ALLOCSP_DEFAULT(spidx.dst.sa.sa_family);
631 1.62 christos IPSEC_ASSERT(sp != NULL, ("%s: null SP", __func__));
632 1.1 jonathan return sp;
633 1.1 jonathan }
634 1.1 jonathan
635 1.1 jonathan struct secpolicy *
636 1.33 degroote ipsec4_checkpolicy(struct mbuf *m, u_int dir, u_int flag, int *error,
637 1.33 degroote struct inpcb *inp)
638 1.1 jonathan {
639 1.1 jonathan struct secpolicy *sp;
640 1.1 jonathan
641 1.1 jonathan *error = 0;
642 1.5 jonathan
643 1.5 jonathan
644 1.5 jonathan /* XXX KAME IPv6 calls us with non-null inp but bogus inp_socket? */
645 1.5 jonathan if (inp == NULL || inp->inp_socket == NULL) {
646 1.1 jonathan sp = ipsec_getpolicybyaddr(m, dir, flag, error);
647 1.5 jonathan } else
648 1.5 jonathan sp = ipsec_getpolicybysock(m, dir, IN4PCB_TO_PCB(inp), error);
649 1.1 jonathan if (sp == NULL) {
650 1.1 jonathan IPSEC_ASSERT(*error != 0,
651 1.62 christos ("%s: getpolicy failed w/o error", __func__));
652 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_OUT_INVAL);
653 1.1 jonathan return NULL;
654 1.1 jonathan }
655 1.62 christos IPSEC_ASSERT(*error == 0, ("%s: sp w/ error set to %u", __func__,
656 1.62 christos *error));
657 1.1 jonathan switch (sp->policy) {
658 1.1 jonathan case IPSEC_POLICY_ENTRUST:
659 1.1 jonathan default:
660 1.62 christos printf("%s: invalid policy %u\n", __func__, sp->policy);
661 1.1 jonathan /* fall thru... */
662 1.1 jonathan case IPSEC_POLICY_DISCARD:
663 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_OUT_POLVIO);
664 1.1 jonathan *error = -EINVAL; /* packet is discarded by caller */
665 1.1 jonathan break;
666 1.1 jonathan case IPSEC_POLICY_BYPASS:
667 1.1 jonathan case IPSEC_POLICY_NONE:
668 1.1 jonathan KEY_FREESP(&sp);
669 1.1 jonathan sp = NULL; /* NB: force NULL result */
670 1.1 jonathan break;
671 1.1 jonathan case IPSEC_POLICY_IPSEC:
672 1.1 jonathan if (sp->req == NULL) /* acquire an SA */
673 1.1 jonathan *error = key_spdacquire(sp);
674 1.1 jonathan break;
675 1.1 jonathan }
676 1.1 jonathan if (*error != 0) {
677 1.1 jonathan KEY_FREESP(&sp);
678 1.1 jonathan sp = NULL;
679 1.45 christos DPRINTF(("%s: done, error %d\n", __func__, *error));
680 1.1 jonathan }
681 1.1 jonathan return sp;
682 1.1 jonathan }
683 1.1 jonathan
684 1.59 rmind int
685 1.70 ozaki ipsec4_output(struct mbuf *m, struct inpcb *inp, int flags,
686 1.59 rmind struct secpolicy **sp_out, u_long *mtu, bool *natt_frag, bool *done)
687 1.59 rmind {
688 1.59 rmind const struct ip *ip = mtod(m, const struct ip *);
689 1.59 rmind struct secpolicy *sp = NULL;
690 1.59 rmind int error, s;
691 1.59 rmind
692 1.59 rmind /*
693 1.59 rmind * Check the security policy (SP) for the packet and, if required,
694 1.59 rmind * do IPsec-related processing. There are two cases here; the first
695 1.59 rmind * time a packet is sent through it will be untagged and handled by
696 1.59 rmind * ipsec4_checkpolicy(). If the packet is resubmitted to ip_output
697 1.59 rmind * (e.g. after AH, ESP, etc. processing), there will be a tag to
698 1.59 rmind * bypass the lookup and related policy checking.
699 1.59 rmind */
700 1.59 rmind if (ipsec_outdone(m)) {
701 1.59 rmind return 0;
702 1.59 rmind }
703 1.59 rmind s = splsoftnet();
704 1.59 rmind if (inp && IPSEC_PCB_SKIP_IPSEC(inp->inp_sp, IPSEC_DIR_OUTBOUND)) {
705 1.59 rmind splx(s);
706 1.59 rmind return 0;
707 1.59 rmind }
708 1.59 rmind sp = ipsec4_checkpolicy(m, IPSEC_DIR_OUTBOUND, flags, &error, inp);
709 1.59 rmind
710 1.59 rmind /*
711 1.59 rmind * There are four return cases:
712 1.59 rmind * sp != NULL apply IPsec policy
713 1.59 rmind * sp == NULL, error == 0 no IPsec handling needed
714 1.59 rmind * sp == NULL, error == -EINVAL discard packet w/o error
715 1.59 rmind * sp == NULL, error != 0 discard packet, report error
716 1.59 rmind */
717 1.59 rmind if (sp == NULL) {
718 1.59 rmind splx(s);
719 1.59 rmind if (error) {
720 1.59 rmind /*
721 1.59 rmind * Hack: -EINVAL is used to signal that a packet
722 1.59 rmind * should be silently discarded. This is typically
723 1.59 rmind * because we asked key management for an SA and
724 1.59 rmind * it was delayed (e.g. kicked up to IKE).
725 1.59 rmind */
726 1.59 rmind if (error == -EINVAL)
727 1.59 rmind error = 0;
728 1.59 rmind m_freem(m);
729 1.59 rmind *done = true;
730 1.59 rmind return error;
731 1.59 rmind }
732 1.59 rmind /* No IPsec processing for this packet. */
733 1.59 rmind return 0;
734 1.59 rmind }
735 1.59 rmind *sp_out = sp;
736 1.59 rmind
737 1.59 rmind /*
738 1.59 rmind * NAT-T ESP fragmentation: do not do IPSec processing now,
739 1.59 rmind * we will do it on each fragmented packet.
740 1.59 rmind */
741 1.59 rmind if (sp->req->sav && (sp->req->sav->natt_type &
742 1.59 rmind (UDP_ENCAP_ESPINUDP|UDP_ENCAP_ESPINUDP_NON_IKE))) {
743 1.59 rmind if (ntohs(ip->ip_len) > sp->req->sav->esp_frag) {
744 1.59 rmind *mtu = sp->req->sav->esp_frag;
745 1.59 rmind *natt_frag = true;
746 1.59 rmind splx(s);
747 1.59 rmind return 0;
748 1.59 rmind }
749 1.59 rmind }
750 1.59 rmind
751 1.59 rmind /*
752 1.59 rmind * Do delayed checksums now because we send before
753 1.59 rmind * this is done in the normal processing path.
754 1.59 rmind */
755 1.59 rmind if (m->m_pkthdr.csum_flags & (M_CSUM_TCPv4|M_CSUM_UDPv4)) {
756 1.59 rmind in_delayed_cksum(m);
757 1.59 rmind m->m_pkthdr.csum_flags &= ~(M_CSUM_TCPv4|M_CSUM_UDPv4);
758 1.59 rmind }
759 1.59 rmind
760 1.59 rmind /* Note: callee frees mbuf */
761 1.59 rmind error = ipsec4_process_packet(m, sp->req, flags, 0);
762 1.59 rmind /*
763 1.59 rmind * Preserve KAME behaviour: ENOENT can be returned
764 1.59 rmind * when an SA acquire is in progress. Don't propagate
765 1.59 rmind * this to user-level; it confuses applications.
766 1.59 rmind *
767 1.59 rmind * XXX this will go away when the SADB is redone.
768 1.59 rmind */
769 1.59 rmind if (error == ENOENT)
770 1.59 rmind error = 0;
771 1.59 rmind splx(s);
772 1.59 rmind *done = true;
773 1.59 rmind return error;
774 1.59 rmind }
775 1.59 rmind
776 1.60 rmind int
777 1.60 rmind ipsec4_input(struct mbuf *m, int flags)
778 1.60 rmind {
779 1.60 rmind struct m_tag *mtag;
780 1.60 rmind struct tdb_ident *tdbi;
781 1.60 rmind struct secpolicy *sp;
782 1.60 rmind int error, s;
783 1.60 rmind
784 1.60 rmind /*
785 1.60 rmind * Check if the packet has already had IPsec processing done.
786 1.60 rmind * If so, then just pass it along. This tag gets set during AH,
787 1.60 rmind * ESP, etc. input handling, before the packet is returned to
788 1.60 rmind * the IP input queue for delivery.
789 1.60 rmind */
790 1.60 rmind mtag = m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL);
791 1.60 rmind s = splsoftnet();
792 1.60 rmind if (mtag != NULL) {
793 1.60 rmind tdbi = (struct tdb_ident *)(mtag + 1);
794 1.60 rmind sp = ipsec_getpolicy(tdbi, IPSEC_DIR_INBOUND);
795 1.60 rmind } else {
796 1.60 rmind sp = ipsec_getpolicybyaddr(m, IPSEC_DIR_INBOUND,
797 1.60 rmind IP_FORWARDING, &error);
798 1.60 rmind }
799 1.60 rmind if (sp == NULL) {
800 1.60 rmind splx(s);
801 1.60 rmind return EINVAL;
802 1.60 rmind }
803 1.60 rmind
804 1.60 rmind /*
805 1.60 rmind * Check security policy against packet attributes.
806 1.60 rmind */
807 1.60 rmind error = ipsec_in_reject(sp, m);
808 1.60 rmind KEY_FREESP(&sp);
809 1.60 rmind splx(s);
810 1.60 rmind if (error) {
811 1.60 rmind return error;
812 1.60 rmind }
813 1.60 rmind
814 1.60 rmind if (flags == 0) {
815 1.60 rmind /* We are done. */
816 1.60 rmind return 0;
817 1.60 rmind }
818 1.60 rmind
819 1.60 rmind /*
820 1.60 rmind * Peek at the outbound SP for this packet to determine if
821 1.60 rmind * it is a Fast Forward candidate.
822 1.60 rmind */
823 1.60 rmind mtag = m_tag_find(m, PACKET_TAG_IPSEC_PENDING_TDB, NULL);
824 1.60 rmind if (mtag != NULL) {
825 1.60 rmind m->m_flags &= ~M_CANFASTFWD;
826 1.60 rmind return 0;
827 1.60 rmind }
828 1.60 rmind
829 1.60 rmind s = splsoftnet();
830 1.60 rmind sp = ipsec4_checkpolicy(m, IPSEC_DIR_OUTBOUND, flags, &error, NULL);
831 1.60 rmind if (sp != NULL) {
832 1.60 rmind m->m_flags &= ~M_CANFASTFWD;
833 1.60 rmind KEY_FREESP(&sp);
834 1.60 rmind }
835 1.60 rmind splx(s);
836 1.60 rmind return 0;
837 1.60 rmind }
838 1.60 rmind
839 1.60 rmind int
840 1.60 rmind ipsec4_forward(struct mbuf *m, int *destmtu)
841 1.60 rmind {
842 1.60 rmind /*
843 1.60 rmind * If the packet is routed over IPsec tunnel, tell the
844 1.60 rmind * originator the tunnel MTU.
845 1.60 rmind * tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
846 1.60 rmind * XXX quickhack!!!
847 1.60 rmind */
848 1.60 rmind struct secpolicy *sp;
849 1.60 rmind size_t ipsechdr;
850 1.60 rmind int error;
851 1.60 rmind
852 1.60 rmind sp = ipsec4_getpolicybyaddr(m,
853 1.60 rmind IPSEC_DIR_OUTBOUND, IP_FORWARDING, &error);
854 1.60 rmind if (sp == NULL) {
855 1.60 rmind return EINVAL;
856 1.60 rmind }
857 1.60 rmind
858 1.60 rmind /* Count IPsec header size. */
859 1.60 rmind ipsechdr = ipsec4_hdrsiz(m, IPSEC_DIR_OUTBOUND, NULL);
860 1.60 rmind
861 1.60 rmind /*
862 1.60 rmind * Find the correct route for outer IPv4 header, compute tunnel MTU.
863 1.60 rmind */
864 1.60 rmind if (sp->req && sp->req->sav && sp->req->sav->sah) {
865 1.60 rmind struct route *ro;
866 1.60 rmind struct rtentry *rt;
867 1.60 rmind
868 1.60 rmind ro = &sp->req->sav->sah->sa_route;
869 1.60 rmind rt = rtcache_validate(ro);
870 1.60 rmind if (rt && rt->rt_ifp) {
871 1.60 rmind *destmtu = rt->rt_rmx.rmx_mtu ?
872 1.60 rmind rt->rt_rmx.rmx_mtu : rt->rt_ifp->if_mtu;
873 1.60 rmind *destmtu -= ipsechdr;
874 1.60 rmind }
875 1.67 ozaki rtcache_unref(rt, ro);
876 1.60 rmind }
877 1.60 rmind KEY_FREESP(&sp);
878 1.60 rmind return 0;
879 1.60 rmind }
880 1.60 rmind
881 1.26 degroote #ifdef INET6
882 1.26 degroote struct secpolicy *
883 1.33 degroote ipsec6_checkpolicy(struct mbuf *m, u_int dir, u_int flag, int *error,
884 1.33 degroote struct in6pcb *in6p)
885 1.26 degroote {
886 1.26 degroote struct secpolicy *sp;
887 1.26 degroote
888 1.26 degroote *error = 0;
889 1.26 degroote
890 1.26 degroote
891 1.26 degroote /* XXX KAME IPv6 calls us with non-null inp but bogus inp_socket? */
892 1.26 degroote if (in6p == NULL || in6p->in6p_socket == NULL) {
893 1.26 degroote sp = ipsec_getpolicybyaddr(m, dir, flag, error);
894 1.26 degroote } else
895 1.26 degroote sp = ipsec_getpolicybysock(m, dir, IN6PCB_TO_PCB(in6p), error);
896 1.26 degroote if (sp == NULL) {
897 1.62 christos IPSEC_ASSERT(*error != 0, ("%s: getpolicy failed w/o error",
898 1.62 christos __func__));
899 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_OUT_INVAL);
900 1.26 degroote return NULL;
901 1.26 degroote }
902 1.62 christos IPSEC_ASSERT(*error == 0, ("%s: sp w/ error set to %u", __func__,
903 1.62 christos *error));
904 1.26 degroote switch (sp->policy) {
905 1.26 degroote case IPSEC_POLICY_ENTRUST:
906 1.26 degroote default:
907 1.62 christos printf("%s: invalid policy %u\n", __func__, sp->policy);
908 1.26 degroote /* fall thru... */
909 1.26 degroote case IPSEC_POLICY_DISCARD:
910 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_OUT_POLVIO);
911 1.26 degroote *error = -EINVAL; /* packet is discarded by caller */
912 1.26 degroote break;
913 1.26 degroote case IPSEC_POLICY_BYPASS:
914 1.26 degroote case IPSEC_POLICY_NONE:
915 1.26 degroote KEY_FREESP(&sp);
916 1.26 degroote sp = NULL; /* NB: force NULL result */
917 1.26 degroote break;
918 1.26 degroote case IPSEC_POLICY_IPSEC:
919 1.26 degroote if (sp->req == NULL) /* acquire an SA */
920 1.26 degroote *error = key_spdacquire(sp);
921 1.26 degroote break;
922 1.26 degroote }
923 1.26 degroote if (*error != 0) {
924 1.26 degroote KEY_FREESP(&sp);
925 1.26 degroote sp = NULL;
926 1.45 christos DPRINTF(("%s: done, error %d\n", __func__, *error));
927 1.26 degroote }
928 1.26 degroote return sp;
929 1.26 degroote }
930 1.26 degroote #endif /* INET6 */
931 1.26 degroote
932 1.1 jonathan static int
933 1.55 drochner ipsec4_setspidx_inpcb(struct mbuf *m, struct inpcb *pcb)
934 1.1 jonathan {
935 1.1 jonathan int error;
936 1.1 jonathan
937 1.62 christos IPSEC_ASSERT(pcb != NULL, ("%s: null pcb", __func__));
938 1.62 christos IPSEC_ASSERT(pcb->inp_sp != NULL, ("%s: null inp_sp", __func__));
939 1.1 jonathan IPSEC_ASSERT(pcb->inp_sp->sp_out != NULL && pcb->inp_sp->sp_in != NULL,
940 1.62 christos ("%s: null sp_in || sp_out", __func__));
941 1.1 jonathan
942 1.1 jonathan error = ipsec_setspidx(m, &pcb->inp_sp->sp_in->spidx, 1);
943 1.1 jonathan if (error == 0) {
944 1.1 jonathan pcb->inp_sp->sp_in->spidx.dir = IPSEC_DIR_INBOUND;
945 1.1 jonathan pcb->inp_sp->sp_out->spidx = pcb->inp_sp->sp_in->spidx;
946 1.1 jonathan pcb->inp_sp->sp_out->spidx.dir = IPSEC_DIR_OUTBOUND;
947 1.1 jonathan } else {
948 1.41 cegger memset(&pcb->inp_sp->sp_in->spidx, 0,
949 1.1 jonathan sizeof (pcb->inp_sp->sp_in->spidx));
950 1.41 cegger memset(&pcb->inp_sp->sp_out->spidx, 0,
951 1.1 jonathan sizeof (pcb->inp_sp->sp_in->spidx));
952 1.1 jonathan }
953 1.1 jonathan return error;
954 1.1 jonathan }
955 1.1 jonathan
956 1.1 jonathan #ifdef INET6
957 1.1 jonathan static int
958 1.33 degroote ipsec6_setspidx_in6pcb(struct mbuf *m, struct in6pcb *pcb)
959 1.1 jonathan {
960 1.1 jonathan struct secpolicyindex *spidx;
961 1.1 jonathan int error;
962 1.1 jonathan
963 1.62 christos IPSEC_ASSERT(pcb != NULL, ("%s: null pcb", __func__));
964 1.62 christos IPSEC_ASSERT(pcb->in6p_sp != NULL, ("%s: null inp_sp", __func__));
965 1.62 christos IPSEC_ASSERT(pcb->in6p_sp->sp_out != NULL &&
966 1.62 christos pcb->in6p_sp->sp_in != NULL, ("%s: null sp_in || sp_out",
967 1.62 christos __func__));
968 1.1 jonathan
969 1.41 cegger memset(&pcb->in6p_sp->sp_in->spidx, 0, sizeof(*spidx));
970 1.41 cegger memset(&pcb->in6p_sp->sp_out->spidx, 0, sizeof(*spidx));
971 1.1 jonathan
972 1.1 jonathan spidx = &pcb->in6p_sp->sp_in->spidx;
973 1.1 jonathan error = ipsec_setspidx(m, spidx, 1);
974 1.1 jonathan if (error)
975 1.1 jonathan goto bad;
976 1.1 jonathan spidx->dir = IPSEC_DIR_INBOUND;
977 1.1 jonathan
978 1.1 jonathan spidx = &pcb->in6p_sp->sp_out->spidx;
979 1.1 jonathan error = ipsec_setspidx(m, spidx, 1);
980 1.1 jonathan if (error)
981 1.1 jonathan goto bad;
982 1.1 jonathan spidx->dir = IPSEC_DIR_OUTBOUND;
983 1.1 jonathan
984 1.1 jonathan return 0;
985 1.1 jonathan
986 1.1 jonathan bad:
987 1.41 cegger memset(&pcb->in6p_sp->sp_in->spidx, 0, sizeof(*spidx));
988 1.41 cegger memset(&pcb->in6p_sp->sp_out->spidx, 0, sizeof(*spidx));
989 1.1 jonathan return error;
990 1.1 jonathan }
991 1.1 jonathan #endif
992 1.1 jonathan
993 1.1 jonathan /*
994 1.1 jonathan * configure security policy index (src/dst/proto/sport/dport)
995 1.1 jonathan * by looking at the content of mbuf.
996 1.1 jonathan * the caller is responsible for error recovery (like clearing up spidx).
997 1.1 jonathan */
998 1.1 jonathan static int
999 1.33 degroote ipsec_setspidx(struct mbuf *m, struct secpolicyindex *spidx, int needport)
1000 1.1 jonathan {
1001 1.1 jonathan struct ip *ip = NULL;
1002 1.1 jonathan struct ip ipbuf;
1003 1.1 jonathan u_int v;
1004 1.1 jonathan struct mbuf *n;
1005 1.1 jonathan int len;
1006 1.1 jonathan int error;
1007 1.1 jonathan
1008 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
1009 1.1 jonathan
1010 1.1 jonathan /*
1011 1.1 jonathan * validate m->m_pkthdr.len. we see incorrect length if we
1012 1.1 jonathan * mistakenly call this function with inconsistent mbuf chain
1013 1.1 jonathan * (like 4.4BSD tcp/udp processing). XXX should we panic here?
1014 1.1 jonathan */
1015 1.1 jonathan len = 0;
1016 1.1 jonathan for (n = m; n; n = n->m_next)
1017 1.1 jonathan len += n->m_len;
1018 1.1 jonathan if (m->m_pkthdr.len != len) {
1019 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s: total of m_len(%d) "
1020 1.62 christos "!= pkthdr.len(%d), ignored.\n", __func__, len,
1021 1.62 christos m->m_pkthdr.len));
1022 1.1 jonathan return EINVAL;
1023 1.1 jonathan }
1024 1.1 jonathan
1025 1.1 jonathan if (m->m_pkthdr.len < sizeof(struct ip)) {
1026 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s: pkthdr.len(%d) < "
1027 1.62 christos "sizeof(struct ip), ignored.\n", __func__,
1028 1.62 christos m->m_pkthdr.len));
1029 1.1 jonathan return EINVAL;
1030 1.1 jonathan }
1031 1.1 jonathan
1032 1.1 jonathan if (m->m_len >= sizeof(*ip))
1033 1.1 jonathan ip = mtod(m, struct ip *);
1034 1.1 jonathan else {
1035 1.28 degroote m_copydata(m, 0, sizeof(ipbuf), &ipbuf);
1036 1.1 jonathan ip = &ipbuf;
1037 1.1 jonathan }
1038 1.1 jonathan v = ip->ip_v;
1039 1.1 jonathan switch (v) {
1040 1.1 jonathan case 4:
1041 1.1 jonathan error = ipsec4_setspidx_ipaddr(m, spidx);
1042 1.1 jonathan if (error)
1043 1.1 jonathan return error;
1044 1.1 jonathan ipsec4_get_ulp(m, spidx, needport);
1045 1.1 jonathan return 0;
1046 1.1 jonathan #ifdef INET6
1047 1.1 jonathan case 6:
1048 1.1 jonathan if (m->m_pkthdr.len < sizeof(struct ip6_hdr)) {
1049 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s: "
1050 1.62 christos "pkthdr.len(%d) < sizeof(struct ip6_hdr), "
1051 1.62 christos "ignored.\n", __func__, m->m_pkthdr.len));
1052 1.1 jonathan return EINVAL;
1053 1.1 jonathan }
1054 1.1 jonathan error = ipsec6_setspidx_ipaddr(m, spidx);
1055 1.1 jonathan if (error)
1056 1.1 jonathan return error;
1057 1.1 jonathan ipsec6_get_ulp(m, spidx, needport);
1058 1.1 jonathan return 0;
1059 1.1 jonathan #endif
1060 1.1 jonathan default:
1061 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s: unknown IP version "
1062 1.62 christos "%u, ignored.\n", __func__, v));
1063 1.1 jonathan return EINVAL;
1064 1.1 jonathan }
1065 1.1 jonathan }
1066 1.1 jonathan
1067 1.1 jonathan static void
1068 1.1 jonathan ipsec4_get_ulp(struct mbuf *m, struct secpolicyindex *spidx, int needport)
1069 1.1 jonathan {
1070 1.1 jonathan u_int8_t nxt;
1071 1.1 jonathan int off;
1072 1.1 jonathan
1073 1.1 jonathan /* sanity check */
1074 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
1075 1.1 jonathan IPSEC_ASSERT(m->m_pkthdr.len >= sizeof(struct ip),
1076 1.62 christos ("%s: packet too short", __func__));
1077 1.1 jonathan
1078 1.1 jonathan /* NB: ip_input() flips it into host endian XXX need more checking */
1079 1.8 thorpej if (m->m_len >= sizeof(struct ip)) {
1080 1.1 jonathan struct ip *ip = mtod(m, struct ip *);
1081 1.34 adrianp if (ip->ip_off & IP_OFF_CONVERT(IP_MF | IP_OFFMASK))
1082 1.1 jonathan goto done;
1083 1.1 jonathan off = ip->ip_hl << 2;
1084 1.1 jonathan nxt = ip->ip_p;
1085 1.1 jonathan } else {
1086 1.1 jonathan struct ip ih;
1087 1.1 jonathan
1088 1.28 degroote m_copydata(m, 0, sizeof (struct ip), &ih);
1089 1.34 adrianp if (ih.ip_off & IP_OFF_CONVERT(IP_MF | IP_OFFMASK))
1090 1.1 jonathan goto done;
1091 1.1 jonathan off = ih.ip_hl << 2;
1092 1.1 jonathan nxt = ih.ip_p;
1093 1.1 jonathan }
1094 1.1 jonathan
1095 1.1 jonathan while (off < m->m_pkthdr.len) {
1096 1.1 jonathan struct ip6_ext ip6e;
1097 1.1 jonathan struct tcphdr th;
1098 1.1 jonathan struct udphdr uh;
1099 1.38 mlelstv struct icmp icmph;
1100 1.1 jonathan
1101 1.1 jonathan switch (nxt) {
1102 1.1 jonathan case IPPROTO_TCP:
1103 1.1 jonathan spidx->ul_proto = nxt;
1104 1.1 jonathan if (!needport)
1105 1.1 jonathan goto done_proto;
1106 1.1 jonathan if (off + sizeof(struct tcphdr) > m->m_pkthdr.len)
1107 1.1 jonathan goto done;
1108 1.28 degroote m_copydata(m, off, sizeof (th), &th);
1109 1.1 jonathan spidx->src.sin.sin_port = th.th_sport;
1110 1.1 jonathan spidx->dst.sin.sin_port = th.th_dport;
1111 1.1 jonathan return;
1112 1.1 jonathan case IPPROTO_UDP:
1113 1.1 jonathan spidx->ul_proto = nxt;
1114 1.1 jonathan if (!needport)
1115 1.1 jonathan goto done_proto;
1116 1.1 jonathan if (off + sizeof(struct udphdr) > m->m_pkthdr.len)
1117 1.1 jonathan goto done;
1118 1.28 degroote m_copydata(m, off, sizeof (uh), &uh);
1119 1.1 jonathan spidx->src.sin.sin_port = uh.uh_sport;
1120 1.1 jonathan spidx->dst.sin.sin_port = uh.uh_dport;
1121 1.1 jonathan return;
1122 1.1 jonathan case IPPROTO_AH:
1123 1.1 jonathan if (m->m_pkthdr.len > off + sizeof(ip6e))
1124 1.1 jonathan goto done;
1125 1.1 jonathan /* XXX sigh, this works but is totally bogus */
1126 1.28 degroote m_copydata(m, off, sizeof(ip6e), &ip6e);
1127 1.1 jonathan off += (ip6e.ip6e_len + 2) << 2;
1128 1.1 jonathan nxt = ip6e.ip6e_nxt;
1129 1.1 jonathan break;
1130 1.1 jonathan case IPPROTO_ICMP:
1131 1.38 mlelstv spidx->ul_proto = nxt;
1132 1.38 mlelstv if (off + sizeof(struct icmp) > m->m_pkthdr.len)
1133 1.38 mlelstv return;
1134 1.39 degroote m_copydata(m, off, sizeof(icmph), &icmph);
1135 1.38 mlelstv ((struct sockaddr_in *)&spidx->src)->sin_port =
1136 1.38 mlelstv htons((uint16_t)icmph.icmp_type);
1137 1.38 mlelstv ((struct sockaddr_in *)&spidx->dst)->sin_port =
1138 1.38 mlelstv htons((uint16_t)icmph.icmp_code);
1139 1.38 mlelstv return;
1140 1.1 jonathan default:
1141 1.1 jonathan /* XXX intermediate headers??? */
1142 1.1 jonathan spidx->ul_proto = nxt;
1143 1.1 jonathan goto done_proto;
1144 1.1 jonathan }
1145 1.1 jonathan }
1146 1.1 jonathan done:
1147 1.1 jonathan spidx->ul_proto = IPSEC_ULPROTO_ANY;
1148 1.1 jonathan done_proto:
1149 1.1 jonathan spidx->src.sin.sin_port = IPSEC_PORT_ANY;
1150 1.1 jonathan spidx->dst.sin.sin_port = IPSEC_PORT_ANY;
1151 1.1 jonathan }
1152 1.1 jonathan
1153 1.1 jonathan /* assumes that m is sane */
1154 1.1 jonathan static int
1155 1.1 jonathan ipsec4_setspidx_ipaddr(struct mbuf *m, struct secpolicyindex *spidx)
1156 1.1 jonathan {
1157 1.1 jonathan static const struct sockaddr_in template = {
1158 1.1 jonathan sizeof (struct sockaddr_in),
1159 1.1 jonathan AF_INET,
1160 1.1 jonathan 0, { 0 }, { 0, 0, 0, 0, 0, 0, 0, 0 }
1161 1.1 jonathan };
1162 1.1 jonathan
1163 1.1 jonathan spidx->src.sin = template;
1164 1.1 jonathan spidx->dst.sin = template;
1165 1.1 jonathan
1166 1.1 jonathan if (m->m_len < sizeof (struct ip)) {
1167 1.1 jonathan m_copydata(m, offsetof(struct ip, ip_src),
1168 1.1 jonathan sizeof (struct in_addr),
1169 1.28 degroote &spidx->src.sin.sin_addr);
1170 1.1 jonathan m_copydata(m, offsetof(struct ip, ip_dst),
1171 1.1 jonathan sizeof (struct in_addr),
1172 1.28 degroote &spidx->dst.sin.sin_addr);
1173 1.1 jonathan } else {
1174 1.1 jonathan struct ip *ip = mtod(m, struct ip *);
1175 1.1 jonathan spidx->src.sin.sin_addr = ip->ip_src;
1176 1.1 jonathan spidx->dst.sin.sin_addr = ip->ip_dst;
1177 1.1 jonathan }
1178 1.1 jonathan
1179 1.1 jonathan spidx->prefs = sizeof(struct in_addr) << 3;
1180 1.1 jonathan spidx->prefd = sizeof(struct in_addr) << 3;
1181 1.1 jonathan
1182 1.1 jonathan return 0;
1183 1.1 jonathan }
1184 1.1 jonathan
1185 1.1 jonathan #ifdef INET6
1186 1.1 jonathan static void
1187 1.33 degroote ipsec6_get_ulp(struct mbuf *m, struct secpolicyindex *spidx,
1188 1.33 degroote int needport)
1189 1.1 jonathan {
1190 1.1 jonathan int off, nxt;
1191 1.1 jonathan struct tcphdr th;
1192 1.1 jonathan struct udphdr uh;
1193 1.38 mlelstv struct icmp6_hdr icmph;
1194 1.1 jonathan
1195 1.1 jonathan /* sanity check */
1196 1.1 jonathan if (m == NULL)
1197 1.62 christos panic("%s: NULL pointer was passed", __func__);
1198 1.1 jonathan
1199 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s:\n", __func__);
1200 1.62 christos kdebug_mbuf(m));
1201 1.1 jonathan
1202 1.1 jonathan /* set default */
1203 1.1 jonathan spidx->ul_proto = IPSEC_ULPROTO_ANY;
1204 1.1 jonathan ((struct sockaddr_in6 *)&spidx->src)->sin6_port = IPSEC_PORT_ANY;
1205 1.1 jonathan ((struct sockaddr_in6 *)&spidx->dst)->sin6_port = IPSEC_PORT_ANY;
1206 1.1 jonathan
1207 1.1 jonathan nxt = -1;
1208 1.1 jonathan off = ip6_lasthdr(m, 0, IPPROTO_IPV6, &nxt);
1209 1.1 jonathan if (off < 0 || m->m_pkthdr.len < off)
1210 1.1 jonathan return;
1211 1.1 jonathan
1212 1.1 jonathan switch (nxt) {
1213 1.1 jonathan case IPPROTO_TCP:
1214 1.1 jonathan spidx->ul_proto = nxt;
1215 1.1 jonathan if (!needport)
1216 1.1 jonathan break;
1217 1.1 jonathan if (off + sizeof(struct tcphdr) > m->m_pkthdr.len)
1218 1.1 jonathan break;
1219 1.28 degroote m_copydata(m, off, sizeof(th), &th);
1220 1.1 jonathan ((struct sockaddr_in6 *)&spidx->src)->sin6_port = th.th_sport;
1221 1.1 jonathan ((struct sockaddr_in6 *)&spidx->dst)->sin6_port = th.th_dport;
1222 1.1 jonathan break;
1223 1.1 jonathan case IPPROTO_UDP:
1224 1.1 jonathan spidx->ul_proto = nxt;
1225 1.1 jonathan if (!needport)
1226 1.1 jonathan break;
1227 1.1 jonathan if (off + sizeof(struct udphdr) > m->m_pkthdr.len)
1228 1.1 jonathan break;
1229 1.28 degroote m_copydata(m, off, sizeof(uh), &uh);
1230 1.1 jonathan ((struct sockaddr_in6 *)&spidx->src)->sin6_port = uh.uh_sport;
1231 1.1 jonathan ((struct sockaddr_in6 *)&spidx->dst)->sin6_port = uh.uh_dport;
1232 1.1 jonathan break;
1233 1.1 jonathan case IPPROTO_ICMPV6:
1234 1.38 mlelstv spidx->ul_proto = nxt;
1235 1.38 mlelstv if (off + sizeof(struct icmp6_hdr) > m->m_pkthdr.len)
1236 1.38 mlelstv break;
1237 1.39 degroote m_copydata(m, off, sizeof(icmph), &icmph);
1238 1.38 mlelstv ((struct sockaddr_in6 *)&spidx->src)->sin6_port =
1239 1.38 mlelstv htons((uint16_t)icmph.icmp6_type);
1240 1.38 mlelstv ((struct sockaddr_in6 *)&spidx->dst)->sin6_port =
1241 1.38 mlelstv htons((uint16_t)icmph.icmp6_code);
1242 1.38 mlelstv break;
1243 1.1 jonathan default:
1244 1.1 jonathan /* XXX intermediate headers??? */
1245 1.1 jonathan spidx->ul_proto = nxt;
1246 1.1 jonathan break;
1247 1.1 jonathan }
1248 1.1 jonathan }
1249 1.1 jonathan
1250 1.1 jonathan /* assumes that m is sane */
1251 1.1 jonathan static int
1252 1.33 degroote ipsec6_setspidx_ipaddr(struct mbuf *m, struct secpolicyindex *spidx)
1253 1.1 jonathan {
1254 1.1 jonathan struct ip6_hdr *ip6 = NULL;
1255 1.1 jonathan struct ip6_hdr ip6buf;
1256 1.1 jonathan struct sockaddr_in6 *sin6;
1257 1.1 jonathan
1258 1.1 jonathan if (m->m_len >= sizeof(*ip6))
1259 1.1 jonathan ip6 = mtod(m, struct ip6_hdr *);
1260 1.1 jonathan else {
1261 1.28 degroote m_copydata(m, 0, sizeof(ip6buf), &ip6buf);
1262 1.1 jonathan ip6 = &ip6buf;
1263 1.1 jonathan }
1264 1.1 jonathan
1265 1.1 jonathan sin6 = (struct sockaddr_in6 *)&spidx->src;
1266 1.41 cegger memset(sin6, 0, sizeof(*sin6));
1267 1.1 jonathan sin6->sin6_family = AF_INET6;
1268 1.1 jonathan sin6->sin6_len = sizeof(struct sockaddr_in6);
1269 1.43 tsutsui memcpy(&sin6->sin6_addr, &ip6->ip6_src, sizeof(ip6->ip6_src));
1270 1.1 jonathan if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src)) {
1271 1.1 jonathan sin6->sin6_addr.s6_addr16[1] = 0;
1272 1.1 jonathan sin6->sin6_scope_id = ntohs(ip6->ip6_src.s6_addr16[1]);
1273 1.1 jonathan }
1274 1.1 jonathan spidx->prefs = sizeof(struct in6_addr) << 3;
1275 1.1 jonathan
1276 1.1 jonathan sin6 = (struct sockaddr_in6 *)&spidx->dst;
1277 1.41 cegger memset(sin6, 0, sizeof(*sin6));
1278 1.1 jonathan sin6->sin6_family = AF_INET6;
1279 1.1 jonathan sin6->sin6_len = sizeof(struct sockaddr_in6);
1280 1.43 tsutsui memcpy(&sin6->sin6_addr, &ip6->ip6_dst, sizeof(ip6->ip6_dst));
1281 1.1 jonathan if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst)) {
1282 1.1 jonathan sin6->sin6_addr.s6_addr16[1] = 0;
1283 1.1 jonathan sin6->sin6_scope_id = ntohs(ip6->ip6_dst.s6_addr16[1]);
1284 1.1 jonathan }
1285 1.1 jonathan spidx->prefd = sizeof(struct in6_addr) << 3;
1286 1.1 jonathan
1287 1.1 jonathan return 0;
1288 1.1 jonathan }
1289 1.1 jonathan #endif
1290 1.1 jonathan
1291 1.1 jonathan static void
1292 1.33 degroote ipsec_delpcbpolicy(struct inpcbpolicy *p)
1293 1.1 jonathan {
1294 1.1 jonathan free(p, M_SECA);
1295 1.1 jonathan }
1296 1.1 jonathan
1297 1.1 jonathan /* initialize policy in PCB */
1298 1.1 jonathan int
1299 1.57 christos ipsec_init_policy(struct socket *so, struct inpcbpolicy **policy)
1300 1.1 jonathan {
1301 1.1 jonathan struct inpcbpolicy *new;
1302 1.1 jonathan
1303 1.1 jonathan /* sanity check. */
1304 1.57 christos if (so == NULL || policy == NULL)
1305 1.62 christos panic("%s: NULL pointer was passed", __func__);
1306 1.1 jonathan
1307 1.53 christos new = malloc(sizeof(*new), M_SECA, M_NOWAIT|M_ZERO);
1308 1.1 jonathan if (new == NULL) {
1309 1.62 christos ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
1310 1.1 jonathan return ENOBUFS;
1311 1.1 jonathan }
1312 1.1 jonathan
1313 1.1 jonathan if (IPSEC_PRIVILEGED_SO(so))
1314 1.1 jonathan new->priv = 1;
1315 1.1 jonathan else
1316 1.1 jonathan new->priv = 0;
1317 1.1 jonathan
1318 1.1 jonathan if ((new->sp_in = KEY_NEWSP()) == NULL) {
1319 1.1 jonathan ipsec_delpcbpolicy(new);
1320 1.1 jonathan return ENOBUFS;
1321 1.1 jonathan }
1322 1.1 jonathan new->sp_in->state = IPSEC_SPSTATE_ALIVE;
1323 1.1 jonathan new->sp_in->policy = IPSEC_POLICY_ENTRUST;
1324 1.1 jonathan
1325 1.1 jonathan if ((new->sp_out = KEY_NEWSP()) == NULL) {
1326 1.1 jonathan KEY_FREESP(&new->sp_in);
1327 1.1 jonathan ipsec_delpcbpolicy(new);
1328 1.1 jonathan return ENOBUFS;
1329 1.1 jonathan }
1330 1.1 jonathan new->sp_out->state = IPSEC_SPSTATE_ALIVE;
1331 1.1 jonathan new->sp_out->policy = IPSEC_POLICY_ENTRUST;
1332 1.1 jonathan
1333 1.57 christos *policy = new;
1334 1.1 jonathan
1335 1.1 jonathan return 0;
1336 1.1 jonathan }
1337 1.1 jonathan
1338 1.1 jonathan /* copy old ipsec policy into new */
1339 1.1 jonathan int
1340 1.52 christos ipsec_copy_policy(const struct inpcbpolicy *old, struct inpcbpolicy *new)
1341 1.1 jonathan {
1342 1.1 jonathan struct secpolicy *sp;
1343 1.1 jonathan
1344 1.1 jonathan sp = ipsec_deepcopy_policy(old->sp_in);
1345 1.1 jonathan if (sp) {
1346 1.1 jonathan KEY_FREESP(&new->sp_in);
1347 1.1 jonathan new->sp_in = sp;
1348 1.1 jonathan } else
1349 1.1 jonathan return ENOBUFS;
1350 1.1 jonathan
1351 1.1 jonathan sp = ipsec_deepcopy_policy(old->sp_out);
1352 1.1 jonathan if (sp) {
1353 1.1 jonathan KEY_FREESP(&new->sp_out);
1354 1.1 jonathan new->sp_out = sp;
1355 1.1 jonathan } else
1356 1.1 jonathan return ENOBUFS;
1357 1.1 jonathan
1358 1.1 jonathan new->priv = old->priv;
1359 1.1 jonathan
1360 1.1 jonathan return 0;
1361 1.1 jonathan }
1362 1.1 jonathan
1363 1.1 jonathan /* deep-copy a policy in PCB */
1364 1.1 jonathan static struct secpolicy *
1365 1.52 christos ipsec_deepcopy_policy(const struct secpolicy *src)
1366 1.1 jonathan {
1367 1.1 jonathan struct ipsecrequest *newchain = NULL;
1368 1.55 drochner const struct ipsecrequest *p;
1369 1.1 jonathan struct ipsecrequest **q;
1370 1.1 jonathan struct ipsecrequest *r;
1371 1.1 jonathan struct secpolicy *dst;
1372 1.1 jonathan
1373 1.1 jonathan if (src == NULL)
1374 1.1 jonathan return NULL;
1375 1.1 jonathan dst = KEY_NEWSP();
1376 1.1 jonathan if (dst == NULL)
1377 1.1 jonathan return NULL;
1378 1.1 jonathan
1379 1.1 jonathan /*
1380 1.1 jonathan * deep-copy IPsec request chain. This is required since struct
1381 1.1 jonathan * ipsecrequest is not reference counted.
1382 1.1 jonathan */
1383 1.1 jonathan q = &newchain;
1384 1.1 jonathan for (p = src->req; p; p = p->next) {
1385 1.53 christos *q = malloc(sizeof(**q), M_SECA, M_NOWAIT|M_ZERO);
1386 1.1 jonathan if (*q == NULL)
1387 1.1 jonathan goto fail;
1388 1.1 jonathan (*q)->next = NULL;
1389 1.1 jonathan
1390 1.1 jonathan (*q)->saidx.proto = p->saidx.proto;
1391 1.1 jonathan (*q)->saidx.mode = p->saidx.mode;
1392 1.1 jonathan (*q)->level = p->level;
1393 1.1 jonathan (*q)->saidx.reqid = p->saidx.reqid;
1394 1.1 jonathan
1395 1.43 tsutsui memcpy(&(*q)->saidx.src, &p->saidx.src, sizeof((*q)->saidx.src));
1396 1.43 tsutsui memcpy(&(*q)->saidx.dst, &p->saidx.dst, sizeof((*q)->saidx.dst));
1397 1.1 jonathan
1398 1.1 jonathan (*q)->sav = NULL;
1399 1.1 jonathan (*q)->sp = dst;
1400 1.1 jonathan
1401 1.1 jonathan q = &((*q)->next);
1402 1.1 jonathan }
1403 1.1 jonathan
1404 1.1 jonathan dst->req = newchain;
1405 1.1 jonathan dst->state = src->state;
1406 1.1 jonathan dst->policy = src->policy;
1407 1.1 jonathan /* do not touch the refcnt fields */
1408 1.1 jonathan
1409 1.1 jonathan return dst;
1410 1.1 jonathan
1411 1.1 jonathan fail:
1412 1.55 drochner for (q = &newchain; *q; q = &r) {
1413 1.55 drochner r = (*q)->next;
1414 1.55 drochner free(*q, M_SECA);
1415 1.1 jonathan }
1416 1.1 jonathan return NULL;
1417 1.1 jonathan }
1418 1.1 jonathan
1419 1.1 jonathan /* set policy and ipsec request if present. */
1420 1.1 jonathan static int
1421 1.24 christos ipsec_set_policy(
1422 1.57 christos struct secpolicy **policy,
1423 1.26 degroote int optname,
1424 1.55 drochner const void *request,
1425 1.26 degroote size_t len,
1426 1.44 elad kauth_cred_t cred
1427 1.24 christos )
1428 1.1 jonathan {
1429 1.55 drochner const struct sadb_x_policy *xpl;
1430 1.1 jonathan struct secpolicy *newsp = NULL;
1431 1.1 jonathan int error;
1432 1.1 jonathan
1433 1.1 jonathan /* sanity check. */
1434 1.57 christos if (policy == NULL || *policy == NULL || request == NULL)
1435 1.1 jonathan return EINVAL;
1436 1.1 jonathan if (len < sizeof(*xpl))
1437 1.1 jonathan return EINVAL;
1438 1.55 drochner xpl = (const struct sadb_x_policy *)request;
1439 1.1 jonathan
1440 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s: passed policy\n", __func__);
1441 1.62 christos kdebug_sadb_x_policy((const struct sadb_ext *)xpl));
1442 1.1 jonathan
1443 1.1 jonathan /* check policy type */
1444 1.1 jonathan /* ipsec_set_policy() accepts IPSEC, ENTRUST and BYPASS. */
1445 1.1 jonathan if (xpl->sadb_x_policy_type == IPSEC_POLICY_DISCARD
1446 1.1 jonathan || xpl->sadb_x_policy_type == IPSEC_POLICY_NONE)
1447 1.1 jonathan return EINVAL;
1448 1.1 jonathan
1449 1.1 jonathan /* check privileged socket */
1450 1.44 elad if (xpl->sadb_x_policy_type == IPSEC_POLICY_BYPASS) {
1451 1.56 elad error = kauth_authorize_network(cred, KAUTH_NETWORK_IPSEC,
1452 1.56 elad KAUTH_REQ_NETWORK_IPSEC_BYPASS, NULL, NULL, NULL);
1453 1.44 elad if (error)
1454 1.44 elad return (error);
1455 1.44 elad }
1456 1.1 jonathan
1457 1.1 jonathan /* allocation new SP entry */
1458 1.1 jonathan if ((newsp = key_msg2sp(xpl, len, &error)) == NULL)
1459 1.1 jonathan return error;
1460 1.1 jonathan
1461 1.1 jonathan newsp->state = IPSEC_SPSTATE_ALIVE;
1462 1.1 jonathan
1463 1.1 jonathan /* clear old SP and set new SP */
1464 1.57 christos KEY_FREESP(policy);
1465 1.57 christos *policy = newsp;
1466 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s: new policy\n", __func__);
1467 1.62 christos kdebug_secpolicy(newsp));
1468 1.1 jonathan
1469 1.1 jonathan return 0;
1470 1.1 jonathan }
1471 1.1 jonathan
1472 1.1 jonathan static int
1473 1.57 christos ipsec_get_policy(struct secpolicy *policy, struct mbuf **mp)
1474 1.1 jonathan {
1475 1.1 jonathan
1476 1.1 jonathan /* sanity check. */
1477 1.57 christos if (policy == NULL || mp == NULL)
1478 1.1 jonathan return EINVAL;
1479 1.1 jonathan
1480 1.57 christos *mp = key_sp2msg(policy);
1481 1.1 jonathan if (!*mp) {
1482 1.62 christos ipseclog((LOG_DEBUG, "%s: No more memory.\n", __func__));
1483 1.1 jonathan return ENOBUFS;
1484 1.1 jonathan }
1485 1.1 jonathan
1486 1.1 jonathan (*mp)->m_type = MT_DATA;
1487 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DUMP, printf("%s:\n", __func__);
1488 1.62 christos kdebug_mbuf(*mp));
1489 1.1 jonathan
1490 1.1 jonathan return 0;
1491 1.1 jonathan }
1492 1.1 jonathan
1493 1.1 jonathan int
1494 1.55 drochner ipsec4_set_policy(struct inpcb *inp, int optname, const void *request,
1495 1.44 elad size_t len, kauth_cred_t cred)
1496 1.1 jonathan {
1497 1.55 drochner const struct sadb_x_policy *xpl;
1498 1.57 christos struct secpolicy **policy;
1499 1.1 jonathan
1500 1.1 jonathan /* sanity check. */
1501 1.1 jonathan if (inp == NULL || request == NULL)
1502 1.1 jonathan return EINVAL;
1503 1.1 jonathan if (len < sizeof(*xpl))
1504 1.1 jonathan return EINVAL;
1505 1.55 drochner xpl = (const struct sadb_x_policy *)request;
1506 1.1 jonathan
1507 1.62 christos IPSEC_ASSERT(inp->inp_sp != NULL, ("%s: null inp->in_sp", __func__));
1508 1.1 jonathan
1509 1.1 jonathan /* select direction */
1510 1.1 jonathan switch (xpl->sadb_x_policy_dir) {
1511 1.1 jonathan case IPSEC_DIR_INBOUND:
1512 1.57 christos policy = &inp->inp_sp->sp_in;
1513 1.1 jonathan break;
1514 1.1 jonathan case IPSEC_DIR_OUTBOUND:
1515 1.57 christos policy = &inp->inp_sp->sp_out;
1516 1.1 jonathan break;
1517 1.1 jonathan default:
1518 1.62 christos ipseclog((LOG_ERR, "%s: invalid direction=%u\n", __func__,
1519 1.62 christos xpl->sadb_x_policy_dir));
1520 1.1 jonathan return EINVAL;
1521 1.1 jonathan }
1522 1.1 jonathan
1523 1.57 christos return ipsec_set_policy(policy, optname, request, len, cred);
1524 1.1 jonathan }
1525 1.1 jonathan
1526 1.1 jonathan int
1527 1.55 drochner ipsec4_get_policy(struct inpcb *inp, const void *request, size_t len,
1528 1.33 degroote struct mbuf **mp)
1529 1.1 jonathan {
1530 1.55 drochner const struct sadb_x_policy *xpl;
1531 1.57 christos struct secpolicy *policy;
1532 1.1 jonathan
1533 1.1 jonathan /* sanity check. */
1534 1.1 jonathan if (inp == NULL || request == NULL || mp == NULL)
1535 1.1 jonathan return EINVAL;
1536 1.62 christos IPSEC_ASSERT(inp->inp_sp != NULL, ("%s: null inp_sp", __func__));
1537 1.1 jonathan if (len < sizeof(*xpl))
1538 1.1 jonathan return EINVAL;
1539 1.55 drochner xpl = (const struct sadb_x_policy *)request;
1540 1.1 jonathan
1541 1.1 jonathan /* select direction */
1542 1.1 jonathan switch (xpl->sadb_x_policy_dir) {
1543 1.1 jonathan case IPSEC_DIR_INBOUND:
1544 1.57 christos policy = inp->inp_sp->sp_in;
1545 1.1 jonathan break;
1546 1.1 jonathan case IPSEC_DIR_OUTBOUND:
1547 1.57 christos policy = inp->inp_sp->sp_out;
1548 1.1 jonathan break;
1549 1.1 jonathan default:
1550 1.62 christos ipseclog((LOG_ERR, "%s: invalid direction=%u\n", __func__,
1551 1.62 christos xpl->sadb_x_policy_dir));
1552 1.1 jonathan return EINVAL;
1553 1.1 jonathan }
1554 1.1 jonathan
1555 1.57 christos return ipsec_get_policy(policy, mp);
1556 1.1 jonathan }
1557 1.1 jonathan
1558 1.1 jonathan /* delete policy in PCB */
1559 1.1 jonathan int
1560 1.33 degroote ipsec4_delete_pcbpolicy(struct inpcb *inp)
1561 1.1 jonathan {
1562 1.62 christos IPSEC_ASSERT(inp != NULL, ("%s: null inp", __func__));
1563 1.1 jonathan
1564 1.1 jonathan if (inp->inp_sp == NULL)
1565 1.1 jonathan return 0;
1566 1.1 jonathan
1567 1.1 jonathan if (inp->inp_sp->sp_in != NULL)
1568 1.1 jonathan KEY_FREESP(&inp->inp_sp->sp_in);
1569 1.1 jonathan
1570 1.1 jonathan if (inp->inp_sp->sp_out != NULL)
1571 1.1 jonathan KEY_FREESP(&inp->inp_sp->sp_out);
1572 1.1 jonathan
1573 1.49 drochner ipsec_invalpcbcache(inp->inp_sp, IPSEC_DIR_ANY);
1574 1.49 drochner
1575 1.1 jonathan ipsec_delpcbpolicy(inp->inp_sp);
1576 1.1 jonathan inp->inp_sp = NULL;
1577 1.1 jonathan
1578 1.1 jonathan return 0;
1579 1.1 jonathan }
1580 1.1 jonathan
1581 1.1 jonathan #ifdef INET6
1582 1.1 jonathan int
1583 1.55 drochner ipsec6_set_policy(struct in6pcb *in6p, int optname, const void *request,
1584 1.44 elad size_t len, kauth_cred_t cred)
1585 1.1 jonathan {
1586 1.55 drochner const struct sadb_x_policy *xpl;
1587 1.57 christos struct secpolicy **policy;
1588 1.1 jonathan
1589 1.1 jonathan /* sanity check. */
1590 1.1 jonathan if (in6p == NULL || request == NULL)
1591 1.1 jonathan return EINVAL;
1592 1.1 jonathan if (len < sizeof(*xpl))
1593 1.1 jonathan return EINVAL;
1594 1.55 drochner xpl = (const struct sadb_x_policy *)request;
1595 1.1 jonathan
1596 1.1 jonathan /* select direction */
1597 1.1 jonathan switch (xpl->sadb_x_policy_dir) {
1598 1.1 jonathan case IPSEC_DIR_INBOUND:
1599 1.57 christos policy = &in6p->in6p_sp->sp_in;
1600 1.1 jonathan break;
1601 1.1 jonathan case IPSEC_DIR_OUTBOUND:
1602 1.57 christos policy = &in6p->in6p_sp->sp_out;
1603 1.1 jonathan break;
1604 1.1 jonathan default:
1605 1.62 christos ipseclog((LOG_ERR, "%s: invalid direction=%u\n", __func__,
1606 1.62 christos xpl->sadb_x_policy_dir));
1607 1.1 jonathan return EINVAL;
1608 1.1 jonathan }
1609 1.1 jonathan
1610 1.57 christos return ipsec_set_policy(policy, optname, request, len, cred);
1611 1.1 jonathan }
1612 1.1 jonathan
1613 1.1 jonathan int
1614 1.55 drochner ipsec6_get_policy(struct in6pcb *in6p, const void *request, size_t len,
1615 1.33 degroote struct mbuf **mp)
1616 1.1 jonathan {
1617 1.55 drochner const struct sadb_x_policy *xpl;
1618 1.57 christos struct secpolicy *policy;
1619 1.1 jonathan
1620 1.1 jonathan /* sanity check. */
1621 1.1 jonathan if (in6p == NULL || request == NULL || mp == NULL)
1622 1.1 jonathan return EINVAL;
1623 1.62 christos IPSEC_ASSERT(in6p->in6p_sp != NULL, ("%s: null in6p_sp", __func__));
1624 1.1 jonathan if (len < sizeof(*xpl))
1625 1.1 jonathan return EINVAL;
1626 1.55 drochner xpl = (const struct sadb_x_policy *)request;
1627 1.1 jonathan
1628 1.1 jonathan /* select direction */
1629 1.1 jonathan switch (xpl->sadb_x_policy_dir) {
1630 1.1 jonathan case IPSEC_DIR_INBOUND:
1631 1.57 christos policy = in6p->in6p_sp->sp_in;
1632 1.1 jonathan break;
1633 1.1 jonathan case IPSEC_DIR_OUTBOUND:
1634 1.57 christos policy = in6p->in6p_sp->sp_out;
1635 1.1 jonathan break;
1636 1.1 jonathan default:
1637 1.62 christos ipseclog((LOG_ERR, "%s: invalid direction=%u\n", __func__,
1638 1.62 christos xpl->sadb_x_policy_dir));
1639 1.1 jonathan return EINVAL;
1640 1.1 jonathan }
1641 1.1 jonathan
1642 1.57 christos return ipsec_get_policy(policy, mp);
1643 1.1 jonathan }
1644 1.1 jonathan
1645 1.1 jonathan int
1646 1.33 degroote ipsec6_delete_pcbpolicy(struct in6pcb *in6p)
1647 1.1 jonathan {
1648 1.62 christos IPSEC_ASSERT(in6p != NULL, ("%s: null in6p", __func__));
1649 1.1 jonathan
1650 1.1 jonathan if (in6p->in6p_sp == NULL)
1651 1.1 jonathan return 0;
1652 1.1 jonathan
1653 1.1 jonathan if (in6p->in6p_sp->sp_in != NULL)
1654 1.1 jonathan KEY_FREESP(&in6p->in6p_sp->sp_in);
1655 1.1 jonathan
1656 1.1 jonathan if (in6p->in6p_sp->sp_out != NULL)
1657 1.1 jonathan KEY_FREESP(&in6p->in6p_sp->sp_out);
1658 1.1 jonathan
1659 1.49 drochner ipsec_invalpcbcache(in6p->in6p_sp, IPSEC_DIR_ANY);
1660 1.49 drochner
1661 1.1 jonathan ipsec_delpcbpolicy(in6p->in6p_sp);
1662 1.1 jonathan in6p->in6p_sp = NULL;
1663 1.1 jonathan
1664 1.1 jonathan return 0;
1665 1.1 jonathan }
1666 1.1 jonathan #endif
1667 1.1 jonathan
1668 1.1 jonathan /*
1669 1.1 jonathan * return current level.
1670 1.1 jonathan * Either IPSEC_LEVEL_USE or IPSEC_LEVEL_REQUIRE are always returned.
1671 1.1 jonathan */
1672 1.1 jonathan u_int
1673 1.52 christos ipsec_get_reqlevel(const struct ipsecrequest *isr)
1674 1.1 jonathan {
1675 1.1 jonathan u_int level = 0;
1676 1.1 jonathan u_int esp_trans_deflev, esp_net_deflev;
1677 1.1 jonathan u_int ah_trans_deflev, ah_net_deflev;
1678 1.1 jonathan
1679 1.62 christos IPSEC_ASSERT(isr != NULL && isr->sp != NULL, ("%s: null argument",
1680 1.62 christos __func__));
1681 1.62 christos IPSEC_ASSERT(isr->sp->spidx.src.sa.sa_family ==
1682 1.62 christos isr->sp->spidx.dst.sa.sa_family,
1683 1.62 christos ("%s: af family mismatch, src %u, dst %u", __func__,
1684 1.62 christos isr->sp->spidx.src.sa.sa_family, isr->sp->spidx.dst.sa.sa_family));
1685 1.1 jonathan
1686 1.1 jonathan /* XXX note that we have ipseclog() expanded here - code sync issue */
1687 1.62 christos #define IPSEC_CHECK_DEFAULT(lev) \
1688 1.62 christos (((lev) != IPSEC_LEVEL_USE && (lev) != IPSEC_LEVEL_REQUIRE \
1689 1.62 christos && (lev) != IPSEC_LEVEL_UNIQUE) ? \
1690 1.62 christos (ipsec_debug ? log(LOG_INFO, "fixed system default level " #lev \
1691 1.64 plunky ":%d->%d\n", (lev), IPSEC_LEVEL_REQUIRE) : (void)0), \
1692 1.62 christos (lev) = IPSEC_LEVEL_REQUIRE, (lev) \
1693 1.62 christos : (lev))
1694 1.1 jonathan
1695 1.1 jonathan /* set default level */
1696 1.1 jonathan switch (((struct sockaddr *)&isr->sp->spidx.src)->sa_family) {
1697 1.1 jonathan #ifdef INET
1698 1.1 jonathan case AF_INET:
1699 1.1 jonathan esp_trans_deflev = IPSEC_CHECK_DEFAULT(ip4_esp_trans_deflev);
1700 1.1 jonathan esp_net_deflev = IPSEC_CHECK_DEFAULT(ip4_esp_net_deflev);
1701 1.1 jonathan ah_trans_deflev = IPSEC_CHECK_DEFAULT(ip4_ah_trans_deflev);
1702 1.1 jonathan ah_net_deflev = IPSEC_CHECK_DEFAULT(ip4_ah_net_deflev);
1703 1.1 jonathan break;
1704 1.1 jonathan #endif
1705 1.1 jonathan #ifdef INET6
1706 1.1 jonathan case AF_INET6:
1707 1.1 jonathan esp_trans_deflev = IPSEC_CHECK_DEFAULT(ip6_esp_trans_deflev);
1708 1.1 jonathan esp_net_deflev = IPSEC_CHECK_DEFAULT(ip6_esp_net_deflev);
1709 1.1 jonathan ah_trans_deflev = IPSEC_CHECK_DEFAULT(ip6_ah_trans_deflev);
1710 1.1 jonathan ah_net_deflev = IPSEC_CHECK_DEFAULT(ip6_ah_net_deflev);
1711 1.1 jonathan break;
1712 1.1 jonathan #endif /* INET6 */
1713 1.1 jonathan default:
1714 1.62 christos panic("%s: unknown af %u", __func__,
1715 1.62 christos isr->sp->spidx.src.sa.sa_family);
1716 1.1 jonathan }
1717 1.1 jonathan
1718 1.1 jonathan #undef IPSEC_CHECK_DEFAULT
1719 1.1 jonathan
1720 1.1 jonathan /* set level */
1721 1.1 jonathan switch (isr->level) {
1722 1.1 jonathan case IPSEC_LEVEL_DEFAULT:
1723 1.1 jonathan switch (isr->saidx.proto) {
1724 1.1 jonathan case IPPROTO_ESP:
1725 1.1 jonathan if (isr->saidx.mode == IPSEC_MODE_TUNNEL)
1726 1.1 jonathan level = esp_net_deflev;
1727 1.1 jonathan else
1728 1.1 jonathan level = esp_trans_deflev;
1729 1.1 jonathan break;
1730 1.1 jonathan case IPPROTO_AH:
1731 1.1 jonathan if (isr->saidx.mode == IPSEC_MODE_TUNNEL)
1732 1.1 jonathan level = ah_net_deflev;
1733 1.1 jonathan else
1734 1.1 jonathan level = ah_trans_deflev;
1735 1.14 jonathan break;
1736 1.1 jonathan case IPPROTO_IPCOMP:
1737 1.1 jonathan /*
1738 1.1 jonathan * we don't really care, as IPcomp document says that
1739 1.1 jonathan * we shouldn't compress small packets
1740 1.1 jonathan */
1741 1.1 jonathan level = IPSEC_LEVEL_USE;
1742 1.1 jonathan break;
1743 1.1 jonathan default:
1744 1.62 christos panic("%s: Illegal protocol defined %u", __func__,
1745 1.62 christos isr->saidx.proto);
1746 1.1 jonathan }
1747 1.1 jonathan break;
1748 1.1 jonathan
1749 1.1 jonathan case IPSEC_LEVEL_USE:
1750 1.1 jonathan case IPSEC_LEVEL_REQUIRE:
1751 1.1 jonathan level = isr->level;
1752 1.1 jonathan break;
1753 1.1 jonathan case IPSEC_LEVEL_UNIQUE:
1754 1.1 jonathan level = IPSEC_LEVEL_REQUIRE;
1755 1.1 jonathan break;
1756 1.1 jonathan
1757 1.1 jonathan default:
1758 1.62 christos panic("%s: Illegal IPsec level %u", __func__, isr->level);
1759 1.1 jonathan }
1760 1.1 jonathan
1761 1.1 jonathan return level;
1762 1.1 jonathan }
1763 1.1 jonathan
1764 1.1 jonathan /*
1765 1.1 jonathan * Check security policy requirements against the actual
1766 1.1 jonathan * packet contents. Return one if the packet should be
1767 1.1 jonathan * reject as "invalid"; otherwiser return zero to have the
1768 1.1 jonathan * packet treated as "valid".
1769 1.1 jonathan *
1770 1.1 jonathan * OUT:
1771 1.1 jonathan * 0: valid
1772 1.1 jonathan * 1: invalid
1773 1.1 jonathan */
1774 1.1 jonathan int
1775 1.52 christos ipsec_in_reject(const struct secpolicy *sp, const struct mbuf *m)
1776 1.1 jonathan {
1777 1.1 jonathan struct ipsecrequest *isr;
1778 1.1 jonathan int need_auth;
1779 1.1 jonathan
1780 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DATA, printf("%s: using SP\n", __func__);
1781 1.62 christos kdebug_secpolicy(sp));
1782 1.1 jonathan
1783 1.1 jonathan /* check policy */
1784 1.1 jonathan switch (sp->policy) {
1785 1.1 jonathan case IPSEC_POLICY_DISCARD:
1786 1.1 jonathan return 1;
1787 1.1 jonathan case IPSEC_POLICY_BYPASS:
1788 1.1 jonathan case IPSEC_POLICY_NONE:
1789 1.1 jonathan return 0;
1790 1.1 jonathan }
1791 1.1 jonathan
1792 1.1 jonathan IPSEC_ASSERT(sp->policy == IPSEC_POLICY_IPSEC,
1793 1.62 christos ("%s: invalid policy %u", __func__, sp->policy));
1794 1.1 jonathan
1795 1.1 jonathan /* XXX should compare policy against ipsec header history */
1796 1.1 jonathan
1797 1.1 jonathan need_auth = 0;
1798 1.1 jonathan for (isr = sp->req; isr != NULL; isr = isr->next) {
1799 1.1 jonathan if (ipsec_get_reqlevel(isr) != IPSEC_LEVEL_REQUIRE)
1800 1.1 jonathan continue;
1801 1.1 jonathan switch (isr->saidx.proto) {
1802 1.1 jonathan case IPPROTO_ESP:
1803 1.1 jonathan if ((m->m_flags & M_DECRYPTED) == 0) {
1804 1.1 jonathan KEYDEBUG(KEYDEBUG_IPSEC_DUMP,
1805 1.62 christos printf("%s: ESP m_flags:%x\n", __func__,
1806 1.62 christos m->m_flags));
1807 1.1 jonathan return 1;
1808 1.1 jonathan }
1809 1.1 jonathan
1810 1.1 jonathan if (!need_auth &&
1811 1.26 degroote isr->sav != NULL &&
1812 1.26 degroote isr->sav->tdb_authalgxform != NULL &&
1813 1.26 degroote (m->m_flags & M_AUTHIPDGM) == 0) {
1814 1.1 jonathan KEYDEBUG(KEYDEBUG_IPSEC_DUMP,
1815 1.62 christos printf("%s: ESP/AH m_flags:%x\n", __func__,
1816 1.62 christos m->m_flags));
1817 1.1 jonathan return 1;
1818 1.1 jonathan }
1819 1.1 jonathan break;
1820 1.1 jonathan case IPPROTO_AH:
1821 1.1 jonathan need_auth = 1;
1822 1.1 jonathan if ((m->m_flags & M_AUTHIPHDR) == 0) {
1823 1.1 jonathan KEYDEBUG(KEYDEBUG_IPSEC_DUMP,
1824 1.62 christos printf("%s: AH m_flags:%x\n", __func__,
1825 1.62 christos m->m_flags));
1826 1.1 jonathan return 1;
1827 1.1 jonathan }
1828 1.1 jonathan break;
1829 1.1 jonathan case IPPROTO_IPCOMP:
1830 1.1 jonathan /*
1831 1.1 jonathan * we don't really care, as IPcomp document
1832 1.1 jonathan * says that we shouldn't compress small
1833 1.1 jonathan * packets, IPComp policy should always be
1834 1.1 jonathan * treated as being in "use" level.
1835 1.1 jonathan */
1836 1.1 jonathan break;
1837 1.1 jonathan }
1838 1.1 jonathan }
1839 1.1 jonathan return 0; /* valid */
1840 1.1 jonathan }
1841 1.1 jonathan
1842 1.1 jonathan /*
1843 1.1 jonathan * Check AH/ESP integrity.
1844 1.1 jonathan * This function is called from tcp_input(), udp_input(),
1845 1.1 jonathan * and {ah,esp}4_input for tunnel mode
1846 1.1 jonathan */
1847 1.1 jonathan int
1848 1.33 degroote ipsec4_in_reject(struct mbuf *m, struct inpcb *inp)
1849 1.1 jonathan {
1850 1.1 jonathan struct secpolicy *sp;
1851 1.1 jonathan int error;
1852 1.1 jonathan int result;
1853 1.1 jonathan
1854 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
1855 1.1 jonathan
1856 1.1 jonathan /* get SP for this packet.
1857 1.1 jonathan * When we are called from ip_forward(), we call
1858 1.1 jonathan * ipsec_getpolicybyaddr() with IP_FORWARDING flag.
1859 1.1 jonathan */
1860 1.1 jonathan if (inp == NULL)
1861 1.1 jonathan sp = ipsec_getpolicybyaddr(m, IPSEC_DIR_INBOUND, IP_FORWARDING, &error);
1862 1.1 jonathan else
1863 1.5 jonathan sp = ipsec_getpolicybysock(m, IPSEC_DIR_INBOUND,
1864 1.5 jonathan IN4PCB_TO_PCB(inp), &error);
1865 1.1 jonathan
1866 1.1 jonathan if (sp != NULL) {
1867 1.1 jonathan result = ipsec_in_reject(sp, m);
1868 1.1 jonathan if (result)
1869 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
1870 1.1 jonathan KEY_FREESP(&sp);
1871 1.1 jonathan } else {
1872 1.1 jonathan result = 0; /* XXX should be panic ?
1873 1.1 jonathan * -> No, there may be error. */
1874 1.1 jonathan }
1875 1.1 jonathan return result;
1876 1.1 jonathan }
1877 1.1 jonathan
1878 1.1 jonathan
1879 1.1 jonathan #ifdef INET6
1880 1.1 jonathan /*
1881 1.1 jonathan * Check AH/ESP integrity.
1882 1.1 jonathan * This function is called from tcp6_input(), udp6_input(),
1883 1.1 jonathan * and {ah,esp}6_input for tunnel mode
1884 1.1 jonathan */
1885 1.1 jonathan int
1886 1.33 degroote ipsec6_in_reject(struct mbuf *m, struct in6pcb *in6p)
1887 1.1 jonathan {
1888 1.1 jonathan struct secpolicy *sp = NULL;
1889 1.1 jonathan int error;
1890 1.1 jonathan int result;
1891 1.1 jonathan
1892 1.1 jonathan /* sanity check */
1893 1.1 jonathan if (m == NULL)
1894 1.1 jonathan return 0; /* XXX should be panic ? */
1895 1.1 jonathan
1896 1.1 jonathan /* get SP for this packet.
1897 1.1 jonathan * When we are called from ip_forward(), we call
1898 1.1 jonathan * ipsec_getpolicybyaddr() with IP_FORWARDING flag.
1899 1.1 jonathan */
1900 1.5 jonathan if (in6p == NULL)
1901 1.1 jonathan sp = ipsec_getpolicybyaddr(m, IPSEC_DIR_INBOUND, IP_FORWARDING, &error);
1902 1.1 jonathan else
1903 1.5 jonathan sp = ipsec_getpolicybysock(m, IPSEC_DIR_INBOUND,
1904 1.5 jonathan IN6PCB_TO_PCB(in6p),
1905 1.5 jonathan &error);
1906 1.1 jonathan
1907 1.1 jonathan if (sp != NULL) {
1908 1.1 jonathan result = ipsec_in_reject(sp, m);
1909 1.1 jonathan if (result)
1910 1.37 thorpej IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
1911 1.1 jonathan KEY_FREESP(&sp);
1912 1.1 jonathan } else {
1913 1.1 jonathan result = 0;
1914 1.1 jonathan }
1915 1.1 jonathan return result;
1916 1.1 jonathan }
1917 1.1 jonathan #endif
1918 1.1 jonathan
1919 1.1 jonathan /*
1920 1.1 jonathan * compute the byte size to be occupied by IPsec header.
1921 1.1 jonathan * in case it is tunneled, it includes the size of outer IP header.
1922 1.1 jonathan * NOTE: SP passed is free in this function.
1923 1.1 jonathan */
1924 1.1 jonathan static size_t
1925 1.55 drochner ipsec_hdrsiz(const struct secpolicy *sp)
1926 1.1 jonathan {
1927 1.55 drochner const struct ipsecrequest *isr;
1928 1.1 jonathan size_t siz;
1929 1.1 jonathan
1930 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DATA, printf("%s: using SP\n", __func__);
1931 1.62 christos kdebug_secpolicy(sp));
1932 1.1 jonathan
1933 1.1 jonathan switch (sp->policy) {
1934 1.1 jonathan case IPSEC_POLICY_DISCARD:
1935 1.1 jonathan case IPSEC_POLICY_BYPASS:
1936 1.1 jonathan case IPSEC_POLICY_NONE:
1937 1.1 jonathan return 0;
1938 1.1 jonathan }
1939 1.1 jonathan
1940 1.1 jonathan IPSEC_ASSERT(sp->policy == IPSEC_POLICY_IPSEC,
1941 1.62 christos ("%s: invalid policy %u", __func__, sp->policy));
1942 1.1 jonathan
1943 1.1 jonathan siz = 0;
1944 1.1 jonathan for (isr = sp->req; isr != NULL; isr = isr->next) {
1945 1.1 jonathan size_t clen = 0;
1946 1.1 jonathan
1947 1.1 jonathan switch (isr->saidx.proto) {
1948 1.1 jonathan case IPPROTO_ESP:
1949 1.1 jonathan clen = esp_hdrsiz(isr->sav);
1950 1.1 jonathan break;
1951 1.1 jonathan case IPPROTO_AH:
1952 1.1 jonathan clen = ah_hdrsiz(isr->sav);
1953 1.1 jonathan break;
1954 1.1 jonathan case IPPROTO_IPCOMP:
1955 1.1 jonathan clen = sizeof(struct ipcomp);
1956 1.1 jonathan break;
1957 1.1 jonathan }
1958 1.1 jonathan
1959 1.1 jonathan if (isr->saidx.mode == IPSEC_MODE_TUNNEL) {
1960 1.1 jonathan switch (isr->saidx.dst.sa.sa_family) {
1961 1.1 jonathan case AF_INET:
1962 1.1 jonathan clen += sizeof(struct ip);
1963 1.1 jonathan break;
1964 1.1 jonathan #ifdef INET6
1965 1.1 jonathan case AF_INET6:
1966 1.1 jonathan clen += sizeof(struct ip6_hdr);
1967 1.1 jonathan break;
1968 1.1 jonathan #endif
1969 1.1 jonathan default:
1970 1.62 christos ipseclog((LOG_ERR, "%s: unknown AF %d in "
1971 1.62 christos "IPsec tunnel SA\n", __func__,
1972 1.62 christos ((const struct sockaddr *)&isr->saidx.dst)
1973 1.62 christos ->sa_family));
1974 1.1 jonathan break;
1975 1.1 jonathan }
1976 1.1 jonathan }
1977 1.1 jonathan siz += clen;
1978 1.1 jonathan }
1979 1.1 jonathan
1980 1.1 jonathan return siz;
1981 1.1 jonathan }
1982 1.1 jonathan
1983 1.1 jonathan /* This function is called from ip_forward() and ipsec4_hdrsize_tcp(). */
1984 1.1 jonathan size_t
1985 1.33 degroote ipsec4_hdrsiz(struct mbuf *m, u_int dir, struct inpcb *inp)
1986 1.1 jonathan {
1987 1.1 jonathan struct secpolicy *sp;
1988 1.1 jonathan int error;
1989 1.1 jonathan size_t size;
1990 1.1 jonathan
1991 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
1992 1.1 jonathan IPSEC_ASSERT(inp == NULL || inp->inp_socket != NULL,
1993 1.62 christos ("%s: socket w/o inpcb", __func__));
1994 1.1 jonathan
1995 1.1 jonathan /* get SP for this packet.
1996 1.1 jonathan * When we are called from ip_forward(), we call
1997 1.1 jonathan * ipsec_getpolicybyaddr() with IP_FORWARDING flag.
1998 1.1 jonathan */
1999 1.1 jonathan if (inp == NULL)
2000 1.1 jonathan sp = ipsec_getpolicybyaddr(m, dir, IP_FORWARDING, &error);
2001 1.1 jonathan else
2002 1.5 jonathan sp = ipsec_getpolicybysock(m, dir,
2003 1.5 jonathan IN4PCB_TO_PCB(inp), &error);
2004 1.1 jonathan
2005 1.1 jonathan if (sp != NULL) {
2006 1.1 jonathan size = ipsec_hdrsiz(sp);
2007 1.62 christos KEYDEBUG(KEYDEBUG_IPSEC_DATA, printf("%s: size:%lu.\n",
2008 1.62 christos __func__, (unsigned long)size));
2009 1.1 jonathan
2010 1.1 jonathan KEY_FREESP(&sp);
2011 1.1 jonathan } else {
2012 1.1 jonathan size = 0; /* XXX should be panic ? */
2013 1.1 jonathan }
2014 1.1 jonathan return size;
2015 1.1 jonathan }
2016 1.1 jonathan
2017 1.1 jonathan #ifdef INET6
2018 1.1 jonathan /* This function is called from ipsec6_hdrsize_tcp(),
2019 1.1 jonathan * and maybe from ip6_forward.()
2020 1.1 jonathan */
2021 1.1 jonathan size_t
2022 1.33 degroote ipsec6_hdrsiz(struct mbuf *m, u_int dir, struct in6pcb *in6p)
2023 1.1 jonathan {
2024 1.1 jonathan struct secpolicy *sp;
2025 1.1 jonathan int error;
2026 1.1 jonathan size_t size;
2027 1.1 jonathan
2028 1.62 christos IPSEC_ASSERT(m != NULL, ("%s: null mbuf", __func__));
2029 1.1 jonathan IPSEC_ASSERT(in6p == NULL || in6p->in6p_socket != NULL,
2030 1.62 christos ("%s: socket w/o inpcb", __func__));
2031 1.1 jonathan
2032 1.1 jonathan /* get SP for this packet */
2033 1.1 jonathan /* XXX Is it right to call with IP_FORWARDING. */
2034 1.1 jonathan if (in6p == NULL)
2035 1.1 jonathan sp = ipsec_getpolicybyaddr(m, dir, IP_FORWARDING, &error);
2036 1.1 jonathan else
2037 1.15 perry sp = ipsec_getpolicybysock(m, dir,
2038 1.5 jonathan IN6PCB_TO_PCB(in6p),
2039 1.5 jonathan &error);
2040 1.1 jonathan
2041 1.1 jonathan if (sp == NULL)
2042 1.1 jonathan return 0;
2043 1.1 jonathan size = ipsec_hdrsiz(sp);
2044 1.1 jonathan KEYDEBUG(KEYDEBUG_IPSEC_DATA,
2045 1.62 christos printf("%s: size:%zu.\n", __func__, size));
2046 1.1 jonathan KEY_FREESP(&sp);
2047 1.1 jonathan
2048 1.1 jonathan return size;
2049 1.1 jonathan }
2050 1.1 jonathan #endif /*INET6*/
2051 1.1 jonathan
2052 1.1 jonathan /*
2053 1.1 jonathan * Check the variable replay window.
2054 1.1 jonathan * ipsec_chkreplay() performs replay check before ICV verification.
2055 1.1 jonathan * ipsec_updatereplay() updates replay bitmap. This must be called after
2056 1.1 jonathan * ICV verification (it also performs replay check, which is usually done
2057 1.1 jonathan * beforehand).
2058 1.1 jonathan * 0 (zero) is returned if packet disallowed, 1 if packet permitted.
2059 1.1 jonathan *
2060 1.1 jonathan * based on RFC 2401.
2061 1.1 jonathan */
2062 1.1 jonathan int
2063 1.50 drochner ipsec_chkreplay(u_int32_t seq, const struct secasvar *sav)
2064 1.1 jonathan {
2065 1.1 jonathan const struct secreplay *replay;
2066 1.1 jonathan u_int32_t diff;
2067 1.1 jonathan int fr;
2068 1.1 jonathan u_int32_t wsizeb; /* constant: bits of window size */
2069 1.1 jonathan int frlast; /* constant: last frame */
2070 1.1 jonathan
2071 1.62 christos IPSEC_SPLASSERT_SOFTNET(__func__);
2072 1.1 jonathan
2073 1.62 christos IPSEC_ASSERT(sav != NULL, ("%s: Null SA", __func__));
2074 1.62 christos IPSEC_ASSERT(sav->replay != NULL, ("%s: Null replay state", __func__));
2075 1.1 jonathan
2076 1.1 jonathan replay = sav->replay;
2077 1.1 jonathan
2078 1.1 jonathan if (replay->wsize == 0)
2079 1.1 jonathan return 1; /* no need to check replay. */
2080 1.1 jonathan
2081 1.1 jonathan /* constant */
2082 1.1 jonathan frlast = replay->wsize - 1;
2083 1.1 jonathan wsizeb = replay->wsize << 3;
2084 1.1 jonathan
2085 1.1 jonathan /* sequence number of 0 is invalid */
2086 1.1 jonathan if (seq == 0)
2087 1.1 jonathan return 0;
2088 1.1 jonathan
2089 1.1 jonathan /* first time is always okay */
2090 1.1 jonathan if (replay->count == 0)
2091 1.1 jonathan return 1;
2092 1.1 jonathan
2093 1.1 jonathan if (seq > replay->lastseq) {
2094 1.1 jonathan /* larger sequences are okay */
2095 1.1 jonathan return 1;
2096 1.1 jonathan } else {
2097 1.1 jonathan /* seq is equal or less than lastseq. */
2098 1.1 jonathan diff = replay->lastseq - seq;
2099 1.1 jonathan
2100 1.1 jonathan /* over range to check, i.e. too old or wrapped */
2101 1.1 jonathan if (diff >= wsizeb)
2102 1.1 jonathan return 0;
2103 1.1 jonathan
2104 1.1 jonathan fr = frlast - diff / 8;
2105 1.1 jonathan
2106 1.1 jonathan /* this packet already seen ? */
2107 1.1 jonathan if ((replay->bitmap)[fr] & (1 << (diff % 8)))
2108 1.1 jonathan return 0;
2109 1.1 jonathan
2110 1.1 jonathan /* out of order but good */
2111 1.1 jonathan return 1;
2112 1.1 jonathan }
2113 1.1 jonathan }
2114 1.1 jonathan
2115 1.1 jonathan /*
2116 1.1 jonathan * check replay counter whether to update or not.
2117 1.1 jonathan * OUT: 0: OK
2118 1.1 jonathan * 1: NG
2119 1.1 jonathan */
2120 1.1 jonathan int
2121 1.50 drochner ipsec_updatereplay(u_int32_t seq, const struct secasvar *sav)
2122 1.1 jonathan {
2123 1.1 jonathan struct secreplay *replay;
2124 1.1 jonathan u_int32_t diff;
2125 1.1 jonathan int fr;
2126 1.1 jonathan u_int32_t wsizeb; /* constant: bits of window size */
2127 1.1 jonathan int frlast; /* constant: last frame */
2128 1.1 jonathan
2129 1.62 christos IPSEC_SPLASSERT_SOFTNET(__func__);
2130 1.1 jonathan
2131 1.62 christos IPSEC_ASSERT(sav != NULL, ("%s: Null SA", __func__));
2132 1.62 christos IPSEC_ASSERT(sav->replay != NULL, ("%s: Null replay state", __func__));
2133 1.1 jonathan
2134 1.1 jonathan replay = sav->replay;
2135 1.1 jonathan
2136 1.1 jonathan if (replay->wsize == 0)
2137 1.1 jonathan goto ok; /* no need to check replay. */
2138 1.1 jonathan
2139 1.1 jonathan /* constant */
2140 1.1 jonathan frlast = replay->wsize - 1;
2141 1.1 jonathan wsizeb = replay->wsize << 3;
2142 1.1 jonathan
2143 1.1 jonathan /* sequence number of 0 is invalid */
2144 1.1 jonathan if (seq == 0)
2145 1.1 jonathan return 1;
2146 1.1 jonathan
2147 1.1 jonathan /* first time */
2148 1.1 jonathan if (replay->count == 0) {
2149 1.1 jonathan replay->lastseq = seq;
2150 1.41 cegger memset(replay->bitmap, 0, replay->wsize);
2151 1.1 jonathan (replay->bitmap)[frlast] = 1;
2152 1.1 jonathan goto ok;
2153 1.1 jonathan }
2154 1.1 jonathan
2155 1.1 jonathan if (seq > replay->lastseq) {
2156 1.1 jonathan /* seq is larger than lastseq. */
2157 1.1 jonathan diff = seq - replay->lastseq;
2158 1.1 jonathan
2159 1.1 jonathan /* new larger sequence number */
2160 1.1 jonathan if (diff < wsizeb) {
2161 1.1 jonathan /* In window */
2162 1.1 jonathan /* set bit for this packet */
2163 1.1 jonathan vshiftl(replay->bitmap, diff, replay->wsize);
2164 1.1 jonathan (replay->bitmap)[frlast] |= 1;
2165 1.1 jonathan } else {
2166 1.1 jonathan /* this packet has a "way larger" */
2167 1.41 cegger memset(replay->bitmap, 0, replay->wsize);
2168 1.1 jonathan (replay->bitmap)[frlast] = 1;
2169 1.1 jonathan }
2170 1.1 jonathan replay->lastseq = seq;
2171 1.1 jonathan
2172 1.1 jonathan /* larger is good */
2173 1.1 jonathan } else {
2174 1.1 jonathan /* seq is equal or less than lastseq. */
2175 1.1 jonathan diff = replay->lastseq - seq;
2176 1.1 jonathan
2177 1.1 jonathan /* over range to check, i.e. too old or wrapped */
2178 1.1 jonathan if (diff >= wsizeb)
2179 1.1 jonathan return 1;
2180 1.1 jonathan
2181 1.1 jonathan fr = frlast - diff / 8;
2182 1.1 jonathan
2183 1.1 jonathan /* this packet already seen ? */
2184 1.1 jonathan if ((replay->bitmap)[fr] & (1 << (diff % 8)))
2185 1.1 jonathan return 1;
2186 1.1 jonathan
2187 1.1 jonathan /* mark as seen */
2188 1.1 jonathan (replay->bitmap)[fr] |= (1 << (diff % 8));
2189 1.1 jonathan
2190 1.1 jonathan /* out of order but good */
2191 1.1 jonathan }
2192 1.1 jonathan
2193 1.1 jonathan ok:
2194 1.1 jonathan if (replay->count == ~0) {
2195 1.1 jonathan
2196 1.1 jonathan /* set overflow flag */
2197 1.1 jonathan replay->overflow++;
2198 1.1 jonathan
2199 1.1 jonathan /* don't increment, no more packets accepted */
2200 1.1 jonathan if ((sav->flags & SADB_X_EXT_CYCSEQ) == 0)
2201 1.1 jonathan return 1;
2202 1.1 jonathan
2203 1.1 jonathan ipseclog((LOG_WARNING, "replay counter made %d cycle. %s\n",
2204 1.62 christos replay->overflow, ipsec_logsastr(sav)));
2205 1.1 jonathan }
2206 1.1 jonathan
2207 1.1 jonathan replay->count++;
2208 1.1 jonathan
2209 1.1 jonathan return 0;
2210 1.1 jonathan }
2211 1.1 jonathan
2212 1.1 jonathan /*
2213 1.1 jonathan * shift variable length bunffer to left.
2214 1.1 jonathan * IN: bitmap: pointer to the buffer
2215 1.1 jonathan * nbit: the number of to shift.
2216 1.1 jonathan * wsize: buffer size (bytes).
2217 1.1 jonathan */
2218 1.1 jonathan static void
2219 1.33 degroote vshiftl(unsigned char *bitmap, int nbit, int wsize)
2220 1.1 jonathan {
2221 1.1 jonathan int s, j, i;
2222 1.1 jonathan unsigned char over;
2223 1.1 jonathan
2224 1.1 jonathan for (j = 0; j < nbit; j += 8) {
2225 1.1 jonathan s = (nbit - j < 8) ? (nbit - j): 8;
2226 1.1 jonathan bitmap[0] <<= s;
2227 1.1 jonathan for (i = 1; i < wsize; i++) {
2228 1.1 jonathan over = (bitmap[i] >> (8 - s));
2229 1.1 jonathan bitmap[i] <<= s;
2230 1.1 jonathan bitmap[i-1] |= over;
2231 1.1 jonathan }
2232 1.1 jonathan }
2233 1.1 jonathan
2234 1.1 jonathan return;
2235 1.1 jonathan }
2236 1.1 jonathan
2237 1.1 jonathan /* Return a printable string for the IPv4 address. */
2238 1.1 jonathan static char *
2239 1.1 jonathan inet_ntoa4(struct in_addr ina)
2240 1.1 jonathan {
2241 1.1 jonathan static char buf[4][4 * sizeof "123" + 4];
2242 1.1 jonathan unsigned char *ucp = (unsigned char *) &ina;
2243 1.1 jonathan static int i = 3;
2244 1.1 jonathan
2245 1.1 jonathan i = (i + 1) % 4;
2246 1.11 itojun snprintf(buf[i], sizeof(buf[i]), "%d.%d.%d.%d",
2247 1.26 degroote ucp[0] & 0xff, ucp[1] & 0xff, ucp[2] & 0xff, ucp[3] & 0xff);
2248 1.1 jonathan return (buf[i]);
2249 1.1 jonathan }
2250 1.1 jonathan
2251 1.1 jonathan /* Return a printable string for the address. */
2252 1.17 christos const char *
2253 1.51 drochner ipsec_address(const union sockaddr_union *sa)
2254 1.1 jonathan {
2255 1.68 ryo #if INET6
2256 1.68 ryo static char ip6buf[INET6_ADDRSTRLEN]; /* XXX: NOMPSAFE */
2257 1.68 ryo #endif
2258 1.68 ryo
2259 1.1 jonathan switch (sa->sa.sa_family) {
2260 1.1 jonathan #if INET
2261 1.1 jonathan case AF_INET:
2262 1.1 jonathan return inet_ntoa4(sa->sin.sin_addr);
2263 1.1 jonathan #endif /* INET */
2264 1.1 jonathan
2265 1.1 jonathan #if INET6
2266 1.1 jonathan case AF_INET6:
2267 1.69 christos return IN6_PRINT(ip6buf, &sa->sin6.sin6_addr);
2268 1.1 jonathan #endif /* INET6 */
2269 1.1 jonathan
2270 1.1 jonathan default:
2271 1.1 jonathan return "(unknown address family)";
2272 1.1 jonathan }
2273 1.1 jonathan }
2274 1.1 jonathan
2275 1.1 jonathan const char *
2276 1.50 drochner ipsec_logsastr(const struct secasvar *sav)
2277 1.1 jonathan {
2278 1.1 jonathan static char buf[256];
2279 1.1 jonathan char *p;
2280 1.50 drochner const struct secasindex *saidx = &sav->sah->saidx;
2281 1.1 jonathan
2282 1.1 jonathan IPSEC_ASSERT(saidx->src.sa.sa_family == saidx->dst.sa.sa_family,
2283 1.62 christos ("%s: address family mismatch", __func__));
2284 1.1 jonathan
2285 1.1 jonathan p = buf;
2286 1.1 jonathan snprintf(buf, sizeof(buf), "SA(SPI=%u ", (u_int32_t)ntohl(sav->spi));
2287 1.1 jonathan while (p && *p)
2288 1.1 jonathan p++;
2289 1.1 jonathan /* NB: only use ipsec_address on one address at a time */
2290 1.1 jonathan snprintf(p, sizeof (buf) - (p - buf), "src=%s ",
2291 1.1 jonathan ipsec_address(&saidx->src));
2292 1.1 jonathan while (p && *p)
2293 1.1 jonathan p++;
2294 1.1 jonathan snprintf(p, sizeof (buf) - (p - buf), "dst=%s)",
2295 1.1 jonathan ipsec_address(&saidx->dst));
2296 1.1 jonathan
2297 1.1 jonathan return buf;
2298 1.1 jonathan }
2299 1.1 jonathan
2300 1.1 jonathan void
2301 1.33 degroote ipsec_dumpmbuf(struct mbuf *m)
2302 1.1 jonathan {
2303 1.1 jonathan int totlen;
2304 1.1 jonathan int i;
2305 1.1 jonathan u_char *p;
2306 1.1 jonathan
2307 1.1 jonathan totlen = 0;
2308 1.1 jonathan printf("---\n");
2309 1.1 jonathan while (m) {
2310 1.1 jonathan p = mtod(m, u_char *);
2311 1.1 jonathan for (i = 0; i < m->m_len; i++) {
2312 1.1 jonathan printf("%02x ", p[i]);
2313 1.1 jonathan totlen++;
2314 1.1 jonathan if (totlen % 16 == 0)
2315 1.1 jonathan printf("\n");
2316 1.1 jonathan }
2317 1.1 jonathan m = m->m_next;
2318 1.1 jonathan }
2319 1.1 jonathan if (totlen % 16 != 0)
2320 1.1 jonathan printf("\n");
2321 1.1 jonathan printf("---\n");
2322 1.1 jonathan }
2323 1.1 jonathan
2324 1.26 degroote #ifdef INET6
2325 1.26 degroote struct secpolicy *
2326 1.70 ozaki ipsec6_check_policy(struct mbuf *m, struct in6pcb *in6p,
2327 1.51 drochner int flags, int *needipsecp, int *errorp)
2328 1.26 degroote {
2329 1.26 degroote struct secpolicy *sp = NULL;
2330 1.26 degroote int s;
2331 1.26 degroote int error = 0;
2332 1.26 degroote int needipsec = 0;
2333 1.26 degroote
2334 1.36 degroote if (!ipsec_outdone(m)) {
2335 1.36 degroote s = splsoftnet();
2336 1.26 degroote if (in6p != NULL &&
2337 1.46 jakllsch IPSEC_PCB_SKIP_IPSEC(in6p->in6p_sp, IPSEC_DIR_OUTBOUND)) {
2338 1.46 jakllsch splx(s);
2339 1.26 degroote goto skippolicycheck;
2340 1.46 jakllsch }
2341 1.26 degroote sp = ipsec6_checkpolicy(m, IPSEC_DIR_OUTBOUND, flags, &error,in6p);
2342 1.26 degroote
2343 1.36 degroote /*
2344 1.36 degroote * There are four return cases:
2345 1.36 degroote * sp != NULL apply IPsec policy
2346 1.36 degroote * sp == NULL, error == 0 no IPsec handling needed
2347 1.36 degroote * sp == NULL, error == -EINVAL discard packet w/o error
2348 1.36 degroote * sp == NULL, error != 0 discard packet, report error
2349 1.36 degroote */
2350 1.36 degroote
2351 1.26 degroote splx(s);
2352 1.36 degroote if (sp == NULL) {
2353 1.36 degroote /*
2354 1.36 degroote * Caller must check the error return to see if it needs to discard
2355 1.36 degroote * the packet.
2356 1.36 degroote */
2357 1.26 degroote needipsec = 0;
2358 1.26 degroote } else {
2359 1.36 degroote needipsec = 1;
2360 1.26 degroote }
2361 1.26 degroote }
2362 1.26 degroote skippolicycheck:;
2363 1.26 degroote
2364 1.26 degroote *errorp = error;
2365 1.26 degroote *needipsecp = needipsec;
2366 1.26 degroote return sp;
2367 1.26 degroote }
2368 1.66 ozaki
2369 1.66 ozaki int
2370 1.66 ozaki ipsec6_input(struct mbuf *m)
2371 1.66 ozaki {
2372 1.66 ozaki struct m_tag *mtag;
2373 1.66 ozaki struct tdb_ident *tdbi;
2374 1.66 ozaki struct secpolicy *sp;
2375 1.66 ozaki int s, error;
2376 1.66 ozaki
2377 1.66 ozaki /*
2378 1.66 ozaki * Check if the packet has already had IPsec
2379 1.66 ozaki * processing done. If so, then just pass it
2380 1.66 ozaki * along. This tag gets set during AH, ESP,
2381 1.66 ozaki * etc. input handling, before the packet is
2382 1.66 ozaki * returned to the ip input queue for delivery.
2383 1.66 ozaki */
2384 1.66 ozaki mtag = m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE,
2385 1.66 ozaki NULL);
2386 1.66 ozaki s = splsoftnet();
2387 1.66 ozaki if (mtag != NULL) {
2388 1.66 ozaki tdbi = (struct tdb_ident *)(mtag + 1);
2389 1.66 ozaki sp = ipsec_getpolicy(tdbi,
2390 1.66 ozaki IPSEC_DIR_INBOUND);
2391 1.66 ozaki } else {
2392 1.66 ozaki sp = ipsec_getpolicybyaddr(m,
2393 1.66 ozaki IPSEC_DIR_INBOUND, IP_FORWARDING,
2394 1.66 ozaki &error);
2395 1.66 ozaki }
2396 1.66 ozaki if (sp != NULL) {
2397 1.66 ozaki /*
2398 1.66 ozaki * Check security policy against packet
2399 1.66 ozaki * attributes.
2400 1.66 ozaki */
2401 1.66 ozaki error = ipsec_in_reject(sp, m);
2402 1.66 ozaki KEY_FREESP(&sp);
2403 1.66 ozaki } else {
2404 1.66 ozaki /* XXX error stat??? */
2405 1.66 ozaki error = EINVAL;
2406 1.66 ozaki DPRINTF(("ip6_input: no SP, packet"
2407 1.66 ozaki " discarded\n"));/*XXX*/
2408 1.66 ozaki }
2409 1.66 ozaki splx(s);
2410 1.66 ozaki
2411 1.66 ozaki return error;
2412 1.66 ozaki }
2413 1.66 ozaki #endif /* INET6 */
2414 1.26 degroote
2415 1.26 degroote
2416 1.26 degroote
2417 1.1 jonathan /* XXX this stuff doesn't belong here... */
2418 1.1 jonathan
2419 1.51 drochner static struct xformsw *xforms = NULL;
2420 1.1 jonathan
2421 1.1 jonathan /*
2422 1.1 jonathan * Register a transform; typically at system startup.
2423 1.1 jonathan */
2424 1.1 jonathan void
2425 1.51 drochner xform_register(struct xformsw *xsp)
2426 1.1 jonathan {
2427 1.1 jonathan xsp->xf_next = xforms;
2428 1.1 jonathan xforms = xsp;
2429 1.1 jonathan }
2430 1.1 jonathan
2431 1.1 jonathan /*
2432 1.1 jonathan * Initialize transform support in an sav.
2433 1.1 jonathan */
2434 1.1 jonathan int
2435 1.1 jonathan xform_init(struct secasvar *sav, int xftype)
2436 1.1 jonathan {
2437 1.1 jonathan struct xformsw *xsp;
2438 1.1 jonathan
2439 1.1 jonathan if (sav->tdb_xform != NULL) /* previously initialized */
2440 1.1 jonathan return 0;
2441 1.1 jonathan for (xsp = xforms; xsp; xsp = xsp->xf_next)
2442 1.1 jonathan if (xsp->xf_type == xftype)
2443 1.1 jonathan return (*xsp->xf_init)(sav, xsp);
2444 1.1 jonathan
2445 1.62 christos DPRINTF(("%s: no match for xform type %d\n", __func__, xftype));
2446 1.1 jonathan return EINVAL;
2447 1.1 jonathan }
2448 1.1 jonathan
2449 1.58 christos void
2450 1.58 christos nat_t_ports_get(struct mbuf *m, u_int16_t *dport, u_int16_t *sport) {
2451 1.58 christos struct m_tag *tag;
2452 1.58 christos
2453 1.58 christos if ((tag = m_tag_find(m, PACKET_TAG_IPSEC_NAT_T_PORTS, NULL))) {
2454 1.58 christos *sport = ((u_int16_t *)(tag + 1))[0];
2455 1.58 christos *dport = ((u_int16_t *)(tag + 1))[1];
2456 1.58 christos } else
2457 1.58 christos *sport = *dport = 0;
2458 1.58 christos }
2459 1.58 christos
2460 1.37 thorpej /*
2461 1.37 thorpej * XXXJRT This should be done as a protosw init call.
2462 1.37 thorpej */
2463 1.1 jonathan void
2464 1.1 jonathan ipsec_attach(void)
2465 1.1 jonathan {
2466 1.37 thorpej
2467 1.37 thorpej ipsecstat_percpu = percpu_alloc(sizeof(uint64_t) * IPSEC_NSTATS);
2468 1.37 thorpej
2469 1.71 ozaki sysctl_net_inet_ipsec_setup(NULL);
2470 1.71 ozaki #ifdef INET6
2471 1.71 ozaki sysctl_net_inet6_ipsec6_setup(NULL);
2472 1.71 ozaki #endif
2473 1.71 ozaki
2474 1.1 jonathan ah_attach();
2475 1.1 jonathan esp_attach();
2476 1.1 jonathan ipcomp_attach();
2477 1.1 jonathan ipe4_attach();
2478 1.12 jonathan #ifdef TCP_SIGNATURE
2479 1.12 jonathan tcpsignature_attach();
2480 1.12 jonathan #endif
2481 1.1 jonathan }
2482