]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * IPv6 input | |
1ab1457c | 3 | * Linux INET6 implementation |
1da177e4 LT |
4 | * |
5 | * Authors: | |
6 | * Pedro Roque <[email protected]> | |
7 | * Ian P. Morris <[email protected]> | |
8 | * | |
1da177e4 LT |
9 | * Based in linux/net/ipv4/ip_input.c |
10 | * | |
11 | * This program is free software; you can redistribute it and/or | |
12 | * modify it under the terms of the GNU General Public License | |
13 | * as published by the Free Software Foundation; either version | |
14 | * 2 of the License, or (at your option) any later version. | |
15 | */ | |
16 | /* Changes | |
17 | * | |
67ba4152 IM |
18 | * Mitsuru KANDA @USAGI and |
19 | * YOSHIFUJI Hideaki @USAGI: Remove ipv6_parse_exthdrs(). | |
1da177e4 LT |
20 | */ |
21 | ||
22 | #include <linux/errno.h> | |
23 | #include <linux/types.h> | |
24 | #include <linux/socket.h> | |
25 | #include <linux/sockios.h> | |
1da177e4 LT |
26 | #include <linux/net.h> |
27 | #include <linux/netdevice.h> | |
28 | #include <linux/in6.h> | |
29 | #include <linux/icmpv6.h> | |
7bc570c8 | 30 | #include <linux/mroute6.h> |
5a0e3ad6 | 31 | #include <linux/slab.h> |
1da177e4 LT |
32 | |
33 | #include <linux/netfilter.h> | |
34 | #include <linux/netfilter_ipv6.h> | |
35 | ||
36 | #include <net/sock.h> | |
37 | #include <net/snmp.h> | |
38 | ||
39 | #include <net/ipv6.h> | |
40 | #include <net/protocol.h> | |
41 | #include <net/transp_v6.h> | |
42 | #include <net/rawv6.h> | |
43 | #include <net/ndisc.h> | |
44 | #include <net/ip6_route.h> | |
45 | #include <net/addrconf.h> | |
46 | #include <net/xfrm.h> | |
1f07d03e | 47 | #include <net/inet_ecn.h> |
48fb6b55 | 48 | #include <net/dst_metadata.h> |
1da177e4 | 49 | |
d8269e2c EC |
50 | static void ip6_rcv_finish_core(struct net *net, struct sock *sk, |
51 | struct sk_buff *skb) | |
1da177e4 | 52 | { |
dddb64bc SAK |
53 | void (*edemux)(struct sk_buff *skb); |
54 | ||
e21145a9 | 55 | if (net->ipv4.sysctl_ip_early_demux && !skb_dst(skb) && skb->sk == NULL) { |
c7109986 ED |
56 | const struct inet6_protocol *ipprot; |
57 | ||
c7109986 | 58 | ipprot = rcu_dereference(inet6_protos[ipv6_hdr(skb)->nexthdr]); |
dddb64bc SAK |
59 | if (ipprot && (edemux = READ_ONCE(ipprot->early_demux))) |
60 | edemux(skb); | |
c7109986 | 61 | } |
48fb6b55 | 62 | if (!skb_valid_dst(skb)) |
1da177e4 | 63 | ip6_route_input(skb); |
d8269e2c EC |
64 | } |
65 | ||
66 | int ip6_rcv_finish(struct net *net, struct sock *sk, struct sk_buff *skb) | |
67 | { | |
68 | /* if ingress device is enslaved to an L3 master device pass the | |
69 | * skb to its handler for processing | |
70 | */ | |
71 | skb = l3mdev_ip6_rcv(skb); | |
72 | if (!skb) | |
73 | return NET_RX_SUCCESS; | |
74 | ip6_rcv_finish_core(net, sk, skb); | |
1da177e4 LT |
75 | |
76 | return dst_input(skb); | |
77 | } | |
78 | ||
d8269e2c EC |
79 | static void ip6_sublist_rcv_finish(struct list_head *head) |
80 | { | |
81 | struct sk_buff *skb, *next; | |
82 | ||
83 | list_for_each_entry_safe(skb, next, head, list) | |
84 | dst_input(skb); | |
85 | } | |
86 | ||
87 | static void ip6_list_rcv_finish(struct net *net, struct sock *sk, | |
88 | struct list_head *head) | |
89 | { | |
90 | struct dst_entry *curr_dst = NULL; | |
91 | struct sk_buff *skb, *next; | |
92 | struct list_head sublist; | |
93 | ||
94 | INIT_LIST_HEAD(&sublist); | |
95 | list_for_each_entry_safe(skb, next, head, list) { | |
96 | struct dst_entry *dst; | |
97 | ||
22f6bbb7 | 98 | skb_list_del_init(skb); |
d8269e2c EC |
99 | /* if ingress device is enslaved to an L3 master device pass the |
100 | * skb to its handler for processing | |
101 | */ | |
102 | skb = l3mdev_ip6_rcv(skb); | |
103 | if (!skb) | |
104 | continue; | |
105 | ip6_rcv_finish_core(net, sk, skb); | |
106 | dst = skb_dst(skb); | |
107 | if (curr_dst != dst) { | |
108 | /* dispatch old sublist */ | |
109 | if (!list_empty(&sublist)) | |
110 | ip6_sublist_rcv_finish(&sublist); | |
111 | /* start new sublist */ | |
112 | INIT_LIST_HEAD(&sublist); | |
113 | curr_dst = dst; | |
114 | } | |
115 | list_add_tail(&skb->list, &sublist); | |
116 | } | |
117 | /* dispatch final sublist */ | |
118 | ip6_sublist_rcv_finish(&sublist); | |
119 | } | |
120 | ||
121 | static struct sk_buff *ip6_rcv_core(struct sk_buff *skb, struct net_device *dev, | |
122 | struct net *net) | |
1da177e4 | 123 | { |
b71d1d42 | 124 | const struct ipv6hdr *hdr; |
67ba4152 | 125 | u32 pkt_len; |
a11d206d | 126 | struct inet6_dev *idev; |
1da177e4 | 127 | |
a11d206d YH |
128 | if (skb->pkt_type == PACKET_OTHERHOST) { |
129 | kfree_skb(skb); | |
d8269e2c | 130 | return NULL; |
a11d206d YH |
131 | } |
132 | ||
133 | rcu_read_lock(); | |
1da177e4 | 134 | |
a11d206d YH |
135 | idev = __in6_dev_get(skb->dev); |
136 | ||
c2005eb0 | 137 | __IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_IN, skb->len); |
1da177e4 | 138 | |
778d80be YH |
139 | if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL || |
140 | !idev || unlikely(idev->cnf.disable_ipv6)) { | |
1d015503 | 141 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INDISCARDS); |
71f6f6df | 142 | goto drop; |
1da177e4 LT |
143 | } |
144 | ||
6b7fdc3a GC |
145 | memset(IP6CB(skb), 0, sizeof(struct inet6_skb_parm)); |
146 | ||
1da177e4 LT |
147 | /* |
148 | * Store incoming device index. When the packet will | |
149 | * be queued, we cannot refer to skb->dev anymore. | |
150 | * | |
151 | * BTW, when we send a packet for our own local address on a | |
152 | * non-loopback interface (e.g. ethX), it is being delivered | |
de3cb747 | 153 | * via the loopback interface (lo) here; skb->dev = loopback_dev. |
1da177e4 LT |
154 | * It, however, should be considered as if it is being |
155 | * arrived via the sending interface (ethX), because of the | |
156 | * nature of scoping architecture. --yoshfuji | |
157 | */ | |
48fb6b55 | 158 | IP6CB(skb)->iif = skb_valid_dst(skb) ? ip6_dst_idev(skb_dst(skb))->dev->ifindex : dev->ifindex; |
1da177e4 | 159 | |
2889139a | 160 | if (unlikely(!pskb_may_pull(skb, sizeof(*hdr)))) |
1da177e4 LT |
161 | goto err; |
162 | ||
0660e03f | 163 | hdr = ipv6_hdr(skb); |
1da177e4 LT |
164 | |
165 | if (hdr->version != 6) | |
166 | goto err; | |
167 | ||
1d015503 ED |
168 | __IP6_ADD_STATS(net, idev, |
169 | IPSTATS_MIB_NOECTPKTS + | |
1f07d03e | 170 | (ipv6_get_dsfield(hdr) & INET_ECN_MASK), |
1d015503 | 171 | max_t(unsigned short, 1, skb_shinfo(skb)->gso_segs)); |
f630e43a YH |
172 | /* |
173 | * RFC4291 2.5.3 | |
0aa8c13e FW |
174 | * The loopback address must not be used as the source address in IPv6 |
175 | * packets that are sent outside of a single node. [..] | |
f630e43a YH |
176 | * A packet received on an interface with a destination address |
177 | * of loopback must be dropped. | |
178 | */ | |
0aa8c13e FW |
179 | if ((ipv6_addr_loopback(&hdr->saddr) || |
180 | ipv6_addr_loopback(&hdr->daddr)) && | |
3ede0bbc RS |
181 | !(dev->flags & IFF_LOOPBACK) && |
182 | !netif_is_l3_master(dev)) | |
f630e43a YH |
183 | goto err; |
184 | ||
1c4a154e HFS |
185 | /* RFC4291 Errata ID: 3480 |
186 | * Interface-Local scope spans only a single interface on a | |
187 | * node and is useful only for loopback transmission of | |
188 | * multicast. Packets with interface-local scope received | |
189 | * from another node must be discarded. | |
190 | */ | |
191 | if (!(skb->pkt_type == PACKET_LOOPBACK || | |
192 | dev->flags & IFF_LOOPBACK) && | |
193 | ipv6_addr_is_multicast(&hdr->daddr) && | |
194 | IPV6_ADDR_MC_SCOPE(&hdr->daddr) == 1) | |
195 | goto err; | |
196 | ||
abbc3043 JB |
197 | /* If enabled, drop unicast packets that were encapsulated in link-layer |
198 | * multicast or broadcast to protected against the so-called "hole-196" | |
199 | * attack in 802.11 wireless. | |
200 | */ | |
201 | if (!ipv6_addr_is_multicast(&hdr->daddr) && | |
202 | (skb->pkt_type == PACKET_BROADCAST || | |
203 | skb->pkt_type == PACKET_MULTICAST) && | |
204 | idev->cnf.drop_unicast_in_l2_multicast) | |
205 | goto err; | |
206 | ||
20314092 HFS |
207 | /* RFC4291 2.7 |
208 | * Nodes must not originate a packet to a multicast address whose scope | |
209 | * field contains the reserved value 0; if such a packet is received, it | |
210 | * must be silently dropped. | |
211 | */ | |
212 | if (ipv6_addr_is_multicast(&hdr->daddr) && | |
213 | IPV6_ADDR_MC_SCOPE(&hdr->daddr) == 0) | |
214 | goto err; | |
215 | ||
c457338d BH |
216 | /* |
217 | * RFC4291 2.7 | |
218 | * Multicast addresses must not be used as source addresses in IPv6 | |
219 | * packets or appear in any Routing header. | |
220 | */ | |
221 | if (ipv6_addr_is_multicast(&hdr->saddr)) | |
222 | goto err; | |
223 | ||
b0e380b1 | 224 | skb->transport_header = skb->network_header + sizeof(*hdr); |
951dbc8a PM |
225 | IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr); |
226 | ||
1da177e4 LT |
227 | pkt_len = ntohs(hdr->payload_len); |
228 | ||
229 | /* pkt_len may be zero if Jumbo payload option is present */ | |
230 | if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) { | |
60e5c166 | 231 | if (pkt_len + sizeof(struct ipv6hdr) > skb->len) { |
1d015503 ED |
232 | __IP6_INC_STATS(net, |
233 | idev, IPSTATS_MIB_INTRUNCATEDPKTS); | |
60e5c166 MC |
234 | goto drop; |
235 | } | |
1da177e4 | 236 | if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr))) { |
1d015503 | 237 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS); |
1da177e4 LT |
238 | goto drop; |
239 | } | |
0660e03f | 240 | hdr = ipv6_hdr(skb); |
1da177e4 LT |
241 | } |
242 | ||
243 | if (hdr->nexthdr == NEXTHDR_HOP) { | |
e5bbef20 | 244 | if (ipv6_parse_hopopts(skb) < 0) { |
1d015503 | 245 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS); |
a11d206d | 246 | rcu_read_unlock(); |
d8269e2c | 247 | return NULL; |
1da177e4 | 248 | } |
1da177e4 LT |
249 | } |
250 | ||
a11d206d YH |
251 | rcu_read_unlock(); |
252 | ||
71f9dacd HX |
253 | /* Must drop socket now because of tproxy. */ |
254 | skb_orphan(skb); | |
255 | ||
d8269e2c | 256 | return skb; |
1da177e4 | 257 | err: |
1d015503 | 258 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS); |
1da177e4 | 259 | drop: |
a11d206d | 260 | rcu_read_unlock(); |
1da177e4 | 261 | kfree_skb(skb); |
d8269e2c EC |
262 | return NULL; |
263 | } | |
264 | ||
265 | int ipv6_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev) | |
266 | { | |
267 | struct net *net = dev_net(skb->dev); | |
268 | ||
269 | skb = ip6_rcv_core(skb, dev, net); | |
270 | if (skb == NULL) | |
271 | return NET_RX_DROP; | |
272 | return NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, | |
273 | net, NULL, skb, dev, NULL, | |
274 | ip6_rcv_finish); | |
275 | } | |
276 | ||
277 | static void ip6_sublist_rcv(struct list_head *head, struct net_device *dev, | |
278 | struct net *net) | |
279 | { | |
280 | NF_HOOK_LIST(NFPROTO_IPV6, NF_INET_PRE_ROUTING, net, NULL, | |
281 | head, dev, NULL, ip6_rcv_finish); | |
282 | ip6_list_rcv_finish(net, NULL, head); | |
283 | } | |
284 | ||
285 | /* Receive a list of IPv6 packets */ | |
286 | void ipv6_list_rcv(struct list_head *head, struct packet_type *pt, | |
287 | struct net_device *orig_dev) | |
288 | { | |
289 | struct net_device *curr_dev = NULL; | |
290 | struct net *curr_net = NULL; | |
291 | struct sk_buff *skb, *next; | |
292 | struct list_head sublist; | |
293 | ||
294 | INIT_LIST_HEAD(&sublist); | |
295 | list_for_each_entry_safe(skb, next, head, list) { | |
296 | struct net_device *dev = skb->dev; | |
297 | struct net *net = dev_net(dev); | |
298 | ||
22f6bbb7 | 299 | skb_list_del_init(skb); |
d8269e2c EC |
300 | skb = ip6_rcv_core(skb, dev, net); |
301 | if (skb == NULL) | |
302 | continue; | |
303 | ||
304 | if (curr_dev != dev || curr_net != net) { | |
305 | /* dispatch old sublist */ | |
306 | if (!list_empty(&sublist)) | |
307 | ip6_sublist_rcv(&sublist, curr_dev, curr_net); | |
308 | /* start new sublist */ | |
309 | INIT_LIST_HEAD(&sublist); | |
310 | curr_dev = dev; | |
311 | curr_net = net; | |
312 | } | |
313 | list_add_tail(&skb->list, &sublist); | |
314 | } | |
315 | /* dispatch final sublist */ | |
316 | ip6_sublist_rcv(&sublist, curr_dev, curr_net); | |
1da177e4 LT |
317 | } |
318 | ||
319 | /* | |
320 | * Deliver the packet to the host | |
321 | */ | |
322 | ||
323 | ||
0c4b51f0 | 324 | static int ip6_input_finish(struct net *net, struct sock *sk, struct sk_buff *skb) |
1da177e4 | 325 | { |
41135cc8 | 326 | const struct inet6_protocol *ipprot; |
f9242b6b | 327 | struct inet6_dev *idev; |
1da177e4 | 328 | unsigned int nhoff; |
a50feda5 ED |
329 | int nexthdr; |
330 | bool raw; | |
1da44f9c | 331 | bool have_final = false; |
1da177e4 | 332 | |
1da177e4 LT |
333 | /* |
334 | * Parse extension headers | |
335 | */ | |
336 | ||
1da177e4 | 337 | rcu_read_lock(); |
1b0ccfe5 | 338 | resubmit: |
adf30907 | 339 | idev = ip6_dst_idev(skb_dst(skb)); |
ea2ae17d | 340 | if (!pskb_pull(skb, skb_transport_offset(skb))) |
1da177e4 | 341 | goto discard; |
951dbc8a | 342 | nhoff = IP6CB(skb)->nhoff; |
d56f90a7 | 343 | nexthdr = skb_network_header(skb)[nhoff]; |
1da177e4 | 344 | |
4c64242a | 345 | resubmit_final: |
69d6da0b | 346 | raw = raw6_local_deliver(skb, nexthdr); |
e5d08d71 | 347 | ipprot = rcu_dereference(inet6_protos[nexthdr]); |
53b24b8f | 348 | if (ipprot) { |
1da177e4 | 349 | int ret; |
1ab1457c | 350 | |
1da44f9c TH |
351 | if (have_final) { |
352 | if (!(ipprot->flags & INET6_PROTO_FINAL)) { | |
353 | /* Once we've seen a final protocol don't | |
354 | * allow encapsulation on any non-final | |
355 | * ones. This allows foo in UDP encapsulation | |
356 | * to work. | |
357 | */ | |
358 | goto discard; | |
359 | } | |
360 | } else if (ipprot->flags & INET6_PROTO_FINAL) { | |
b71d1d42 | 361 | const struct ipv6hdr *hdr; |
1da177e4 | 362 | |
1da44f9c TH |
363 | /* Only do this once for first final protocol */ |
364 | have_final = true; | |
365 | ||
9fb9cbb1 YK |
366 | /* Free reference early: we don't need it any more, |
367 | and it may hold ip_conntrack module loaded | |
368 | indefinitely. */ | |
369 | nf_reset(skb); | |
370 | ||
d56f90a7 | 371 | skb_postpull_rcsum(skb, skb_network_header(skb), |
cfe1fc77 | 372 | skb_network_header_len(skb)); |
0660e03f | 373 | hdr = ipv6_hdr(skb); |
1da177e4 LT |
374 | if (ipv6_addr_is_multicast(&hdr->daddr) && |
375 | !ipv6_chk_mcast_addr(skb->dev, &hdr->daddr, | |
376 | &hdr->saddr) && | |
daad1512 | 377 | !ipv6_is_mld(skb, nexthdr, skb_network_header_len(skb))) |
1da177e4 LT |
378 | goto discard; |
379 | } | |
380 | if (!(ipprot->flags & INET6_PROTO_NOPOLICY) && | |
1ab1457c | 381 | !xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) |
1da177e4 | 382 | goto discard; |
1ab1457c | 383 | |
e5bbef20 | 384 | ret = ipprot->handler(skb); |
4c64242a TH |
385 | if (ret > 0) { |
386 | if (ipprot->flags & INET6_PROTO_FINAL) { | |
387 | /* Not an extension header, most likely UDP | |
388 | * encapsulation. Use return value as nexthdr | |
389 | * protocol not nhoff (which presumably is | |
390 | * not set by handler). | |
391 | */ | |
392 | nexthdr = ret; | |
393 | goto resubmit_final; | |
394 | } else { | |
395 | goto resubmit; | |
396 | } | |
397 | } else if (ret == 0) { | |
1d015503 | 398 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INDELIVERS); |
4c64242a | 399 | } |
1da177e4 | 400 | } else { |
69d6da0b | 401 | if (!raw) { |
1da177e4 | 402 | if (xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) { |
1d015503 ED |
403 | __IP6_INC_STATS(net, idev, |
404 | IPSTATS_MIB_INUNKNOWNPROTOS); | |
fad87aca | 405 | icmpv6_send(skb, ICMPV6_PARAMPROB, |
3ffe533c | 406 | ICMPV6_UNK_NEXTHDR, nhoff); |
1da177e4 | 407 | } |
d8c6f4b9 NH |
408 | kfree_skb(skb); |
409 | } else { | |
1d015503 | 410 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INDELIVERS); |
d8c6f4b9 NH |
411 | consume_skb(skb); |
412 | } | |
1da177e4 LT |
413 | } |
414 | rcu_read_unlock(); | |
415 | return 0; | |
416 | ||
417 | discard: | |
1d015503 | 418 | __IP6_INC_STATS(net, idev, IPSTATS_MIB_INDISCARDS); |
1da177e4 LT |
419 | rcu_read_unlock(); |
420 | kfree_skb(skb); | |
421 | return 0; | |
422 | } | |
423 | ||
424 | ||
425 | int ip6_input(struct sk_buff *skb) | |
426 | { | |
29a26a56 EB |
427 | return NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_IN, |
428 | dev_net(skb->dev), NULL, skb, skb->dev, NULL, | |
6e23ae2a | 429 | ip6_input_finish); |
1da177e4 | 430 | } |
b4869aa2 | 431 | EXPORT_SYMBOL_GPL(ip6_input); |
1da177e4 LT |
432 | |
433 | int ip6_mc_input(struct sk_buff *skb) | |
434 | { | |
b71d1d42 | 435 | const struct ipv6hdr *hdr; |
a50feda5 | 436 | bool deliver; |
1da177e4 | 437 | |
c2005eb0 | 438 | __IP6_UPD_PO_STATS(dev_net(skb_dst(skb)->dev), |
bdb7cc64 | 439 | __in6_dev_get_safely(skb->dev), IPSTATS_MIB_INMCAST, |
edf391ff | 440 | skb->len); |
1da177e4 | 441 | |
0660e03f | 442 | hdr = ipv6_hdr(skb); |
4c7966b8 | 443 | deliver = ipv6_chk_mcast_addr(skb->dev, &hdr->daddr, NULL); |
1da177e4 | 444 | |
7bc570c8 | 445 | #ifdef CONFIG_IPV6_MROUTE |
1da177e4 | 446 | /* |
7bc570c8 | 447 | * IPv6 multicast router mode is now supported ;) |
1da177e4 | 448 | */ |
53b7997f | 449 | if (dev_net(skb->dev)->ipv6.devconf_all->mc_forwarding && |
ddf64354 HFS |
450 | !(ipv6_addr_type(&hdr->daddr) & |
451 | (IPV6_ADDR_LOOPBACK|IPV6_ADDR_LINKLOCAL)) && | |
7bc570c8 YH |
452 | likely(!(IP6CB(skb)->flags & IP6SKB_FORWARDED))) { |
453 | /* | |
454 | * Okay, we try to forward - split and duplicate | |
455 | * packets. | |
456 | */ | |
457 | struct sk_buff *skb2; | |
458 | struct inet6_skb_parm *opt = IP6CB(skb); | |
459 | ||
460 | /* Check for MLD */ | |
dd3332bf | 461 | if (unlikely(opt->flags & IP6SKB_ROUTERALERT)) { |
7bc570c8 | 462 | /* Check if this is a mld message */ |
7bc570c8 | 463 | u8 nexthdr = hdr->nexthdr; |
75f2811c | 464 | __be16 frag_off; |
7bc570c8 YH |
465 | int offset; |
466 | ||
467 | /* Check if the value of Router Alert | |
468 | * is for MLD (0x0000). | |
469 | */ | |
dd3332bf | 470 | if (opt->ra == htons(IPV6_OPT_ROUTERALERT_MLD)) { |
a50feda5 | 471 | deliver = false; |
aba6096b | 472 | |
7bc570c8 YH |
473 | if (!ipv6_ext_hdr(nexthdr)) { |
474 | /* BUG */ | |
aba6096b | 475 | goto out; |
7bc570c8 YH |
476 | } |
477 | offset = ipv6_skip_exthdr(skb, sizeof(*hdr), | |
75f2811c | 478 | &nexthdr, &frag_off); |
7bc570c8 | 479 | if (offset < 0) |
aba6096b | 480 | goto out; |
7bc570c8 | 481 | |
4c938d22 A |
482 | if (ipv6_is_mld(skb, nexthdr, offset)) |
483 | deliver = true; | |
7bc570c8 | 484 | |
4c938d22 | 485 | goto out; |
7bc570c8 YH |
486 | } |
487 | /* unknown RA - process it normally */ | |
488 | } | |
1da177e4 | 489 | |
7bc570c8 YH |
490 | if (deliver) |
491 | skb2 = skb_clone(skb, GFP_ATOMIC); | |
492 | else { | |
493 | skb2 = skb; | |
494 | skb = NULL; | |
495 | } | |
1ab1457c | 496 | |
7bc570c8 | 497 | if (skb2) { |
7bc570c8 | 498 | ip6_mr_input(skb2); |
1da177e4 LT |
499 | } |
500 | } | |
7bc570c8 | 501 | out: |
aba6096b YH |
502 | #endif |
503 | if (likely(deliver)) | |
1da177e4 | 504 | ip6_input(skb); |
aba6096b YH |
505 | else { |
506 | /* discard */ | |
507 | kfree_skb(skb); | |
1da177e4 | 508 | } |
1da177e4 LT |
509 | |
510 | return 0; | |
511 | } |