blob: 762a58c772b81f31841ebe9ae6e14deed57337f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * common UDP/RAW code
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/types.h>
17#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/interrupt.h>
19#include <linux/socket.h>
20#include <linux/sockios.h>
21#include <linux/in6.h>
22#include <linux/ipv6.h>
23#include <linux/route.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Chris Elstona495f832012-04-29 21:48:53 +000025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <net/ipv6.h>
28#include <net/ndisc.h>
29#include <net/addrconf.h>
30#include <net/transp_v6.h>
31#include <net/ip6_route.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070032#include <net/tcp_states.h>
YOSHIFUJI Hideaki / 吉藤英明e7219852013-01-13 05:02:01 +000033#include <net/dsfield.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <linux/errqueue.h>
36#include <asm/uaccess.h>
37
Eric Dumazeta50feda2012-05-18 18:57:34 +000038static bool ipv6_mapped_addr_any(const struct in6_addr *a)
Max Matveevc15fea22011-08-05 03:56:30 -070039{
Eric Dumazeta50feda2012-05-18 18:57:34 +000040 return ipv6_addr_v4mapped(a) && (a->s6_addr32[3] == 0);
Max Matveevc15fea22011-08-05 03:56:30 -070041}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
44{
45 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
Ian Morris67ba4152014-08-24 21:53:10 +010046 struct inet_sock *inet = inet_sk(sk);
47 struct ipv6_pinfo *np = inet6_sk(sk);
48 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct dst_entry *dst;
David S. Miller4c9483b2011-03-12 16:22:43 -050050 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct ip6_flowlabel *flowlabel = NULL;
Ian Morris67ba4152014-08-24 21:53:10 +010052 struct ipv6_txoptions *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int addr_type;
54 int err;
55
56 if (usin->sin6_family == AF_INET) {
57 if (__ipv6_only_sock(sk))
58 return -EAFNOSUPPORT;
59 err = ip4_datagram_connect(sk, uaddr, addr_len);
60 goto ipv4_connected;
61 }
62
63 if (addr_len < SIN6_LEN_RFC2133)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090064 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090066 if (usin->sin6_family != AF_INET6)
67 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
David S. Miller4c9483b2011-03-12 16:22:43 -050069 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -050071 fl6.flowlabel = usin->sin6_flowinfo&IPV6_FLOWINFO_MASK;
72 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
73 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +010074 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77 }
78
79 addr_type = ipv6_addr_type(&usin->sin6_addr);
80
81 if (addr_type == IPV6_ADDR_ANY) {
82 /*
83 * connect to self
84 */
85 usin->sin6_addr.s6_addr[15] = 0x01;
86 }
87
88 daddr = &usin->sin6_addr;
89
90 if (addr_type == IPV6_ADDR_MAPPED) {
91 struct sockaddr_in sin;
92
93 if (__ipv6_only_sock(sk)) {
94 err = -ENETUNREACH;
95 goto out;
96 }
97 sin.sin_family = AF_INET;
98 sin.sin_addr.s_addr = daddr->s6_addr32[3];
99 sin.sin_port = usin->sin6_port;
100
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900101 err = ip4_datagram_connect(sk,
Eldad Zackb5a42572012-04-01 07:49:03 +0000102 (struct sockaddr *) &sin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 sizeof(sin));
104
105ipv4_connected:
106 if (err)
107 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900108
Eric Dumazetefe42082013-10-03 15:42:29 -0700109 ipv6_addr_set_v4mapped(inet->inet_daddr, &sk->sk_v6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Max Matveevc15fea22011-08-05 03:56:30 -0700111 if (ipv6_addr_any(&np->saddr) ||
112 ipv6_mapped_addr_any(&np->saddr))
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000113 ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Eric Dumazetefe42082013-10-03 15:42:29 -0700115 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr) ||
116 ipv6_mapped_addr_any(&sk->sk_v6_rcv_saddr)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000117 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
Eric Dumazetefe42082013-10-03 15:42:29 -0700118 &sk->sk_v6_rcv_saddr);
Eric Dumazet719f8352010-09-08 05:08:44 +0000119 if (sk->sk_prot->rehash)
120 sk->sk_prot->rehash(sk);
121 }
Brian Haleyb301e822009-10-07 13:58:25 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 goto out;
124 }
125
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000126 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (addr_len >= sizeof(struct sockaddr_in6) &&
128 usin->sin6_scope_id) {
129 if (sk->sk_bound_dev_if &&
130 sk->sk_bound_dev_if != usin->sin6_scope_id) {
131 err = -EINVAL;
132 goto out;
133 }
134 sk->sk_bound_dev_if = usin->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Brian Haley1ac4f002008-01-08 23:52:21 -0800137 if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
138 sk->sk_bound_dev_if = np->mcast_oif;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* Connect to link-local address requires an interface */
141 if (!sk->sk_bound_dev_if) {
142 err = -EINVAL;
143 goto out;
144 }
145 }
146
Eric Dumazetefe42082013-10-03 15:42:29 -0700147 sk->sk_v6_daddr = *daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500148 np->flow_label = fl6.flowlabel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000150 inet->inet_dport = usin->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 /*
153 * Check for a route to destination an obtain the
154 * destination cache for it.
155 */
156
David S. Miller4c9483b2011-03-12 16:22:43 -0500157 fl6.flowi6_proto = sk->sk_protocol;
Eric Dumazetefe42082013-10-03 15:42:29 -0700158 fl6.daddr = sk->sk_v6_daddr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000159 fl6.saddr = np->saddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500160 fl6.flowi6_oif = sk->sk_bound_dev_if;
161 fl6.flowi6_mark = sk->sk_mark;
David S. Miller1958b852011-03-12 16:36:19 -0500162 fl6.fl6_dport = inet->inet_dport;
163 fl6.fl6_sport = inet->inet_sport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
David S. Miller4c9483b2011-03-12 16:22:43 -0500165 if (!fl6.flowi6_oif && (addr_type&IPV6_ADDR_MULTICAST))
166 fl6.flowi6_oif = np->mcast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
David S. Miller4c9483b2011-03-12 16:22:43 -0500168 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700169
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000170 opt = flowlabel ? flowlabel->opt : np->opt;
David S. Miller4c9483b2011-03-12 16:22:43 -0500171 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200173 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800174 err = 0;
175 if (IS_ERR(dst)) {
176 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* source address lookup done in ip6_dst_lookup */
181
182 if (ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000183 np->saddr = fl6.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Eric Dumazetefe42082013-10-03 15:42:29 -0700185 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
186 sk->sk_v6_rcv_saddr = fl6.saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000187 inet->inet_rcv_saddr = LOOPBACK4_IPV6;
Eric Dumazet719f8352010-09-08 05:08:44 +0000188 if (sk->sk_prot->rehash)
189 sk->sk_prot->rehash(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
192 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -0700193 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
194 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700195#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -0500196 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700197 &np->saddr :
198#endif
199 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 sk->sk_state = TCP_ESTABLISHED;
Tom Herbertb73c3d02014-07-01 21:32:17 -0700202 ip6_set_txhash(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203out:
204 fl6_sock_release(flowlabel);
205 return err;
206}
Chris Elstona495f832012-04-29 21:48:53 +0000207EXPORT_SYMBOL_GPL(ip6_datagram_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +0100209int ip6_datagram_connect_v6_only(struct sock *sk, struct sockaddr *uaddr,
210 int addr_len)
211{
212 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, uaddr);
213 if (sin6->sin6_family != AF_INET6)
214 return -EAFNOSUPPORT;
215 return ip6_datagram_connect(sk, uaddr, addr_len);
216}
217EXPORT_SYMBOL_GPL(ip6_datagram_connect_v6_only);
218
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900219void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
Al Viroe69a4adc2006-11-14 20:56:00 -0800220 __be16 port, u32 info, u8 *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -0300223 struct icmp6hdr *icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 struct sock_exterr_skb *serr;
225
226 if (!np->recverr)
227 return;
228
229 skb = skb_clone(skb, GFP_ATOMIC);
230 if (!skb)
231 return;
232
Brian Haleyd40a4de2010-05-03 15:44:27 +0000233 skb->protocol = htons(ETH_P_IPV6);
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 serr = SKB_EXT_ERR(skb);
236 serr->ee.ee_errno = err;
237 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900238 serr->ee.ee_type = icmph->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 serr->ee.ee_code = icmph->icmp6_code;
240 serr->ee.ee_pad = 0;
241 serr->ee.ee_info = info;
242 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700243 serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
244 skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 serr->port = port;
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 __skb_pull(skb, payload - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300248 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (sock_queue_err_skb(sk, skb))
251 kfree_skb(skb);
252}
253
David S. Miller4c9483b2011-03-12 16:22:43 -0500254void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct ipv6_pinfo *np = inet6_sk(sk);
257 struct sock_exterr_skb *serr;
258 struct ipv6hdr *iph;
259 struct sk_buff *skb;
260
261 if (!np->recverr)
262 return;
263
264 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
265 if (!skb)
266 return;
267
Brian Haleyd40a4de2010-05-03 15:44:27 +0000268 skb->protocol = htons(ETH_P_IPV6);
269
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300270 skb_put(skb, sizeof(struct ipv6hdr));
271 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700272 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000273 iph->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 serr = SKB_EXT_ERR(skb);
276 serr->ee.ee_errno = err;
277 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900278 serr->ee.ee_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 serr->ee.ee_code = 0;
280 serr->ee.ee_pad = 0;
281 serr->ee.ee_info = info;
282 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700283 serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500284 serr->port = fl6->fl6_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700286 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300287 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 if (sock_queue_err_skb(sk, skb))
290 kfree_skb(skb);
291}
292
David S. Miller4c9483b2011-03-12 16:22:43 -0500293void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
Brian Haley4b340ae2010-04-23 11:26:09 +0000294{
295 struct ipv6_pinfo *np = inet6_sk(sk);
296 struct ipv6hdr *iph;
297 struct sk_buff *skb;
298 struct ip6_mtuinfo *mtu_info;
299
300 if (!np->rxopt.bits.rxpmtu)
301 return;
302
303 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
304 if (!skb)
305 return;
306
307 skb_put(skb, sizeof(struct ipv6hdr));
308 skb_reset_network_header(skb);
309 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000310 iph->daddr = fl6->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000311
312 mtu_info = IP6CBMTU(skb);
Brian Haley4b340ae2010-04-23 11:26:09 +0000313
314 mtu_info->ip6m_mtu = mtu;
315 mtu_info->ip6m_addr.sin6_family = AF_INET6;
316 mtu_info->ip6m_addr.sin6_port = 0;
317 mtu_info->ip6m_addr.sin6_flowinfo = 0;
David S. Miller4c9483b2011-03-12 16:22:43 -0500318 mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000319 mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000320
321 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
322 skb_reset_transport_header(skb);
323
324 skb = xchg(&np->rxpmtu, skb);
325 kfree_skb(skb);
326}
327
Willem de Bruijnc247f052015-03-07 20:33:22 -0500328/* IPv6 supports cmsg on all origins aside from SO_EE_ORIGIN_LOCAL.
329 *
330 * At one point, excluding local errors was a quick test to identify icmp/icmp6
331 * errors. This is no longer true, but the test remained, so the v6 stack,
332 * unlike v4, also honors cmsg requests on all wifi and timestamp errors.
333 *
334 * Timestamp code paths do not initialize the fields expected by cmsg:
335 * the PKTINFO fields in skb->cb[]. Fill those in here.
336 */
337static bool ip6_datagram_support_cmsg(struct sk_buff *skb,
338 struct sock_exterr_skb *serr)
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500339{
Willem de Bruijnc247f052015-03-07 20:33:22 -0500340 if (serr->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
341 serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6)
342 return true;
343
344 if (serr->ee.ee_origin == SO_EE_ORIGIN_LOCAL)
345 return false;
346
347 if (!skb->dev)
348 return false;
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500349
350 if (skb->protocol == htons(ETH_P_IPV6))
Willem de Bruijnc247f052015-03-07 20:33:22 -0500351 IP6CB(skb)->iif = skb->dev->ifindex;
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500352 else
Willem de Bruijnc247f052015-03-07 20:33:22 -0500353 PKTINFO_SKB_CB(skb)->ipi_ifindex = skb->dev->ifindex;
354
355 return true;
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500356}
357
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900358/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * Handle MSG_ERRQUEUE
360 */
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100361int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 struct ipv6_pinfo *np = inet6_sk(sk);
364 struct sock_exterr_skb *serr;
Willem de Bruijn364a9e92014-08-31 21:30:27 -0400365 struct sk_buff *skb;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100366 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct {
368 struct sock_extended_err ee;
369 struct sockaddr_in6 offender;
370 } errhdr;
371 int err;
372 int copied;
373
374 err = -EAGAIN;
Willem de Bruijn364a9e92014-08-31 21:30:27 -0400375 skb = sock_dequeue_err_skb(sk);
Ian Morris63159f22015-03-29 14:00:04 +0100376 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 goto out;
378
379 copied = skb->len;
380 if (copied > len) {
381 msg->msg_flags |= MSG_TRUNC;
382 copied = len;
383 }
David S. Miller51f3d022014-11-05 16:46:40 -0500384 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (err)
386 goto out_free_skb;
387
388 sock_recv_timestamp(msg, sk, skb);
389
390 serr = SKB_EXT_ERR(skb);
391
Willem de Bruijnc247f052015-03-07 20:33:22 -0500392 if (sin && serr->port) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700393 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 sin->sin6_family = AF_INET6;
395 sin->sin6_flowinfo = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900396 sin->sin6_port = serr->port;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000397 if (skb->protocol == htons(ETH_P_IPV6)) {
YOSHIFUJI Hideaki / 吉藤英明6c40d102013-01-08 06:44:23 +0000398 const struct ipv6hdr *ip6h = container_of((struct in6_addr *)(nh + serr->addr_offset),
399 struct ipv6hdr, daddr);
400 sin->sin6_addr = ip6h->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (np->sndflow)
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000402 sin->sin6_flowinfo = ip6_flowinfo(ip6h);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000403 sin->sin6_scope_id =
404 ipv6_iface_scope_id(&sin->sin6_addr,
405 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700407 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
408 &sin->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000409 sin->sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100411 *addr_len = sizeof(*sin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
414 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
415 sin = &errhdr.offender;
Willem de Bruijnf8121162015-01-15 13:18:40 -0500416 memset(sin, 0, sizeof(*sin));
Willem de Bruijnc247f052015-03-07 20:33:22 -0500417
418 if (ip6_datagram_support_cmsg(skb, serr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 sin->sin6_family = AF_INET6;
Willem de Bruijnc247f052015-03-07 20:33:22 -0500420 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100421 ip6_datagram_recv_common_ctl(sk, msg, skb);
Brian Haleyd40a4de2010-05-03 15:44:27 +0000422 if (skb->protocol == htons(ETH_P_IPV6)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000423 sin->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100425 ip6_datagram_recv_specific_ctl(sk, msg, skb);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000426 sin->sin6_scope_id =
427 ipv6_iface_scope_id(&sin->sin6_addr,
428 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700430 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
431 &sin->sin6_addr);
Willem de Bruijnf8121162015-01-15 13:18:40 -0500432 if (inet_sk(sk)->cmsg_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 ip_cmsg_recv(msg, skb);
434 }
435 }
436
437 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
438
439 /* Now we could try to dump offended packet options */
440
441 msg->msg_flags |= MSG_ERRQUEUE;
442 err = copied;
443
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900444out_free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kfree_skb(skb);
446out:
447 return err;
448}
Chris Elstona495f832012-04-29 21:48:53 +0000449EXPORT_SYMBOL_GPL(ipv6_recv_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Brian Haley4b340ae2010-04-23 11:26:09 +0000451/*
452 * Handle IPV6_RECVPATHMTU
453 */
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100454int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
455 int *addr_len)
Brian Haley4b340ae2010-04-23 11:26:09 +0000456{
457 struct ipv6_pinfo *np = inet6_sk(sk);
458 struct sk_buff *skb;
Brian Haley4b340ae2010-04-23 11:26:09 +0000459 struct ip6_mtuinfo mtu_info;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100460 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
Brian Haley4b340ae2010-04-23 11:26:09 +0000461 int err;
462 int copied;
463
464 err = -EAGAIN;
465 skb = xchg(&np->rxpmtu, NULL);
Ian Morris63159f22015-03-29 14:00:04 +0100466 if (!skb)
Brian Haley4b340ae2010-04-23 11:26:09 +0000467 goto out;
468
469 copied = skb->len;
470 if (copied > len) {
471 msg->msg_flags |= MSG_TRUNC;
472 copied = len;
473 }
David S. Miller51f3d022014-11-05 16:46:40 -0500474 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Brian Haley4b340ae2010-04-23 11:26:09 +0000475 if (err)
476 goto out_free_skb;
477
478 sock_recv_timestamp(msg, sk, skb);
479
480 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
481
Brian Haley4b340ae2010-04-23 11:26:09 +0000482 if (sin) {
483 sin->sin6_family = AF_INET6;
484 sin->sin6_flowinfo = 0;
485 sin->sin6_port = 0;
486 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000487 sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100488 *addr_len = sizeof(*sin);
Brian Haley4b340ae2010-04-23 11:26:09 +0000489 }
490
491 put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);
492
493 err = copied;
494
495out_free_skb:
496 kfree_skb(skb);
497out:
498 return err;
499}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100502void ip6_datagram_recv_common_ctl(struct sock *sk, struct msghdr *msg,
503 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 struct ipv6_pinfo *np = inet6_sk(sk);
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100506 bool is_ipv6 = skb->protocol == htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if (np->rxopt.bits.rxinfo) {
509 struct in6_pktinfo src_info;
510
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100511 if (is_ipv6) {
512 src_info.ipi6_ifindex = IP6CB(skb)->iif;
513 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
514 } else {
515 src_info.ipi6_ifindex =
516 PKTINFO_SKB_CB(skb)->ipi_ifindex;
517 ipv6_addr_set_v4mapped(ip_hdr(skb)->daddr,
518 &src_info.ipi6_addr);
519 }
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500520
521 if (src_info.ipi6_ifindex >= 0)
522 put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO,
523 sizeof(src_info), &src_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100525}
526
527void ip6_datagram_recv_specific_ctl(struct sock *sk, struct msghdr *msg,
528 struct sk_buff *skb)
529{
530 struct ipv6_pinfo *np = inet6_sk(sk);
531 struct inet6_skb_parm *opt = IP6CB(skb);
532 unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 if (np->rxopt.bits.rxhlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700535 int hlim = ipv6_hdr(skb)->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
537 }
538
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900539 if (np->rxopt.bits.rxtclass) {
YOSHIFUJI Hideaki / 吉藤英明e7219852013-01-13 05:02:01 +0000540 int tclass = ipv6_get_dsfield(ipv6_hdr(skb));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900541 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
542 }
543
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000544 if (np->rxopt.bits.rxflow) {
545 __be32 flowinfo = ip6_flowinfo((struct ipv6hdr *)nh);
546 if (flowinfo)
547 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900549
550 /* HbH is allowed only once */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (np->rxopt.bits.hopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700552 u8 *ptr = nh + opt->hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
554 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900555
556 if (opt->lastopt &&
557 (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
558 /*
559 * Silly enough, but we need to reparse in order to
560 * report extension headers (except for HbH)
561 * in order.
562 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900563 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900564 * (and WILL NOT be) defined because
565 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
566 */
567 unsigned int off = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700568 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900569
570 while (off <= opt->lastopt) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000571 unsigned int len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700572 u8 *ptr = nh + off;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900573
Eldad Zackb5a42572012-04-01 07:49:03 +0000574 switch (nexthdr) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900575 case IPPROTO_DSTOPTS:
576 nexthdr = ptr[0];
577 len = (ptr[1] + 1) << 3;
578 if (np->rxopt.bits.dstopts)
579 put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
580 break;
581 case IPPROTO_ROUTING:
582 nexthdr = ptr[0];
583 len = (ptr[1] + 1) << 3;
584 if (np->rxopt.bits.srcrt)
585 put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
586 break;
587 case IPPROTO_AH:
588 nexthdr = ptr[0];
Ville Nuorvalaa3059892005-11-20 12:21:59 +0900589 len = (ptr[1] + 2) << 2;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900590 break;
591 default:
592 nexthdr = ptr[0];
593 len = (ptr[1] + 1) << 3;
594 break;
595 }
596
597 off += len;
598 }
599 }
600
601 /* socket options in old style */
602 if (np->rxopt.bits.rxoinfo) {
603 struct in6_pktinfo src_info;
604
605 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000606 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900607 put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
608 }
609 if (np->rxopt.bits.rxohlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700610 int hlim = ipv6_hdr(skb)->hop_limit;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900611 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
612 }
613 if (np->rxopt.bits.ohopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700614 u8 *ptr = nh + opt->hop;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900615 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
616 }
617 if (np->rxopt.bits.odstopts && opt->dst0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700618 u8 *ptr = nh + opt->dst0;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900619 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900621 if (np->rxopt.bits.osrcrt && opt->srcrt) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700622 struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900623 put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900625 if (np->rxopt.bits.odstopts && opt->dst1) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700626 u8 *ptr = nh + opt->dst1;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900627 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Balazs Scheidler6c468622010-10-21 16:08:28 +0200629 if (np->rxopt.bits.rxorigdstaddr) {
630 struct sockaddr_in6 sin6;
Eric Dumazet747465e2012-01-16 19:27:39 +0000631 __be16 *ports = (__be16 *) skb_transport_header(skb);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200632
633 if (skb_transport_offset(skb) + 4 <= skb->len) {
634 /* All current transport protocols have the port numbers in the
635 * first four bytes of the transport header and this function is
636 * written with this assumption in mind.
637 */
638
639 sin6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000640 sin6.sin6_addr = ipv6_hdr(skb)->daddr;
Balazs Scheidler6c468622010-10-21 16:08:28 +0200641 sin6.sin6_port = ports[1];
642 sin6.sin6_flowinfo = 0;
Hannes Frederic Sowa3868b7a2013-03-08 02:07:26 +0000643 sin6.sin6_scope_id =
644 ipv6_iface_scope_id(&ipv6_hdr(skb)->daddr,
645 opt->iif);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200646
647 put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
648 }
649 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100650}
651
652void ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
653 struct sk_buff *skb)
654{
655 ip6_datagram_recv_common_ctl(sk, msg, skb);
656 ip6_datagram_recv_specific_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
Tom Parkin8e72d372013-01-31 01:02:25 +0000658EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Tom Parkin73df66f2013-01-31 01:02:24 +0000660int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
661 struct msghdr *msg, struct flowi6 *fl6,
662 struct ipv6_txoptions *opt,
663 int *hlimit, int *tclass, int *dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct in6_pktinfo *src_info;
666 struct cmsghdr *cmsg;
667 struct ipv6_rt_hdr *rthdr;
668 struct ipv6_opt_hdr *hdr;
669 int len;
670 int err = 0;
671
Gu Zhengf95b4142014-12-11 11:22:04 +0800672 for_each_cmsghdr(cmsg, msg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 if (!CMSG_OK(msg, cmsg)) {
676 err = -EINVAL;
677 goto exit_f;
678 }
679
680 if (cmsg->cmsg_level != SOL_IPV6)
681 continue;
682
683 switch (cmsg->cmsg_type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900684 case IPV6_PKTINFO:
685 case IPV6_2292PKTINFO:
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900686 {
687 struct net_device *dev = NULL;
688
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900689 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 err = -EINVAL;
691 goto exit_f;
692 }
693
694 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (src_info->ipi6_ifindex) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500697 if (fl6->flowi6_oif &&
698 src_info->ipi6_ifindex != fl6->flowi6_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500700 fl6->flowi6_oif = src_info->ipi6_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900703 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Eric Dumazet536b2e92009-11-02 12:21:06 +0100705 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500706 if (fl6->flowi6_oif) {
707 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
Eric Dumazet536b2e92009-11-02 12:21:06 +0100708 if (!dev) {
709 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900710 return -ENODEV;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100711 }
712 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
713 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900714 return -EINVAL;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100715 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900716
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900717 if (addr_type != IPV6_ADDR_ANY) {
718 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
Maciej Żenczykowski2563fa52011-11-07 14:57:22 +0000719 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000720 !ipv6_chk_addr(net, &src_info->ipi6_addr,
FX Le Bail7c90cc22014-01-22 07:42:37 +0100721 strict ? dev : NULL, 0) &&
722 !ipv6_chk_acast_addr_src(net, dev,
723 &src_info->ipi6_addr))
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900724 err = -EINVAL;
725 else
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000726 fl6->saddr = src_info->ipi6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900728
Eric Dumazet536b2e92009-11-02 12:21:06 +0100729 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900731 if (err)
732 goto exit_f;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900738 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 err = -EINVAL;
740 goto exit_f;
741 }
742
David S. Miller4c9483b2011-03-12 16:22:43 -0500743 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
744 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 err = -EINVAL;
746 goto exit_f;
747 }
748 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500749 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 break;
751
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900752 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900754 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 err = -EINVAL;
756 goto exit_f;
757 }
758
759 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
760 len = ((hdr->hdrlen + 1) << 3);
761 if (cmsg->cmsg_len < CMSG_LEN(len)) {
762 err = -EINVAL;
763 goto exit_f;
764 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000765 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 err = -EPERM;
767 goto exit_f;
768 }
769 opt->opt_nflen += len;
770 opt->hopopt = hdr;
771 break;
772
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900773 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900774 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 err = -EINVAL;
776 goto exit_f;
777 }
778
779 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
780 len = ((hdr->hdrlen + 1) << 3);
781 if (cmsg->cmsg_len < CMSG_LEN(len)) {
782 err = -EINVAL;
783 goto exit_f;
784 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000785 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 err = -EPERM;
787 goto exit_f;
788 }
789 if (opt->dst1opt) {
790 err = -EINVAL;
791 goto exit_f;
792 }
793 opt->opt_flen += len;
794 opt->dst1opt = hdr;
795 break;
796
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900797 case IPV6_DSTOPTS:
798 case IPV6_RTHDRDSTOPTS:
799 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
800 err = -EINVAL;
801 goto exit_f;
802 }
803
804 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
805 len = ((hdr->hdrlen + 1) << 3);
806 if (cmsg->cmsg_len < CMSG_LEN(len)) {
807 err = -EINVAL;
808 goto exit_f;
809 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000810 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900811 err = -EPERM;
812 goto exit_f;
813 }
814 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
815 opt->opt_flen += len;
816 opt->dst1opt = hdr;
817 } else {
818 opt->opt_nflen += len;
819 opt->dst0opt = hdr;
820 }
821 break;
822
823 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900825 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 err = -EINVAL;
827 goto exit_f;
828 }
829
830 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
831
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700832 switch (rthdr->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +0000833#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700834 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800835 if (rthdr->hdrlen != 2 ||
836 rthdr->segments_left != 1) {
837 err = -EINVAL;
838 goto exit_f;
839 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700840 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700841#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700842 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 err = -EINVAL;
844 goto exit_f;
845 }
846
847 len = ((rthdr->hdrlen + 1) << 3);
848
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900849 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 err = -EINVAL;
851 goto exit_f;
852 }
853
854 /* segments left must also match */
855 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
856 err = -EINVAL;
857 goto exit_f;
858 }
859
860 opt->opt_nflen += len;
861 opt->srcrt = rthdr;
862
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900863 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
865
866 opt->opt_nflen += dsthdrlen;
867 opt->dst0opt = opt->dst1opt;
868 opt->dst1opt = NULL;
869 opt->opt_flen -= dsthdrlen;
870 }
871
872 break;
873
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900874 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 case IPV6_HOPLIMIT:
876 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
877 err = -EINVAL;
878 goto exit_f;
879 }
880
881 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800882 if (*hlimit < -1 || *hlimit > 0xff) {
883 err = -EINVAL;
884 goto exit_f;
885 }
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
888
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900889 case IPV6_TCLASS:
890 {
891 int tc;
892
893 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000894 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900895 goto exit_f;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900896
897 tc = *(int *)CMSG_DATA(cmsg);
Remi Denis-Courmontd0ee0112006-09-13 20:08:07 -0700898 if (tc < -1 || tc > 0xff)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900899 goto exit_f;
900
901 err = 0;
902 *tclass = tc;
903
904 break;
905 }
Brian Haley13b52cd2010-04-23 11:26:08 +0000906
907 case IPV6_DONTFRAG:
908 {
909 int df;
910
911 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000912 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
Brian Haley13b52cd2010-04-23 11:26:08 +0000913 goto exit_f;
Brian Haley13b52cd2010-04-23 11:26:08 +0000914
915 df = *(int *)CMSG_DATA(cmsg);
916 if (df < 0 || df > 1)
917 goto exit_f;
918
919 err = 0;
920 *dontfrag = df;
921
922 break;
923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 default:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800925 net_dbg_ratelimited("invalid cmsg type: %d\n",
926 cmsg->cmsg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 err = -EINVAL;
Miao Xie4a367022008-07-29 23:57:58 -0700928 goto exit_f;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932exit_f:
933 return err;
934}
Tom Parkin73df66f2013-01-31 01:02:24 +0000935EXPORT_SYMBOL_GPL(ip6_datagram_send_ctl);
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000936
937void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
938 __u16 srcp, __u16 destp, int bucket)
939{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000940 const struct in6_addr *dest, *src;
941
Eric Dumazetefe42082013-10-03 15:42:29 -0700942 dest = &sp->sk_v6_daddr;
943 src = &sp->sk_v6_rcv_saddr;
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000944 seq_printf(seq,
945 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Francesco Fuscod14c5ab2013-08-15 13:42:14 +0200946 "%02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d\n",
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000947 bucket,
948 src->s6_addr32[0], src->s6_addr32[1],
949 src->s6_addr32[2], src->s6_addr32[3], srcp,
950 dest->s6_addr32[0], dest->s6_addr32[1],
951 dest->s6_addr32[2], dest->s6_addr32[3], destp,
952 sp->sk_state,
953 sk_wmem_alloc_get(sp),
954 sk_rmem_alloc_get(sp),
955 0, 0L, 0,
956 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
957 0,
958 sock_i_ino(sp),
959 atomic_read(&sp->sk_refcnt), sp,
960 atomic_read(&sp->sk_drops));
961}