blob: 55c358ad3331f817b3911d21b6cbec7ddec2d031 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001// SPDX-License-Identifier: GPL-2.0
Sven Eckelmann6b1aea82018-01-01 00:00:00 +01002/* Copyright (C) 2007-2018 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000017 */
18
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000019#include "icmp_socket.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020020#include "main.h"
21
22#include <linux/atomic.h>
23#include <linux/compiler.h>
24#include <linux/debugfs.h>
25#include <linux/errno.h>
26#include <linux/etherdevice.h>
Sven Eckelmann48881ed2018-03-18 09:48:03 +010027#include <linux/eventpoll.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020028#include <linux/export.h>
29#include <linux/fcntl.h>
30#include <linux/fs.h>
Sven Eckelmannb92b94a2017-11-19 17:12:02 +010031#include <linux/gfp.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020032#include <linux/if_ether.h>
33#include <linux/kernel.h>
34#include <linux/list.h>
35#include <linux/module.h>
36#include <linux/netdevice.h>
37#include <linux/pkt_sched.h>
38#include <linux/poll.h>
39#include <linux/printk.h>
40#include <linux/sched.h> /* for linux/wait.h */
41#include <linux/skbuff.h>
42#include <linux/slab.h>
43#include <linux/spinlock.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020044#include <linux/stddef.h>
45#include <linux/string.h>
46#include <linux/uaccess.h>
47#include <linux/wait.h>
Sven Eckelmannfec149f2017-12-21 10:17:41 +010048#include <uapi/linux/batadv_packet.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020049
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050#include "hard-interface.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020051#include "log.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020052#include "originator.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020053#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
Sven Eckelmann56303d32012-06-05 22:31:31 +020055static struct batadv_socket_client *batadv_socket_client_hash[256];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056
Sven Eckelmann56303d32012-06-05 22:31:31 +020057static void batadv_socket_add_packet(struct batadv_socket_client *socket_client,
Simon Wunderlichda6b8c22013-10-22 22:50:09 +020058 struct batadv_icmp_header *icmph,
Sven Eckelmannaf4447f2012-05-12 18:33:59 +020059 size_t icmp_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060
Sven Eckelmannff15c272017-12-02 19:51:53 +010061/**
62 * batadv_socket_init() - Initialize soft interface independent socket data
63 */
Sven Eckelmann9039dc72012-05-12 02:09:33 +020064void batadv_socket_init(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065{
Sven Eckelmannaf4447f2012-05-12 18:33:59 +020066 memset(batadv_socket_client_hash, 0, sizeof(batadv_socket_client_hash));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000067}
68
Sven Eckelmannaf4447f2012-05-12 18:33:59 +020069static int batadv_socket_open(struct inode *inode, struct file *file)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000070{
71 unsigned int i;
Sven Eckelmann56303d32012-06-05 22:31:31 +020072 struct batadv_socket_client *socket_client;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073
Sven Eckelmannbd5b80d2012-08-20 23:37:26 +020074 if (!try_module_get(THIS_MODULE))
75 return -EBUSY;
76
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000077 nonseekable_open(inode, file);
78
Sven Eckelmann704509b2011-05-14 23:14:54 +020079 socket_client = kmalloc(sizeof(*socket_client), GFP_KERNEL);
Sven Eckelmannbd5b80d2012-08-20 23:37:26 +020080 if (!socket_client) {
81 module_put(THIS_MODULE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082 return -ENOMEM;
Sven Eckelmannbd5b80d2012-08-20 23:37:26 +020083 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084
Sven Eckelmannaf4447f2012-05-12 18:33:59 +020085 for (i = 0; i < ARRAY_SIZE(batadv_socket_client_hash); i++) {
86 if (!batadv_socket_client_hash[i]) {
87 batadv_socket_client_hash[i] = socket_client;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000088 break;
89 }
90 }
91
Sven Eckelmannaf4447f2012-05-12 18:33:59 +020092 if (i == ARRAY_SIZE(batadv_socket_client_hash)) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +010093 pr_err("Error - can't add another packet client: maximum number of clients reached\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094 kfree(socket_client);
Sven Eckelmannbd5b80d2012-08-20 23:37:26 +020095 module_put(THIS_MODULE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096 return -EXFULL;
97 }
98
99 INIT_LIST_HEAD(&socket_client->queue_list);
100 socket_client->queue_len = 0;
101 socket_client->index = i;
102 socket_client->bat_priv = inode->i_private;
103 spin_lock_init(&socket_client->lock);
104 init_waitqueue_head(&socket_client->queue_wait);
105
106 file->private_data = socket_client;
107
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000108 return 0;
109}
110
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200111static int batadv_socket_release(struct inode *inode, struct file *file)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112{
Geliang Tangfb1f23e2015-12-18 23:33:31 +0800113 struct batadv_socket_client *client = file->private_data;
114 struct batadv_socket_packet *packet, *tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115
Geliang Tangfb1f23e2015-12-18 23:33:31 +0800116 spin_lock_bh(&client->lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117
118 /* for all packets in the queue ... */
Geliang Tangfb1f23e2015-12-18 23:33:31 +0800119 list_for_each_entry_safe(packet, tmp, &client->queue_list, list) {
120 list_del(&packet->list);
121 kfree(packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122 }
123
Geliang Tangfb1f23e2015-12-18 23:33:31 +0800124 batadv_socket_client_hash[client->index] = NULL;
125 spin_unlock_bh(&client->lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000126
Geliang Tangfb1f23e2015-12-18 23:33:31 +0800127 kfree(client);
Sven Eckelmannbd5b80d2012-08-20 23:37:26 +0200128 module_put(THIS_MODULE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000129
130 return 0;
131}
132
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200133static ssize_t batadv_socket_read(struct file *file, char __user *buf,
134 size_t count, loff_t *ppos)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200136 struct batadv_socket_client *socket_client = file->private_data;
137 struct batadv_socket_packet *socket_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000138 size_t packet_len;
139 int error;
140
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200141 if ((file->f_flags & O_NONBLOCK) && socket_client->queue_len == 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142 return -EAGAIN;
143
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200144 if (!buf || count < sizeof(struct batadv_icmp_packet))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145 return -EINVAL;
146
147 if (!access_ok(VERIFY_WRITE, buf, count))
148 return -EFAULT;
149
150 error = wait_event_interruptible(socket_client->queue_wait,
151 socket_client->queue_len);
152
153 if (error)
154 return error;
155
156 spin_lock_bh(&socket_client->lock);
157
158 socket_packet = list_first_entry(&socket_client->queue_list,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200159 struct batadv_socket_packet, list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160 list_del(&socket_packet->list);
161 socket_client->queue_len--;
162
163 spin_unlock_bh(&socket_client->lock);
164
Sven Eckelmannb5a1eee2011-12-10 15:28:36 +0100165 packet_len = min(count, socket_packet->icmp_len);
166 error = copy_to_user(buf, &socket_packet->icmp_packet, packet_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000167
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000168 kfree(socket_packet);
169
170 if (error)
171 return -EFAULT;
172
173 return packet_len;
174}
175
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200176static ssize_t batadv_socket_write(struct file *file, const char __user *buff,
177 size_t len, loff_t *off)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200179 struct batadv_socket_client *socket_client = file->private_data;
180 struct batadv_priv *bat_priv = socket_client->bat_priv;
181 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000182 struct sk_buff *skb;
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200183 struct batadv_icmp_packet_rr *icmp_packet_rr;
184 struct batadv_icmp_header *icmp_header;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200185 struct batadv_orig_node *orig_node = NULL;
186 struct batadv_neigh_node *neigh_node = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200187 size_t packet_len = sizeof(struct batadv_icmp_packet);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200188 u8 *addr;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000189
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200190 if (len < sizeof(struct batadv_icmp_header)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200191 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200192 "Error - can't send packet from char device: invalid packet size\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193 return -EINVAL;
194 }
195
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200196 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200197
198 if (!primary_if) {
199 len = -EFAULT;
200 goto out;
201 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200203 if (len >= BATADV_ICMP_MAX_PACKET_SIZE)
204 packet_len = BATADV_ICMP_MAX_PACKET_SIZE;
205 else
206 packet_len = len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200208 skb = netdev_alloc_skb_ip_align(NULL, packet_len + ETH_HLEN);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200209 if (!skb) {
210 len = -ENOMEM;
211 goto out;
212 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213
Simon Wunderlichc54f38c92013-07-29 17:56:44 +0200214 skb->priority = TC_PRIO_CONTROL;
Antonio Quartulli41ab6c42013-04-02 22:28:44 +0200215 skb_reserve(skb, ETH_HLEN);
Johannes Berg4df864c2017-06-16 14:29:21 +0200216 icmp_header = skb_put(skb, packet_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200218 if (copy_from_user(icmp_header, buff, packet_len)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219 len = -EFAULT;
220 goto free_skb;
221 }
222
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100223 if (icmp_header->packet_type != BATADV_ICMP) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200224 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200225 "Error - can't send packet from char device: got bogus packet type (expected: BAT_ICMP)\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226 len = -EINVAL;
227 goto free_skb;
228 }
229
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200230 switch (icmp_header->msg_type) {
231 case BATADV_ECHO_REQUEST:
232 if (len < sizeof(struct batadv_icmp_packet)) {
233 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
234 "Error - can't send packet from char device: invalid packet size\n");
235 len = -EINVAL;
236 goto free_skb;
237 }
238
239 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
240 goto dst_unreach;
241
242 orig_node = batadv_orig_hash_find(bat_priv, icmp_header->dst);
243 if (!orig_node)
244 goto dst_unreach;
245
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100246 neigh_node = batadv_orig_router_get(orig_node,
247 BATADV_IF_DEFAULT);
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200248 if (!neigh_node)
249 goto dst_unreach;
250
251 if (!neigh_node->if_incoming)
252 goto dst_unreach;
253
254 if (neigh_node->if_incoming->if_status != BATADV_IF_ACTIVE)
255 goto dst_unreach;
256
257 icmp_packet_rr = (struct batadv_icmp_packet_rr *)icmp_header;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100258 if (packet_len == sizeof(*icmp_packet_rr)) {
259 addr = neigh_node->if_incoming->net_dev->dev_addr;
260 ether_addr_copy(icmp_packet_rr->rr[0], addr);
261 }
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200262
263 break;
264 default:
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200265 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200266 "Error - can't send packet from char device: got unknown message type\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267 len = -EINVAL;
268 goto free_skb;
269 }
270
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200271 icmp_header->uid = socket_client->index;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100273 if (icmp_header->version != BATADV_COMPAT_VERSION) {
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200274 icmp_header->msg_type = BATADV_PARAMETER_PROBLEM;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100275 icmp_header->version = BATADV_COMPAT_VERSION;
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200276 batadv_socket_add_packet(socket_client, icmp_header,
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200277 packet_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278 goto free_skb;
279 }
280
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100281 ether_addr_copy(icmp_header->orig, primary_if->net_dev->dev_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282
Antonio Quartulli95d39272016-01-16 16:40:15 +0800283 batadv_send_unicast_skb(skb, neigh_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284 goto out;
285
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286dst_unreach:
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200287 icmp_header->msg_type = BATADV_DESTINATION_UNREACHABLE;
288 batadv_socket_add_packet(socket_client, icmp_header, packet_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289free_skb:
290 kfree_skb(skb);
291out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200292 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100293 batadv_hardif_put(primary_if);
Marek Lindner44524fc2011-02-10 14:33:53 +0000294 if (neigh_node)
Sven Eckelmann25bb2502016-01-17 11:01:11 +0100295 batadv_neigh_node_put(neigh_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000296 if (orig_node)
Sven Eckelmann5d967312016-01-17 11:01:09 +0100297 batadv_orig_node_put(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298 return len;
299}
300
Al Viroade994f2017-07-03 00:01:49 -0400301static __poll_t batadv_socket_poll(struct file *file, poll_table *wait)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000302{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200303 struct batadv_socket_client *socket_client = file->private_data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304
305 poll_wait(file, &socket_client->queue_wait, wait);
306
307 if (socket_client->queue_len > 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800308 return EPOLLIN | EPOLLRDNORM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309
310 return 0;
311}
312
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200313static const struct file_operations batadv_fops = {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314 .owner = THIS_MODULE,
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200315 .open = batadv_socket_open,
316 .release = batadv_socket_release,
317 .read = batadv_socket_read,
318 .write = batadv_socket_write,
319 .poll = batadv_socket_poll,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320 .llseek = no_llseek,
321};
322
Sven Eckelmannff15c272017-12-02 19:51:53 +0100323/**
324 * batadv_socket_setup() - Create debugfs "socket" file
325 * @bat_priv: the bat priv with all the soft interface information
326 *
327 * Return: 0 on success or negative error number in case of failure
328 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200329int batadv_socket_setup(struct batadv_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000330{
331 struct dentry *d;
332
333 if (!bat_priv->debug_dir)
334 goto err;
335
Sven Eckelmann507b37c2016-09-01 10:25:12 +0200336 d = debugfs_create_file(BATADV_ICMP_SOCKET, 0600, bat_priv->debug_dir,
337 bat_priv, &batadv_fops);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200338 if (!d)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000339 goto err;
340
341 return 0;
342
343err:
Sven Eckelmann5346c352012-05-05 13:27:28 +0200344 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000345}
346
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200347/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100348 * batadv_socket_add_packet() - schedule an icmp packet to be sent to
Sven Eckelmann34473822015-05-31 10:10:20 +0200349 * userspace on an icmp socket.
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200350 * @socket_client: the socket this packet belongs to
351 * @icmph: pointer to the header of the icmp packet
352 * @icmp_len: total length of the icmp packet
353 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200354static void batadv_socket_add_packet(struct batadv_socket_client *socket_client,
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200355 struct batadv_icmp_header *icmph,
Sven Eckelmannaf4447f2012-05-12 18:33:59 +0200356 size_t icmp_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000357{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200358 struct batadv_socket_packet *socket_packet;
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200359 size_t len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360
Sven Eckelmann704509b2011-05-14 23:14:54 +0200361 socket_packet = kmalloc(sizeof(*socket_packet), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000362
363 if (!socket_packet)
364 return;
365
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200366 len = icmp_len;
367 /* check the maximum length before filling the buffer */
368 if (len > sizeof(socket_packet->icmp_packet))
369 len = sizeof(socket_packet->icmp_packet);
370
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000371 INIT_LIST_HEAD(&socket_packet->list);
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200372 memcpy(&socket_packet->icmp_packet, icmph, len);
373 socket_packet->icmp_len = len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374
375 spin_lock_bh(&socket_client->lock);
376
377 /* while waiting for the lock the socket_client could have been
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200378 * deleted
379 */
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200380 if (!batadv_socket_client_hash[icmph->uid]) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000381 spin_unlock_bh(&socket_client->lock);
382 kfree(socket_packet);
383 return;
384 }
385
386 list_add_tail(&socket_packet->list, &socket_client->queue_list);
387 socket_client->queue_len++;
388
389 if (socket_client->queue_len > 100) {
390 socket_packet = list_first_entry(&socket_client->queue_list,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200391 struct batadv_socket_packet,
392 list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000393
394 list_del(&socket_packet->list);
395 kfree(socket_packet);
396 socket_client->queue_len--;
397 }
398
399 spin_unlock_bh(&socket_client->lock);
400
401 wake_up(&socket_client->queue_wait);
402}
403
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200404/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100405 * batadv_socket_receive_packet() - schedule an icmp packet to be received
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200406 * locally and sent to userspace.
407 * @icmph: pointer to the header of the icmp packet
408 * @icmp_len: total length of the icmp packet
409 */
410void batadv_socket_receive_packet(struct batadv_icmp_header *icmph,
Sven Eckelmann9039dc72012-05-12 02:09:33 +0200411 size_t icmp_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000412{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200413 struct batadv_socket_client *hash;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000414
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200415 hash = batadv_socket_client_hash[icmph->uid];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416 if (hash)
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200417 batadv_socket_add_packet(hash, icmph, icmp_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000418}