]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/batman-adv/icmp_socket.c
batman-adv: Fix indentation of multiline statements
[mirror_ubuntu-artful-kernel.git] / net / batman-adv / icmp_socket.c
CommitLineData
c6c8fea2 1/*
567db7b0 2 * Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
c6c8fea2
SE
3 *
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"
c6c8fea2
SE
27#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
704509b8 49 socket_client = kmalloc(sizeof(*socket_client), GFP_KERNEL);
c6c8fea2
SE
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
b5a1eeef
SE
139 packet_len = min(count, socket_packet->icmp_len);
140 error = copy_to_user(buf, &socket_packet->icmp_packet, packet_len);
c6c8fea2 141
c6c8fea2
SE
142 kfree(socket_packet);
143
144 if (error)
145 return -EFAULT;
146
147 return packet_len;
148}
149
150static ssize_t bat_socket_write(struct file *file, const char __user *buff,
151 size_t len, loff_t *off)
152{
153 struct socket_client *socket_client = file->private_data;
154 struct bat_priv *bat_priv = socket_client->bat_priv;
32ae9b22 155 struct hard_iface *primary_if = NULL;
c6c8fea2
SE
156 struct sk_buff *skb;
157 struct icmp_packet_rr *icmp_packet;
158
44524fcd
ML
159 struct orig_node *orig_node = NULL;
160 struct neigh_node *neigh_node = NULL;
c6c8fea2 161 size_t packet_len = sizeof(struct icmp_packet);
c6c8fea2
SE
162
163 if (len < sizeof(struct icmp_packet)) {
164 bat_dbg(DBG_BATMAN, bat_priv,
165 "Error - can't send packet from char device: "
166 "invalid packet size\n");
167 return -EINVAL;
168 }
169
32ae9b22
ML
170 primary_if = primary_if_get_selected(bat_priv);
171
172 if (!primary_if) {
173 len = -EFAULT;
174 goto out;
175 }
c6c8fea2
SE
176
177 if (len >= sizeof(struct icmp_packet_rr))
178 packet_len = sizeof(struct icmp_packet_rr);
179
180 skb = dev_alloc_skb(packet_len + sizeof(struct ethhdr));
32ae9b22
ML
181 if (!skb) {
182 len = -ENOMEM;
183 goto out;
184 }
c6c8fea2
SE
185
186 skb_reserve(skb, sizeof(struct ethhdr));
187 icmp_packet = (struct icmp_packet_rr *)skb_put(skb, packet_len);
188
d18eb453 189 if (copy_from_user(icmp_packet, buff, packet_len)) {
c6c8fea2
SE
190 len = -EFAULT;
191 goto free_skb;
192 }
193
76543d14 194 if (icmp_packet->header.packet_type != BAT_ICMP) {
c6c8fea2
SE
195 bat_dbg(DBG_BATMAN, bat_priv,
196 "Error - can't send packet from char device: "
197 "got bogus packet type (expected: BAT_ICMP)\n");
198 len = -EINVAL;
199 goto free_skb;
200 }
201
202 if (icmp_packet->msg_type != ECHO_REQUEST) {
203 bat_dbg(DBG_BATMAN, bat_priv,
204 "Error - can't send packet from char device: "
205 "got bogus message type (expected: ECHO_REQUEST)\n");
206 len = -EINVAL;
207 goto free_skb;
208 }
209
210 icmp_packet->uid = socket_client->index;
211
76543d14 212 if (icmp_packet->header.version != COMPAT_VERSION) {
c6c8fea2 213 icmp_packet->msg_type = PARAMETER_PROBLEM;
76543d14 214 icmp_packet->header.version = COMPAT_VERSION;
c6c8fea2
SE
215 bat_socket_add_packet(socket_client, icmp_packet, packet_len);
216 goto free_skb;
217 }
218
219 if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE)
220 goto dst_unreach;
221
7aadf889 222 orig_node = orig_hash_find(bat_priv, icmp_packet->dst);
c6c8fea2 223 if (!orig_node)
e1a5382f 224 goto dst_unreach;
44524fcd 225
e1a5382f 226 neigh_node = orig_node_get_router(orig_node);
44524fcd 227 if (!neigh_node)
e1a5382f 228 goto dst_unreach;
c6c8fea2 229
d0072609 230 if (!neigh_node->if_incoming)
c6c8fea2
SE
231 goto dst_unreach;
232
d0072609 233 if (neigh_node->if_incoming->if_status != IF_ACTIVE)
c6c8fea2
SE
234 goto dst_unreach;
235
236 memcpy(icmp_packet->orig,
32ae9b22 237 primary_if->net_dev->dev_addr, ETH_ALEN);
c6c8fea2
SE
238
239 if (packet_len == sizeof(struct icmp_packet_rr))
44524fcd 240 memcpy(icmp_packet->rr,
d0072609 241 neigh_node->if_incoming->net_dev->dev_addr, ETH_ALEN);
c6c8fea2 242
d0072609 243 send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
c6c8fea2
SE
244 goto out;
245
c6c8fea2
SE
246dst_unreach:
247 icmp_packet->msg_type = DESTINATION_UNREACHABLE;
248 bat_socket_add_packet(socket_client, icmp_packet, packet_len);
249free_skb:
250 kfree_skb(skb);
251out:
32ae9b22
ML
252 if (primary_if)
253 hardif_free_ref(primary_if);
44524fcd
ML
254 if (neigh_node)
255 neigh_node_free_ref(neigh_node);
256 if (orig_node)
7b36e8ee 257 orig_node_free_ref(orig_node);
c6c8fea2
SE
258 return len;
259}
260
261static unsigned int bat_socket_poll(struct file *file, poll_table *wait)
262{
263 struct socket_client *socket_client = file->private_data;
264
265 poll_wait(file, &socket_client->queue_wait, wait);
266
267 if (socket_client->queue_len > 0)
268 return POLLIN | POLLRDNORM;
269
270 return 0;
271}
272
273static const struct file_operations fops = {
274 .owner = THIS_MODULE,
275 .open = bat_socket_open,
276 .release = bat_socket_release,
277 .read = bat_socket_read,
278 .write = bat_socket_write,
279 .poll = bat_socket_poll,
280 .llseek = no_llseek,
281};
282
283int bat_socket_setup(struct bat_priv *bat_priv)
284{
285 struct dentry *d;
286
287 if (!bat_priv->debug_dir)
288 goto err;
289
290 d = debugfs_create_file(ICMP_SOCKET, S_IFREG | S_IWUSR | S_IRUSR,
291 bat_priv->debug_dir, bat_priv, &fops);
292 if (d)
293 goto err;
294
295 return 0;
296
297err:
298 return 1;
299}
300
301static void bat_socket_add_packet(struct socket_client *socket_client,
302 struct icmp_packet_rr *icmp_packet,
303 size_t icmp_len)
304{
305 struct socket_packet *socket_packet;
306
704509b8 307 socket_packet = kmalloc(sizeof(*socket_packet), GFP_ATOMIC);
c6c8fea2
SE
308
309 if (!socket_packet)
310 return;
311
312 INIT_LIST_HEAD(&socket_packet->list);
313 memcpy(&socket_packet->icmp_packet, icmp_packet, icmp_len);
314 socket_packet->icmp_len = icmp_len;
315
316 spin_lock_bh(&socket_client->lock);
317
318 /* while waiting for the lock the socket_client could have been
319 * deleted */
320 if (!socket_client_hash[icmp_packet->uid]) {
321 spin_unlock_bh(&socket_client->lock);
322 kfree(socket_packet);
323 return;
324 }
325
326 list_add_tail(&socket_packet->list, &socket_client->queue_list);
327 socket_client->queue_len++;
328
329 if (socket_client->queue_len > 100) {
330 socket_packet = list_first_entry(&socket_client->queue_list,
331 struct socket_packet, list);
332
333 list_del(&socket_packet->list);
334 kfree(socket_packet);
335 socket_client->queue_len--;
336 }
337
338 spin_unlock_bh(&socket_client->lock);
339
340 wake_up(&socket_client->queue_wait);
341}
342
343void bat_socket_receive_packet(struct icmp_packet_rr *icmp_packet,
344 size_t icmp_len)
345{
346 struct socket_client *hash = socket_client_hash[icmp_packet->uid];
347
348 if (hash)
349 bat_socket_add_packet(hash, icmp_packet, icmp_len);
350}