]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/ip_ipsec.c
Lock the ND prefix list and add refcounting for prefixes.
[FreeBSD/FreeBSD.git] / sys / netinet / ip_ipsec.c
1 /*-
2  * Copyright (c) 1982, 1986, 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include "opt_ipsec.h"
34 #include "opt_sctp.h"
35
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/errno.h>
39 #include <sys/kernel.h>
40 #include <sys/malloc.h>
41 #include <sys/mbuf.h>
42 #include <sys/protosw.h>
43 #include <sys/socket.h>
44 #include <sys/socketvar.h>
45 #include <sys/sysctl.h>
46
47 #include <net/if.h>
48 #include <net/if_var.h>
49 #include <net/vnet.h>
50
51 #include <netinet/in.h>
52 #include <netinet/in_systm.h>
53 #include <netinet/in_var.h>
54 #include <netinet/ip.h>
55 #include <netinet/in_pcb.h>
56 #include <netinet/ip_var.h>
57 #include <netinet/ip_options.h>
58 #include <netinet/ip_ipsec.h>
59 #ifdef SCTP
60 #include <netinet/sctp_crc32.h>
61 #endif
62
63 #include <machine/in_cksum.h>
64
65 #include <netipsec/ipsec.h>
66 #include <netipsec/xform.h>
67 #include <netipsec/key.h>
68
69 extern  struct protosw inetsw[];
70
71 static VNET_DEFINE(int, ip4_ipsec_filtertunnel) = 0;
72 #define V_ip4_ipsec_filtertunnel VNET(ip4_ipsec_filtertunnel)
73
74 SYSCTL_DECL(_net_inet_ipsec);
75 SYSCTL_INT(_net_inet_ipsec, OID_AUTO, filtertunnel,
76         CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip4_ipsec_filtertunnel), 0,
77         "If set filter packets from an IPsec tunnel.");
78
79 /*
80  * Check if we have to jump over firewall processing for this packet.
81  * Called from ip_input().
82  * 1 = jump over firewall, 0 = packet goes through firewall.
83  */
84 int
85 ip_ipsec_filtertunnel(struct mbuf *m)
86 {
87
88         /*
89          * Bypass packet filtering for packets previously handled by IPsec.
90          */
91         if (!V_ip4_ipsec_filtertunnel &&
92             m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL)
93                 return 1;
94         return 0;
95 }
96
97 /*
98  * Check if this packet has an active SA and needs to be dropped instead
99  * of forwarded.
100  * Called from ip_forward().
101  * 1 = drop packet, 0 = forward packet.
102  */
103 int
104 ip_ipsec_fwd(struct mbuf *m)
105 {
106
107         return (ipsec4_in_reject(m, NULL));
108 }
109
110 /*
111  * Check if protocol type doesn't have a further header and do IPSEC
112  * decryption or reject right now.  Protocols with further headers get
113  * their IPSEC treatment within the protocol specific processing.
114  * Called from ip_input().
115  * 1 = drop packet, 0 = continue processing packet.
116  */
117 int
118 ip_ipsec_input(struct mbuf *m, int nxt)
119 {
120         /*
121          * enforce IPsec policy checking if we are seeing last header.
122          * note that we do not visit this with protocols with pcb layer
123          * code - like udp/tcp/raw ip.
124          */
125         if ((inetsw[ip_protox[nxt]].pr_flags & PR_LASTHDR) != 0)
126                 return (ipsec4_in_reject(m, NULL));
127         return (0);
128 }
129
130 /*
131  * Compute the MTU for a forwarded packet that gets IPSEC encapsulated.
132  * Called from ip_forward().
133  * Returns MTU suggestion for ICMP needfrag reply.
134  */
135 int
136 ip_ipsec_mtu(struct mbuf *m, int mtu)
137 {
138         /*
139          * If the packet is routed over IPsec tunnel, tell the
140          * originator the tunnel MTU.
141          *      tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
142          * XXX quickhack!!!
143          */
144         return (mtu - ipsec_hdrsiz(m, IPSEC_DIR_OUTBOUND, NULL));
145 }
146
147 /*
148  * 
149  * Called from ip_output().
150  * 1 = drop packet, 0 = continue processing packet,
151  * -1 = packet was reinjected and stop processing packet
152  */
153 int
154 ip_ipsec_output(struct mbuf **m, struct inpcb *inp, int *error)
155 {
156         struct secpolicy *sp;
157
158         if (!key_havesp(IPSEC_DIR_OUTBOUND))
159                 return 0;
160
161         /*
162          * Check the security policy (SP) for the packet and, if
163          * required, do IPsec-related processing.  There are two
164          * cases here; the first time a packet is sent through
165          * it will be untagged and handled by ipsec4_checkpolicy.
166          * If the packet is resubmitted to ip_output (e.g. after
167          * AH, ESP, etc. processing), there will be a tag to bypass
168          * the lookup and related policy checking.
169          */
170         if (m_tag_find(*m, PACKET_TAG_IPSEC_OUT_DONE, NULL) != NULL) {
171                 *error = 0;
172                 return (0);
173         }
174         sp = ipsec4_checkpolicy(*m, IPSEC_DIR_OUTBOUND, error, inp);
175         /*
176          * There are four return cases:
177          *    sp != NULL                    apply IPsec policy
178          *    sp == NULL, error == 0        no IPsec handling needed
179          *    sp == NULL, error == -EINVAL  discard packet w/o error
180          *    sp == NULL, error != 0        discard packet, report error
181          */
182         if (sp != NULL) {
183                 /*
184                  * Do delayed checksums now because we send before
185                  * this is done in the normal processing path.
186                  */
187                 if ((*m)->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
188                         in_delayed_cksum(*m);
189                         (*m)->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
190                 }
191 #ifdef SCTP
192                 if ((*m)->m_pkthdr.csum_flags & CSUM_SCTP) {
193                         struct ip *ip = mtod(*m, struct ip *);
194
195                         sctp_delayed_cksum(*m, (uint32_t)(ip->ip_hl << 2));
196                         (*m)->m_pkthdr.csum_flags &= ~CSUM_SCTP;
197                 }
198 #endif
199
200                 /* NB: callee frees mbuf */
201                 *error = ipsec4_process_packet(*m, sp->req);
202                 KEY_FREESP(&sp);
203                 if (*error == EJUSTRETURN) {
204                         /*
205                          * We had a SP with a level of 'use' and no SA. We
206                          * will just continue to process the packet without
207                          * IPsec processing and return without error.
208                          */
209                         *error = 0;
210                         goto done;
211                 }
212                 /*
213                  * Preserve KAME behaviour: ENOENT can be returned
214                  * when an SA acquire is in progress.  Don't propagate
215                  * this to user-level; it confuses applications.
216                  *
217                  * XXX this will go away when the SADB is redone.
218                  */
219                 if (*error == ENOENT)
220                         *error = 0;
221                 goto reinjected;
222         } else {        /* sp == NULL */
223
224                 if (*error != 0) {
225                         /*
226                          * Hack: -EINVAL is used to signal that a packet
227                          * should be silently discarded.  This is typically
228                          * because we asked key management for an SA and
229                          * it was delayed (e.g. kicked up to IKE).
230                          */
231                         if (*error == -EINVAL)
232                                 *error = 0;
233                         goto bad;
234                 }
235                 /* No IPsec processing for this packet. */
236         }
237 done:
238         return (0);
239 reinjected:
240         return (-1);
241 bad:
242         if (sp != NULL)
243                 KEY_FREESP(&sp);
244         return 1;
245 }