Add a pfil_has_hooks() inline to shortcut calls to pfil_run_hooks(),
[dragonfly.git] / sys / netinet6 / ipcomp_input.c
1 /*      $FreeBSD: src/sys/netinet6/ipcomp_input.c,v 1.1.2.3 2002/04/28 05:40:27 suz Exp $       */
2 /*      $DragonFly: src/sys/netinet6/ipcomp_input.c,v 1.5 2004/05/20 18:30:36 cpressey Exp $    */
3 /*      $KAME: ipcomp_input.c,v 1.25 2001/03/01 09:12:09 itojun Exp $   */
4
5 /*
6  * Copyright (C) 1999 WIDE Project.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the project nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /*
35  * RFC2393 IP payload compression protocol (IPComp).
36  */
37
38 #include "opt_inet.h"
39 #include "opt_inet6.h"
40
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/mbuf.h>
44 #include <sys/domain.h>
45 #include <sys/protosw.h>
46 #include <sys/socket.h>
47 #include <sys/errno.h>
48 #include <sys/time.h>
49 #include <sys/syslog.h>
50
51 #include <net/if.h>
52 #include <net/route.h>
53 #include <net/netisr.h>
54 #include <net/zlib.h>
55 #include <machine/cpu.h>
56
57 #include <netinet/in.h>
58 #include <netinet/in_systm.h>
59 #include <netinet/in_var.h>
60 #include <netinet/ip.h>
61 #include <netinet/ip_var.h>
62 #include <netinet/ip_ecn.h>
63
64 #ifdef INET6
65 #include <netinet/ip6.h>
66 #include <netinet6/ip6_var.h>
67 #endif
68 #include <netinet6/ipcomp.h>
69 #ifdef INET6
70 #include <netinet6/ipcomp6.h>
71 #endif
72
73 #include <netinet6/ipsec.h>
74 #ifdef INET6
75 #include <netinet6/ipsec6.h>
76 #endif
77 #include <netproto/key/key.h>
78 #include <netproto/key/keydb.h>
79
80 #include <machine/stdarg.h>
81
82 #include <net/net_osdep.h>
83
84 #define IPLEN_FLIPPED
85
86 #ifdef INET
87 #include <netinet/ipprotosw.h>
88 extern struct ipprotosw inetsw[];
89
90 void
91 ipcomp4_input(struct mbuf *m, int off, int proto)
92 {
93         struct mbuf *md;
94         struct ip *ip;
95         struct ipcomp *ipcomp;
96         const struct ipcomp_algorithm *algo;
97         u_int16_t cpi;  /* host order */
98         u_int16_t nxt;
99         size_t hlen;
100         int error;
101         size_t newlen, olen;
102         struct secasvar *sav = NULL;
103
104         if (m->m_pkthdr.len < off + sizeof(struct ipcomp)) {
105                 ipseclog((LOG_DEBUG, "IPv4 IPComp input: assumption failed "
106                     "(packet too short)\n"));
107                 ipsecstat.in_inval++;
108                 goto fail;
109         }
110
111         md = m_pulldown(m, off, sizeof(*ipcomp), NULL);
112         if (!m) {
113                 m = NULL;       /* already freed */
114                 ipseclog((LOG_DEBUG, "IPv4 IPComp input: assumption failed "
115                     "(pulldown failure)\n"));
116                 ipsecstat.in_inval++;
117                 goto fail;
118         }
119         ipcomp = mtod(md, struct ipcomp *);
120         ip = mtod(m, struct ip *);
121         nxt = ipcomp->comp_nxt;
122 #ifdef _IP_VHL
123         hlen = IP_VHL_HL(ip->ip_vhl) << 2;
124 #else
125         hlen = ip->ip_hl << 2;
126 #endif
127
128         cpi = ntohs(ipcomp->comp_cpi);
129
130         if (cpi >= IPCOMP_CPI_NEGOTIATE_MIN) {
131                 sav = key_allocsa(AF_INET, (caddr_t)&ip->ip_src,
132                         (caddr_t)&ip->ip_dst, IPPROTO_IPCOMP, htonl(cpi));
133                 if (sav != NULL
134                  && (sav->state == SADB_SASTATE_MATURE
135                   || sav->state == SADB_SASTATE_DYING)) {
136                         cpi = sav->alg_enc;     /* XXX */
137                         /* other parameters to look at? */
138                 }
139         }
140         algo = ipcomp_algorithm_lookup(cpi);
141         if (!algo) {
142                 ipseclog((LOG_WARNING, "IPv4 IPComp input: unknown cpi %u\n",
143                         cpi));
144                 ipsecstat.in_nosa++;
145                 goto fail;
146         }
147
148         /* chop ipcomp header */
149         ipcomp = NULL;
150         md->m_data += sizeof(struct ipcomp);
151         md->m_len -= sizeof(struct ipcomp);
152         m->m_pkthdr.len -= sizeof(struct ipcomp);
153 #ifdef IPLEN_FLIPPED
154         ip->ip_len -= sizeof(struct ipcomp);
155 #else
156         ip->ip_len = htons(ntohs(ip->ip_len) - sizeof(struct ipcomp));
157 #endif
158
159         olen = m->m_pkthdr.len;
160         newlen = m->m_pkthdr.len - off;
161         error = (*algo->decompress)(m, m->m_next, &newlen);
162         if (error != 0) {
163                 if (error == EINVAL)
164                         ipsecstat.in_inval++;
165                 else if (error == ENOBUFS)
166                         ipsecstat.in_nomem++;
167                 m = NULL;
168                 goto fail;
169         }
170         ipsecstat.in_comphist[cpi]++;
171
172         /*
173          * returning decompressed packet onto icmp is meaningless.
174          * mark it decrypted to prevent icmp from attaching original packet.
175          */
176         m->m_flags |= M_DECRYPTED;
177
178         m->m_pkthdr.len = off + newlen;
179         ip = mtod(m, struct ip *);
180     {
181         size_t len;
182 #ifdef IPLEN_FLIPPED
183         len = ip->ip_len;
184 #else
185         len = ntohs(ip->ip_len);
186 #endif
187         /*
188          * be careful about underflow.  also, do not assign exact value
189          * as ip_len is manipulated differently on *BSDs.
190          */
191         len += m->m_pkthdr.len;
192         len -= olen;
193         if (len & ~0xffff) {
194                 /* packet too big after decompress */
195                 ipsecstat.in_inval++;
196                 goto fail;
197         }
198 #ifdef IPLEN_FLIPPED
199         ip->ip_len = len & 0xffff;
200 #else
201         ip->ip_len = htons(len & 0xffff);
202 #endif
203         ip->ip_p = nxt;
204     }
205
206         if (sav) {
207                 key_sa_recordxfer(sav, m);
208                 if (ipsec_addhist(m, IPPROTO_IPCOMP, (u_int32_t)cpi) != 0) {
209                         ipsecstat.in_nomem++;
210                         goto fail;
211                 }
212                 key_freesav(sav);
213                 sav = NULL;
214         }
215
216         if (nxt != IPPROTO_DONE) {
217                 if ((inetsw[ip_protox[nxt]].pr_flags & PR_LASTHDR) != 0 &&
218                     ipsec4_in_reject(m, NULL)) {
219                         ipsecstat.in_polvio++;
220                         goto fail;
221                 }
222                 (*inetsw[ip_protox[nxt]].pr_input)(m, off, nxt);
223         } else
224                 m_freem(m);
225         m = NULL;
226
227         ipsecstat.in_success++;
228         return;
229
230 fail:
231         if (sav)
232                 key_freesav(sav);
233         if (m)
234                 m_freem(m);
235         return;
236 }
237 #endif /* INET */
238
239 #ifdef INET6
240 int
241 ipcomp6_input(struct mbuf **mp, int *offp, int proto)
242 {
243         struct mbuf *m, *md;
244         int off;
245         struct ip6_hdr *ip6;
246         struct ipcomp *ipcomp;
247         const struct ipcomp_algorithm *algo;
248         u_int16_t cpi;  /* host order */
249         u_int16_t nxt;
250         int error;
251         size_t newlen;
252         struct secasvar *sav = NULL;
253         char *prvnxtp;
254
255         m = *mp;
256         off = *offp;
257
258         md = m_pulldown(m, off, sizeof(*ipcomp), NULL);
259         if (!m) {
260                 m = NULL;       /* already freed */
261                 ipseclog((LOG_DEBUG, "IPv6 IPComp input: assumption failed "
262                     "(pulldown failure)\n"));
263                 ipsec6stat.in_inval++;
264                 goto fail;
265         }
266         ipcomp = mtod(md, struct ipcomp *);
267         ip6 = mtod(m, struct ip6_hdr *);
268         nxt = ipcomp->comp_nxt;
269
270         cpi = ntohs(ipcomp->comp_cpi);
271
272         if (cpi >= IPCOMP_CPI_NEGOTIATE_MIN) {
273                 sav = key_allocsa(AF_INET6, (caddr_t)&ip6->ip6_src,
274                         (caddr_t)&ip6->ip6_dst, IPPROTO_IPCOMP, htonl(cpi));
275                 if (sav != NULL
276                  && (sav->state == SADB_SASTATE_MATURE
277                   || sav->state == SADB_SASTATE_DYING)) {
278                         cpi = sav->alg_enc;     /* XXX */
279                         /* other parameters to look at? */
280                 }
281         }
282         algo = ipcomp_algorithm_lookup(cpi);
283         if (!algo) {
284                 ipseclog((LOG_WARNING, "IPv6 IPComp input: unknown cpi %u; "
285                         "dropping the packet for simplicity\n", cpi));
286                 ipsec6stat.in_nosa++;
287                 goto fail;
288         }
289
290         /* chop ipcomp header */
291         ipcomp = NULL;
292         md->m_data += sizeof(struct ipcomp);
293         md->m_len -= sizeof(struct ipcomp);
294         m->m_pkthdr.len -= sizeof(struct ipcomp);
295
296         newlen = m->m_pkthdr.len - off;
297         error = (*algo->decompress)(m, md, &newlen);
298         if (error != 0) {
299                 if (error == EINVAL)
300                         ipsec6stat.in_inval++;
301                 else if (error == ENOBUFS)
302                         ipsec6stat.in_nomem++;
303                 m = NULL;
304                 goto fail;
305         }
306         ipsec6stat.in_comphist[cpi]++;
307         m->m_pkthdr.len = off + newlen;
308
309         /*
310          * returning decompressed packet onto icmp is meaningless.
311          * mark it decrypted to prevent icmp from attaching original packet.
312          */
313         m->m_flags |= M_DECRYPTED;
314
315         /* update next header field */
316         prvnxtp = ip6_get_prevhdr(m, off);
317         *prvnxtp = nxt;
318
319         /*
320          * no need to adjust payload length, as all the IPv6 protocols
321          * look at m->m_pkthdr.len
322          */
323
324         if (sav) {
325                 key_sa_recordxfer(sav, m);
326                 if (ipsec_addhist(m, IPPROTO_IPCOMP, (u_int32_t)cpi) != 0) {
327                         ipsec6stat.in_nomem++;
328                         goto fail;
329                 }
330                 key_freesav(sav);
331                 sav = NULL;
332         }
333         *offp = off;
334         *mp = m;
335         ipsec6stat.in_success++;
336         return nxt;
337
338 fail:
339         if (m)
340                 m_freem(m);
341         if (sav)
342                 key_freesav(sav);
343         return IPPROTO_DONE;
344 }
345 #endif /* INET6 */