Merge tag 'mxs-fixes-3.10' of git://git.linaro.org/people/shawnguo/linux-2.6 into...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / batman-adv / icmp_socket.c
CommitLineData
0b873931 1/* Copyright (C) 2007-2013 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
c6c8fea2
SE
18 */
19
20#include "main.h"
21#include <linux/debugfs.h>
22#include <linux/slab.h>
23#include "icmp_socket.h"
24#include "send.h"
c6c8fea2
SE
25#include "hash.h"
26#include "originator.h"
27#include "hard-interface.h"
28
56303d34 29static struct batadv_socket_client *batadv_socket_client_hash[256];
c6c8fea2 30
56303d34 31static void batadv_socket_add_packet(struct batadv_socket_client *socket_client,
96412690 32 struct batadv_icmp_packet_rr *icmp_packet,
af4447f6 33 size_t icmp_len);
c6c8fea2 34
9039dc7e 35void batadv_socket_init(void)
c6c8fea2 36{
af4447f6 37 memset(batadv_socket_client_hash, 0, sizeof(batadv_socket_client_hash));
c6c8fea2
SE
38}
39
af4447f6 40static int batadv_socket_open(struct inode *inode, struct file *file)
c6c8fea2
SE
41{
42 unsigned int i;
56303d34 43 struct batadv_socket_client *socket_client;
c6c8fea2 44
bd5b80d5
SE
45 if (!try_module_get(THIS_MODULE))
46 return -EBUSY;
47
c6c8fea2
SE
48 nonseekable_open(inode, file);
49
704509b8 50 socket_client = kmalloc(sizeof(*socket_client), GFP_KERNEL);
bd5b80d5
SE
51 if (!socket_client) {
52 module_put(THIS_MODULE);
c6c8fea2 53 return -ENOMEM;
bd5b80d5 54 }
c6c8fea2 55
af4447f6
SE
56 for (i = 0; i < ARRAY_SIZE(batadv_socket_client_hash); i++) {
57 if (!batadv_socket_client_hash[i]) {
58 batadv_socket_client_hash[i] = socket_client;
c6c8fea2
SE
59 break;
60 }
61 }
62
af4447f6 63 if (i == ARRAY_SIZE(batadv_socket_client_hash)) {
86ceb360 64 pr_err("Error - can't add another packet client: maximum number of clients reached\n");
c6c8fea2 65 kfree(socket_client);
bd5b80d5 66 module_put(THIS_MODULE);
c6c8fea2
SE
67 return -EXFULL;
68 }
69
70 INIT_LIST_HEAD(&socket_client->queue_list);
71 socket_client->queue_len = 0;
72 socket_client->index = i;
73 socket_client->bat_priv = inode->i_private;
74 spin_lock_init(&socket_client->lock);
75 init_waitqueue_head(&socket_client->queue_wait);
76
77 file->private_data = socket_client;
78
c6c8fea2
SE
79 return 0;
80}
81
af4447f6 82static int batadv_socket_release(struct inode *inode, struct file *file)
c6c8fea2 83{
56303d34
SE
84 struct batadv_socket_client *socket_client = file->private_data;
85 struct batadv_socket_packet *socket_packet;
c6c8fea2
SE
86 struct list_head *list_pos, *list_pos_tmp;
87
88 spin_lock_bh(&socket_client->lock);
89
90 /* for all packets in the queue ... */
91 list_for_each_safe(list_pos, list_pos_tmp, &socket_client->queue_list) {
92 socket_packet = list_entry(list_pos,
56303d34 93 struct batadv_socket_packet, list);
c6c8fea2
SE
94
95 list_del(list_pos);
96 kfree(socket_packet);
97 }
98
af4447f6 99 batadv_socket_client_hash[socket_client->index] = NULL;
c6c8fea2
SE
100 spin_unlock_bh(&socket_client->lock);
101
102 kfree(socket_client);
bd5b80d5 103 module_put(THIS_MODULE);
c6c8fea2
SE
104
105 return 0;
106}
107
af4447f6
SE
108static ssize_t batadv_socket_read(struct file *file, char __user *buf,
109 size_t count, loff_t *ppos)
c6c8fea2 110{
56303d34
SE
111 struct batadv_socket_client *socket_client = file->private_data;
112 struct batadv_socket_packet *socket_packet;
c6c8fea2
SE
113 size_t packet_len;
114 int error;
115
116 if ((file->f_flags & O_NONBLOCK) && (socket_client->queue_len == 0))
117 return -EAGAIN;
118
96412690 119 if ((!buf) || (count < sizeof(struct batadv_icmp_packet)))
c6c8fea2
SE
120 return -EINVAL;
121
122 if (!access_ok(VERIFY_WRITE, buf, count))
123 return -EFAULT;
124
125 error = wait_event_interruptible(socket_client->queue_wait,
126 socket_client->queue_len);
127
128 if (error)
129 return error;
130
131 spin_lock_bh(&socket_client->lock);
132
133 socket_packet = list_first_entry(&socket_client->queue_list,
56303d34 134 struct batadv_socket_packet, list);
c6c8fea2
SE
135 list_del(&socket_packet->list);
136 socket_client->queue_len--;
137
138 spin_unlock_bh(&socket_client->lock);
139
b5a1eeef
SE
140 packet_len = min(count, socket_packet->icmp_len);
141 error = copy_to_user(buf, &socket_packet->icmp_packet, packet_len);
c6c8fea2 142
c6c8fea2
SE
143 kfree(socket_packet);
144
145 if (error)
146 return -EFAULT;
147
148 return packet_len;
149}
150
af4447f6
SE
151static ssize_t batadv_socket_write(struct file *file, const char __user *buff,
152 size_t len, loff_t *off)
c6c8fea2 153{
56303d34
SE
154 struct batadv_socket_client *socket_client = file->private_data;
155 struct batadv_priv *bat_priv = socket_client->bat_priv;
156 struct batadv_hard_iface *primary_if = NULL;
c6c8fea2 157 struct sk_buff *skb;
96412690 158 struct batadv_icmp_packet_rr *icmp_packet;
c6c8fea2 159
56303d34
SE
160 struct batadv_orig_node *orig_node = NULL;
161 struct batadv_neigh_node *neigh_node = NULL;
96412690 162 size_t packet_len = sizeof(struct batadv_icmp_packet);
c6c8fea2 163
96412690 164 if (len < sizeof(struct batadv_icmp_packet)) {
39c75a51 165 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 166 "Error - can't send packet from char device: invalid packet size\n");
c6c8fea2
SE
167 return -EINVAL;
168 }
169
e5d89254 170 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22
ML
171
172 if (!primary_if) {
173 len = -EFAULT;
174 goto out;
175 }
c6c8fea2 176
96412690
SE
177 if (len >= sizeof(struct batadv_icmp_packet_rr))
178 packet_len = sizeof(struct batadv_icmp_packet_rr);
c6c8fea2 179
5b246574 180 skb = dev_alloc_skb(packet_len + ETH_HLEN + NET_IP_ALIGN);
32ae9b22
ML
181 if (!skb) {
182 len = -ENOMEM;
183 goto out;
184 }
c6c8fea2 185
5b246574 186 skb_reserve(skb, ETH_HLEN + NET_IP_ALIGN);
96412690 187 icmp_packet = (struct batadv_icmp_packet_rr *)skb_put(skb, packet_len);
c6c8fea2 188
d18eb453 189 if (copy_from_user(icmp_packet, buff, packet_len)) {
c6c8fea2
SE
190 len = -EFAULT;
191 goto free_skb;
192 }
193
acd34afa 194 if (icmp_packet->header.packet_type != BATADV_ICMP) {
39c75a51 195 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 196 "Error - can't send packet from char device: got bogus packet type (expected: BAT_ICMP)\n");
c6c8fea2
SE
197 len = -EINVAL;
198 goto free_skb;
199 }
200
acd34afa 201 if (icmp_packet->msg_type != BATADV_ECHO_REQUEST) {
39c75a51 202 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 203 "Error - can't send packet from char device: got bogus message type (expected: ECHO_REQUEST)\n");
c6c8fea2
SE
204 len = -EINVAL;
205 goto free_skb;
206 }
207
208 icmp_packet->uid = socket_client->index;
209
7e071c79 210 if (icmp_packet->header.version != BATADV_COMPAT_VERSION) {
acd34afa 211 icmp_packet->msg_type = BATADV_PARAMETER_PROBLEM;
7e071c79 212 icmp_packet->header.version = BATADV_COMPAT_VERSION;
af4447f6
SE
213 batadv_socket_add_packet(socket_client, icmp_packet,
214 packet_len);
c6c8fea2
SE
215 goto free_skb;
216 }
217
39c75a51 218 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
c6c8fea2
SE
219 goto dst_unreach;
220
da641193 221 orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->dst);
c6c8fea2 222 if (!orig_node)
e1a5382f 223 goto dst_unreach;
44524fcd 224
7d211efc 225 neigh_node = batadv_orig_node_get_router(orig_node);
44524fcd 226 if (!neigh_node)
e1a5382f 227 goto dst_unreach;
c6c8fea2 228
d0072609 229 if (!neigh_node->if_incoming)
c6c8fea2
SE
230 goto dst_unreach;
231
e9a4f295 232 if (neigh_node->if_incoming->if_status != BATADV_IF_ACTIVE)
c6c8fea2
SE
233 goto dst_unreach;
234
235 memcpy(icmp_packet->orig,
32ae9b22 236 primary_if->net_dev->dev_addr, ETH_ALEN);
c6c8fea2 237
96412690 238 if (packet_len == sizeof(struct batadv_icmp_packet_rr))
44524fcd 239 memcpy(icmp_packet->rr,
d0072609 240 neigh_node->if_incoming->net_dev->dev_addr, ETH_ALEN);
c6c8fea2 241
9455e34c 242 batadv_send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr);
c6c8fea2
SE
243 goto out;
244
c6c8fea2 245dst_unreach:
acd34afa 246 icmp_packet->msg_type = BATADV_DESTINATION_UNREACHABLE;
af4447f6 247 batadv_socket_add_packet(socket_client, icmp_packet, packet_len);
c6c8fea2
SE
248free_skb:
249 kfree_skb(skb);
250out:
32ae9b22 251 if (primary_if)
e5d89254 252 batadv_hardif_free_ref(primary_if);
44524fcd 253 if (neigh_node)
7d211efc 254 batadv_neigh_node_free_ref(neigh_node);
44524fcd 255 if (orig_node)
7d211efc 256 batadv_orig_node_free_ref(orig_node);
c6c8fea2
SE
257 return len;
258}
259
af4447f6 260static unsigned int batadv_socket_poll(struct file *file, poll_table *wait)
c6c8fea2 261{
56303d34 262 struct batadv_socket_client *socket_client = file->private_data;
c6c8fea2
SE
263
264 poll_wait(file, &socket_client->queue_wait, wait);
265
266 if (socket_client->queue_len > 0)
267 return POLLIN | POLLRDNORM;
268
269 return 0;
270}
271
af4447f6 272static const struct file_operations batadv_fops = {
c6c8fea2 273 .owner = THIS_MODULE,
af4447f6
SE
274 .open = batadv_socket_open,
275 .release = batadv_socket_release,
276 .read = batadv_socket_read,
277 .write = batadv_socket_write,
278 .poll = batadv_socket_poll,
c6c8fea2
SE
279 .llseek = no_llseek,
280};
281
56303d34 282int batadv_socket_setup(struct batadv_priv *bat_priv)
c6c8fea2
SE
283{
284 struct dentry *d;
285
286 if (!bat_priv->debug_dir)
287 goto err;
288
64346643 289 d = debugfs_create_file(BATADV_ICMP_SOCKET, S_IFREG | S_IWUSR | S_IRUSR,
af4447f6 290 bat_priv->debug_dir, bat_priv, &batadv_fops);
5346c35e 291 if (!d)
c6c8fea2
SE
292 goto err;
293
294 return 0;
295
296err:
5346c35e 297 return -ENOMEM;
c6c8fea2
SE
298}
299
56303d34 300static void batadv_socket_add_packet(struct batadv_socket_client *socket_client,
96412690 301 struct batadv_icmp_packet_rr *icmp_packet,
af4447f6 302 size_t icmp_len)
c6c8fea2 303{
56303d34 304 struct batadv_socket_packet *socket_packet;
c6c8fea2 305
704509b8 306 socket_packet = kmalloc(sizeof(*socket_packet), GFP_ATOMIC);
c6c8fea2
SE
307
308 if (!socket_packet)
309 return;
310
311 INIT_LIST_HEAD(&socket_packet->list);
312 memcpy(&socket_packet->icmp_packet, icmp_packet, icmp_len);
313 socket_packet->icmp_len = icmp_len;
314
315 spin_lock_bh(&socket_client->lock);
316
317 /* while waiting for the lock the socket_client could have been
9cfc7bd6
SE
318 * deleted
319 */
af4447f6 320 if (!batadv_socket_client_hash[icmp_packet->uid]) {
c6c8fea2
SE
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,
56303d34
SE
331 struct batadv_socket_packet,
332 list);
c6c8fea2
SE
333
334 list_del(&socket_packet->list);
335 kfree(socket_packet);
336 socket_client->queue_len--;
337 }
338
339 spin_unlock_bh(&socket_client->lock);
340
341 wake_up(&socket_client->queue_wait);
342}
343
96412690 344void batadv_socket_receive_packet(struct batadv_icmp_packet_rr *icmp_packet,
9039dc7e 345 size_t icmp_len)
c6c8fea2 346{
56303d34 347 struct batadv_socket_client *hash;
c6c8fea2 348
af4447f6 349 hash = batadv_socket_client_hash[icmp_packet->uid];
c6c8fea2 350 if (hash)
af4447f6 351 batadv_socket_add_packet(hash, icmp_packet, icmp_len);
c6c8fea2 352}