blob: 71ffa526cb23c8983d8d8f290a866d6ad846805e [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>
Alex W Slater29778be2015-02-19 21:58:07 +000035#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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
Ian Morris63159f22015-03-29 14:00:04 +0100175 if (!sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 goto out;
177
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900178 net = dev_net(skb->dev);
Duan Jiong43304872014-08-01 09:52:58 +0800179 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, inet6_iif(skb));
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,
Duan Jiong43304872014-08-01 09:52:58 +0800223 inet6_iif(skb));
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 Viroe69a4adc2006-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;
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +0100253
254 if (addr->sin6_family != AF_INET6)
255 return -EINVAL;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 addr_type = ipv6_addr_type(&addr->sin6_addr);
258
259 /* Raw sockets are IPv6 only */
260 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000261 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 lock_sock(sk);
264
265 err = -EINVAL;
266 if (sk->sk_state != TCP_CLOSE)
267 goto out;
268
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000269 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* Check if the address belongs to the host. */
271 if (addr_type != IPV6_ADDR_ANY) {
272 struct net_device *dev = NULL;
273
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000274 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (addr_len >= sizeof(struct sockaddr_in6) &&
276 addr->sin6_scope_id) {
277 /* Override any existing binding, if another
278 * one is supplied by user.
279 */
280 sk->sk_bound_dev_if = addr->sin6_scope_id;
281 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /* Binding to link-local address requires an interface */
284 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000285 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000287 err = -ENODEV;
288 dev = dev_get_by_index_rcu(sock_net(sk),
289 sk->sk_bound_dev_if);
290 if (!dev)
291 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /* ipv4 addr of the socket is invalid. Only the
295 * unspecified and mapped address have a v4 equivalent.
296 */
297 v4addr = LOOPBACK4_IPV6;
Tom Herbert35a256f2015-07-08 16:58:22 -0700298 if (!(addr_type & IPV6_ADDR_MULTICAST) &&
299 !sock_net(sk)->ipv6.sysctl.ip_nonlocal_bind) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900301 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800302 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000303 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000308 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Eric Dumazetefe42082013-10-03 15:42:29 -0700309 sk->sk_v6_rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000311 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000313out_unlock:
314 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315out:
316 release_sock(sk);
317 return err;
318}
319
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800320static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700322 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct inet_sock *inet = inet_sk(sk);
325 struct ipv6_pinfo *np = inet6_sk(sk);
326 int err;
327 int harderr;
328
329 /* Report error on raw socket, if:
330 1. User requested recverr.
331 2. Socket is connected (otherwise the error indication
332 is useless without recverr and error is hard.
333 */
334 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
335 return;
336
337 harderr = icmpv6_err_convert(type, code, &err);
David S. Miller81aded22012-06-15 14:54:11 -0700338 if (type == ICMPV6_PKT_TOOBIG) {
339 ip6_sk_update_pmtu(skb, sk, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
David S. Miller81aded22012-06-15 14:54:11 -0700341 }
Duan Jiong8d65b112013-09-20 18:21:25 +0800342 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700343 ip6_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800344 return;
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (np->recverr) {
347 u8 *payload = skb->data;
348 if (!inet->hdrincl)
349 payload += offset;
350 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
351 }
352
353 if (np->recverr || harderr) {
354 sk->sk_err = err;
355 sk->sk_error_report(sk);
356 }
357}
358
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800359void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700360 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800361{
362 struct sock *sk;
363 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000364 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800365 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800366
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800367 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800368
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800369 read_lock(&raw_v6_hashinfo.lock);
370 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Ian Morris53b24b82015-03-29 14:00:05 +0100371 if (sk) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900372 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000373 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900374 saddr = &ip6h->saddr;
375 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900376 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800377
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800378 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Duan Jiong43304872014-08-01 09:52:58 +0800379 inet6_iif(skb)))) {
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800380 rawv6_err(sk, skb, NULL, type, code,
381 inner_offset, info);
382 sk = sk_next(sk);
383 }
384 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800385 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800386}
387
Eric Dumazet33d480c2011-08-11 19:30:52 +0000388static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000390 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800391 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800392 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800393 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700394 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396
397 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000398 skb_dst_drop(skb);
399 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700401 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 return 0;
405}
406
407/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900408 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900410 * just to queue the skb...
411 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * should call raw_rcv for demultiplexing
413 */
414int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
415{
416 struct inet_sock *inet = inet_sk(sk);
417 struct raw6_sock *rp = raw6_sk(sk);
418
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900419 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800420 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900421 kfree_skb(skb);
422 return NET_RX_DROP;
423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 if (!rp->checksum)
426 skb->ip_summed = CHECKSUM_UNNECESSARY;
427
Patrick McHardy84fa7932006-08-29 16:44:56 -0700428 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700429 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300430 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700431 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
432 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000433 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Herbert Xu60476372007-04-09 11:59:39 -0700436 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700437 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
438 &ipv6_hdr(skb)->daddr,
439 skb->len,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000440 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800443 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800444 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700446 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
450 rawv6_rcv_skb(sk, skb);
451 return 0;
452}
453
454
455/*
456 * This should be easy, if there is something there
457 * we return it, otherwise we block.
458 */
459
Ying Xue1b784142015-03-02 15:37:48 +0800460static int rawv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
461 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100464 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct sk_buff *skb;
466 size_t copied;
467 int err;
468
469 if (flags & MSG_OOB)
470 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100473 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Brian Haley4b340ae2010-04-23 11:26:09 +0000475 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100476 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 skb = skb_recv_datagram(sk, flags, noblock, &err);
479 if (!skb)
480 goto out;
481
482 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900483 if (copied > len) {
484 copied = len;
485 msg->msg_flags |= MSG_TRUNC;
486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Herbert Xu60476372007-04-09 11:59:39 -0700488 if (skb_csum_unnecessary(skb)) {
David S. Miller51f3d022014-11-05 16:46:40 -0500489 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800491 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto csum_copy_err;
David S. Miller51f3d022014-11-05 16:46:40 -0500493 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
Al Viro227158d2014-04-06 18:47:38 -0400495 err = skb_copy_and_csum_datagram_msg(skb, 0, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (err == -EINVAL)
497 goto csum_copy_err;
498 }
499 if (err)
500 goto out_free;
501
502 /* Copy the address. */
503 if (sin6) {
504 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700505 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000506 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sin6->sin6_flowinfo = 0;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000508 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800509 inet6_iif(skb));
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100510 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
Neil Horman3b885782009-10-12 13:26:31 -0700513 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000516 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 err = copied;
519 if (flags & MSG_TRUNC)
520 err = skb->len;
521
522out_free:
523 skb_free_datagram(sk, skb);
524out:
525 return err;
526
527csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800528 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 /* Error for blocking case is chosen to masquerade
531 as some normal condition.
532 */
533 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800534 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
David S. Miller4c9483b2011-03-12 16:22:43 -0500537static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700538 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 struct sk_buff *skb;
541 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700542 int offset;
543 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700544 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800545 __wsum tmp_csum;
546 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 if (!rp->checksum)
549 goto send;
550
Fabian Frederick43728fa2014-10-29 12:57:51 +0100551 skb = skb_peek(&sk->sk_write_queue);
552 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto out;
554
Herbert Xu357b40a2005-04-19 22:30:14 -0700555 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000556 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700557 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700559 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 goto out;
561 }
562
563 /* should be check HW csum miyazawa */
564 if (skb_queue_len(&sk->sk_write_queue) == 1) {
565 /*
566 * Only one fragment on the socket.
567 */
568 tmp_csum = skb->csum;
569 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700570 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 tmp_csum = 0;
572
573 skb_queue_walk(&sk->sk_write_queue, skb) {
574 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700575
576 if (csum_skb)
577 continue;
578
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700579 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700580 if (offset >= len) {
581 offset -= len;
582 continue;
583 }
584
585 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700587
588 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700591 offset += skb_transport_offset(skb);
Dave Jonesee99e2b2016-12-22 11:16:22 -0500592 err = skb_copy_bits(skb, offset, &csum, 2);
593 if (err < 0) {
594 ip6_flush_pending_frames(sk);
595 goto out;
596 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700599 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800600 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
David S. Miller4c9483b2011-03-12 16:22:43 -0500602 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
603 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
David S. Miller4c9483b2011-03-12 16:22:43 -0500605 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800606 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700607
Himangi Saraogi8242fc32014-07-12 01:55:38 +0530608 BUG_ON(skb_store_bits(skb, offset, &csum, 2));
Herbert Xu357b40a2005-04-19 22:30:14 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610send:
611 err = ip6_push_pending_frames(sk);
612out:
613 return err;
614}
615
Al Viroc3c1a7d2014-11-27 19:36:28 -0500616static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500617 struct flowi6 *fl6, struct dst_entry **dstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 unsigned int flags)
619{
Herbert Xu3320da82005-04-19 22:32:22 -0700620 struct ipv6_pinfo *np = inet6_sk(sk);
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500621 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 struct ipv6hdr *iph;
623 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000625 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000626 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
627 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Changli Gaod8d1f302010-06-10 23:31:35 -0700629 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500630 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -EMSGSIZE;
632 }
Alexander Potapenkof1906532017-05-03 17:06:58 +0200633 if (length < sizeof(struct ipv6hdr))
634 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (flags&MSG_PROBE)
636 goto out;
637
Johannes Bergf5184d22008-05-12 20:48:31 -0700638 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000639 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700640 flags & MSG_DONTWAIT, &err);
Ian Morris63159f22015-03-29 14:00:04 +0100641 if (!skb)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900642 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000643 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200645 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800647 skb->mark = sk->sk_mark;
Changli Gaod8d1f302010-06-10 23:31:35 -0700648 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000649 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300651 skb_put(skb, length);
652 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700653 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 skb->ip_summed = CHECKSUM_NONE;
656
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700657 skb->transport_header = skb->network_header;
Al Viro21226ab2014-11-28 15:48:29 -0500658 err = memcpy_from_msg(iph, msg, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (err)
660 goto error_fault;
661
David Aherna8e3e1a2016-09-10 12:09:53 -0700662 /* if egress device is enslaved to an L3 master device pass the
663 * skb to its handler for processing
664 */
665 skb = l3mdev_ip6_out(sk, skb);
666 if (unlikely(!skb))
667 return 0;
668
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500669 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500670 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500671 NULL, rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700673 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (err)
675 goto error;
676out:
677 return 0;
678
679error_fault:
680 err = -EFAULT;
681 kfree_skb(skb);
682error:
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500683 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700684 if (err == -ENOBUFS && !np->recverr)
685 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900686 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Al Viro19e3c662014-11-24 12:10:46 -0500689struct raw6_frag_vec {
690 struct msghdr *msg;
691 int hlen;
692 char c[4];
693};
694
695static int rawv6_probe_proto_opt(struct raw6_frag_vec *rfv, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Al Viro19e3c662014-11-24 12:10:46 -0500697 int err = 0;
698 switch (fl6->flowi6_proto) {
699 case IPPROTO_ICMPV6:
700 rfv->hlen = 2;
701 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
702 if (!err) {
703 fl6->fl6_icmp_type = rfv->c[0];
704 fl6->fl6_icmp_code = rfv->c[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Al Viro19e3c662014-11-24 12:10:46 -0500706 break;
707 case IPPROTO_MH:
708 rfv->hlen = 4;
709 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
710 if (!err)
711 fl6->fl6_mh_type = rfv->c[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
Al Viro19e3c662014-11-24 12:10:46 -0500713 return err;
714}
715
716static int raw6_getfrag(void *from, char *to, int offset, int len, int odd,
717 struct sk_buff *skb)
718{
719 struct raw6_frag_vec *rfv = from;
720
721 if (offset < rfv->hlen) {
722 int copy = min(rfv->hlen - offset, len);
723
724 if (skb->ip_summed == CHECKSUM_PARTIAL)
725 memcpy(to, rfv->c + offset, copy);
726 else
727 skb->csum = csum_block_add(
728 skb->csum,
729 csum_partial_copy_nocheck(rfv->c + offset,
730 to, copy, 0),
731 odd);
732
733 odd = 0;
734 offset += copy;
735 to += copy;
736 len -= copy;
737
738 if (!len)
739 return 0;
740 }
741
742 offset -= rfv->hlen;
743
Al Virof69e6d12014-11-24 13:23:40 -0500744 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Ying Xue1b784142015-03-02 15:37:48 +0800747static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800749 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct ipv6_txoptions opt_space;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100751 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000752 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct inet_sock *inet = inet_sk(sk);
754 struct ipv6_pinfo *np = inet6_sk(sk);
755 struct raw6_sock *rp = raw6_sk(sk);
756 struct ipv6_txoptions *opt = NULL;
757 struct ip6_flowlabel *flowlabel = NULL;
758 struct dst_entry *dst = NULL;
Al Viro19e3c662014-11-24 12:10:46 -0500759 struct raw6_frag_vec rfv;
David S. Miller4c9483b2011-03-12 16:22:43 -0500760 struct flowi6 fl6;
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -0400761 struct sockcm_cookie sockc;
Wei Wang26879da2016-05-02 21:40:07 -0700762 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 int addr_len = msg->msg_namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 u16 proto;
765 int err;
766
767 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700768 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700770 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return -EMSGSIZE;
772
773 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900774 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return -EOPNOTSUPP;
776
777 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900778 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500780 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
David S. Miller4c9483b2011-03-12 16:22:43 -0500782 fl6.flowi6_mark = sk->sk_mark;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800783
Wei Wang26879da2016-05-02 21:40:07 -0700784 ipc6.hlimit = -1;
785 ipc6.tclass = -1;
786 ipc6.dontfrag = -1;
787 ipc6.opt = NULL;
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900790 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return -EINVAL;
792
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900793 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000794 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 /* port is the proto value [0..255] carried in nexthdr */
797 proto = ntohs(sin6->sin6_port);
798
799 if (!proto)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000800 proto = inet->inet_num;
801 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000802 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000805 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 daddr = &sin6->sin6_addr;
808 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500809 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
810 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
811 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +0100812 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 }
816
817 /*
818 * Otherwise it will be difficult to maintain
819 * sk->sk_dst_cache.
820 */
821 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700822 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
823 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (addr_len >= sizeof(struct sockaddr_in6) &&
826 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000827 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500828 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900830 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900832
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000833 proto = inet->inet_num;
Eric Dumazetefe42082013-10-03 15:42:29 -0700834 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500835 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
David S. Miller4c9483b2011-03-12 16:22:43 -0500838 if (fl6.flowi6_oif == 0)
839 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400841 sockc.tsflags = sk->sk_tsflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (msg->msg_controllen) {
843 opt = &opt_space;
844 memset(opt, 0, sizeof(struct ipv6_txoptions));
845 opt->tot_len = sizeof(struct ipv6_txoptions);
Wei Wang26879da2016-05-02 21:40:07 -0700846 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Wei Wang26879da2016-05-02 21:40:07 -0700848 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (err < 0) {
850 fl6_sock_release(flowlabel);
851 return err;
852 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500853 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
854 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +0100855 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return -EINVAL;
857 }
858 if (!(opt->opt_nflen|opt->opt_flen))
859 opt = NULL;
860 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800861 if (!opt) {
862 opt = txopt_get(np);
863 opt_to_free = opt;
Wei Wang26879da2016-05-02 21:40:07 -0700864 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900865 if (flowlabel)
866 opt = fl6_merge_options(&opt_space, flowlabel, opt);
867 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
David S. Miller4c9483b2011-03-12 16:22:43 -0500869 fl6.flowi6_proto = proto;
Al Viro19e3c662014-11-24 12:10:46 -0500870 rfv.msg = msg;
871 rfv.hlen = 0;
872 err = rawv6_probe_proto_opt(&rfv, &fl6);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800873 if (err)
874 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900875
Brian Haley876c7f42008-04-11 00:38:24 -0400876 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000877 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400878 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500879 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
880 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000881 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
David S. Miller4c9483b2011-03-12 16:22:43 -0500883 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
David S. Miller4c9483b2011-03-12 16:22:43 -0500885 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
886 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000887 else if (!fl6.flowi6_oif)
888 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500889 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700891 if (inet->hdrincl)
892 fl6.flowi6_flags |= FLOWI_FLAG_KNOWN_NH;
893
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +0200894 if (ipc6.tclass < 0)
895 ipc6.tclass = np->tclass;
896
897 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
898
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200899 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800900 if (IS_ERR(dst)) {
901 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700903 }
Wei Wang26879da2016-05-02 21:40:07 -0700904 if (ipc6.hlimit < 0)
905 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Wei Wang26879da2016-05-02 21:40:07 -0700907 if (ipc6.dontfrag < 0)
908 ipc6.dontfrag = np->dontfrag;
Brian Haley13b52cd2010-04-23 11:26:08 +0000909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (msg->msg_flags&MSG_CONFIRM)
911 goto do_confirm;
912
913back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000914 if (inet->hdrincl)
Al Viroc3c1a7d2014-11-27 19:36:28 -0500915 err = rawv6_send_hdrinc(sk, msg, len, &fl6, &dst, msg->msg_flags);
Eric Dumazet1789a642010-06-03 22:23:57 +0000916 else {
Wei Wang26879da2016-05-02 21:40:07 -0700917 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 lock_sock(sk);
Al Viro19e3c662014-11-24 12:10:46 -0500919 err = ip6_append_data(sk, raw6_getfrag, &rfv,
Wei Wang26879da2016-05-02 21:40:07 -0700920 len, 0, &ipc6, &fl6, (struct rt6_info *)dst,
921 msg->msg_flags, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (err)
924 ip6_flush_pending_frames(sk);
925 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500926 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700927 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800930 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900931out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800933 txopt_put(opt_to_free);
Ian Morris67ba4152014-08-24 21:53:10 +0100934 return err < 0 ? err : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935do_confirm:
936 dst_confirm(dst);
937 if (!(msg->msg_flags & MSG_PROBE) || len)
938 goto back_from_confirm;
939 err = 0;
940 goto done;
941}
942
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900943static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 char __user *optval, int optlen)
945{
946 switch (optname) {
947 case ICMPV6_FILTER:
948 if (optlen > sizeof(struct icmp6_filter))
949 optlen = sizeof(struct icmp6_filter);
950 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
951 return -EFAULT;
952 return 0;
953 default:
954 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 return 0;
958}
959
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900960static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 char __user *optval, int __user *optlen)
962{
963 int len;
964
965 switch (optname) {
966 case ICMPV6_FILTER:
967 if (get_user(len, optlen))
968 return -EFAULT;
969 if (len < 0)
970 return -EINVAL;
971 if (len > sizeof(struct icmp6_filter))
972 len = sizeof(struct icmp6_filter);
973 if (put_user(len, optlen))
974 return -EFAULT;
975 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
976 return -EFAULT;
977 return 0;
978 default:
979 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 return 0;
983}
984
985
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800986static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700987 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct raw6_sock *rp = raw6_sk(sk);
990 int val;
991
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900992 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return -EFAULT;
994
995 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +0100996 case IPV6_HDRINCL:
997 if (sk->sk_type != SOCK_RAW)
998 return -EINVAL;
999 inet_sk(sk)->hdrincl = !!val;
1000 return 0;
Joe Perches207ec0a2011-07-01 09:43:08 +00001001 case IPV6_CHECKSUM:
1002 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
1003 level == IPPROTO_IPV6) {
1004 /*
1005 * RFC3542 tells that IPV6_CHECKSUM socket
1006 * option in the IPPROTO_IPV6 level is not
1007 * allowed on ICMPv6 sockets.
1008 * If you want to set it, use IPPROTO_RAW
1009 * level IPV6_CHECKSUM socket option
1010 * (Linux extension).
1011 */
1012 return -EINVAL;
1013 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001014
Joe Perches207ec0a2011-07-01 09:43:08 +00001015 /* You may get strange result with a positive odd offset;
1016 RFC2292bis agrees with me. */
1017 if (val > 0 && (val&1))
1018 return -EINVAL;
1019 if (val < 0) {
1020 rp->checksum = 0;
1021 } else {
1022 rp->checksum = 1;
1023 rp->offset = val;
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Joe Perches207ec0a2011-07-01 09:43:08 +00001026 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Joe Perches207ec0a2011-07-01 09:43:08 +00001028 default:
1029 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031}
1032
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001033static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001034 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Joe Perches207ec0a2011-07-01 09:43:08 +00001036 switch (level) {
1037 case SOL_RAW:
1038 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Joe Perches207ec0a2011-07-01 09:43:08 +00001040 case SOL_ICMPV6:
1041 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1042 return -EOPNOTSUPP;
1043 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1044 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001045 if (optname == IPV6_CHECKSUM ||
1046 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001047 break;
1048 default:
1049 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001050 }
1051
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001052 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1053}
1054
1055#ifdef CONFIG_COMPAT
1056static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001057 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001058{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001059 switch (level) {
1060 case SOL_RAW:
1061 break;
1062 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001063 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001064 return -EOPNOTSUPP;
1065 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1066 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001067 if (optname == IPV6_CHECKSUM ||
1068 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001069 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001070 default:
1071 return compat_ipv6_setsockopt(sk, level, optname,
1072 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001073 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001074 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1075}
1076#endif
1077
1078static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1079 char __user *optval, int __user *optlen)
1080{
1081 struct raw6_sock *rp = raw6_sk(sk);
1082 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Ian Morris67ba4152014-08-24 21:53:10 +01001084 if (get_user(len, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return -EFAULT;
1086
1087 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001088 case IPV6_HDRINCL:
1089 val = inet_sk(sk)->hdrincl;
1090 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001092 /*
1093 * We allow getsockopt() for IPPROTO_IPV6-level
1094 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1095 * since RFC3542 is silent about it.
1096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (rp->checksum == 0)
1098 val = -1;
1099 else
1100 val = rp->offset;
1101 break;
1102
1103 default:
1104 return -ENOPROTOOPT;
1105 }
1106
1107 len = min_t(unsigned int, sizeof(int), len);
1108
1109 if (put_user(len, optlen))
1110 return -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001111 if (copy_to_user(optval, &val, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return -EFAULT;
1113 return 0;
1114}
1115
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001116static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1117 char __user *optval, int __user *optlen)
1118{
Joe Perches207ec0a2011-07-01 09:43:08 +00001119 switch (level) {
1120 case SOL_RAW:
1121 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001122
Joe Perches207ec0a2011-07-01 09:43:08 +00001123 case SOL_ICMPV6:
1124 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1125 return -EOPNOTSUPP;
1126 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1127 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001128 if (optname == IPV6_CHECKSUM ||
1129 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001130 break;
1131 default:
1132 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001133 }
1134
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001135 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1136}
1137
1138#ifdef CONFIG_COMPAT
1139static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001140 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001141{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001142 switch (level) {
1143 case SOL_RAW:
1144 break;
1145 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001146 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001147 return -EOPNOTSUPP;
1148 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1149 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001150 if (optname == IPV6_CHECKSUM ||
1151 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001152 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001153 default:
1154 return compat_ipv6_getsockopt(sk, level, optname,
1155 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001156 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001157 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1158}
1159#endif
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1162{
Joe Perches207ec0a2011-07-01 09:43:08 +00001163 switch (cmd) {
1164 case SIOCOUTQ: {
1165 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001166
Joe Perches207ec0a2011-07-01 09:43:08 +00001167 return put_user(amount, (int __user *)arg);
1168 }
1169 case SIOCINQ: {
1170 struct sk_buff *skb;
1171 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Joe Perches207ec0a2011-07-01 09:43:08 +00001173 spin_lock_bh(&sk->sk_receive_queue.lock);
1174 skb = skb_peek(&sk->sk_receive_queue);
Ian Morris53b24b82015-03-29 14:00:05 +01001175 if (skb)
Jamie Bainbridgeb1fc1b02017-04-26 10:43:27 +10001176 amount = skb->len;
Joe Perches207ec0a2011-07-01 09:43:08 +00001177 spin_unlock_bh(&sk->sk_receive_queue.lock);
1178 return put_user(amount, (int __user *)arg);
1179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Joe Perches207ec0a2011-07-01 09:43:08 +00001181 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001182#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001183 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001184#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001185 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001186#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188}
1189
David S. Millere2d57762011-02-03 17:59:32 -08001190#ifdef CONFIG_COMPAT
1191static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1192{
1193 switch (cmd) {
1194 case SIOCOUTQ:
1195 case SIOCINQ:
1196 return -ENOIOCTLCMD;
1197 default:
1198#ifdef CONFIG_IPV6_MROUTE
1199 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1200#else
1201 return -ENOIOCTLCMD;
1202#endif
1203 }
1204}
1205#endif
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207static void rawv6_close(struct sock *sk, long timeout)
1208{
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001209 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001210 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001211 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 sk_common_release(sk);
1213}
1214
Brian Haley7d06b2e2008-06-14 17:04:49 -07001215static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001216{
1217 lock_sock(sk);
1218 ip6_flush_pending_frames(sk);
1219 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001220
Brian Haley7d06b2e2008-06-14 17:04:49 -07001221 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001222}
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224static int rawv6_init_sk(struct sock *sk)
1225{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001226 struct raw6_sock *rp = raw6_sk(sk);
1227
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001228 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001229 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 rp->checksum = 1;
1231 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001232 break;
1233 case IPPROTO_MH:
1234 rp->checksum = 1;
1235 rp->offset = 4;
1236 break;
1237 default:
1238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
1243struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001244 .name = "RAWv6",
1245 .owner = THIS_MODULE,
1246 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001247 .destroy = raw6_destroy,
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +01001248 .connect = ip6_datagram_connect_v6_only,
Eric Dumazet286c72d2016-10-20 09:39:40 -07001249 .disconnect = __udp_disconnect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001250 .ioctl = rawv6_ioctl,
1251 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001252 .setsockopt = rawv6_setsockopt,
1253 .getsockopt = rawv6_getsockopt,
1254 .sendmsg = rawv6_sendmsg,
1255 .recvmsg = rawv6_recvmsg,
1256 .bind = rawv6_bind,
1257 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001258 .hash = raw_hash_sk,
1259 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001260 .obj_size = sizeof(struct raw6_sock),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001261 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001262#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001263 .compat_setsockopt = compat_rawv6_setsockopt,
1264 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001265 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001266#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267};
1268
1269#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270static int raw6_seq_show(struct seq_file *seq, void *v)
1271{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001272 if (v == SEQ_START_TOKEN) {
1273 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1274 } else {
1275 struct sock *sp = v;
1276 __u16 srcp = inet_sk(sp)->inet_num;
1277 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1278 raw_seq_private(seq)->bucket);
1279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return 0;
1281}
1282
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001283static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001284 .start = raw_seq_start,
1285 .next = raw_seq_next,
1286 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 .show = raw6_seq_show,
1288};
1289
1290static int raw6_seq_open(struct inode *inode, struct file *file)
1291{
Denis V. Lunev3046d762008-01-31 03:48:55 -08001292 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
Arjan van de Ven9a321442007-02-12 00:55:35 -08001295static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .owner = THIS_MODULE,
1297 .open = raw6_seq_open,
1298 .read = seq_read,
1299 .llseek = seq_lseek,
Pavel Emelyanovf51d5992008-01-14 05:35:57 -08001300 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301};
1302
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001303static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001304{
Gao fengd4beaa62013-02-18 01:34:54 +00001305 if (!proc_create("raw6", S_IRUGO, net->proc_net, &raw6_seq_fops))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001306 return -ENOMEM;
1307
1308 return 0;
1309}
1310
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001311static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001312{
Gao fengece31ff2013-02-18 01:34:56 +00001313 remove_proc_entry("raw6", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001314}
1315
1316static struct pernet_operations raw6_net_ops = {
1317 .init = raw6_init_net,
1318 .exit = raw6_exit_net,
1319};
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321int __init raw6_proc_init(void)
1322{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001323 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
1326void raw6_proc_exit(void)
1327{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001328 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001331
1332/* Same as inet6_dgram_ops, sans udp_poll. */
Eric Dumazet0aa89f12017-06-03 09:29:25 -07001333const struct proto_ops inet6_sockraw_ops = {
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001334 .family = PF_INET6,
1335 .owner = THIS_MODULE,
1336 .release = inet6_release,
1337 .bind = inet6_bind,
1338 .connect = inet_dgram_connect, /* ok */
1339 .socketpair = sock_no_socketpair, /* a do nothing */
1340 .accept = sock_no_accept, /* a do nothing */
1341 .getname = inet6_getname,
1342 .poll = datagram_poll, /* ok */
1343 .ioctl = inet6_ioctl, /* must change */
1344 .listen = sock_no_listen, /* ok */
1345 .shutdown = inet_shutdown, /* ok */
1346 .setsockopt = sock_common_setsockopt, /* ok */
1347 .getsockopt = sock_common_getsockopt, /* ok */
1348 .sendmsg = inet_sendmsg, /* ok */
1349 .recvmsg = sock_common_recvmsg, /* ok */
1350 .mmap = sock_no_mmap,
1351 .sendpage = sock_no_sendpage,
1352#ifdef CONFIG_COMPAT
1353 .compat_setsockopt = compat_sock_common_setsockopt,
1354 .compat_getsockopt = compat_sock_common_getsockopt,
1355#endif
1356};
1357
1358static struct inet_protosw rawv6_protosw = {
1359 .type = SOCK_RAW,
1360 .protocol = IPPROTO_IP, /* wild card */
1361 .prot = &rawv6_prot,
1362 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001363 .flags = INET_PROTOSW_REUSE,
1364};
1365
1366int __init rawv6_init(void)
1367{
Julia Lawall3d2f6d42015-05-28 23:02:17 +02001368 return inet6_register_protosw(&rawv6_protosw);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001369}
1370
Daniel Lezcano09f77092007-12-13 05:34:58 -08001371void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001372{
1373 inet6_unregister_protosw(&rawv6_protosw);
1374}