blob: 84dbe21b71e5ea39bda5fc73003501e0bb30e6f8 [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
Duncan Eastoe70554202018-11-07 15:36:06 +000089 if (!raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if,
90 dif, sdif))
Andrew McDonald0bd1b592005-08-09 19:44:42 -070091 continue;
92
Eric Dumazetefe42082013-10-03 15:42:29 -070093 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
94 if (ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 goto found;
96 if (is_multicast &&
97 inet6_mc_check(sk, loc_addr, rmt_addr))
98 goto found;
99 continue;
100 }
101 goto found;
102 }
103 sk = NULL;
104found:
105 return sk;
106}
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300107EXPORT_SYMBOL_GPL(__raw_v6_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/*
110 * 0 - deliver
111 * 1 - block
112 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000113static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Werner Almesberger9cc08af2013-08-02 10:51:19 -0300115 struct icmp6hdr _hdr;
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000116 const struct icmp6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300118 /* We require only the four bytes of the ICMPv6 header, not any
119 * additional bytes of message body in "struct icmp6hdr".
120 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000121 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300122 ICMPV6_HDRLEN, &_hdr);
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000123 if (hdr) {
124 const __u32 *data = &raw6_sk(sk)->filter.data[0];
125 unsigned int type = hdr->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000127 return (data[type >> 5] & (1U << (type & 31))) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000129 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Amerigo Wang07a93622012-10-29 16:23:10 +0000132#if IS_ENABLED(CONFIG_IPV6_MIP6)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000133typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700134
Eric Dumazetf2eda472011-01-20 07:37:53 +0000135static mh_filter_t __rcu *mh_filter __read_mostly;
136
137int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700138{
Eric Dumazetcf778b02012-01-12 04:41:32 +0000139 rcu_assign_pointer(mh_filter, filter);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700140 return 0;
141}
142EXPORT_SYMBOL(rawv6_mh_filter_register);
143
Eric Dumazetf2eda472011-01-20 07:37:53 +0000144int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700145{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000146 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700147 synchronize_rcu();
148 return 0;
149}
150EXPORT_SYMBOL(rawv6_mh_filter_unregister);
151
152#endif
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/*
155 * demultiplex raw sockets.
156 * (should consider queueing the skb in the sock receive_queue
157 * without calling rawv6.c)
158 *
159 * Caller owns SKB so we must make clones.
160 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000161static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000163 const struct in6_addr *saddr;
164 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct sock *sk;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000166 bool delivered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 __u8 hash;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800168 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700170 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 daddr = saddr + 1;
172
David S. Millerf9242b62012-06-19 18:56:21 -0700173 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800175 read_lock(&raw_v6_hashinfo.lock);
176 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Ian Morris63159f22015-03-29 14:00:04 +0100178 if (!sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 goto out;
180
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900181 net = dev_net(skb->dev);
David Ahern5108ab42017-08-07 08:44:22 -0700182 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr,
183 inet6_iif(skb), inet6_sdif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700186 int filtered;
187
Eric Dumazeta50feda2012-05-18 18:57:34 +0000188 delivered = true;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700189 switch (nexthdr) {
190 case IPPROTO_ICMPV6:
191 filtered = icmpv6_filter(sk, skb);
192 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700193
Amerigo Wang07a93622012-10-29 16:23:10 +0000194#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700195 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700196 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700197 /* XXX: To validate MH only once for each packet,
198 * this is placed here. It should be after checking
199 * xfrm policy, however it doesn't. The checking xfrm
200 * policy is placed in rawv6_rcv() because it is
201 * required for each socket.
202 */
Eric Dumazetf2eda472011-01-20 07:37:53 +0000203 mh_filter_t *filter;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700204
205 filter = rcu_dereference(mh_filter);
Eric Dumazetf2eda472011-01-20 07:37:53 +0000206 filtered = filter ? (*filter)(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700207 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700208 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700209#endif
210 default:
211 filtered = 0;
212 break;
213 }
214
215 if (filtered < 0)
216 break;
217 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
219
220 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221 if (clone) {
222 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800226 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
David Ahern5108ab42017-08-07 08:44:22 -0700227 inet6_iif(skb), inet6_sdif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800230 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700231 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Eric Dumazeta50feda2012-05-18 18:57:34 +0000234bool raw6_local_deliver(struct sk_buff *skb, int nexthdr)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800235{
236 struct sock *raw_sk;
237
David S. Millerf9242b62012-06-19 18:56:21 -0700238 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (RAW_HTABLE_SIZE - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800239 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
240 raw_sk = NULL;
241
242 return raw_sk != NULL;
243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/* This cleans up af_inet6 a bit. -DaveM */
246static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
247{
248 struct inet_sock *inet = inet_sk(sk);
249 struct ipv6_pinfo *np = inet6_sk(sk);
250 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4ad2006-11-14 20:56:00 -0800251 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int addr_type;
253 int err;
254
255 if (addr_len < SIN6_LEN_RFC2133)
256 return -EINVAL;
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +0100257
258 if (addr->sin6_family != AF_INET6)
259 return -EINVAL;
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 addr_type = ipv6_addr_type(&addr->sin6_addr);
262
263 /* Raw sockets are IPv6 only */
264 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000265 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 lock_sock(sk);
268
269 err = -EINVAL;
270 if (sk->sk_state != TCP_CLOSE)
271 goto out;
272
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000273 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* Check if the address belongs to the host. */
275 if (addr_type != IPV6_ADDR_ANY) {
276 struct net_device *dev = NULL;
277
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000278 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (addr_len >= sizeof(struct sockaddr_in6) &&
280 addr->sin6_scope_id) {
281 /* Override any existing binding, if another
282 * one is supplied by user.
283 */
284 sk->sk_bound_dev_if = addr->sin6_scope_id;
285 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* Binding to link-local address requires an interface */
288 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000289 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000291 err = -ENODEV;
292 dev = dev_get_by_index_rcu(sock_net(sk),
293 sk->sk_bound_dev_if);
294 if (!dev)
295 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* ipv4 addr of the socket is invalid. Only the
299 * unspecified and mapped address have a v4 equivalent.
300 */
301 v4addr = LOOPBACK4_IPV6;
Tom Herbert35a256f2015-07-08 16:58:22 -0700302 if (!(addr_type & IPV6_ADDR_MULTICAST) &&
303 !sock_net(sk)->ipv6.sysctl.ip_nonlocal_bind) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900305 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800306 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000307 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000312 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Eric Dumazetefe42082013-10-03 15:42:29 -0700313 sk->sk_v6_rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000315 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000317out_unlock:
318 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319out:
320 release_sock(sk);
321 return err;
322}
323
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800324static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700326 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct inet_sock *inet = inet_sk(sk);
329 struct ipv6_pinfo *np = inet6_sk(sk);
330 int err;
331 int harderr;
332
333 /* Report error on raw socket, if:
334 1. User requested recverr.
335 2. Socket is connected (otherwise the error indication
336 is useless without recverr and error is hard.
337 */
338 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
339 return;
340
341 harderr = icmpv6_err_convert(type, code, &err);
David S. Miller81aded22012-06-15 14:54:11 -0700342 if (type == ICMPV6_PKT_TOOBIG) {
343 ip6_sk_update_pmtu(skb, sk, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
David S. Miller81aded22012-06-15 14:54:11 -0700345 }
Duan Jiong8d65b112013-09-20 18:21:25 +0800346 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700347 ip6_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800348 return;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (np->recverr) {
351 u8 *payload = skb->data;
352 if (!inet->hdrincl)
353 payload += offset;
354 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
355 }
356
357 if (np->recverr || harderr) {
358 sk->sk_err = err;
359 sk->sk_error_report(sk);
360 }
361}
362
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800363void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700364 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800365{
366 struct sock *sk;
367 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000368 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800369 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800370
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800371 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800372
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800373 read_lock(&raw_v6_hashinfo.lock);
374 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Ian Morris53b24b82015-03-29 14:00:05 +0100375 if (sk) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900376 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000377 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900378 saddr = &ip6h->saddr;
379 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900380 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800381
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800382 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
David Ahern5108ab42017-08-07 08:44:22 -0700383 inet6_iif(skb), inet6_iif(skb)))) {
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800384 rawv6_err(sk, skb, NULL, type, code,
385 inner_offset, info);
386 sk = sk_next(sk);
387 }
388 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800389 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800390}
391
Eric Dumazet33d480c2011-08-11 19:30:52 +0000392static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000394 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800395 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800396 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800397 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700398 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
401 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000402 skb_dst_drop(skb);
403 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700405 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
408 return 0;
409}
410
411/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900412 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900414 * just to queue the skb...
415 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * should call raw_rcv for demultiplexing
417 */
418int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
419{
420 struct inet_sock *inet = inet_sk(sk);
421 struct raw6_sock *rp = raw6_sk(sk);
422
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900423 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800424 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900425 kfree_skb(skb);
426 return NET_RX_DROP;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 if (!rp->checksum)
430 skb->ip_summed = CHECKSUM_UNNECESSARY;
431
Patrick McHardy84fa7932006-08-29 16:44:56 -0700432 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700433 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300434 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700435 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
436 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000437 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Herbert Xu60476372007-04-09 11:59:39 -0700440 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700441 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
442 &ipv6_hdr(skb)->daddr,
443 skb->len,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000444 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800447 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800448 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700450 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
454 rawv6_rcv_skb(sk, skb);
455 return 0;
456}
457
458
459/*
460 * This should be easy, if there is something there
461 * we return it, otherwise we block.
462 */
463
Ying Xue1b784142015-03-02 15:37:48 +0800464static int rawv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
465 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100468 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct sk_buff *skb;
470 size_t copied;
471 int err;
472
473 if (flags & MSG_OOB)
474 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100477 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Brian Haley4b340ae2010-04-23 11:26:09 +0000479 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100480 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 skb = skb_recv_datagram(sk, flags, noblock, &err);
483 if (!skb)
484 goto out;
485
486 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900487 if (copied > len) {
488 copied = len;
489 msg->msg_flags |= MSG_TRUNC;
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Herbert Xu60476372007-04-09 11:59:39 -0700492 if (skb_csum_unnecessary(skb)) {
David S. Miller51f3d022014-11-05 16:46:40 -0500493 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800495 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto csum_copy_err;
David S. Miller51f3d022014-11-05 16:46:40 -0500497 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 } else {
Al Viro227158d2014-04-06 18:47:38 -0400499 err = skb_copy_and_csum_datagram_msg(skb, 0, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (err == -EINVAL)
501 goto csum_copy_err;
502 }
503 if (err)
504 goto out_free;
505
506 /* Copy the address. */
507 if (sin6) {
508 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700509 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000510 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 sin6->sin6_flowinfo = 0;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000512 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800513 inet6_iif(skb));
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100514 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
Neil Horman3b885782009-10-12 13:26:31 -0700517 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000520 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 err = copied;
523 if (flags & MSG_TRUNC)
524 err = skb->len;
525
526out_free:
527 skb_free_datagram(sk, skb);
528out:
529 return err;
530
531csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800532 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* Error for blocking case is chosen to masquerade
535 as some normal condition.
536 */
537 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800538 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
David S. Miller4c9483b2011-03-12 16:22:43 -0500541static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700542 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 struct sk_buff *skb;
545 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700546 int offset;
547 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700548 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800549 __wsum tmp_csum;
550 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 if (!rp->checksum)
553 goto send;
554
Fabian Frederick43728fa2014-10-29 12:57:51 +0100555 skb = skb_peek(&sk->sk_write_queue);
556 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 goto out;
558
Herbert Xu357b40a2005-04-19 22:30:14 -0700559 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000560 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700561 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700563 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 goto out;
565 }
566
567 /* should be check HW csum miyazawa */
568 if (skb_queue_len(&sk->sk_write_queue) == 1) {
569 /*
570 * Only one fragment on the socket.
571 */
572 tmp_csum = skb->csum;
573 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700574 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 tmp_csum = 0;
576
577 skb_queue_walk(&sk->sk_write_queue, skb) {
578 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700579
580 if (csum_skb)
581 continue;
582
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700583 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700584 if (offset >= len) {
585 offset -= len;
586 continue;
587 }
588
589 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700591
592 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700595 offset += skb_transport_offset(skb);
Dave Jonesa98f9172016-12-22 11:16:22 -0500596 err = skb_copy_bits(skb, offset, &csum, 2);
597 if (err < 0) {
598 ip6_flush_pending_frames(sk);
599 goto out;
600 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700603 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800604 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
David S. Miller4c9483b2011-03-12 16:22:43 -0500606 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
607 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
David S. Miller4c9483b2011-03-12 16:22:43 -0500609 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800610 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700611
Himangi Saraogi8242fc32014-07-12 01:55:38 +0530612 BUG_ON(skb_store_bits(skb, offset, &csum, 2));
Herbert Xu357b40a2005-04-19 22:30:14 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614send:
615 err = ip6_push_pending_frames(sk);
616out:
617 return err;
618}
619
Al Viroc3c1a7d2014-11-27 19:36:28 -0500620static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500621 struct flowi6 *fl6, struct dst_entry **dstp,
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700622 unsigned int flags, const struct sockcm_cookie *sockc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Herbert Xu3320da82005-04-19 22:32:22 -0700624 struct ipv6_pinfo *np = inet6_sk(sk);
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500625 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct ipv6hdr *iph;
627 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000629 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000630 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
631 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Changli Gaod8d1f302010-06-10 23:31:35 -0700633 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500634 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return -EMSGSIZE;
636 }
Alexander Potapenko86f4c902017-05-03 17:06:58 +0200637 if (length < sizeof(struct ipv6hdr))
638 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (flags&MSG_PROBE)
640 goto out;
641
Johannes Bergf5184d22008-05-12 20:48:31 -0700642 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000643 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700644 flags & MSG_DONTWAIT, &err);
Ian Morris63159f22015-03-29 14:00:04 +0100645 if (!skb)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900646 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000647 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200649 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800651 skb->mark = sk->sk_mark;
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700652 skb->tstamp = sockc->transmit_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300654 skb_put(skb, length);
655 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700656 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 skb->ip_summed = CHECKSUM_NONE;
659
Willem de Bruijn8f932f72018-12-17 12:24:00 -0500660 skb_setup_tx_timestamp(skb, sockc->tsflags);
Willem de Bruijnfbfb2322018-12-17 12:23:59 -0500661
Julian Anastasov0dec8792017-02-06 23:14:16 +0200662 if (flags & MSG_CONFIRM)
663 skb_set_dst_pending_confirm(skb, 1);
664
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700665 skb->transport_header = skb->network_header;
Al Viro21226ab2014-11-28 15:48:29 -0500666 err = memcpy_from_msg(iph, msg, length);
Wei Wanga688caa2018-10-04 10:12:37 -0700667 if (err) {
668 err = -EFAULT;
669 kfree_skb(skb);
670 goto error;
671 }
672
673 skb_dst_set(skb, &rt->dst);
674 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David Aherna8e3e1a2016-09-10 12:09:53 -0700676 /* if egress device is enslaved to an L3 master device pass the
677 * skb to its handler for processing
678 */
679 skb = l3mdev_ip6_out(sk, skb);
680 if (unlikely(!skb))
681 return 0;
682
Wei Wanga688caa2018-10-04 10:12:37 -0700683 /* Acquire rcu_read_lock() in case we need to use rt->rt6i_idev
684 * in the error path. Since skb has been freed, the dst could
685 * have been queued for deletion.
686 */
687 rcu_read_lock();
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500688 IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500689 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500690 NULL, rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700692 err = net_xmit_errno(err);
Wei Wanga688caa2018-10-04 10:12:37 -0700693 if (err) {
694 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
695 rcu_read_unlock();
696 goto error_check;
697 }
698 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699out:
700 return 0;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702error:
Eric W. Biedermanadb28c92015-09-15 20:04:11 -0500703 IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Wei Wanga688caa2018-10-04 10:12:37 -0700704error_check:
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700705 if (err == -ENOBUFS && !np->recverr)
706 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900707 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Al Viro19e3c662014-11-24 12:10:46 -0500710struct raw6_frag_vec {
711 struct msghdr *msg;
712 int hlen;
713 char c[4];
714};
715
716static int rawv6_probe_proto_opt(struct raw6_frag_vec *rfv, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Al Viro19e3c662014-11-24 12:10:46 -0500718 int err = 0;
719 switch (fl6->flowi6_proto) {
720 case IPPROTO_ICMPV6:
721 rfv->hlen = 2;
722 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
723 if (!err) {
724 fl6->fl6_icmp_type = rfv->c[0];
725 fl6->fl6_icmp_code = rfv->c[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
Al Viro19e3c662014-11-24 12:10:46 -0500727 break;
728 case IPPROTO_MH:
729 rfv->hlen = 4;
730 err = memcpy_from_msg(rfv->c, rfv->msg, rfv->hlen);
731 if (!err)
732 fl6->fl6_mh_type = rfv->c[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Al Viro19e3c662014-11-24 12:10:46 -0500734 return err;
735}
736
737static int raw6_getfrag(void *from, char *to, int offset, int len, int odd,
738 struct sk_buff *skb)
739{
740 struct raw6_frag_vec *rfv = from;
741
742 if (offset < rfv->hlen) {
743 int copy = min(rfv->hlen - offset, len);
744
745 if (skb->ip_summed == CHECKSUM_PARTIAL)
746 memcpy(to, rfv->c + offset, copy);
747 else
748 skb->csum = csum_block_add(
749 skb->csum,
750 csum_partial_copy_nocheck(rfv->c + offset,
751 to, copy, 0),
752 odd);
753
754 odd = 0;
755 offset += copy;
756 to += copy;
757 len -= copy;
758
759 if (!len)
760 return 0;
761 }
762
763 offset -= rfv->hlen;
764
Al Virof69e6d12014-11-24 13:23:40 -0500765 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Ying Xue1b784142015-03-02 15:37:48 +0800768static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800770 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct ipv6_txoptions opt_space;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100772 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000773 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct inet_sock *inet = inet_sk(sk);
775 struct ipv6_pinfo *np = inet6_sk(sk);
776 struct raw6_sock *rp = raw6_sk(sk);
777 struct ipv6_txoptions *opt = NULL;
778 struct ip6_flowlabel *flowlabel = NULL;
779 struct dst_entry *dst = NULL;
Al Viro19e3c662014-11-24 12:10:46 -0500780 struct raw6_frag_vec rfv;
David S. Miller4c9483b2011-03-12 16:22:43 -0500781 struct flowi6 fl6;
Wei Wang26879da2016-05-02 21:40:07 -0700782 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 int addr_len = msg->msg_namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 u16 proto;
785 int err;
786
787 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700788 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700790 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return -EMSGSIZE;
792
793 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900794 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return -EOPNOTSUPP;
796
797 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900798 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500800 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
David S. Miller4c9483b2011-03-12 16:22:43 -0500802 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900803 fl6.flowi6_uid = sk->sk_uid;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800804
Willem de Bruijnb515430a2018-07-06 10:12:55 -0400805 ipcm6_init(&ipc6);
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400806 ipc6.sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900809 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return -EINVAL;
811
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900812 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000813 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /* port is the proto value [0..255] carried in nexthdr */
816 proto = ntohs(sin6->sin6_port);
817
818 if (!proto)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000819 proto = inet->inet_num;
820 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000821 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000824 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 daddr = &sin6->sin6_addr;
827 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500828 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
829 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
830 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +0100831 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834 }
835
836 /*
837 * Otherwise it will be difficult to maintain
838 * sk->sk_dst_cache.
839 */
840 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700841 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
842 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 if (addr_len >= sizeof(struct sockaddr_in6) &&
845 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000846 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500847 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900849 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900851
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000852 proto = inet->inet_num;
Eric Dumazetefe42082013-10-03 15:42:29 -0700853 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500854 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
David S. Miller4c9483b2011-03-12 16:22:43 -0500857 if (fl6.flowi6_oif == 0)
858 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 if (msg->msg_controllen) {
861 opt = &opt_space;
862 memset(opt, 0, sizeof(struct ipv6_txoptions));
863 opt->tot_len = sizeof(struct ipv6_txoptions);
Wei Wang26879da2016-05-02 21:40:07 -0700864 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400866 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (err < 0) {
868 fl6_sock_release(flowlabel);
869 return err;
870 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500871 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
872 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +0100873 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return -EINVAL;
875 }
876 if (!(opt->opt_nflen|opt->opt_flen))
877 opt = NULL;
878 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800879 if (!opt) {
880 opt = txopt_get(np);
881 opt_to_free = opt;
Wei Wang26879da2016-05-02 21:40:07 -0700882 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900883 if (flowlabel)
884 opt = fl6_merge_options(&opt_space, flowlabel, opt);
885 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
David S. Miller4c9483b2011-03-12 16:22:43 -0500887 fl6.flowi6_proto = proto;
Al Viro19e3c662014-11-24 12:10:46 -0500888 rfv.msg = msg;
889 rfv.hlen = 0;
890 err = rawv6_probe_proto_opt(&rfv, &fl6);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800891 if (err)
892 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900893
Brian Haley876c7f42008-04-11 00:38:24 -0400894 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000895 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400896 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500897 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
898 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000899 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
David S. Miller4c9483b2011-03-12 16:22:43 -0500901 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
David S. Miller4c9483b2011-03-12 16:22:43 -0500903 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
904 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000905 else if (!fl6.flowi6_oif)
906 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500907 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700909 if (inet->hdrincl)
910 fl6.flowi6_flags |= FLOWI_FLAG_KNOWN_NH;
911
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +0200912 if (ipc6.tclass < 0)
913 ipc6.tclass = np->tclass;
914
915 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
916
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200917 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800918 if (IS_ERR(dst)) {
919 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700921 }
Wei Wang26879da2016-05-02 21:40:07 -0700922 if (ipc6.hlimit < 0)
923 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Wei Wang26879da2016-05-02 21:40:07 -0700925 if (ipc6.dontfrag < 0)
926 ipc6.dontfrag = np->dontfrag;
Brian Haley13b52cd2010-04-23 11:26:08 +0000927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (msg->msg_flags&MSG_CONFIRM)
929 goto do_confirm;
930
931back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000932 if (inet->hdrincl)
Jesus Sanchez-Palenciaa818f752018-07-03 15:42:50 -0700933 err = rawv6_send_hdrinc(sk, msg, len, &fl6, &dst,
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400934 msg->msg_flags, &ipc6.sockc);
Eric Dumazet1789a642010-06-03 22:23:57 +0000935 else {
Wei Wang26879da2016-05-02 21:40:07 -0700936 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 lock_sock(sk);
Al Viro19e3c662014-11-24 12:10:46 -0500938 err = ip6_append_data(sk, raw6_getfrag, &rfv,
Wei Wang26879da2016-05-02 21:40:07 -0700939 len, 0, &ipc6, &fl6, (struct rt6_info *)dst,
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400940 msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (err)
943 ip6_flush_pending_frames(sk);
944 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500945 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700946 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800949 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900950out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -0800952 txopt_put(opt_to_free);
Ian Morris67ba4152014-08-24 21:53:10 +0100953 return err < 0 ? err : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +0200955 if (msg->msg_flags & MSG_PROBE)
956 dst_confirm_neigh(dst, &fl6.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (!(msg->msg_flags & MSG_PROBE) || len)
958 goto back_from_confirm;
959 err = 0;
960 goto done;
961}
962
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900963static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 char __user *optval, int optlen)
965{
966 switch (optname) {
967 case ICMPV6_FILTER:
968 if (optlen > sizeof(struct icmp6_filter))
969 optlen = sizeof(struct icmp6_filter);
970 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
971 return -EFAULT;
972 return 0;
973 default:
974 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 return 0;
978}
979
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900980static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 char __user *optval, int __user *optlen)
982{
983 int len;
984
985 switch (optname) {
986 case ICMPV6_FILTER:
987 if (get_user(len, optlen))
988 return -EFAULT;
989 if (len < 0)
990 return -EINVAL;
991 if (len > sizeof(struct icmp6_filter))
992 len = sizeof(struct icmp6_filter);
993 if (put_user(len, optlen))
994 return -EFAULT;
995 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
996 return -EFAULT;
997 return 0;
998 default:
999 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 return 0;
1003}
1004
1005
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001006static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001007 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct raw6_sock *rp = raw6_sk(sk);
1010 int val;
1011
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001012 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return -EFAULT;
1014
1015 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001016 case IPV6_HDRINCL:
1017 if (sk->sk_type != SOCK_RAW)
1018 return -EINVAL;
1019 inet_sk(sk)->hdrincl = !!val;
1020 return 0;
Joe Perches207ec0a2011-07-01 09:43:08 +00001021 case IPV6_CHECKSUM:
1022 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
1023 level == IPPROTO_IPV6) {
1024 /*
1025 * RFC3542 tells that IPV6_CHECKSUM socket
1026 * option in the IPPROTO_IPV6 level is not
1027 * allowed on ICMPv6 sockets.
1028 * If you want to set it, use IPPROTO_RAW
1029 * level IPV6_CHECKSUM socket option
1030 * (Linux extension).
1031 */
1032 return -EINVAL;
1033 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001034
Joe Perches207ec0a2011-07-01 09:43:08 +00001035 /* You may get strange result with a positive odd offset;
1036 RFC2292bis agrees with me. */
1037 if (val > 0 && (val&1))
1038 return -EINVAL;
1039 if (val < 0) {
1040 rp->checksum = 0;
1041 } else {
1042 rp->checksum = 1;
1043 rp->offset = val;
1044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Joe Perches207ec0a2011-07-01 09:43:08 +00001046 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Joe Perches207ec0a2011-07-01 09:43:08 +00001048 default:
1049 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051}
1052
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001053static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001054 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Joe Perches207ec0a2011-07-01 09:43:08 +00001056 switch (level) {
1057 case SOL_RAW:
1058 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Joe Perches207ec0a2011-07-01 09:43:08 +00001060 case SOL_ICMPV6:
1061 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1062 return -EOPNOTSUPP;
1063 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1064 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001065 if (optname == IPV6_CHECKSUM ||
1066 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001067 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001068 /* fall through */
Joe Perches207ec0a2011-07-01 09:43:08 +00001069 default:
1070 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001071 }
1072
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001073 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1074}
1075
1076#ifdef CONFIG_COMPAT
1077static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001078 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001079{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001080 switch (level) {
1081 case SOL_RAW:
1082 break;
1083 case SOL_ICMPV6:
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001084 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001085 return -EOPNOTSUPP;
1086 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1087 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001088 if (optname == IPV6_CHECKSUM ||
1089 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001090 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001091 /* fall through */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001092 default:
1093 return compat_ipv6_setsockopt(sk, level, optname,
1094 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001095 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001096 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1097}
1098#endif
1099
1100static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1101 char __user *optval, int __user *optlen)
1102{
1103 struct raw6_sock *rp = raw6_sk(sk);
1104 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Ian Morris67ba4152014-08-24 21:53:10 +01001106 if (get_user(len, optlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return -EFAULT;
1108
1109 switch (optname) {
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001110 case IPV6_HDRINCL:
1111 val = inet_sk(sk)->hdrincl;
1112 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001114 /*
1115 * We allow getsockopt() for IPPROTO_IPV6-level
1116 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1117 * since RFC3542 is silent about it.
1118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (rp->checksum == 0)
1120 val = -1;
1121 else
1122 val = rp->offset;
1123 break;
1124
1125 default:
1126 return -ENOPROTOOPT;
1127 }
1128
1129 len = min_t(unsigned int, sizeof(int), len);
1130
1131 if (put_user(len, optlen))
1132 return -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001133 if (copy_to_user(optval, &val, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return -EFAULT;
1135 return 0;
1136}
1137
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001138static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1139 char __user *optval, int __user *optlen)
1140{
Joe Perches207ec0a2011-07-01 09:43:08 +00001141 switch (level) {
1142 case SOL_RAW:
1143 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001144
Joe Perches207ec0a2011-07-01 09:43:08 +00001145 case SOL_ICMPV6:
1146 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1147 return -EOPNOTSUPP;
1148 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1149 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001150 if (optname == IPV6_CHECKSUM ||
1151 optname == IPV6_HDRINCL)
Joe Perches207ec0a2011-07-01 09:43:08 +00001152 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001153 /* fall through */
Joe Perches207ec0a2011-07-01 09:43:08 +00001154 default:
1155 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001156 }
1157
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001158 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1159}
1160
1161#ifdef CONFIG_COMPAT
1162static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001163 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001164{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001165 switch (level) {
1166 case SOL_RAW:
1167 break;
1168 case SOL_ICMPV6:
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001169 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001170 return -EOPNOTSUPP;
1171 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1172 case SOL_IPV6:
Hannes Frederic Sowa715f5042015-12-16 17:22:47 +01001173 if (optname == IPV6_CHECKSUM ||
1174 optname == IPV6_HDRINCL)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001175 break;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -05001176 /* fall through */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001177 default:
1178 return compat_ipv6_getsockopt(sk, level, optname,
1179 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001180 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001181 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1182}
1183#endif
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1186{
Joe Perches207ec0a2011-07-01 09:43:08 +00001187 switch (cmd) {
1188 case SIOCOUTQ: {
1189 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001190
Joe Perches207ec0a2011-07-01 09:43:08 +00001191 return put_user(amount, (int __user *)arg);
1192 }
1193 case SIOCINQ: {
1194 struct sk_buff *skb;
1195 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Joe Perches207ec0a2011-07-01 09:43:08 +00001197 spin_lock_bh(&sk->sk_receive_queue.lock);
1198 skb = skb_peek(&sk->sk_receive_queue);
Ian Morris53b24b82015-03-29 14:00:05 +01001199 if (skb)
Jamie Bainbridge105f5522017-04-26 10:43:27 +10001200 amount = skb->len;
Joe Perches207ec0a2011-07-01 09:43:08 +00001201 spin_unlock_bh(&sk->sk_receive_queue.lock);
1202 return put_user(amount, (int __user *)arg);
1203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Joe Perches207ec0a2011-07-01 09:43:08 +00001205 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001206#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001207 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001208#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001209 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212}
1213
David S. Millere2d57762011-02-03 17:59:32 -08001214#ifdef CONFIG_COMPAT
1215static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1216{
1217 switch (cmd) {
1218 case SIOCOUTQ:
1219 case SIOCINQ:
1220 return -ENOIOCTLCMD;
1221 default:
1222#ifdef CONFIG_IPV6_MROUTE
1223 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1224#else
1225 return -ENOIOCTLCMD;
1226#endif
1227 }
1228}
1229#endif
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231static void rawv6_close(struct sock *sk, long timeout)
1232{
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001233 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001234 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001235 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 sk_common_release(sk);
1237}
1238
Brian Haley7d06b2e2008-06-14 17:04:49 -07001239static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001240{
1241 lock_sock(sk);
1242 ip6_flush_pending_frames(sk);
1243 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001244
Brian Haley7d06b2e2008-06-14 17:04:49 -07001245 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001246}
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248static int rawv6_init_sk(struct sock *sk)
1249{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001250 struct raw6_sock *rp = raw6_sk(sk);
1251
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001252 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001253 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 rp->checksum = 1;
1255 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001256 break;
1257 case IPPROTO_MH:
1258 rp->checksum = 1;
1259 rp->offset = 4;
1260 break;
1261 default:
1262 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001268 .name = "RAWv6",
1269 .owner = THIS_MODULE,
1270 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001271 .destroy = raw6_destroy,
Hannes Frederic Sowa82b276c2014-01-20 05:16:39 +01001272 .connect = ip6_datagram_connect_v6_only,
Eric Dumazet286c72d2016-10-20 09:39:40 -07001273 .disconnect = __udp_disconnect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001274 .ioctl = rawv6_ioctl,
1275 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001276 .setsockopt = rawv6_setsockopt,
1277 .getsockopt = rawv6_getsockopt,
1278 .sendmsg = rawv6_sendmsg,
1279 .recvmsg = rawv6_recvmsg,
1280 .bind = rawv6_bind,
1281 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001282 .hash = raw_hash_sk,
1283 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001284 .obj_size = sizeof(struct raw6_sock),
David Windsor8c2bc892017-08-24 16:49:14 -07001285 .useroffset = offsetof(struct raw6_sock, filter),
1286 .usersize = sizeof_field(struct raw6_sock, filter),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001287 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001288#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001289 .compat_setsockopt = compat_rawv6_setsockopt,
1290 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001291 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001292#endif
Cyrill Gorcunov432490f2016-10-21 13:03:44 +03001293 .diag_destroy = raw_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294};
1295
1296#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297static int raw6_seq_show(struct seq_file *seq, void *v)
1298{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001299 if (v == SEQ_START_TOKEN) {
1300 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1301 } else {
1302 struct sock *sp = v;
1303 __u16 srcp = inet_sk(sp)->inet_num;
1304 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1305 raw_seq_private(seq)->bucket);
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return 0;
1308}
1309
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001310static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001311 .start = raw_seq_start,
1312 .next = raw_seq_next,
1313 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 .show = raw6_seq_show,
1315};
1316
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001317static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001318{
Christoph Hellwigc3506372018-04-10 19:42:55 +02001319 if (!proc_create_net_data("raw6", 0444, net->proc_net, &raw6_seq_ops,
1320 sizeof(struct raw_iter_state), &raw_v6_hashinfo))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001321 return -ENOMEM;
1322
1323 return 0;
1324}
1325
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001326static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001327{
Gao fengece31ff2013-02-18 01:34:56 +00001328 remove_proc_entry("raw6", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001329}
1330
1331static struct pernet_operations raw6_net_ops = {
1332 .init = raw6_init_net,
1333 .exit = raw6_exit_net,
1334};
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336int __init raw6_proc_init(void)
1337{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001338 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341void raw6_proc_exit(void)
1342{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001343 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001346
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001347/* Same as inet6_dgram_ops, sans udp_poll. */
Eric Dumazet77d4b1d2017-06-03 09:29:25 -07001348const struct proto_ops inet6_sockraw_ops = {
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001349 .family = PF_INET6,
1350 .owner = THIS_MODULE,
1351 .release = inet6_release,
1352 .bind = inet6_bind,
1353 .connect = inet_dgram_connect, /* ok */
1354 .socketpair = sock_no_socketpair, /* a do nothing */
1355 .accept = sock_no_accept, /* a do nothing */
1356 .getname = inet6_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001357 .poll = datagram_poll, /* ok */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001358 .ioctl = inet6_ioctl, /* must change */
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001359 .gettstamp = sock_gettstamp,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001360 .listen = sock_no_listen, /* ok */
1361 .shutdown = inet_shutdown, /* ok */
1362 .setsockopt = sock_common_setsockopt, /* ok */
1363 .getsockopt = sock_common_getsockopt, /* ok */
1364 .sendmsg = inet_sendmsg, /* ok */
1365 .recvmsg = sock_common_recvmsg, /* ok */
1366 .mmap = sock_no_mmap,
1367 .sendpage = sock_no_sendpage,
1368#ifdef CONFIG_COMPAT
1369 .compat_setsockopt = compat_sock_common_setsockopt,
1370 .compat_getsockopt = compat_sock_common_getsockopt,
1371#endif
1372};
1373
1374static struct inet_protosw rawv6_protosw = {
1375 .type = SOCK_RAW,
1376 .protocol = IPPROTO_IP, /* wild card */
1377 .prot = &rawv6_prot,
1378 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001379 .flags = INET_PROTOSW_REUSE,
1380};
1381
1382int __init rawv6_init(void)
1383{
Julia Lawall3d2f6d42015-05-28 23:02:17 +02001384 return inet6_register_protosw(&rawv6_protosw);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001385}
1386
Daniel Lezcano09f77092007-12-13 05:34:58 -08001387void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001388{
1389 inet6_unregister_protosw(&rawv6_protosw);
1390}