]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/ipcomp_input.c
1 /* $FreeBSD: src/sys/netinet6/ipcomp_input.c,v 1.1.2.2 2001/07/03 11:01:54 ume Exp $ */
2 /* $KAME: ipcomp_input.c,v 1.25 2001/03/01 09:12:09 itojun Exp $ */
5 * Copyright (C) 1999 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * RFC2393 IP payload compression protocol (IPComp).
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/malloc.h>
42 #include <sys/domain.h>
43 #include <sys/protosw.h>
44 #include <sys/socket.h>
45 #include <sys/errno.h>
47 #include <sys/kernel.h>
48 #include <sys/syslog.h>
51 #include <net/route.h>
52 #include <net/netisr.h>
54 #include <kern/cpu_number.h>
56 #include <netinet/in.h>
57 #include <netinet/in_systm.h>
58 #include <netinet/in_var.h>
59 #include <netinet/ip.h>
60 #include <netinet/ip_var.h>
61 #include <netinet/ip_ecn.h>
64 #include <netinet/ip6.h>
65 #include <netinet6/ip6_var.h>
67 #include <netinet6/ipcomp.h>
69 #include <netinet6/ipcomp6.h>
72 #include <netinet6/ipsec.h>
74 #include <netinet6/ipsec6.h>
76 #include <netkey/key.h>
77 #include <netkey/keydb.h>
79 #include <net/net_osdep.h>
85 ipcomp4_input(struct mbuf
*m
, int off
)
89 struct ipcomp
*ipcomp
;
90 const struct ipcomp_algorithm
*algo
;
91 u_int16_t cpi
; /* host order */
96 struct secasvar
*sav
= NULL
;
99 if (m
->m_pkthdr
.len
< off
+ sizeof(struct ipcomp
)) {
100 ipseclog((LOG_DEBUG
, "IPv4 IPComp input: assumption failed "
101 "(packet too short)\n"));
102 ipsecstat
.in_inval
++;
106 md
= m_pulldown(m
, off
, sizeof(*ipcomp
), NULL
);
108 m
= NULL
; /*already freed*/
109 ipseclog((LOG_DEBUG
, "IPv4 IPComp input: assumption failed "
110 "(pulldown failure)\n"));
111 ipsecstat
.in_inval
++;
114 ipcomp
= mtod(md
, struct ipcomp
*);
115 ip
= mtod(m
, struct ip
*);
116 nxt
= ipcomp
->comp_nxt
;
118 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
120 hlen
= ip
->ip_hl
<< 2;
123 cpi
= ntohs(ipcomp
->comp_cpi
);
125 if (cpi
>= IPCOMP_CPI_NEGOTIATE_MIN
) {
126 sav
= key_allocsa(AF_INET
, (caddr_t
)&ip
->ip_src
,
127 (caddr_t
)&ip
->ip_dst
, IPPROTO_IPCOMP
, htonl(cpi
));
129 && (sav
->state
== SADB_SASTATE_MATURE
130 || sav
->state
== SADB_SASTATE_DYING
)) {
131 cpi
= sav
->alg_enc
; /*XXX*/
132 /* other parameters to look at? */
135 algo
= ipcomp_algorithm_lookup(cpi
);
137 ipseclog((LOG_WARNING
, "IPv4 IPComp input: unknown cpi %u\n",
143 /* chop ipcomp header */
145 md
->m_data
+= sizeof(struct ipcomp
);
146 md
->m_len
-= sizeof(struct ipcomp
);
147 m
->m_pkthdr
.len
-= sizeof(struct ipcomp
);
149 ip
->ip_len
-= sizeof(struct ipcomp
);
151 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - sizeof(struct ipcomp
));
154 olen
= m
->m_pkthdr
.len
;
155 newlen
= m
->m_pkthdr
.len
- off
;
156 error
= (*algo
->decompress
)(m
, m
->m_next
, &newlen
);
159 ipsecstat
.in_inval
++;
160 else if (error
== ENOBUFS
)
161 ipsecstat
.in_nomem
++;
165 ipsecstat
.in_comphist
[cpi
]++;
168 * returning decompressed packet onto icmp is meaningless.
169 * mark it decrypted to prevent icmp from attaching original packet.
171 m
->m_flags
|= M_DECRYPTED
;
173 m
->m_pkthdr
.len
= off
+ newlen
;
174 ip
= mtod(m
, struct ip
*);
180 len
= ntohs(ip
->ip_len
);
183 * be careful about underflow. also, do not assign exact value
184 * as ip_len is manipulated differently on *BSDs.
186 len
+= m
->m_pkthdr
.len
;
189 /* packet too big after decompress */
190 ipsecstat
.in_inval
++;
194 ip
->ip_len
= len
& 0xffff;
196 ip
->ip_len
= htons(len
& 0xffff);
202 key_sa_recordxfer(sav
, m
);
203 if (ipsec_addhist(m
, IPPROTO_IPCOMP
, (u_int32_t
)cpi
) != 0) {
204 ipsecstat
.in_nomem
++;
211 if (nxt
!= IPPROTO_DONE
) {
212 if ((ip_protox
[nxt
]->pr_flags
& PR_LASTHDR
) != 0 &&
213 ipsec4_in_reject(m
, NULL
)) {
214 ipsecstat
.in_polvio
++;
217 (*ip_protox
[nxt
]->pr_input
)(m
, off
);
223 ipsecstat
.in_success
++;
236 ipcomp6_input(mp
, offp
)
243 struct ipcomp
*ipcomp
;
244 const struct ipcomp_algorithm
*algo
;
245 u_int16_t cpi
; /* host order */
249 struct secasvar
*sav
= NULL
;
255 md
= m_pulldown(m
, off
, sizeof(*ipcomp
), NULL
);
257 m
= NULL
; /*already freed*/
258 ipseclog((LOG_DEBUG
, "IPv6 IPComp input: assumption failed "
259 "(pulldown failure)\n"));
260 ipsec6stat
.in_inval
++;
263 ipcomp
= mtod(md
, struct ipcomp
*);
264 ip6
= mtod(m
, struct ip6_hdr
*);
265 nxt
= ipcomp
->comp_nxt
;
267 cpi
= ntohs(ipcomp
->comp_cpi
);
269 if (cpi
>= IPCOMP_CPI_NEGOTIATE_MIN
) {
270 sav
= key_allocsa(AF_INET6
, (caddr_t
)&ip6
->ip6_src
,
271 (caddr_t
)&ip6
->ip6_dst
, IPPROTO_IPCOMP
, htonl(cpi
));
273 && (sav
->state
== SADB_SASTATE_MATURE
274 || sav
->state
== SADB_SASTATE_DYING
)) {
275 cpi
= sav
->alg_enc
; /*XXX*/
276 /* other parameters to look at? */
279 algo
= ipcomp_algorithm_lookup(cpi
);
281 ipseclog((LOG_WARNING
, "IPv6 IPComp input: unknown cpi %u; "
282 "dropping the packet for simplicity\n", cpi
));
283 ipsec6stat
.in_nosa
++;
287 /* chop ipcomp header */
289 md
->m_data
+= sizeof(struct ipcomp
);
290 md
->m_len
-= sizeof(struct ipcomp
);
291 m
->m_pkthdr
.len
-= sizeof(struct ipcomp
);
293 newlen
= m
->m_pkthdr
.len
- off
;
294 error
= (*algo
->decompress
)(m
, md
, &newlen
);
297 ipsec6stat
.in_inval
++;
298 else if (error
== ENOBUFS
)
299 ipsec6stat
.in_nomem
++;
303 ipsec6stat
.in_comphist
[cpi
]++;
304 m
->m_pkthdr
.len
= off
+ newlen
;
307 * returning decompressed packet onto icmp is meaningless.
308 * mark it decrypted to prevent icmp from attaching original packet.
310 m
->m_flags
|= M_DECRYPTED
;
312 /* update next header field */
313 prvnxtp
= ip6_get_prevhdr(m
, off
);
317 * no need to adjust payload length, as all the IPv6 protocols
318 * look at m->m_pkthdr.len
322 key_sa_recordxfer(sav
, m
);
323 if (ipsec_addhist(m
, IPPROTO_IPCOMP
, (u_int32_t
)cpi
) != 0) {
324 ipsec6stat
.in_nomem
++;
332 ipsec6stat
.in_success
++;