blob: 33be36398a786d0143ce8a8da0995f7966a22103 [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 Dumazetc720c7e2009-10-15 06:30:45 +0000110 ipv6_addr_set_v4mapped(inet->inet_daddr, &np->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
Max Matveevc15fea22011-08-05 03:56:30 -0700116 if (ipv6_addr_any(&np->rcv_saddr) ||
117 ipv6_mapped_addr_any(&np->rcv_saddr)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000118 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
119 &np->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
127 if (addr_type&IPV6_ADDR_LINKLOCAL) {
128 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
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000148 np->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;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000159 fl6.daddr = np->daddr;
160 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
186 if (ipv6_addr_any(&np->rcv_saddr)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000187 np->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,
David S. Miller4c9483b2011-03-12 16:22:43 -0500194 ipv6_addr_equal(&fl6.daddr, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700195 &np->daddr : NULL,
196#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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 sin->sin6_scope_id = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000359 if (skb->protocol == htons(ETH_P_IPV6)) {
YOSHIFUJI Hideaki / 吉藤英明6c40d102013-01-08 06:44:23 +0000360 const struct ipv6hdr *ip6h = container_of((struct in6_addr *)(nh + serr->addr_offset),
361 struct ipv6hdr, daddr);
362 sin->sin6_addr = ip6h->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (np->sndflow)
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000364 sin->sin6_flowinfo = ip6_flowinfo(ip6h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
366 sin->sin6_scope_id = IP6CB(skb)->iif;
367 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700368 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
369 &sin->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371 }
372
373 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
374 sin = &errhdr.offender;
375 sin->sin6_family = AF_UNSPEC;
376 if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) {
377 sin->sin6_family = AF_INET6;
378 sin->sin6_flowinfo = 0;
379 sin->sin6_scope_id = 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)
383 datagram_recv_ctl(sk, msg, skb);
384 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
385 sin->sin6_scope_id = IP6CB(skb)->iif;
386 } else {
387 struct inet_sock *inet = inet_sk(sk);
388
Brian Haleyb301e822009-10-07 13:58:25 -0700389 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
390 &sin->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (inet->cmsg_flags)
392 ip_cmsg_recv(msg, skb);
393 }
394 }
395
396 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
397
398 /* Now we could try to dump offended packet options */
399
400 msg->msg_flags |= MSG_ERRQUEUE;
401 err = copied;
402
403 /* Reset and regenerate socket error */
Herbert Xue0f9f852005-06-18 22:56:18 -0700404 spin_lock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 sk->sk_err = 0;
406 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
407 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
Herbert Xue0f9f852005-06-18 22:56:18 -0700408 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 sk->sk_error_report(sk);
410 } else {
Herbert Xue0f9f852005-06-18 22:56:18 -0700411 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900414out_free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 kfree_skb(skb);
416out:
417 return err;
418}
Chris Elstona495f832012-04-29 21:48:53 +0000419EXPORT_SYMBOL_GPL(ipv6_recv_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Brian Haley4b340ae2010-04-23 11:26:09 +0000421/*
422 * Handle IPV6_RECVPATHMTU
423 */
424int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len)
425{
426 struct ipv6_pinfo *np = inet6_sk(sk);
427 struct sk_buff *skb;
428 struct sockaddr_in6 *sin;
429 struct ip6_mtuinfo mtu_info;
430 int err;
431 int copied;
432
433 err = -EAGAIN;
434 skb = xchg(&np->rxpmtu, NULL);
435 if (skb == NULL)
436 goto out;
437
438 copied = skb->len;
439 if (copied > len) {
440 msg->msg_flags |= MSG_TRUNC;
441 copied = len;
442 }
443 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
444 if (err)
445 goto out_free_skb;
446
447 sock_recv_timestamp(msg, sk, skb);
448
449 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
450
451 sin = (struct sockaddr_in6 *)msg->msg_name;
452 if (sin) {
453 sin->sin6_family = AF_INET6;
454 sin->sin6_flowinfo = 0;
455 sin->sin6_port = 0;
456 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000457 sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000458 }
459
460 put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);
461
462 err = copied;
463
464out_free_skb:
465 kfree_skb(skb);
466out:
467 return err;
468}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470
471int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
472{
473 struct ipv6_pinfo *np = inet6_sk(sk);
474 struct inet6_skb_parm *opt = IP6CB(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700475 unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 if (np->rxopt.bits.rxinfo) {
478 struct in6_pktinfo src_info;
479
480 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000481 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
483 }
484
485 if (np->rxopt.bits.rxhlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700486 int hlim = ipv6_hdr(skb)->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
488 }
489
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900490 if (np->rxopt.bits.rxtclass) {
YOSHIFUJI Hideaki / 吉藤英明e7219852013-01-13 05:02:01 +0000491 int tclass = ipv6_get_dsfield(ipv6_hdr(skb));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900492 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
493 }
494
YOSHIFUJI Hideaki / 吉藤英明6502ca52013-01-13 05:01:51 +0000495 if (np->rxopt.bits.rxflow) {
496 __be32 flowinfo = ip6_flowinfo((struct ipv6hdr *)nh);
497 if (flowinfo)
498 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900500
501 /* HbH is allowed only once */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (np->rxopt.bits.hopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700503 u8 *ptr = nh + opt->hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
505 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900506
507 if (opt->lastopt &&
508 (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
509 /*
510 * Silly enough, but we need to reparse in order to
511 * report extension headers (except for HbH)
512 * in order.
513 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900514 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900515 * (and WILL NOT be) defined because
516 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
517 */
518 unsigned int off = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700519 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900520
521 while (off <= opt->lastopt) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000522 unsigned int len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700523 u8 *ptr = nh + off;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900524
Eldad Zackb5a42572012-04-01 07:49:03 +0000525 switch (nexthdr) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900526 case IPPROTO_DSTOPTS:
527 nexthdr = ptr[0];
528 len = (ptr[1] + 1) << 3;
529 if (np->rxopt.bits.dstopts)
530 put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
531 break;
532 case IPPROTO_ROUTING:
533 nexthdr = ptr[0];
534 len = (ptr[1] + 1) << 3;
535 if (np->rxopt.bits.srcrt)
536 put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
537 break;
538 case IPPROTO_AH:
539 nexthdr = ptr[0];
Ville Nuorvalaa3059892005-11-20 12:21:59 +0900540 len = (ptr[1] + 2) << 2;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900541 break;
542 default:
543 nexthdr = ptr[0];
544 len = (ptr[1] + 1) << 3;
545 break;
546 }
547
548 off += len;
549 }
550 }
551
552 /* socket options in old style */
553 if (np->rxopt.bits.rxoinfo) {
554 struct in6_pktinfo src_info;
555
556 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000557 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900558 put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
559 }
560 if (np->rxopt.bits.rxohlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700561 int hlim = ipv6_hdr(skb)->hop_limit;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900562 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
563 }
564 if (np->rxopt.bits.ohopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700565 u8 *ptr = nh + opt->hop;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900566 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
567 }
568 if (np->rxopt.bits.odstopts && opt->dst0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700569 u8 *ptr = nh + opt->dst0;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900570 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900572 if (np->rxopt.bits.osrcrt && opt->srcrt) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700573 struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900574 put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900576 if (np->rxopt.bits.odstopts && opt->dst1) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700577 u8 *ptr = nh + opt->dst1;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900578 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Balazs Scheidler6c468622010-10-21 16:08:28 +0200580 if (np->rxopt.bits.rxorigdstaddr) {
581 struct sockaddr_in6 sin6;
Eric Dumazet747465e2012-01-16 19:27:39 +0000582 __be16 *ports = (__be16 *) skb_transport_header(skb);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200583
584 if (skb_transport_offset(skb) + 4 <= skb->len) {
585 /* All current transport protocols have the port numbers in the
586 * first four bytes of the transport header and this function is
587 * written with this assumption in mind.
588 */
589
590 sin6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000591 sin6.sin6_addr = ipv6_hdr(skb)->daddr;
Balazs Scheidler6c468622010-10-21 16:08:28 +0200592 sin6.sin6_port = ports[1];
593 sin6.sin6_flowinfo = 0;
594 sin6.sin6_scope_id = 0;
595
596 put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
597 }
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return 0;
600}
601
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000602int datagram_send_ctl(struct net *net, struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500603 struct msghdr *msg, struct flowi6 *fl6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct ipv6_txoptions *opt,
Brian Haley13b52cd2010-04-23 11:26:08 +0000605 int *hlimit, int *tclass, int *dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
607 struct in6_pktinfo *src_info;
608 struct cmsghdr *cmsg;
609 struct ipv6_rt_hdr *rthdr;
610 struct ipv6_opt_hdr *hdr;
611 int len;
612 int err = 0;
613
614 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
615 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 if (!CMSG_OK(msg, cmsg)) {
618 err = -EINVAL;
619 goto exit_f;
620 }
621
622 if (cmsg->cmsg_level != SOL_IPV6)
623 continue;
624
625 switch (cmsg->cmsg_type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900626 case IPV6_PKTINFO:
627 case IPV6_2292PKTINFO:
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900628 {
629 struct net_device *dev = NULL;
630
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900631 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 err = -EINVAL;
633 goto exit_f;
634 }
635
636 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (src_info->ipi6_ifindex) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500639 if (fl6->flowi6_oif &&
640 src_info->ipi6_ifindex != fl6->flowi6_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500642 fl6->flowi6_oif = src_info->ipi6_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900645 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Eric Dumazet536b2e92009-11-02 12:21:06 +0100647 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500648 if (fl6->flowi6_oif) {
649 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
Eric Dumazet536b2e92009-11-02 12:21:06 +0100650 if (!dev) {
651 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900652 return -ENODEV;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100653 }
654 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
655 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900656 return -EINVAL;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100657 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900658
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900659 if (addr_type != IPV6_ADDR_ANY) {
660 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
Maciej Żenczykowski2563fa52011-11-07 14:57:22 +0000661 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000662 !ipv6_chk_addr(net, &src_info->ipi6_addr,
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900663 strict ? dev : NULL, 0))
664 err = -EINVAL;
665 else
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000666 fl6->saddr = src_info->ipi6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900668
Eric Dumazet536b2e92009-11-02 12:21:06 +0100669 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900671 if (err)
672 goto exit_f;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900678 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 err = -EINVAL;
680 goto exit_f;
681 }
682
David S. Miller4c9483b2011-03-12 16:22:43 -0500683 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
684 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
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 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
691
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900692 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900694 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 err = -EINVAL;
696 goto exit_f;
697 }
698
699 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
700 len = ((hdr->hdrlen + 1) << 3);
701 if (cmsg->cmsg_len < CMSG_LEN(len)) {
702 err = -EINVAL;
703 goto exit_f;
704 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000705 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 err = -EPERM;
707 goto exit_f;
708 }
709 opt->opt_nflen += len;
710 opt->hopopt = hdr;
711 break;
712
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900713 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900714 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 err = -EINVAL;
716 goto exit_f;
717 }
718
719 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
720 len = ((hdr->hdrlen + 1) << 3);
721 if (cmsg->cmsg_len < CMSG_LEN(len)) {
722 err = -EINVAL;
723 goto exit_f;
724 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000725 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 err = -EPERM;
727 goto exit_f;
728 }
729 if (opt->dst1opt) {
730 err = -EINVAL;
731 goto exit_f;
732 }
733 opt->opt_flen += len;
734 opt->dst1opt = hdr;
735 break;
736
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900737 case IPV6_DSTOPTS:
738 case IPV6_RTHDRDSTOPTS:
739 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
740 err = -EINVAL;
741 goto exit_f;
742 }
743
744 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
745 len = ((hdr->hdrlen + 1) << 3);
746 if (cmsg->cmsg_len < CMSG_LEN(len)) {
747 err = -EINVAL;
748 goto exit_f;
749 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000750 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900751 err = -EPERM;
752 goto exit_f;
753 }
754 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
755 opt->opt_flen += len;
756 opt->dst1opt = hdr;
757 } else {
758 opt->opt_nflen += len;
759 opt->dst0opt = hdr;
760 }
761 break;
762
763 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900765 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 err = -EINVAL;
767 goto exit_f;
768 }
769
770 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
771
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700772 switch (rthdr->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +0000773#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700774 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800775 if (rthdr->hdrlen != 2 ||
776 rthdr->segments_left != 1) {
777 err = -EINVAL;
778 goto exit_f;
779 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700780 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700781#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700782 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 err = -EINVAL;
784 goto exit_f;
785 }
786
787 len = ((rthdr->hdrlen + 1) << 3);
788
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900789 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 err = -EINVAL;
791 goto exit_f;
792 }
793
794 /* segments left must also match */
795 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
796 err = -EINVAL;
797 goto exit_f;
798 }
799
800 opt->opt_nflen += len;
801 opt->srcrt = rthdr;
802
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900803 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
805
806 opt->opt_nflen += dsthdrlen;
807 opt->dst0opt = opt->dst1opt;
808 opt->dst1opt = NULL;
809 opt->opt_flen -= dsthdrlen;
810 }
811
812 break;
813
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900814 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 case IPV6_HOPLIMIT:
816 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
817 err = -EINVAL;
818 goto exit_f;
819 }
820
821 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800822 if (*hlimit < -1 || *hlimit > 0xff) {
823 err = -EINVAL;
824 goto exit_f;
825 }
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
828
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900829 case IPV6_TCLASS:
830 {
831 int tc;
832
833 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000834 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900835 goto exit_f;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900836
837 tc = *(int *)CMSG_DATA(cmsg);
Remi Denis-Courmontd0ee0112006-09-13 20:08:07 -0700838 if (tc < -1 || tc > 0xff)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900839 goto exit_f;
840
841 err = 0;
842 *tclass = tc;
843
844 break;
845 }
Brian Haley13b52cd2010-04-23 11:26:08 +0000846
847 case IPV6_DONTFRAG:
848 {
849 int df;
850
851 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000852 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
Brian Haley13b52cd2010-04-23 11:26:08 +0000853 goto exit_f;
Brian Haley13b52cd2010-04-23 11:26:08 +0000854
855 df = *(int *)CMSG_DATA(cmsg);
856 if (df < 0 || df > 1)
857 goto exit_f;
858
859 err = 0;
860 *dontfrag = df;
861
862 break;
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 default:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700865 LIMIT_NETDEBUG(KERN_DEBUG "invalid cmsg type: %d\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900866 cmsg->cmsg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 err = -EINVAL;
Miao Xie4a367022008-07-29 23:57:58 -0700868 goto exit_f;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871
872exit_f:
873 return err;
874}
Chris Elstona495f832012-04-29 21:48:53 +0000875EXPORT_SYMBOL_GPL(datagram_send_ctl);