blob: 0bbefba6469cee659e7b114e961a677e3fa65fa0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Marcel Holtmann4aa769b2005-08-09 20:27:37 -07003 * Bluetooth virtual HCI driver
4 *
Marcel Holtmann9c724352006-07-06 15:45:23 +02005 * Copyright (C) 2000-2001 Qualcomm Incorporated
6 * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
7 * Copyright (C) 2004-2006 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann4aa769b2005-08-09 20:27:37 -07008 *
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070030#include <linux/slab.h>
Arnd Bergmann8324af62008-05-20 19:15:40 +020031#include <linux/smp_lock.h>
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070032#include <linux/types.h>
33#include <linux/errno.h>
34#include <linux/sched.h>
35#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <linux/skbuff.h>
38#include <linux/miscdevice.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <net/bluetooth/bluetooth.h>
41#include <net/bluetooth/hci_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070043#define VERSION "1.2"
44
45static int minor = MISC_DYNAMIC_MINOR;
46
47struct vhci_data {
48 struct hci_dev *hdev;
49
50 unsigned long flags;
51
52 wait_queue_head_t read_wait;
53 struct sk_buff_head readq;
54
55 struct fasync_struct *fasync;
56};
57
58#define VHCI_FASYNC 0x0010
59
60static struct miscdevice vhci_miscdev;
61
62static int vhci_open_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 set_bit(HCI_RUNNING, &hdev->flags);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
67}
68
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070069static int vhci_close_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Marcel Holtmann9c724352006-07-06 15:45:23 +020071 struct vhci_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
74 return 0;
75
Marcel Holtmann9c724352006-07-06 15:45:23 +020076 skb_queue_purge(&data->readq);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 0;
79}
80
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070081static int vhci_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Marcel Holtmann9c724352006-07-06 15:45:23 +020083 struct vhci_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Marcel Holtmann9c724352006-07-06 15:45:23 +020085 skb_queue_purge(&data->readq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070087 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070090static int vhci_send_frame(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 struct hci_dev* hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann9c724352006-07-06 15:45:23 +020093 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (!hdev) {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070096 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return -ENODEV;
98 }
99
100 if (!test_bit(HCI_RUNNING, &hdev->flags))
101 return -EBUSY;
102
Marcel Holtmann9c724352006-07-06 15:45:23 +0200103 data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700105 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200106 skb_queue_tail(&data->readq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Marcel Holtmann9c724352006-07-06 15:45:23 +0200108 if (data->flags & VHCI_FASYNC)
109 kill_fasync(&data->fasync, SIGIO, POLL_IN);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700110
Marcel Holtmann9c724352006-07-06 15:45:23 +0200111 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 return 0;
114}
115
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700116static void vhci_destruct(struct hci_dev *hdev)
117{
118 kfree(hdev->driver_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Marcel Holtmann9c724352006-07-06 15:45:23 +0200121static inline ssize_t vhci_get_user(struct vhci_data *data,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700122 const char __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct sk_buff *skb;
125
126 if (count > HCI_MAX_FRAME_SIZE)
127 return -EINVAL;
128
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700129 skb = bt_skb_alloc(count, GFP_KERNEL);
130 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (copy_from_user(skb_put(skb, count), buf, count)) {
134 kfree_skb(skb);
135 return -EFAULT;
136 }
137
Marcel Holtmann9c724352006-07-06 15:45:23 +0200138 skb->dev = (void *) data->hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700139 bt_cb(skb)->pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 skb_pull(skb, 1);
141
142 hci_recv_frame(skb);
143
144 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Marcel Holtmann9c724352006-07-06 15:45:23 +0200147static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700148 struct sk_buff *skb, char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 char __user *ptr = buf;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700151 int len, total = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700153 len = min_t(unsigned int, skb->len, count);
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 if (copy_to_user(ptr, skb->data, len))
156 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 total += len;
159
Marcel Holtmann9c724352006-07-06 15:45:23 +0200160 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700161
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700162 switch (bt_cb(skb)->pkt_type) {
163 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200164 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700165 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700167 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200168 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700169 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700171 case HCI_SCODATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200172 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700173 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 };
175
176 return total;
177}
178
Marcel Holtmann9c724352006-07-06 15:45:23 +0200179static ssize_t vhci_read(struct file *file,
180 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700181{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 DECLARE_WAITQUEUE(wait, current);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200183 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct sk_buff *skb;
185 ssize_t ret = 0;
186
Marcel Holtmann9c724352006-07-06 15:45:23 +0200187 add_wait_queue(&data->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 while (count) {
189 set_current_state(TASK_INTERRUPTIBLE);
190
Marcel Holtmann9c724352006-07-06 15:45:23 +0200191 skb = skb_dequeue(&data->readq);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700192 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (file->f_flags & O_NONBLOCK) {
194 ret = -EAGAIN;
195 break;
196 }
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (signal_pending(current)) {
199 ret = -ERESTARTSYS;
200 break;
201 }
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 schedule();
204 continue;
205 }
206
207 if (access_ok(VERIFY_WRITE, buf, count))
Marcel Holtmann9c724352006-07-06 15:45:23 +0200208 ret = vhci_put_user(data, skb, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 else
210 ret = -EFAULT;
211
212 kfree_skb(skb);
213 break;
214 }
215 set_current_state(TASK_RUNNING);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200216 remove_wait_queue(&data->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 return ret;
219}
220
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700221static ssize_t vhci_write(struct file *file,
222 const char __user *buf, size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200224 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700225
226 if (!access_ok(VERIFY_READ, buf, count))
227 return -EFAULT;
228
Marcel Holtmann9c724352006-07-06 15:45:23 +0200229 return vhci_get_user(data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700232static unsigned int vhci_poll(struct file *file, poll_table *wait)
233{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200234 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700235
Marcel Holtmann9c724352006-07-06 15:45:23 +0200236 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700237
Marcel Holtmann9c724352006-07-06 15:45:23 +0200238 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700239 return POLLIN | POLLRDNORM;
240
241 return POLLOUT | POLLWRNORM;
242}
243
244static int vhci_ioctl(struct inode *inode, struct file *file,
245 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 return -EINVAL;
248}
249
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700250static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200252 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct hci_dev *hdev;
254
Marcel Holtmann9c724352006-07-06 15:45:23 +0200255 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
256 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return -ENOMEM;
258
Marcel Holtmann9c724352006-07-06 15:45:23 +0200259 skb_queue_head_init(&data->readq);
260 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Arnd Bergmann8324af62008-05-20 19:15:40 +0200262 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 hdev = hci_alloc_dev();
264 if (!hdev) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200265 kfree(data);
Arnd Bergmann8324af62008-05-20 19:15:40 +0200266 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -ENOMEM;
268 }
269
Marcel Holtmann9c724352006-07-06 15:45:23 +0200270 data->hdev = hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200272 hdev->type = HCI_VIRTUAL;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200273 hdev->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700275 hdev->open = vhci_open_dev;
276 hdev->close = vhci_close_dev;
277 hdev->flush = vhci_flush;
278 hdev->send = vhci_send_frame;
279 hdev->destruct = vhci_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 hdev->owner = THIS_MODULE;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (hci_register_dev(hdev) < 0) {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700284 BT_ERR("Can't register HCI device");
Marcel Holtmann9c724352006-07-06 15:45:23 +0200285 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 hci_free_dev(hdev);
Arnd Bergmann8324af62008-05-20 19:15:40 +0200287 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return -EBUSY;
289 }
290
Marcel Holtmann9c724352006-07-06 15:45:23 +0200291 file->private_data = data;
Arnd Bergmann8324af62008-05-20 19:15:40 +0200292 unlock_kernel();
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700293
294 return nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700297static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200299 struct vhci_data *data = file->private_data;
300 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (hci_unregister_dev(hdev) < 0) {
303 BT_ERR("Can't unregister HCI device %s", hdev->name);
304 }
305
306 hci_free_dev(hdev);
307
308 file->private_data = NULL;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return 0;
311}
312
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700313static int vhci_fasync(int fd, struct file *file, int on)
314{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200315 struct vhci_data *data = file->private_data;
Jonathan Corbetdbfb2df2008-06-19 16:07:51 -0600316 int err = 0;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700317
Jonathan Corbetdbfb2df2008-06-19 16:07:51 -0600318 lock_kernel();
Marcel Holtmann9c724352006-07-06 15:45:23 +0200319 err = fasync_helper(fd, file, on, &data->fasync);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700320 if (err < 0)
Jonathan Corbetdbfb2df2008-06-19 16:07:51 -0600321 goto out;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700322
323 if (on)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200324 data->flags |= VHCI_FASYNC;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700325 else
Marcel Holtmann9c724352006-07-06 15:45:23 +0200326 data->flags &= ~VHCI_FASYNC;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700327
Jonathan Corbetdbfb2df2008-06-19 16:07:51 -0600328out:
329 unlock_kernel();
330 return err;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700331}
332
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800333static const struct file_operations vhci_fops = {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700334 .owner = THIS_MODULE,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700335 .read = vhci_read,
336 .write = vhci_write,
337 .poll = vhci_poll,
338 .ioctl = vhci_ioctl,
339 .open = vhci_open,
340 .release = vhci_release,
341 .fasync = vhci_fasync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342};
343
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700344static struct miscdevice vhci_miscdev= {
345 .name = "vhci",
346 .fops = &vhci_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700349static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700351 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700353 vhci_miscdev.minor = minor;
354
355 if (misc_register(&vhci_miscdev) < 0) {
356 BT_ERR("Can't register misc device with minor %d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return -EIO;
358 }
359
360 return 0;
361}
362
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700363static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700365 if (misc_deregister(&vhci_miscdev) < 0)
366 BT_ERR("Can't unregister misc device with minor %d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700369module_init(vhci_init);
370module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700372module_param(minor, int, 0444);
373MODULE_PARM_DESC(minor, "Miscellaneous minor device number");
374
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200375MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700376MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
377MODULE_VERSION(VERSION);
378MODULE_LICENSE("GPL");