blob: 7a778b9a7b859586219a37c7f80bd6ffeefe27c6 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <linux/errqueue.h>
35#include <asm/uaccess.h>
36
Eric Dumazeta50feda2012-05-18 18:57:34 +000037static bool ipv6_mapped_addr_any(const struct in6_addr *a)
Max Matveevc15fea22011-08-05 03:56:30 -070038{
Eric Dumazeta50feda2012-05-18 18:57:34 +000039 return ipv6_addr_v4mapped(a) && (a->s6_addr32[3] == 0);
Max Matveevc15fea22011-08-05 03:56:30 -070040}
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
43{
44 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
45 struct inet_sock *inet = inet_sk(sk);
46 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000047 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct dst_entry *dst;
David S. Miller4c9483b2011-03-12 16:22:43 -050049 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct ip6_flowlabel *flowlabel = NULL;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000051 struct ipv6_txoptions *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 int addr_type;
53 int err;
54
55 if (usin->sin6_family == AF_INET) {
56 if (__ipv6_only_sock(sk))
57 return -EAFNOSUPPORT;
58 err = ip4_datagram_connect(sk, uaddr, addr_len);
59 goto ipv4_connected;
60 }
61
62 if (addr_len < SIN6_LEN_RFC2133)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090063 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090065 if (usin->sin6_family != AF_INET6)
66 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
David S. Miller4c9483b2011-03-12 16:22:43 -050068 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -050070 fl6.flowlabel = usin->sin6_flowinfo&IPV6_FLOWINFO_MASK;
71 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
72 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (flowlabel == NULL)
74 return -EINVAL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000075 usin->sin6_addr = flowlabel->dst;
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 Dumazetc720c7e2009-10-15 06:30:45 +0000109 ipv6_addr_set_v4mapped(inet->inet_daddr, &np->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
Max Matveevc15fea22011-08-05 03:56:30 -0700115 if (ipv6_addr_any(&np->rcv_saddr) ||
116 ipv6_mapped_addr_any(&np->rcv_saddr)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000117 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
118 &np->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
126 if (addr_type&IPV6_ADDR_LINKLOCAL) {
127 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
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000147 np->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;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000158 fl6.daddr = np->daddr;
159 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
David S. Miller4c9483b2011-03-12 16:22:43 -0500173 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
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
185 if (ipv6_addr_any(&np->rcv_saddr)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000186 np->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,
David S. Miller4c9483b2011-03-12 16:22:43 -0500193 ipv6_addr_equal(&fl6.daddr, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700194 &np->daddr : NULL,
195#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
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900208void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
Al Viroe69a4adc2006-11-14 20:56:00 -0800209 __be16 port, u32 info, u8 *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -0300212 struct icmp6hdr *icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 struct sock_exterr_skb *serr;
214
215 if (!np->recverr)
216 return;
217
218 skb = skb_clone(skb, GFP_ATOMIC);
219 if (!skb)
220 return;
221
Brian Haleyd40a4de2010-05-03 15:44:27 +0000222 skb->protocol = htons(ETH_P_IPV6);
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 serr = SKB_EXT_ERR(skb);
225 serr->ee.ee_errno = err;
226 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900227 serr->ee.ee_type = icmph->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 serr->ee.ee_code = icmph->icmp6_code;
229 serr->ee.ee_pad = 0;
230 serr->ee.ee_info = info;
231 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700232 serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
233 skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 serr->port = port;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 __skb_pull(skb, payload - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300237 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 if (sock_queue_err_skb(sk, skb))
240 kfree_skb(skb);
241}
242
David S. Miller4c9483b2011-03-12 16:22:43 -0500243void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct ipv6_pinfo *np = inet6_sk(sk);
246 struct sock_exterr_skb *serr;
247 struct ipv6hdr *iph;
248 struct sk_buff *skb;
249
250 if (!np->recverr)
251 return;
252
253 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
254 if (!skb)
255 return;
256
Brian Haleyd40a4de2010-05-03 15:44:27 +0000257 skb->protocol = htons(ETH_P_IPV6);
258
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300259 skb_put(skb, sizeof(struct ipv6hdr));
260 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700261 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000262 iph->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 serr = SKB_EXT_ERR(skb);
265 serr->ee.ee_errno = err;
266 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900267 serr->ee.ee_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 serr->ee.ee_code = 0;
269 serr->ee.ee_pad = 0;
270 serr->ee.ee_info = info;
271 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700272 serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500273 serr->port = fl6->fl6_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700275 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300276 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (sock_queue_err_skb(sk, skb))
279 kfree_skb(skb);
280}
281
David S. Miller4c9483b2011-03-12 16:22:43 -0500282void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
Brian Haley4b340ae2010-04-23 11:26:09 +0000283{
284 struct ipv6_pinfo *np = inet6_sk(sk);
285 struct ipv6hdr *iph;
286 struct sk_buff *skb;
287 struct ip6_mtuinfo *mtu_info;
288
289 if (!np->rxopt.bits.rxpmtu)
290 return;
291
292 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
293 if (!skb)
294 return;
295
296 skb_put(skb, sizeof(struct ipv6hdr));
297 skb_reset_network_header(skb);
298 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000299 iph->daddr = fl6->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000300
301 mtu_info = IP6CBMTU(skb);
Brian Haley4b340ae2010-04-23 11:26:09 +0000302
303 mtu_info->ip6m_mtu = mtu;
304 mtu_info->ip6m_addr.sin6_family = AF_INET6;
305 mtu_info->ip6m_addr.sin6_port = 0;
306 mtu_info->ip6m_addr.sin6_flowinfo = 0;
David S. Miller4c9483b2011-03-12 16:22:43 -0500307 mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000308 mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000309
310 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
311 skb_reset_transport_header(skb);
312
313 skb = xchg(&np->rxpmtu, skb);
314 kfree_skb(skb);
315}
316
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900317/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * Handle MSG_ERRQUEUE
319 */
320int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len)
321{
322 struct ipv6_pinfo *np = inet6_sk(sk);
323 struct sock_exterr_skb *serr;
324 struct sk_buff *skb, *skb2;
325 struct sockaddr_in6 *sin;
326 struct {
327 struct sock_extended_err ee;
328 struct sockaddr_in6 offender;
329 } errhdr;
330 int err;
331 int copied;
332
333 err = -EAGAIN;
334 skb = skb_dequeue(&sk->sk_error_queue);
335 if (skb == NULL)
336 goto out;
337
338 copied = skb->len;
339 if (copied > len) {
340 msg->msg_flags |= MSG_TRUNC;
341 copied = len;
342 }
343 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
344 if (err)
345 goto out_free_skb;
346
347 sock_recv_timestamp(msg, sk, skb);
348
349 serr = SKB_EXT_ERR(skb);
350
351 sin = (struct sockaddr_in6 *)msg->msg_name;
352 if (sin) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700353 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 sin->sin6_family = AF_INET6;
355 sin->sin6_flowinfo = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900356 sin->sin6_port = serr->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 sin->sin6_scope_id = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000358 if (skb->protocol == htons(ETH_P_IPV6)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000359 sin->sin6_addr =
360 *(struct in6_addr *)(nh + serr->addr_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (np->sndflow)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700362 sin->sin6_flowinfo =
363 (*(__be32 *)(nh + serr->addr_offset - 24) &
364 IPV6_FLOWINFO_MASK);
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)
Tom Parkin73df66f2013-01-31 01:02:24 +0000383 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 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
Tom Parkin73df66f2013-01-31 01:02:24 +0000471int ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
472 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct ipv6_pinfo *np = inet6_sk(sk);
475 struct inet6_skb_parm *opt = IP6CB(skb);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700476 unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (np->rxopt.bits.rxinfo) {
479 struct in6_pktinfo src_info;
480
481 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000482 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
484 }
485
486 if (np->rxopt.bits.rxhlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700487 int hlim = ipv6_hdr(skb)->hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
489 }
490
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900491 if (np->rxopt.bits.rxtclass) {
Jiri Benc7a3198a2012-02-09 09:34:41 +0000492 int tclass = ipv6_tclass(ipv6_hdr(skb));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900493 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
494 }
495
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700496 if (np->rxopt.bits.rxflow && (*(__be32 *)nh & IPV6_FLOWINFO_MASK)) {
497 __be32 flowinfo = *(__be32 *)nh & IPV6_FLOWINFO_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
499 }
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}
Tom Parkin8e72d372013-01-31 01:02:25 +0000601EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Tom Parkin73df66f2013-01-31 01:02:24 +0000603int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
604 struct msghdr *msg, struct flowi6 *fl6,
605 struct ipv6_txoptions *opt,
606 int *hlimit, int *tclass, int *dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct in6_pktinfo *src_info;
609 struct cmsghdr *cmsg;
610 struct ipv6_rt_hdr *rthdr;
611 struct ipv6_opt_hdr *hdr;
612 int len;
613 int err = 0;
614
615 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
616 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (!CMSG_OK(msg, cmsg)) {
619 err = -EINVAL;
620 goto exit_f;
621 }
622
623 if (cmsg->cmsg_level != SOL_IPV6)
624 continue;
625
626 switch (cmsg->cmsg_type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900627 case IPV6_PKTINFO:
628 case IPV6_2292PKTINFO:
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900629 {
630 struct net_device *dev = NULL;
631
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900632 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 err = -EINVAL;
634 goto exit_f;
635 }
636
637 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (src_info->ipi6_ifindex) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500640 if (fl6->flowi6_oif &&
641 src_info->ipi6_ifindex != fl6->flowi6_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500643 fl6->flowi6_oif = src_info->ipi6_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900646 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Eric Dumazet536b2e92009-11-02 12:21:06 +0100648 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500649 if (fl6->flowi6_oif) {
650 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
Eric Dumazet536b2e92009-11-02 12:21:06 +0100651 if (!dev) {
652 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900653 return -ENODEV;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100654 }
655 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
656 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900657 return -EINVAL;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100658 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900659
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900660 if (addr_type != IPV6_ADDR_ANY) {
661 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
Maciej Żenczykowski2563fa52011-11-07 14:57:22 +0000662 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000663 !ipv6_chk_addr(net, &src_info->ipi6_addr,
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900664 strict ? dev : NULL, 0))
665 err = -EINVAL;
666 else
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000667 fl6->saddr = src_info->ipi6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900669
Eric Dumazet536b2e92009-11-02 12:21:06 +0100670 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900672 if (err)
673 goto exit_f;
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900679 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 err = -EINVAL;
681 goto exit_f;
682 }
683
David S. Miller4c9483b2011-03-12 16:22:43 -0500684 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
685 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 err = -EINVAL;
687 goto exit_f;
688 }
689 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500690 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 break;
692
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900693 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900695 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 err = -EINVAL;
697 goto exit_f;
698 }
699
700 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
701 len = ((hdr->hdrlen + 1) << 3);
702 if (cmsg->cmsg_len < CMSG_LEN(len)) {
703 err = -EINVAL;
704 goto exit_f;
705 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000706 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 err = -EPERM;
708 goto exit_f;
709 }
710 opt->opt_nflen += len;
711 opt->hopopt = hdr;
712 break;
713
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900714 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900715 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 err = -EINVAL;
717 goto exit_f;
718 }
719
720 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
721 len = ((hdr->hdrlen + 1) << 3);
722 if (cmsg->cmsg_len < CMSG_LEN(len)) {
723 err = -EINVAL;
724 goto exit_f;
725 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000726 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 err = -EPERM;
728 goto exit_f;
729 }
730 if (opt->dst1opt) {
731 err = -EINVAL;
732 goto exit_f;
733 }
734 opt->opt_flen += len;
735 opt->dst1opt = hdr;
736 break;
737
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900738 case IPV6_DSTOPTS:
739 case IPV6_RTHDRDSTOPTS:
740 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
741 err = -EINVAL;
742 goto exit_f;
743 }
744
745 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
746 len = ((hdr->hdrlen + 1) << 3);
747 if (cmsg->cmsg_len < CMSG_LEN(len)) {
748 err = -EINVAL;
749 goto exit_f;
750 }
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000751 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900752 err = -EPERM;
753 goto exit_f;
754 }
755 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
756 opt->opt_flen += len;
757 opt->dst1opt = hdr;
758 } else {
759 opt->opt_nflen += len;
760 opt->dst0opt = hdr;
761 }
762 break;
763
764 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900766 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 err = -EINVAL;
768 goto exit_f;
769 }
770
771 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
772
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700773 switch (rthdr->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +0000774#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700775 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800776 if (rthdr->hdrlen != 2 ||
777 rthdr->segments_left != 1) {
778 err = -EINVAL;
779 goto exit_f;
780 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700781 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700782#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700783 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 err = -EINVAL;
785 goto exit_f;
786 }
787
788 len = ((rthdr->hdrlen + 1) << 3);
789
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900790 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 err = -EINVAL;
792 goto exit_f;
793 }
794
795 /* segments left must also match */
796 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
797 err = -EINVAL;
798 goto exit_f;
799 }
800
801 opt->opt_nflen += len;
802 opt->srcrt = rthdr;
803
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900804 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
806
807 opt->opt_nflen += dsthdrlen;
808 opt->dst0opt = opt->dst1opt;
809 opt->dst1opt = NULL;
810 opt->opt_flen -= dsthdrlen;
811 }
812
813 break;
814
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900815 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 case IPV6_HOPLIMIT:
817 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
818 err = -EINVAL;
819 goto exit_f;
820 }
821
822 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800823 if (*hlimit < -1 || *hlimit > 0xff) {
824 err = -EINVAL;
825 goto exit_f;
826 }
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 break;
829
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900830 case IPV6_TCLASS:
831 {
832 int tc;
833
834 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000835 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900836 goto exit_f;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900837
838 tc = *(int *)CMSG_DATA(cmsg);
Remi Denis-Courmontd0ee0112006-09-13 20:08:07 -0700839 if (tc < -1 || tc > 0xff)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900840 goto exit_f;
841
842 err = 0;
843 *tclass = tc;
844
845 break;
846 }
Brian Haley13b52cd2010-04-23 11:26:08 +0000847
848 case IPV6_DONTFRAG:
849 {
850 int df;
851
852 err = -EINVAL;
Eldad Zackb5a42572012-04-01 07:49:03 +0000853 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
Brian Haley13b52cd2010-04-23 11:26:08 +0000854 goto exit_f;
Brian Haley13b52cd2010-04-23 11:26:08 +0000855
856 df = *(int *)CMSG_DATA(cmsg);
857 if (df < 0 || df > 1)
858 goto exit_f;
859
860 err = 0;
861 *dontfrag = df;
862
863 break;
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 default:
Patrick McHardy64ce2072005-08-09 20:50:53 -0700866 LIMIT_NETDEBUG(KERN_DEBUG "invalid cmsg type: %d\n",
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900867 cmsg->cmsg_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 err = -EINVAL;
Miao Xie4a367022008-07-29 23:57:58 -0700869 goto exit_f;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
873exit_f:
874 return err;
875}
Tom Parkin73df66f2013-01-31 01:02:24 +0000876EXPORT_SYMBOL_GPL(ip6_datagram_send_ctl);