blob: a454b0ff57c7c67a91e2e5c887609e7a65e5a910 [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;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000076 usin->sin6_addr = flowlabel->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
78 }
79
80 addr_type = ipv6_addr_type(&usin->sin6_addr);
81
82 if (addr_type == IPV6_ADDR_ANY) {
83 /*
84 * connect to self
85 */
86 usin->sin6_addr.s6_addr[15] = 0x01;
87 }
88
89 daddr = &usin->sin6_addr;
90
91 if (addr_type == IPV6_ADDR_MAPPED) {
92 struct sockaddr_in sin;
93
94 if (__ipv6_only_sock(sk)) {
95 err = -ENETUNREACH;
96 goto out;
97 }
98 sin.sin_family = AF_INET;
99 sin.sin_addr.s_addr = daddr->s6_addr32[3];
100 sin.sin_port = usin->sin6_port;
101
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900102 err = ip4_datagram_connect(sk,
Eldad Zackb5a42572012-04-01 07:49:03 +0000103 (struct sockaddr *) &sin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 sizeof(sin));
105
106ipv4_connected:
107 if (err)
108 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900109
Eric Dumazetefe42082013-10-03 15:42:29 -0700110 ipv6_addr_set_v4mapped(inet->inet_daddr, &sk->sk_v6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Max Matveevc15fea22011-08-05 03:56:30 -0700112 if (ipv6_addr_any(&np->saddr) ||
113 ipv6_mapped_addr_any(&np->saddr))
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000114 ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Eric Dumazetefe42082013-10-03 15:42:29 -0700116 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr) ||
117 ipv6_mapped_addr_any(&sk->sk_v6_rcv_saddr)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000118 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
Eric Dumazetefe42082013-10-03 15:42:29 -0700119 &sk->sk_v6_rcv_saddr);
Eric Dumazet719f8352010-09-08 05:08:44 +0000120 if (sk->sk_prot->rehash)
121 sk->sk_prot->rehash(sk);
122 }
Brian Haleyb301e822009-10-07 13:58:25 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 goto out;
125 }
126
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000127 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (addr_len >= sizeof(struct sockaddr_in6) &&
129 usin->sin6_scope_id) {
130 if (sk->sk_bound_dev_if &&
131 sk->sk_bound_dev_if != usin->sin6_scope_id) {
132 err = -EINVAL;
133 goto out;
134 }
135 sk->sk_bound_dev_if = usin->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
Brian Haley1ac4f002008-01-08 23:52:21 -0800138 if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
139 sk->sk_bound_dev_if = np->mcast_oif;
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* Connect to link-local address requires an interface */
142 if (!sk->sk_bound_dev_if) {
143 err = -EINVAL;
144 goto out;
145 }
146 }
147
Eric Dumazetefe42082013-10-03 15:42:29 -0700148 sk->sk_v6_daddr = *daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500149 np->flow_label = fl6.flowlabel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000151 inet->inet_dport = usin->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /*
154 * Check for a route to destination an obtain the
155 * destination cache for it.
156 */
157
David S. Miller4c9483b2011-03-12 16:22:43 -0500158 fl6.flowi6_proto = sk->sk_protocol;
Eric Dumazetefe42082013-10-03 15:42:29 -0700159 fl6.daddr = sk->sk_v6_daddr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000160 fl6.saddr = np->saddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500161 fl6.flowi6_oif = sk->sk_bound_dev_if;
162 fl6.flowi6_mark = sk->sk_mark;
David S. Miller1958b852011-03-12 16:36:19 -0500163 fl6.fl6_dport = inet->inet_dport;
164 fl6.fl6_sport = inet->inet_sport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
David S. Miller4c9483b2011-03-12 16:22:43 -0500166 if (!fl6.flowi6_oif && (addr_type&IPV6_ADDR_MULTICAST))
167 fl6.flowi6_oif = np->mcast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
David S. Miller4c9483b2011-03-12 16:22:43 -0500169 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700170
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000171 opt = flowlabel ? flowlabel->opt : np->opt;
David S. Miller4c9483b2011-03-12 16:22:43 -0500172 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
David S. Miller4c9483b2011-03-12 16:22:43 -0500174 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800175 err = 0;
176 if (IS_ERR(dst)) {
177 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /* source address lookup done in ip6_dst_lookup */
182
183 if (ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000184 np->saddr = fl6.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Eric Dumazetefe42082013-10-03 15:42:29 -0700186 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
187 sk->sk_v6_rcv_saddr = fl6.saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000188 inet->inet_rcv_saddr = LOOPBACK4_IPV6;
Eric Dumazet719f8352010-09-08 05:08:44 +0000189 if (sk->sk_prot->rehash)
190 sk->sk_prot->rehash(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -0700194 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
195 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700196#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -0500197 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700198 &np->saddr :
199#endif
200 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 sk->sk_state = TCP_ESTABLISHED;
203out:
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
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900209void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
Al Viroe69a4adc2006-11-14 20:56:00 -0800210 __be16 port, u32 info, u8 *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -0300213 struct icmp6hdr *icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct sock_exterr_skb *serr;
215
216 if (!np->recverr)
217 return;
218
219 skb = skb_clone(skb, GFP_ATOMIC);
220 if (!skb)
221 return;
222
Brian Haleyd40a4de2010-05-03 15:44:27 +0000223 skb->protocol = htons(ETH_P_IPV6);
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 serr = SKB_EXT_ERR(skb);
226 serr->ee.ee_errno = err;
227 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900228 serr->ee.ee_type = icmph->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 serr->ee.ee_code = icmph->icmp6_code;
230 serr->ee.ee_pad = 0;
231 serr->ee.ee_info = info;
232 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700233 serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
234 skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 serr->port = port;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 __skb_pull(skb, payload - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300238 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 if (sock_queue_err_skb(sk, skb))
241 kfree_skb(skb);
242}
243
David S. Miller4c9483b2011-03-12 16:22:43 -0500244void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct ipv6_pinfo *np = inet6_sk(sk);
247 struct sock_exterr_skb *serr;
248 struct ipv6hdr *iph;
249 struct sk_buff *skb;
250
251 if (!np->recverr)
252 return;
253
254 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
255 if (!skb)
256 return;
257
Brian Haleyd40a4de2010-05-03 15:44:27 +0000258 skb->protocol = htons(ETH_P_IPV6);
259
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300260 skb_put(skb, sizeof(struct ipv6hdr));
261 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700262 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000263 iph->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 serr = SKB_EXT_ERR(skb);
266 serr->ee.ee_errno = err;
267 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900268 serr->ee.ee_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 serr->ee.ee_code = 0;
270 serr->ee.ee_pad = 0;
271 serr->ee.ee_info = info;
272 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700273 serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500274 serr->port = fl6->fl6_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700276 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300277 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 if (sock_queue_err_skb(sk, skb))
280 kfree_skb(skb);
281}
282
David S. Miller4c9483b2011-03-12 16:22:43 -0500283void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
Brian Haley4b340ae2010-04-23 11:26:09 +0000284{
285 struct ipv6_pinfo *np = inet6_sk(sk);
286 struct ipv6hdr *iph;
287 struct sk_buff *skb;
288 struct ip6_mtuinfo *mtu_info;
289
290 if (!np->rxopt.bits.rxpmtu)
291 return;
292
293 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
294 if (!skb)
295 return;
296
297 skb_put(skb, sizeof(struct ipv6hdr));
298 skb_reset_network_header(skb);
299 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000300 iph->daddr = fl6->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000301
302 mtu_info = IP6CBMTU(skb);
Brian Haley4b340ae2010-04-23 11:26:09 +0000303
304 mtu_info->ip6m_mtu = mtu;
305 mtu_info->ip6m_addr.sin6_family = AF_INET6;
306 mtu_info->ip6m_addr.sin6_port = 0;
307 mtu_info->ip6m_addr.sin6_flowinfo = 0;
David S. Miller4c9483b2011-03-12 16:22:43 -0500308 mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000309 mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000310
311 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
312 skb_reset_transport_header(skb);
313
314 skb = xchg(&np->rxpmtu, skb);
315 kfree_skb(skb);
316}
317
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900318/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * Handle MSG_ERRQUEUE
320 */
321int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len)
322{
323 struct ipv6_pinfo *np = inet6_sk(sk);
324 struct sock_exterr_skb *serr;
325 struct sk_buff *skb, *skb2;
326 struct sockaddr_in6 *sin;
327 struct {
328 struct sock_extended_err ee;
329 struct sockaddr_in6 offender;
330 } errhdr;
331 int err;
332 int copied;
333
334 err = -EAGAIN;
335 skb = skb_dequeue(&sk->sk_error_queue);
336 if (skb == NULL)
337 goto out;
338
339 copied = skb->len;
340 if (copied > len) {
341 msg->msg_flags |= MSG_TRUNC;
342 copied = len;
343 }
344 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
345 if (err)
346 goto out_free_skb;
347
348 sock_recv_timestamp(msg, sk, skb);
349
350 serr = SKB_EXT_ERR(skb);
351
352 sin = (struct sockaddr_in6 *)msg->msg_name;
353 if (sin) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700354 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 sin->sin6_family = AF_INET6;
356 sin->sin6_flowinfo = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900357 sin->sin6_port = serr->port;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000358 if (skb->protocol == htons(ETH_P_IPV6)) {
YOSHIFUJI Hideaki / 吉藤英明6c40d102013-01-08 06:44:23 +0000359 const struct ipv6hdr *ip6h = container_of((struct in6_addr *)(nh + serr->addr_offset),
360 struct ipv6hdr, daddr);
361 sin->sin6_addr = ip6h->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (np->sndflow)
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000363 sin->sin6_flowinfo = ip6_flowinfo(ip6h);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000364 sin->sin6_scope_id =
365 ipv6_iface_scope_id(&sin->sin6_addr,
366 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700368 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
369 &sin->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000370 sin->sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 }
373
374 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
375 sin = &errhdr.offender;
376 sin->sin6_family = AF_UNSPEC;
377 if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) {
378 sin->sin6_family = AF_INET6;
379 sin->sin6_flowinfo = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000380 if (skb->protocol == htons(ETH_P_IPV6)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000381 sin->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000383 ip6_datagram_recv_ctl(sk, msg, skb);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000384 sin->sin6_scope_id =
385 ipv6_iface_scope_id(&sin->sin6_addr,
386 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 } else {
388 struct inet_sock *inet = inet_sk(sk);
389
Brian Haleyb301e822009-10-07 13:58:25 -0700390 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
391 &sin->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000392 sin->sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (inet->cmsg_flags)
394 ip_cmsg_recv(msg, skb);
395 }
396 }
397
398 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
399
400 /* Now we could try to dump offended packet options */
401
402 msg->msg_flags |= MSG_ERRQUEUE;
403 err = copied;
404
405 /* Reset and regenerate socket error */
Herbert Xue0f9f852005-06-18 22:56:18 -0700406 spin_lock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sk->sk_err = 0;
408 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
409 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
Herbert Xue0f9f852005-06-18 22:56:18 -0700410 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 sk->sk_error_report(sk);
412 } else {
Herbert Xue0f9f852005-06-18 22:56:18 -0700413 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900416out_free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 kfree_skb(skb);
418out:
419 return err;
420}
Chris Elstona495f832012-04-29 21:48:53 +0000421EXPORT_SYMBOL_GPL(ipv6_recv_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Brian Haley4b340ae2010-04-23 11:26:09 +0000423/*
424 * Handle IPV6_RECVPATHMTU
425 */
426int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len)
427{
428 struct ipv6_pinfo *np = inet6_sk(sk);
429 struct sk_buff *skb;
430 struct sockaddr_in6 *sin;
431 struct ip6_mtuinfo mtu_info;
432 int err;
433 int copied;
434
435 err = -EAGAIN;
436 skb = xchg(&np->rxpmtu, NULL);
437 if (skb == NULL)
438 goto out;
439
440 copied = skb->len;
441 if (copied > len) {
442 msg->msg_flags |= MSG_TRUNC;
443 copied = len;
444 }
445 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
446 if (err)
447 goto out_free_skb;
448
449 sock_recv_timestamp(msg, sk, skb);
450
451 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
452
453 sin = (struct sockaddr_in6 *)msg->msg_name;
454 if (sin) {
455 sin->sin6_family = AF_INET6;
456 sin->sin6_flowinfo = 0;
457 sin->sin6_port = 0;
458 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000459 sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000460 }
461
462 put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);
463
464 err = copied;
465
466out_free_skb:
467 kfree_skb(skb);
468out:
469 return err;
470}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472
Tom Parkin73df66f2013-01-31 01:02:24 +0000473int ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
474 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 struct ipv6_pinfo *np = inet6_sk(sk);
477 struct inet6_skb_parm *opt = IP6CB(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700478 unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 if (np->rxopt.bits.rxinfo) {
481 struct in6_pktinfo src_info;
482
483 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000484 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
486 }
487
488 if (np->rxopt.bits.rxhlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700489 int hlim = ipv6_hdr(skb)->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
491 }
492
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900493 if (np->rxopt.bits.rxtclass) {
YOSHIFUJI Hideaki / 吉藤英明e7219852013-01-13 05:02:01 +0000494 int tclass = ipv6_get_dsfield(ipv6_hdr(skb));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900495 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
496 }
497
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000498 if (np->rxopt.bits.rxflow) {
499 __be32 flowinfo = ip6_flowinfo((struct ipv6hdr *)nh);
500 if (flowinfo)
501 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900503
504 /* HbH is allowed only once */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (np->rxopt.bits.hopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700506 u8 *ptr = nh + opt->hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
508 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900509
510 if (opt->lastopt &&
511 (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
512 /*
513 * Silly enough, but we need to reparse in order to
514 * report extension headers (except for HbH)
515 * in order.
516 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900517 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900518 * (and WILL NOT be) defined because
519 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
520 */
521 unsigned int off = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700522 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900523
524 while (off <= opt->lastopt) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000525 unsigned int len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700526 u8 *ptr = nh + off;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900527
Eldad Zackb5a42572012-04-01 07:49:03 +0000528 switch (nexthdr) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900529 case IPPROTO_DSTOPTS:
530 nexthdr = ptr[0];
531 len = (ptr[1] + 1) << 3;
532 if (np->rxopt.bits.dstopts)
533 put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
534 break;
535 case IPPROTO_ROUTING:
536 nexthdr = ptr[0];
537 len = (ptr[1] + 1) << 3;
538 if (np->rxopt.bits.srcrt)
539 put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
540 break;
541 case IPPROTO_AH:
542 nexthdr = ptr[0];
Ville Nuorvalaa3059892005-11-20 12:21:59 +0900543 len = (ptr[1] + 2) << 2;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900544 break;
545 default:
546 nexthdr = ptr[0];
547 len = (ptr[1] + 1) << 3;
548 break;
549 }
550
551 off += len;
552 }
553 }
554
555 /* socket options in old style */
556 if (np->rxopt.bits.rxoinfo) {
557 struct in6_pktinfo src_info;
558
559 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000560 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900561 put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
562 }
563 if (np->rxopt.bits.rxohlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700564 int hlim = ipv6_hdr(skb)->hop_limit;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900565 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
566 }
567 if (np->rxopt.bits.ohopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700568 u8 *ptr = nh + opt->hop;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900569 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
570 }
571 if (np->rxopt.bits.odstopts && opt->dst0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700572 u8 *ptr = nh + opt->dst0;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900573 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900575 if (np->rxopt.bits.osrcrt && opt->srcrt) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700576 struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900577 put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900579 if (np->rxopt.bits.odstopts && opt->dst1) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700580 u8 *ptr = nh + opt->dst1;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900581 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Balazs Scheidler6c468622010-10-21 16:08:28 +0200583 if (np->rxopt.bits.rxorigdstaddr) {
584 struct sockaddr_in6 sin6;
Eric Dumazet747465e2012-01-16 19:27:39 +0000585 __be16 *ports = (__be16 *) skb_transport_header(skb);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200586
587 if (skb_transport_offset(skb) + 4 <= skb->len) {
588 /* All current transport protocols have the port numbers in the
589 * first four bytes of the transport header and this function is
590 * written with this assumption in mind.
591 */
592
593 sin6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000594 sin6.sin6_addr = ipv6_hdr(skb)->daddr;
Balazs Scheidler6c468622010-10-21 16:08:28 +0200595 sin6.sin6_port = ports[1];
596 sin6.sin6_flowinfo = 0;
Hannes Frederic Sowa3868b7a2013-03-08 02:07:26 +0000597 sin6.sin6_scope_id =
598 ipv6_iface_scope_id(&ipv6_hdr(skb)->daddr,
599 opt->iif);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200600
601 put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
602 }
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return 0;
605}
Tom Parkin8e72d372013-01-31 01:02:25 +0000606EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Tom Parkin73df66f2013-01-31 01:02:24 +0000608int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
609 struct msghdr *msg, struct flowi6 *fl6,
610 struct ipv6_txoptions *opt,
611 int *hlimit, int *tclass, int *dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 struct in6_pktinfo *src_info;
614 struct cmsghdr *cmsg;
615 struct ipv6_rt_hdr *rthdr;
616 struct ipv6_opt_hdr *hdr;
617 int len;
618 int err = 0;
619
620 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
621 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (!CMSG_OK(msg, cmsg)) {
624 err = -EINVAL;
625 goto exit_f;
626 }
627
628 if (cmsg->cmsg_level != SOL_IPV6)
629 continue;
630
631 switch (cmsg->cmsg_type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900632 case IPV6_PKTINFO:
633 case IPV6_2292PKTINFO:
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900634 {
635 struct net_device *dev = NULL;
636
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900637 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 err = -EINVAL;
639 goto exit_f;
640 }
641
642 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (src_info->ipi6_ifindex) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500645 if (fl6->flowi6_oif &&
646 src_info->ipi6_ifindex != fl6->flowi6_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500648 fl6->flowi6_oif = src_info->ipi6_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900651 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Eric Dumazet536b2e92009-11-02 12:21:06 +0100653 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500654 if (fl6->flowi6_oif) {
655 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
Eric Dumazet536b2e92009-11-02 12:21:06 +0100656 if (!dev) {
657 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900658 return -ENODEV;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100659 }
660 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
661 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900662 return -EINVAL;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100663 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900664
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900665 if (addr_type != IPV6_ADDR_ANY) {
666 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
Maciej Żenczykowski2563fa52011-11-07 14:57:22 +0000667 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000668 !ipv6_chk_addr(net, &src_info->ipi6_addr,
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900669 strict ? dev : NULL, 0))
670 err = -EINVAL;
671 else
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000672 fl6->saddr = src_info->ipi6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900674
Eric Dumazet536b2e92009-11-02 12:21:06 +0100675 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900677 if (err)
678 goto exit_f;
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900684 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 err = -EINVAL;
686 goto exit_f;
687 }
688
David S. Miller4c9483b2011-03-12 16:22:43 -0500689 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
690 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 err = -EINVAL;
692 goto exit_f;
693 }
694 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500695 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 break;
697
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900698 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900700 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 err = -EINVAL;
702 goto exit_f;
703 }
704
705 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
706 len = ((hdr->hdrlen + 1) << 3);
707 if (cmsg->cmsg_len < CMSG_LEN(len)) {
708 err = -EINVAL;
709 goto exit_f;
710 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000711 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 err = -EPERM;
713 goto exit_f;
714 }
715 opt->opt_nflen += len;
716 opt->hopopt = hdr;
717 break;
718
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900719 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900720 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 err = -EINVAL;
722 goto exit_f;
723 }
724
725 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
726 len = ((hdr->hdrlen + 1) << 3);
727 if (cmsg->cmsg_len < CMSG_LEN(len)) {
728 err = -EINVAL;
729 goto exit_f;
730 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000731 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 err = -EPERM;
733 goto exit_f;
734 }
735 if (opt->dst1opt) {
736 err = -EINVAL;
737 goto exit_f;
738 }
739 opt->opt_flen += len;
740 opt->dst1opt = hdr;
741 break;
742
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900743 case IPV6_DSTOPTS:
744 case IPV6_RTHDRDSTOPTS:
745 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
746 err = -EINVAL;
747 goto exit_f;
748 }
749
750 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
751 len = ((hdr->hdrlen + 1) << 3);
752 if (cmsg->cmsg_len < CMSG_LEN(len)) {
753 err = -EINVAL;
754 goto exit_f;
755 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000756 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900757 err = -EPERM;
758 goto exit_f;
759 }
760 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
761 opt->opt_flen += len;
762 opt->dst1opt = hdr;
763 } else {
764 opt->opt_nflen += len;
765 opt->dst0opt = hdr;
766 }
767 break;
768
769 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900771 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 err = -EINVAL;
773 goto exit_f;
774 }
775
776 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
777
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700778 switch (rthdr->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +0000779#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700780 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800781 if (rthdr->hdrlen != 2 ||
782 rthdr->segments_left != 1) {
783 err = -EINVAL;
784 goto exit_f;
785 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700786 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700787#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700788 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 err = -EINVAL;
790 goto exit_f;
791 }
792
793 len = ((rthdr->hdrlen + 1) << 3);
794
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900795 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 err = -EINVAL;
797 goto exit_f;
798 }
799
800 /* segments left must also match */
801 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
802 err = -EINVAL;
803 goto exit_f;
804 }
805
806 opt->opt_nflen += len;
807 opt->srcrt = rthdr;
808
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900809 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
811
812 opt->opt_nflen += dsthdrlen;
813 opt->dst0opt = opt->dst1opt;
814 opt->dst1opt = NULL;
815 opt->opt_flen -= dsthdrlen;
816 }
817
818 break;
819
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900820 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 case IPV6_HOPLIMIT:
822 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
823 err = -EINVAL;
824 goto exit_f;
825 }
826
827 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800828 if (*hlimit < -1 || *hlimit > 0xff) {
829 err = -EINVAL;
830 goto exit_f;
831 }
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 break;
834
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900835 case IPV6_TCLASS:
836 {
837 int tc;
838
839 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000840 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900841 goto exit_f;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900842
843 tc = *(int *)CMSG_DATA(cmsg);
Remi Denis-Courmontd0ee0112006-09-13 20:08:07 -0700844 if (tc < -1 || tc > 0xff)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900845 goto exit_f;
846
847 err = 0;
848 *tclass = tc;
849
850 break;
851 }
Brian Haley13b52cd2010-04-23 11:26:08 +0000852
853 case IPV6_DONTFRAG:
854 {
855 int df;
856
857 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000858 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
Brian Haley13b52cd2010-04-23 11:26:08 +0000859 goto exit_f;
Brian Haley13b52cd2010-04-23 11:26:08 +0000860
861 df = *(int *)CMSG_DATA(cmsg);
862 if (df < 0 || df > 1)
863 goto exit_f;
864
865 err = 0;
866 *dontfrag = df;
867
868 break;
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 default:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700871 LIMIT_NETDEBUG(KERN_DEBUG "invalid cmsg type: %d\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900872 cmsg->cmsg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 err = -EINVAL;
Miao Xie4a367022008-07-29 23:57:58 -0700874 goto exit_f;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878exit_f:
879 return err;
880}
Tom Parkin73df66f2013-01-31 01:02:24 +0000881EXPORT_SYMBOL_GPL(ip6_datagram_send_ctl);
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000882
883void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
884 __u16 srcp, __u16 destp, int bucket)
885{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000886 const struct in6_addr *dest, *src;
887
Eric Dumazetefe42082013-10-03 15:42:29 -0700888 dest = &sp->sk_v6_daddr;
889 src = &sp->sk_v6_rcv_saddr;
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000890 seq_printf(seq,
891 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Francesco Fuscod14c5ab2013-08-15 13:42:14 +0200892 "%02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d\n",
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +0000893 bucket,
894 src->s6_addr32[0], src->s6_addr32[1],
895 src->s6_addr32[2], src->s6_addr32[3], srcp,
896 dest->s6_addr32[0], dest->s6_addr32[1],
897 dest->s6_addr32[2], dest->s6_addr32[3], destp,
898 sp->sk_state,
899 sk_wmem_alloc_get(sp),
900 sk_rmem_alloc_get(sp),
901 0, 0L, 0,
902 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
903 0,
904 sock_i_ino(sp),
905 atomic_read(&sp->sk_refcnt), sp,
906 atomic_read(&sp->sk_drops));
907}