blob: 837c830d6d8ec41126be5b376a5d2e2fe3ce44fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Extension Header handling for IPv6
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 * Andi Kleen <ak@muc.de>
8 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16/* Changes:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090017 * yoshfuji : ensure not to overrun while parsing
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * tlv options.
19 * Mitsuru KANDA @USAGI and: Remove ipv6_parse_exthdrs().
20 * YOSHIFUJI Hideaki @USAGI Register inbound extension header
21 * handlers as inet6_protocol{}.
22 */
23
24#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/net.h>
29#include <linux/netdevice.h>
30#include <linux/in6.h>
31#include <linux/icmpv6.h>
32
Herbert Xu352e5122007-11-13 21:34:06 -080033#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <net/sock.h>
35#include <net/snmp.h>
36
37#include <net/ipv6.h>
38#include <net/protocol.h>
39#include <net/transp_v6.h>
40#include <net/rawv6.h>
41#include <net/ndisc.h>
42#include <net/ip6_route.h>
43#include <net/addrconf.h>
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -070044#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -070045#include <net/xfrm.h>
46#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <asm/uaccess.h>
49
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070050int ipv6_find_tlv(struct sk_buff *skb, int offset, int type)
51{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070052 const unsigned char *nh = skb_network_header(skb);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070053 int packet_len = skb->tail - skb->network_header;
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070054 struct ipv6_opt_hdr *hdr;
55 int len;
56
57 if (offset + 2 > packet_len)
58 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070059 hdr = (struct ipv6_opt_hdr *)(nh + offset);
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070060 len = ((hdr->hdrlen + 1) << 3);
61
62 if (offset + len > packet_len)
63 goto bad;
64
65 offset += 2;
66 len -= 2;
67
68 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070069 int opttype = nh[offset];
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070070 int optlen;
71
72 if (opttype == type)
73 return offset;
74
75 switch (opttype) {
76 case IPV6_TLV_PAD0:
77 optlen = 1;
78 break;
79 default:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070080 optlen = nh[offset + 1] + 2;
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070081 if (optlen > len)
82 goto bad;
83 break;
84 }
85 offset += optlen;
86 len -= optlen;
87 }
88 /* not_found */
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070089 bad:
90 return -1;
91}
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -070092EXPORT_SYMBOL_GPL(ipv6_find_tlv);
Masahide NAKAMURAc61a4042006-08-23 19:18:35 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * Parsing tlv encoded headers.
96 *
97 * Parsing function "func" returns 1, if parsing succeed
98 * and 0, if it failed.
99 * It MUST NOT touch skb->h.
100 */
101
102struct tlvtype_proc {
103 int type;
Herbert Xue5bbef22007-10-15 12:50:28 -0700104 int (*func)(struct sk_buff *skb, int offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107/*********************
108 Generic functions
109 *********************/
110
111/* An unknown option is detected, decide what to do */
112
Herbert Xue5bbef22007-10-15 12:50:28 -0700113static int ip6_tlvopt_unknown(struct sk_buff *skb, int optoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700115 switch ((skb_network_header(skb)[optoff] & 0xC0) >> 6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 case 0: /* ignore */
117 return 1;
118
119 case 1: /* drop packet */
120 break;
121
122 case 3: /* Send ICMP if not a multicast address and drop packet */
123 /* Actually, it is redundant check. icmp_send
124 will recheck in any case.
125 */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700126 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 break;
128 case 2: /* send ICMP PARM PROB regardless and drop packet */
129 icmpv6_param_prob(skb, ICMPV6_UNK_OPTION, optoff);
130 return 0;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 kfree_skb(skb);
134 return 0;
135}
136
137/* Parse tlv encoded option header (hop-by-hop or destination) */
138
Herbert Xue5bbef22007-10-15 12:50:28 -0700139static int ip6_parse_tlv(struct tlvtype_proc *procs, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 struct tlvtype_proc *curr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700142 const unsigned char *nh = skb_network_header(skb);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300143 int off = skb_network_header_len(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700144 int len = (skb_transport_header(skb)[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700146 if (skb_transport_offset(skb) + len > skb_headlen(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 goto bad;
148
149 off += 2;
150 len -= 2;
151
152 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700153 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700155 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 case IPV6_TLV_PAD0:
157 optlen = 1;
158 break;
159
160 case IPV6_TLV_PADN:
161 break;
162
163 default: /* Other TLV code so scan list */
164 if (optlen > len)
165 goto bad;
166 for (curr=procs; curr->type >= 0; curr++) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700167 if (curr->type == nh[off]) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900168 /* type specific length/alignment
169 checks will be performed in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 func(). */
Herbert Xue5bbef22007-10-15 12:50:28 -0700171 if (curr->func(skb, off) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173 break;
174 }
175 }
176 if (curr->type < 0) {
Herbert Xue5bbef22007-10-15 12:50:28 -0700177 if (ip6_tlvopt_unknown(skb, off) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return 0;
179 }
180 break;
181 }
182 off += optlen;
183 len -= optlen;
184 }
185 if (len == 0)
186 return 1;
187bad:
188 kfree_skb(skb);
189 return 0;
190}
191
192/*****************************
193 Destination options header.
194 *****************************/
195
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700196#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Herbert Xue5bbef22007-10-15 12:50:28 -0700197static int ipv6_dest_hao(struct sk_buff *skb, int optoff)
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700198{
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700199 struct ipv6_destopt_hao *hao;
200 struct inet6_skb_parm *opt = IP6CB(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700201 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700202 struct in6_addr tmp_addr;
203 int ret;
204
205 if (opt->dsthao) {
206 LIMIT_NETDEBUG(KERN_DEBUG "hao duplicated\n");
207 goto discard;
208 }
209 opt->dsthao = opt->dst1;
210 opt->dst1 = 0;
211
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700212 hao = (struct ipv6_destopt_hao *)(skb_network_header(skb) + optoff);
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700213
214 if (hao->length != 16) {
215 LIMIT_NETDEBUG(
216 KERN_DEBUG "hao invalid option length = %d\n", hao->length);
217 goto discard;
218 }
219
220 if (!(ipv6_addr_type(&hao->addr) & IPV6_ADDR_UNICAST)) {
221 LIMIT_NETDEBUG(
222 KERN_DEBUG "hao is not an unicast addr: " NIP6_FMT "\n", NIP6(hao->addr));
223 goto discard;
224 }
225
226 ret = xfrm6_input_addr(skb, (xfrm_address_t *)&ipv6h->daddr,
227 (xfrm_address_t *)&hao->addr, IPPROTO_DSTOPTS);
228 if (unlikely(ret < 0))
229 goto discard;
230
231 if (skb_cloned(skb)) {
Herbert Xu65c88462007-10-15 01:29:10 -0700232 if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700233 goto discard;
234
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700235 /* update all variable using below by copied skbuff */
Herbert Xu65c88462007-10-15 01:29:10 -0700236 hao = (struct ipv6_destopt_hao *)(skb_network_header(skb) +
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700237 optoff);
Herbert Xu65c88462007-10-15 01:29:10 -0700238 ipv6h = ipv6_hdr(skb);
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700239 }
240
241 if (skb->ip_summed == CHECKSUM_COMPLETE)
242 skb->ip_summed = CHECKSUM_NONE;
243
244 ipv6_addr_copy(&tmp_addr, &ipv6h->saddr);
245 ipv6_addr_copy(&ipv6h->saddr, &hao->addr);
246 ipv6_addr_copy(&hao->addr, &tmp_addr);
247
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700248 if (skb->tstamp.tv64 == 0)
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700249 __net_timestamp(skb);
250
251 return 1;
252
253 discard:
254 kfree_skb(skb);
255 return 0;
256}
257#endif
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static struct tlvtype_proc tlvprocdestopt_lst[] = {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700260#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700261 {
262 .type = IPV6_TLV_HAO,
263 .func = ipv6_dest_hao,
264 },
265#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 {-1, NULL}
267};
268
Herbert Xue5bbef22007-10-15 12:50:28 -0700269static int ipv6_destopt_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct inet6_skb_parm *opt = IP6CB(skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700272#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700273 __u16 dstbuf;
274#endif
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900275 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700277 if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
278 !pskb_may_pull(skb, (skb_transport_offset(skb) +
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700279 ((skb_transport_header(skb)[1] + 1) << 3)))) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900280 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
281 IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 kfree_skb(skb);
283 return -1;
284 }
285
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300286 opt->lastopt = opt->dst1 = skb_network_header_len(skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700287#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700288 dstbuf = opt->dst1;
289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900291 dst = dst_clone(skb->dst);
Herbert Xue5bbef22007-10-15 12:50:28 -0700292 if (ip6_parse_tlv(tlvprocdestopt_lst, skb)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900293 dst_release(dst);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700294 skb->transport_header += (skb_transport_header(skb)[1] + 1) << 3;
Masahide NAKAMURAdc435e62006-08-31 15:18:49 -0700295 opt = IP6CB(skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700296#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700297 opt->nhoff = dstbuf;
298#else
Patrick McHardy951dbc82006-01-06 23:02:34 -0800299 opt->nhoff = opt->dst1;
Masahide NAKAMURAa831f5b2006-08-23 19:24:48 -0700300#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 1;
302 }
303
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900304 IP6_INC_STATS_BH(ip6_dst_idev(dst), IPSTATS_MIB_INHDRERRORS);
305 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return -1;
307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/********************************
310 Routing header.
311 ********************************/
312
Herbert Xue5bbef22007-10-15 12:50:28 -0700313static int ipv6_rthdr_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct inet6_skb_parm *opt = IP6CB(skb);
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700316 struct in6_addr *addr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct in6_addr daddr;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700318 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 int n, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct ipv6_rt_hdr *hdr;
321 struct rt0_hdr *rthdr;
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -0700322 int accept_source_route = dev_net(skb->dev)->ipv6.devconf_all->accept_source_route;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700323
YOSHIFUJI Hideakic382bb92007-07-10 22:47:58 -0700324 idev = in6_dev_get(skb->dev);
325 if (idev) {
326 if (accept_source_route > idev->cnf.accept_source_route)
327 accept_source_route = idev->cnf.accept_source_route;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700328 in6_dev_put(idev);
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700329 }
330
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700331 if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
332 !pskb_may_pull(skb, (skb_transport_offset(skb) +
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700333 ((skb_transport_header(skb)[1] + 1) << 3)))) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900334 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
335 IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 kfree_skb(skb);
337 return -1;
338 }
339
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700340 hdr = (struct ipv6_rt_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700342 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 skb->pkt_type != PACKET_HOST) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900344 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
345 IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 kfree_skb(skb);
347 return -1;
348 }
349
350looped_back:
351 if (hdr->segments_left == 0) {
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700352 switch (hdr->type) {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700353#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700354 case IPV6_SRCRT_TYPE_2:
355 /* Silently discard type 2 header unless it was
356 * processed by own
357 */
358 if (!addr) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900359 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
360 IPSTATS_MIB_INADDRERRORS);
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700361 kfree_skb(skb);
362 return -1;
363 }
364 break;
365#endif
366 default:
367 break;
368 }
369
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300370 opt->lastopt = opt->srcrt = skb_network_header_len(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700371 skb->transport_header += (hdr->hdrlen + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 opt->dst0 = opt->dst1;
373 opt->dst1 = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700374 opt->nhoff = (&hdr->nexthdr) - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 1;
376 }
377
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700378 switch (hdr->type) {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700379#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700380 case IPV6_SRCRT_TYPE_2:
YOSHIFUJI Hideakic382bb92007-07-10 22:47:58 -0700381 if (accept_source_route < 0)
382 goto unknown_rh;
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700383 /* Silently discard invalid RTH type 2 */
384 if (hdr->hdrlen != 2 || hdr->segments_left != 1) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900385 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
386 IPSTATS_MIB_INHDRERRORS);
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700387 kfree_skb(skb);
388 return -1;
389 }
390 break;
391#endif
YOSHIFUJI Hideakic382bb92007-07-10 22:47:58 -0700392 default:
393 goto unknown_rh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /*
397 * This is the routing header forwarding algorithm from
398 * RFC 2460, page 16.
399 */
400
401 n = hdr->hdrlen >> 1;
402
403 if (hdr->segments_left > n) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900404 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
405 IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700406 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
407 ((&hdr->segments_left) -
408 skb_network_header(skb)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -1;
410 }
411
412 /* We are about to mangle packet header. Be careful!
413 Do not damage packets queued somewhere.
414 */
415 if (skb_cloned(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 /* the copy is a forwarded packet */
Herbert Xu65c88462007-10-15 01:29:10 -0700417 if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900418 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
419 IPSTATS_MIB_OUTDISCARDS);
420 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -1;
422 }
Herbert Xu65c88462007-10-15 01:29:10 -0700423 hdr = (struct ipv6_rt_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
Patrick McHardy84fa7932006-08-29 16:44:56 -0700426 if (skb->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 skb->ip_summed = CHECKSUM_NONE;
428
429 i = n - --hdr->segments_left;
430
431 rthdr = (struct rt0_hdr *) hdr;
432 addr = rthdr->addr;
433 addr += i - 1;
434
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700435 switch (hdr->type) {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700436#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700437 case IPV6_SRCRT_TYPE_2:
438 if (xfrm6_input_addr(skb, (xfrm_address_t *)addr,
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700439 (xfrm_address_t *)&ipv6_hdr(skb)->saddr,
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700440 IPPROTO_ROUTING) < 0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900441 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
442 IPSTATS_MIB_INADDRERRORS);
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700443 kfree_skb(skb);
444 return -1;
445 }
Denis V. Lunev0ce28552008-07-10 16:54:50 -0700446 if (!ipv6_chk_home_addr(dev_net(skb->dst->dev), addr)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900447 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
448 IPSTATS_MIB_INADDRERRORS);
Masahide NAKAMURA65d4ed92006-08-23 19:16:22 -0700449 kfree_skb(skb);
450 return -1;
451 }
452 break;
453#endif
454 default:
455 break;
456 }
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (ipv6_addr_is_multicast(addr)) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900459 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
460 IPSTATS_MIB_INADDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 kfree_skb(skb);
462 return -1;
463 }
464
465 ipv6_addr_copy(&daddr, addr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700466 ipv6_addr_copy(addr, &ipv6_hdr(skb)->daddr);
467 ipv6_addr_copy(&ipv6_hdr(skb)->daddr, &daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 dst_release(xchg(&skb->dst, NULL));
470 ip6_route_input(skb);
471 if (skb->dst->error) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700472 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 dst_input(skb);
474 return -1;
475 }
476
477 if (skb->dst->dev->flags&IFF_LOOPBACK) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700478 if (ipv6_hdr(skb)->hop_limit <= 1) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900479 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
480 IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT,
482 0, skb->dev);
483 kfree_skb(skb);
484 return -1;
485 }
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700486 ipv6_hdr(skb)->hop_limit--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto looped_back;
488 }
489
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700490 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 dst_input(skb);
492 return -1;
YOSHIFUJI Hideakic382bb92007-07-10 22:47:58 -0700493
494unknown_rh:
495 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
496 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
497 (&hdr->type) - skb_network_header(skb));
498 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501static struct inet6_protocol rthdr_protocol = {
502 .handler = ipv6_rthdr_rcv,
Herbert Xuadcfc7d2006-06-30 13:36:15 -0700503 .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_GSO_EXTHDR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504};
505
Daniel Lezcano248b2382007-12-11 02:23:54 -0800506static struct inet6_protocol destopt_protocol = {
507 .handler = ipv6_destopt_rcv,
508 .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_GSO_EXTHDR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509};
510
Daniel Lezcano248b2382007-12-11 02:23:54 -0800511static struct inet6_protocol nodata_protocol = {
512 .handler = dst_discard,
513 .flags = INET6_PROTO_NOPOLICY,
514};
515
516int __init ipv6_exthdrs_init(void)
517{
518 int ret;
519
520 ret = inet6_add_protocol(&rthdr_protocol, IPPROTO_ROUTING);
521 if (ret)
522 goto out;
523
524 ret = inet6_add_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
525 if (ret)
526 goto out_rthdr;
527
528 ret = inet6_add_protocol(&nodata_protocol, IPPROTO_NONE);
529 if (ret)
530 goto out_destopt;
531
532out:
533 return ret;
534out_rthdr:
535 inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING);
536out_destopt:
537 inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
538 goto out;
539};
540
541void ipv6_exthdrs_exit(void)
542{
543 inet6_del_protocol(&nodata_protocol, IPPROTO_NONE);
544 inet6_del_protocol(&destopt_protocol, IPPROTO_DSTOPTS);
545 inet6_del_protocol(&rthdr_protocol, IPPROTO_ROUTING);
546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/**********************************
549 Hop-by-hop options.
550 **********************************/
551
YOSHIFUJI Hideakie76b2b22007-05-09 14:01:59 -0700552/*
553 * Note: we cannot rely on skb->dst before we assign it in ip6_route_input().
554 */
555static inline struct inet6_dev *ipv6_skb_idev(struct sk_buff *skb)
556{
557 return skb->dst ? ip6_dst_idev(skb->dst) : __in6_dev_get(skb->dev);
558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/* Router Alert as of RFC 2711 */
561
Herbert Xue5bbef22007-10-15 12:50:28 -0700562static int ipv6_hop_ra(struct sk_buff *skb, int optoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700564 const unsigned char *nh = skb_network_header(skb);
Masahide NAKAMURAa80ff032006-08-23 19:19:50 -0700565
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700566 if (nh[optoff + 1] == 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 IP6CB(skb)->ra = optoff;
568 return 1;
569 }
Patrick McHardy64ce2072005-08-09 20:50:53 -0700570 LIMIT_NETDEBUG(KERN_DEBUG "ipv6_hop_ra: wrong RA length %d\n",
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700571 nh[optoff + 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 kfree_skb(skb);
573 return 0;
574}
575
576/* Jumbo payload */
577
Herbert Xue5bbef22007-10-15 12:50:28 -0700578static int ipv6_hop_jumbo(struct sk_buff *skb, int optoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700580 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 u32 pkt_len;
582
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700583 if (nh[optoff + 1] != 4 || (optoff & 3) != 2) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700584 LIMIT_NETDEBUG(KERN_DEBUG "ipv6_hop_jumbo: wrong jumbo opt length/alignment %d\n",
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700585 nh[optoff+1]);
YOSHIFUJI Hideakie76b2b22007-05-09 14:01:59 -0700586 IP6_INC_STATS_BH(ipv6_skb_idev(skb),
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900587 IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 goto drop;
589 }
590
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700591 pkt_len = ntohl(*(__be32 *)(nh + optoff + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (pkt_len <= IPV6_MAXPLEN) {
YOSHIFUJI Hideakie76b2b22007-05-09 14:01:59 -0700593 IP6_INC_STATS_BH(ipv6_skb_idev(skb), IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff+2);
595 return 0;
596 }
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700597 if (ipv6_hdr(skb)->payload_len) {
YOSHIFUJI Hideakie76b2b22007-05-09 14:01:59 -0700598 IP6_INC_STATS_BH(ipv6_skb_idev(skb), IPSTATS_MIB_INHDRERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, optoff);
600 return 0;
601 }
602
603 if (pkt_len > skb->len - sizeof(struct ipv6hdr)) {
YOSHIFUJI Hideakie76b2b22007-05-09 14:01:59 -0700604 IP6_INC_STATS_BH(ipv6_skb_idev(skb), IPSTATS_MIB_INTRUNCATEDPKTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto drop;
606 }
Stephen Hemminger42ca89c2005-09-08 12:57:43 -0700607
608 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
609 goto drop;
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 1;
612
613drop:
614 kfree_skb(skb);
615 return 0;
616}
617
618static struct tlvtype_proc tlvprochopopt_lst[] = {
619 {
620 .type = IPV6_TLV_ROUTERALERT,
621 .func = ipv6_hop_ra,
622 },
623 {
624 .type = IPV6_TLV_JUMBO,
625 .func = ipv6_hop_jumbo,
626 },
627 { -1, }
628};
629
Herbert Xue5bbef22007-10-15 12:50:28 -0700630int ipv6_parse_hopopts(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Patrick McHardy951dbc82006-01-06 23:02:34 -0800632 struct inet6_skb_parm *opt = IP6CB(skb);
633
YOSHIFUJI Hideakiec670092006-04-18 14:46:26 -0700634 /*
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700635 * skb_network_header(skb) is equal to skb->data, and
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300636 * skb_network_header_len(skb) is always equal to
YOSHIFUJI Hideakiec670092006-04-18 14:46:26 -0700637 * sizeof(struct ipv6hdr) by definition of
638 * hop-by-hop options.
639 */
640 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + 8) ||
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700641 !pskb_may_pull(skb, (sizeof(struct ipv6hdr) +
642 ((skb_transport_header(skb)[1] + 1) << 3)))) {
YOSHIFUJI Hideakiec670092006-04-18 14:46:26 -0700643 kfree_skb(skb);
644 return -1;
645 }
646
Patrick McHardy951dbc82006-01-06 23:02:34 -0800647 opt->hop = sizeof(struct ipv6hdr);
Herbert Xue5bbef22007-10-15 12:50:28 -0700648 if (ip6_parse_tlv(tlvprochopopt_lst, skb)) {
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700649 skb->transport_header += (skb_transport_header(skb)[1] + 1) << 3;
Masahide NAKAMURAdc435e62006-08-31 15:18:49 -0700650 opt = IP6CB(skb);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800651 opt->nhoff = sizeof(struct ipv6hdr);
YOSHIFUJI Hideakib8097392006-04-18 14:48:45 -0700652 return 1;
Patrick McHardy951dbc82006-01-06 23:02:34 -0800653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -1;
655}
656
657/*
658 * Creating outbound headers.
659 *
660 * "build" functions work when skb is filled from head to tail (datagram)
661 * "push" functions work when headers are added from tail to head (tcp)
662 *
663 * In both cases we assume, that caller reserved enough room
664 * for headers.
665 */
666
667static void ipv6_push_rthdr(struct sk_buff *skb, u8 *proto,
668 struct ipv6_rt_hdr *opt,
669 struct in6_addr **addr_p)
670{
671 struct rt0_hdr *phdr, *ihdr;
672 int hops;
673
674 ihdr = (struct rt0_hdr *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 phdr = (struct rt0_hdr *) skb_push(skb, (ihdr->rt_hdr.hdrlen + 1) << 3);
677 memcpy(phdr, ihdr, sizeof(struct rt0_hdr));
678
679 hops = ihdr->rt_hdr.hdrlen >> 1;
680
681 if (hops > 1)
682 memcpy(phdr->addr, ihdr->addr + 1,
683 (hops - 1) * sizeof(struct in6_addr));
684
685 ipv6_addr_copy(phdr->addr + (hops - 1), *addr_p);
686 *addr_p = ihdr->addr;
687
688 phdr->rt_hdr.nexthdr = *proto;
689 *proto = NEXTHDR_ROUTING;
690}
691
692static void ipv6_push_exthdr(struct sk_buff *skb, u8 *proto, u8 type, struct ipv6_opt_hdr *opt)
693{
694 struct ipv6_opt_hdr *h = (struct ipv6_opt_hdr *)skb_push(skb, ipv6_optlen(opt));
695
696 memcpy(h, opt, ipv6_optlen(opt));
697 h->nexthdr = *proto;
698 *proto = type;
699}
700
701void ipv6_push_nfrag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt,
702 u8 *proto,
703 struct in6_addr **daddr)
704{
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900705 if (opt->srcrt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 ipv6_push_rthdr(skb, proto, opt->srcrt, daddr);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900707 /*
708 * IPV6_RTHDRDSTOPTS is ignored
709 * unless IPV6_RTHDR is set (RFC3542).
710 */
711 if (opt->dst0opt)
712 ipv6_push_exthdr(skb, proto, NEXTHDR_DEST, opt->dst0opt);
713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (opt->hopopt)
715 ipv6_push_exthdr(skb, proto, NEXTHDR_HOP, opt->hopopt);
716}
717
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900718EXPORT_SYMBOL(ipv6_push_nfrag_opts);
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720void ipv6_push_frag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt, u8 *proto)
721{
722 if (opt->dst1opt)
723 ipv6_push_exthdr(skb, proto, NEXTHDR_DEST, opt->dst1opt);
724}
725
726struct ipv6_txoptions *
727ipv6_dup_options(struct sock *sk, struct ipv6_txoptions *opt)
728{
729 struct ipv6_txoptions *opt2;
730
731 opt2 = sock_kmalloc(sk, opt->tot_len, GFP_ATOMIC);
732 if (opt2) {
733 long dif = (char*)opt2 - (char*)opt;
734 memcpy(opt2, opt, opt->tot_len);
735 if (opt2->hopopt)
736 *((char**)&opt2->hopopt) += dif;
737 if (opt2->dst0opt)
738 *((char**)&opt2->dst0opt) += dif;
739 if (opt2->dst1opt)
740 *((char**)&opt2->dst1opt) += dif;
741 if (opt2->srcrt)
742 *((char**)&opt2->srcrt) += dif;
743 }
744 return opt2;
745}
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900746
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800747EXPORT_SYMBOL_GPL(ipv6_dup_options);
748
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900749static int ipv6_renew_option(void *ohdr,
750 struct ipv6_opt_hdr __user *newopt, int newoptlen,
751 int inherit,
752 struct ipv6_opt_hdr **hdr,
753 char **p)
754{
755 if (inherit) {
756 if (ohdr) {
757 memcpy(*p, ohdr, ipv6_optlen((struct ipv6_opt_hdr *)ohdr));
758 *hdr = (struct ipv6_opt_hdr *)*p;
759 *p += CMSG_ALIGN(ipv6_optlen(*(struct ipv6_opt_hdr **)hdr));
760 }
761 } else {
762 if (newopt) {
763 if (copy_from_user(*p, newopt, newoptlen))
764 return -EFAULT;
765 *hdr = (struct ipv6_opt_hdr *)*p;
766 if (ipv6_optlen(*(struct ipv6_opt_hdr **)hdr) > newoptlen)
767 return -EINVAL;
768 *p += CMSG_ALIGN(newoptlen);
769 }
770 }
771 return 0;
772}
773
774struct ipv6_txoptions *
775ipv6_renew_options(struct sock *sk, struct ipv6_txoptions *opt,
776 int newtype,
777 struct ipv6_opt_hdr __user *newopt, int newoptlen)
778{
779 int tot_len = 0;
780 char *p;
781 struct ipv6_txoptions *opt2;
782 int err;
783
YOSHIFUJI Hideaki99c7bc02006-08-31 14:52:17 -0700784 if (opt) {
785 if (newtype != IPV6_HOPOPTS && opt->hopopt)
786 tot_len += CMSG_ALIGN(ipv6_optlen(opt->hopopt));
787 if (newtype != IPV6_RTHDRDSTOPTS && opt->dst0opt)
788 tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst0opt));
789 if (newtype != IPV6_RTHDR && opt->srcrt)
790 tot_len += CMSG_ALIGN(ipv6_optlen(opt->srcrt));
791 if (newtype != IPV6_DSTOPTS && opt->dst1opt)
792 tot_len += CMSG_ALIGN(ipv6_optlen(opt->dst1opt));
793 }
794
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900795 if (newopt && newoptlen)
796 tot_len += CMSG_ALIGN(newoptlen);
797
798 if (!tot_len)
799 return NULL;
800
YOSHIFUJI Hideaki8b8aa4b2005-11-20 12:18:17 +0900801 tot_len += sizeof(*opt2);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900802 opt2 = sock_kmalloc(sk, tot_len, GFP_ATOMIC);
803 if (!opt2)
804 return ERR_PTR(-ENOBUFS);
805
806 memset(opt2, 0, tot_len);
807
808 opt2->tot_len = tot_len;
809 p = (char *)(opt2 + 1);
810
YOSHIFUJI Hideaki99c7bc02006-08-31 14:52:17 -0700811 err = ipv6_renew_option(opt ? opt->hopopt : NULL, newopt, newoptlen,
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900812 newtype != IPV6_HOPOPTS,
813 &opt2->hopopt, &p);
814 if (err)
815 goto out;
816
YOSHIFUJI Hideaki99c7bc02006-08-31 14:52:17 -0700817 err = ipv6_renew_option(opt ? opt->dst0opt : NULL, newopt, newoptlen,
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900818 newtype != IPV6_RTHDRDSTOPTS,
819 &opt2->dst0opt, &p);
820 if (err)
821 goto out;
822
YOSHIFUJI Hideaki99c7bc02006-08-31 14:52:17 -0700823 err = ipv6_renew_option(opt ? opt->srcrt : NULL, newopt, newoptlen,
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900824 newtype != IPV6_RTHDR,
YOSHIFUJI Hideaki99c7bc02006-08-31 14:52:17 -0700825 (struct ipv6_opt_hdr **)&opt2->srcrt, &p);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900826 if (err)
827 goto out;
828
YOSHIFUJI Hideaki99c7bc02006-08-31 14:52:17 -0700829 err = ipv6_renew_option(opt ? opt->dst1opt : NULL, newopt, newoptlen,
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900830 newtype != IPV6_DSTOPTS,
831 &opt2->dst1opt, &p);
832 if (err)
833 goto out;
834
835 opt2->opt_nflen = (opt2->hopopt ? ipv6_optlen(opt2->hopopt) : 0) +
836 (opt2->dst0opt ? ipv6_optlen(opt2->dst0opt) : 0) +
837 (opt2->srcrt ? ipv6_optlen(opt2->srcrt) : 0);
838 opt2->opt_flen = (opt2->dst1opt ? ipv6_optlen(opt2->dst1opt) : 0);
839
840 return opt2;
841out:
YOSHIFUJI Hideaki8b8aa4b2005-11-20 12:18:17 +0900842 sock_kfree_s(sk, opt2, opt2->tot_len);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900843 return ERR_PTR(err);
844}
845
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900846struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
847 struct ipv6_txoptions *opt)
848{
849 /*
850 * ignore the dest before srcrt unless srcrt is being included.
851 * --yoshfuji
852 */
853 if (opt && opt->dst0opt && !opt->srcrt) {
854 if (opt_space != opt) {
855 memcpy(opt_space, opt, sizeof(*opt_space));
856 opt = opt_space;
857 }
858 opt->opt_nflen -= ipv6_optlen(opt->dst0opt);
859 opt->dst0opt = NULL;
860 }
861
862 return opt;
863}
864