blob: 320bdb877eed2ff61da25c6c9a1ac2f6cc00baac [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
36int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
37{
38 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
39 struct inet_sock *inet = inet_sk(sk);
40 struct ipv6_pinfo *np = inet6_sk(sk);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000041 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 struct dst_entry *dst;
43 struct flowi fl;
44 struct ip6_flowlabel *flowlabel = NULL;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +000045 struct ipv6_txoptions *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 int addr_type;
47 int err;
48
49 if (usin->sin6_family == AF_INET) {
50 if (__ipv6_only_sock(sk))
51 return -EAFNOSUPPORT;
52 err = ip4_datagram_connect(sk, uaddr, addr_len);
53 goto ipv4_connected;
54 }
55
56 if (addr_len < SIN6_LEN_RFC2133)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090057 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090059 if (usin->sin6_family != AF_INET6)
60 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 memset(&fl, 0, sizeof(fl));
63 if (np->sndflow) {
64 fl.fl6_flowlabel = usin->sin6_flowinfo&IPV6_FLOWINFO_MASK;
65 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
66 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
67 if (flowlabel == NULL)
68 return -EINVAL;
69 ipv6_addr_copy(&usin->sin6_addr, &flowlabel->dst);
70 }
71 }
72
73 addr_type = ipv6_addr_type(&usin->sin6_addr);
74
75 if (addr_type == IPV6_ADDR_ANY) {
76 /*
77 * connect to self
78 */
79 usin->sin6_addr.s6_addr[15] = 0x01;
80 }
81
82 daddr = &usin->sin6_addr;
83
84 if (addr_type == IPV6_ADDR_MAPPED) {
85 struct sockaddr_in sin;
86
87 if (__ipv6_only_sock(sk)) {
88 err = -ENETUNREACH;
89 goto out;
90 }
91 sin.sin_family = AF_INET;
92 sin.sin_addr.s_addr = daddr->s6_addr32[3];
93 sin.sin_port = usin->sin6_port;
94
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090095 err = ip4_datagram_connect(sk,
96 (struct sockaddr*) &sin,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 sizeof(sin));
98
99ipv4_connected:
100 if (err)
101 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900102
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000103 ipv6_addr_set_v4mapped(inet->inet_daddr, &np->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Brian Haleyb301e822009-10-07 13:58:25 -0700105 if (ipv6_addr_any(&np->saddr))
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000106 ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Eric Dumazet719f8352010-09-08 05:08:44 +0000108 if (ipv6_addr_any(&np->rcv_saddr)) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000109 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
110 &np->rcv_saddr);
Eric Dumazet719f8352010-09-08 05:08:44 +0000111 if (sk->sk_prot->rehash)
112 sk->sk_prot->rehash(sk);
113 }
Brian Haleyb301e822009-10-07 13:58:25 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 goto out;
116 }
117
118 if (addr_type&IPV6_ADDR_LINKLOCAL) {
119 if (addr_len >= sizeof(struct sockaddr_in6) &&
120 usin->sin6_scope_id) {
121 if (sk->sk_bound_dev_if &&
122 sk->sk_bound_dev_if != usin->sin6_scope_id) {
123 err = -EINVAL;
124 goto out;
125 }
126 sk->sk_bound_dev_if = usin->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128
Brian Haley1ac4f002008-01-08 23:52:21 -0800129 if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
130 sk->sk_bound_dev_if = np->mcast_oif;
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* Connect to link-local address requires an interface */
133 if (!sk->sk_bound_dev_if) {
134 err = -EINVAL;
135 goto out;
136 }
137 }
138
139 ipv6_addr_copy(&np->daddr, daddr);
140 np->flow_label = fl.fl6_flowlabel;
141
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000142 inet->inet_dport = usin->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /*
145 * Check for a route to destination an obtain the
146 * destination cache for it.
147 */
148
149 fl.proto = sk->sk_protocol;
150 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
151 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
152 fl.oif = sk->sk_bound_dev_if;
Brian Haley51953d52009-10-05 08:24:16 +0000153 fl.mark = sk->sk_mark;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000154 fl.fl_ip_dport = inet->inet_dport;
155 fl.fl_ip_sport = inet->inet_sport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 if (!fl.oif && (addr_type&IPV6_ADDR_MULTICAST))
158 fl.oif = np->mcast_oif;
159
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700160 security_sk_classify_flow(sk, &fl);
161
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000162 opt = flowlabel ? flowlabel->opt : np->opt;
163 final_p = fl6_update_dst(&fl, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 err = ip6_dst_lookup(sk, &dst, &fl);
166 if (err)
167 goto out;
168 if (final_p)
169 ipv6_addr_copy(&fl.fl6_dst, final_p);
170
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800171 err = __xfrm_lookup(sock_net(sk), &dst, &fl, sk, XFRM_LOOKUP_WAIT);
172 if (err < 0) {
David S. Miller14e50e52007-05-24 18:17:54 -0700173 if (err == -EREMOTE)
174 err = ip6_dst_blackhole(sk, &dst, &fl);
175 if (err < 0)
176 goto out;
177 }
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))
182 ipv6_addr_copy(&np->saddr, &fl.fl6_src);
183
184 if (ipv6_addr_any(&np->rcv_saddr)) {
185 ipv6_addr_copy(&np->rcv_saddr, &fl.fl6_src);
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,
192 ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700193 &np->daddr : NULL,
194#ifdef CONFIG_IPV6_SUBTREES
195 ipv6_addr_equal(&fl.fl6_src, &np->saddr) ?
196 &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 Viroe69a4adc2006-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
241void ipv6_local_error(struct sock *sk, int err, struct flowi *fl, u32 info)
242{
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ipv6_addr_copy(&iph->daddr, &fl->fl6_dst);
261
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 serr->port = fl->fl_ip_dport;
272
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
Brian Haley4b340ae2010-04-23 11:26:09 +0000280void ipv6_local_rxpmtu(struct sock *sk, struct flowi *fl, u32 mtu)
281{
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);
297 ipv6_addr_copy(&iph->daddr, &fl->fl6_dst);
298
299 mtu_info = IP6CBMTU(skb);
300 if (!mtu_info) {
301 kfree_skb(skb);
302 return;
303 }
304
305 mtu_info->ip6m_mtu = mtu;
306 mtu_info->ip6m_addr.sin6_family = AF_INET6;
307 mtu_info->ip6m_addr.sin6_port = 0;
308 mtu_info->ip6m_addr.sin6_flowinfo = 0;
309 mtu_info->ip6m_addr.sin6_scope_id = fl->oif;
310 ipv6_addr_copy(&mtu_info->ip6m_addr.sin6_addr, &ipv6_hdr(skb)->daddr);
311
312 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
313 skb_reset_transport_header(skb);
314
315 skb = xchg(&np->rxpmtu, skb);
316 kfree_skb(skb);
317}
318
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900319/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * Handle MSG_ERRQUEUE
321 */
322int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len)
323{
324 struct ipv6_pinfo *np = inet6_sk(sk);
325 struct sock_exterr_skb *serr;
326 struct sk_buff *skb, *skb2;
327 struct sockaddr_in6 *sin;
328 struct {
329 struct sock_extended_err ee;
330 struct sockaddr_in6 offender;
331 } errhdr;
332 int err;
333 int copied;
334
335 err = -EAGAIN;
336 skb = skb_dequeue(&sk->sk_error_queue);
337 if (skb == NULL)
338 goto out;
339
340 copied = skb->len;
341 if (copied > len) {
342 msg->msg_flags |= MSG_TRUNC;
343 copied = len;
344 }
345 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
346 if (err)
347 goto out_free_skb;
348
349 sock_recv_timestamp(msg, sk, skb);
350
351 serr = SKB_EXT_ERR(skb);
352
353 sin = (struct sockaddr_in6 *)msg->msg_name;
354 if (sin) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700355 const unsigned char *nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 sin->sin6_family = AF_INET6;
357 sin->sin6_flowinfo = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900358 sin->sin6_port = serr->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 sin->sin6_scope_id = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000360 if (skb->protocol == htons(ETH_P_IPV6)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ipv6_addr_copy(&sin->sin6_addr,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700362 (struct in6_addr *)(nh + serr->addr_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (np->sndflow)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700364 sin->sin6_flowinfo =
365 (*(__be32 *)(nh + serr->addr_offset - 24) &
366 IPV6_FLOWINFO_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
368 sin->sin6_scope_id = IP6CB(skb)->iif;
369 } else {
Brian Haleyb301e822009-10-07 13:58:25 -0700370 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
371 &sin->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373 }
374
375 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
376 sin = &errhdr.offender;
377 sin->sin6_family = AF_UNSPEC;
378 if (serr->ee.ee_origin != SO_EE_ORIGIN_LOCAL) {
379 sin->sin6_family = AF_INET6;
380 sin->sin6_flowinfo = 0;
381 sin->sin6_scope_id = 0;
Brian Haleyd40a4de2010-05-03 15:44:27 +0000382 if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700383 ipv6_addr_copy(&sin->sin6_addr, &ipv6_hdr(skb)->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (np->rxopt.all)
385 datagram_recv_ctl(sk, msg, skb);
386 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
387 sin->sin6_scope_id = IP6CB(skb)->iif;
388 } else {
389 struct inet_sock *inet = inet_sk(sk);
390
Brian Haleyb301e822009-10-07 13:58:25 -0700391 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
392 &sin->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (inet->cmsg_flags)
394 ip_cmsg_recv(msg, skb);
395 }
396 }
397
398 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
399
400 /* Now we could try to dump offended packet options */
401
402 msg->msg_flags |= MSG_ERRQUEUE;
403 err = copied;
404
405 /* Reset and regenerate socket error */
Herbert Xue0f9f852005-06-18 22:56:18 -0700406 spin_lock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sk->sk_err = 0;
408 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
409 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
Herbert Xue0f9f852005-06-18 22:56:18 -0700410 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 sk->sk_error_report(sk);
412 } else {
Herbert Xue0f9f852005-06-18 22:56:18 -0700413 spin_unlock_bh(&sk->sk_error_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900416out_free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 kfree_skb(skb);
418out:
419 return err;
420}
421
Brian Haley4b340ae2010-04-23 11:26:09 +0000422/*
423 * Handle IPV6_RECVPATHMTU
424 */
425int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len)
426{
427 struct ipv6_pinfo *np = inet6_sk(sk);
428 struct sk_buff *skb;
429 struct sockaddr_in6 *sin;
430 struct ip6_mtuinfo mtu_info;
431 int err;
432 int copied;
433
434 err = -EAGAIN;
435 skb = xchg(&np->rxpmtu, NULL);
436 if (skb == NULL)
437 goto out;
438
439 copied = skb->len;
440 if (copied > len) {
441 msg->msg_flags |= MSG_TRUNC;
442 copied = len;
443 }
444 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
445 if (err)
446 goto out_free_skb;
447
448 sock_recv_timestamp(msg, sk, skb);
449
450 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
451
452 sin = (struct sockaddr_in6 *)msg->msg_name;
453 if (sin) {
454 sin->sin6_family = AF_INET6;
455 sin->sin6_flowinfo = 0;
456 sin->sin6_port = 0;
457 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
458 ipv6_addr_copy(&sin->sin6_addr, &mtu_info.ip6m_addr.sin6_addr);
459 }
460
461 put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);
462
463 err = copied;
464
465out_free_skb:
466 kfree_skb(skb);
467out:
468 return err;
469}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471
472int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
473{
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;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700482 ipv6_addr_copy(&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) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700492 int tclass = (ntohl(*(__be32 *)ipv6_hdr(skb)) >> 20) & 0xff;
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) {
522 unsigned len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700523 u8 *ptr = nh + off;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900524
525 switch(nexthdr) {
526 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;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700557 ipv6_addr_copy(&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;
582 u16 *ports = (u16 *) skb_transport_header(skb);
583
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;
591 ipv6_addr_copy(&sin6.sin6_addr, &ipv6_hdr(skb)->daddr);
592 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
YOSHIFUJI Hideaki91e19082008-06-04 13:02:49 +0900602int datagram_send_ctl(struct net *net,
603 struct msghdr *msg, struct flowi *fl,
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) {
639 if (fl->oif && src_info->ipi6_ifindex != fl->oif)
640 return -EINVAL;
641 fl->oif = src_info->ipi6_ifindex;
642 }
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();
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900647 if (fl->oif) {
Eric Dumazet536b2e92009-11-02 12:21:06 +0100648 dev = dev_get_by_index_rcu(net, fl->oif);
649 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;
YOSHIFUJI Hideaki91e19082008-06-04 13:02:49 +0900660 if (!ipv6_chk_addr(net, &src_info->ipi6_addr,
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900661 strict ? dev : NULL, 0))
662 err = -EINVAL;
663 else
664 ipv6_addr_copy(&fl->fl6_src, &src_info->ipi6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900666
Eric Dumazet536b2e92009-11-02 12:21:06 +0100667 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900669 if (err)
670 goto exit_f;
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 break;
YOSHIFUJI Hideaki187e3832008-06-04 13:01:37 +0900673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 case IPV6_FLOWINFO:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900676 if (cmsg->cmsg_len < CMSG_LEN(4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 err = -EINVAL;
678 goto exit_f;
679 }
680
681 if (fl->fl6_flowlabel&IPV6_FLOWINFO_MASK) {
Al Viro90bcaf72006-11-08 00:25:17 -0800682 if ((fl->fl6_flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 err = -EINVAL;
684 goto exit_f;
685 }
686 }
Al Viro90bcaf72006-11-08 00:25:17 -0800687 fl->fl6_flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 break;
689
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900690 case IPV6_2292HOPOPTS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 case IPV6_HOPOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900692 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 err = -EINVAL;
694 goto exit_f;
695 }
696
697 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
698 len = ((hdr->hdrlen + 1) << 3);
699 if (cmsg->cmsg_len < CMSG_LEN(len)) {
700 err = -EINVAL;
701 goto exit_f;
702 }
703 if (!capable(CAP_NET_RAW)) {
704 err = -EPERM;
705 goto exit_f;
706 }
707 opt->opt_nflen += len;
708 opt->hopopt = hdr;
709 break;
710
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900711 case IPV6_2292DSTOPTS:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900712 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 err = -EINVAL;
714 goto exit_f;
715 }
716
717 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
718 len = ((hdr->hdrlen + 1) << 3);
719 if (cmsg->cmsg_len < CMSG_LEN(len)) {
720 err = -EINVAL;
721 goto exit_f;
722 }
723 if (!capable(CAP_NET_RAW)) {
724 err = -EPERM;
725 goto exit_f;
726 }
727 if (opt->dst1opt) {
728 err = -EINVAL;
729 goto exit_f;
730 }
731 opt->opt_flen += len;
732 opt->dst1opt = hdr;
733 break;
734
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900735 case IPV6_DSTOPTS:
736 case IPV6_RTHDRDSTOPTS:
737 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
738 err = -EINVAL;
739 goto exit_f;
740 }
741
742 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
743 len = ((hdr->hdrlen + 1) << 3);
744 if (cmsg->cmsg_len < CMSG_LEN(len)) {
745 err = -EINVAL;
746 goto exit_f;
747 }
748 if (!capable(CAP_NET_RAW)) {
749 err = -EPERM;
750 goto exit_f;
751 }
752 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
753 opt->opt_flen += len;
754 opt->dst1opt = hdr;
755 } else {
756 opt->opt_nflen += len;
757 opt->dst0opt = hdr;
758 }
759 break;
760
761 case IPV6_2292RTHDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 case IPV6_RTHDR:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900763 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 err = -EINVAL;
765 goto exit_f;
766 }
767
768 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
769
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700770 switch (rthdr->type) {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700771#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700772 case IPV6_SRCRT_TYPE_2:
Brian Haley6e093d92008-11-12 22:59:21 -0800773 if (rthdr->hdrlen != 2 ||
774 rthdr->segments_left != 1) {
775 err = -EINVAL;
776 goto exit_f;
777 }
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700778 break;
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700779#endif
Masahide NAKAMURA280a9d32006-08-23 19:17:12 -0700780 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 err = -EINVAL;
782 goto exit_f;
783 }
784
785 len = ((rthdr->hdrlen + 1) << 3);
786
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900787 if (cmsg->cmsg_len < CMSG_LEN(len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 err = -EINVAL;
789 goto exit_f;
790 }
791
792 /* segments left must also match */
793 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
794 err = -EINVAL;
795 goto exit_f;
796 }
797
798 opt->opt_nflen += len;
799 opt->srcrt = rthdr;
800
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900801 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
803
804 opt->opt_nflen += dsthdrlen;
805 opt->dst0opt = opt->dst1opt;
806 opt->dst1opt = NULL;
807 opt->opt_flen -= dsthdrlen;
808 }
809
810 break;
811
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900812 case IPV6_2292HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 case IPV6_HOPLIMIT:
814 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
815 err = -EINVAL;
816 goto exit_f;
817 }
818
819 *hlimit = *(int *)CMSG_DATA(cmsg);
Shan Weie8766fc2008-06-10 15:50:55 +0800820 if (*hlimit < -1 || *hlimit > 0xff) {
821 err = -EINVAL;
822 goto exit_f;
823 }
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 break;
826
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900827 case IPV6_TCLASS:
828 {
829 int tc;
830
831 err = -EINVAL;
832 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
833 goto exit_f;
834 }
835
836 tc = *(int *)CMSG_DATA(cmsg);
Remi Denis-Courmontd0ee0112006-09-13 20:08:07 -0700837 if (tc < -1 || tc > 0xff)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900838 goto exit_f;
839
840 err = 0;
841 *tclass = tc;
842
843 break;
844 }
Brian Haley13b52cd2010-04-23 11:26:08 +0000845
846 case IPV6_DONTFRAG:
847 {
848 int df;
849
850 err = -EINVAL;
851 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
852 goto exit_f;
853 }
854
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}