blob: 2f5e2f154d2133a007baf154054522a2a66c17ad [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;
46 struct inet_sock *inet = inet_sk(sk);
47 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000048 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;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000052 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (flowlabel == NULL)
75 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;
202out:
203 fl6_sock_release(flowlabel);
204 return err;
205}
Chris Elstona495f832012-04-29 21:48:53 +0000206EXPORT_SYMBOL_GPL(ip6_datagram_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +0100208int ip6_datagram_connect_v6_only(struct sock *sk, struct sockaddr *uaddr,
209 int addr_len)
210{
211 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, uaddr);
212 if (sin6->sin6_family != AF_INET6)
213 return -EAFNOSUPPORT;
214 return ip6_datagram_connect(sk, uaddr, addr_len);
215}
216EXPORT_SYMBOL_GPL(ip6_datagram_connect_v6_only);
217
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900218void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
Al Viroe69a4adc2006-11-14 20:56:00 -0800219 __be16 port, u32 info, u8 *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -0300222 struct icmp6hdr *icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct sock_exterr_skb *serr;
224
225 if (!np->recverr)
226 return;
227
228 skb = skb_clone(skb, GFP_ATOMIC);
229 if (!skb)
230 return;
231
Brian Haleyd40a4de2010-05-03 15:44:27 +0000232 skb->protocol = htons(ETH_P_IPV6);
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 serr = SKB_EXT_ERR(skb);
235 serr->ee.ee_errno = err;
236 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900237 serr->ee.ee_type = icmph->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 serr->ee.ee_code = icmph->icmp6_code;
239 serr->ee.ee_pad = 0;
240 serr->ee.ee_info = info;
241 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700242 serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
243 skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 serr->port = port;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 __skb_pull(skb, payload - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300247 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (sock_queue_err_skb(sk, skb))
250 kfree_skb(skb);
251}
252
David S. Miller4c9483b2011-03-12 16:22:43 -0500253void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct ipv6_pinfo *np = inet6_sk(sk);
256 struct sock_exterr_skb *serr;
257 struct ipv6hdr *iph;
258 struct sk_buff *skb;
259
260 if (!np->recverr)
261 return;
262
263 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
264 if (!skb)
265 return;
266
Brian Haleyd40a4de2010-05-03 15:44:27 +0000267 skb->protocol = htons(ETH_P_IPV6);
268
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300269 skb_put(skb, sizeof(struct ipv6hdr));
270 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700271 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000272 iph->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 serr = SKB_EXT_ERR(skb);
275 serr->ee.ee_errno = err;
276 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900277 serr->ee.ee_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 serr->ee.ee_code = 0;
279 serr->ee.ee_pad = 0;
280 serr->ee.ee_info = info;
281 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700282 serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500283 serr->port = fl6->fl6_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700285 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300286 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (sock_queue_err_skb(sk, skb))
289 kfree_skb(skb);
290}
291
David S. Miller4c9483b2011-03-12 16:22:43 -0500292void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
Brian Haley4b340ae2010-04-23 11:26:09 +0000293{
294 struct ipv6_pinfo *np = inet6_sk(sk);
295 struct ipv6hdr *iph;
296 struct sk_buff *skb;
297 struct ip6_mtuinfo *mtu_info;
298
299 if (!np->rxopt.bits.rxpmtu)
300 return;
301
302 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
303 if (!skb)
304 return;
305
306 skb_put(skb, sizeof(struct ipv6hdr));
307 skb_reset_network_header(skb);
308 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000309 iph->daddr = fl6->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000310
311 mtu_info = IP6CBMTU(skb);
Brian Haley4b340ae2010-04-23 11:26:09 +0000312
313 mtu_info->ip6m_mtu = mtu;
314 mtu_info->ip6m_addr.sin6_family = AF_INET6;
315 mtu_info->ip6m_addr.sin6_port = 0;
316 mtu_info->ip6m_addr.sin6_flowinfo = 0;
David S. Miller4c9483b2011-03-12 16:22:43 -0500317 mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000318 mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000319
320 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
321 skb_reset_transport_header(skb);
322
323 skb = xchg(&np->rxpmtu, skb);
324 kfree_skb(skb);
325}
326
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900327/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 * Handle MSG_ERRQUEUE
329 */
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100330int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 struct ipv6_pinfo *np = inet6_sk(sk);
333 struct sock_exterr_skb *serr;
334 struct sk_buff *skb, *skb2;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100335 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 struct {
337 struct sock_extended_err ee;
338 struct sockaddr_in6 offender;
339 } errhdr;
340 int err;
341 int copied;
342
343 err = -EAGAIN;
344 skb = skb_dequeue(&sk->sk_error_queue);
345 if (skb == NULL)
346 goto out;
347
348 copied = skb->len;
349 if (copied > len) {
350 msg->msg_flags |= MSG_TRUNC;
351 copied = len;
352 }
353 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
354 if (err)
355 goto out_free_skb;
356
357 sock_recv_timestamp(msg, sk, skb);
358
359 serr = SKB_EXT_ERR(skb);
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (sin) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700362 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 sin->sin6_family = AF_INET6;
364 sin->sin6_flowinfo = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900365 sin->sin6_port = serr->port;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000366 if (skb->protocol == htons(ETH_P_IPV6)) {
YOSHIFUJI Hideaki / 吉藤英明6c40d102013-01-08 06:44:23 +0000367 const struct ipv6hdr *ip6h = container_of((struct in6_addr *)(nh + serr->addr_offset),
368 struct ipv6hdr, daddr);
369 sin->sin6_addr = ip6h->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (np->sndflow)
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000371 sin->sin6_flowinfo = ip6_flowinfo(ip6h);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000372 sin->sin6_scope_id =
373 ipv6_iface_scope_id(&sin->sin6_addr,
374 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700376 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
377 &sin->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000378 sin->sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100380 *addr_len = sizeof(*sin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
384 sin = &errhdr.offender;
385 sin->sin6_family = AF_UNSPEC;
386 if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) {
387 sin->sin6_family = AF_INET6;
388 sin->sin6_flowinfo = 0;
Hannes Frederic Sowa1fa4c712013-11-23 07:22:33 +0100389 sin->sin6_port = 0;
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100390 if (np->rxopt.all)
391 ip6_datagram_recv_common_ctl(sk, msg, skb);
Brian Haleyd40a4de2010-05-03 15:44:27 +0000392 if (skb->protocol == htons(ETH_P_IPV6)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000393 sin->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100395 ip6_datagram_recv_specific_ctl(sk, msg, skb);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000396 sin->sin6_scope_id =
397 ipv6_iface_scope_id(&sin->sin6_addr,
398 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 } else {
400 struct inet_sock *inet = inet_sk(sk);
401
Brian Haleyb301e822009-10-07 13:58:25 -0700402 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
403 &sin->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000404 sin->sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (inet->cmsg_flags)
406 ip_cmsg_recv(msg, skb);
407 }
408 }
409
410 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
411
412 /* Now we could try to dump offended packet options */
413
414 msg->msg_flags |= MSG_ERRQUEUE;
415 err = copied;
416
417 /* Reset and regenerate socket error */
Herbert Xue0f9f852005-06-18 22:56:18 -0700418 spin_lock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 sk->sk_err = 0;
420 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
421 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
Herbert Xue0f9f852005-06-18 22:56:18 -0700422 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 sk->sk_error_report(sk);
424 } else {
Herbert Xue0f9f852005-06-18 22:56:18 -0700425 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900428out_free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 kfree_skb(skb);
430out:
431 return err;
432}
Chris Elstona495f832012-04-29 21:48:53 +0000433EXPORT_SYMBOL_GPL(ipv6_recv_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Brian Haley4b340ae2010-04-23 11:26:09 +0000435/*
436 * Handle IPV6_RECVPATHMTU
437 */
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100438int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
439 int *addr_len)
Brian Haley4b340ae2010-04-23 11:26:09 +0000440{
441 struct ipv6_pinfo *np = inet6_sk(sk);
442 struct sk_buff *skb;
Brian Haley4b340ae2010-04-23 11:26:09 +0000443 struct ip6_mtuinfo mtu_info;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100444 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
Brian Haley4b340ae2010-04-23 11:26:09 +0000445 int err;
446 int copied;
447
448 err = -EAGAIN;
449 skb = xchg(&np->rxpmtu, NULL);
450 if (skb == NULL)
451 goto out;
452
453 copied = skb->len;
454 if (copied > len) {
455 msg->msg_flags |= MSG_TRUNC;
456 copied = len;
457 }
458 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
459 if (err)
460 goto out_free_skb;
461
462 sock_recv_timestamp(msg, sk, skb);
463
464 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
465
Brian Haley4b340ae2010-04-23 11:26:09 +0000466 if (sin) {
467 sin->sin6_family = AF_INET6;
468 sin->sin6_flowinfo = 0;
469 sin->sin6_port = 0;
470 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000471 sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100472 *addr_len = sizeof(*sin);
Brian Haley4b340ae2010-04-23 11:26:09 +0000473 }
474
475 put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);
476
477 err = copied;
478
479out_free_skb:
480 kfree_skb(skb);
481out:
482 return err;
483}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100486void ip6_datagram_recv_common_ctl(struct sock *sk, struct msghdr *msg,
487 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct ipv6_pinfo *np = inet6_sk(sk);
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100490 bool is_ipv6 = skb->protocol == htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (np->rxopt.bits.rxinfo) {
493 struct in6_pktinfo src_info;
494
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100495 if (is_ipv6) {
496 src_info.ipi6_ifindex = IP6CB(skb)->iif;
497 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
498 } else {
499 src_info.ipi6_ifindex =
500 PKTINFO_SKB_CB(skb)->ipi_ifindex;
501 ipv6_addr_set_v4mapped(ip_hdr(skb)->daddr,
502 &src_info.ipi6_addr);
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
505 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100506}
507
508void ip6_datagram_recv_specific_ctl(struct sock *sk, struct msghdr *msg,
509 struct sk_buff *skb)
510{
511 struct ipv6_pinfo *np = inet6_sk(sk);
512 struct inet6_skb_parm *opt = IP6CB(skb);
513 unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 if (np->rxopt.bits.rxhlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700516 int hlim = ipv6_hdr(skb)->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
518 }
519
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900520 if (np->rxopt.bits.rxtclass) {
YOSHIFUJI Hideaki / 吉藤英明e7219852013-01-13 05:02:01 +0000521 int tclass = ipv6_get_dsfield(ipv6_hdr(skb));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900522 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
523 }
524
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000525 if (np->rxopt.bits.rxflow) {
526 __be32 flowinfo = ip6_flowinfo((struct ipv6hdr *)nh);
527 if (flowinfo)
528 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900530
531 /* HbH is allowed only once */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (np->rxopt.bits.hopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700533 u8 *ptr = nh + opt->hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
535 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900536
537 if (opt->lastopt &&
538 (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
539 /*
540 * Silly enough, but we need to reparse in order to
541 * report extension headers (except for HbH)
542 * in order.
543 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900544 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900545 * (and WILL NOT be) defined because
546 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
547 */
548 unsigned int off = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700549 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900550
551 while (off <= opt->lastopt) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000552 unsigned int len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700553 u8 *ptr = nh + off;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900554
Eldad Zackb5a42572012-04-01 07:49:03 +0000555 switch (nexthdr) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900556 case IPPROTO_DSTOPTS:
557 nexthdr = ptr[0];
558 len = (ptr[1] + 1) << 3;
559 if (np->rxopt.bits.dstopts)
560 put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
561 break;
562 case IPPROTO_ROUTING:
563 nexthdr = ptr[0];
564 len = (ptr[1] + 1) << 3;
565 if (np->rxopt.bits.srcrt)
566 put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
567 break;
568 case IPPROTO_AH:
569 nexthdr = ptr[0];
Ville Nuorvalaa3059892005-11-20 12:21:59 +0900570 len = (ptr[1] + 2) << 2;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900571 break;
572 default:
573 nexthdr = ptr[0];
574 len = (ptr[1] + 1) << 3;
575 break;
576 }
577
578 off += len;
579 }
580 }
581
582 /* socket options in old style */
583 if (np->rxopt.bits.rxoinfo) {
584 struct in6_pktinfo src_info;
585
586 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000587 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900588 put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
589 }
590 if (np->rxopt.bits.rxohlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700591 int hlim = ipv6_hdr(skb)->hop_limit;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900592 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
593 }
594 if (np->rxopt.bits.ohopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700595 u8 *ptr = nh + opt->hop;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900596 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
597 }
598 if (np->rxopt.bits.odstopts && opt->dst0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700599 u8 *ptr = nh + opt->dst0;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900600 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900602 if (np->rxopt.bits.osrcrt && opt->srcrt) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700603 struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900604 put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900606 if (np->rxopt.bits.odstopts && opt->dst1) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700607 u8 *ptr = nh + opt->dst1;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900608 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Balazs Scheidler6c468622010-10-21 16:08:28 +0200610 if (np->rxopt.bits.rxorigdstaddr) {
611 struct sockaddr_in6 sin6;
Eric Dumazet747465e2012-01-16 19:27:39 +0000612 __be16 *ports = (__be16 *) skb_transport_header(skb);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200613
614 if (skb_transport_offset(skb) + 4 <= skb->len) {
615 /* All current transport protocols have the port numbers in the
616 * first four bytes of the transport header and this function is
617 * written with this assumption in mind.
618 */
619
620 sin6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000621 sin6.sin6_addr = ipv6_hdr(skb)->daddr;
Balazs Scheidler6c468622010-10-21 16:08:28 +0200622 sin6.sin6_port = ports[1];
623 sin6.sin6_flowinfo = 0;
Hannes Frederic Sowa3868b7a2013-03-08 02:07:26 +0000624 sin6.sin6_scope_id =
625 ipv6_iface_scope_id(&ipv6_hdr(skb)->daddr,
626 opt->iif);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200627
628 put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
629 }
630 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100631}
632
633void ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
634 struct sk_buff *skb)
635{
636 ip6_datagram_recv_common_ctl(sk, msg, skb);
637 ip6_datagram_recv_specific_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
Tom Parkin8e72d372013-01-31 01:02:25 +0000639EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Tom Parkin73df66f2013-01-31 01:02:24 +0000641int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
642 struct msghdr *msg, struct flowi6 *fl6,
643 struct ipv6_txoptions *opt,
644 int *hlimit, int *tclass, int *dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 struct in6_pktinfo *src_info;
647 struct cmsghdr *cmsg;
648 struct ipv6_rt_hdr *rthdr;
649 struct ipv6_opt_hdr *hdr;
650 int len;
651 int err = 0;
652
653 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
654 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (!CMSG_OK(msg, cmsg)) {
657 err = -EINVAL;
658 goto exit_f;
659 }
660
661 if (cmsg->cmsg_level != SOL_IPV6)
662 continue;
663
664 switch (cmsg->cmsg_type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900665 case IPV6_PKTINFO:
666 case IPV6_2292PKTINFO:
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900667 {
668 struct net_device *dev = NULL;
669
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900670 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 err = -EINVAL;
672 goto exit_f;
673 }
674
675 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (src_info->ipi6_ifindex) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500678 if (fl6->flowi6_oif &&
679 src_info->ipi6_ifindex != fl6->flowi6_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500681 fl6->flowi6_oif = src_info->ipi6_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900684 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Eric Dumazet536b2e92009-11-02 12:21:06 +0100686 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500687 if (fl6->flowi6_oif) {
688 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
Eric Dumazet536b2e92009-11-02 12:21:06 +0100689 if (!dev) {
690 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900691 return -ENODEV;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100692 }
693 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
694 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900695 return -EINVAL;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100696 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900697
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900698 if (addr_type != IPV6_ADDR_ANY) {
699 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
Maciej Żenczykowski2563fa52011-11-07 14:57:22 +0000700 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000701 !ipv6_chk_addr(net, &src_info->ipi6_addr,
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900702 strict ? dev : NULL, 0))
703 err = -EINVAL;
704 else
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000705 fl6->saddr = src_info->ipi6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900707
Eric Dumazet536b2e92009-11-02 12:21:06 +0100708 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900710 if (err)
711 goto exit_f;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900717 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 err = -EINVAL;
719 goto exit_f;
720 }
721
David S. Miller4c9483b2011-03-12 16:22:43 -0500722 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
723 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 err = -EINVAL;
725 goto exit_f;
726 }
727 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500728 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 break;
730
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900731 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900733 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 err = -EINVAL;
735 goto exit_f;
736 }
737
738 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
739 len = ((hdr->hdrlen + 1) << 3);
740 if (cmsg->cmsg_len < CMSG_LEN(len)) {
741 err = -EINVAL;
742 goto exit_f;
743 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000744 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 err = -EPERM;
746 goto exit_f;
747 }
748 opt->opt_nflen += len;
749 opt->hopopt = hdr;
750 break;
751
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900752 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900753 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 err = -EINVAL;
755 goto exit_f;
756 }
757
758 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
759 len = ((hdr->hdrlen + 1) << 3);
760 if (cmsg->cmsg_len < CMSG_LEN(len)) {
761 err = -EINVAL;
762 goto exit_f;
763 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000764 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 err = -EPERM;
766 goto exit_f;
767 }
768 if (opt->dst1opt) {
769 err = -EINVAL;
770 goto exit_f;
771 }
772 opt->opt_flen += len;
773 opt->dst1opt = hdr;
774 break;
775
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900776 case IPV6_DSTOPTS:
777 case IPV6_RTHDRDSTOPTS:
778 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
779 err = -EINVAL;
780 goto exit_f;
781 }
782
783 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
784 len = ((hdr->hdrlen + 1) << 3);
785 if (cmsg->cmsg_len < CMSG_LEN(len)) {
786 err = -EINVAL;
787 goto exit_f;
788 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000789 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900790 err = -EPERM;
791 goto exit_f;
792 }
793 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
794 opt->opt_flen += len;
795 opt->dst1opt = hdr;
796 } else {
797 opt->opt_nflen += len;
798 opt->dst0opt = hdr;
799 }
800 break;
801
802 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900804 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 err = -EINVAL;
806 goto exit_f;
807 }
808
809 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
810
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700811 switch (rthdr->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +0000812#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700813 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800814 if (rthdr->hdrlen != 2 ||
815 rthdr->segments_left != 1) {
816 err = -EINVAL;
817 goto exit_f;
818 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700819 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700820#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700821 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 err = -EINVAL;
823 goto exit_f;
824 }
825
826 len = ((rthdr->hdrlen + 1) << 3);
827
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900828 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 err = -EINVAL;
830 goto exit_f;
831 }
832
833 /* segments left must also match */
834 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
835 err = -EINVAL;
836 goto exit_f;
837 }
838
839 opt->opt_nflen += len;
840 opt->srcrt = rthdr;
841
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900842 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
844
845 opt->opt_nflen += dsthdrlen;
846 opt->dst0opt = opt->dst1opt;
847 opt->dst1opt = NULL;
848 opt->opt_flen -= dsthdrlen;
849 }
850
851 break;
852
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900853 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 case IPV6_HOPLIMIT:
855 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
856 err = -EINVAL;
857 goto exit_f;
858 }
859
860 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800861 if (*hlimit < -1 || *hlimit > 0xff) {
862 err = -EINVAL;
863 goto exit_f;
864 }
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 break;
867
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900868 case IPV6_TCLASS:
869 {
870 int tc;
871
872 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000873 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900874 goto exit_f;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900875
876 tc = *(int *)CMSG_DATA(cmsg);
Remi Denis-Courmontd0ee0112006-09-13 20:08:07 -0700877 if (tc < -1 || tc > 0xff)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900878 goto exit_f;
879
880 err = 0;
881 *tclass = tc;
882
883 break;
884 }
Brian Haley13b52cd2010-04-23 11:26:08 +0000885
886 case IPV6_DONTFRAG:
887 {
888 int df;
889
890 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000891 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
Brian Haley13b52cd2010-04-23 11:26:08 +0000892 goto exit_f;
Brian Haley13b52cd2010-04-23 11:26:08 +0000893
894 df = *(int *)CMSG_DATA(cmsg);
895 if (df < 0 || df > 1)
896 goto exit_f;
897
898 err = 0;
899 *dontfrag = df;
900
901 break;
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 default:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700904 LIMIT_NETDEBUG(KERN_DEBUG "invalid cmsg type: %d\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900905 cmsg->cmsg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 err = -EINVAL;
Miao Xie4a367022008-07-29 23:57:58 -0700907 goto exit_f;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911exit_f:
912 return err;
913}
Tom Parkin73df66f2013-01-31 01:02:24 +0000914EXPORT_SYMBOL_GPL(ip6_datagram_send_ctl);
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000915
916void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
917 __u16 srcp, __u16 destp, int bucket)
918{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000919 const struct in6_addr *dest, *src;
920
Eric Dumazetefe42082013-10-03 15:42:29 -0700921 dest = &sp->sk_v6_daddr;
922 src = &sp->sk_v6_rcv_saddr;
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000923 seq_printf(seq,
924 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Francesco Fuscod14c5ab2013-08-15 13:42:14 +0200925 "%02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d\n",
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000926 bucket,
927 src->s6_addr32[0], src->s6_addr32[1],
928 src->s6_addr32[2], src->s6_addr32[3], srcp,
929 dest->s6_addr32[0], dest->s6_addr32[1],
930 dest->s6_addr32[2], dest->s6_addr32[3], destp,
931 sp->sk_state,
932 sk_wmem_alloc_get(sp),
933 sk_rmem_alloc_get(sp),
934 0, 0L, 0,
935 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
936 0,
937 sock_i_ino(sp),
938 atomic_read(&sp->sk_refcnt), sp,
939 atomic_read(&sp->sk_drops));
940}