blob: 1df9dda2e377d8415366ae43fb1c44e57e2ed9d2 [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 Holtmannac284942009-06-07 18:09:57 +020043#define VERSION "1.3"
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070044
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;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070054};
55
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070056static int vhci_open_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 set_bit(HCI_RUNNING, &hdev->flags);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
61}
62
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070063static int vhci_close_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Marcel Holtmann9c724352006-07-06 15:45:23 +020065 struct vhci_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
68 return 0;
69
Marcel Holtmann9c724352006-07-06 15:45:23 +020070 skb_queue_purge(&data->readq);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 0;
73}
74
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070075static int vhci_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Marcel Holtmann9c724352006-07-06 15:45:23 +020077 struct vhci_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Marcel Holtmann9c724352006-07-06 15:45:23 +020079 skb_queue_purge(&data->readq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070084static int vhci_send_frame(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 struct hci_dev* hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann9c724352006-07-06 15:45:23 +020087 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 if (!hdev) {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070090 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return -ENODEV;
92 }
93
94 if (!test_bit(HCI_RUNNING, &hdev->flags))
95 return -EBUSY;
96
Marcel Holtmann9c724352006-07-06 15:45:23 +020097 data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Marcel Holtmann0d48d932005-08-09 20:30:28 -070099 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200100 skb_queue_tail(&data->readq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Marcel Holtmann9c724352006-07-06 15:45:23 +0200102 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 return 0;
105}
106
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700107static void vhci_destruct(struct hci_dev *hdev)
108{
109 kfree(hdev->driver_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Marcel Holtmann9c724352006-07-06 15:45:23 +0200112static inline ssize_t vhci_get_user(struct vhci_data *data,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700113 const char __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 struct sk_buff *skb;
116
117 if (count > HCI_MAX_FRAME_SIZE)
118 return -EINVAL;
119
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700120 skb = bt_skb_alloc(count, GFP_KERNEL);
121 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (copy_from_user(skb_put(skb, count), buf, count)) {
125 kfree_skb(skb);
126 return -EFAULT;
127 }
128
Marcel Holtmann9c724352006-07-06 15:45:23 +0200129 skb->dev = (void *) data->hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700130 bt_cb(skb)->pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 skb_pull(skb, 1);
132
133 hci_recv_frame(skb);
134
135 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Marcel Holtmann9c724352006-07-06 15:45:23 +0200138static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700139 struct sk_buff *skb, char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 char __user *ptr = buf;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700142 int len, total = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700144 len = min_t(unsigned int, skb->len, count);
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (copy_to_user(ptr, skb->data, len))
147 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 total += len;
150
Marcel Holtmann9c724352006-07-06 15:45:23 +0200151 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700152
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700153 switch (bt_cb(skb)->pkt_type) {
154 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200155 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700156 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700158 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200159 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700160 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700162 case HCI_SCODATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200163 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 };
166
167 return total;
168}
169
Marcel Holtmann9c724352006-07-06 15:45:23 +0200170static ssize_t vhci_read(struct file *file,
171 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700172{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200173 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 struct sk_buff *skb;
175 ssize_t ret = 0;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 while (count) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200178 skb = skb_dequeue(&data->readq);
Marcel Holtmann4db75892009-06-08 14:13:57 +0200179 if (skb) {
180 ret = vhci_put_user(data, skb, buf, count);
181 if (ret < 0)
182 skb_queue_head(&data->readq, skb);
183 else
184 kfree_skb(skb);
185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
Marcel Holtmann4db75892009-06-08 14:13:57 +0200188 if (file->f_flags & O_NONBLOCK) {
189 ret = -EAGAIN;
190 break;
191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Marcel Holtmann4db75892009-06-08 14:13:57 +0200193 ret = wait_event_interruptible(data->read_wait,
194 !skb_queue_empty(&data->readq));
195 if (ret < 0)
196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 return ret;
200}
201
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700202static ssize_t vhci_write(struct file *file,
203 const char __user *buf, size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200205 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700206
Marcel Holtmann9c724352006-07-06 15:45:23 +0200207 return vhci_get_user(data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700210static unsigned int vhci_poll(struct file *file, poll_table *wait)
211{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200212 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700213
Marcel Holtmann9c724352006-07-06 15:45:23 +0200214 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700215
Marcel Holtmann9c724352006-07-06 15:45:23 +0200216 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700217 return POLLIN | POLLRDNORM;
218
219 return POLLOUT | POLLWRNORM;
220}
221
222static int vhci_ioctl(struct inode *inode, struct file *file,
223 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 return -EINVAL;
226}
227
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700228static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200230 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct hci_dev *hdev;
232
Marcel Holtmann9c724352006-07-06 15:45:23 +0200233 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
234 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return -ENOMEM;
236
Marcel Holtmann9c724352006-07-06 15:45:23 +0200237 skb_queue_head_init(&data->readq);
238 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 hdev = hci_alloc_dev();
241 if (!hdev) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200242 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return -ENOMEM;
244 }
245
Marcel Holtmann9c724352006-07-06 15:45:23 +0200246 data->hdev = hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Marcel Holtmann0ac53932006-07-08 13:57:15 +0200248 hdev->type = HCI_VIRTUAL;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200249 hdev->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700251 hdev->open = vhci_open_dev;
252 hdev->close = vhci_close_dev;
253 hdev->flush = vhci_flush;
254 hdev->send = vhci_send_frame;
255 hdev->destruct = vhci_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 hdev->owner = THIS_MODULE;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (hci_register_dev(hdev) < 0) {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700260 BT_ERR("Can't register HCI device");
Marcel Holtmann9c724352006-07-06 15:45:23 +0200261 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 hci_free_dev(hdev);
263 return -EBUSY;
264 }
265
Marcel Holtmann9c724352006-07-06 15:45:23 +0200266 file->private_data = data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700267
268 return nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700271static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200273 struct vhci_data *data = file->private_data;
274 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (hci_unregister_dev(hdev) < 0) {
277 BT_ERR("Can't unregister HCI device %s", hdev->name);
278 }
279
280 hci_free_dev(hdev);
281
282 file->private_data = NULL;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return 0;
285}
286
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800287static const struct file_operations vhci_fops = {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700288 .read = vhci_read,
289 .write = vhci_write,
290 .poll = vhci_poll,
291 .ioctl = vhci_ioctl,
292 .open = vhci_open,
293 .release = vhci_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700296static struct miscdevice vhci_miscdev= {
Marcel Holtmannac284942009-06-07 18:09:57 +0200297 .name = "vhci",
298 .fops = &vhci_fops,
299 .minor = MISC_DYNAMIC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700302static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700304 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700306 if (misc_register(&vhci_miscdev) < 0) {
307 BT_ERR("Can't register misc device with minor %d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -EIO;
309 }
310
311 return 0;
312}
313
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700314static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700316 if (misc_deregister(&vhci_miscdev) < 0)
317 BT_ERR("Can't unregister misc device with minor %d", minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700320module_init(vhci_init);
321module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200323MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700324MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
325MODULE_VERSION(VERSION);
326MODULE_LICENSE("GPL");