blob: 21800979ed621a17b0871bab18159d79db729050 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * RAW - implementation of IP "raw" sockets.
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 *
11 * Fixes:
12 * Alan Cox : verify_area() fixed up
13 * Alan Cox : ICMP error handling
14 * Alan Cox : EMSGSIZE if you send too big a packet
15 * Alan Cox : Now uses generic datagrams and shared
16 * skbuff library. No more peek crashes,
17 * no more backlogs
18 * Alan Cox : Checks sk->broadcast.
19 * Alan Cox : Uses skb_free_datagram/skb_copy_datagram
20 * Alan Cox : Raw passes ip options too
21 * Alan Cox : Setsocketopt added
22 * Alan Cox : Fixed error return for broadcasts
23 * Alan Cox : Removed wake_up calls
24 * Alan Cox : Use ttl/tos
25 * Alan Cox : Cleaned up old debugging
26 * Alan Cox : Use new kernel side addresses
27 * Arnt Gulbrandsen : Fixed MSG_DONTROUTE in raw sockets.
28 * Alan Cox : BSD style RAW socket demultiplexing.
29 * Alan Cox : Beginnings of mrouted support.
30 * Alan Cox : Added IP_HDRINCL option.
31 * Alan Cox : Skip broadcast check if BSDism set.
32 * David S. Miller : New socket lookup architecture.
33 *
34 * This program is free software; you can redistribute it and/or
35 * modify it under the terms of the GNU General Public License
36 * as published by the Free Software Foundation; either version
37 * 2 of the License, or (at your option) any later version.
38 */
Dave Jonesbf0d5242006-09-22 14:00:29 -070039
Alan Cox715b49e2006-01-18 17:44:07 -080040#include <linux/types.h>
Arun Sharma600634972011-07-26 16:09:06 -070041#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/byteorder.h>
43#include <asm/current.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080044#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/ioctls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/stddef.h>
47#include <linux/slab.h>
48#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/kernel.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040050#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/spinlock.h>
52#include <linux/sockios.h>
53#include <linux/socket.h>
54#include <linux/in.h>
55#include <linux/mroute.h>
56#include <linux/netdevice.h>
57#include <linux/in_route.h>
58#include <linux/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/skbuff.h>
Quentin Armitagef5220d62014-07-23 09:58:01 +010060#include <linux/igmp.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020061#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <net/dst.h>
63#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/ip.h>
65#include <linux/net.h>
66#include <net/ip.h>
67#include <net/icmp.h>
68#include <net/udp.h>
69#include <net/raw.h>
70#include <net/snmp.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070071#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <net/inet_common.h>
73#include <net/checksum.h>
74#include <net/xfrm.h>
75#include <linux/rtnetlink.h>
76#include <linux/proc_fs.h>
77#include <linux/seq_file.h>
78#include <linux/netfilter.h>
79#include <linux/netfilter_ipv4.h>
Eric W. Biederman709b46e2011-01-29 16:15:56 +000080#include <linux/compat.h>
Herbert Xuc008ba5b2014-11-07 21:27:09 +080081#include <linux/uio.h>
82
83struct raw_frag_vec {
Al Virob61e9dc2014-11-24 10:52:29 -050084 struct msghdr *msg;
Herbert Xuc008ba5b2014-11-07 21:27:09 +080085 union {
86 struct icmphdr icmph;
87 char c[1];
88 } hdr;
89 int hlen;
90};
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030092struct raw_hashinfo raw_v4_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070093 .lock = __RW_LOCK_UNLOCKED(raw_v4_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080094};
Cyrill Gorcunov432490f2016-10-21 13:03:44 +030095EXPORT_SYMBOL_GPL(raw_v4_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Craig Gallek086c6532016-02-10 11:50:35 -050097int raw_hash_sk(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -070099 struct raw_hashinfo *h = sk->sk_prot->h.raw_hash;
Pavel Emelyanov65b4c502007-11-19 22:37:24 -0800100 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000102 head = &h->ht[inet_sk(sk)->inet_num & (RAW_HTABLE_SIZE - 1)];
Pavel Emelyanov65b4c502007-11-19 22:37:24 -0800103
104 write_lock_bh(&h->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 sk_add_node(sk, head);
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700106 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Pavel Emelyanov65b4c502007-11-19 22:37:24 -0800107 write_unlock_bh(&h->lock);
Craig Gallek086c6532016-02-10 11:50:35 -0500108
109 return 0;
Pavel Emelyanov65b4c502007-11-19 22:37:24 -0800110}
111EXPORT_SYMBOL_GPL(raw_hash_sk);
112
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700113void raw_unhash_sk(struct sock *sk)
Pavel Emelyanovab707682007-11-19 22:37:58 -0800114{
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700115 struct raw_hashinfo *h = sk->sk_prot->h.raw_hash;
116
Pavel Emelyanovab707682007-11-19 22:37:58 -0800117 write_lock_bh(&h->lock);
118 if (sk_del_node_init(sk))
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700119 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Pavel Emelyanovab707682007-11-19 22:37:58 -0800120 write_unlock_bh(&h->lock);
121}
122EXPORT_SYMBOL_GPL(raw_unhash_sk);
123
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300124struct sock *__raw_v4_lookup(struct net *net, struct sock *sk,
David Ahern67359932017-08-07 08:44:18 -0700125 unsigned short num, __be32 raddr, __be32 laddr,
126 int dif, int sdif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800128 sk_for_each_from(sk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct inet_sock *inet = inet_sk(sk);
130
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000131 if (net_eq(sock_net(sk), net) && inet->inet_num == num &&
132 !(inet->inet_daddr && inet->inet_daddr != raddr) &&
133 !(inet->inet_rcv_saddr && inet->inet_rcv_saddr != laddr) &&
David Ahern67359932017-08-07 08:44:18 -0700134 !(sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif &&
135 sk->sk_bound_dev_if != sdif))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 goto found; /* gotcha */
137 }
138 sk = NULL;
139found:
140 return sk;
141}
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300142EXPORT_SYMBOL_GPL(__raw_v4_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144/*
145 * 0 - deliver
146 * 1 - block
147 */
Eric Dumazetab43ed82012-09-22 00:08:29 +0000148static int icmp_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Eric Dumazetab43ed82012-09-22 00:08:29 +0000150 struct icmphdr _hdr;
151 const struct icmphdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Eric Dumazetab43ed82012-09-22 00:08:29 +0000153 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
154 sizeof(_hdr), &_hdr);
155 if (!hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 1;
157
Eric Dumazetab43ed82012-09-22 00:08:29 +0000158 if (hdr->type < 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 __u32 data = raw_sk(sk)->filter.data;
160
Eric Dumazetab43ed82012-09-22 00:08:29 +0000161 return ((1U << hdr->type) & data) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
164 /* Do not block unknown ICMP types */
165 return 0;
166}
167
168/* IP input processing comes here for RAW socket delivery.
169 * Caller owns SKB, so we must make clones.
170 *
171 * RFC 1122: SHOULD pass TOS value up to the transport layer.
172 * -> It does. And not only TOS, but all IP header.
173 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000174static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
David Ahern67359932017-08-07 08:44:18 -0700176 int sdif = inet_sdif(skb);
David Ahernda2e7702019-05-07 20:44:59 -0700177 int dif = inet_iif(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct sock *sk;
179 struct hlist_head *head;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700180 int delivered = 0;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800181 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800183 read_lock(&raw_v4_hashinfo.lock);
184 head = &raw_v4_hashinfo.ht[hash];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (hlist_empty(head))
186 goto out;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800187
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900188 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800189 sk = __raw_v4_lookup(net, __sk_head(head), iph->protocol,
David Ahernda2e7702019-05-07 20:44:59 -0700190 iph->saddr, iph->daddr, dif, sdif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 while (sk) {
Patrick McHardyd13964f2005-08-09 19:45:02 -0700193 delivered = 1;
Quentin Armitagef5220d62014-07-23 09:58:01 +0100194 if ((iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) &&
195 ip_mc_sf_allow(sk, iph->daddr, iph->saddr,
David Ahern60d9b032017-08-07 08:44:19 -0700196 skb->dev->ifindex, sdif)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
198
199 /* Not releasing hash table! */
200 if (clone)
201 raw_rcv(sk, clone);
202 }
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800203 sk = __raw_v4_lookup(net, sk_next(sk), iph->protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 iph->saddr, iph->daddr,
Stephen Suryaputra7c92f3e2019-06-24 20:14:06 -0400205 dif, sdif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800208 read_unlock(&raw_v4_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700209 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800212int raw_local_deliver(struct sk_buff *skb, int protocol)
213{
214 int hash;
215 struct sock *raw_sk;
216
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800217 hash = protocol & (RAW_HTABLE_SIZE - 1);
218 raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800219
220 /* If there maybe a raw socket we must check - if not we
221 * don't care less
222 */
223 if (raw_sk && !raw_v4_input(skb, ip_hdr(skb), hash))
224 raw_sk = NULL;
225
226 return raw_sk != NULL;
227
228}
229
230static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300233 const int type = icmp_hdr(skb)->type;
234 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 int err = 0;
236 int harderr = 0;
237
David S. Miller36393392012-06-14 22:21:46 -0700238 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
239 ipv4_sk_update_pmtu(skb, sk, info);
Duan Jiong8d65b112013-09-20 18:21:25 +0800240 else if (type == ICMP_REDIRECT) {
David S. Miller55be7a92012-07-11 21:27:49 -0700241 ipv4_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800242 return;
243 }
David S. Miller36393392012-06-14 22:21:46 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* Report error on raw socket, if:
246 1. User requested ip_recverr.
247 2. Socket is connected (otherwise the error indication
248 is useless without ip_recverr and error is hard.
249 */
250 if (!inet->recverr && sk->sk_state != TCP_ESTABLISHED)
251 return;
252
253 switch (type) {
254 default:
255 case ICMP_TIME_EXCEEDED:
256 err = EHOSTUNREACH;
257 break;
258 case ICMP_SOURCE_QUENCH:
259 return;
260 case ICMP_PARAMETERPROB:
261 err = EPROTO;
262 harderr = 1;
263 break;
264 case ICMP_DEST_UNREACH:
265 err = EHOSTUNREACH;
266 if (code > NR_ICMP_UNREACH)
267 break;
268 err = icmp_err_convert[code].errno;
269 harderr = icmp_err_convert[code].fatal;
270 if (code == ICMP_FRAG_NEEDED) {
271 harderr = inet->pmtudisc != IP_PMTUDISC_DONT;
272 err = EMSGSIZE;
273 }
274 }
275
276 if (inet->recverr) {
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000277 const struct iphdr *iph = (const struct iphdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 u8 *payload = skb->data + (iph->ihl << 2);
279
280 if (inet->hdrincl)
281 payload = skb->data;
282 ip_icmp_error(sk, skb, err, 0, info, payload);
283 }
284
285 if (inet->recverr || harderr) {
286 sk->sk_err = err;
287 sk->sk_error_report(sk);
288 }
289}
290
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800291void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info)
292{
293 int hash;
294 struct sock *raw_sk;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000295 const struct iphdr *iph;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800296 struct net *net;
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800297
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800298 hash = protocol & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800299
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800300 read_lock(&raw_v4_hashinfo.lock);
301 raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
Ian Morris00db4122015-04-03 09:17:27 +0100302 if (raw_sk) {
David Ahern67359932017-08-07 08:44:18 -0700303 int dif = skb->dev->ifindex;
304 int sdif = inet_sdif(skb);
305
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000306 iph = (const struct iphdr *)skb->data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900307 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800308
309 while ((raw_sk = __raw_v4_lookup(net, raw_sk, protocol,
310 iph->daddr, iph->saddr,
David Ahern67359932017-08-07 08:44:18 -0700311 dif, sdif)) != NULL) {
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800312 raw_err(raw_sk, skb, info);
313 raw_sk = sk_next(raw_sk);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000314 iph = (const struct iphdr *)skb->data;
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800315 }
316 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800317 read_unlock(&raw_v4_hashinfo.lock);
Pavel Emelyanov7bc54c92007-11-19 22:35:07 -0800318}
319
Daniel Baluta5e73ea12012-04-15 01:34:41 +0000320static int raw_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 /* Charge it to the socket. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900323
Shawn Bohrerfbf88662013-10-07 11:01:40 -0500324 ipv4_pktinfo_prepare(sk, skb);
Eric Dumazetd826eb12011-11-09 07:24:35 +0000325 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 kfree_skb(skb);
327 return NET_RX_DROP;
328 }
329
330 return NET_RX_SUCCESS;
331}
332
333int raw_rcv(struct sock *sk, struct sk_buff *skb)
334{
335 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chen33c732c2007-11-13 20:30:01 -0800336 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 kfree_skb(skb);
338 return NET_RX_DROP;
339 }
Patrick McHardyb59c2702006-01-06 23:06:10 -0800340 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700342 skb_push(skb, skb->data - skb_network_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 raw_rcv_skb(sk, skb);
345 return 0;
346}
347
David S. Miller77968b72011-05-08 17:12:19 -0700348static int raw_send_hdrinc(struct sock *sk, struct flowi4 *fl4,
Al Viro7ae9abf2014-11-27 19:30:51 -0500349 struct msghdr *msg, size_t length,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400350 struct rtable **rtp, unsigned int flags,
351 const struct sockcm_cookie *sockc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct inet_sock *inet = inet_sk(sk);
Pavel Emelyanov0388b002008-07-14 23:00:43 -0700354 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct iphdr *iph;
356 struct sk_buff *skb;
Herbert Xuf844c742008-01-05 23:14:44 -0800357 unsigned int iphlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000359 struct rtable *rt = *rtp;
Herbert Xu66088242011-11-18 02:20:04 +0000360 int hlen, tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Changli Gaod8d1f302010-06-10 23:31:35 -0700362 if (length > rt->dst.dev->mtu) {
David S. Miller77968b72011-05-08 17:12:19 -0700363 ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport,
Changli Gaod8d1f302010-06-10 23:31:35 -0700364 rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return -EMSGSIZE;
366 }
Alexander Potapenko86f4c902017-05-03 17:06:58 +0200367 if (length < sizeof(struct iphdr))
368 return -EINVAL;
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (flags&MSG_PROBE)
371 goto out;
372
Herbert Xu66088242011-11-18 02:20:04 +0000373 hlen = LL_RESERVED_SPACE(rt->dst.dev);
374 tlen = rt->dst.dev->needed_tailroom;
Johannes Bergf5184d22008-05-12 20:48:31 -0700375 skb = sock_alloc_send_skb(sk,
Herbert Xu66088242011-11-18 02:20:04 +0000376 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700377 flags & MSG_DONTWAIT, &err);
Ian Morris51456b22015-04-03 09:17:26 +0100378 if (!skb)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900379 goto error;
Herbert Xu66088242011-11-18 02:20:04 +0000380 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800383 skb->mark = sk->sk_mark;
Jesus Sanchez-Palenciabc969a92018-07-03 15:42:49 -0700384 skb->tstamp = sockc->transmit_time;
Changli Gaod8d1f302010-06-10 23:31:35 -0700385 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000386 *rtp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300388 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700389 iph = ip_hdr(skb);
Arnaldo Carvalho de Melo7e28ecc2007-03-10 18:40:59 -0300390 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 skb->ip_summed = CHECKSUM_NONE;
393
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400394 sock_tx_timestamp(sk, sockc->tsflags, &skb_shinfo(skb)->tx_flags);
Willem de Bruijn11878b42014-07-14 17:55:06 -0400395
Julian Anastasov0dec8792017-02-06 23:14:16 +0200396 if (flags & MSG_CONFIRM)
397 skb_set_dst_pending_confirm(skb, 1);
398
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700399 skb->transport_header = skb->network_header;
Neil Horman55888df2009-10-28 08:59:47 +0000400 err = -EFAULT;
Al Viro21226ab2014-11-28 15:48:29 -0500401 if (memcpy_from_msg(iph, msg, length))
Neil Horman55888df2009-10-28 08:59:47 +0000402 goto error_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Herbert Xuf844c742008-01-05 23:14:44 -0800404 iphlen = iph->ihl * 4;
Neil Horman55888df2009-10-28 08:59:47 +0000405
406 /*
407 * We don't want to modify the ip header, but we do need to
408 * be sure that it won't cause problems later along the network
409 * stack. Specifically we want to make sure that iph->ihl is a
410 * sane value. If ihl points beyond the length of the buffer passed
411 * in, reject the frame as invalid
412 */
413 err = -EINVAL;
414 if (iphlen > length)
415 goto error_free;
416
417 if (iphlen >= sizeof(*iph)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!iph->saddr)
David S. Miller77968b72011-05-08 17:12:19 -0700419 iph->saddr = fl4->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 iph->check = 0;
421 iph->tot_len = htons(length);
422 if (!iph->id)
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +0100423 ip_select_ident(net, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
Ben Cartwright-Cox027ac582015-11-14 15:13:58 +0000426 skb->transport_header += iphlen;
427 if (iph->protocol == IPPROTO_ICMP &&
428 length >= iphlen + sizeof(struct icmphdr))
429 icmp_out_count(net, ((struct icmphdr *)
430 skb_transport_header(skb))->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500433 err = NF_HOOK(NFPROTO_IPV4, NF_INET_LOCAL_OUT,
434 net, sk, skb, NULL, rt->dst.dev,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500435 dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700437 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (err)
439 goto error;
440out:
441 return 0;
442
Neil Horman55888df2009-10-28 08:59:47 +0000443error_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 kfree_skb(skb);
445error:
Pavel Emelyanov5e38e272008-07-16 20:19:49 -0700446 IP_INC_STATS(net, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700447 if (err == -ENOBUFS && !inet->recverr)
448 err = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900449 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800452static int raw_probe_proto_opt(struct raw_frag_vec *rfv, struct flowi4 *fl4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Herbert Xu32b59132014-11-07 21:27:08 +0800454 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Herbert Xu32b59132014-11-07 21:27:08 +0800456 if (fl4->flowi4_proto != IPPROTO_ICMP)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Herbert Xu32b59132014-11-07 21:27:08 +0800459 /* We only need the first two bytes. */
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800460 rfv->hlen = 2;
461
Al Virob61e9dc2014-11-24 10:52:29 -0500462 err = memcpy_from_msg(rfv->hdr.c, rfv->msg, rfv->hlen);
Herbert Xu32b59132014-11-07 21:27:08 +0800463 if (err)
464 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800466 fl4->fl4_icmp_type = rfv->hdr.icmph.type;
467 fl4->fl4_icmp_code = rfv->hdr.icmph.code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800469 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800472static int raw_getfrag(void *from, char *to, int offset, int len, int odd,
473 struct sk_buff *skb)
474{
475 struct raw_frag_vec *rfv = from;
476
477 if (offset < rfv->hlen) {
478 int copy = min(rfv->hlen - offset, len);
479
480 if (skb->ip_summed == CHECKSUM_PARTIAL)
481 memcpy(to, rfv->hdr.c + offset, copy);
482 else
483 skb->csum = csum_block_add(
484 skb->csum,
485 csum_partial_copy_nocheck(rfv->hdr.c + offset,
486 to, copy, 0),
487 odd);
488
489 odd = 0;
490 offset += copy;
491 to += copy;
492 len -= copy;
493
494 if (!len)
495 return 0;
496 }
497
498 offset -= rfv->hlen;
499
Al Virof69e6d12014-11-24 13:23:40 -0500500 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800501}
502
Ying Xue1b784142015-03-02 15:37:48 +0800503static int raw_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 struct inet_sock *inet = inet_sk(sk);
David Ahernbb191c32015-10-05 08:51:27 -0700506 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct ipcm_cookie ipc;
508 struct rtable *rt = NULL;
David S. Miller77968b72011-05-08 17:12:19 -0700509 struct flowi4 fl4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 int free = 0;
Al Viro3ca3c682006-09-27 18:28:07 -0700511 __be32 daddr;
Al Viroc1d18f92006-09-27 18:28:28 -0700512 __be32 saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 u8 tos;
514 int err;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000515 struct ip_options_data opt_copy;
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800516 struct raw_frag_vec rfv;
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000517 int hdrincl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 err = -EMSGSIZE;
Jesper Juhl926d4b82005-06-18 23:00:00 -0700520 if (len > 0xFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 goto out;
522
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000523 /* hdrincl should be READ_ONCE(inet->hdrincl)
Nicolai Stange20b50d72018-01-08 15:54:44 +0100524 * but READ_ONCE() doesn't work with bit fields.
525 * Doing this indirectly yields the same result.
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000526 */
527 hdrincl = inet->hdrincl;
Nicolai Stange20b50d72018-01-08 15:54:44 +0100528 hdrincl = READ_ONCE(hdrincl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /*
530 * Check the flags.
531 */
532
533 err = -EOPNOTSUPP;
534 if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message */
535 goto out; /* compatibility */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /*
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900538 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
540
541 if (msg->msg_namelen) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100542 DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 err = -EINVAL;
544 if (msg->msg_namelen < sizeof(*usin))
545 goto out;
546 if (usin->sin_family != AF_INET) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000547 pr_info_once("%s: %s forgot to set AF_INET. Fix it!\n",
548 __func__, current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 err = -EAFNOSUPPORT;
550 if (usin->sin_family)
551 goto out;
552 }
553 daddr = usin->sin_addr.s_addr;
554 /* ANK: I did not forget to get protocol from port field.
555 * I just do not know, who uses this weirdness.
556 * IP_HDRINCL is much more convenient.
557 */
558 } else {
559 err = -EDESTADDRREQ;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900560 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto out;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000562 daddr = inet->inet_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
Willem de Bruijn35178202018-07-06 10:12:54 -0400565 ipcm_init_sk(&ipc, inet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 if (msg->msg_controllen) {
Soheil Hassas Yeganeh24025c42016-04-02 23:08:10 -0400568 err = ip_cmsg_send(sk, msg, &ipc, false);
Eric Dumazet91948302016-02-04 06:23:28 -0800569 if (unlikely(err)) {
570 kfree(ipc.opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 goto out;
Eric Dumazet91948302016-02-04 06:23:28 -0800572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (ipc.opt)
574 free = 1;
575 }
576
577 saddr = ipc.addr;
578 ipc.addr = daddr;
579
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000580 if (!ipc.opt) {
581 struct ip_options_rcu *inet_opt;
582
583 rcu_read_lock();
584 inet_opt = rcu_dereference(inet->inet_opt);
585 if (inet_opt) {
586 memcpy(&opt_copy, inet_opt,
587 sizeof(*inet_opt) + inet_opt->opt.optlen);
588 ipc.opt = &opt_copy.opt;
589 }
590 rcu_read_unlock();
591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (ipc.opt) {
594 err = -EINVAL;
595 /* Linux does not mangle headers on raw sockets,
596 * so that IP options + IP_HDRINCL is non-sense.
597 */
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000598 if (hdrincl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto done;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000600 if (ipc.opt->opt.srr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (!daddr)
602 goto done;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000603 daddr = ipc.opt->opt.faddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 }
Francesco Fuscoaa661582013-09-24 15:43:09 +0200606 tos = get_rtconn_flags(&ipc, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (msg->msg_flags & MSG_DONTROUTE)
608 tos |= RTO_ONLINK;
609
Joe Perchesf97c1e02007-12-16 13:45:43 -0800610 if (ipv4_is_multicast(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!ipc.oif)
612 ipc.oif = inet->mc_index;
613 if (!saddr)
614 saddr = inet->mc_addr;
David Ahern9515a2e2018-01-24 19:37:38 -0800615 } else if (!ipc.oif) {
Erich E. Hoover76e21052012-02-08 09:11:07 +0000616 ipc.oif = inet->uc_index;
David Ahern9515a2e2018-01-24 19:37:38 -0800617 } else if (ipv4_is_lbcast(daddr) && inet->uc_index) {
618 /* oif is set, packet is to local broadcast and
619 * and uc_index is set. oif is most likely set
620 * by sk_bound_dev_if. If uc_index != oif check if the
621 * oif is an L3 master and uc_index is an L3 slave.
622 * If so, we want to allow the send using the uc_index.
623 */
624 if (ipc.oif != inet->uc_index &&
625 ipc.oif == l3mdev_master_ifindex_by_index(sock_net(sk),
626 inet->uc_index)) {
627 ipc.oif = inet->uc_index;
628 }
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
David S. Miller77968b72011-05-08 17:12:19 -0700631 flowi4_init_output(&fl4, ipc.oif, sk->sk_mark, tos,
632 RT_SCOPE_UNIVERSE,
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000633 hdrincl ? IPPROTO_RAW : sk->sk_protocol,
Steffen Klassert0e0d44a2013-08-28 08:04:14 +0200634 inet_sk_flowi_flags(sk) |
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000635 (hdrincl ? FLOWI_FLAG_KNOWN_NH : 0),
Lorenzo Colittie2d118a2016-11-04 02:23:43 +0900636 daddr, saddr, 0, 0, sk->sk_uid);
David S. Milleref164ae2011-03-31 04:53:51 -0700637
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000638 if (!hdrincl) {
Al Virob61e9dc2014-11-24 10:52:29 -0500639 rfv.msg = msg;
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800640 rfv.hlen = 0;
641
642 err = raw_probe_proto_opt(&rfv, &fl4);
David S. Miller77968b72011-05-08 17:12:19 -0700643 if (err)
David S. Millerb23dd4f2011-03-02 14:31:35 -0800644 goto done;
David S. Miller77968b72011-05-08 17:12:19 -0700645 }
646
647 security_sk_classify_flow(sk, flowi4_to_flowi(&fl4));
David Ahernbb191c32015-10-05 08:51:27 -0700648 rt = ip_route_output_flow(net, &fl4, sk);
David S. Miller77968b72011-05-08 17:12:19 -0700649 if (IS_ERR(rt)) {
650 err = PTR_ERR(rt);
651 rt = NULL;
652 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 err = -EACCES;
656 if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
657 goto done;
658
659 if (msg->msg_flags & MSG_CONFIRM)
660 goto do_confirm;
661back_from_confirm:
662
Mohamed Ghannam8f659a02017-12-10 03:50:58 +0000663 if (hdrincl)
Al Viro7ae9abf2014-11-27 19:30:51 -0500664 err = raw_send_hdrinc(sk, &fl4, msg, len,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -0400665 &rt, msg->msg_flags, &ipc.sockc);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 else {
668 if (!ipc.addr)
David S. Miller77968b72011-05-08 17:12:19 -0700669 ipc.addr = fl4.daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 lock_sock(sk);
Herbert Xuc008ba5b2014-11-07 21:27:09 +0800671 err = ip_append_data(sk, &fl4, raw_getfrag,
672 &rfv, len, 0,
David S. Miller77968b72011-05-08 17:12:19 -0700673 &ipc, &rt, msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (err)
675 ip_flush_pending_frames(sk);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700676 else if (!(msg->msg_flags & MSG_MORE)) {
David S. Miller77968b72011-05-08 17:12:19 -0700677 err = ip_push_pending_frames(sk, &fl4);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700678 if (err == -ENOBUFS && !inet->recverr)
679 err = 0;
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 release_sock(sk);
682 }
683done:
684 if (free)
685 kfree(ipc.opt);
686 ip_rt_put(rt);
687
Jesper Juhl5418c6922005-06-18 22:59:45 -0700688out:
689 if (err < 0)
690 return err;
691 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +0200694 if (msg->msg_flags & MSG_PROBE)
695 dst_confirm_neigh(&rt->dst, &fl4.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!(msg->msg_flags & MSG_PROBE) || len)
697 goto back_from_confirm;
698 err = 0;
699 goto done;
700}
701
702static void raw_close(struct sock *sk, long timeout)
703{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900704 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300705 * Raw sockets may have direct kernel references. Kill them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
707 ip_ra_control(sk, 0, NULL);
708
709 sk_common_release(sk);
710}
711
Brian Haley7d06b2e2008-06-14 17:04:49 -0700712static void raw_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -0700713{
714 lock_sock(sk);
715 ip_flush_pending_frames(sk);
716 release_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -0700717}
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719/* This gets rid of all the nasties in af_inet. -DaveM */
720static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
721{
722 struct inet_sock *inet = inet_sk(sk);
723 struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
David Aherncd2c0f42016-11-03 09:25:00 -0700724 u32 tb_id = RT_TABLE_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int ret = -EINVAL;
726 int chk_addr_ret;
727
728 if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
729 goto out;
David Aherncd2c0f42016-11-03 09:25:00 -0700730
731 if (sk->sk_bound_dev_if)
732 tb_id = l3mdev_fib_table_by_index(sock_net(sk),
733 sk->sk_bound_dev_if) ? : tb_id;
734
735 chk_addr_ret = inet_addr_type_table(sock_net(sk), addr->sin_addr.s_addr,
736 tb_id);
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 ret = -EADDRNOTAVAIL;
739 if (addr->sin_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
740 chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
741 goto out;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000742 inet->inet_rcv_saddr = inet->inet_saddr = addr->sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000744 inet->inet_saddr = 0; /* Use device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 sk_dst_reset(sk);
746 ret = 0;
747out: return ret;
748}
749
750/*
751 * This should be easy, if there is something there
752 * we return it, otherwise we block.
753 */
754
Ying Xue1b784142015-03-02 15:37:48 +0800755static int raw_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
756 int noblock, int flags, int *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 struct inet_sock *inet = inet_sk(sk);
759 size_t copied = 0;
760 int err = -EOPNOTSUPP;
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100761 DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 struct sk_buff *skb;
763
764 if (flags & MSG_OOB)
765 goto out;
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (flags & MSG_ERRQUEUE) {
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100768 err = ip_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 goto out;
770 }
771
772 skb = skb_recv_datagram(sk, flags, noblock, &err);
773 if (!skb)
774 goto out;
775
776 copied = skb->len;
777 if (len < copied) {
778 msg->msg_flags |= MSG_TRUNC;
779 copied = len;
780 }
781
David S. Miller51f3d022014-11-05 16:46:40 -0500782 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (err)
784 goto done;
785
Neil Horman3b885782009-10-12 13:26:31 -0700786 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /* Copy the address. */
789 if (sin) {
790 sin->sin_family = AF_INET;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700791 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700792 sin->sin_port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100794 *addr_len = sizeof(*sin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 if (inet->cmsg_flags)
797 ip_cmsg_recv(msg, skb);
798 if (flags & MSG_TRUNC)
799 copied = skb->len;
800done:
801 skb_free_datagram(sk, skb);
Jesper Juhl5418c6922005-06-18 22:59:45 -0700802out:
803 if (err)
804 return err;
805 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808static int raw_init(struct sock *sk)
809{
810 struct raw_sock *rp = raw_sk(sk);
811
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000812 if (inet_sk(sk)->inet_num == IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 memset(&rp->filter, 0, sizeof(rp->filter));
814 return 0;
815}
816
817static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
818{
819 if (optlen > sizeof(struct icmp_filter))
820 optlen = sizeof(struct icmp_filter);
821 if (copy_from_user(&raw_sk(sk)->filter, optval, optlen))
822 return -EFAULT;
823 return 0;
824}
825
826static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
827{
828 int len, ret = -EFAULT;
829
830 if (get_user(len, optlen))
831 goto out;
832 ret = -EINVAL;
833 if (len < 0)
834 goto out;
835 if (len > sizeof(struct icmp_filter))
836 len = sizeof(struct icmp_filter);
837 ret = -EFAULT;
838 if (put_user(len, optlen) ||
839 copy_to_user(optval, &raw_sk(sk)->filter, len))
840 goto out;
841 ret = 0;
842out: return ret;
843}
844
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800845static int do_raw_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700846 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (optname == ICMP_FILTER) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000849 if (inet_sk(sk)->inet_num != IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -EOPNOTSUPP;
851 else
852 return raw_seticmpfilter(sk, optval, optlen);
853 }
854 return -ENOPROTOOPT;
855}
856
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800857static int raw_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700858 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 if (level != SOL_RAW)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800861 return ip_setsockopt(sk, level, optname, optval, optlen);
862 return do_raw_setsockopt(sk, level, optname, optval, optlen);
863}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800865#ifdef CONFIG_COMPAT
866static int compat_raw_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700867 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800868{
869 if (level != SOL_RAW)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800870 return compat_ip_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800871 return do_raw_setsockopt(sk, level, optname, optval, optlen);
872}
873#endif
874
875static int do_raw_getsockopt(struct sock *sk, int level, int optname,
876 char __user *optval, int __user *optlen)
877{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (optname == ICMP_FILTER) {
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000879 if (inet_sk(sk)->inet_num != IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return -EOPNOTSUPP;
881 else
882 return raw_geticmpfilter(sk, optval, optlen);
883 }
884 return -ENOPROTOOPT;
885}
886
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800887static int raw_getsockopt(struct sock *sk, int level, int optname,
888 char __user *optval, int __user *optlen)
889{
890 if (level != SOL_RAW)
891 return ip_getsockopt(sk, level, optname, optval, optlen);
892 return do_raw_getsockopt(sk, level, optname, optval, optlen);
893}
894
895#ifdef CONFIG_COMPAT
896static int compat_raw_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800897 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800898{
899 if (level != SOL_RAW)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800900 return compat_ip_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800901 return do_raw_getsockopt(sk, level, optname, optval, optlen);
902}
903#endif
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
906{
907 switch (cmd) {
Joe Perches4500ebf2011-07-01 09:43:07 +0000908 case SIOCOUTQ: {
909 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -0700910
Joe Perches4500ebf2011-07-01 09:43:07 +0000911 return put_user(amount, (int __user *)arg);
912 }
913 case SIOCINQ: {
914 struct sk_buff *skb;
915 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Joe Perches4500ebf2011-07-01 09:43:07 +0000917 spin_lock_bh(&sk->sk_receive_queue.lock);
918 skb = skb_peek(&sk->sk_receive_queue);
Ian Morris00db4122015-04-03 09:17:27 +0100919 if (skb)
Joe Perches4500ebf2011-07-01 09:43:07 +0000920 amount = skb->len;
921 spin_unlock_bh(&sk->sk_receive_queue.lock);
922 return put_user(amount, (int __user *)arg);
923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Joe Perches4500ebf2011-07-01 09:43:07 +0000925 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926#ifdef CONFIG_IP_MROUTE
Joe Perches4500ebf2011-07-01 09:43:07 +0000927 return ipmr_ioctl(sk, cmd, (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928#else
Joe Perches4500ebf2011-07-01 09:43:07 +0000929 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930#endif
931 }
932}
933
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000934#ifdef CONFIG_COMPAT
935static int compat_raw_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
936{
937 switch (cmd) {
938 case SIOCOUTQ:
939 case SIOCINQ:
940 return -ENOIOCTLCMD;
941 default:
942#ifdef CONFIG_IP_MROUTE
943 return ipmr_compat_ioctl(sk, cmd, compat_ptr(arg));
944#else
945 return -ENOIOCTLCMD;
946#endif
947 }
948}
949#endif
950
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300951int raw_abort(struct sock *sk, int err)
952{
953 lock_sock(sk);
954
955 sk->sk_err = err;
956 sk->sk_error_report(sk);
Cyrill Gorcunov3de864f2016-11-01 23:05:00 +0300957 __udp_disconnect(sk, 0);
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300958
959 release_sock(sk);
960
961 return 0;
962}
963EXPORT_SYMBOL_GPL(raw_abort);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965struct proto raw_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800966 .name = "RAW",
967 .owner = THIS_MODULE,
968 .close = raw_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -0700969 .destroy = raw_destroy,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800970 .connect = ip4_datagram_connect,
Eric Dumazet286c72d2016-10-20 09:39:40 -0700971 .disconnect = __udp_disconnect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800972 .ioctl = raw_ioctl,
973 .init = raw_init,
974 .setsockopt = raw_setsockopt,
975 .getsockopt = raw_getsockopt,
976 .sendmsg = raw_sendmsg,
977 .recvmsg = raw_recvmsg,
978 .bind = raw_bind,
979 .backlog_rcv = raw_rcv_skb,
Steffen Klassert8141ed92013-01-21 02:00:03 +0000980 .release_cb = ip4_datagram_release_cb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700981 .hash = raw_hash_sk,
982 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800983 .obj_size = sizeof(struct raw_sock),
David Windsor8c2bc892017-08-24 16:49:14 -0700984 .useroffset = offsetof(struct raw_sock, filter),
985 .usersize = sizeof_field(struct raw_sock, filter),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -0700986 .h.raw_hash = &raw_v4_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800987#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800988 .compat_setsockopt = compat_raw_setsockopt,
989 .compat_getsockopt = compat_raw_getsockopt,
Eric W. Biederman709b46e2011-01-29 16:15:56 +0000990 .compat_ioctl = compat_raw_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800991#endif
Cyrill Gorcunov432490f2016-10-21 13:03:44 +0300992 .diag_destroy = raw_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993};
994
995#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996static struct sock *raw_get_first(struct seq_file *seq)
997{
998 struct sock *sk;
Christoph Hellwig93cb5a12018-04-10 22:08:28 +0200999 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001000 struct raw_iter_state *state = raw_seq_private(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -08001002 for (state->bucket = 0; state->bucket < RAW_HTABLE_SIZE;
1003 ++state->bucket) {
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001004 sk_for_each(sk, &h->ht[state->bucket])
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001005 if (sock_net(sk) == seq_file_net(seq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto found;
1007 }
1008 sk = NULL;
1009found:
1010 return sk;
1011}
1012
1013static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
1014{
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001015 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001016 struct raw_iter_state *state = raw_seq_private(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 do {
1019 sk = sk_next(sk);
1020try_again:
1021 ;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09001022 } while (sk && sock_net(sk) != seq_file_net(seq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -08001024 if (!sk && ++state->bucket < RAW_HTABLE_SIZE) {
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001025 sk = sk_head(&h->ht[state->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 goto try_again;
1027 }
1028 return sk;
1029}
1030
1031static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
1032{
1033 struct sock *sk = raw_get_first(seq);
1034
1035 if (sk)
1036 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
1037 --pos;
1038 return pos ? NULL : sk;
1039}
1040
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001041void *raw_seq_start(struct seq_file *seq, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001043 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001044
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001045 read_lock(&h->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1047}
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001048EXPORT_SYMBOL_GPL(raw_seq_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001050void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct sock *sk;
1053
1054 if (v == SEQ_START_TOKEN)
1055 sk = raw_get_first(seq);
1056 else
1057 sk = raw_get_next(seq, v);
1058 ++*pos;
1059 return sk;
1060}
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001061EXPORT_SYMBOL_GPL(raw_seq_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001063void raw_seq_stop(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001065 struct raw_hashinfo *h = PDE_DATA(file_inode(seq->file));
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001066
Christoph Hellwig93cb5a12018-04-10 22:08:28 +02001067 read_unlock(&h->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001069EXPORT_SYMBOL_GPL(raw_seq_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001071static void raw_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 struct inet_sock *inet = inet_sk(sp);
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001074 __be32 dest = inet->inet_daddr,
1075 src = inet->inet_rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 __u16 destp = 0,
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001077 srcp = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001079 seq_printf(seq, "%4d: %08X:%04X %08X:%04X"
Francesco Fuscod14c5ab2013-08-15 13:42:14 +02001080 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d\n",
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001081 i, src, srcp, dest, destp, sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001082 sk_wmem_alloc_get(sp),
1083 sk_rmem_alloc_get(sp),
Eric W. Biedermana7cb5a42012-05-24 01:10:10 -06001084 0, 0L, 0,
1085 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
1086 0, sock_i_ino(sp),
Reshetova, Elena41c6d652017-06-30 13:08:01 +03001087 refcount_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static int raw_seq_show(struct seq_file *seq, void *v)
1091{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (v == SEQ_START_TOKEN)
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001093 seq_printf(seq, " sl local_address rem_address st tx_queue "
1094 "rx_queue tr tm->when retrnsmt uid timeout "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001095 "inode ref pointer drops\n");
Denis V. Lunev8cd850e2008-01-31 03:46:43 -08001096 else
1097 raw_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return 0;
1099}
1100
Stephen Hemmingerf6908082007-03-12 14:34:29 -07001101static const struct seq_operations raw_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 .start = raw_seq_start,
1103 .next = raw_seq_next,
1104 .stop = raw_seq_stop,
1105 .show = raw_seq_show,
1106};
1107
Pavel Emelyanova308da12008-01-14 05:36:50 -08001108static __net_init int raw_init_net(struct net *net)
1109{
Christoph Hellwigc3506372018-04-10 19:42:55 +02001110 if (!proc_create_net_data("raw", 0444, net->proc_net, &raw_seq_ops,
1111 sizeof(struct raw_iter_state), &raw_v4_hashinfo))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001112 return -ENOMEM;
1113
1114 return 0;
1115}
1116
1117static __net_exit void raw_exit_net(struct net *net)
1118{
Gao fengece31ff2013-02-18 01:34:56 +00001119 remove_proc_entry("raw", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001120}
1121
1122static __net_initdata struct pernet_operations raw_net_ops = {
1123 .init = raw_init_net,
1124 .exit = raw_exit_net,
1125};
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127int __init raw_proc_init(void)
1128{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001129 return register_pernet_subsys(&raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132void __init raw_proc_exit(void)
1133{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001134 unregister_pernet_subsys(&raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136#endif /* CONFIG_PROC_FS */