blob: 80da5a66d5d7b6e53034de728cfda19630fa2399 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * RAW - implementation of IP "raw" sockets.
8 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07009 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
11 *
12 * Fixes:
13 * Alan Cox : verify_area() fixed up
14 * Alan Cox : ICMP error handling
15 * Alan Cox : EMSGSIZE if you send too big a packet
16 * Alan Cox : Now uses generic datagrams and shared
17 * skbuff library. No more peek crashes,
18 * no more backlogs
19 * Alan Cox : Checks sk->broadcast.
20 * Alan Cox : Uses skb_free_datagram/skb_copy_datagram
21 * Alan Cox : Raw passes ip options too
22 * Alan Cox : Setsocketopt added
23 * Alan Cox : Fixed error return for broadcasts
24 * Alan Cox : Removed wake_up calls
25 * Alan Cox : Use ttl/tos
26 * Alan Cox : Cleaned up old debugging
27 * Alan Cox : Use new kernel side addresses
28 * Arnt Gulbrandsen : Fixed MSG_DONTROUTE in raw sockets.
29 * Alan Cox : BSD style RAW socket demultiplexing.
30 * Alan Cox : Beginnings of mrouted support.
31 * Alan Cox : Added IP_HDRINCL option.
32 * Alan Cox : Skip broadcast check if BSDism set.
33 * David S. Miller : New socket lookup architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
Dave Jonesbf0d5242006-09-22 14:00:29 -070035
Alan Cox715b49e2006-01-18 17:44:07 -080036#include <linux/types.h>
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/byteorder.h>
39#include <asm/current.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/ioctls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/stddef.h>
43#include <linux/slab.h>
44#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/kernel.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040046#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/spinlock.h>
48#include <linux/sockios.h>
49#include <linux/socket.h>
50#include <linux/in.h>
51#include <linux/mroute.h>
52#include <linux/netdevice.h>
53#include <linux/in_route.h>
54#include <linux/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/skbuff.h>
Quentin Armitagef5220d62014-07-23 09:58:01 +010056#include <linux/igmp.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020057#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <net/dst.h>
59#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/ip.h>
61#include <linux/net.h>
62#include <net/ip.h>
63#include <net/icmp.h>
64#include <net/udp.h>
65#include <net/raw.h>
66#include <net/snmp.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070067#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <net/inet_common.h>
69#include <net/checksum.h>
70#include <net/xfrm.h>
71#include <linux/rtnetlink.h>
72#include <linux/proc_fs.h>
73#include <linux/seq_file.h>
74#include <linux/netfilter.h>
75#include <linux/netfilter_ipv4.h>
Eric W. Biederman709b46e2011-01-29 16:15:56 +000076#include <linux/compat.h>
Herbert Xuc008ba5b2014-11-07 21:27:09 +080077#include <linux/uio.h>
78
79struct raw_frag_vec {
Al Virob61e9dc2014-11-24 10:52:29 -050080 struct msghdr *msg;
Herbert Xuc008ba5b2014-11-07 21:27:09 +080081 union {
82 struct icmphdr icmph;
83 char c[1];
84 } hdr;
85 int hlen;
86};
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030088struct raw_hashinfo raw_v4_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070089 .lock = __RW_LOCK_UNLOCKED(raw_v4_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080090};
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030091EXPORT_SYMBOL_GPL(raw_v4_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Craig Gallek086c6532016-02-10 11:50:35 -050093int raw_hash_sk(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -070095 struct raw_hashinfo *h = sk->sk_prot->h.raw_hash;
Pavel Emelyanov65b4c502007-11-19 22:37:24 -080096 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Eric Dumazetc720c7e82009-10-15 06:30:45 +000098 head = &h->ht[inet_sk(sk)->inet_num & (RAW_HTABLE_SIZE - 1)];
Pavel Emelyanov65b4c502007-11-19 22:37:24 -080099
100 write_lock_bh(&h->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 sk_add_node(sk, head);
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700102 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Pavel Emelyanov65b4c502007-11-19 22:37:24 -0800103 write_unlock_bh(&h->lock);
Craig Gallek086c6532016-02-10 11:50:35 -0500104
105 return 0;
Pavel Emelyanov65b4c502007-11-19 22:37:24 -0800106}
107EXPORT_SYMBOL_GPL(raw_hash_sk);
108
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700109void raw_unhash_sk(struct sock *sk)
Pavel Emelyanovab707682007-11-19 22:37:58 -0800110{
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700111 struct raw_hashinfo *h = sk->sk_prot->h.raw_hash;
112
Pavel Emelyanovab707682007-11-19 22:37:58 -0800113 write_lock_bh(&h->lock);
114 if (sk_del_node_init(sk))
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700115 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Pavel Emelyanovab707682007-11-19 22:37:58 -0800116 write_unlock_bh(&h->lock);
117}
118EXPORT_SYMBOL_GPL(raw_unhash_sk);
119
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300120struct sock *__raw_v4_lookup(struct net *net, struct sock *sk,
David Ahern67359932017-08-07 08:44:18 -0700121 unsigned short num, __be32 raddr, __be32 laddr,
122 int dif, int sdif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800124 sk_for_each_from(sk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct inet_sock *inet = inet_sk(sk);
126
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000127 if (net_eq(sock_net(sk), net) && inet->inet_num == num &&
128 !(inet->inet_daddr && inet->inet_daddr != raddr) &&
129 !(inet->inet_rcv_saddr && inet->inet_rcv_saddr != laddr) &&
Duncan Eastoe70554202018-11-07 15:36:06 +0000130 raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 goto found; /* gotcha */
132 }
133 sk = NULL;
134found:
135 return sk;
136}
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300137EXPORT_SYMBOL_GPL(__raw_v4_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139/*
140 * 0 - deliver
141 * 1 - block
142 */
Eric Dumazetab43ed82012-09-22 00:08:29 +0000143static int icmp_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Eric Dumazetab43ed82012-09-22 00:08:29 +0000145 struct icmphdr _hdr;
146 const struct icmphdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Eric Dumazetab43ed82012-09-22 00:08:29 +0000148 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
149 sizeof(_hdr), &_hdr);
150 if (!hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return 1;
152
Eric Dumazetab43ed82012-09-22 00:08:29 +0000153 if (hdr->type < 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 __u32 data = raw_sk(sk)->filter.data;
155
Eric Dumazetab43ed82012-09-22 00:08:29 +0000156 return ((1U << hdr->type) & data) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
159 /* Do not block unknown ICMP types */
160 return 0;
161}
162
163/* IP input processing comes here for RAW socket delivery.
164 * Caller owns SKB, so we must make clones.
165 *
166 * RFC 1122: SHOULD pass TOS value up to the transport layer.
167 * -> It does. And not only TOS, but all IP header.
168 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000169static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
David Ahern67359932017-08-07 08:44:18 -0700171 int sdif = inet_sdif(skb);
David Ahern19e4e762019-05-07 20:44:59 -0700172 int dif = inet_iif(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct sock *sk;
174 struct hlist_head *head;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700175 int delivered = 0;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800176 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800178 read_lock(&raw_v4_hashinfo.lock);
179 head = &raw_v4_hashinfo.ht[hash];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (hlist_empty(head))
181 goto out;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800182
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900183 net = dev_net(skb->dev);
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800184 sk = __raw_v4_lookup(net, __sk_head(head), iph->protocol,
David Ahern19e4e762019-05-07 20:44:59 -0700185 iph->saddr, iph->daddr, dif, sdif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 while (sk) {
Patrick McHardyd13964f2005-08-09 19:45:02 -0700188 delivered = 1;
Quentin Armitagef5220d62014-07-23 09:58:01 +0100189 if ((iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) &&
190 ip_mc_sf_allow(sk, iph->daddr, iph->saddr,
David Ahern60d9b032017-08-07 08:44:19 -0700191 skb->dev->ifindex, sdif)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
193
194 /* Not releasing hash table! */
195 if (clone)
196 raw_rcv(sk, clone);
197 }
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800198 sk = __raw_v4_lookup(net, sk_next(sk), iph->protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 iph->saddr, iph->daddr,
Stephen Suryaputra38c73522019-06-24 20:14:06 -0400200 dif, sdif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800203 read_unlock(&raw_v4_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700204 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800207int raw_local_deliver(struct sk_buff *skb, int protocol)
208{
209 int hash;
210 struct sock *raw_sk;
211
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800212 hash = protocol & (RAW_HTABLE_SIZE - 1);
213 raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800214
215 /* If there maybe a raw socket we must check - if not we
216 * don't care less
217 */
218 if (raw_sk && !raw_v4_input(skb, ip_hdr(skb), hash))
219 raw_sk = NULL;
220
221 return raw_sk != NULL;
222
223}
224
225static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300228 const int type = icmp_hdr(skb)->type;
229 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int err = 0;
231 int harderr = 0;
232
David S. Miller36393392012-06-14 22:21:46 -0700233 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
234 ipv4_sk_update_pmtu(skb, sk, info);
Duan Jiong8d65b112013-09-20 18:21:25 +0800235 else if (type == ICMP_REDIRECT) {
David S. Miller55be7a92012-07-11 21:27:49 -0700236 ipv4_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800237 return;
238 }
David S. Miller36393392012-06-14 22:21:46 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* Report error on raw socket, if:
241 1. User requested ip_recverr.
242 2. Socket is connected (otherwise the error indication
243 is useless without ip_recverr and error is hard.
244 */
245 if (!inet->recverr && sk->sk_state != TCP_ESTABLISHED)
246 return;
247
248 switch (type) {
249 default:
250 case ICMP_TIME_EXCEEDED:
251 err = EHOSTUNREACH;
252 break;
253 case ICMP_SOURCE_QUENCH:
254 return;
255 case ICMP_PARAMETERPROB:
256 err = EPROTO;
257 harderr = 1;
258 break;
259 case ICMP_DEST_UNREACH:
260 err = EHOSTUNREACH;
261 if (code > NR_ICMP_UNREACH)
262 break;
263 err = icmp_err_convert[code].errno;
264 harderr = icmp_err_convert[code].fatal;
265 if (code == ICMP_FRAG_NEEDED) {
266 harderr = inet->pmtudisc != IP_PMTUDISC_DONT;
267 err = EMSGSIZE;
268 }
269 }
270
271 if (inet->recverr) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000272 const struct iphdr *iph = (const struct iphdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 u8 *payload = skb->data + (iph->ihl << 2);
274
275 if (inet->hdrincl)
276 payload = skb->data;
277 ip_icmp_error(sk, skb, err, 0, info, payload);
278 }
279
280 if (inet->recverr || harderr) {
281 sk->sk_err = err;
282 sk->sk_error_report(sk);
283 }
284}
285
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800286void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info)
287{
288 int hash;
289 struct sock *raw_sk;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000290 const struct iphdr *iph;
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800291 struct net *net;
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800292
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800293 hash = protocol & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800294
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800295 read_lock(&raw_v4_hashinfo.lock);
296 raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
Ian Morris00db4122015-04-03 09:17:27 +0100297 if (raw_sk) {
David Ahern67359932017-08-07 08:44:18 -0700298 int dif = skb->dev->ifindex;
299 int sdif = inet_sdif(skb);
300
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000301 iph = (const struct iphdr *)skb->data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900302 net = dev_net(skb->dev);
Pavel Emelyanovbe1858842008-01-14 05:35:31 -0800303
304 while ((raw_sk = __raw_v4_lookup(net, raw_sk, protocol,
305 iph->daddr, iph->saddr,
David Ahern67359932017-08-07 08:44:18 -0700306 dif, sdif)) != NULL) {
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800307 raw_err(raw_sk, skb, info);
308 raw_sk = sk_next(raw_sk);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000309 iph = (const struct iphdr *)skb->data;
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800310 }
311 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800312 read_unlock(&raw_v4_hashinfo.lock);
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800313}
314
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000315static int raw_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 /* Charge it to the socket. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900318
Shawn Bohrerfbf88662013-10-07 11:01:40 -0500319 ipv4_pktinfo_prepare(sk, skb);
Eric Dumazetd826eb12011-11-09 07:24:35 +0000320 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 kfree_skb(skb);
322 return NET_RX_DROP;
323 }
324
325 return NET_RX_SUCCESS;
326}
327
328int raw_rcv(struct sock *sk, struct sk_buff *skb)
329{
330 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chen33c732c2007-11-13 20:30:01 -0800331 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 kfree_skb(skb);
333 return NET_RX_DROP;
334 }
Patrick McHardyb59c2702006-01-06 23:06:10 -0800335 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700337 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 raw_rcv_skb(sk, skb);
340 return 0;
341}
342
David S. Miller77968b72011-05-08 17:12:19 -0700343static int raw_send_hdrinc(struct sock *sk, struct flowi4 *fl4,
Al Viro7ae9abf2014-11-27 19:30:51 -0500344 struct msghdr *msg, size_t length,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400345 struct rtable **rtp, unsigned int flags,
346 const struct sockcm_cookie *sockc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct inet_sock *inet = inet_sk(sk);
Pavel Emelyanov0388b002008-07-14 23:00:43 -0700349 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct iphdr *iph;
351 struct sk_buff *skb;
Herbert Xuf844c742008-01-05 23:14:44 -0800352 unsigned int iphlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000354 struct rtable *rt = *rtp;
Herbert Xu66088242011-11-18 02:20:04 +0000355 int hlen, tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Changli Gaod8d1f302010-06-10 23:31:35 -0700357 if (length > rt->dst.dev->mtu) {
David S. Miller77968b72011-05-08 17:12:19 -0700358 ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport,
Changli Gaod8d1f302010-06-10 23:31:35 -0700359 rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return -EMSGSIZE;
361 }
Alexander Potapenko86f4c902017-05-03 17:06:58 +0200362 if (length < sizeof(struct iphdr))
363 return -EINVAL;
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (flags&MSG_PROBE)
366 goto out;
367
Herbert Xu66088242011-11-18 02:20:04 +0000368 hlen = LL_RESERVED_SPACE(rt->dst.dev);
369 tlen = rt->dst.dev->needed_tailroom;
Johannes Bergf5184d22008-05-12 20:48:31 -0700370 skb = sock_alloc_send_skb(sk,
Herbert Xu66088242011-11-18 02:20:04 +0000371 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700372 flags & MSG_DONTWAIT, &err);
Ian Morris51456b22015-04-03 09:17:26 +0100373 if (!skb)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900374 goto error;
Herbert Xu66088242011-11-18 02:20:04 +0000375 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 skb->priority = sk->sk_priority;
Willem de Bruijnc6af0c22019-09-11 15:50:51 -0400378 skb->mark = sockc->mark;
Jesus Sanchez-Palenciabc969a92018-07-03 15:42:49 -0700379 skb->tstamp = sockc->transmit_time;
Changli Gaod8d1f302010-06-10 23:31:35 -0700380 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000381 *rtp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300383 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700384 iph = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300385 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 skb->ip_summed = CHECKSUM_NONE;
388
Willem de Bruijn8f932f72018-12-17 12:24:00 -0500389 skb_setup_tx_timestamp(skb, sockc->tsflags);
Willem de Bruijn11878b42014-07-14 17:55:06 -0400390
Julian Anastasov0dec8792017-02-06 23:14:16 +0200391 if (flags & MSG_CONFIRM)
392 skb_set_dst_pending_confirm(skb, 1);
393
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700394 skb->transport_header = skb->network_header;
Neil Horman55888df2009-10-28 08:59:47 +0000395 err = -EFAULT;
Al Viro21226ab2014-11-28 15:48:29 -0500396 if (memcpy_from_msg(iph, msg, length))
Neil Horman55888df2009-10-28 08:59:47 +0000397 goto error_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Herbert Xuf844c742008-01-05 23:14:44 -0800399 iphlen = iph->ihl * 4;
Neil Horman55888df2009-10-28 08:59:47 +0000400
401 /*
402 * We don't want to modify the ip header, but we do need to
403 * be sure that it won't cause problems later along the network
404 * stack. Specifically we want to make sure that iph->ihl is a
405 * sane value. If ihl points beyond the length of the buffer passed
406 * in, reject the frame as invalid
407 */
408 err = -EINVAL;
409 if (iphlen > length)
410 goto error_free;
411
412 if (iphlen >= sizeof(*iph)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (!iph->saddr)
David S. Miller77968b72011-05-08 17:12:19 -0700414 iph->saddr = fl4->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 iph->check = 0;
416 iph->tot_len = htons(length);
417 if (!iph->id)
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +0100418 ip_select_ident(net, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
Ben Cartwright-Cox027ac582015-11-14 15:13:58 +0000421 skb->transport_header += iphlen;
422 if (iph->protocol == IPPROTO_ICMP &&
423 length >= iphlen + sizeof(struct icmphdr))
424 icmp_out_count(net, ((struct icmphdr *)
425 skb_transport_header(skb))->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500428 err = NF_HOOK(NFPROTO_IPV4, NF_INET_LOCAL_OUT,
429 net, sk, skb, NULL, rt->dst.dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500430 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700432 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (err)
434 goto error;
435out:
436 return 0;
437
Neil Horman55888df2009-10-28 08:59:47 +0000438error_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 kfree_skb(skb);
440error:
Pavel Emelyanov5e38e272008-07-16 20:19:49 -0700441 IP_INC_STATS(net, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700442 if (err == -ENOBUFS && !inet->recverr)
443 err = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900444 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800447static int raw_probe_proto_opt(struct raw_frag_vec *rfv, struct flowi4 *fl4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Herbert Xu32b59132014-11-07 21:27:08 +0800449 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Herbert Xu32b59132014-11-07 21:27:08 +0800451 if (fl4->flowi4_proto != IPPROTO_ICMP)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Herbert Xu32b59132014-11-07 21:27:08 +0800454 /* We only need the first two bytes. */
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800455 rfv->hlen = 2;
456
Al Virob61e9dc2014-11-24 10:52:29 -0500457 err = memcpy_from_msg(rfv->hdr.c, rfv->msg, rfv->hlen);
Herbert Xu32b59132014-11-07 21:27:08 +0800458 if (err)
459 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800461 fl4->fl4_icmp_type = rfv->hdr.icmph.type;
462 fl4->fl4_icmp_code = rfv->hdr.icmph.code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800467static int raw_getfrag(void *from, char *to, int offset, int len, int odd,
468 struct sk_buff *skb)
469{
470 struct raw_frag_vec *rfv = from;
471
472 if (offset < rfv->hlen) {
473 int copy = min(rfv->hlen - offset, len);
474
475 if (skb->ip_summed == CHECKSUM_PARTIAL)
476 memcpy(to, rfv->hdr.c + offset, copy);
477 else
478 skb->csum = csum_block_add(
479 skb->csum,
480 csum_partial_copy_nocheck(rfv->hdr.c + offset,
481 to, copy, 0),
482 odd);
483
484 odd = 0;
485 offset += copy;
486 to += copy;
487 len -= copy;
488
489 if (!len)
490 return 0;
491 }
492
493 offset -= rfv->hlen;
494
Al Virof69e6d12014-11-24 13:23:40 -0500495 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800496}
497
Ying Xue1b784142015-03-02 15:37:48 +0800498static int raw_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct inet_sock *inet = inet_sk(sk);
David Ahernbb191c32015-10-05 08:51:27 -0700501 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct ipcm_cookie ipc;
503 struct rtable *rt = NULL;
David S. Miller77968b72011-05-08 17:12:19 -0700504 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 int free = 0;
Al Viro3ca3c682006-09-27 18:28:07 -0700506 __be32 daddr;
Al Viroc1d18f92006-09-27 18:28:28 -0700507 __be32 saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 u8 tos;
509 int err;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000510 struct ip_options_data opt_copy;
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800511 struct raw_frag_vec rfv;
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000512 int hdrincl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 err = -EMSGSIZE;
Jesper Juhl926d4b82005-06-18 23:00:00 -0700515 if (len > 0xFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto out;
517
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000518 /* hdrincl should be READ_ONCE(inet->hdrincl)
Nicolai Stange20b50d72018-01-08 15:54:44 +0100519 * but READ_ONCE() doesn't work with bit fields.
520 * Doing this indirectly yields the same result.
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000521 */
522 hdrincl = inet->hdrincl;
Nicolai Stange20b50d72018-01-08 15:54:44 +0100523 hdrincl = READ_ONCE(hdrincl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /*
525 * Check the flags.
526 */
527
528 err = -EOPNOTSUPP;
529 if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message */
530 goto out; /* compatibility */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /*
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900533 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
535
536 if (msg->msg_namelen) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100537 DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 err = -EINVAL;
539 if (msg->msg_namelen < sizeof(*usin))
540 goto out;
541 if (usin->sin_family != AF_INET) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000542 pr_info_once("%s: %s forgot to set AF_INET. Fix it!\n",
543 __func__, current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 err = -EAFNOSUPPORT;
545 if (usin->sin_family)
546 goto out;
547 }
548 daddr = usin->sin_addr.s_addr;
549 /* ANK: I did not forget to get protocol from port field.
550 * I just do not know, who uses this weirdness.
551 * IP_HDRINCL is much more convenient.
552 */
553 } else {
554 err = -EDESTADDRREQ;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900555 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 goto out;
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000557 daddr = inet->inet_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
Willem de Bruijn35178202018-07-06 10:12:54 -0400560 ipcm_init_sk(&ipc, inet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 if (msg->msg_controllen) {
Soheil Hassas Yeganeh24025c42016-04-02 23:08:10 -0400563 err = ip_cmsg_send(sk, msg, &ipc, false);
Eric Dumazet91948302016-02-04 06:23:28 -0800564 if (unlikely(err)) {
565 kfree(ipc.opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto out;
Eric Dumazet91948302016-02-04 06:23:28 -0800567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (ipc.opt)
569 free = 1;
570 }
571
572 saddr = ipc.addr;
573 ipc.addr = daddr;
574
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000575 if (!ipc.opt) {
576 struct ip_options_rcu *inet_opt;
577
578 rcu_read_lock();
579 inet_opt = rcu_dereference(inet->inet_opt);
580 if (inet_opt) {
581 memcpy(&opt_copy, inet_opt,
582 sizeof(*inet_opt) + inet_opt->opt.optlen);
583 ipc.opt = &opt_copy.opt;
584 }
585 rcu_read_unlock();
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (ipc.opt) {
589 err = -EINVAL;
590 /* Linux does not mangle headers on raw sockets,
591 * so that IP options + IP_HDRINCL is non-sense.
592 */
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000593 if (hdrincl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto done;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000595 if (ipc.opt->opt.srr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (!daddr)
597 goto done;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000598 daddr = ipc.opt->opt.faddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 }
Francesco Fuscoaa661582013-09-24 15:43:09 +0200601 tos = get_rtconn_flags(&ipc, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (msg->msg_flags & MSG_DONTROUTE)
603 tos |= RTO_ONLINK;
604
Joe Perchesf97c1e02007-12-16 13:45:43 -0800605 if (ipv4_is_multicast(daddr)) {
Robert Shearman854da992018-10-01 09:40:23 +0100606 if (!ipc.oif || netif_index_is_l3_master(sock_net(sk), ipc.oif))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 ipc.oif = inet->mc_index;
608 if (!saddr)
609 saddr = inet->mc_addr;
David Ahern9515a2e2018-01-24 19:37:38 -0800610 } else if (!ipc.oif) {
Erich E. Hoover76e21052012-02-08 09:11:07 +0000611 ipc.oif = inet->uc_index;
David Ahern9515a2e2018-01-24 19:37:38 -0800612 } else if (ipv4_is_lbcast(daddr) && inet->uc_index) {
613 /* oif is set, packet is to local broadcast and
614 * and uc_index is set. oif is most likely set
615 * by sk_bound_dev_if. If uc_index != oif check if the
616 * oif is an L3 master and uc_index is an L3 slave.
617 * If so, we want to allow the send using the uc_index.
618 */
619 if (ipc.oif != inet->uc_index &&
620 ipc.oif == l3mdev_master_ifindex_by_index(sock_net(sk),
621 inet->uc_index)) {
622 ipc.oif = inet->uc_index;
623 }
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Willem de Bruijnc6af0c22019-09-11 15:50:51 -0400626 flowi4_init_output(&fl4, ipc.oif, ipc.sockc.mark, tos,
David S. Miller77968b72011-05-08 17:12:19 -0700627 RT_SCOPE_UNIVERSE,
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000628 hdrincl ? IPPROTO_RAW : sk->sk_protocol,
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200629 inet_sk_flowi_flags(sk) |
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000630 (hdrincl ? FLOWI_FLAG_KNOWN_NH : 0),
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900631 daddr, saddr, 0, 0, sk->sk_uid);
David S. Milleref164ae2011-03-31 04:53:51 -0700632
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000633 if (!hdrincl) {
Al Virob61e9dc2014-11-24 10:52:29 -0500634 rfv.msg = msg;
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800635 rfv.hlen = 0;
636
637 err = raw_probe_proto_opt(&rfv, &fl4);
David S. Miller77968b72011-05-08 17:12:19 -0700638 if (err)
David S. Millerb23dd4f2011-03-02 14:31:35 -0800639 goto done;
David S. Miller77968b72011-05-08 17:12:19 -0700640 }
641
642 security_sk_classify_flow(sk, flowi4_to_flowi(&fl4));
David Ahernbb191c32015-10-05 08:51:27 -0700643 rt = ip_route_output_flow(net, &fl4, sk);
David S. Miller77968b72011-05-08 17:12:19 -0700644 if (IS_ERR(rt)) {
645 err = PTR_ERR(rt);
646 rt = NULL;
647 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 err = -EACCES;
651 if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
652 goto done;
653
654 if (msg->msg_flags & MSG_CONFIRM)
655 goto do_confirm;
656back_from_confirm:
657
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000658 if (hdrincl)
Al Viro7ae9abf2014-11-27 19:30:51 -0500659 err = raw_send_hdrinc(sk, &fl4, msg, len,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400660 &rt, msg->msg_flags, &ipc.sockc);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 else {
663 if (!ipc.addr)
David S. Miller77968b72011-05-08 17:12:19 -0700664 ipc.addr = fl4.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 lock_sock(sk);
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800666 err = ip_append_data(sk, &fl4, raw_getfrag,
667 &rfv, len, 0,
David S. Miller77968b72011-05-08 17:12:19 -0700668 &ipc, &rt, msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (err)
670 ip_flush_pending_frames(sk);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700671 else if (!(msg->msg_flags & MSG_MORE)) {
David S. Miller77968b72011-05-08 17:12:19 -0700672 err = ip_push_pending_frames(sk, &fl4);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700673 if (err == -ENOBUFS && !inet->recverr)
674 err = 0;
675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 release_sock(sk);
677 }
678done:
679 if (free)
680 kfree(ipc.opt);
681 ip_rt_put(rt);
682
Jesper Juhl5418c6922005-06-18 22:59:45 -0700683out:
684 if (err < 0)
685 return err;
686 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +0200689 if (msg->msg_flags & MSG_PROBE)
690 dst_confirm_neigh(&rt->dst, &fl4.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (!(msg->msg_flags & MSG_PROBE) || len)
692 goto back_from_confirm;
693 err = 0;
694 goto done;
695}
696
697static void raw_close(struct sock *sk, long timeout)
698{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900699 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300700 * Raw sockets may have direct kernel references. Kill them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 */
702 ip_ra_control(sk, 0, NULL);
703
704 sk_common_release(sk);
705}
706
Brian Haley7d06b2e2008-06-14 17:04:49 -0700707static void raw_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -0700708{
709 lock_sock(sk);
710 ip_flush_pending_frames(sk);
711 release_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -0700712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/* This gets rid of all the nasties in af_inet. -DaveM */
715static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
716{
717 struct inet_sock *inet = inet_sk(sk);
718 struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
David Aherncd2c0f42016-11-03 09:25:00 -0700719 u32 tb_id = RT_TABLE_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int ret = -EINVAL;
721 int chk_addr_ret;
722
723 if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
724 goto out;
David Aherncd2c0f42016-11-03 09:25:00 -0700725
726 if (sk->sk_bound_dev_if)
727 tb_id = l3mdev_fib_table_by_index(sock_net(sk),
728 sk->sk_bound_dev_if) ? : tb_id;
729
730 chk_addr_ret = inet_addr_type_table(sock_net(sk), addr->sin_addr.s_addr,
731 tb_id);
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 ret = -EADDRNOTAVAIL;
734 if (addr->sin_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
735 chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
736 goto out;
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000737 inet->inet_rcv_saddr = inet->inet_saddr = addr->sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000739 inet->inet_saddr = 0; /* Use device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 sk_dst_reset(sk);
741 ret = 0;
742out: return ret;
743}
744
745/*
746 * This should be easy, if there is something there
747 * we return it, otherwise we block.
748 */
749
Ying Xue1b784142015-03-02 15:37:48 +0800750static int raw_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
751 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 struct inet_sock *inet = inet_sk(sk);
754 size_t copied = 0;
755 int err = -EOPNOTSUPP;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100756 DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct sk_buff *skb;
758
759 if (flags & MSG_OOB)
760 goto out;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (flags & MSG_ERRQUEUE) {
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100763 err = ip_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 goto out;
765 }
766
767 skb = skb_recv_datagram(sk, flags, noblock, &err);
768 if (!skb)
769 goto out;
770
771 copied = skb->len;
772 if (len < copied) {
773 msg->msg_flags |= MSG_TRUNC;
774 copied = len;
775 }
776
David S. Miller51f3d022014-11-05 16:46:40 -0500777 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (err)
779 goto done;
780
Neil Horman3b885782009-10-12 13:26:31 -0700781 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /* Copy the address. */
784 if (sin) {
785 sin->sin_family = AF_INET;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700786 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700787 sin->sin_port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100789 *addr_len = sizeof(*sin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 if (inet->cmsg_flags)
792 ip_cmsg_recv(msg, skb);
793 if (flags & MSG_TRUNC)
794 copied = skb->len;
795done:
796 skb_free_datagram(sk, skb);
Jesper Juhl5418c6922005-06-18 22:59:45 -0700797out:
798 if (err)
799 return err;
800 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Mike Manning68974452018-11-07 15:36:05 +0000803static int raw_sk_init(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 struct raw_sock *rp = raw_sk(sk);
806
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000807 if (inet_sk(sk)->inet_num == IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 memset(&rp->filter, 0, sizeof(rp->filter));
809 return 0;
810}
811
812static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
813{
814 if (optlen > sizeof(struct icmp_filter))
815 optlen = sizeof(struct icmp_filter);
816 if (copy_from_user(&raw_sk(sk)->filter, optval, optlen))
817 return -EFAULT;
818 return 0;
819}
820
821static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
822{
823 int len, ret = -EFAULT;
824
825 if (get_user(len, optlen))
826 goto out;
827 ret = -EINVAL;
828 if (len < 0)
829 goto out;
830 if (len > sizeof(struct icmp_filter))
831 len = sizeof(struct icmp_filter);
832 ret = -EFAULT;
833 if (put_user(len, optlen) ||
834 copy_to_user(optval, &raw_sk(sk)->filter, len))
835 goto out;
836 ret = 0;
837out: return ret;
838}
839
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800840static int do_raw_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700841 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (optname == ICMP_FILTER) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000844 if (inet_sk(sk)->inet_num != IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return -EOPNOTSUPP;
846 else
847 return raw_seticmpfilter(sk, optval, optlen);
848 }
849 return -ENOPROTOOPT;
850}
851
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800852static int raw_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700853 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 if (level != SOL_RAW)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800856 return ip_setsockopt(sk, level, optname, optval, optlen);
857 return do_raw_setsockopt(sk, level, optname, optval, optlen);
858}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800860#ifdef CONFIG_COMPAT
861static int compat_raw_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700862 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800863{
864 if (level != SOL_RAW)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800865 return compat_ip_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800866 return do_raw_setsockopt(sk, level, optname, optval, optlen);
867}
868#endif
869
870static int do_raw_getsockopt(struct sock *sk, int level, int optname,
871 char __user *optval, int __user *optlen)
872{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (optname == ICMP_FILTER) {
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000874 if (inet_sk(sk)->inet_num != IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return -EOPNOTSUPP;
876 else
877 return raw_geticmpfilter(sk, optval, optlen);
878 }
879 return -ENOPROTOOPT;
880}
881
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800882static int raw_getsockopt(struct sock *sk, int level, int optname,
883 char __user *optval, int __user *optlen)
884{
885 if (level != SOL_RAW)
886 return ip_getsockopt(sk, level, optname, optval, optlen);
887 return do_raw_getsockopt(sk, level, optname, optval, optlen);
888}
889
890#ifdef CONFIG_COMPAT
891static int compat_raw_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800892 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800893{
894 if (level != SOL_RAW)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800895 return compat_ip_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800896 return do_raw_getsockopt(sk, level, optname, optval, optlen);
897}
898#endif
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
901{
902 switch (cmd) {
Joe Perches4500ebf2011-07-01 09:43:07 +0000903 case SIOCOUTQ: {
904 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -0700905
Joe Perches4500ebf2011-07-01 09:43:07 +0000906 return put_user(amount, (int __user *)arg);
907 }
908 case SIOCINQ: {
909 struct sk_buff *skb;
910 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Joe Perches4500ebf2011-07-01 09:43:07 +0000912 spin_lock_bh(&sk->sk_receive_queue.lock);
913 skb = skb_peek(&sk->sk_receive_queue);
Ian Morris00db4122015-04-03 09:17:27 +0100914 if (skb)
Joe Perches4500ebf2011-07-01 09:43:07 +0000915 amount = skb->len;
916 spin_unlock_bh(&sk->sk_receive_queue.lock);
917 return put_user(amount, (int __user *)arg);
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Joe Perches4500ebf2011-07-01 09:43:07 +0000920 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921#ifdef CONFIG_IP_MROUTE
Joe Perches4500ebf2011-07-01 09:43:07 +0000922 return ipmr_ioctl(sk, cmd, (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923#else
Joe Perches4500ebf2011-07-01 09:43:07 +0000924 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925#endif
926 }
927}
928
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000929#ifdef CONFIG_COMPAT
930static int compat_raw_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
931{
932 switch (cmd) {
933 case SIOCOUTQ:
934 case SIOCINQ:
935 return -ENOIOCTLCMD;
936 default:
937#ifdef CONFIG_IP_MROUTE
938 return ipmr_compat_ioctl(sk, cmd, compat_ptr(arg));
939#else
940 return -ENOIOCTLCMD;
941#endif
942 }
943}
944#endif
945
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300946int raw_abort(struct sock *sk, int err)
947{
948 lock_sock(sk);
949
950 sk->sk_err = err;
951 sk->sk_error_report(sk);
Cyrill Gorcunov3de864f2016-11-01 23:05:00 +0300952 __udp_disconnect(sk, 0);
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300953
954 release_sock(sk);
955
956 return 0;
957}
958EXPORT_SYMBOL_GPL(raw_abort);
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960struct proto raw_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800961 .name = "RAW",
962 .owner = THIS_MODULE,
963 .close = raw_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -0700964 .destroy = raw_destroy,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800965 .connect = ip4_datagram_connect,
Eric Dumazet286c72d2016-10-20 09:39:40 -0700966 .disconnect = __udp_disconnect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800967 .ioctl = raw_ioctl,
Mike Manning68974452018-11-07 15:36:05 +0000968 .init = raw_sk_init,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800969 .setsockopt = raw_setsockopt,
970 .getsockopt = raw_getsockopt,
971 .sendmsg = raw_sendmsg,
972 .recvmsg = raw_recvmsg,
973 .bind = raw_bind,
974 .backlog_rcv = raw_rcv_skb,
Steffen Klassert8141ed92013-01-21 02:00:03 +0000975 .release_cb = ip4_datagram_release_cb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700976 .hash = raw_hash_sk,
977 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800978 .obj_size = sizeof(struct raw_sock),
David Windsor8c2bc892017-08-24 16:49:14 -0700979 .useroffset = offsetof(struct raw_sock, filter),
980 .usersize = sizeof_field(struct raw_sock, filter),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700981 .h.raw_hash = &raw_v4_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800982#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800983 .compat_setsockopt = compat_raw_setsockopt,
984 .compat_getsockopt = compat_raw_getsockopt,
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000985 .compat_ioctl = compat_raw_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800986#endif
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300987 .diag_destroy = raw_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988};
989
990#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991static struct sock *raw_get_first(struct seq_file *seq)
992{
993 struct sock *sk;
Christoph Hellwig93cb5a12018-04-10 22:08:28 +0200994 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Jianjun Kong5a5f3a82008-11-03 00:24:34 -0800995 struct raw_iter_state *state = raw_seq_private(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800997 for (state->bucket = 0; state->bucket < RAW_HTABLE_SIZE;
998 ++state->bucket) {
Christoph Hellwig93cb5a12018-04-10 22:08:28 +0200999 sk_for_each(sk, &h->ht[state->bucket])
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001000 if (sock_net(sk) == seq_file_net(seq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 goto found;
1002 }
1003 sk = NULL;
1004found:
1005 return sk;
1006}
1007
1008static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
1009{
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001010 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001011 struct raw_iter_state *state = raw_seq_private(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 do {
1014 sk = sk_next(sk);
1015try_again:
1016 ;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001017 } while (sk && sock_net(sk) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -08001019 if (!sk && ++state->bucket < RAW_HTABLE_SIZE) {
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001020 sk = sk_head(&h->ht[state->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto try_again;
1022 }
1023 return sk;
1024}
1025
1026static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
1027{
1028 struct sock *sk = raw_get_first(seq);
1029
1030 if (sk)
1031 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
1032 --pos;
1033 return pos ? NULL : sk;
1034}
1035
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001036void *raw_seq_start(struct seq_file *seq, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001038 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001039
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001040 read_lock(&h->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1042}
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001043EXPORT_SYMBOL_GPL(raw_seq_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001045void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 struct sock *sk;
1048
1049 if (v == SEQ_START_TOKEN)
1050 sk = raw_get_first(seq);
1051 else
1052 sk = raw_get_next(seq, v);
1053 ++*pos;
1054 return sk;
1055}
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001056EXPORT_SYMBOL_GPL(raw_seq_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001058void raw_seq_stop(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001060 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001061
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001062 read_unlock(&h->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001064EXPORT_SYMBOL_GPL(raw_seq_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001066static void raw_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 struct inet_sock *inet = inet_sk(sp);
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001069 __be32 dest = inet->inet_daddr,
1070 src = inet->inet_rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 __u16 destp = 0,
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001072 srcp = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001074 seq_printf(seq, "%4d: %08X:%04X %08X:%04X"
Patrick Talbertea9a0372019-05-17 17:11:28 +02001075 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %u\n",
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001076 i, src, srcp, dest, destp, sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001077 sk_wmem_alloc_get(sp),
1078 sk_rmem_alloc_get(sp),
Eric W. Biedermana7cb5a42012-05-24 01:10:10 -06001079 0, 0L, 0,
1080 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
1081 0, sock_i_ino(sp),
Reshetova, Elena41c6d652017-06-30 13:08:01 +03001082 refcount_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085static int raw_seq_show(struct seq_file *seq, void *v)
1086{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (v == SEQ_START_TOKEN)
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001088 seq_printf(seq, " sl local_address rem_address st tx_queue "
1089 "rx_queue tr tm->when retrnsmt uid timeout "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001090 "inode ref pointer drops\n");
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001091 else
1092 raw_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return 0;
1094}
1095
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001096static const struct seq_operations raw_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 .start = raw_seq_start,
1098 .next = raw_seq_next,
1099 .stop = raw_seq_stop,
1100 .show = raw_seq_show,
1101};
1102
Pavel Emelyanova308da12008-01-14 05:36:50 -08001103static __net_init int raw_init_net(struct net *net)
1104{
Christoph Hellwigc3506372018-04-10 19:42:55 +02001105 if (!proc_create_net_data("raw", 0444, net->proc_net, &raw_seq_ops,
1106 sizeof(struct raw_iter_state), &raw_v4_hashinfo))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001107 return -ENOMEM;
1108
1109 return 0;
1110}
1111
1112static __net_exit void raw_exit_net(struct net *net)
1113{
Gao fengece31ff2013-02-18 01:34:56 +00001114 remove_proc_entry("raw", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001115}
1116
1117static __net_initdata struct pernet_operations raw_net_ops = {
1118 .init = raw_init_net,
1119 .exit = raw_exit_net,
1120};
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122int __init raw_proc_init(void)
1123{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001124 return register_pernet_subsys(&raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
1127void __init raw_proc_exit(void)
1128{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001129 unregister_pernet_subsys(&raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
David Ahern86d1d8b2018-11-27 20:52:24 -08001131#endif /* CONFIG_PROC_FS */
Mike Manning68974452018-11-07 15:36:05 +00001132
1133static void raw_sysctl_init_net(struct net *net)
1134{
1135#ifdef CONFIG_NET_L3_MASTER_DEV
1136 net->ipv4.sysctl_raw_l3mdev_accept = 1;
1137#endif
1138}
1139
1140static int __net_init raw_sysctl_init(struct net *net)
1141{
1142 raw_sysctl_init_net(net);
1143 return 0;
1144}
1145
1146static struct pernet_operations __net_initdata raw_sysctl_ops = {
1147 .init = raw_sysctl_init,
1148};
1149
1150void __init raw_init(void)
1151{
1152 raw_sysctl_init_net(&init_net);
1153 if (register_pernet_subsys(&raw_sysctl_ops))
1154 panic("RAW: failed to init sysctl parameters.\n");
1155}