]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/ip_ipsec.c
MFV r282150
[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 #ifdef IPSEC_FILTERTUNNEL
72 static VNET_DEFINE(int, ip4_ipsec_filtertunnel) = 1;
73 #else
74 static VNET_DEFINE(int, ip4_ipsec_filtertunnel) = 0;
75 #endif
76 #define V_ip4_ipsec_filtertunnel VNET(ip4_ipsec_filtertunnel)
77
78 SYSCTL_DECL(_net_inet_ipsec);
79 SYSCTL_INT(_net_inet_ipsec, OID_AUTO, filtertunnel,
80         CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip4_ipsec_filtertunnel), 0,
81         "If set filter packets from an IPsec tunnel.");
82
83 /*
84  * Check if we have to jump over firewall processing for this packet.
85  * Called from ip_input().
86  * 1 = jump over firewall, 0 = packet goes through firewall.
87  */
88 int
89 ip_ipsec_filtertunnel(struct mbuf *m)
90 {
91
92         /*
93          * Bypass packet filtering for packets previously handled by IPsec.
94          */
95         if (!V_ip4_ipsec_filtertunnel &&
96             m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL)
97                 return 1;
98         return 0;
99 }
100
101 /*
102  * Check if this packet has an active SA and needs to be dropped instead
103  * of forwarded.
104  * Called from ip_forward().
105  * 1 = drop packet, 0 = forward packet.
106  */
107 int
108 ip_ipsec_fwd(struct mbuf *m)
109 {
110
111         return (ipsec4_in_reject(m, NULL));
112 }
113
114 /*
115  * Check if protocol type doesn't have a further header and do IPSEC
116  * decryption or reject right now.  Protocols with further headers get
117  * their IPSEC treatment within the protocol specific processing.
118  * Called from ip_input().
119  * 1 = drop packet, 0 = continue processing packet.
120  */
121 int
122 ip_ipsec_input(struct mbuf *m, int nxt)
123 {
124         /*
125          * enforce IPsec policy checking if we are seeing last header.
126          * note that we do not visit this with protocols with pcb layer
127          * code - like udp/tcp/raw ip.
128          */
129         if ((inetsw[ip_protox[nxt]].pr_flags & PR_LASTHDR) != 0)
130                 return (ipsec4_in_reject(m, NULL));
131         return (0);
132 }
133
134 /*
135  * Compute the MTU for a forwarded packet that gets IPSEC encapsulated.
136  * Called from ip_forward().
137  * Returns MTU suggestion for ICMP needfrag reply.
138  */
139 int
140 ip_ipsec_mtu(struct mbuf *m, int mtu)
141 {
142         /*
143          * If the packet is routed over IPsec tunnel, tell the
144          * originator the tunnel MTU.
145          *      tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
146          * XXX quickhack!!!
147          */
148         return (mtu - ipsec_hdrsiz(m, IPSEC_DIR_OUTBOUND, NULL));
149 }
150
151 /*
152  * 
153  * Called from ip_output().
154  * 1 = drop packet, 0 = continue processing packet,
155  * -1 = packet was reinjected and stop processing packet
156  */
157 int
158 ip_ipsec_output(struct mbuf **m, struct inpcb *inp, int *error)
159 {
160         struct secpolicy *sp;
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                 /* Release SP if an error occured */
203                 if (*error != 0)
204                         KEY_FREESP(&sp);
205                 if (*error == EJUSTRETURN) {
206                         /*
207                          * We had a SP with a level of 'use' and no SA. We
208                          * will just continue to process the packet without
209                          * IPsec processing and return without error.
210                          */
211                         *error = 0;
212                         goto done;
213                 }
214                 /*
215                  * Preserve KAME behaviour: ENOENT can be returned
216                  * when an SA acquire is in progress.  Don't propagate
217                  * this to user-level; it confuses applications.
218                  *
219                  * XXX this will go away when the SADB is redone.
220                  */
221                 if (*error == ENOENT)
222                         *error = 0;
223                 goto reinjected;
224         } else {        /* sp == NULL */
225
226                 if (*error != 0) {
227                         /*
228                          * Hack: -EINVAL is used to signal that a packet
229                          * should be silently discarded.  This is typically
230                          * because we asked key management for an SA and
231                          * it was delayed (e.g. kicked up to IKE).
232                          */
233                         if (*error == -EINVAL)
234                                 *error = 0;
235                         goto bad;
236                 }
237                 /* No IPsec processing for this packet. */
238         }
239 done:
240         return (0);
241 reinjected:
242         return (-1);
243 bad:
244         if (sp != NULL)
245                 KEY_FREESP(&sp);
246         return 1;
247 }