serial: fix missing bit coverage of ASYNC_FLAGS
[linux-2.6/libata-dev.git] / drivers / staging / batman-adv / icmp_socket.c
blobfc3d32c127292ab5dc717b59e169d6e19f52f10b
1 /*
2 * Copyright (C) 2007-2010 B.A.T.M.A.N. contributors:
4 * Marek Lindner
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.
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.
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
22 #include "main.h"
23 #include <linux/debugfs.h>
24 #include <linux/slab.h>
25 #include "icmp_socket.h"
26 #include "send.h"
27 #include "types.h"
28 #include "hash.h"
29 #include "hard-interface.h"
32 static struct socket_client *socket_client_hash[256];
34 static void bat_socket_add_packet(struct socket_client *socket_client,
35 struct icmp_packet_rr *icmp_packet,
36 size_t icmp_len);
38 void bat_socket_init(void)
40 memset(socket_client_hash, 0, sizeof(socket_client_hash));
43 static int bat_socket_open(struct inode *inode, struct file *file)
45 unsigned int i;
46 struct socket_client *socket_client;
48 socket_client = kmalloc(sizeof(struct socket_client), GFP_KERNEL);
50 if (!socket_client)
51 return -ENOMEM;
53 for (i = 0; i < ARRAY_SIZE(socket_client_hash); i++) {
54 if (!socket_client_hash[i]) {
55 socket_client_hash[i] = socket_client;
56 break;
60 if (i == ARRAY_SIZE(socket_client_hash)) {
61 pr_err("Error - can't add another packet client: "
62 "maximum number of clients reached\n");
63 kfree(socket_client);
64 return -EXFULL;
67 INIT_LIST_HEAD(&socket_client->queue_list);
68 socket_client->queue_len = 0;
69 socket_client->index = i;
70 spin_lock_init(&socket_client->lock);
71 init_waitqueue_head(&socket_client->queue_wait);
73 file->private_data = socket_client;
75 inc_module_count();
76 return 0;
79 static int bat_socket_release(struct inode *inode, struct file *file)
81 struct socket_client *socket_client = file->private_data;
82 struct socket_packet *socket_packet;
83 struct list_head *list_pos, *list_pos_tmp;
84 unsigned long flags;
86 spin_lock_irqsave(&socket_client->lock, flags);
88 /* for all packets in the queue ... */
89 list_for_each_safe(list_pos, list_pos_tmp, &socket_client->queue_list) {
90 socket_packet = list_entry(list_pos,
91 struct socket_packet, list);
93 list_del(list_pos);
94 kfree(socket_packet);
97 socket_client_hash[socket_client->index] = NULL;
98 spin_unlock_irqrestore(&socket_client->lock, flags);
100 kfree(socket_client);
101 dec_module_count();
103 return 0;
106 static ssize_t bat_socket_read(struct file *file, char __user *buf,
107 size_t count, loff_t *ppos)
109 struct socket_client *socket_client = file->private_data;
110 struct socket_packet *socket_packet;
111 size_t packet_len;
112 int error;
113 unsigned long flags;
115 if ((file->f_flags & O_NONBLOCK) && (socket_client->queue_len == 0))
116 return -EAGAIN;
118 if ((!buf) || (count < sizeof(struct icmp_packet)))
119 return -EINVAL;
121 if (!access_ok(VERIFY_WRITE, buf, count))
122 return -EFAULT;
124 error = wait_event_interruptible(socket_client->queue_wait,
125 socket_client->queue_len);
127 if (error)
128 return error;
130 spin_lock_irqsave(&socket_client->lock, flags);
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--;
137 spin_unlock_irqrestore(&socket_client->lock, flags);
139 error = __copy_to_user(buf, &socket_packet->icmp_packet,
140 socket_packet->icmp_len);
142 packet_len = socket_packet->icmp_len;
143 kfree(socket_packet);
145 if (error)
146 return -EFAULT;
148 return packet_len;
151 static ssize_t bat_socket_write(struct file *file, const char __user *buff,
152 size_t len, loff_t *off)
154 /* FIXME: each orig_node->batman_if will be attached to a softif */
155 struct bat_priv *bat_priv = netdev_priv(soft_device);
156 struct socket_client *socket_client = file->private_data;
157 struct icmp_packet_rr icmp_packet;
158 struct orig_node *orig_node;
159 struct batman_if *batman_if;
160 size_t packet_len = sizeof(struct icmp_packet);
161 uint8_t dstaddr[ETH_ALEN];
162 unsigned long flags;
164 if (len < sizeof(struct icmp_packet)) {
165 bat_dbg(DBG_BATMAN, bat_priv,
166 "Error - can't send packet from char device: "
167 "invalid packet size\n");
168 return -EINVAL;
171 if (len >= sizeof(struct icmp_packet_rr))
172 packet_len = sizeof(struct icmp_packet_rr);
174 if (!access_ok(VERIFY_READ, buff, packet_len))
175 return -EFAULT;
177 if (__copy_from_user(&icmp_packet, buff, packet_len))
178 return -EFAULT;
180 if (icmp_packet.packet_type != BAT_ICMP) {
181 bat_dbg(DBG_BATMAN, bat_priv,
182 "Error - can't send packet from char device: "
183 "got bogus packet type (expected: BAT_ICMP)\n");
184 return -EINVAL;
187 if (icmp_packet.msg_type != ECHO_REQUEST) {
188 bat_dbg(DBG_BATMAN, bat_priv,
189 "Error - can't send packet from char device: "
190 "got bogus message type (expected: ECHO_REQUEST)\n");
191 return -EINVAL;
194 icmp_packet.uid = socket_client->index;
196 if (icmp_packet.version != COMPAT_VERSION) {
197 icmp_packet.msg_type = PARAMETER_PROBLEM;
198 icmp_packet.ttl = COMPAT_VERSION;
199 bat_socket_add_packet(socket_client, &icmp_packet, packet_len);
200 goto out;
203 if (atomic_read(&module_state) != MODULE_ACTIVE)
204 goto dst_unreach;
206 spin_lock_irqsave(&orig_hash_lock, flags);
207 orig_node = ((struct orig_node *)hash_find(orig_hash, icmp_packet.dst));
209 if (!orig_node)
210 goto unlock;
212 if (!orig_node->router)
213 goto unlock;
215 batman_if = orig_node->router->if_incoming;
216 memcpy(dstaddr, orig_node->router->addr, ETH_ALEN);
218 spin_unlock_irqrestore(&orig_hash_lock, flags);
220 if (!batman_if)
221 goto dst_unreach;
223 if (batman_if->if_status != IF_ACTIVE)
224 goto dst_unreach;
226 memcpy(icmp_packet.orig, batman_if->net_dev->dev_addr, ETH_ALEN);
228 if (packet_len == sizeof(struct icmp_packet_rr))
229 memcpy(icmp_packet.rr, batman_if->net_dev->dev_addr, ETH_ALEN);
231 send_raw_packet((unsigned char *)&icmp_packet,
232 packet_len, batman_if, dstaddr);
234 goto out;
236 unlock:
237 spin_unlock_irqrestore(&orig_hash_lock, flags);
238 dst_unreach:
239 icmp_packet.msg_type = DESTINATION_UNREACHABLE;
240 bat_socket_add_packet(socket_client, &icmp_packet, packet_len);
241 out:
242 return len;
245 static unsigned int bat_socket_poll(struct file *file, poll_table *wait)
247 struct socket_client *socket_client = file->private_data;
249 poll_wait(file, &socket_client->queue_wait, wait);
251 if (socket_client->queue_len > 0)
252 return POLLIN | POLLRDNORM;
254 return 0;
257 static const struct file_operations fops = {
258 .owner = THIS_MODULE,
259 .open = bat_socket_open,
260 .release = bat_socket_release,
261 .read = bat_socket_read,
262 .write = bat_socket_write,
263 .poll = bat_socket_poll,
266 int bat_socket_setup(struct bat_priv *bat_priv)
268 struct dentry *d;
270 if (!bat_priv->debug_dir)
271 goto err;
273 d = debugfs_create_file(ICMP_SOCKET, S_IFREG | S_IWUSR | S_IRUSR,
274 bat_priv->debug_dir, NULL, &fops);
275 if (d)
276 goto err;
278 return 0;
280 err:
281 return 1;
284 static void bat_socket_add_packet(struct socket_client *socket_client,
285 struct icmp_packet_rr *icmp_packet,
286 size_t icmp_len)
288 struct socket_packet *socket_packet;
289 unsigned long flags;
291 socket_packet = kmalloc(sizeof(struct socket_packet), GFP_ATOMIC);
293 if (!socket_packet)
294 return;
296 INIT_LIST_HEAD(&socket_packet->list);
297 memcpy(&socket_packet->icmp_packet, icmp_packet, icmp_len);
298 socket_packet->icmp_len = icmp_len;
300 spin_lock_irqsave(&socket_client->lock, flags);
302 /* while waiting for the lock the socket_client could have been
303 * deleted */
304 if (!socket_client_hash[icmp_packet->uid]) {
305 spin_unlock_irqrestore(&socket_client->lock, flags);
306 kfree(socket_packet);
307 return;
310 list_add_tail(&socket_packet->list, &socket_client->queue_list);
311 socket_client->queue_len++;
313 if (socket_client->queue_len > 100) {
314 socket_packet = list_first_entry(&socket_client->queue_list,
315 struct socket_packet, list);
317 list_del(&socket_packet->list);
318 kfree(socket_packet);
319 socket_client->queue_len--;
322 spin_unlock_irqrestore(&socket_client->lock, flags);
324 wake_up(&socket_client->queue_wait);
327 void bat_socket_receive_packet(struct icmp_packet_rr *icmp_packet,
328 size_t icmp_len)
330 struct socket_client *hash = socket_client_hash[icmp_packet->uid];
332 if (hash)
333 bat_socket_add_packet(hash, icmp_packet, icmp_len);