blob: 5e0efd3954e90ade89eb4da17cd5ecef1894a1a3 [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
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030068struct 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};
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030071EXPORT_SYMBOL_GPL(raw_v6_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030073struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000074 unsigned short num, const struct in6_addr *loc_addr,
David Ahern5108ab42017-08-07 08:44:22 -070075 const struct in6_addr *rmt_addr, int dif, int sdif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Eric Dumazeta50feda2012-05-18 18:57:34 +000077 bool is_multicast = ipv6_addr_is_multicast(loc_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Sasha Levinb67bfe02013-02-27 17:06:00 -080079 sk_for_each_from(sk)
Eric Dumazetc720c7e82009-10-15 06:30:45 +000080 if (inet_sk(sk)->inet_num == num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +090082 if (!net_eq(sock_net(sk), net))
Pavel Emelyanovbe1858842008-01-14 05:35:31 -080083 continue;
84
Eric Dumazetefe42082013-10-03 15:42:29 -070085 if (!ipv6_addr_any(&sk->sk_v6_daddr) &&
86 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 continue;
88
David Ahern5108ab42017-08-07 08:44:22 -070089 if (sk->sk_bound_dev_if &&
90 sk->sk_bound_dev_if != dif &&
91 sk->sk_bound_dev_if != sdif)
Andrew McDonald0bd1b592005-08-09 19:44:42 -070092 continue;
93
Eric Dumazetefe42082013-10-03 15:42:29 -070094 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
95 if (ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 goto found;
97 if (is_multicast &&
98 inet6_mc_check(sk, loc_addr, rmt_addr))
99 goto found;
100 continue;
101 }
102 goto found;
103 }
104 sk = NULL;
105found:
106 return sk;
107}
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300108EXPORT_SYMBOL_GPL(__raw_v6_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/*
111 * 0 - deliver
112 * 1 - block
113 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000114static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Werner Almesberger9cc08af2013-08-02 10:51:19 -0300116 struct icmp6hdr _hdr;
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000117 const struct icmp6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300119 /* We require only the four bytes of the ICMPv6 header, not any
120 * additional bytes of message body in "struct icmp6hdr".
121 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000122 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300123 ICMPV6_HDRLEN, &_hdr);
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000124 if (hdr) {
125 const __u32 *data = &raw6_sk(sk)->filter.data[0];
126 unsigned int type = hdr->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000128 return (data[type >> 5] & (1U << (type & 31))) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000130 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Amerigo Wang07a93622012-10-29 16:23:10 +0000133#if IS_ENABLED(CONFIG_IPV6_MIP6)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000134typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700135
Eric Dumazetf2eda472011-01-20 07:37:53 +0000136static mh_filter_t __rcu *mh_filter __read_mostly;
137
138int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700139{
Eric Dumazetcf778b02012-01-12 04:41:32 +0000140 rcu_assign_pointer(mh_filter, filter);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700141 return 0;
142}
143EXPORT_SYMBOL(rawv6_mh_filter_register);
144
Eric Dumazetf2eda472011-01-20 07:37:53 +0000145int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700146{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000147 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700148 synchronize_rcu();
149 return 0;
150}
151EXPORT_SYMBOL(rawv6_mh_filter_unregister);
152
153#endif
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
156 * demultiplex raw sockets.
157 * (should consider queueing the skb in the sock receive_queue
158 * without calling rawv6.c)
159 *
160 * Caller owns SKB so we must make clones.
161 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000162static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000164 const struct in6_addr *saddr;
165 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct sock *sk;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000167 bool delivered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 __u8 hash;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800169 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700171 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 daddr = saddr + 1;
173
David S. Millerf9242b62012-06-19 18:56:21 -0700174 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800176 read_lock(&raw_v6_hashinfo.lock);
177 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Ian Morris63159f22015-03-29 14:00:04 +0100179 if (!sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 goto out;
181
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900182 net = dev_net(skb->dev);
David Ahern5108ab42017-08-07 08:44:22 -0700183 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr,
184 inet6_iif(skb), inet6_sdif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700187 int filtered;
188
Eric Dumazeta50feda2012-05-18 18:57:34 +0000189 delivered = true;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700190 switch (nexthdr) {
191 case IPPROTO_ICMPV6:
192 filtered = icmpv6_filter(sk, skb);
193 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700194
Amerigo Wang07a93622012-10-29 16:23:10 +0000195#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700196 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700197 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700198 /* XXX: To validate MH only once for each packet,
199 * this is placed here. It should be after checking
200 * xfrm policy, however it doesn't. The checking xfrm
201 * policy is placed in rawv6_rcv() because it is
202 * required for each socket.
203 */
Eric Dumazetf2eda472011-01-20 07:37:53 +0000204 mh_filter_t *filter;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700205
206 filter = rcu_dereference(mh_filter);
Eric Dumazetf2eda472011-01-20 07:37:53 +0000207 filtered = filter ? (*filter)(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700208 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700209 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700210#endif
211 default:
212 filtered = 0;
213 break;
214 }
215
216 if (filtered < 0)
217 break;
218 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
220
221 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800222 if (clone) {
223 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800227 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
David Ahern5108ab42017-08-07 08:44:22 -0700228 inet6_iif(skb), inet6_sdif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800231 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700232 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Eric Dumazeta50feda2012-05-18 18:57:34 +0000235bool raw6_local_deliver(struct sk_buff *skb, int nexthdr)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800236{
237 struct sock *raw_sk;
238
David S. Millerf9242b62012-06-19 18:56:21 -0700239 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (RAW_HTABLE_SIZE - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800240 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
241 raw_sk = NULL;
242
243 return raw_sk != NULL;
244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/* This cleans up af_inet6 a bit. -DaveM */
247static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
248{
249 struct inet_sock *inet = inet_sk(sk);
250 struct ipv6_pinfo *np = inet6_sk(sk);
251 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4ad2006-11-14 20:56:00 -0800252 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 int addr_type;
254 int err;
255
256 if (addr_len < SIN6_LEN_RFC2133)
257 return -EINVAL;
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +0100258
259 if (addr->sin6_family != AF_INET6)
260 return -EINVAL;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 addr_type = ipv6_addr_type(&addr->sin6_addr);
263
264 /* Raw sockets are IPv6 only */
265 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000266 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 lock_sock(sk);
269
270 err = -EINVAL;
271 if (sk->sk_state != TCP_CLOSE)
272 goto out;
273
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000274 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Check if the address belongs to the host. */
276 if (addr_type != IPV6_ADDR_ANY) {
277 struct net_device *dev = NULL;
278
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000279 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (addr_len >= sizeof(struct sockaddr_in6) &&
281 addr->sin6_scope_id) {
282 /* Override any existing binding, if another
283 * one is supplied by user.
284 */
285 sk->sk_bound_dev_if = addr->sin6_scope_id;
286 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* Binding to link-local address requires an interface */
289 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000290 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000292 err = -ENODEV;
293 dev = dev_get_by_index_rcu(sock_net(sk),
294 sk->sk_bound_dev_if);
295 if (!dev)
296 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* ipv4 addr of the socket is invalid. Only the
300 * unspecified and mapped address have a v4 equivalent.
301 */
302 v4addr = LOOPBACK4_IPV6;
Tom Herbert35a256f2015-07-08 16:58:22 -0700303 if (!(addr_type & IPV6_ADDR_MULTICAST) &&
304 !sock_net(sk)->ipv6.sysctl.ip_nonlocal_bind) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900306 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800307 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000308 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000313 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Eric Dumazetefe42082013-10-03 15:42:29 -0700314 sk->sk_v6_rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000316 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000318out_unlock:
319 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320out:
321 release_sock(sk);
322 return err;
323}
324
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800325static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700327 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct inet_sock *inet = inet_sk(sk);
330 struct ipv6_pinfo *np = inet6_sk(sk);
331 int err;
332 int harderr;
333
334 /* Report error on raw socket, if:
335 1. User requested recverr.
336 2. Socket is connected (otherwise the error indication
337 is useless without recverr and error is hard.
338 */
339 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
340 return;
341
342 harderr = icmpv6_err_convert(type, code, &err);
David S. Miller81aded22012-06-15 14:54:11 -0700343 if (type == ICMPV6_PKT_TOOBIG) {
344 ip6_sk_update_pmtu(skb, sk, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
David S. Miller81aded22012-06-15 14:54:11 -0700346 }
Duan Jiong8d65b112013-09-20 18:21:25 +0800347 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700348 ip6_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800349 return;
350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (np->recverr) {
352 u8 *payload = skb->data;
353 if (!inet->hdrincl)
354 payload += offset;
355 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
356 }
357
358 if (np->recverr || harderr) {
359 sk->sk_err = err;
360 sk->sk_error_report(sk);
361 }
362}
363
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800364void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700365 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800366{
367 struct sock *sk;
368 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000369 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800370 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800371
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800372 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800373
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800374 read_lock(&raw_v6_hashinfo.lock);
375 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Ian Morris53b24b82015-03-29 14:00:05 +0100376 if (sk) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900377 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000378 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900379 saddr = &ip6h->saddr;
380 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900381 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800382
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800383 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
David Ahern5108ab42017-08-07 08:44:22 -0700384 inet6_iif(skb), inet6_iif(skb)))) {
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800385 rawv6_err(sk, skb, NULL, type, code,
386 inner_offset, info);
387 sk = sk_next(sk);
388 }
389 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800390 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800391}
392
Eric Dumazet33d480c2011-08-11 19:30:52 +0000393static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000395 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800396 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800397 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800398 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700399 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000403 skb_dst_drop(skb);
404 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700406 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 return 0;
410}
411
412/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900413 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900415 * just to queue the skb...
416 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * should call raw_rcv for demultiplexing
418 */
419int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
420{
421 struct inet_sock *inet = inet_sk(sk);
422 struct raw6_sock *rp = raw6_sk(sk);
423
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900424 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800425 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900426 kfree_skb(skb);
427 return NET_RX_DROP;
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 if (!rp->checksum)
431 skb->ip_summed = CHECKSUM_UNNECESSARY;
432
Patrick McHardy84fa7932006-08-29 16:44:56 -0700433 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700434 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300435 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700436 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
437 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000438 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Herbert Xu60476372007-04-09 11:59:39 -0700441 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700442 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
443 &ipv6_hdr(skb)->daddr,
444 skb->len,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000445 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800448 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800449 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700451 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
455 rawv6_rcv_skb(sk, skb);
456 return 0;
457}
458
459
460/*
461 * This should be easy, if there is something there
462 * we return it, otherwise we block.
463 */
464
Ying Xue1b784142015-03-02 15:37:48 +0800465static int rawv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
466 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100469 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct sk_buff *skb;
471 size_t copied;
472 int err;
473
474 if (flags & MSG_OOB)
475 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100478 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Brian Haley4b340ae2010-04-23 11:26:09 +0000480 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100481 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 skb = skb_recv_datagram(sk, flags, noblock, &err);
484 if (!skb)
485 goto out;
486
487 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900488 if (copied > len) {
489 copied = len;
490 msg->msg_flags |= MSG_TRUNC;
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Herbert Xu60476372007-04-09 11:59:39 -0700493 if (skb_csum_unnecessary(skb)) {
David S. Miller51f3d022014-11-05 16:46:40 -0500494 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800496 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto csum_copy_err;
David S. Miller51f3d022014-11-05 16:46:40 -0500498 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 } else {
Al Viro227158d2014-04-06 18:47:38 -0400500 err = skb_copy_and_csum_datagram_msg(skb, 0, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (err == -EINVAL)
502 goto csum_copy_err;
503 }
504 if (err)
505 goto out_free;
506
507 /* Copy the address. */
508 if (sin6) {
509 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700510 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000511 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 sin6->sin6_flowinfo = 0;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000513 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800514 inet6_iif(skb));
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100515 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517
Neil Horman3b885782009-10-12 13:26:31 -0700518 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000521 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 err = copied;
524 if (flags & MSG_TRUNC)
525 err = skb->len;
526
527out_free:
528 skb_free_datagram(sk, skb);
529out:
530 return err;
531
532csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800533 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* Error for blocking case is chosen to masquerade
536 as some normal condition.
537 */
538 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800539 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
David S. Miller4c9483b2011-03-12 16:22:43 -0500542static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700543 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 struct sk_buff *skb;
546 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700547 int offset;
548 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700549 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800550 __wsum tmp_csum;
551 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 if (!rp->checksum)
554 goto send;
555
Fabian Frederick43728fa2014-10-29 12:57:51 +0100556 skb = skb_peek(&sk->sk_write_queue);
557 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 goto out;
559
Herbert Xu357b40a2005-04-19 22:30:14 -0700560 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000561 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700562 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700564 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto out;
566 }
567
568 /* should be check HW csum miyazawa */
569 if (skb_queue_len(&sk->sk_write_queue) == 1) {
570 /*
571 * Only one fragment on the socket.
572 */
573 tmp_csum = skb->csum;
574 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700575 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 tmp_csum = 0;
577
578 skb_queue_walk(&sk->sk_write_queue, skb) {
579 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700580
581 if (csum_skb)
582 continue;
583
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700584 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700585 if (offset >= len) {
586 offset -= len;
587 continue;
588 }
589
590 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700592
593 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700596 offset += skb_transport_offset(skb);
Dave Jonesa98f9172016-12-22 11:16:22 -0500597 err = skb_copy_bits(skb, offset, &csum, 2);
598 if (err < 0) {
599 ip6_flush_pending_frames(sk);
600 goto out;
601 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700604 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800605 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
David S. Miller4c9483b2011-03-12 16:22:43 -0500607 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
608 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
David S. Miller4c9483b2011-03-12 16:22:43 -0500610 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800611 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700612
Himangi Saraogi8242fc32014-07-12 01:55:38 +0530613 BUG_ON(skb_store_bits(skb, offset, &csum, 2));
Herbert Xu357b40a2005-04-19 22:30:14 -0700614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615send:
616 err = ip6_push_pending_frames(sk);
617out:
618 return err;
619}
620
Al Viroc3c1a7d2014-11-27 19:36:28 -0500621static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500622 struct flowi6 *fl6, struct dst_entry **dstp,
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700623 unsigned int flags, const struct sockcm_cookie *sockc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Herbert Xu3320da82005-04-19 22:32:22 -0700625 struct ipv6_pinfo *np = inet6_sk(sk);
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500626 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 struct ipv6hdr *iph;
628 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000630 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000631 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
632 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Changli Gaod8d1f302010-06-10 23:31:35 -0700634 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500635 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return -EMSGSIZE;
637 }
Alexander Potapenko86f4c902017-05-03 17:06:58 +0200638 if (length < sizeof(struct ipv6hdr))
639 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (flags&MSG_PROBE)
641 goto out;
642
Johannes Bergf5184d22008-05-12 20:48:31 -0700643 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000644 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700645 flags & MSG_DONTWAIT, &err);
Ian Morris63159f22015-03-29 14:00:04 +0100646 if (!skb)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900647 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000648 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200650 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800652 skb->mark = sk->sk_mark;
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700653 skb->tstamp = sockc->transmit_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300655 skb_put(skb, length);
656 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700657 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 skb->ip_summed = CHECKSUM_NONE;
660
Julian Anastasov0dec8792017-02-06 23:14:16 +0200661 if (flags & MSG_CONFIRM)
662 skb_set_dst_pending_confirm(skb, 1);
663
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700664 skb->transport_header = skb->network_header;
Al Viro21226ab2014-11-28 15:48:29 -0500665 err = memcpy_from_msg(iph, msg, length);
Wei Wanga688caa2018-10-04 10:12:37 -0700666 if (err) {
667 err = -EFAULT;
668 kfree_skb(skb);
669 goto error;
670 }
671
672 skb_dst_set(skb, &rt->dst);
673 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
David Aherna8e3e1a2016-09-10 12:09:53 -0700675 /* if egress device is enslaved to an L3 master device pass the
676 * skb to its handler for processing
677 */
678 skb = l3mdev_ip6_out(sk, skb);
679 if (unlikely(!skb))
680 return 0;
681
Wei Wanga688caa2018-10-04 10:12:37 -0700682 /* Acquire rcu_read_lock() in case we need to use rt->rt6i_idev
683 * in the error path. Since skb has been freed, the dst could
684 * have been queued for deletion.
685 */
686 rcu_read_lock();
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500687 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500688 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500689 NULL, rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700691 err = net_xmit_errno(err);
Wei Wanga688caa2018-10-04 10:12:37 -0700692 if (err) {
693 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
694 rcu_read_unlock();
695 goto error_check;
696 }
697 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698out:
699 return 0;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701error:
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500702 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Wei Wanga688caa2018-10-04 10:12:37 -0700703error_check:
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700704 if (err == -ENOBUFS && !np->recverr)
705 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900706 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Al Viro19e3c662014-11-24 12:10:46 -0500709struct raw6_frag_vec {
710 struct msghdr *msg;
711 int hlen;
712 char c[4];
713};
714
715static int rawv6_probe_proto_opt(struct raw6_frag_vec *rfv, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Al Viro19e3c662014-11-24 12:10:46 -0500717 int err = 0;
718 switch (fl6->flowi6_proto) {
719 case IPPROTO_ICMPV6:
720 rfv->hlen = 2;
721 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
722 if (!err) {
723 fl6->fl6_icmp_type = rfv->c[0];
724 fl6->fl6_icmp_code = rfv->c[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
Al Viro19e3c662014-11-24 12:10:46 -0500726 break;
727 case IPPROTO_MH:
728 rfv->hlen = 4;
729 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
730 if (!err)
731 fl6->fl6_mh_type = rfv->c[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Al Viro19e3c662014-11-24 12:10:46 -0500733 return err;
734}
735
736static int raw6_getfrag(void *from, char *to, int offset, int len, int odd,
737 struct sk_buff *skb)
738{
739 struct raw6_frag_vec *rfv = from;
740
741 if (offset < rfv->hlen) {
742 int copy = min(rfv->hlen - offset, len);
743
744 if (skb->ip_summed == CHECKSUM_PARTIAL)
745 memcpy(to, rfv->c + offset, copy);
746 else
747 skb->csum = csum_block_add(
748 skb->csum,
749 csum_partial_copy_nocheck(rfv->c + offset,
750 to, copy, 0),
751 odd);
752
753 odd = 0;
754 offset += copy;
755 to += copy;
756 len -= copy;
757
758 if (!len)
759 return 0;
760 }
761
762 offset -= rfv->hlen;
763
Al Virof69e6d12014-11-24 13:23:40 -0500764 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Ying Xue1b784142015-03-02 15:37:48 +0800767static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800769 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 struct ipv6_txoptions opt_space;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100771 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000772 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct inet_sock *inet = inet_sk(sk);
774 struct ipv6_pinfo *np = inet6_sk(sk);
775 struct raw6_sock *rp = raw6_sk(sk);
776 struct ipv6_txoptions *opt = NULL;
777 struct ip6_flowlabel *flowlabel = NULL;
778 struct dst_entry *dst = NULL;
Al Viro19e3c662014-11-24 12:10:46 -0500779 struct raw6_frag_vec rfv;
David S. Miller4c9483b2011-03-12 16:22:43 -0500780 struct flowi6 fl6;
Wei Wang26879da2016-05-02 21:40:07 -0700781 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 int addr_len = msg->msg_namelen;
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
796 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900797 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500799 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
David S. Miller4c9483b2011-03-12 16:22:43 -0500801 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900802 fl6.flowi6_uid = sk->sk_uid;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800803
Willem de Bruijnb515430a2018-07-06 10:12:55 -0400804 ipcm6_init(&ipc6);
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400805 ipc6.sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900808 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return -EINVAL;
810
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900811 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000812 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /* port is the proto value [0..255] carried in nexthdr */
815 proto = ntohs(sin6->sin6_port);
816
817 if (!proto)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000818 proto = inet->inet_num;
819 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000820 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000823 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 daddr = &sin6->sin6_addr;
826 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500827 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
828 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
829 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +0100830 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 }
834
835 /*
836 * Otherwise it will be difficult to maintain
837 * sk->sk_dst_cache.
838 */
839 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700840 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
841 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 if (addr_len >= sizeof(struct sockaddr_in6) &&
844 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000845 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500846 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900848 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900850
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000851 proto = inet->inet_num;
Eric Dumazetefe42082013-10-03 15:42:29 -0700852 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500853 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
David S. Miller4c9483b2011-03-12 16:22:43 -0500856 if (fl6.flowi6_oif == 0)
857 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 if (msg->msg_controllen) {
860 opt = &opt_space;
861 memset(opt, 0, sizeof(struct ipv6_txoptions));
862 opt->tot_len = sizeof(struct ipv6_txoptions);
Wei Wang26879da2016-05-02 21:40:07 -0700863 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400865 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (err < 0) {
867 fl6_sock_release(flowlabel);
868 return err;
869 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500870 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
871 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +0100872 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -EINVAL;
874 }
875 if (!(opt->opt_nflen|opt->opt_flen))
876 opt = NULL;
877 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800878 if (!opt) {
879 opt = txopt_get(np);
880 opt_to_free = opt;
Wei Wang26879da2016-05-02 21:40:07 -0700881 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900882 if (flowlabel)
883 opt = fl6_merge_options(&opt_space, flowlabel, opt);
884 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
David S. Miller4c9483b2011-03-12 16:22:43 -0500886 fl6.flowi6_proto = proto;
Al Viro19e3c662014-11-24 12:10:46 -0500887 rfv.msg = msg;
888 rfv.hlen = 0;
889 err = rawv6_probe_proto_opt(&rfv, &fl6);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800890 if (err)
891 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900892
Brian Haley876c7f42008-04-11 00:38:24 -0400893 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000894 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400895 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500896 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
897 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000898 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
David S. Miller4c9483b2011-03-12 16:22:43 -0500900 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
David S. Miller4c9483b2011-03-12 16:22:43 -0500902 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
903 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000904 else if (!fl6.flowi6_oif)
905 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500906 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700908 if (inet->hdrincl)
909 fl6.flowi6_flags |= FLOWI_FLAG_KNOWN_NH;
910
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +0200911 if (ipc6.tclass < 0)
912 ipc6.tclass = np->tclass;
913
914 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
915
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200916 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800917 if (IS_ERR(dst)) {
918 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700920 }
Wei Wang26879da2016-05-02 21:40:07 -0700921 if (ipc6.hlimit < 0)
922 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Wei Wang26879da2016-05-02 21:40:07 -0700924 if (ipc6.dontfrag < 0)
925 ipc6.dontfrag = np->dontfrag;
Brian Haley13b52cd2010-04-23 11:26:08 +0000926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (msg->msg_flags&MSG_CONFIRM)
928 goto do_confirm;
929
930back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000931 if (inet->hdrincl)
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700932 err = rawv6_send_hdrinc(sk, msg, len, &fl6, &dst,
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400933 msg->msg_flags, &ipc6.sockc);
Eric Dumazet1789a642010-06-03 22:23:57 +0000934 else {
Wei Wang26879da2016-05-02 21:40:07 -0700935 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 lock_sock(sk);
Al Viro19e3c662014-11-24 12:10:46 -0500937 err = ip6_append_data(sk, raw6_getfrag, &rfv,
Wei Wang26879da2016-05-02 21:40:07 -0700938 len, 0, &ipc6, &fl6, (struct rt6_info *)dst,
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400939 msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (err)
942 ip6_flush_pending_frames(sk);
943 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500944 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700945 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800948 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900949out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800951 txopt_put(opt_to_free);
Ian Morris67ba4152014-08-24 21:53:10 +0100952 return err < 0 ? err : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +0200954 if (msg->msg_flags & MSG_PROBE)
955 dst_confirm_neigh(dst, &fl6.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (!(msg->msg_flags & MSG_PROBE) || len)
957 goto back_from_confirm;
958 err = 0;
959 goto done;
960}
961
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900962static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 char __user *optval, int optlen)
964{
965 switch (optname) {
966 case ICMPV6_FILTER:
967 if (optlen > sizeof(struct icmp6_filter))
968 optlen = sizeof(struct icmp6_filter);
969 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
970 return -EFAULT;
971 return 0;
972 default:
973 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 return 0;
977}
978
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900979static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 char __user *optval, int __user *optlen)
981{
982 int len;
983
984 switch (optname) {
985 case ICMPV6_FILTER:
986 if (get_user(len, optlen))
987 return -EFAULT;
988 if (len < 0)
989 return -EINVAL;
990 if (len > sizeof(struct icmp6_filter))
991 len = sizeof(struct icmp6_filter);
992 if (put_user(len, optlen))
993 return -EFAULT;
994 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
995 return -EFAULT;
996 return 0;
997 default:
998 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 return 0;
1002}
1003
1004
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001005static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001006 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 struct raw6_sock *rp = raw6_sk(sk);
1009 int val;
1010
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001011 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return -EFAULT;
1013
1014 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001015 case IPV6_HDRINCL:
1016 if (sk->sk_type != SOCK_RAW)
1017 return -EINVAL;
1018 inet_sk(sk)->hdrincl = !!val;
1019 return 0;
Joe Perches207ec0a2011-07-01 09:43:08 +00001020 case IPV6_CHECKSUM:
1021 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
1022 level == IPPROTO_IPV6) {
1023 /*
1024 * RFC3542 tells that IPV6_CHECKSUM socket
1025 * option in the IPPROTO_IPV6 level is not
1026 * allowed on ICMPv6 sockets.
1027 * If you want to set it, use IPPROTO_RAW
1028 * level IPV6_CHECKSUM socket option
1029 * (Linux extension).
1030 */
1031 return -EINVAL;
1032 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001033
Joe Perches207ec0a2011-07-01 09:43:08 +00001034 /* You may get strange result with a positive odd offset;
1035 RFC2292bis agrees with me. */
1036 if (val > 0 && (val&1))
1037 return -EINVAL;
1038 if (val < 0) {
1039 rp->checksum = 0;
1040 } else {
1041 rp->checksum = 1;
1042 rp->offset = val;
1043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Joe Perches207ec0a2011-07-01 09:43:08 +00001045 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Joe Perches207ec0a2011-07-01 09:43:08 +00001047 default:
1048 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050}
1051
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001052static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001053 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Joe Perches207ec0a2011-07-01 09:43:08 +00001055 switch (level) {
1056 case SOL_RAW:
1057 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Joe Perches207ec0a2011-07-01 09:43:08 +00001059 case SOL_ICMPV6:
1060 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1061 return -EOPNOTSUPP;
1062 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1063 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001064 if (optname == IPV6_CHECKSUM ||
1065 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001066 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001067 /* fall through */
Joe Perches207ec0a2011-07-01 09:43:08 +00001068 default:
1069 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001070 }
1071
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001072 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1073}
1074
1075#ifdef CONFIG_COMPAT
1076static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001077 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001078{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001079 switch (level) {
1080 case SOL_RAW:
1081 break;
1082 case SOL_ICMPV6:
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001083 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001084 return -EOPNOTSUPP;
1085 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1086 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001087 if (optname == IPV6_CHECKSUM ||
1088 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001089 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001090 /* fall through */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001091 default:
1092 return compat_ipv6_setsockopt(sk, level, optname,
1093 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001094 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001095 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1096}
1097#endif
1098
1099static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1100 char __user *optval, int __user *optlen)
1101{
1102 struct raw6_sock *rp = raw6_sk(sk);
1103 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Ian Morris67ba4152014-08-24 21:53:10 +01001105 if (get_user(len, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return -EFAULT;
1107
1108 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001109 case IPV6_HDRINCL:
1110 val = inet_sk(sk)->hdrincl;
1111 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001113 /*
1114 * We allow getsockopt() for IPPROTO_IPV6-level
1115 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1116 * since RFC3542 is silent about it.
1117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (rp->checksum == 0)
1119 val = -1;
1120 else
1121 val = rp->offset;
1122 break;
1123
1124 default:
1125 return -ENOPROTOOPT;
1126 }
1127
1128 len = min_t(unsigned int, sizeof(int), len);
1129
1130 if (put_user(len, optlen))
1131 return -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001132 if (copy_to_user(optval, &val, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return -EFAULT;
1134 return 0;
1135}
1136
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001137static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1138 char __user *optval, int __user *optlen)
1139{
Joe Perches207ec0a2011-07-01 09:43:08 +00001140 switch (level) {
1141 case SOL_RAW:
1142 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001143
Joe Perches207ec0a2011-07-01 09:43:08 +00001144 case SOL_ICMPV6:
1145 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1146 return -EOPNOTSUPP;
1147 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1148 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001149 if (optname == IPV6_CHECKSUM ||
1150 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001151 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001152 /* fall through */
Joe Perches207ec0a2011-07-01 09:43:08 +00001153 default:
1154 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001155 }
1156
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001157 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1158}
1159
1160#ifdef CONFIG_COMPAT
1161static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001162 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001163{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001164 switch (level) {
1165 case SOL_RAW:
1166 break;
1167 case SOL_ICMPV6:
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001168 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001169 return -EOPNOTSUPP;
1170 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1171 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001172 if (optname == IPV6_CHECKSUM ||
1173 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001174 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001175 /* fall through */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001176 default:
1177 return compat_ipv6_getsockopt(sk, level, optname,
1178 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001179 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001180 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1181}
1182#endif
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1185{
Joe Perches207ec0a2011-07-01 09:43:08 +00001186 switch (cmd) {
1187 case SIOCOUTQ: {
1188 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001189
Joe Perches207ec0a2011-07-01 09:43:08 +00001190 return put_user(amount, (int __user *)arg);
1191 }
1192 case SIOCINQ: {
1193 struct sk_buff *skb;
1194 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Joe Perches207ec0a2011-07-01 09:43:08 +00001196 spin_lock_bh(&sk->sk_receive_queue.lock);
1197 skb = skb_peek(&sk->sk_receive_queue);
Ian Morris53b24b82015-03-29 14:00:05 +01001198 if (skb)
Jamie Bainbridge105f5522017-04-26 10:43:27 +10001199 amount = skb->len;
Joe Perches207ec0a2011-07-01 09:43:08 +00001200 spin_unlock_bh(&sk->sk_receive_queue.lock);
1201 return put_user(amount, (int __user *)arg);
1202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Joe Perches207ec0a2011-07-01 09:43:08 +00001204 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001205#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001206 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001207#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001208 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001209#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211}
1212
David S. Millere2d57762011-02-03 17:59:32 -08001213#ifdef CONFIG_COMPAT
1214static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1215{
1216 switch (cmd) {
1217 case SIOCOUTQ:
1218 case SIOCINQ:
1219 return -ENOIOCTLCMD;
1220 default:
1221#ifdef CONFIG_IPV6_MROUTE
1222 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1223#else
1224 return -ENOIOCTLCMD;
1225#endif
1226 }
1227}
1228#endif
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230static void rawv6_close(struct sock *sk, long timeout)
1231{
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001232 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001233 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001234 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 sk_common_release(sk);
1236}
1237
Brian Haley7d06b2e2008-06-14 17:04:49 -07001238static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001239{
1240 lock_sock(sk);
1241 ip6_flush_pending_frames(sk);
1242 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001243
Brian Haley7d06b2e2008-06-14 17:04:49 -07001244 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247static int rawv6_init_sk(struct sock *sk)
1248{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001249 struct raw6_sock *rp = raw6_sk(sk);
1250
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001251 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001252 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 rp->checksum = 1;
1254 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001255 break;
1256 case IPPROTO_MH:
1257 rp->checksum = 1;
1258 rp->offset = 4;
1259 break;
1260 default:
1261 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
1266struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001267 .name = "RAWv6",
1268 .owner = THIS_MODULE,
1269 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001270 .destroy = raw6_destroy,
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +01001271 .connect = ip6_datagram_connect_v6_only,
Eric Dumazet286c72d2016-10-20 09:39:40 -07001272 .disconnect = __udp_disconnect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001273 .ioctl = rawv6_ioctl,
1274 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001275 .setsockopt = rawv6_setsockopt,
1276 .getsockopt = rawv6_getsockopt,
1277 .sendmsg = rawv6_sendmsg,
1278 .recvmsg = rawv6_recvmsg,
1279 .bind = rawv6_bind,
1280 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001281 .hash = raw_hash_sk,
1282 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001283 .obj_size = sizeof(struct raw6_sock),
David Windsor8c2bc892017-08-24 16:49:14 -07001284 .useroffset = offsetof(struct raw6_sock, filter),
1285 .usersize = sizeof_field(struct raw6_sock, filter),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001286 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001287#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001288 .compat_setsockopt = compat_rawv6_setsockopt,
1289 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001290 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001291#endif
Cyrill Gorcunov432490f2016-10-21 13:03:44 +03001292 .diag_destroy = raw_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293};
1294
1295#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static int raw6_seq_show(struct seq_file *seq, void *v)
1297{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001298 if (v == SEQ_START_TOKEN) {
1299 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1300 } else {
1301 struct sock *sp = v;
1302 __u16 srcp = inet_sk(sp)->inet_num;
1303 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1304 raw_seq_private(seq)->bucket);
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return 0;
1307}
1308
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001309static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001310 .start = raw_seq_start,
1311 .next = raw_seq_next,
1312 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 .show = raw6_seq_show,
1314};
1315
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001316static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001317{
Christoph Hellwigc3506372018-04-10 19:42:55 +02001318 if (!proc_create_net_data("raw6", 0444, net->proc_net, &raw6_seq_ops,
1319 sizeof(struct raw_iter_state), &raw_v6_hashinfo))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001320 return -ENOMEM;
1321
1322 return 0;
1323}
1324
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001325static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001326{
Gao fengece31ff2013-02-18 01:34:56 +00001327 remove_proc_entry("raw6", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001328}
1329
1330static struct pernet_operations raw6_net_ops = {
1331 .init = raw6_init_net,
1332 .exit = raw6_exit_net,
1333};
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335int __init raw6_proc_init(void)
1336{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001337 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340void raw6_proc_exit(void)
1341{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001342 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
1344#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001345
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001346/* Same as inet6_dgram_ops, sans udp_poll. */
Eric Dumazet77d4b1d2017-06-03 09:29:25 -07001347const struct proto_ops inet6_sockraw_ops = {
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001348 .family = PF_INET6,
1349 .owner = THIS_MODULE,
1350 .release = inet6_release,
1351 .bind = inet6_bind,
1352 .connect = inet_dgram_connect, /* ok */
1353 .socketpair = sock_no_socketpair, /* a do nothing */
1354 .accept = sock_no_accept, /* a do nothing */
1355 .getname = inet6_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001356 .poll = datagram_poll, /* ok */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001357 .ioctl = inet6_ioctl, /* must change */
1358 .listen = sock_no_listen, /* ok */
1359 .shutdown = inet_shutdown, /* ok */
1360 .setsockopt = sock_common_setsockopt, /* ok */
1361 .getsockopt = sock_common_getsockopt, /* ok */
1362 .sendmsg = inet_sendmsg, /* ok */
1363 .recvmsg = sock_common_recvmsg, /* ok */
1364 .mmap = sock_no_mmap,
1365 .sendpage = sock_no_sendpage,
1366#ifdef CONFIG_COMPAT
1367 .compat_setsockopt = compat_sock_common_setsockopt,
1368 .compat_getsockopt = compat_sock_common_getsockopt,
1369#endif
1370};
1371
1372static struct inet_protosw rawv6_protosw = {
1373 .type = SOCK_RAW,
1374 .protocol = IPPROTO_IP, /* wild card */
1375 .prot = &rawv6_prot,
1376 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001377 .flags = INET_PROTOSW_REUSE,
1378};
1379
1380int __init rawv6_init(void)
1381{
Julia Lawall3d2f6d42015-05-28 23:02:17 +02001382 return inet6_register_protosw(&rawv6_protosw);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001383}
1384
Daniel Lezcano09f77092007-12-13 05:34:58 -08001385void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001386{
1387 inet6_unregister_protosw(&rawv6_protosw);
1388}