]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/batman-adv/icmp_socket.c
UBUNTU: ubuntu: vbox -- Update to 5.1.16-dfsg-1
[mirror_ubuntu-zesty-kernel.git] / net / batman-adv / icmp_socket.c
CommitLineData
0046b040 1/* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
c6c8fea2
SE
2 *
3 * Marek Lindner
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
ebf38fb7 15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
c6c8fea2
SE
16 */
17
1e2c2a4f 18#include "icmp_socket.h"
c6c8fea2 19#include "main.h"
1e2c2a4f
SE
20
21#include <linux/atomic.h>
22#include <linux/compiler.h>
c6c8fea2 23#include <linux/debugfs.h>
1e2c2a4f
SE
24#include <linux/errno.h>
25#include <linux/etherdevice.h>
26#include <linux/export.h>
27#include <linux/fcntl.h>
28#include <linux/fs.h>
29#include <linux/if_ether.h>
30#include <linux/kernel.h>
31#include <linux/list.h>
32#include <linux/module.h>
33#include <linux/netdevice.h>
34#include <linux/pkt_sched.h>
35#include <linux/poll.h>
36#include <linux/printk.h>
37#include <linux/sched.h> /* for linux/wait.h */
38#include <linux/skbuff.h>
c6c8fea2 39#include <linux/slab.h>
1e2c2a4f 40#include <linux/spinlock.h>
1e2c2a4f
SE
41#include <linux/stddef.h>
42#include <linux/string.h>
43#include <linux/uaccess.h>
44#include <linux/wait.h>
45
c6c8fea2 46#include "hard-interface.h"
ba412080 47#include "log.h"
1e2c2a4f
SE
48#include "originator.h"
49#include "packet.h"
50#include "send.h"
c6c8fea2 51
56303d34 52static struct batadv_socket_client *batadv_socket_client_hash[256];
c6c8fea2 53
56303d34 54static void batadv_socket_add_packet(struct batadv_socket_client *socket_client,
da6b8c20 55 struct batadv_icmp_header *icmph,
af4447f6 56 size_t icmp_len);
c6c8fea2 57
9039dc7e 58void batadv_socket_init(void)
c6c8fea2 59{
af4447f6 60 memset(batadv_socket_client_hash, 0, sizeof(batadv_socket_client_hash));
c6c8fea2
SE
61}
62
af4447f6 63static int batadv_socket_open(struct inode *inode, struct file *file)
c6c8fea2
SE
64{
65 unsigned int i;
56303d34 66 struct batadv_socket_client *socket_client;
c6c8fea2 67
bd5b80d5
SE
68 if (!try_module_get(THIS_MODULE))
69 return -EBUSY;
70
c6c8fea2
SE
71 nonseekable_open(inode, file);
72
704509b8 73 socket_client = kmalloc(sizeof(*socket_client), GFP_KERNEL);
bd5b80d5
SE
74 if (!socket_client) {
75 module_put(THIS_MODULE);
c6c8fea2 76 return -ENOMEM;
bd5b80d5 77 }
c6c8fea2 78
af4447f6
SE
79 for (i = 0; i < ARRAY_SIZE(batadv_socket_client_hash); i++) {
80 if (!batadv_socket_client_hash[i]) {
81 batadv_socket_client_hash[i] = socket_client;
c6c8fea2
SE
82 break;
83 }
84 }
85
af4447f6 86 if (i == ARRAY_SIZE(batadv_socket_client_hash)) {
86ceb360 87 pr_err("Error - can't add another packet client: maximum number of clients reached\n");
c6c8fea2 88 kfree(socket_client);
bd5b80d5 89 module_put(THIS_MODULE);
c6c8fea2
SE
90 return -EXFULL;
91 }
92
93 INIT_LIST_HEAD(&socket_client->queue_list);
94 socket_client->queue_len = 0;
95 socket_client->index = i;
96 socket_client->bat_priv = inode->i_private;
97 spin_lock_init(&socket_client->lock);
98 init_waitqueue_head(&socket_client->queue_wait);
99
100 file->private_data = socket_client;
101
c6c8fea2
SE
102 return 0;
103}
104
af4447f6 105static int batadv_socket_release(struct inode *inode, struct file *file)
c6c8fea2 106{
fb1f23ea
GT
107 struct batadv_socket_client *client = file->private_data;
108 struct batadv_socket_packet *packet, *tmp;
c6c8fea2 109
fb1f23ea 110 spin_lock_bh(&client->lock);
c6c8fea2
SE
111
112 /* for all packets in the queue ... */
fb1f23ea
GT
113 list_for_each_entry_safe(packet, tmp, &client->queue_list, list) {
114 list_del(&packet->list);
115 kfree(packet);
c6c8fea2
SE
116 }
117
fb1f23ea
GT
118 batadv_socket_client_hash[client->index] = NULL;
119 spin_unlock_bh(&client->lock);
c6c8fea2 120
fb1f23ea 121 kfree(client);
bd5b80d5 122 module_put(THIS_MODULE);
c6c8fea2
SE
123
124 return 0;
125}
126
af4447f6
SE
127static ssize_t batadv_socket_read(struct file *file, char __user *buf,
128 size_t count, loff_t *ppos)
c6c8fea2 129{
56303d34
SE
130 struct batadv_socket_client *socket_client = file->private_data;
131 struct batadv_socket_packet *socket_packet;
c6c8fea2
SE
132 size_t packet_len;
133 int error;
134
135 if ((file->f_flags & O_NONBLOCK) && (socket_client->queue_len == 0))
136 return -EAGAIN;
137
96412690 138 if ((!buf) || (count < sizeof(struct batadv_icmp_packet)))
c6c8fea2
SE
139 return -EINVAL;
140
141 if (!access_ok(VERIFY_WRITE, buf, count))
142 return -EFAULT;
143
144 error = wait_event_interruptible(socket_client->queue_wait,
145 socket_client->queue_len);
146
147 if (error)
148 return error;
149
150 spin_lock_bh(&socket_client->lock);
151
152 socket_packet = list_first_entry(&socket_client->queue_list,
56303d34 153 struct batadv_socket_packet, list);
c6c8fea2
SE
154 list_del(&socket_packet->list);
155 socket_client->queue_len--;
156
157 spin_unlock_bh(&socket_client->lock);
158
b5a1eeef
SE
159 packet_len = min(count, socket_packet->icmp_len);
160 error = copy_to_user(buf, &socket_packet->icmp_packet, packet_len);
c6c8fea2 161
c6c8fea2
SE
162 kfree(socket_packet);
163
164 if (error)
165 return -EFAULT;
166
167 return packet_len;
168}
169
af4447f6
SE
170static ssize_t batadv_socket_write(struct file *file, const char __user *buff,
171 size_t len, loff_t *off)
c6c8fea2 172{
56303d34
SE
173 struct batadv_socket_client *socket_client = file->private_data;
174 struct batadv_priv *bat_priv = socket_client->bat_priv;
175 struct batadv_hard_iface *primary_if = NULL;
c6c8fea2 176 struct sk_buff *skb;
da6b8c20
SW
177 struct batadv_icmp_packet_rr *icmp_packet_rr;
178 struct batadv_icmp_header *icmp_header;
56303d34
SE
179 struct batadv_orig_node *orig_node = NULL;
180 struct batadv_neigh_node *neigh_node = NULL;
96412690 181 size_t packet_len = sizeof(struct batadv_icmp_packet);
6b5e971a 182 u8 *addr;
c6c8fea2 183
da6b8c20 184 if (len < sizeof(struct batadv_icmp_header)) {
39c75a51 185 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 186 "Error - can't send packet from char device: invalid packet size\n");
c6c8fea2
SE
187 return -EINVAL;
188 }
189
e5d89254 190 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22
ML
191
192 if (!primary_if) {
193 len = -EFAULT;
194 goto out;
195 }
c6c8fea2 196
da6b8c20
SW
197 if (len >= BATADV_ICMP_MAX_PACKET_SIZE)
198 packet_len = BATADV_ICMP_MAX_PACKET_SIZE;
199 else
200 packet_len = len;
c6c8fea2 201
41ab6c48 202 skb = netdev_alloc_skb_ip_align(NULL, packet_len + ETH_HLEN);
32ae9b22
ML
203 if (!skb) {
204 len = -ENOMEM;
205 goto out;
206 }
c6c8fea2 207
c54f38c9 208 skb->priority = TC_PRIO_CONTROL;
41ab6c48 209 skb_reserve(skb, ETH_HLEN);
da6b8c20 210 icmp_header = (struct batadv_icmp_header *)skb_put(skb, packet_len);
c6c8fea2 211
da6b8c20 212 if (copy_from_user(icmp_header, buff, packet_len)) {
c6c8fea2
SE
213 len = -EFAULT;
214 goto free_skb;
215 }
216
a40d9b07 217 if (icmp_header->packet_type != BATADV_ICMP) {
39c75a51 218 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 219 "Error - can't send packet from char device: got bogus packet type (expected: BAT_ICMP)\n");
c6c8fea2
SE
220 len = -EINVAL;
221 goto free_skb;
222 }
223
da6b8c20
SW
224 switch (icmp_header->msg_type) {
225 case BATADV_ECHO_REQUEST:
226 if (len < sizeof(struct batadv_icmp_packet)) {
227 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
228 "Error - can't send packet from char device: invalid packet size\n");
229 len = -EINVAL;
230 goto free_skb;
231 }
232
233 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
234 goto dst_unreach;
235
236 orig_node = batadv_orig_hash_find(bat_priv, icmp_header->dst);
237 if (!orig_node)
238 goto dst_unreach;
239
7351a482
SW
240 neigh_node = batadv_orig_router_get(orig_node,
241 BATADV_IF_DEFAULT);
da6b8c20
SW
242 if (!neigh_node)
243 goto dst_unreach;
244
245 if (!neigh_node->if_incoming)
246 goto dst_unreach;
247
248 if (neigh_node->if_incoming->if_status != BATADV_IF_ACTIVE)
249 goto dst_unreach;
250
251 icmp_packet_rr = (struct batadv_icmp_packet_rr *)icmp_header;
8fdd0153
AQ
252 if (packet_len == sizeof(*icmp_packet_rr)) {
253 addr = neigh_node->if_incoming->net_dev->dev_addr;
254 ether_addr_copy(icmp_packet_rr->rr[0], addr);
255 }
da6b8c20
SW
256
257 break;
258 default:
39c75a51 259 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
da6b8c20 260 "Error - can't send packet from char device: got unknown message type\n");
c6c8fea2
SE
261 len = -EINVAL;
262 goto free_skb;
263 }
264
da6b8c20 265 icmp_header->uid = socket_client->index;
c6c8fea2 266
a40d9b07 267 if (icmp_header->version != BATADV_COMPAT_VERSION) {
da6b8c20 268 icmp_header->msg_type = BATADV_PARAMETER_PROBLEM;
a40d9b07 269 icmp_header->version = BATADV_COMPAT_VERSION;
da6b8c20 270 batadv_socket_add_packet(socket_client, icmp_header,
af4447f6 271 packet_len);
c6c8fea2
SE
272 goto free_skb;
273 }
274
8fdd0153 275 ether_addr_copy(icmp_header->orig, primary_if->net_dev->dev_addr);
c6c8fea2 276
95d39278 277 batadv_send_unicast_skb(skb, neigh_node);
c6c8fea2
SE
278 goto out;
279
c6c8fea2 280dst_unreach:
da6b8c20
SW
281 icmp_header->msg_type = BATADV_DESTINATION_UNREACHABLE;
282 batadv_socket_add_packet(socket_client, icmp_header, packet_len);
c6c8fea2
SE
283free_skb:
284 kfree_skb(skb);
285out:
32ae9b22 286 if (primary_if)
82047ad7 287 batadv_hardif_put(primary_if);
44524fcd 288 if (neigh_node)
25bb2509 289 batadv_neigh_node_put(neigh_node);
44524fcd 290 if (orig_node)
5d967310 291 batadv_orig_node_put(orig_node);
c6c8fea2
SE
292 return len;
293}
294
af4447f6 295static unsigned int batadv_socket_poll(struct file *file, poll_table *wait)
c6c8fea2 296{
56303d34 297 struct batadv_socket_client *socket_client = file->private_data;
c6c8fea2
SE
298
299 poll_wait(file, &socket_client->queue_wait, wait);
300
301 if (socket_client->queue_len > 0)
302 return POLLIN | POLLRDNORM;
303
304 return 0;
305}
306
af4447f6 307static const struct file_operations batadv_fops = {
c6c8fea2 308 .owner = THIS_MODULE,
af4447f6
SE
309 .open = batadv_socket_open,
310 .release = batadv_socket_release,
311 .read = batadv_socket_read,
312 .write = batadv_socket_write,
313 .poll = batadv_socket_poll,
c6c8fea2
SE
314 .llseek = no_llseek,
315};
316
56303d34 317int batadv_socket_setup(struct batadv_priv *bat_priv)
c6c8fea2
SE
318{
319 struct dentry *d;
320
321 if (!bat_priv->debug_dir)
322 goto err;
323
507b37cf
SE
324 d = debugfs_create_file(BATADV_ICMP_SOCKET, 0600, bat_priv->debug_dir,
325 bat_priv, &batadv_fops);
5346c35e 326 if (!d)
c6c8fea2
SE
327 goto err;
328
329 return 0;
330
331err:
5346c35e 332 return -ENOMEM;
c6c8fea2
SE
333}
334
da6b8c20 335/**
6d030de8 336 * batadv_socket_add_packet - schedule an icmp packet to be sent to
34473822 337 * userspace on an icmp socket.
da6b8c20
SW
338 * @socket_client: the socket this packet belongs to
339 * @icmph: pointer to the header of the icmp packet
340 * @icmp_len: total length of the icmp packet
341 */
56303d34 342static void batadv_socket_add_packet(struct batadv_socket_client *socket_client,
da6b8c20 343 struct batadv_icmp_header *icmph,
af4447f6 344 size_t icmp_len)
c6c8fea2 345{
56303d34 346 struct batadv_socket_packet *socket_packet;
da6b8c20 347 size_t len;
c6c8fea2 348
704509b8 349 socket_packet = kmalloc(sizeof(*socket_packet), GFP_ATOMIC);
c6c8fea2
SE
350
351 if (!socket_packet)
352 return;
353
da6b8c20
SW
354 len = icmp_len;
355 /* check the maximum length before filling the buffer */
356 if (len > sizeof(socket_packet->icmp_packet))
357 len = sizeof(socket_packet->icmp_packet);
358
c6c8fea2 359 INIT_LIST_HEAD(&socket_packet->list);
da6b8c20
SW
360 memcpy(&socket_packet->icmp_packet, icmph, len);
361 socket_packet->icmp_len = len;
c6c8fea2
SE
362
363 spin_lock_bh(&socket_client->lock);
364
365 /* while waiting for the lock the socket_client could have been
9cfc7bd6
SE
366 * deleted
367 */
da6b8c20 368 if (!batadv_socket_client_hash[icmph->uid]) {
c6c8fea2
SE
369 spin_unlock_bh(&socket_client->lock);
370 kfree(socket_packet);
371 return;
372 }
373
374 list_add_tail(&socket_packet->list, &socket_client->queue_list);
375 socket_client->queue_len++;
376
377 if (socket_client->queue_len > 100) {
378 socket_packet = list_first_entry(&socket_client->queue_list,
56303d34
SE
379 struct batadv_socket_packet,
380 list);
c6c8fea2
SE
381
382 list_del(&socket_packet->list);
383 kfree(socket_packet);
384 socket_client->queue_len--;
385 }
386
387 spin_unlock_bh(&socket_client->lock);
388
389 wake_up(&socket_client->queue_wait);
390}
391
da6b8c20
SW
392/**
393 * batadv_socket_receive_packet - schedule an icmp packet to be received
394 * locally and sent to userspace.
395 * @icmph: pointer to the header of the icmp packet
396 * @icmp_len: total length of the icmp packet
397 */
398void batadv_socket_receive_packet(struct batadv_icmp_header *icmph,
9039dc7e 399 size_t icmp_len)
c6c8fea2 400{
56303d34 401 struct batadv_socket_client *hash;
c6c8fea2 402
da6b8c20 403 hash = batadv_socket_client_hash[icmph->uid];
c6c8fea2 404 if (hash)
da6b8c20 405 batadv_socket_add_packet(hash, icmph, icmp_len);
c6c8fea2 406}