]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/ipcomp_output.c
1 /* $FreeBSD: src/sys/netinet6/ipcomp_output.c,v 1.1.2.2 2001/07/03 11:01:54 ume Exp $ */
2 /* $KAME: ipcomp_output.c,v 1.23 2001/01/23 08:59:37 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>
81 static int ipcomp_output
__P((struct mbuf
*, u_char
*, struct mbuf
*,
82 struct ipsecrequest
*, int));
85 * Modify the packet so that the payload is compressed.
86 * The mbuf (m) must start with IPv4 or IPv6 header.
87 * On failure, free the given mbuf and return non-zero.
92 * IP ......... payload
93 * during the encryption:
96 * IP ............... ipcomp payload
100 * <-----------------> compoff
103 ipcomp_output(m
, nexthdrp
, md
, isr
, af
)
107 struct ipsecrequest
*isr
;
114 struct ipcomp
*ipcomp
;
115 struct secasvar
*sav
= isr
->sav
;
116 const struct ipcomp_algorithm
*algo
;
117 u_int16_t cpi
; /* host order */
118 size_t plen0
, plen
; /*payload length to be compressed*/
122 struct ipsecstat
*stat
;
138 ipseclog((LOG_ERR
, "ipcomp_output: unsupported af %d\n", af
));
139 return 0; /* no change at all */
142 /* grab parameters */
143 algo
= ipcomp_algorithm_lookup(sav
->alg_enc
);
144 if ((ntohl(sav
->spi
) & ~0xffff) != 0 || !algo
) {
149 if ((sav
->flags
& SADB_X_EXT_RAWCPI
) == 0)
152 cpi
= ntohl(sav
->spi
) & 0xffff;
154 /* compute original payload length */
156 for (n
= md
; n
; n
= n
->m_next
)
159 /* if the payload is short enough, we don't need to compress */
160 if (plen
< algo
->minplen
)
164 * retain the original packet for two purposes:
165 * (1) we need to backout our changes when compression is not necessary.
166 * (2) byte lifetime computation should use the original packet.
167 * see RFC2401 page 23.
168 * compromise two m_copym(). we will be going through every byte of
169 * the payload during compression process anyways.
171 mcopy
= m_copym(m
, 0, M_COPYALL
, M_NOWAIT
);
176 md0
= m_copym(md
, 0, M_COPYALL
, M_NOWAIT
);
184 /* make the packet over-writable */
185 for (mprev
= m
; mprev
&& mprev
->m_next
!= md
; mprev
= mprev
->m_next
)
187 if (mprev
== NULL
|| mprev
->m_next
!= md
) {
188 ipseclog((LOG_DEBUG
, "ipcomp%d_output: md is not in chain\n",
196 mprev
->m_next
= NULL
;
197 if ((md
= ipsec_copypkt(md
)) == NULL
) {
206 /* compress data part */
207 if ((*algo
->compress
)(m
, md
, &plen
) || mprev
->m_next
== NULL
) {
208 ipseclog((LOG_ERR
, "packet compression failure\n"));
216 stat
->out_comphist
[sav
->alg_enc
]++;
220 * if the packet became bigger, meaningless to use IPComp.
221 * we've only wasted our cpu time.
231 * no need to backout change beyond here.
236 m
->m_pkthdr
.len
-= plen0
;
237 m
->m_pkthdr
.len
+= plen
;
241 * insert IPComp header.
244 struct ip
*ip
= NULL
;
247 struct ip6_hdr
*ip6
= NULL
;
249 size_t hlen
= 0; /*ip header len*/
250 size_t complen
= sizeof(struct ipcomp
);
255 ip
= mtod(m
, struct ip
*);
257 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
259 hlen
= ip
->ip_hl
<< 2;
265 ip6
= mtod(m
, struct ip6_hdr
*);
271 compoff
= m
->m_pkthdr
.len
- plen
;
274 * grow the mbuf to accomodate ipcomp header.
275 * before: IP ... payload
276 * after: IP ... ipcomp payload
278 if (M_LEADINGSPACE(md
) < complen
) {
279 MGET(n
, M_DONTWAIT
, MT_DATA
);
288 m
->m_pkthdr
.len
+= complen
;
289 ipcomp
= mtod(n
, struct ipcomp
*);
291 md
->m_len
+= complen
;
292 md
->m_data
-= complen
;
293 m
->m_pkthdr
.len
+= complen
;
294 ipcomp
= mtod(md
, struct ipcomp
*);
297 bzero(ipcomp
, sizeof(*ipcomp
));
298 ipcomp
->comp_nxt
= *nexthdrp
;
299 *nexthdrp
= IPPROTO_IPCOMP
;
300 ipcomp
->comp_cpi
= htons(cpi
);
304 if (compoff
+ complen
+ plen
< IP_MAXPACKET
)
305 ip
->ip_len
= htons(compoff
+ complen
+ plen
);
308 "IPv4 ESP output: size exceeds limit\n"));
309 ipsecstat
.out_inval
++;
318 /* total packet length will be computed in ip6_output() */
326 "NULL mbuf after compression in ipcomp%d_output",
332 /* compute byte lifetime against original packet */
333 key_sa_recordxfer(sav
, mcopy
);
342 panic("something bad in ipcomp_output");
348 ipcomp4_output(m
, isr
)
350 struct ipsecrequest
*isr
;
353 if (m
->m_len
< sizeof(struct ip
)) {
354 ipseclog((LOG_DEBUG
, "ipcomp4_output: first mbuf too short\n"));
355 ipsecstat
.out_inval
++;
359 ip
= mtod(m
, struct ip
*);
360 /* XXX assumes that m->m_next points to payload */
361 return ipcomp_output(m
, &ip
->ip_p
, m
->m_next
, isr
, AF_INET
);
367 ipcomp6_output(m
, nexthdrp
, md
, isr
)
371 struct ipsecrequest
*isr
;
373 if (m
->m_len
< sizeof(struct ip6_hdr
)) {
374 ipseclog((LOG_DEBUG
, "ipcomp6_output: first mbuf too short\n"));
375 ipsec6stat
.out_inval
++;
379 return ipcomp_output(m
, nexthdrp
, md
, isr
, AF_INET6
);