blob: 3c00842b0079240f1788c83bfab346d5879336d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * RAW sockets for IPv6
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 *
8 * Adapted from linux/net/ipv4/raw.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090012 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
21#include <linux/errno.h>
22#include <linux/types.h>
23#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/net.h>
27#include <linux/in6.h>
28#include <linux/netdevice.h>
29#include <linux/if_arp.h>
30#include <linux/icmpv6.h>
31#include <linux/netfilter.h>
32#include <linux/netfilter_ipv6.h>
Herbert Xu3305b802005-12-13 23:16:37 -080033#include <linux/skbuff.h>
David S. Millere2d57762011-02-03 17:59:32 -080034#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include <asm/ioctls.h>
37
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020038#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/ip.h>
40#include <net/sock.h>
41#include <net/snmp.h>
42
43#include <net/ipv6.h>
44#include <net/ndisc.h>
45#include <net/protocol.h>
46#include <net/ip6_route.h>
47#include <net/ip6_checksum.h>
48#include <net/addrconf.h>
49#include <net/transp_v6.h>
50#include <net/udp.h>
51#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070052#include <net/tcp_states.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000053#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -070054#include <net/mip6.h>
55#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090056#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080058#include <net/raw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <net/rawv6.h>
60#include <net/xfrm.h>
61
62#include <linux/proc_fs.h>
63#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040064#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Werner Almesbergerd1c53c82013-08-02 10:51:34 -030066#define ICMPV6_HDRLEN 4 /* ICMPv6 header, RFC 4443 Section 2.1 */
67
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080068static struct raw_hashinfo raw_v6_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070069 .lock = __RW_LOCK_UNLOCKED(raw_v6_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080070};
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Pavel Emelyanovbe185882008-01-14 05:35:31 -080072static struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000073 unsigned short num, const struct in6_addr *loc_addr,
74 const struct in6_addr *rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Eric Dumazeta50feda2012-05-18 18:57:34 +000076 bool is_multicast = ipv6_addr_is_multicast(loc_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Sasha Levinb67bfe02013-02-27 17:06:00 -080078 sk_for_each_from(sk)
Eric Dumazetc720c7e2009-10-15 06:30:45 +000079 if (inet_sk(sk)->inet_num == num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +090081 if (!net_eq(sock_net(sk), net))
Pavel Emelyanovbe185882008-01-14 05:35:31 -080082 continue;
83
Eric Dumazetefe42082013-10-03 15:42:29 -070084 if (!ipv6_addr_any(&sk->sk_v6_daddr) &&
85 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 continue;
87
Andrew McDonald0bd1b592005-08-09 19:44:42 -070088 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
89 continue;
90
Eric Dumazetefe42082013-10-03 15:42:29 -070091 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
92 if (ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 goto found;
94 if (is_multicast &&
95 inet6_mc_check(sk, loc_addr, rmt_addr))
96 goto found;
97 continue;
98 }
99 goto found;
100 }
101 sk = NULL;
102found:
103 return sk;
104}
105
106/*
107 * 0 - deliver
108 * 1 - block
109 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000110static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Werner Almesberger9cc08af2013-08-02 10:51:19 -0300112 struct icmp6hdr _hdr;
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000113 const struct icmp6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300115 /* We require only the four bytes of the ICMPv6 header, not any
116 * additional bytes of message body in "struct icmp6hdr".
117 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000118 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300119 ICMPV6_HDRLEN, &_hdr);
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000120 if (hdr) {
121 const __u32 *data = &raw6_sk(sk)->filter.data[0];
122 unsigned int type = hdr->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000124 return (data[type >> 5] & (1U << (type & 31))) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000126 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Amerigo Wang07a93622012-10-29 16:23:10 +0000129#if IS_ENABLED(CONFIG_IPV6_MIP6)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000130typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700131
Eric Dumazetf2eda472011-01-20 07:37:53 +0000132static mh_filter_t __rcu *mh_filter __read_mostly;
133
134int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700135{
Eric Dumazetcf778b02012-01-12 04:41:32 +0000136 rcu_assign_pointer(mh_filter, filter);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700137 return 0;
138}
139EXPORT_SYMBOL(rawv6_mh_filter_register);
140
Eric Dumazetf2eda472011-01-20 07:37:53 +0000141int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700142{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000143 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700144 synchronize_rcu();
145 return 0;
146}
147EXPORT_SYMBOL(rawv6_mh_filter_unregister);
148
149#endif
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
152 * demultiplex raw sockets.
153 * (should consider queueing the skb in the sock receive_queue
154 * without calling rawv6.c)
155 *
156 * Caller owns SKB so we must make clones.
157 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000158static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000160 const struct in6_addr *saddr;
161 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct sock *sk;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000163 bool delivered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 __u8 hash;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800165 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700167 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 daddr = saddr + 1;
169
David S. Millerf9242b62012-06-19 18:56:21 -0700170 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800172 read_lock(&raw_v6_hashinfo.lock);
173 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (sk == NULL)
176 goto out;
177
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900178 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800179 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700182 int filtered;
183
Eric Dumazeta50feda2012-05-18 18:57:34 +0000184 delivered = true;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700185 switch (nexthdr) {
186 case IPPROTO_ICMPV6:
187 filtered = icmpv6_filter(sk, skb);
188 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700189
Amerigo Wang07a93622012-10-29 16:23:10 +0000190#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700191 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700192 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700193 /* XXX: To validate MH only once for each packet,
194 * this is placed here. It should be after checking
195 * xfrm policy, however it doesn't. The checking xfrm
196 * policy is placed in rawv6_rcv() because it is
197 * required for each socket.
198 */
Eric Dumazetf2eda472011-01-20 07:37:53 +0000199 mh_filter_t *filter;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700200
201 filter = rcu_dereference(mh_filter);
Eric Dumazetf2eda472011-01-20 07:37:53 +0000202 filtered = filter ? (*filter)(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700203 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700204 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700205#endif
206 default:
207 filtered = 0;
208 break;
209 }
210
211 if (filtered < 0)
212 break;
213 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
215
216 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217 if (clone) {
218 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800222 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700223 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800226 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700227 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Eric Dumazeta50feda2012-05-18 18:57:34 +0000230bool raw6_local_deliver(struct sk_buff *skb, int nexthdr)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800231{
232 struct sock *raw_sk;
233
David S. Millerf9242b62012-06-19 18:56:21 -0700234 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (RAW_HTABLE_SIZE - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800235 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
236 raw_sk = NULL;
237
238 return raw_sk != NULL;
239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/* This cleans up af_inet6 a bit. -DaveM */
242static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
243{
244 struct inet_sock *inet = inet_sk(sk);
245 struct ipv6_pinfo *np = inet6_sk(sk);
246 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4ad2006-11-14 20:56:00 -0800247 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int addr_type;
249 int err;
250
251 if (addr_len < SIN6_LEN_RFC2133)
252 return -EINVAL;
253 addr_type = ipv6_addr_type(&addr->sin6_addr);
254
255 /* Raw sockets are IPv6 only */
256 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000257 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 lock_sock(sk);
260
261 err = -EINVAL;
262 if (sk->sk_state != TCP_CLOSE)
263 goto out;
264
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000265 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /* Check if the address belongs to the host. */
267 if (addr_type != IPV6_ADDR_ANY) {
268 struct net_device *dev = NULL;
269
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000270 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (addr_len >= sizeof(struct sockaddr_in6) &&
272 addr->sin6_scope_id) {
273 /* Override any existing binding, if another
274 * one is supplied by user.
275 */
276 sk->sk_bound_dev_if = addr->sin6_scope_id;
277 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Binding to link-local address requires an interface */
280 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000281 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000283 err = -ENODEV;
284 dev = dev_get_by_index_rcu(sock_net(sk),
285 sk->sk_bound_dev_if);
286 if (!dev)
287 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* ipv4 addr of the socket is invalid. Only the
291 * unspecified and mapped address have a v4 equivalent.
292 */
293 v4addr = LOOPBACK4_IPV6;
294 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
295 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900296 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800297 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000298 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000303 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Eric Dumazetefe42082013-10-03 15:42:29 -0700304 sk->sk_v6_rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000306 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000308out_unlock:
309 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310out:
311 release_sock(sk);
312 return err;
313}
314
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800315static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700317 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 struct inet_sock *inet = inet_sk(sk);
320 struct ipv6_pinfo *np = inet6_sk(sk);
321 int err;
322 int harderr;
323
324 /* Report error on raw socket, if:
325 1. User requested recverr.
326 2. Socket is connected (otherwise the error indication
327 is useless without recverr and error is hard.
328 */
329 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
330 return;
331
332 harderr = icmpv6_err_convert(type, code, &err);
David S. Miller81aded22012-06-15 14:54:11 -0700333 if (type == ICMPV6_PKT_TOOBIG) {
334 ip6_sk_update_pmtu(skb, sk, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
David S. Miller81aded22012-06-15 14:54:11 -0700336 }
Duan Jiong8d65b112013-09-20 18:21:25 +0800337 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700338 ip6_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800339 return;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (np->recverr) {
342 u8 *payload = skb->data;
343 if (!inet->hdrincl)
344 payload += offset;
345 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
346 }
347
348 if (np->recverr || harderr) {
349 sk->sk_err = err;
350 sk->sk_error_report(sk);
351 }
352}
353
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800354void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700355 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800356{
357 struct sock *sk;
358 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000359 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800360 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800361
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800362 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800363
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800364 read_lock(&raw_v6_hashinfo.lock);
365 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800366 if (sk != NULL) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900367 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000368 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900369 saddr = &ip6h->saddr;
370 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900371 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800372
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800373 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800374 IP6CB(skb)->iif))) {
375 rawv6_err(sk, skb, NULL, type, code,
376 inner_offset, info);
377 sk = sk_next(sk);
378 }
379 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800380 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800381}
382
Eric Dumazet33d480c2011-08-11 19:30:52 +0000383static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000385 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800386 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800387 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800388 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700389 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000393 skb_dst_drop(skb);
394 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700396 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398
399 return 0;
400}
401
402/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900403 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900405 * just to queue the skb...
406 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 * should call raw_rcv for demultiplexing
408 */
409int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
410{
411 struct inet_sock *inet = inet_sk(sk);
412 struct raw6_sock *rp = raw6_sk(sk);
413
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900414 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800415 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900416 kfree_skb(skb);
417 return NET_RX_DROP;
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 if (!rp->checksum)
421 skb->ip_summed = CHECKSUM_UNNECESSARY;
422
Patrick McHardy84fa7932006-08-29 16:44:56 -0700423 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700424 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300425 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700426 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
427 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000428 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
Herbert Xu60476372007-04-09 11:59:39 -0700431 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700432 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
433 &ipv6_hdr(skb)->daddr,
434 skb->len,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000435 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800438 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800439 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700441 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
445 rawv6_rcv_skb(sk, skb);
446 return 0;
447}
448
449
450/*
451 * This should be easy, if there is something there
452 * we return it, otherwise we block.
453 */
454
455static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
456 struct msghdr *msg, size_t len,
457 int noblock, int flags, int *addr_len)
458{
459 struct ipv6_pinfo *np = inet6_sk(sk);
460 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
461 struct sk_buff *skb;
462 size_t copied;
463 int err;
464
465 if (flags & MSG_OOB)
466 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900467
468 if (addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 *addr_len=sizeof(*sin6);
470
471 if (flags & MSG_ERRQUEUE)
472 return ipv6_recv_error(sk, msg, len);
473
Brian Haley4b340ae2010-04-23 11:26:09 +0000474 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
475 return ipv6_recv_rxpmtu(sk, msg, len);
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 skb = skb_recv_datagram(sk, flags, noblock, &err);
478 if (!skb)
479 goto out;
480
481 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900482 if (copied > len) {
483 copied = len;
484 msg->msg_flags |= MSG_TRUNC;
485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Herbert Xu60476372007-04-09 11:59:39 -0700487 if (skb_csum_unnecessary(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
489 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800490 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 goto csum_copy_err;
492 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
493 } else {
494 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
495 if (err == -EINVAL)
496 goto csum_copy_err;
497 }
498 if (err)
499 goto out_free;
500
501 /* Copy the address. */
502 if (sin6) {
503 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700504 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000505 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 sin6->sin6_flowinfo = 0;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000507 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
508 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
Neil Horman3b885782009-10-12 13:26:31 -0700511 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000514 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 err = copied;
517 if (flags & MSG_TRUNC)
518 err = skb->len;
519
520out_free:
521 skb_free_datagram(sk, skb);
522out:
523 return err;
524
525csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800526 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* Error for blocking case is chosen to masquerade
529 as some normal condition.
530 */
531 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
David S. Miller4c9483b2011-03-12 16:22:43 -0500535static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700536 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 struct sk_buff *skb;
539 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700540 int offset;
541 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700542 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800543 __wsum tmp_csum;
544 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 if (!rp->checksum)
547 goto send;
548
549 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
550 goto out;
551
Herbert Xu357b40a2005-04-19 22:30:14 -0700552 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000553 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700554 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700556 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 goto out;
558 }
559
560 /* should be check HW csum miyazawa */
561 if (skb_queue_len(&sk->sk_write_queue) == 1) {
562 /*
563 * Only one fragment on the socket.
564 */
565 tmp_csum = skb->csum;
566 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700567 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 tmp_csum = 0;
569
570 skb_queue_walk(&sk->sk_write_queue, skb) {
571 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700572
573 if (csum_skb)
574 continue;
575
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700576 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700577 if (offset >= len) {
578 offset -= len;
579 continue;
580 }
581
582 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700584
585 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700588 offset += skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700589 if (skb_copy_bits(skb, offset, &csum, 2))
590 BUG();
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700593 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800594 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
David S. Miller4c9483b2011-03-12 16:22:43 -0500596 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
597 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
David S. Miller4c9483b2011-03-12 16:22:43 -0500599 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800600 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700601
Herbert Xu357b40a2005-04-19 22:30:14 -0700602 if (skb_store_bits(skb, offset, &csum, 2))
603 BUG();
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605send:
606 err = ip6_push_pending_frames(sk);
607out:
608 return err;
609}
610
611static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500612 struct flowi6 *fl6, struct dst_entry **dstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 unsigned int flags)
614{
Herbert Xu3320da82005-04-19 22:32:22 -0700615 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct ipv6hdr *iph;
617 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000619 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000620 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
621 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Changli Gaod8d1f302010-06-10 23:31:35 -0700623 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500624 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return -EMSGSIZE;
626 }
627 if (flags&MSG_PROBE)
628 goto out;
629
Johannes Bergf5184d22008-05-12 20:48:31 -0700630 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000631 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700632 flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (skb == NULL)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900634 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000635 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200637 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800639 skb->mark = sk->sk_mark;
Changli Gaod8d1f302010-06-10 23:31:35 -0700640 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000641 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300643 skb_put(skb, length);
644 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700645 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 skb->ip_summed = CHECKSUM_NONE;
648
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700649 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 err = memcpy_fromiovecend((void *)iph, from, 0, length);
651 if (err)
652 goto error_fault;
653
Neil Hormanedf391f2009-04-27 02:45:02 -0700654 IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100655 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700656 rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700658 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (err)
660 goto error;
661out:
662 return 0;
663
664error_fault:
665 err = -EFAULT;
666 kfree_skb(skb);
667error:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700668 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700669 if (err == -ENOBUFS && !np->recverr)
670 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900671 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
David S. Miller4c9483b2011-03-12 16:22:43 -0500674static int rawv6_probe_proto_opt(struct flowi6 *fl6, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 struct iovec *iov;
677 u8 __user *type = NULL;
678 u8 __user *code = NULL;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700679 u8 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 int probed = 0;
681 int i;
682
683 if (!msg->msg_iov)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 for (i = 0; i < msg->msg_iovlen; i++) {
687 iov = &msg->msg_iov[i];
688 if (!iov)
689 continue;
690
David S. Miller4c9483b2011-03-12 16:22:43 -0500691 switch (fl6->flowi6_proto) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 case IPPROTO_ICMPV6:
693 /* check if one-byte field is readable or not. */
694 if (iov->iov_base && iov->iov_len < 1)
695 break;
696
697 if (!type) {
698 type = iov->iov_base;
699 /* check if code field is readable or not. */
700 if (iov->iov_len > 1)
701 code = type + 1;
702 } else if (!code)
703 code = iov->iov_base;
704
705 if (type && code) {
David S. Miller1958b852011-03-12 16:36:19 -0500706 if (get_user(fl6->fl6_icmp_type, type) ||
707 get_user(fl6->fl6_icmp_code, code))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800708 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 probed = 1;
710 }
711 break;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700712 case IPPROTO_MH:
713 if (iov->iov_base && iov->iov_len < 1)
714 break;
715 /* check if type field is readable or not. */
716 if (iov->iov_len > 2 - len) {
717 u8 __user *p = iov->iov_base;
David S. Miller1958b852011-03-12 16:36:19 -0500718 if (get_user(fl6->fl6_mh_type, &p[2 - len]))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800719 return -EFAULT;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700720 probed = 1;
721 } else
722 len += iov->iov_len;
723
724 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 default:
726 probed = 1;
727 break;
728 }
729 if (probed)
730 break;
731 }
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800732 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
736 struct msghdr *msg, size_t len)
737{
738 struct ipv6_txoptions opt_space;
739 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000740 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct inet_sock *inet = inet_sk(sk);
742 struct ipv6_pinfo *np = inet6_sk(sk);
743 struct raw6_sock *rp = raw6_sk(sk);
744 struct ipv6_txoptions *opt = NULL;
745 struct ip6_flowlabel *flowlabel = NULL;
746 struct dst_entry *dst = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500747 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int addr_len = msg->msg_namelen;
749 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900750 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +0000751 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 u16 proto;
753 int err;
754
755 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700756 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700758 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return -EMSGSIZE;
760
761 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900762 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return -EOPNOTSUPP;
764
765 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900766 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500768 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
David S. Miller4c9483b2011-03-12 16:22:43 -0500770 fl6.flowi6_mark = sk->sk_mark;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900773 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return -EINVAL;
775
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900776 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000777 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 /* port is the proto value [0..255] carried in nexthdr */
780 proto = ntohs(sin6->sin6_port);
781
782 if (!proto)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000783 proto = inet->inet_num;
784 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000785 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000788 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 daddr = &sin6->sin6_addr;
791 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500792 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
793 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
794 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (flowlabel == NULL)
796 return -EINVAL;
797 daddr = &flowlabel->dst;
798 }
799 }
800
801 /*
802 * Otherwise it will be difficult to maintain
803 * sk->sk_dst_cache.
804 */
805 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700806 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
807 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 if (addr_len >= sizeof(struct sockaddr_in6) &&
810 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000811 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500812 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900814 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900816
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000817 proto = inet->inet_num;
Eric Dumazetefe42082013-10-03 15:42:29 -0700818 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500819 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
David S. Miller4c9483b2011-03-12 16:22:43 -0500822 if (fl6.flowi6_oif == 0)
823 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (msg->msg_controllen) {
826 opt = &opt_space;
827 memset(opt, 0, sizeof(struct ipv6_txoptions));
828 opt->tot_len = sizeof(struct ipv6_txoptions);
829
Tom Parkin73df66f2013-01-31 01:02:24 +0000830 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
831 &hlimit, &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (err < 0) {
833 fl6_sock_release(flowlabel);
834 return err;
835 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500836 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
837 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (flowlabel == NULL)
839 return -EINVAL;
840 }
841 if (!(opt->opt_nflen|opt->opt_flen))
842 opt = NULL;
843 }
844 if (opt == NULL)
845 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900846 if (flowlabel)
847 opt = fl6_merge_options(&opt_space, flowlabel, opt);
848 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
David S. Miller4c9483b2011-03-12 16:22:43 -0500850 fl6.flowi6_proto = proto;
851 err = rawv6_probe_proto_opt(&fl6, msg);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800852 if (err)
853 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900854
Brian Haley876c7f42008-04-11 00:38:24 -0400855 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000856 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400857 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500858 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
859 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000860 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
David S. Miller4c9483b2011-03-12 16:22:43 -0500862 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
David S. Miller4c9483b2011-03-12 16:22:43 -0500864 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
865 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000866 else if (!fl6.flowi6_oif)
867 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500868 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
David S. Miller4c9483b2011-03-12 16:22:43 -0500870 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800871 if (IS_ERR(dst)) {
872 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (hlimit < 0) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500876 if (ipv6_addr_is_multicast(&fl6.daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 hlimit = np->mcast_hops;
878 else
879 hlimit = np->hop_limit;
880 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400881 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
Gerrit Renkere651f032009-08-09 08:12:48 +0000884 if (tclass < 0)
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700885 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900886
Brian Haley13b52cd2010-04-23 11:26:08 +0000887 if (dontfrag < 0)
888 dontfrag = np->dontfrag;
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (msg->msg_flags&MSG_CONFIRM)
891 goto do_confirm;
892
893back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000894 if (inet->hdrincl)
David S. Miller4c9483b2011-03-12 16:22:43 -0500895 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl6, &dst, msg->msg_flags);
Eric Dumazet1789a642010-06-03 22:23:57 +0000896 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900898 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
David S. Miller4c9483b2011-03-12 16:22:43 -0500899 len, 0, hlimit, tclass, opt, &fl6, (struct rt6_info*)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +0000900 msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 if (err)
903 ip6_flush_pending_frames(sk);
904 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500905 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700906 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800909 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900910out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 fl6_sock_release(flowlabel);
912 return err<0?err:len;
913do_confirm:
914 dst_confirm(dst);
915 if (!(msg->msg_flags & MSG_PROBE) || len)
916 goto back_from_confirm;
917 err = 0;
918 goto done;
919}
920
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900921static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 char __user *optval, int optlen)
923{
924 switch (optname) {
925 case ICMPV6_FILTER:
926 if (optlen > sizeof(struct icmp6_filter))
927 optlen = sizeof(struct icmp6_filter);
928 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
929 return -EFAULT;
930 return 0;
931 default:
932 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 return 0;
936}
937
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900938static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 char __user *optval, int __user *optlen)
940{
941 int len;
942
943 switch (optname) {
944 case ICMPV6_FILTER:
945 if (get_user(len, optlen))
946 return -EFAULT;
947 if (len < 0)
948 return -EINVAL;
949 if (len > sizeof(struct icmp6_filter))
950 len = sizeof(struct icmp6_filter);
951 if (put_user(len, optlen))
952 return -EFAULT;
953 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
954 return -EFAULT;
955 return 0;
956 default:
957 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 return 0;
961}
962
963
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800964static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700965 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 struct raw6_sock *rp = raw6_sk(sk);
968 int val;
969
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900970 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return -EFAULT;
972
973 switch (optname) {
Joe Perches207ec0a2011-07-01 09:43:08 +0000974 case IPV6_CHECKSUM:
975 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
976 level == IPPROTO_IPV6) {
977 /*
978 * RFC3542 tells that IPV6_CHECKSUM socket
979 * option in the IPPROTO_IPV6 level is not
980 * allowed on ICMPv6 sockets.
981 * If you want to set it, use IPPROTO_RAW
982 * level IPV6_CHECKSUM socket option
983 * (Linux extension).
984 */
985 return -EINVAL;
986 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -0700987
Joe Perches207ec0a2011-07-01 09:43:08 +0000988 /* You may get strange result with a positive odd offset;
989 RFC2292bis agrees with me. */
990 if (val > 0 && (val&1))
991 return -EINVAL;
992 if (val < 0) {
993 rp->checksum = 0;
994 } else {
995 rp->checksum = 1;
996 rp->offset = val;
997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Joe Perches207ec0a2011-07-01 09:43:08 +0000999 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Joe Perches207ec0a2011-07-01 09:43:08 +00001001 default:
1002 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004}
1005
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001006static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001007 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Joe Perches207ec0a2011-07-01 09:43:08 +00001009 switch (level) {
1010 case SOL_RAW:
1011 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Joe Perches207ec0a2011-07-01 09:43:08 +00001013 case SOL_ICMPV6:
1014 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1015 return -EOPNOTSUPP;
1016 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1017 case SOL_IPV6:
1018 if (optname == IPV6_CHECKSUM)
1019 break;
1020 default:
1021 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001022 }
1023
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001024 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1025}
1026
1027#ifdef CONFIG_COMPAT
1028static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001029 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001030{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001031 switch (level) {
1032 case SOL_RAW:
1033 break;
1034 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001035 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001036 return -EOPNOTSUPP;
1037 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1038 case SOL_IPV6:
1039 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001040 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001041 default:
1042 return compat_ipv6_setsockopt(sk, level, optname,
1043 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001044 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001045 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1046}
1047#endif
1048
1049static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1050 char __user *optval, int __user *optlen)
1051{
1052 struct raw6_sock *rp = raw6_sk(sk);
1053 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 if (get_user(len,optlen))
1056 return -EFAULT;
1057
1058 switch (optname) {
1059 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001060 /*
1061 * We allow getsockopt() for IPPROTO_IPV6-level
1062 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1063 * since RFC3542 is silent about it.
1064 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (rp->checksum == 0)
1066 val = -1;
1067 else
1068 val = rp->offset;
1069 break;
1070
1071 default:
1072 return -ENOPROTOOPT;
1073 }
1074
1075 len = min_t(unsigned int, sizeof(int), len);
1076
1077 if (put_user(len, optlen))
1078 return -EFAULT;
1079 if (copy_to_user(optval,&val,len))
1080 return -EFAULT;
1081 return 0;
1082}
1083
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001084static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1085 char __user *optval, int __user *optlen)
1086{
Joe Perches207ec0a2011-07-01 09:43:08 +00001087 switch (level) {
1088 case SOL_RAW:
1089 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001090
Joe Perches207ec0a2011-07-01 09:43:08 +00001091 case SOL_ICMPV6:
1092 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1093 return -EOPNOTSUPP;
1094 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1095 case SOL_IPV6:
1096 if (optname == IPV6_CHECKSUM)
1097 break;
1098 default:
1099 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001100 }
1101
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001102 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1103}
1104
1105#ifdef CONFIG_COMPAT
1106static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001107 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001108{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001109 switch (level) {
1110 case SOL_RAW:
1111 break;
1112 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001113 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001114 return -EOPNOTSUPP;
1115 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1116 case SOL_IPV6:
1117 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001118 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001119 default:
1120 return compat_ipv6_getsockopt(sk, level, optname,
1121 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001122 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001123 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1124}
1125#endif
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1128{
Joe Perches207ec0a2011-07-01 09:43:08 +00001129 switch (cmd) {
1130 case SIOCOUTQ: {
1131 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001132
Joe Perches207ec0a2011-07-01 09:43:08 +00001133 return put_user(amount, (int __user *)arg);
1134 }
1135 case SIOCINQ: {
1136 struct sk_buff *skb;
1137 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Joe Perches207ec0a2011-07-01 09:43:08 +00001139 spin_lock_bh(&sk->sk_receive_queue.lock);
1140 skb = skb_peek(&sk->sk_receive_queue);
1141 if (skb != NULL)
Simon Horman29a3cad2013-05-28 20:34:26 +00001142 amount = skb_tail_pointer(skb) -
1143 skb_transport_header(skb);
Joe Perches207ec0a2011-07-01 09:43:08 +00001144 spin_unlock_bh(&sk->sk_receive_queue.lock);
1145 return put_user(amount, (int __user *)arg);
1146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Joe Perches207ec0a2011-07-01 09:43:08 +00001148 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001149#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001150 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001151#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001152 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155}
1156
David S. Millere2d57762011-02-03 17:59:32 -08001157#ifdef CONFIG_COMPAT
1158static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1159{
1160 switch (cmd) {
1161 case SIOCOUTQ:
1162 case SIOCINQ:
1163 return -ENOIOCTLCMD;
1164 default:
1165#ifdef CONFIG_IPV6_MROUTE
1166 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1167#else
1168 return -ENOIOCTLCMD;
1169#endif
1170 }
1171}
1172#endif
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174static void rawv6_close(struct sock *sk, long timeout)
1175{
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001176 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001177 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001178 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 sk_common_release(sk);
1180}
1181
Brian Haley7d06b2e2008-06-14 17:04:49 -07001182static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001183{
1184 lock_sock(sk);
1185 ip6_flush_pending_frames(sk);
1186 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001187
Brian Haley7d06b2e2008-06-14 17:04:49 -07001188 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001189}
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191static int rawv6_init_sk(struct sock *sk)
1192{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001193 struct raw6_sock *rp = raw6_sk(sk);
1194
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001195 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001196 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 rp->checksum = 1;
1198 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001199 break;
1200 case IPPROTO_MH:
1201 rp->checksum = 1;
1202 rp->offset = 4;
1203 break;
1204 default:
1205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001211 .name = "RAWv6",
1212 .owner = THIS_MODULE,
1213 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001214 .destroy = raw6_destroy,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001215 .connect = ip6_datagram_connect,
1216 .disconnect = udp_disconnect,
1217 .ioctl = rawv6_ioctl,
1218 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001219 .setsockopt = rawv6_setsockopt,
1220 .getsockopt = rawv6_getsockopt,
1221 .sendmsg = rawv6_sendmsg,
1222 .recvmsg = rawv6_recvmsg,
1223 .bind = rawv6_bind,
1224 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001225 .hash = raw_hash_sk,
1226 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001227 .obj_size = sizeof(struct raw6_sock),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001228 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001229#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001230 .compat_setsockopt = compat_rawv6_setsockopt,
1231 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001232 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001233#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234};
1235
1236#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static int raw6_seq_show(struct seq_file *seq, void *v)
1238{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001239 if (v == SEQ_START_TOKEN) {
1240 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1241 } else {
1242 struct sock *sp = v;
1243 __u16 srcp = inet_sk(sp)->inet_num;
1244 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1245 raw_seq_private(seq)->bucket);
1246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return 0;
1248}
1249
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001250static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001251 .start = raw_seq_start,
1252 .next = raw_seq_next,
1253 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 .show = raw6_seq_show,
1255};
1256
1257static int raw6_seq_open(struct inode *inode, struct file *file)
1258{
Denis V. Lunev3046d762008-01-31 03:48:55 -08001259 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
Arjan van de Ven9a321442007-02-12 00:55:35 -08001262static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 .owner = THIS_MODULE,
1264 .open = raw6_seq_open,
1265 .read = seq_read,
1266 .llseek = seq_lseek,
Pavel Emelyanovf51d5992008-01-14 05:35:57 -08001267 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268};
1269
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001270static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001271{
Gao fengd4beaa62013-02-18 01:34:54 +00001272 if (!proc_create("raw6", S_IRUGO, net->proc_net, &raw6_seq_fops))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001273 return -ENOMEM;
1274
1275 return 0;
1276}
1277
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001278static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001279{
Gao fengece31ff2013-02-18 01:34:56 +00001280 remove_proc_entry("raw6", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001281}
1282
1283static struct pernet_operations raw6_net_ops = {
1284 .init = raw6_init_net,
1285 .exit = raw6_exit_net,
1286};
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288int __init raw6_proc_init(void)
1289{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001290 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
1293void raw6_proc_exit(void)
1294{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001295 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001298
1299/* Same as inet6_dgram_ops, sans udp_poll. */
1300static const struct proto_ops inet6_sockraw_ops = {
1301 .family = PF_INET6,
1302 .owner = THIS_MODULE,
1303 .release = inet6_release,
1304 .bind = inet6_bind,
1305 .connect = inet_dgram_connect, /* ok */
1306 .socketpair = sock_no_socketpair, /* a do nothing */
1307 .accept = sock_no_accept, /* a do nothing */
1308 .getname = inet6_getname,
1309 .poll = datagram_poll, /* ok */
1310 .ioctl = inet6_ioctl, /* must change */
1311 .listen = sock_no_listen, /* ok */
1312 .shutdown = inet_shutdown, /* ok */
1313 .setsockopt = sock_common_setsockopt, /* ok */
1314 .getsockopt = sock_common_getsockopt, /* ok */
1315 .sendmsg = inet_sendmsg, /* ok */
1316 .recvmsg = sock_common_recvmsg, /* ok */
1317 .mmap = sock_no_mmap,
1318 .sendpage = sock_no_sendpage,
1319#ifdef CONFIG_COMPAT
1320 .compat_setsockopt = compat_sock_common_setsockopt,
1321 .compat_getsockopt = compat_sock_common_getsockopt,
1322#endif
1323};
1324
1325static struct inet_protosw rawv6_protosw = {
1326 .type = SOCK_RAW,
1327 .protocol = IPPROTO_IP, /* wild card */
1328 .prot = &rawv6_prot,
1329 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001330 .no_check = UDP_CSUM_DEFAULT,
1331 .flags = INET_PROTOSW_REUSE,
1332};
1333
1334int __init rawv6_init(void)
1335{
1336 int ret;
1337
1338 ret = inet6_register_protosw(&rawv6_protosw);
1339 if (ret)
1340 goto out;
1341out:
1342 return ret;
1343}
1344
Daniel Lezcano09f77092007-12-13 05:34:58 -08001345void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001346{
1347 inet6_unregister_protosw(&rawv6_protosw);
1348}