blob: 2ed6ab1c6e1b3a9e7a4b558d24b4f73ec6a8ad5f [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>
31#include <linux/types.h>
32#include <linux/errno.h>
33#include <linux/sched.h>
34#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <linux/skbuff.h>
37#include <linux/miscdevice.h>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/bluetooth/bluetooth.h>
40#include <net/bluetooth/hci_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Marcel Holtmannac284942009-06-07 18:09:57 +020042#define VERSION "1.3"
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070043
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +020044static bool amp;
45
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070046struct vhci_data {
47 struct hci_dev *hdev;
48
49 unsigned long flags;
50
51 wait_queue_head_t read_wait;
52 struct sk_buff_head readq;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070053};
54
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070055static int vhci_open_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 set_bit(HCI_RUNNING, &hdev->flags);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 0;
60}
61
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070062static int vhci_close_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Marcel Holtmann9c724352006-07-06 15:45:23 +020064 struct vhci_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
67 return 0;
68
Marcel Holtmann9c724352006-07-06 15:45:23 +020069 skb_queue_purge(&data->readq);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
72}
73
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070074static int vhci_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Marcel Holtmann9c724352006-07-06 15:45:23 +020076 struct vhci_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Marcel Holtmann9c724352006-07-06 15:45:23 +020078 skb_queue_purge(&data->readq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070083static int vhci_send_frame(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 struct hci_dev* hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann9c724352006-07-06 15:45:23 +020086 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 if (!hdev) {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070089 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return -ENODEV;
91 }
92
93 if (!test_bit(HCI_RUNNING, &hdev->flags))
94 return -EBUSY;
95
Marcel Holtmann9c724352006-07-06 15:45:23 +020096 data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmann0d48d932005-08-09 20:30:28 -070098 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Marcel Holtmann9c724352006-07-06 15:45:23 +020099 skb_queue_tail(&data->readq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Marcel Holtmann9c724352006-07-06 15:45:23 +0200101 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 return 0;
104}
105
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700106static void vhci_destruct(struct hci_dev *hdev)
107{
108 kfree(hdev->driver_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Marcel Holtmann9c724352006-07-06 15:45:23 +0200111static inline ssize_t vhci_get_user(struct vhci_data *data,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700112 const char __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct sk_buff *skb;
115
116 if (count > HCI_MAX_FRAME_SIZE)
117 return -EINVAL;
118
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700119 skb = bt_skb_alloc(count, GFP_KERNEL);
120 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (copy_from_user(skb_put(skb, count), buf, count)) {
124 kfree_skb(skb);
125 return -EFAULT;
126 }
127
Marcel Holtmann9c724352006-07-06 15:45:23 +0200128 skb->dev = (void *) data->hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700129 bt_cb(skb)->pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 skb_pull(skb, 1);
131
132 hci_recv_frame(skb);
133
134 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Marcel Holtmann9c724352006-07-06 15:45:23 +0200137static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700138 struct sk_buff *skb, char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 char __user *ptr = buf;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700141 int len, total = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700143 len = min_t(unsigned int, skb->len, count);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (copy_to_user(ptr, skb->data, len))
146 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 total += len;
149
Marcel Holtmann9c724352006-07-06 15:45:23 +0200150 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700151
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700152 switch (bt_cb(skb)->pkt_type) {
153 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200154 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700157 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200158 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700161 case HCI_SCODATA_PKT:
Gustavo F. Padovan4f7ac182010-05-01 16:15:34 -0300162 data->hdev->stat.sco_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700163 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 };
165
166 return total;
167}
168
Marcel Holtmann9c724352006-07-06 15:45:23 +0200169static ssize_t vhci_read(struct file *file,
170 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700171{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200172 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct sk_buff *skb;
174 ssize_t ret = 0;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 while (count) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200177 skb = skb_dequeue(&data->readq);
Marcel Holtmann4db75892009-06-08 14:13:57 +0200178 if (skb) {
179 ret = vhci_put_user(data, skb, buf, count);
180 if (ret < 0)
181 skb_queue_head(&data->readq, skb);
182 else
183 kfree_skb(skb);
184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186
Marcel Holtmann4db75892009-06-08 14:13:57 +0200187 if (file->f_flags & O_NONBLOCK) {
188 ret = -EAGAIN;
189 break;
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Marcel Holtmann4db75892009-06-08 14:13:57 +0200192 ret = wait_event_interruptible(data->read_wait,
193 !skb_queue_empty(&data->readq));
194 if (ret < 0)
195 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 return ret;
199}
200
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700201static ssize_t vhci_write(struct file *file,
202 const char __user *buf, size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200204 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700205
Marcel Holtmann9c724352006-07-06 15:45:23 +0200206 return vhci_get_user(data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700209static unsigned int vhci_poll(struct file *file, poll_table *wait)
210{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200211 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700212
Marcel Holtmann9c724352006-07-06 15:45:23 +0200213 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700214
Marcel Holtmann9c724352006-07-06 15:45:23 +0200215 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700216 return POLLIN | POLLRDNORM;
217
218 return POLLOUT | POLLWRNORM;
219}
220
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700221static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200223 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 struct hci_dev *hdev;
225
Marcel Holtmann9c724352006-07-06 15:45:23 +0200226 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
227 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -ENOMEM;
229
Marcel Holtmann9c724352006-07-06 15:45:23 +0200230 skb_queue_head_init(&data->readq);
231 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 hdev = hci_alloc_dev();
234 if (!hdev) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200235 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -ENOMEM;
237 }
238
Marcel Holtmann9c724352006-07-06 15:45:23 +0200239 data->hdev = hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100241 hdev->bus = HCI_VIRTUAL;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200242 hdev->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +0200244 if (amp)
245 hdev->dev_type = HCI_AMP;
246
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700247 hdev->open = vhci_open_dev;
248 hdev->close = vhci_close_dev;
249 hdev->flush = vhci_flush;
250 hdev->send = vhci_send_frame;
251 hdev->destruct = vhci_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 hdev->owner = THIS_MODULE;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (hci_register_dev(hdev) < 0) {
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700256 BT_ERR("Can't register HCI device");
Marcel Holtmann9c724352006-07-06 15:45:23 +0200257 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 hci_free_dev(hdev);
259 return -EBUSY;
260 }
261
Marcel Holtmann9c724352006-07-06 15:45:23 +0200262 file->private_data = data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700263
264 return nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700267static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200269 struct vhci_data *data = file->private_data;
270 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
David Herrmann13ea4012011-10-26 10:43:18 +0200272 hci_unregister_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 hci_free_dev(hdev);
274
275 file->private_data = NULL;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278}
279
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800280static const struct file_operations vhci_fops = {
Marcel Holtmannfed4c252009-12-03 18:07:28 +0100281 .owner = THIS_MODULE,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700282 .read = vhci_read,
283 .write = vhci_write,
284 .poll = vhci_poll,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700285 .open = vhci_open,
286 .release = vhci_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200287 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700290static struct miscdevice vhci_miscdev= {
Marcel Holtmannac284942009-06-07 18:09:57 +0200291 .name = "vhci",
292 .fops = &vhci_fops,
293 .minor = MISC_DYNAMIC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700296static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700298 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100300 return misc_register(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700303static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100305 misc_deregister(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700308module_init(vhci_init);
309module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +0200311module_param(amp, bool, 0644);
312MODULE_PARM_DESC(amp, "Create AMP controller device");
313
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200314MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700315MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
316MODULE_VERSION(VERSION);
317MODULE_LICENSE("GPL");