blob: 139b7336adf9bbcd794a2100531cc3bac2feae33 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2007-2011 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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#include "main.h"
23#include <linux/debugfs.h>
24#include <linux/slab.h>
25#include "icmp_socket.h"
26#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027#include "hash.h"
28#include "originator.h"
29#include "hard-interface.h"
30
31static struct socket_client *socket_client_hash[256];
32
33static void bat_socket_add_packet(struct socket_client *socket_client,
34 struct icmp_packet_rr *icmp_packet,
35 size_t icmp_len);
36
37void bat_socket_init(void)
38{
39 memset(socket_client_hash, 0, sizeof(socket_client_hash));
40}
41
42static int bat_socket_open(struct inode *inode, struct file *file)
43{
44 unsigned int i;
45 struct socket_client *socket_client;
46
47 nonseekable_open(inode, file);
48
49 socket_client = kmalloc(sizeof(struct socket_client), GFP_KERNEL);
50
51 if (!socket_client)
52 return -ENOMEM;
53
54 for (i = 0; i < ARRAY_SIZE(socket_client_hash); i++) {
55 if (!socket_client_hash[i]) {
56 socket_client_hash[i] = socket_client;
57 break;
58 }
59 }
60
61 if (i == ARRAY_SIZE(socket_client_hash)) {
62 pr_err("Error - can't add another packet client: "
63 "maximum number of clients reached\n");
64 kfree(socket_client);
65 return -EXFULL;
66 }
67
68 INIT_LIST_HEAD(&socket_client->queue_list);
69 socket_client->queue_len = 0;
70 socket_client->index = i;
71 socket_client->bat_priv = inode->i_private;
72 spin_lock_init(&socket_client->lock);
73 init_waitqueue_head(&socket_client->queue_wait);
74
75 file->private_data = socket_client;
76
77 inc_module_count();
78 return 0;
79}
80
81static int bat_socket_release(struct inode *inode, struct file *file)
82{
83 struct socket_client *socket_client = file->private_data;
84 struct socket_packet *socket_packet;
85 struct list_head *list_pos, *list_pos_tmp;
86
87 spin_lock_bh(&socket_client->lock);
88
89 /* for all packets in the queue ... */
90 list_for_each_safe(list_pos, list_pos_tmp, &socket_client->queue_list) {
91 socket_packet = list_entry(list_pos,
92 struct socket_packet, list);
93
94 list_del(list_pos);
95 kfree(socket_packet);
96 }
97
98 socket_client_hash[socket_client->index] = NULL;
99 spin_unlock_bh(&socket_client->lock);
100
101 kfree(socket_client);
102 dec_module_count();
103
104 return 0;
105}
106
107static ssize_t bat_socket_read(struct file *file, char __user *buf,
108 size_t count, loff_t *ppos)
109{
110 struct socket_client *socket_client = file->private_data;
111 struct socket_packet *socket_packet;
112 size_t packet_len;
113 int error;
114
115 if ((file->f_flags & O_NONBLOCK) && (socket_client->queue_len == 0))
116 return -EAGAIN;
117
118 if ((!buf) || (count < sizeof(struct icmp_packet)))
119 return -EINVAL;
120
121 if (!access_ok(VERIFY_WRITE, buf, count))
122 return -EFAULT;
123
124 error = wait_event_interruptible(socket_client->queue_wait,
125 socket_client->queue_len);
126
127 if (error)
128 return error;
129
130 spin_lock_bh(&socket_client->lock);
131
132 socket_packet = list_first_entry(&socket_client->queue_list,
133 struct socket_packet, list);
134 list_del(&socket_packet->list);
135 socket_client->queue_len--;
136
137 spin_unlock_bh(&socket_client->lock);
138
139 error = __copy_to_user(buf, &socket_packet->icmp_packet,
140 socket_packet->icmp_len);
141
142 packet_len = socket_packet->icmp_len;
143 kfree(socket_packet);
144
145 if (error)
146 return -EFAULT;
147
148 return packet_len;
149}
150
151static ssize_t bat_socket_write(struct file *file, const char __user *buff,
152 size_t len, loff_t *off)
153{
154 struct socket_client *socket_client = file->private_data;
155 struct bat_priv *bat_priv = socket_client->bat_priv;
156 struct sk_buff *skb;
157 struct icmp_packet_rr *icmp_packet;
158
Marek Lindner44524fc2011-02-10 14:33:53 +0000159 struct orig_node *orig_node = NULL;
160 struct neigh_node *neigh_node = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161 struct batman_if *batman_if;
162 size_t packet_len = sizeof(struct icmp_packet);
163 uint8_t dstaddr[ETH_ALEN];
164
165 if (len < sizeof(struct icmp_packet)) {
166 bat_dbg(DBG_BATMAN, bat_priv,
167 "Error - can't send packet from char device: "
168 "invalid packet size\n");
169 return -EINVAL;
170 }
171
172 if (!bat_priv->primary_if)
173 return -EFAULT;
174
175 if (len >= sizeof(struct icmp_packet_rr))
176 packet_len = sizeof(struct icmp_packet_rr);
177
178 skb = dev_alloc_skb(packet_len + sizeof(struct ethhdr));
179 if (!skb)
180 return -ENOMEM;
181
182 skb_reserve(skb, sizeof(struct ethhdr));
183 icmp_packet = (struct icmp_packet_rr *)skb_put(skb, packet_len);
184
185 if (!access_ok(VERIFY_READ, buff, packet_len)) {
186 len = -EFAULT;
187 goto free_skb;
188 }
189
190 if (__copy_from_user(icmp_packet, buff, packet_len)) {
191 len = -EFAULT;
192 goto free_skb;
193 }
194
195 if (icmp_packet->packet_type != BAT_ICMP) {
196 bat_dbg(DBG_BATMAN, bat_priv,
197 "Error - can't send packet from char device: "
198 "got bogus packet type (expected: BAT_ICMP)\n");
199 len = -EINVAL;
200 goto free_skb;
201 }
202
203 if (icmp_packet->msg_type != ECHO_REQUEST) {
204 bat_dbg(DBG_BATMAN, bat_priv,
205 "Error - can't send packet from char device: "
206 "got bogus message type (expected: ECHO_REQUEST)\n");
207 len = -EINVAL;
208 goto free_skb;
209 }
210
211 icmp_packet->uid = socket_client->index;
212
213 if (icmp_packet->version != COMPAT_VERSION) {
214 icmp_packet->msg_type = PARAMETER_PROBLEM;
215 icmp_packet->ttl = COMPAT_VERSION;
216 bat_socket_add_packet(socket_client, icmp_packet, packet_len);
217 goto free_skb;
218 }
219
220 if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE)
221 goto dst_unreach;
222
223 spin_lock_bh(&bat_priv->orig_hash_lock);
Marek Lindnerfb778ea2011-01-19 20:01:40 +0000224 rcu_read_lock();
Marek Lindner7aadf882011-02-18 12:28:09 +0000225 orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226
227 if (!orig_node)
228 goto unlock;
229
Marek Lindner44524fc2011-02-10 14:33:53 +0000230 neigh_node = orig_node->router;
231
232 if (!neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233 goto unlock;
234
Marek Lindner44524fc2011-02-10 14:33:53 +0000235 if (!atomic_inc_not_zero(&neigh_node->refcount)) {
236 neigh_node = NULL;
237 goto unlock;
238 }
239
240 rcu_read_unlock();
241
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242 batman_if = orig_node->router->if_incoming;
243 memcpy(dstaddr, orig_node->router->addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244 spin_unlock_bh(&bat_priv->orig_hash_lock);
245
246 if (!batman_if)
247 goto dst_unreach;
248
249 if (batman_if->if_status != IF_ACTIVE)
250 goto dst_unreach;
251
252 memcpy(icmp_packet->orig,
253 bat_priv->primary_if->net_dev->dev_addr, ETH_ALEN);
254
255 if (packet_len == sizeof(struct icmp_packet_rr))
Marek Lindner44524fc2011-02-10 14:33:53 +0000256 memcpy(icmp_packet->rr,
257 batman_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000258
259 send_skb_packet(skb, batman_if, dstaddr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000260 goto out;
261
262unlock:
Marek Lindner44524fc2011-02-10 14:33:53 +0000263 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264 spin_unlock_bh(&bat_priv->orig_hash_lock);
265dst_unreach:
266 icmp_packet->msg_type = DESTINATION_UNREACHABLE;
267 bat_socket_add_packet(socket_client, icmp_packet, packet_len);
268free_skb:
269 kfree_skb(skb);
270out:
Marek Lindner44524fc2011-02-10 14:33:53 +0000271 if (neigh_node)
272 neigh_node_free_ref(neigh_node);
273 if (orig_node)
274 kref_put(&orig_node->refcount, orig_node_free_ref);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000275 return len;
276}
277
278static unsigned int bat_socket_poll(struct file *file, poll_table *wait)
279{
280 struct socket_client *socket_client = file->private_data;
281
282 poll_wait(file, &socket_client->queue_wait, wait);
283
284 if (socket_client->queue_len > 0)
285 return POLLIN | POLLRDNORM;
286
287 return 0;
288}
289
290static const struct file_operations fops = {
291 .owner = THIS_MODULE,
292 .open = bat_socket_open,
293 .release = bat_socket_release,
294 .read = bat_socket_read,
295 .write = bat_socket_write,
296 .poll = bat_socket_poll,
297 .llseek = no_llseek,
298};
299
300int bat_socket_setup(struct bat_priv *bat_priv)
301{
302 struct dentry *d;
303
304 if (!bat_priv->debug_dir)
305 goto err;
306
307 d = debugfs_create_file(ICMP_SOCKET, S_IFREG | S_IWUSR | S_IRUSR,
308 bat_priv->debug_dir, bat_priv, &fops);
309 if (d)
310 goto err;
311
312 return 0;
313
314err:
315 return 1;
316}
317
318static void bat_socket_add_packet(struct socket_client *socket_client,
319 struct icmp_packet_rr *icmp_packet,
320 size_t icmp_len)
321{
322 struct socket_packet *socket_packet;
323
324 socket_packet = kmalloc(sizeof(struct socket_packet), GFP_ATOMIC);
325
326 if (!socket_packet)
327 return;
328
329 INIT_LIST_HEAD(&socket_packet->list);
330 memcpy(&socket_packet->icmp_packet, icmp_packet, icmp_len);
331 socket_packet->icmp_len = icmp_len;
332
333 spin_lock_bh(&socket_client->lock);
334
335 /* while waiting for the lock the socket_client could have been
336 * deleted */
337 if (!socket_client_hash[icmp_packet->uid]) {
338 spin_unlock_bh(&socket_client->lock);
339 kfree(socket_packet);
340 return;
341 }
342
343 list_add_tail(&socket_packet->list, &socket_client->queue_list);
344 socket_client->queue_len++;
345
346 if (socket_client->queue_len > 100) {
347 socket_packet = list_first_entry(&socket_client->queue_list,
348 struct socket_packet, list);
349
350 list_del(&socket_packet->list);
351 kfree(socket_packet);
352 socket_client->queue_len--;
353 }
354
355 spin_unlock_bh(&socket_client->lock);
356
357 wake_up(&socket_client->queue_wait);
358}
359
360void bat_socket_receive_packet(struct icmp_packet_rr *icmp_packet,
361 size_t icmp_len)
362{
363 struct socket_client *hash = socket_client_hash[icmp_packet->uid];
364
365 if (hash)
366 bat_socket_add_packet(hash, icmp_packet, icmp_len);
367}