1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Linux INET6 implementation
7 * Pedro Roque <roque@di.fc.ul.pt>
8 * Ian P. Morris <I.P.Morris@soton.ac.uk>
10 * Based in linux/net/ipv4/ip_input.c
14 * Mitsuru KANDA @USAGI and
15 * YOSHIFUJI Hideaki @USAGI: Remove ipv6_parse_exthdrs().
18 #include <linux/errno.h>
19 #include <linux/types.h>
20 #include <linux/socket.h>
21 #include <linux/sockios.h>
22 #include <linux/net.h>
23 #include <linux/netdevice.h>
24 #include <linux/in6.h>
25 #include <linux/icmpv6.h>
26 #include <linux/mroute6.h>
27 #include <linux/slab.h>
28 #include <linux/indirect_call_wrapper.h>
30 #include <linux/netfilter.h>
31 #include <linux/netfilter_ipv6.h>
37 #include <net/protocol.h>
38 #include <net/transp_v6.h>
39 #include <net/rawv6.h>
40 #include <net/ndisc.h>
41 #include <net/ip6_route.h>
42 #include <net/addrconf.h>
44 #include <net/inet_ecn.h>
45 #include <net/dst_metadata.h>
47 INDIRECT_CALLABLE_DECLARE(void udp_v6_early_demux(struct sk_buff
*));
48 INDIRECT_CALLABLE_DECLARE(void tcp_v6_early_demux(struct sk_buff
*));
49 static void ip6_rcv_finish_core(struct net
*net
, struct sock
*sk
,
52 void (*edemux
)(struct sk_buff
*skb
);
54 if (net
->ipv4
.sysctl_ip_early_demux
&& !skb_dst(skb
) && skb
->sk
== NULL
) {
55 const struct inet6_protocol
*ipprot
;
57 ipprot
= rcu_dereference(inet6_protos
[ipv6_hdr(skb
)->nexthdr
]);
58 if (ipprot
&& (edemux
= READ_ONCE(ipprot
->early_demux
)))
59 INDIRECT_CALL_2(edemux
, tcp_v6_early_demux
,
60 udp_v6_early_demux
, skb
);
62 if (!skb_valid_dst(skb
))
66 int ip6_rcv_finish(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
68 /* if ingress device is enslaved to an L3 master device pass the
69 * skb to its handler for processing
71 skb
= l3mdev_ip6_rcv(skb
);
73 return NET_RX_SUCCESS
;
74 ip6_rcv_finish_core(net
, sk
, skb
);
76 return dst_input(skb
);
79 static void ip6_sublist_rcv_finish(struct list_head
*head
)
81 struct sk_buff
*skb
, *next
;
83 list_for_each_entry_safe(skb
, next
, head
, list
)
87 static void ip6_list_rcv_finish(struct net
*net
, struct sock
*sk
,
88 struct list_head
*head
)
90 struct dst_entry
*curr_dst
= NULL
;
91 struct sk_buff
*skb
, *next
;
92 struct list_head sublist
;
94 INIT_LIST_HEAD(&sublist
);
95 list_for_each_entry_safe(skb
, next
, head
, list
) {
96 struct dst_entry
*dst
;
98 skb_list_del_init(skb
);
99 /* if ingress device is enslaved to an L3 master device pass the
100 * skb to its handler for processing
102 skb
= l3mdev_ip6_rcv(skb
);
105 ip6_rcv_finish_core(net
, sk
, 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
);
115 list_add_tail(&skb
->list
, &sublist
);
117 /* dispatch final sublist */
118 ip6_sublist_rcv_finish(&sublist
);
121 static struct sk_buff
*ip6_rcv_core(struct sk_buff
*skb
, struct net_device
*dev
,
124 const struct ipv6hdr
*hdr
;
126 struct inet6_dev
*idev
;
128 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
135 idev
= __in6_dev_get(skb
->dev
);
137 __IP6_UPD_PO_STATS(net
, idev
, IPSTATS_MIB_IN
, skb
->len
);
139 if ((skb
= skb_share_check(skb
, GFP_ATOMIC
)) == NULL
||
140 !idev
|| unlikely(idev
->cnf
.disable_ipv6
)) {
141 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INDISCARDS
);
145 memset(IP6CB(skb
), 0, sizeof(struct inet6_skb_parm
));
148 * Store incoming device index. When the packet will
149 * be queued, we cannot refer to skb->dev anymore.
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
153 * via the loopback interface (lo) here; skb->dev = loopback_dev.
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
158 IP6CB(skb
)->iif
= skb_valid_dst(skb
) ? ip6_dst_idev(skb_dst(skb
))->dev
->ifindex
: dev
->ifindex
;
160 if (unlikely(!pskb_may_pull(skb
, sizeof(*hdr
))))
165 if (hdr
->version
!= 6)
168 __IP6_ADD_STATS(net
, idev
,
169 IPSTATS_MIB_NOECTPKTS
+
170 (ipv6_get_dsfield(hdr
) & INET_ECN_MASK
),
171 max_t(unsigned short, 1, skb_shinfo(skb
)->gso_segs
));
174 * The loopback address must not be used as the source address in IPv6
175 * packets that are sent outside of a single node. [..]
176 * A packet received on an interface with a destination address
177 * of loopback must be dropped.
179 if ((ipv6_addr_loopback(&hdr
->saddr
) ||
180 ipv6_addr_loopback(&hdr
->daddr
)) &&
181 !(dev
->flags
& IFF_LOOPBACK
) &&
182 !netif_is_l3_master(dev
))
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.
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)
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.
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
)
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.
212 if (ipv6_addr_is_multicast(&hdr
->daddr
) &&
213 IPV6_ADDR_MC_SCOPE(&hdr
->daddr
) == 0)
218 * Multicast addresses must not be used as source addresses in IPv6
219 * packets or appear in any Routing header.
221 if (ipv6_addr_is_multicast(&hdr
->saddr
))
224 skb
->transport_header
= skb
->network_header
+ sizeof(*hdr
);
225 IP6CB(skb
)->nhoff
= offsetof(struct ipv6hdr
, nexthdr
);
227 pkt_len
= ntohs(hdr
->payload_len
);
229 /* pkt_len may be zero if Jumbo payload option is present */
230 if (pkt_len
|| hdr
->nexthdr
!= NEXTHDR_HOP
) {
231 if (pkt_len
+ sizeof(struct ipv6hdr
) > skb
->len
) {
233 idev
, IPSTATS_MIB_INTRUNCATEDPKTS
);
236 if (pskb_trim_rcsum(skb
, pkt_len
+ sizeof(struct ipv6hdr
))) {
237 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INHDRERRORS
);
243 if (hdr
->nexthdr
== NEXTHDR_HOP
) {
244 if (ipv6_parse_hopopts(skb
) < 0) {
245 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INHDRERRORS
);
253 /* Must drop socket now because of tproxy. */
258 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INHDRERRORS
);
265 int ipv6_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
, struct net_device
*orig_dev
)
267 struct net
*net
= dev_net(skb
->dev
);
269 skb
= ip6_rcv_core(skb
, dev
, net
);
272 return NF_HOOK(NFPROTO_IPV6
, NF_INET_PRE_ROUTING
,
273 net
, NULL
, skb
, dev
, NULL
,
277 static void ip6_sublist_rcv(struct list_head
*head
, struct net_device
*dev
,
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
);
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
)
289 struct net_device
*curr_dev
= NULL
;
290 struct net
*curr_net
= NULL
;
291 struct sk_buff
*skb
, *next
;
292 struct list_head sublist
;
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
);
299 skb_list_del_init(skb
);
300 skb
= ip6_rcv_core(skb
, dev
, net
);
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
);
313 list_add_tail(&skb
->list
, &sublist
);
315 /* dispatch final sublist */
316 ip6_sublist_rcv(&sublist
, curr_dev
, curr_net
);
319 INDIRECT_CALLABLE_DECLARE(int udpv6_rcv(struct sk_buff
*));
320 INDIRECT_CALLABLE_DECLARE(int tcp_v6_rcv(struct sk_buff
*));
323 * Deliver the packet to the host
325 void ip6_protocol_deliver_rcu(struct net
*net
, struct sk_buff
*skb
, int nexthdr
,
328 const struct inet6_protocol
*ipprot
;
329 struct inet6_dev
*idev
;
334 * Parse extension headers
338 idev
= ip6_dst_idev(skb_dst(skb
));
339 nhoff
= IP6CB(skb
)->nhoff
;
341 if (!pskb_pull(skb
, skb_transport_offset(skb
)))
343 nexthdr
= skb_network_header(skb
)[nhoff
];
347 raw
= raw6_local_deliver(skb
, nexthdr
);
348 ipprot
= rcu_dereference(inet6_protos
[nexthdr
]);
353 if (!(ipprot
->flags
& INET6_PROTO_FINAL
)) {
354 /* Once we've seen a final protocol don't
355 * allow encapsulation on any non-final
356 * ones. This allows foo in UDP encapsulation
361 } else if (ipprot
->flags
& INET6_PROTO_FINAL
) {
362 const struct ipv6hdr
*hdr
;
363 int sdif
= inet6_sdif(skb
);
364 struct net_device
*dev
;
366 /* Only do this once for first final protocol */
369 /* Free reference early: we don't need it any more,
370 and it may hold ip_conntrack module loaded
374 skb_postpull_rcsum(skb
, skb_network_header(skb
),
375 skb_network_header_len(skb
));
378 /* skb->dev passed may be master dev for vrfs. */
380 dev
= dev_get_by_index_rcu(net
, sdif
);
387 if (ipv6_addr_is_multicast(&hdr
->daddr
) &&
388 !ipv6_chk_mcast_addr(dev
, &hdr
->daddr
,
390 !ipv6_is_mld(skb
, nexthdr
, skb_network_header_len(skb
)))
393 if (!(ipprot
->flags
& INET6_PROTO_NOPOLICY
) &&
394 !xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
))
397 ret
= INDIRECT_CALL_2(ipprot
->handler
, tcp_v6_rcv
, udpv6_rcv
,
400 if (ipprot
->flags
& INET6_PROTO_FINAL
) {
401 /* Not an extension header, most likely UDP
402 * encapsulation. Use return value as nexthdr
403 * protocol not nhoff (which presumably is
404 * not set by handler).
411 } else if (ret
== 0) {
412 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INDELIVERS
);
416 if (xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
)) {
417 __IP6_INC_STATS(net
, idev
,
418 IPSTATS_MIB_INUNKNOWNPROTOS
);
419 icmpv6_send(skb
, ICMPV6_PARAMPROB
,
420 ICMPV6_UNK_NEXTHDR
, nhoff
);
424 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INDELIVERS
);
431 __IP6_INC_STATS(net
, idev
, IPSTATS_MIB_INDISCARDS
);
435 static int ip6_input_finish(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
438 ip6_protocol_deliver_rcu(net
, skb
, 0, false);
445 int ip6_input(struct sk_buff
*skb
)
447 return NF_HOOK(NFPROTO_IPV6
, NF_INET_LOCAL_IN
,
448 dev_net(skb
->dev
), NULL
, skb
, skb
->dev
, NULL
,
451 EXPORT_SYMBOL_GPL(ip6_input
);
453 int ip6_mc_input(struct sk_buff
*skb
)
455 int sdif
= inet6_sdif(skb
);
456 const struct ipv6hdr
*hdr
;
457 struct net_device
*dev
;
460 __IP6_UPD_PO_STATS(dev_net(skb_dst(skb
)->dev
),
461 __in6_dev_get_safely(skb
->dev
), IPSTATS_MIB_INMCAST
,
464 /* skb->dev passed may be master dev for vrfs. */
467 dev
= dev_get_by_index_rcu(dev_net(skb
->dev
), sdif
);
478 deliver
= ipv6_chk_mcast_addr(dev
, &hdr
->daddr
, NULL
);
482 #ifdef CONFIG_IPV6_MROUTE
484 * IPv6 multicast router mode is now supported ;)
486 if (dev_net(skb
->dev
)->ipv6
.devconf_all
->mc_forwarding
&&
487 !(ipv6_addr_type(&hdr
->daddr
) &
488 (IPV6_ADDR_LOOPBACK
|IPV6_ADDR_LINKLOCAL
)) &&
489 likely(!(IP6CB(skb
)->flags
& IP6SKB_FORWARDED
))) {
491 * Okay, we try to forward - split and duplicate
494 struct sk_buff
*skb2
;
495 struct inet6_skb_parm
*opt
= IP6CB(skb
);
498 if (unlikely(opt
->flags
& IP6SKB_ROUTERALERT
)) {
499 /* Check if this is a mld message */
500 u8 nexthdr
= hdr
->nexthdr
;
504 /* Check if the value of Router Alert
505 * is for MLD (0x0000).
507 if (opt
->ra
== htons(IPV6_OPT_ROUTERALERT_MLD
)) {
510 if (!ipv6_ext_hdr(nexthdr
)) {
514 offset
= ipv6_skip_exthdr(skb
, sizeof(*hdr
),
515 &nexthdr
, &frag_off
);
519 if (ipv6_is_mld(skb
, nexthdr
, offset
))
524 /* unknown RA - process it normally */
528 skb2
= skb_clone(skb
, GFP_ATOMIC
);