blob: cd9374937bea8091db319262c7643f7d762127cd [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <net/ipv6.h>
27#include <net/ndisc.h>
28#include <net/addrconf.h>
29#include <net/transp_v6.h>
30#include <net/ip6_route.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070031#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/errqueue.h>
34#include <asm/uaccess.h>
35
Max Matveevc15fea22011-08-05 03:56:30 -070036static inline int ipv6_mapped_addr_any(const struct in6_addr *a)
37{
38 return (ipv6_addr_v4mapped(a) && (a->s6_addr32[3] == 0));
39}
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
42{
43 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
44 struct inet_sock *inet = inet_sk(sk);
45 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000046 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct dst_entry *dst;
David S. Miller4c9483b2011-03-12 16:22:43 -050048 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct ip6_flowlabel *flowlabel = NULL;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000050 struct ipv6_txoptions *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int addr_type;
52 int err;
53
54 if (usin->sin6_family == AF_INET) {
55 if (__ipv6_only_sock(sk))
56 return -EAFNOSUPPORT;
57 err = ip4_datagram_connect(sk, uaddr, addr_len);
58 goto ipv4_connected;
59 }
60
61 if (addr_len < SIN6_LEN_RFC2133)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090062 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090064 if (usin->sin6_family != AF_INET6)
65 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
David S. Miller4c9483b2011-03-12 16:22:43 -050067 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -050069 fl6.flowlabel = usin->sin6_flowinfo&IPV6_FLOWINFO_MASK;
70 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
71 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (flowlabel == NULL)
73 return -EINVAL;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000074 usin->sin6_addr = flowlabel->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76 }
77
78 addr_type = ipv6_addr_type(&usin->sin6_addr);
79
80 if (addr_type == IPV6_ADDR_ANY) {
81 /*
82 * connect to self
83 */
84 usin->sin6_addr.s6_addr[15] = 0x01;
85 }
86
87 daddr = &usin->sin6_addr;
88
89 if (addr_type == IPV6_ADDR_MAPPED) {
90 struct sockaddr_in sin;
91
92 if (__ipv6_only_sock(sk)) {
93 err = -ENETUNREACH;
94 goto out;
95 }
96 sin.sin_family = AF_INET;
97 sin.sin_addr.s_addr = daddr->s6_addr32[3];
98 sin.sin_port = usin->sin6_port;
99
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900100 err = ip4_datagram_connect(sk,
101 (struct sockaddr*) &sin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 sizeof(sin));
103
104ipv4_connected:
105 if (err)
106 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900107
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000108 ipv6_addr_set_v4mapped(inet->inet_daddr, &np->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Max Matveevc15fea22011-08-05 03:56:30 -0700110 if (ipv6_addr_any(&np->saddr) ||
111 ipv6_mapped_addr_any(&np->saddr))
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000112 ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Max Matveevc15fea22011-08-05 03:56:30 -0700114 if (ipv6_addr_any(&np->rcv_saddr) ||
115 ipv6_mapped_addr_any(&np->rcv_saddr)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000116 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
117 &np->rcv_saddr);
Eric Dumazet719f8352010-09-08 05:08:44 +0000118 if (sk->sk_prot->rehash)
119 sk->sk_prot->rehash(sk);
120 }
Brian Haleyb301e822009-10-07 13:58:25 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto out;
123 }
124
125 if (addr_type&IPV6_ADDR_LINKLOCAL) {
126 if (addr_len >= sizeof(struct sockaddr_in6) &&
127 usin->sin6_scope_id) {
128 if (sk->sk_bound_dev_if &&
129 sk->sk_bound_dev_if != usin->sin6_scope_id) {
130 err = -EINVAL;
131 goto out;
132 }
133 sk->sk_bound_dev_if = usin->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
Brian Haley1ac4f002008-01-08 23:52:21 -0800136 if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
137 sk->sk_bound_dev_if = np->mcast_oif;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* Connect to link-local address requires an interface */
140 if (!sk->sk_bound_dev_if) {
141 err = -EINVAL;
142 goto out;
143 }
144 }
145
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000146 np->daddr = *daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500147 np->flow_label = fl6.flowlabel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000149 inet->inet_dport = usin->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 /*
152 * Check for a route to destination an obtain the
153 * destination cache for it.
154 */
155
David S. Miller4c9483b2011-03-12 16:22:43 -0500156 fl6.flowi6_proto = sk->sk_protocol;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000157 fl6.daddr = np->daddr;
158 fl6.saddr = np->saddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500159 fl6.flowi6_oif = sk->sk_bound_dev_if;
160 fl6.flowi6_mark = sk->sk_mark;
David S. Miller1958b852011-03-12 16:36:19 -0500161 fl6.fl6_dport = inet->inet_dport;
162 fl6.fl6_sport = inet->inet_sport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
David S. Miller4c9483b2011-03-12 16:22:43 -0500164 if (!fl6.flowi6_oif && (addr_type&IPV6_ADDR_MULTICAST))
165 fl6.flowi6_oif = np->mcast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
David S. Miller4c9483b2011-03-12 16:22:43 -0500167 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700168
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000169 opt = flowlabel ? flowlabel->opt : np->opt;
David S. Miller4c9483b2011-03-12 16:22:43 -0500170 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
David S. Miller4c9483b2011-03-12 16:22:43 -0500172 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800173 err = 0;
174 if (IS_ERR(dst)) {
175 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* source address lookup done in ip6_dst_lookup */
180
181 if (ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000182 np->saddr = fl6.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 if (ipv6_addr_any(&np->rcv_saddr)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000185 np->rcv_saddr = fl6.saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000186 inet->inet_rcv_saddr = LOOPBACK4_IPV6;
Eric Dumazet719f8352010-09-08 05:08:44 +0000187 if (sk->sk_prot->rehash)
188 sk->sk_prot->rehash(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 ip6_dst_store(sk, dst,
David S. Miller4c9483b2011-03-12 16:22:43 -0500192 ipv6_addr_equal(&fl6.daddr, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700193 &np->daddr : NULL,
194#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -0500195 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700196 &np->saddr :
197#endif
198 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 sk->sk_state = TCP_ESTABLISHED;
201out:
202 fl6_sock_release(flowlabel);
203 return err;
204}
205
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900206void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
Al Viroe69a4ad2006-11-14 20:56:00 -0800207 __be16 port, u32 info, u8 *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaldo Carvalho de Melocc70ab22007-03-13 14:03:22 -0300210 struct icmp6hdr *icmph = icmp6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct sock_exterr_skb *serr;
212
213 if (!np->recverr)
214 return;
215
216 skb = skb_clone(skb, GFP_ATOMIC);
217 if (!skb)
218 return;
219
Brian Haleyd40a4de2010-05-03 15:44:27 +0000220 skb->protocol = htons(ETH_P_IPV6);
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 serr = SKB_EXT_ERR(skb);
223 serr->ee.ee_errno = err;
224 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900225 serr->ee.ee_type = icmph->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 serr->ee.ee_code = icmph->icmp6_code;
227 serr->ee.ee_pad = 0;
228 serr->ee.ee_info = info;
229 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700230 serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
231 skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 serr->port = port;
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 __skb_pull(skb, payload - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300235 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (sock_queue_err_skb(sk, skb))
238 kfree_skb(skb);
239}
240
David S. Miller4c9483b2011-03-12 16:22:43 -0500241void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct ipv6_pinfo *np = inet6_sk(sk);
244 struct sock_exterr_skb *serr;
245 struct ipv6hdr *iph;
246 struct sk_buff *skb;
247
248 if (!np->recverr)
249 return;
250
251 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
252 if (!skb)
253 return;
254
Brian Haleyd40a4de2010-05-03 15:44:27 +0000255 skb->protocol = htons(ETH_P_IPV6);
256
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300257 skb_put(skb, sizeof(struct ipv6hdr));
258 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700259 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000260 iph->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 serr = SKB_EXT_ERR(skb);
263 serr->ee.ee_errno = err;
264 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900265 serr->ee.ee_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 serr->ee.ee_code = 0;
267 serr->ee.ee_pad = 0;
268 serr->ee.ee_info = info;
269 serr->ee.ee_data = 0;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700270 serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500271 serr->port = fl6->fl6_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700273 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
Arnaldo Carvalho de Melobd823932007-03-13 17:10:43 -0300274 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (sock_queue_err_skb(sk, skb))
277 kfree_skb(skb);
278}
279
David S. Miller4c9483b2011-03-12 16:22:43 -0500280void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
Brian Haley4b340ae2010-04-23 11:26:09 +0000281{
282 struct ipv6_pinfo *np = inet6_sk(sk);
283 struct ipv6hdr *iph;
284 struct sk_buff *skb;
285 struct ip6_mtuinfo *mtu_info;
286
287 if (!np->rxopt.bits.rxpmtu)
288 return;
289
290 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
291 if (!skb)
292 return;
293
294 skb_put(skb, sizeof(struct ipv6hdr));
295 skb_reset_network_header(skb);
296 iph = ipv6_hdr(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000297 iph->daddr = fl6->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000298
299 mtu_info = IP6CBMTU(skb);
Brian Haley4b340ae2010-04-23 11:26:09 +0000300
301 mtu_info->ip6m_mtu = mtu;
302 mtu_info->ip6m_addr.sin6_family = AF_INET6;
303 mtu_info->ip6m_addr.sin6_port = 0;
304 mtu_info->ip6m_addr.sin6_flowinfo = 0;
David S. Miller4c9483b2011-03-12 16:22:43 -0500305 mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000306 mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
Brian Haley4b340ae2010-04-23 11:26:09 +0000307
308 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
309 skb_reset_transport_header(skb);
310
311 skb = xchg(&np->rxpmtu, skb);
312 kfree_skb(skb);
313}
314
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900315/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * Handle MSG_ERRQUEUE
317 */
Hannes Frederic Sowaff4fe082013-11-23 00:46:12 +0100318int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 struct ipv6_pinfo *np = inet6_sk(sk);
321 struct sock_exterr_skb *serr;
322 struct sk_buff *skb, *skb2;
323 struct sockaddr_in6 *sin;
324 struct {
325 struct sock_extended_err ee;
326 struct sockaddr_in6 offender;
327 } errhdr;
328 int err;
329 int copied;
330
331 err = -EAGAIN;
332 skb = skb_dequeue(&sk->sk_error_queue);
333 if (skb == NULL)
334 goto out;
335
336 copied = skb->len;
337 if (copied > len) {
338 msg->msg_flags |= MSG_TRUNC;
339 copied = len;
340 }
341 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
342 if (err)
343 goto out_free_skb;
344
345 sock_recv_timestamp(msg, sk, skb);
346
347 serr = SKB_EXT_ERR(skb);
348
349 sin = (struct sockaddr_in6 *)msg->msg_name;
350 if (sin) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700351 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 sin->sin6_family = AF_INET6;
353 sin->sin6_flowinfo = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900354 sin->sin6_port = serr->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 sin->sin6_scope_id = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000356 if (skb->protocol == htons(ETH_P_IPV6)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000357 sin->sin6_addr =
358 *(struct in6_addr *)(nh + serr->addr_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (np->sndflow)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700360 sin->sin6_flowinfo =
361 (*(__be32 *)(nh + serr->addr_offset - 24) &
362 IPV6_FLOWINFO_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
364 sin->sin6_scope_id = IP6CB(skb)->iif;
365 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700366 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
367 &sin->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Hannes Frederic Sowaff4fe082013-11-23 00:46:12 +0100369 *addr_len = sizeof(*sin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
372 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
373 sin = &errhdr.offender;
374 sin->sin6_family = AF_UNSPEC;
375 if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) {
376 sin->sin6_family = AF_INET6;
377 sin->sin6_flowinfo = 0;
378 sin->sin6_scope_id = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000379 if (skb->protocol == htons(ETH_P_IPV6)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000380 sin->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (np->rxopt.all)
382 datagram_recv_ctl(sk, msg, skb);
383 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
384 sin->sin6_scope_id = IP6CB(skb)->iif;
385 } else {
386 struct inet_sock *inet = inet_sk(sk);
387
Brian Haleyb301e822009-10-07 13:58:25 -0700388 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
389 &sin->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (inet->cmsg_flags)
391 ip_cmsg_recv(msg, skb);
392 }
393 }
394
395 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
396
397 /* Now we could try to dump offended packet options */
398
399 msg->msg_flags |= MSG_ERRQUEUE;
400 err = copied;
401
402 /* Reset and regenerate socket error */
Herbert Xue0f9f852005-06-18 22:56:18 -0700403 spin_lock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 sk->sk_err = 0;
405 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
406 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
Herbert Xue0f9f852005-06-18 22:56:18 -0700407 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 sk->sk_error_report(sk);
409 } else {
Herbert Xue0f9f852005-06-18 22:56:18 -0700410 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900413out_free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 kfree_skb(skb);
415out:
416 return err;
417}
418
Brian Haley4b340ae2010-04-23 11:26:09 +0000419/*
420 * Handle IPV6_RECVPATHMTU
421 */
Hannes Frederic Sowaff4fe082013-11-23 00:46:12 +0100422int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
423 int *addr_len)
Brian Haley4b340ae2010-04-23 11:26:09 +0000424{
425 struct ipv6_pinfo *np = inet6_sk(sk);
426 struct sk_buff *skb;
427 struct sockaddr_in6 *sin;
428 struct ip6_mtuinfo mtu_info;
429 int err;
430 int copied;
431
432 err = -EAGAIN;
433 skb = xchg(&np->rxpmtu, NULL);
434 if (skb == NULL)
435 goto out;
436
437 copied = skb->len;
438 if (copied > len) {
439 msg->msg_flags |= MSG_TRUNC;
440 copied = len;
441 }
442 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
443 if (err)
444 goto out_free_skb;
445
446 sock_recv_timestamp(msg, sk, skb);
447
448 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
449
450 sin = (struct sockaddr_in6 *)msg->msg_name;
451 if (sin) {
452 sin->sin6_family = AF_INET6;
453 sin->sin6_flowinfo = 0;
454 sin->sin6_port = 0;
455 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000456 sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
Hannes Frederic Sowaff4fe082013-11-23 00:46:12 +0100457 *addr_len = sizeof(*sin);
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) {
Jiri Benc7a3198a2012-02-09 09:34:41 +0000491 int tclass = ipv6_tclass(ipv6_hdr(skb));
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900492 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
493 }
494
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700495 if (np->rxopt.bits.rxflow && (*(__be32 *)nh & IPV6_FLOWINFO_MASK)) {
496 __be32 flowinfo = *(__be32 *)nh & IPV6_FLOWINFO_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
498 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900499
500 /* HbH is allowed only once */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (np->rxopt.bits.hopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700502 u8 *ptr = nh + opt->hop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
504 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900505
506 if (opt->lastopt &&
507 (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
508 /*
509 * Silly enough, but we need to reparse in order to
510 * report extension headers (except for HbH)
511 * in order.
512 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900513 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900514 * (and WILL NOT be) defined because
515 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
516 */
517 unsigned int off = sizeof(struct ipv6hdr);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700518 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900519
520 while (off <= opt->lastopt) {
521 unsigned len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700522 u8 *ptr = nh + off;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900523
524 switch(nexthdr) {
525 case IPPROTO_DSTOPTS:
526 nexthdr = ptr[0];
527 len = (ptr[1] + 1) << 3;
528 if (np->rxopt.bits.dstopts)
529 put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
530 break;
531 case IPPROTO_ROUTING:
532 nexthdr = ptr[0];
533 len = (ptr[1] + 1) << 3;
534 if (np->rxopt.bits.srcrt)
535 put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
536 break;
537 case IPPROTO_AH:
538 nexthdr = ptr[0];
Ville Nuorvalaa3059892005-11-20 12:21:59 +0900539 len = (ptr[1] + 2) << 2;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900540 break;
541 default:
542 nexthdr = ptr[0];
543 len = (ptr[1] + 1) << 3;
544 break;
545 }
546
547 off += len;
548 }
549 }
550
551 /* socket options in old style */
552 if (np->rxopt.bits.rxoinfo) {
553 struct in6_pktinfo src_info;
554
555 src_info.ipi6_ifindex = opt->iif;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000556 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900557 put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
558 }
559 if (np->rxopt.bits.rxohlim) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700560 int hlim = ipv6_hdr(skb)->hop_limit;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900561 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
562 }
563 if (np->rxopt.bits.ohopopts && opt->hop) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700564 u8 *ptr = nh + opt->hop;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900565 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
566 }
567 if (np->rxopt.bits.odstopts && opt->dst0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700568 u8 *ptr = nh + opt->dst0;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900569 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900571 if (np->rxopt.bits.osrcrt && opt->srcrt) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700572 struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900573 put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900575 if (np->rxopt.bits.odstopts && opt->dst1) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700576 u8 *ptr = nh + opt->dst1;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900577 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Balazs Scheidler6c468622010-10-21 16:08:28 +0200579 if (np->rxopt.bits.rxorigdstaddr) {
580 struct sockaddr_in6 sin6;
Eric Dumazet747465e2012-01-16 19:27:39 +0000581 __be16 *ports = (__be16 *) skb_transport_header(skb);
Balazs Scheidler6c468622010-10-21 16:08:28 +0200582
583 if (skb_transport_offset(skb) + 4 <= skb->len) {
584 /* All current transport protocols have the port numbers in the
585 * first four bytes of the transport header and this function is
586 * written with this assumption in mind.
587 */
588
589 sin6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000590 sin6.sin6_addr = ipv6_hdr(skb)->daddr;
Balazs Scheidler6c468622010-10-21 16:08:28 +0200591 sin6.sin6_port = ports[1];
592 sin6.sin6_flowinfo = 0;
593 sin6.sin6_scope_id = 0;
594
595 put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
596 }
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return 0;
599}
600
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000601int datagram_send_ctl(struct net *net, struct sock *sk,
David S. Miller4c9483b2011-03-12 16:22:43 -0500602 struct msghdr *msg, struct flowi6 *fl6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 struct ipv6_txoptions *opt,
Brian Haley13b52cd2010-04-23 11:26:08 +0000604 int *hlimit, int *tclass, int *dontfrag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct in6_pktinfo *src_info;
607 struct cmsghdr *cmsg;
608 struct ipv6_rt_hdr *rthdr;
609 struct ipv6_opt_hdr *hdr;
610 int len;
611 int err = 0;
612
613 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
614 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (!CMSG_OK(msg, cmsg)) {
617 err = -EINVAL;
618 goto exit_f;
619 }
620
621 if (cmsg->cmsg_level != SOL_IPV6)
622 continue;
623
624 switch (cmsg->cmsg_type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900625 case IPV6_PKTINFO:
626 case IPV6_2292PKTINFO:
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900627 {
628 struct net_device *dev = NULL;
629
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900630 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 err = -EINVAL;
632 goto exit_f;
633 }
634
635 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (src_info->ipi6_ifindex) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500638 if (fl6->flowi6_oif &&
639 src_info->ipi6_ifindex != fl6->flowi6_oif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EINVAL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500641 fl6->flowi6_oif = src_info->ipi6_ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900644 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Eric Dumazet536b2e92009-11-02 12:21:06 +0100646 rcu_read_lock();
David S. Miller4c9483b2011-03-12 16:22:43 -0500647 if (fl6->flowi6_oif) {
648 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
Eric Dumazet536b2e92009-11-02 12:21:06 +0100649 if (!dev) {
650 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900651 return -ENODEV;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100652 }
653 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
654 rcu_read_unlock();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900655 return -EINVAL;
Eric Dumazet536b2e92009-11-02 12:21:06 +0100656 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900657
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900658 if (addr_type != IPV6_ADDR_ANY) {
659 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
Maciej Żenczykowski2563fa52011-11-07 14:57:22 +0000660 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000661 !ipv6_chk_addr(net, &src_info->ipi6_addr,
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900662 strict ? dev : NULL, 0))
663 err = -EINVAL;
664 else
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000665 fl6->saddr = src_info->ipi6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900667
Eric Dumazet536b2e92009-11-02 12:21:06 +0100668 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900670 if (err)
671 goto exit_f;
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900677 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 err = -EINVAL;
679 goto exit_f;
680 }
681
David S. Miller4c9483b2011-03-12 16:22:43 -0500682 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
683 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 err = -EINVAL;
685 goto exit_f;
686 }
687 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500688 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900691 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900693 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 err = -EINVAL;
695 goto exit_f;
696 }
697
698 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
699 len = ((hdr->hdrlen + 1) << 3);
700 if (cmsg->cmsg_len < CMSG_LEN(len)) {
701 err = -EINVAL;
702 goto exit_f;
703 }
704 if (!capable(CAP_NET_RAW)) {
705 err = -EPERM;
706 goto exit_f;
707 }
708 opt->opt_nflen += len;
709 opt->hopopt = hdr;
710 break;
711
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900712 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900713 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 err = -EINVAL;
715 goto exit_f;
716 }
717
718 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
719 len = ((hdr->hdrlen + 1) << 3);
720 if (cmsg->cmsg_len < CMSG_LEN(len)) {
721 err = -EINVAL;
722 goto exit_f;
723 }
724 if (!capable(CAP_NET_RAW)) {
725 err = -EPERM;
726 goto exit_f;
727 }
728 if (opt->dst1opt) {
729 err = -EINVAL;
730 goto exit_f;
731 }
732 opt->opt_flen += len;
733 opt->dst1opt = hdr;
734 break;
735
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900736 case IPV6_DSTOPTS:
737 case IPV6_RTHDRDSTOPTS:
738 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
739 err = -EINVAL;
740 goto exit_f;
741 }
742
743 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
744 len = ((hdr->hdrlen + 1) << 3);
745 if (cmsg->cmsg_len < CMSG_LEN(len)) {
746 err = -EINVAL;
747 goto exit_f;
748 }
749 if (!capable(CAP_NET_RAW)) {
750 err = -EPERM;
751 goto exit_f;
752 }
753 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
754 opt->opt_flen += len;
755 opt->dst1opt = hdr;
756 } else {
757 opt->opt_nflen += len;
758 opt->dst0opt = hdr;
759 }
760 break;
761
762 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900764 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 err = -EINVAL;
766 goto exit_f;
767 }
768
769 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
770
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700771 switch (rthdr->type) {
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700772#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700773 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800774 if (rthdr->hdrlen != 2 ||
775 rthdr->segments_left != 1) {
776 err = -EINVAL;
777 goto exit_f;
778 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700779 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700780#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700781 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 err = -EINVAL;
783 goto exit_f;
784 }
785
786 len = ((rthdr->hdrlen + 1) << 3);
787
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900788 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 err = -EINVAL;
790 goto exit_f;
791 }
792
793 /* segments left must also match */
794 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
795 err = -EINVAL;
796 goto exit_f;
797 }
798
799 opt->opt_nflen += len;
800 opt->srcrt = rthdr;
801
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900802 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
804
805 opt->opt_nflen += dsthdrlen;
806 opt->dst0opt = opt->dst1opt;
807 opt->dst1opt = NULL;
808 opt->opt_flen -= dsthdrlen;
809 }
810
811 break;
812
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900813 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 case IPV6_HOPLIMIT:
815 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
816 err = -EINVAL;
817 goto exit_f;
818 }
819
820 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800821 if (*hlimit < -1 || *hlimit > 0xff) {
822 err = -EINVAL;
823 goto exit_f;
824 }
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 break;
827
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900828 case IPV6_TCLASS:
829 {
830 int tc;
831
832 err = -EINVAL;
833 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
834 goto exit_f;
835 }
836
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;
852 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
853 goto exit_f;
854 }
855
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}