blob: 8a6131991e38fec5db19a6cbedda315cd22a539d [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * RAW sockets for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09007 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Adapted from linux/net/ipv4/raw.c
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fixes:
12 * Hideaki YOSHIFUJI : sin6_scope_id support
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090013 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
17#include <linux/errno.h>
18#include <linux/types.h>
19#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/net.h>
23#include <linux/in6.h>
24#include <linux/netdevice.h>
25#include <linux/if_arp.h>
26#include <linux/icmpv6.h>
27#include <linux/netfilter.h>
28#include <linux/netfilter_ipv6.h>
Herbert Xu3305b802005-12-13 23:16:37 -080029#include <linux/skbuff.h>
David S. Millere2d57762011-02-03 17:59:32 -080030#include <linux/compat.h>
Alex W Slater29778be2015-02-19 21:58:07 +000031#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/ioctls.h>
33
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020034#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <net/ip.h>
36#include <net/sock.h>
37#include <net/snmp.h>
38
39#include <net/ipv6.h>
40#include <net/ndisc.h>
41#include <net/protocol.h>
42#include <net/ip6_route.h>
43#include <net/ip6_checksum.h>
44#include <net/addrconf.h>
45#include <net/transp_v6.h>
46#include <net/udp.h>
47#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070048#include <net/tcp_states.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000049#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -070050#include <net/mip6.h>
51#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090052#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080054#include <net/raw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/rawv6.h>
56#include <net/xfrm.h>
57
58#include <linux/proc_fs.h>
59#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040060#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Werner Almesbergerd1c53c82013-08-02 10:51:34 -030062#define ICMPV6_HDRLEN 4 /* ICMPv6 header, RFC 4443 Section 2.1 */
63
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030064struct raw_hashinfo raw_v6_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070065 .lock = __RW_LOCK_UNLOCKED(raw_v6_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080066};
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030067EXPORT_SYMBOL_GPL(raw_v6_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030069struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000070 unsigned short num, const struct in6_addr *loc_addr,
David Ahern5108ab42017-08-07 08:44:22 -070071 const struct in6_addr *rmt_addr, int dif, int sdif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Eric Dumazeta50feda2012-05-18 18:57:34 +000073 bool is_multicast = ipv6_addr_is_multicast(loc_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Sasha Levinb67bfe02013-02-27 17:06:00 -080075 sk_for_each_from(sk)
Eric Dumazetc720c7e82009-10-15 06:30:45 +000076 if (inet_sk(sk)->inet_num == num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +090078 if (!net_eq(sock_net(sk), net))
Pavel Emelyanovbe1858842008-01-14 05:35:31 -080079 continue;
80
Eric Dumazetefe42082013-10-03 15:42:29 -070081 if (!ipv6_addr_any(&sk->sk_v6_daddr) &&
82 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 continue;
84
Duncan Eastoe70554202018-11-07 15:36:06 +000085 if (!raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if,
86 dif, sdif))
Andrew McDonald0bd1b592005-08-09 19:44:42 -070087 continue;
88
Eric Dumazetefe42082013-10-03 15:42:29 -070089 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
90 if (ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 goto found;
92 if (is_multicast &&
93 inet6_mc_check(sk, loc_addr, rmt_addr))
94 goto found;
95 continue;
96 }
97 goto found;
98 }
99 sk = NULL;
100found:
101 return sk;
102}
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300103EXPORT_SYMBOL_GPL(__raw_v6_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/*
106 * 0 - deliver
107 * 1 - block
108 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000109static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Werner Almesberger9cc08af2013-08-02 10:51:19 -0300111 struct icmp6hdr _hdr;
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000112 const struct icmp6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300114 /* We require only the four bytes of the ICMPv6 header, not any
115 * additional bytes of message body in "struct icmp6hdr".
116 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000117 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300118 ICMPV6_HDRLEN, &_hdr);
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000119 if (hdr) {
120 const __u32 *data = &raw6_sk(sk)->filter.data[0];
121 unsigned int type = hdr->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000123 return (data[type >> 5] & (1U << (type & 31))) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000125 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Amerigo Wang07a93622012-10-29 16:23:10 +0000128#if IS_ENABLED(CONFIG_IPV6_MIP6)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000129typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700130
Eric Dumazetf2eda472011-01-20 07:37:53 +0000131static mh_filter_t __rcu *mh_filter __read_mostly;
132
133int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700134{
Eric Dumazetcf778b02012-01-12 04:41:32 +0000135 rcu_assign_pointer(mh_filter, filter);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700136 return 0;
137}
138EXPORT_SYMBOL(rawv6_mh_filter_register);
139
Eric Dumazetf2eda472011-01-20 07:37:53 +0000140int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700141{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000142 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700143 synchronize_rcu();
144 return 0;
145}
146EXPORT_SYMBOL(rawv6_mh_filter_unregister);
147
148#endif
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
151 * demultiplex raw sockets.
152 * (should consider queueing the skb in the sock receive_queue
153 * without calling rawv6.c)
154 *
155 * Caller owns SKB so we must make clones.
156 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000157static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000159 const struct in6_addr *saddr;
160 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct sock *sk;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000162 bool delivered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 __u8 hash;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800164 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700166 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 daddr = saddr + 1;
168
David S. Millerf9242b62012-06-19 18:56:21 -0700169 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800171 read_lock(&raw_v6_hashinfo.lock);
172 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Ian Morris63159f22015-03-29 14:00:04 +0100174 if (!sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 goto out;
176
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900177 net = dev_net(skb->dev);
David Ahern5108ab42017-08-07 08:44:22 -0700178 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr,
179 inet6_iif(skb), inet6_sdif(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 Emelyanovbe1858842008-01-14 05:35:31 -0800222 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
David Ahern5108ab42017-08-07 08:44:22 -0700223 inet6_iif(skb), inet6_sdif(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 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;
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;
Mike Manning72f7cfa2019-05-20 19:57:17 +0100286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Mike Manning72f7cfa2019-05-20 19:57:17 +0100288 if (sk->sk_bound_dev_if) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000289 err = -ENODEV;
290 dev = dev_get_by_index_rcu(sock_net(sk),
291 sk->sk_bound_dev_if);
292 if (!dev)
293 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* ipv4 addr of the socket is invalid. Only the
297 * unspecified and mapped address have a v4 equivalent.
298 */
299 v4addr = LOOPBACK4_IPV6;
Tom Herbert35a256f2015-07-08 16:58:22 -0700300 if (!(addr_type & IPV6_ADDR_MULTICAST) &&
301 !sock_net(sk)->ipv6.sysctl.ip_nonlocal_bind) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900303 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800304 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000305 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000310 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Eric Dumazetefe42082013-10-03 15:42:29 -0700311 sk->sk_v6_rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000313 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000315out_unlock:
316 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317out:
318 release_sock(sk);
319 return err;
320}
321
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800322static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700324 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 struct inet_sock *inet = inet_sk(sk);
327 struct ipv6_pinfo *np = inet6_sk(sk);
328 int err;
329 int harderr;
330
331 /* Report error on raw socket, if:
332 1. User requested recverr.
333 2. Socket is connected (otherwise the error indication
334 is useless without recverr and error is hard.
335 */
336 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
337 return;
338
339 harderr = icmpv6_err_convert(type, code, &err);
David S. Miller81aded22012-06-15 14:54:11 -0700340 if (type == ICMPV6_PKT_TOOBIG) {
341 ip6_sk_update_pmtu(skb, sk, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
David S. Miller81aded22012-06-15 14:54:11 -0700343 }
Duan Jiong8d65b112013-09-20 18:21:25 +0800344 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700345 ip6_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800346 return;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (np->recverr) {
349 u8 *payload = skb->data;
350 if (!inet->hdrincl)
351 payload += offset;
352 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
353 }
354
355 if (np->recverr || harderr) {
356 sk->sk_err = err;
357 sk->sk_error_report(sk);
358 }
359}
360
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800361void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700362 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800363{
364 struct sock *sk;
365 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000366 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800367 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800368
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800369 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800370
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800371 read_lock(&raw_v6_hashinfo.lock);
372 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Ian Morris53b24b82015-03-29 14:00:05 +0100373 if (sk) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900374 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000375 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900376 saddr = &ip6h->saddr;
377 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900378 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800379
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800380 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
David Ahern5108ab42017-08-07 08:44:22 -0700381 inet6_iif(skb), inet6_iif(skb)))) {
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800382 rawv6_err(sk, skb, NULL, type, code,
383 inner_offset, info);
384 sk = sk_next(sk);
385 }
386 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800387 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800388}
389
Eric Dumazet33d480c2011-08-11 19:30:52 +0000390static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000392 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800393 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800394 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800395 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 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000400 skb_dst_drop(skb);
401 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700403 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
406 return 0;
407}
408
409/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900410 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900412 * just to queue the skb...
413 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * should call raw_rcv for demultiplexing
415 */
416int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
417{
418 struct inet_sock *inet = inet_sk(sk);
419 struct raw6_sock *rp = raw6_sk(sk);
420
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900421 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800422 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900423 kfree_skb(skb);
424 return NET_RX_DROP;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (!rp->checksum)
428 skb->ip_summed = CHECKSUM_UNNECESSARY;
429
Patrick McHardy84fa7932006-08-29 16:44:56 -0700430 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700431 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300432 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700433 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
434 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000435 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Herbert Xu60476372007-04-09 11:59:39 -0700438 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700439 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
440 &ipv6_hdr(skb)->daddr,
441 skb->len,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000442 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800445 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800446 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700448 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 rawv6_rcv_skb(sk, skb);
453 return 0;
454}
455
456
457/*
458 * This should be easy, if there is something there
459 * we return it, otherwise we block.
460 */
461
Ying Xue1b784142015-03-02 15:37:48 +0800462static int rawv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
463 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100466 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct sk_buff *skb;
468 size_t copied;
469 int err;
470
471 if (flags & MSG_OOB)
472 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100475 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Brian Haley4b340ae2010-04-23 11:26:09 +0000477 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100478 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 skb = skb_recv_datagram(sk, flags, noblock, &err);
481 if (!skb)
482 goto out;
483
484 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900485 if (copied > len) {
486 copied = len;
487 msg->msg_flags |= MSG_TRUNC;
488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Herbert Xu60476372007-04-09 11:59:39 -0700490 if (skb_csum_unnecessary(skb)) {
David S. Miller51f3d022014-11-05 16:46:40 -0500491 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800493 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto csum_copy_err;
David S. Miller51f3d022014-11-05 16:46:40 -0500495 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 } else {
Al Viro227158d2014-04-06 18:47:38 -0400497 err = skb_copy_and_csum_datagram_msg(skb, 0, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (err == -EINVAL)
499 goto csum_copy_err;
500 }
501 if (err)
502 goto out_free;
503
504 /* Copy the address. */
505 if (sin6) {
506 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700507 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000508 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 sin6->sin6_flowinfo = 0;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000510 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800511 inet6_iif(skb));
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100512 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514
Neil Horman3b885782009-10-12 13:26:31 -0700515 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000518 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 err = copied;
521 if (flags & MSG_TRUNC)
522 err = skb->len;
523
524out_free:
525 skb_free_datagram(sk, skb);
526out:
527 return err;
528
529csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800530 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 /* Error for blocking case is chosen to masquerade
533 as some normal condition.
534 */
535 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800536 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
David S. Miller4c9483b2011-03-12 16:22:43 -0500539static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700540 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct sk_buff *skb;
543 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700544 int offset;
545 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700546 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800547 __wsum tmp_csum;
548 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (!rp->checksum)
551 goto send;
552
Fabian Frederick43728fa2014-10-29 12:57:51 +0100553 skb = skb_peek(&sk->sk_write_queue);
554 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto out;
556
Herbert Xu357b40a2005-04-19 22:30:14 -0700557 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000558 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700559 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700561 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto out;
563 }
564
565 /* should be check HW csum miyazawa */
566 if (skb_queue_len(&sk->sk_write_queue) == 1) {
567 /*
568 * Only one fragment on the socket.
569 */
570 tmp_csum = skb->csum;
571 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700572 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 tmp_csum = 0;
574
575 skb_queue_walk(&sk->sk_write_queue, skb) {
576 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700577
578 if (csum_skb)
579 continue;
580
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700581 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700582 if (offset >= len) {
583 offset -= len;
584 continue;
585 }
586
587 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700589
590 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700593 offset += skb_transport_offset(skb);
Dave Jonesa98f9172016-12-22 11:16:22 -0500594 err = skb_copy_bits(skb, offset, &csum, 2);
595 if (err < 0) {
596 ip6_flush_pending_frames(sk);
597 goto out;
598 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700601 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800602 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
David S. Miller4c9483b2011-03-12 16:22:43 -0500604 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
605 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
David S. Miller4c9483b2011-03-12 16:22:43 -0500607 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800608 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700609
Himangi Saraogi8242fc32014-07-12 01:55:38 +0530610 BUG_ON(skb_store_bits(skb, offset, &csum, 2));
Herbert Xu357b40a2005-04-19 22:30:14 -0700611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612send:
613 err = ip6_push_pending_frames(sk);
614out:
615 return err;
616}
617
Al Viroc3c1a7d2014-11-27 19:36:28 -0500618static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500619 struct flowi6 *fl6, struct dst_entry **dstp,
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700620 unsigned int flags, const struct sockcm_cookie *sockc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Herbert Xu3320da82005-04-19 22:32:22 -0700622 struct ipv6_pinfo *np = inet6_sk(sk);
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500623 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct ipv6hdr *iph;
625 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000627 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000628 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
629 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Changli Gaod8d1f302010-06-10 23:31:35 -0700631 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500632 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -EMSGSIZE;
634 }
Alexander Potapenko86f4c902017-05-03 17:06:58 +0200635 if (length < sizeof(struct ipv6hdr))
636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (flags&MSG_PROBE)
638 goto out;
639
Johannes Bergf5184d22008-05-12 20:48:31 -0700640 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000641 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700642 flags & MSG_DONTWAIT, &err);
Ian Morris63159f22015-03-29 14:00:04 +0100643 if (!skb)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900644 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000645 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200647 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800649 skb->mark = sk->sk_mark;
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700650 skb->tstamp = sockc->transmit_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300652 skb_put(skb, length);
653 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700654 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 skb->ip_summed = CHECKSUM_NONE;
657
Willem de Bruijn8f932f72018-12-17 12:24:00 -0500658 skb_setup_tx_timestamp(skb, sockc->tsflags);
Willem de Bruijnfbfb2322018-12-17 12:23:59 -0500659
Julian Anastasov0dec8792017-02-06 23:14:16 +0200660 if (flags & MSG_CONFIRM)
661 skb_set_dst_pending_confirm(skb, 1);
662
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700663 skb->transport_header = skb->network_header;
Al Viro21226ab2014-11-28 15:48:29 -0500664 err = memcpy_from_msg(iph, msg, length);
Wei Wanga688caa2018-10-04 10:12:37 -0700665 if (err) {
666 err = -EFAULT;
667 kfree_skb(skb);
668 goto error;
669 }
670
671 skb_dst_set(skb, &rt->dst);
672 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David Aherna8e3e1a2016-09-10 12:09:53 -0700674 /* if egress device is enslaved to an L3 master device pass the
675 * skb to its handler for processing
676 */
677 skb = l3mdev_ip6_out(sk, skb);
678 if (unlikely(!skb))
679 return 0;
680
Wei Wanga688caa2018-10-04 10:12:37 -0700681 /* Acquire rcu_read_lock() in case we need to use rt->rt6i_idev
682 * in the error path. Since skb has been freed, the dst could
683 * have been queued for deletion.
684 */
685 rcu_read_lock();
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500686 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500687 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500688 NULL, rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700690 err = net_xmit_errno(err);
Wei Wanga688caa2018-10-04 10:12:37 -0700691 if (err) {
692 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
693 rcu_read_unlock();
694 goto error_check;
695 }
696 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697out:
698 return 0;
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700error:
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500701 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Wei Wanga688caa2018-10-04 10:12:37 -0700702error_check:
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700703 if (err == -ENOBUFS && !np->recverr)
704 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900705 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Al Viro19e3c662014-11-24 12:10:46 -0500708struct raw6_frag_vec {
709 struct msghdr *msg;
710 int hlen;
711 char c[4];
712};
713
714static int rawv6_probe_proto_opt(struct raw6_frag_vec *rfv, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Al Viro19e3c662014-11-24 12:10:46 -0500716 int err = 0;
717 switch (fl6->flowi6_proto) {
718 case IPPROTO_ICMPV6:
719 rfv->hlen = 2;
720 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
721 if (!err) {
722 fl6->fl6_icmp_type = rfv->c[0];
723 fl6->fl6_icmp_code = rfv->c[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Al Viro19e3c662014-11-24 12:10:46 -0500725 break;
726 case IPPROTO_MH:
727 rfv->hlen = 4;
728 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
729 if (!err)
730 fl6->fl6_mh_type = rfv->c[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
Al Viro19e3c662014-11-24 12:10:46 -0500732 return err;
733}
734
735static int raw6_getfrag(void *from, char *to, int offset, int len, int odd,
736 struct sk_buff *skb)
737{
738 struct raw6_frag_vec *rfv = from;
739
740 if (offset < rfv->hlen) {
741 int copy = min(rfv->hlen - offset, len);
742
743 if (skb->ip_summed == CHECKSUM_PARTIAL)
744 memcpy(to, rfv->c + offset, copy);
745 else
746 skb->csum = csum_block_add(
747 skb->csum,
748 csum_partial_copy_nocheck(rfv->c + offset,
749 to, copy, 0),
750 odd);
751
752 odd = 0;
753 offset += copy;
754 to += copy;
755 len -= copy;
756
757 if (!len)
758 return 0;
759 }
760
761 offset -= rfv->hlen;
762
Al Virof69e6d12014-11-24 13:23:40 -0500763 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Ying Xue1b784142015-03-02 15:37:48 +0800766static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800768 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct ipv6_txoptions opt_space;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100770 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000771 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct inet_sock *inet = inet_sk(sk);
773 struct ipv6_pinfo *np = inet6_sk(sk);
774 struct raw6_sock *rp = raw6_sk(sk);
775 struct ipv6_txoptions *opt = NULL;
776 struct ip6_flowlabel *flowlabel = NULL;
777 struct dst_entry *dst = NULL;
Al Viro19e3c662014-11-24 12:10:46 -0500778 struct raw6_frag_vec rfv;
David S. Miller4c9483b2011-03-12 16:22:43 -0500779 struct flowi6 fl6;
Wei Wang26879da2016-05-02 21:40:07 -0700780 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 int addr_len = msg->msg_namelen;
Olivier Matz59e3e4b2019-06-06 09:15:18 +0200782 int hdrincl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 u16 proto;
784 int err;
785
786 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700787 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700789 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return -EMSGSIZE;
791
792 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900793 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return -EOPNOTSUPP;
795
Olivier Matz59e3e4b2019-06-06 09:15:18 +0200796 /* hdrincl should be READ_ONCE(inet->hdrincl)
797 * but READ_ONCE() doesn't work with bit fields.
798 * Doing this indirectly yields the same result.
799 */
800 hdrincl = inet->hdrincl;
801 hdrincl = READ_ONCE(hdrincl);
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900804 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500806 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
David S. Miller4c9483b2011-03-12 16:22:43 -0500808 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900809 fl6.flowi6_uid = sk->sk_uid;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800810
Willem de Bruijnb515430a2018-07-06 10:12:55 -0400811 ipcm6_init(&ipc6);
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400812 ipc6.sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -0700813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900815 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return -EINVAL;
817
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900818 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000819 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* port is the proto value [0..255] carried in nexthdr */
822 proto = ntohs(sin6->sin6_port);
823
824 if (!proto)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000825 proto = inet->inet_num;
826 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000827 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000830 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 daddr = &sin6->sin6_addr;
833 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500834 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
835 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
836 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Willem de Bruijn59c820b2019-07-07 05:34:45 -0400837 if (IS_ERR(flowlabel))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 }
841
842 /*
843 * Otherwise it will be difficult to maintain
844 * sk->sk_dst_cache.
845 */
846 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700847 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
848 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (addr_len >= sizeof(struct sockaddr_in6) &&
851 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000852 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500853 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900855 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900857
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000858 proto = inet->inet_num;
Eric Dumazetefe42082013-10-03 15:42:29 -0700859 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500860 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
David S. Miller4c9483b2011-03-12 16:22:43 -0500863 if (fl6.flowi6_oif == 0)
864 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (msg->msg_controllen) {
867 opt = &opt_space;
868 memset(opt, 0, sizeof(struct ipv6_txoptions));
869 opt->tot_len = sizeof(struct ipv6_txoptions);
Wei Wang26879da2016-05-02 21:40:07 -0700870 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400872 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (err < 0) {
874 fl6_sock_release(flowlabel);
875 return err;
876 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500877 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
878 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Willem de Bruijn59c820b2019-07-07 05:34:45 -0400879 if (IS_ERR(flowlabel))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return -EINVAL;
881 }
882 if (!(opt->opt_nflen|opt->opt_flen))
883 opt = NULL;
884 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800885 if (!opt) {
886 opt = txopt_get(np);
887 opt_to_free = opt;
Wei Wang26879da2016-05-02 21:40:07 -0700888 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900889 if (flowlabel)
890 opt = fl6_merge_options(&opt_space, flowlabel, opt);
891 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
David S. Miller4c9483b2011-03-12 16:22:43 -0500893 fl6.flowi6_proto = proto;
Olivier Matzb9aa52c2019-06-06 09:15:19 +0200894
895 if (!hdrincl) {
896 rfv.msg = msg;
897 rfv.hlen = 0;
898 err = rawv6_probe_proto_opt(&rfv, &fl6);
899 if (err)
900 goto out;
901 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900902
Brian Haley876c7f42008-04-11 00:38:24 -0400903 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000904 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400905 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500906 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
907 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000908 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
David S. Miller4c9483b2011-03-12 16:22:43 -0500910 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
David S. Miller4c9483b2011-03-12 16:22:43 -0500912 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
913 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000914 else if (!fl6.flowi6_oif)
915 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500916 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Olivier Matz59e3e4b2019-06-06 09:15:18 +0200918 if (hdrincl)
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700919 fl6.flowi6_flags |= FLOWI_FLAG_KNOWN_NH;
920
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +0200921 if (ipc6.tclass < 0)
922 ipc6.tclass = np->tclass;
923
924 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
925
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200926 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800927 if (IS_ERR(dst)) {
928 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700930 }
Wei Wang26879da2016-05-02 21:40:07 -0700931 if (ipc6.hlimit < 0)
932 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Wei Wang26879da2016-05-02 21:40:07 -0700934 if (ipc6.dontfrag < 0)
935 ipc6.dontfrag = np->dontfrag;
Brian Haley13b52cd2010-04-23 11:26:08 +0000936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (msg->msg_flags&MSG_CONFIRM)
938 goto do_confirm;
939
940back_from_confirm:
Olivier Matz59e3e4b2019-06-06 09:15:18 +0200941 if (hdrincl)
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700942 err = rawv6_send_hdrinc(sk, msg, len, &fl6, &dst,
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400943 msg->msg_flags, &ipc6.sockc);
Eric Dumazet1789a642010-06-03 22:23:57 +0000944 else {
Wei Wang26879da2016-05-02 21:40:07 -0700945 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 lock_sock(sk);
Al Viro19e3c662014-11-24 12:10:46 -0500947 err = ip6_append_data(sk, raw6_getfrag, &rfv,
Wei Wang26879da2016-05-02 21:40:07 -0700948 len, 0, &ipc6, &fl6, (struct rt6_info *)dst,
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400949 msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 if (err)
952 ip6_flush_pending_frames(sk);
953 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500954 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700955 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800958 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900959out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800961 txopt_put(opt_to_free);
Ian Morris67ba4152014-08-24 21:53:10 +0100962 return err < 0 ? err : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +0200964 if (msg->msg_flags & MSG_PROBE)
965 dst_confirm_neigh(dst, &fl6.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!(msg->msg_flags & MSG_PROBE) || len)
967 goto back_from_confirm;
968 err = 0;
969 goto done;
970}
971
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900972static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 char __user *optval, int optlen)
974{
975 switch (optname) {
976 case ICMPV6_FILTER:
977 if (optlen > sizeof(struct icmp6_filter))
978 optlen = sizeof(struct icmp6_filter);
979 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
980 return -EFAULT;
981 return 0;
982 default:
983 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 return 0;
987}
988
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900989static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 char __user *optval, int __user *optlen)
991{
992 int len;
993
994 switch (optname) {
995 case ICMPV6_FILTER:
996 if (get_user(len, optlen))
997 return -EFAULT;
998 if (len < 0)
999 return -EINVAL;
1000 if (len > sizeof(struct icmp6_filter))
1001 len = sizeof(struct icmp6_filter);
1002 if (put_user(len, optlen))
1003 return -EFAULT;
1004 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
1005 return -EFAULT;
1006 return 0;
1007 default:
1008 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 return 0;
1012}
1013
1014
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001015static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001016 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
1018 struct raw6_sock *rp = raw6_sk(sk);
1019 int val;
1020
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001021 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return -EFAULT;
1023
1024 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001025 case IPV6_HDRINCL:
1026 if (sk->sk_type != SOCK_RAW)
1027 return -EINVAL;
1028 inet_sk(sk)->hdrincl = !!val;
1029 return 0;
Joe Perches207ec0a2011-07-01 09:43:08 +00001030 case IPV6_CHECKSUM:
1031 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
1032 level == IPPROTO_IPV6) {
1033 /*
1034 * RFC3542 tells that IPV6_CHECKSUM socket
1035 * option in the IPPROTO_IPV6 level is not
1036 * allowed on ICMPv6 sockets.
1037 * If you want to set it, use IPPROTO_RAW
1038 * level IPV6_CHECKSUM socket option
1039 * (Linux extension).
1040 */
1041 return -EINVAL;
1042 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001043
Joe Perches207ec0a2011-07-01 09:43:08 +00001044 /* You may get strange result with a positive odd offset;
1045 RFC2292bis agrees with me. */
1046 if (val > 0 && (val&1))
1047 return -EINVAL;
1048 if (val < 0) {
1049 rp->checksum = 0;
1050 } else {
1051 rp->checksum = 1;
1052 rp->offset = val;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Joe Perches207ec0a2011-07-01 09:43:08 +00001055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Joe Perches207ec0a2011-07-01 09:43:08 +00001057 default:
1058 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060}
1061
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001062static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001063 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Joe Perches207ec0a2011-07-01 09:43:08 +00001065 switch (level) {
1066 case SOL_RAW:
1067 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Joe Perches207ec0a2011-07-01 09:43:08 +00001069 case SOL_ICMPV6:
1070 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1071 return -EOPNOTSUPP;
1072 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1073 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001074 if (optname == IPV6_CHECKSUM ||
1075 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001076 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001077 /* fall through */
Joe Perches207ec0a2011-07-01 09:43:08 +00001078 default:
1079 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001080 }
1081
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001082 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1083}
1084
1085#ifdef CONFIG_COMPAT
1086static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001087 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001088{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001089 switch (level) {
1090 case SOL_RAW:
1091 break;
1092 case SOL_ICMPV6:
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001093 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001094 return -EOPNOTSUPP;
1095 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1096 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001097 if (optname == IPV6_CHECKSUM ||
1098 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001099 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001100 /* fall through */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001101 default:
1102 return compat_ipv6_setsockopt(sk, level, optname,
1103 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001104 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001105 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1106}
1107#endif
1108
1109static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1110 char __user *optval, int __user *optlen)
1111{
1112 struct raw6_sock *rp = raw6_sk(sk);
1113 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Ian Morris67ba4152014-08-24 21:53:10 +01001115 if (get_user(len, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return -EFAULT;
1117
1118 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001119 case IPV6_HDRINCL:
1120 val = inet_sk(sk)->hdrincl;
1121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001123 /*
1124 * We allow getsockopt() for IPPROTO_IPV6-level
1125 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1126 * since RFC3542 is silent about it.
1127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (rp->checksum == 0)
1129 val = -1;
1130 else
1131 val = rp->offset;
1132 break;
1133
1134 default:
1135 return -ENOPROTOOPT;
1136 }
1137
1138 len = min_t(unsigned int, sizeof(int), len);
1139
1140 if (put_user(len, optlen))
1141 return -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001142 if (copy_to_user(optval, &val, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return -EFAULT;
1144 return 0;
1145}
1146
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001147static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1148 char __user *optval, int __user *optlen)
1149{
Joe Perches207ec0a2011-07-01 09:43:08 +00001150 switch (level) {
1151 case SOL_RAW:
1152 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001153
Joe Perches207ec0a2011-07-01 09:43:08 +00001154 case SOL_ICMPV6:
1155 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1156 return -EOPNOTSUPP;
1157 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1158 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001159 if (optname == IPV6_CHECKSUM ||
1160 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001161 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001162 /* fall through */
Joe Perches207ec0a2011-07-01 09:43:08 +00001163 default:
1164 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001165 }
1166
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001167 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1168}
1169
1170#ifdef CONFIG_COMPAT
1171static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001172 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001173{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001174 switch (level) {
1175 case SOL_RAW:
1176 break;
1177 case SOL_ICMPV6:
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001178 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001179 return -EOPNOTSUPP;
1180 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1181 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001182 if (optname == IPV6_CHECKSUM ||
1183 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001184 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001185 /* fall through */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001186 default:
1187 return compat_ipv6_getsockopt(sk, level, optname,
1188 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001189 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001190 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1191}
1192#endif
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1195{
Joe Perches207ec0a2011-07-01 09:43:08 +00001196 switch (cmd) {
1197 case SIOCOUTQ: {
1198 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001199
Joe Perches207ec0a2011-07-01 09:43:08 +00001200 return put_user(amount, (int __user *)arg);
1201 }
1202 case SIOCINQ: {
1203 struct sk_buff *skb;
1204 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Joe Perches207ec0a2011-07-01 09:43:08 +00001206 spin_lock_bh(&sk->sk_receive_queue.lock);
1207 skb = skb_peek(&sk->sk_receive_queue);
Ian Morris53b24b82015-03-29 14:00:05 +01001208 if (skb)
Jamie Bainbridge105f5522017-04-26 10:43:27 +10001209 amount = skb->len;
Joe Perches207ec0a2011-07-01 09:43:08 +00001210 spin_unlock_bh(&sk->sk_receive_queue.lock);
1211 return put_user(amount, (int __user *)arg);
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Joe Perches207ec0a2011-07-01 09:43:08 +00001214 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001215#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001216 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001217#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001218 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221}
1222
David S. Millere2d57762011-02-03 17:59:32 -08001223#ifdef CONFIG_COMPAT
1224static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1225{
1226 switch (cmd) {
1227 case SIOCOUTQ:
1228 case SIOCINQ:
1229 return -ENOIOCTLCMD;
1230 default:
1231#ifdef CONFIG_IPV6_MROUTE
1232 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1233#else
1234 return -ENOIOCTLCMD;
1235#endif
1236 }
1237}
1238#endif
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240static void rawv6_close(struct sock *sk, long timeout)
1241{
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001242 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001243 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001244 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 sk_common_release(sk);
1246}
1247
Brian Haley7d06b2e2008-06-14 17:04:49 -07001248static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001249{
1250 lock_sock(sk);
1251 ip6_flush_pending_frames(sk);
1252 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001253
Brian Haley7d06b2e2008-06-14 17:04:49 -07001254 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001255}
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257static int rawv6_init_sk(struct sock *sk)
1258{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001259 struct raw6_sock *rp = raw6_sk(sk);
1260
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001261 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001262 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 rp->checksum = 1;
1264 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001265 break;
1266 case IPPROTO_MH:
1267 rp->checksum = 1;
1268 rp->offset = 4;
1269 break;
1270 default:
1271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001273 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001277 .name = "RAWv6",
1278 .owner = THIS_MODULE,
1279 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001280 .destroy = raw6_destroy,
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +01001281 .connect = ip6_datagram_connect_v6_only,
Eric Dumazet286c72d2016-10-20 09:39:40 -07001282 .disconnect = __udp_disconnect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001283 .ioctl = rawv6_ioctl,
1284 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001285 .setsockopt = rawv6_setsockopt,
1286 .getsockopt = rawv6_getsockopt,
1287 .sendmsg = rawv6_sendmsg,
1288 .recvmsg = rawv6_recvmsg,
1289 .bind = rawv6_bind,
1290 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001291 .hash = raw_hash_sk,
1292 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001293 .obj_size = sizeof(struct raw6_sock),
David Windsor8c2bc892017-08-24 16:49:14 -07001294 .useroffset = offsetof(struct raw6_sock, filter),
1295 .usersize = sizeof_field(struct raw6_sock, filter),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001296 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001297#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001298 .compat_setsockopt = compat_rawv6_setsockopt,
1299 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001300 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001301#endif
Cyrill Gorcunov432490f2016-10-21 13:03:44 +03001302 .diag_destroy = raw_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303};
1304
1305#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306static int raw6_seq_show(struct seq_file *seq, void *v)
1307{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001308 if (v == SEQ_START_TOKEN) {
1309 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1310 } else {
1311 struct sock *sp = v;
1312 __u16 srcp = inet_sk(sp)->inet_num;
1313 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1314 raw_seq_private(seq)->bucket);
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return 0;
1317}
1318
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001319static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001320 .start = raw_seq_start,
1321 .next = raw_seq_next,
1322 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 .show = raw6_seq_show,
1324};
1325
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001326static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001327{
Christoph Hellwigc3506372018-04-10 19:42:55 +02001328 if (!proc_create_net_data("raw6", 0444, net->proc_net, &raw6_seq_ops,
1329 sizeof(struct raw_iter_state), &raw_v6_hashinfo))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001330 return -ENOMEM;
1331
1332 return 0;
1333}
1334
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001335static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001336{
Gao fengece31ff2013-02-18 01:34:56 +00001337 remove_proc_entry("raw6", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001338}
1339
1340static struct pernet_operations raw6_net_ops = {
1341 .init = raw6_init_net,
1342 .exit = raw6_exit_net,
1343};
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345int __init raw6_proc_init(void)
1346{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001347 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
1350void raw6_proc_exit(void)
1351{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001352 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001355
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001356/* Same as inet6_dgram_ops, sans udp_poll. */
Eric Dumazet77d4b1d2017-06-03 09:29:25 -07001357const struct proto_ops inet6_sockraw_ops = {
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001358 .family = PF_INET6,
1359 .owner = THIS_MODULE,
1360 .release = inet6_release,
1361 .bind = inet6_bind,
1362 .connect = inet_dgram_connect, /* ok */
1363 .socketpair = sock_no_socketpair, /* a do nothing */
1364 .accept = sock_no_accept, /* a do nothing */
1365 .getname = inet6_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001366 .poll = datagram_poll, /* ok */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001367 .ioctl = inet6_ioctl, /* must change */
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001368 .gettstamp = sock_gettstamp,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001369 .listen = sock_no_listen, /* ok */
1370 .shutdown = inet_shutdown, /* ok */
1371 .setsockopt = sock_common_setsockopt, /* ok */
1372 .getsockopt = sock_common_getsockopt, /* ok */
1373 .sendmsg = inet_sendmsg, /* ok */
1374 .recvmsg = sock_common_recvmsg, /* ok */
1375 .mmap = sock_no_mmap,
1376 .sendpage = sock_no_sendpage,
1377#ifdef CONFIG_COMPAT
1378 .compat_setsockopt = compat_sock_common_setsockopt,
1379 .compat_getsockopt = compat_sock_common_getsockopt,
1380#endif
1381};
1382
1383static struct inet_protosw rawv6_protosw = {
1384 .type = SOCK_RAW,
1385 .protocol = IPPROTO_IP, /* wild card */
1386 .prot = &rawv6_prot,
1387 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001388 .flags = INET_PROTOSW_REUSE,
1389};
1390
1391int __init rawv6_init(void)
1392{
Julia Lawall3d2f6d42015-05-28 23:02:17 +02001393 return inet6_register_protosw(&rawv6_protosw);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001394}
1395
Daniel Lezcano09f77092007-12-13 05:34:58 -08001396void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001397{
1398 inet6_unregister_protosw(&rawv6_protosw);
1399}