blob: 7b167385a1c4e8bdf7d0974707f0b0b43ea21f43 [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>
Marcel Holtmann23424c02013-09-02 10:41:39 -070027#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/init.h>
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070031#include <linux/slab.h>
32#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 Holtmann23424c02013-09-02 10:41:39 -070043#define VERSION "1.4"
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070044
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +020045static bool amp;
46
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070047struct vhci_data {
48 struct hci_dev *hdev;
49
Marcel Holtmann4aa769b2005-08-09 20:27:37 -070050 wait_queue_head_t read_wait;
51 struct sk_buff_head readq;
Marcel Holtmann23424c02013-09-02 10:41:39 -070052
53 struct delayed_work open_timeout;
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{
David Herrmann155961e2012-02-09 21:58:32 +010065 struct vhci_data *data = hci_get_drvdata(hdev);
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{
David Herrmann155961e2012-02-09 21:58:32 +010077 struct vhci_data *data = hci_get_drvdata(hdev);
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 Holtmann7bd8f092013-10-11 06:19:18 -070084static int vhci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Marcel Holtmann60298772013-10-11 07:01:04 -070086 struct vhci_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 if (!test_bit(HCI_RUNNING, &hdev->flags))
89 return -EBUSY;
90
Marcel Holtmann0d48d932005-08-09 20:30:28 -070091 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Marcel Holtmann9c724352006-07-06 15:45:23 +020092 skb_queue_tail(&data->readq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Marcel Holtmann9c724352006-07-06 15:45:23 +020094 wake_up_interruptible(&data->read_wait);
Marcel Holtmann23424c02013-09-02 10:41:39 -070095 return 0;
96}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmann23424c02013-09-02 10:41:39 -070098static int vhci_create_device(struct vhci_data *data, __u8 dev_type)
99{
100 struct hci_dev *hdev;
101 struct sk_buff *skb;
102
103 skb = bt_skb_alloc(4, GFP_KERNEL);
104 if (!skb)
105 return -ENOMEM;
106
107 hdev = hci_alloc_dev();
108 if (!hdev) {
109 kfree_skb(skb);
110 return -ENOMEM;
111 }
112
113 data->hdev = hdev;
114
115 hdev->bus = HCI_VIRTUAL;
116 hdev->dev_type = dev_type;
117 hci_set_drvdata(hdev, data);
118
119 hdev->open = vhci_open_dev;
120 hdev->close = vhci_close_dev;
121 hdev->flush = vhci_flush;
122 hdev->send = vhci_send_frame;
123
124 if (hci_register_dev(hdev) < 0) {
125 BT_ERR("Can't register HCI device");
126 hci_free_dev(hdev);
127 data->hdev = NULL;
128 kfree_skb(skb);
129 return -EBUSY;
130 }
131
132 bt_cb(skb)->pkt_type = HCI_VENDOR_PKT;
133
134 *skb_put(skb, 1) = 0xff;
135 *skb_put(skb, 1) = dev_type;
136 put_unaligned_le16(hdev->id, skb_put(skb, 2));
137 skb_queue_tail(&data->readq, skb);
138
139 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
142
Marcel Holtmann9c724352006-07-06 15:45:23 +0200143static inline ssize_t vhci_get_user(struct vhci_data *data,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700144 const char __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct sk_buff *skb;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700147 __u8 pkt_type, dev_type;
148 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Marcel Holtmann23424c02013-09-02 10:41:39 -0700150 if (count < 2 || count > HCI_MAX_FRAME_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return -EINVAL;
152
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700153 skb = bt_skb_alloc(count, GFP_KERNEL);
154 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (copy_from_user(skb_put(skb, count), buf, count)) {
158 kfree_skb(skb);
159 return -EFAULT;
160 }
161
Marcel Holtmann23424c02013-09-02 10:41:39 -0700162 pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 skb_pull(skb, 1);
164
Marcel Holtmann23424c02013-09-02 10:41:39 -0700165 switch (pkt_type) {
166 case HCI_EVENT_PKT:
167 case HCI_ACLDATA_PKT:
168 case HCI_SCODATA_PKT:
169 if (!data->hdev) {
170 kfree_skb(skb);
171 return -ENODEV;
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Marcel Holtmann23424c02013-09-02 10:41:39 -0700174 bt_cb(skb)->pkt_type = pkt_type;
175
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700176 ret = hci_recv_frame(data->hdev, skb);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700177 break;
178
179 case HCI_VENDOR_PKT:
180 if (data->hdev) {
181 kfree_skb(skb);
182 return -EBADFD;
183 }
184
185 cancel_delayed_work_sync(&data->open_timeout);
186
187 dev_type = *((__u8 *) skb->data);
188 skb_pull(skb, 1);
189
190 if (skb->len > 0) {
191 kfree_skb(skb);
192 return -EINVAL;
193 }
194
195 kfree_skb(skb);
196
197 if (dev_type != HCI_BREDR && dev_type != HCI_AMP)
198 return -EINVAL;
199
200 ret = vhci_create_device(data, dev_type);
201 break;
202
203 default:
204 kfree_skb(skb);
205 return -EINVAL;
206 }
207
208 return (ret < 0) ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Marcel Holtmann9c724352006-07-06 15:45:23 +0200211static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700212 struct sk_buff *skb,
213 char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 char __user *ptr = buf;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700216 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700218 len = min_t(unsigned int, skb->len, count);
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (copy_to_user(ptr, skb->data, len))
221 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700222
Marcel Holtmann23424c02013-09-02 10:41:39 -0700223 if (!data->hdev)
224 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Marcel Holtmann9c724352006-07-06 15:45:23 +0200226 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700227
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700228 switch (bt_cb(skb)->pkt_type) {
229 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200230 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700231 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700232 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200233 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700234 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700235 case HCI_SCODATA_PKT:
Gustavo F. Padovan4f7ac182010-05-01 16:15:34 -0300236 data->hdev->stat.sco_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700237 break;
Peter Senna Tschudin2c24d452012-09-07 17:24:47 +0200238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Marcel Holtmann23424c02013-09-02 10:41:39 -0700240 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Marcel Holtmann9c724352006-07-06 15:45:23 +0200243static ssize_t vhci_read(struct file *file,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700244 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700245{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200246 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct sk_buff *skb;
248 ssize_t ret = 0;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 while (count) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200251 skb = skb_dequeue(&data->readq);
Marcel Holtmann4db75892009-06-08 14:13:57 +0200252 if (skb) {
253 ret = vhci_put_user(data, skb, buf, count);
254 if (ret < 0)
255 skb_queue_head(&data->readq, skb);
256 else
257 kfree_skb(skb);
258 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260
Marcel Holtmann4db75892009-06-08 14:13:57 +0200261 if (file->f_flags & O_NONBLOCK) {
262 ret = -EAGAIN;
263 break;
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Marcel Holtmann4db75892009-06-08 14:13:57 +0200266 ret = wait_event_interruptible(data->read_wait,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700267 !skb_queue_empty(&data->readq));
Marcel Holtmann4db75892009-06-08 14:13:57 +0200268 if (ret < 0)
269 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 return ret;
273}
274
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700275static ssize_t vhci_write(struct file *file,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700276 const char __user *buf, size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200278 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700279
Marcel Holtmann9c724352006-07-06 15:45:23 +0200280 return vhci_get_user(data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700283static unsigned int vhci_poll(struct file *file, poll_table *wait)
284{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200285 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700286
Marcel Holtmann9c724352006-07-06 15:45:23 +0200287 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700288
Marcel Holtmann9c724352006-07-06 15:45:23 +0200289 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700290 return POLLIN | POLLRDNORM;
291
292 return POLLOUT | POLLWRNORM;
293}
294
Marcel Holtmann23424c02013-09-02 10:41:39 -0700295static void vhci_open_timeout(struct work_struct *work)
296{
297 struct vhci_data *data = container_of(work, struct vhci_data,
298 open_timeout.work);
299
300 vhci_create_device(data, amp ? HCI_AMP : HCI_BREDR);
301}
302
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700303static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200305 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Marcel Holtmann9c724352006-07-06 15:45:23 +0200307 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
308 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return -ENOMEM;
310
Marcel Holtmann9c724352006-07-06 15:45:23 +0200311 skb_queue_head_init(&data->readq);
312 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Marcel Holtmann23424c02013-09-02 10:41:39 -0700314 INIT_DELAYED_WORK(&data->open_timeout, vhci_open_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Marcel Holtmann9c724352006-07-06 15:45:23 +0200316 file->private_data = data;
David Herrmann0dea0142012-03-28 11:48:42 +0200317 nonseekable_open(inode, file);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700318
Marcel Holtmann23424c02013-09-02 10:41:39 -0700319 schedule_delayed_work(&data->open_timeout, msecs_to_jiffies(1000));
320
David Herrmann0dea0142012-03-28 11:48:42 +0200321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700324static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200326 struct vhci_data *data = file->private_data;
327 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Marcel Holtmann23424c02013-09-02 10:41:39 -0700329 cancel_delayed_work_sync(&data->open_timeout);
330
331 if (hdev) {
332 hci_unregister_dev(hdev);
333 hci_free_dev(hdev);
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 file->private_data = NULL;
David Herrmannbf18c712012-01-07 15:47:14 +0100337 kfree(data);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return 0;
340}
341
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800342static const struct file_operations vhci_fops = {
Marcel Holtmannfed4c252009-12-03 18:07:28 +0100343 .owner = THIS_MODULE,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700344 .read = vhci_read,
345 .write = vhci_write,
346 .poll = vhci_poll,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700347 .open = vhci_open,
348 .release = vhci_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200349 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350};
351
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700352static struct miscdevice vhci_miscdev= {
Marcel Holtmannac284942009-06-07 18:09:57 +0200353 .name = "vhci",
354 .fops = &vhci_fops,
355 .minor = MISC_DYNAMIC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700358static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700360 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100362 return misc_register(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700365static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100367 misc_deregister(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700370module_init(vhci_init);
371module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +0200373module_param(amp, bool, 0644);
374MODULE_PARM_DESC(amp, "Create AMP controller device");
375
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200376MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700377MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
378MODULE_VERSION(VERSION);
379MODULE_LICENSE("GPL");
Marcel Holtmannbfacbb92013-08-26 22:02:38 -0700380MODULE_ALIAS("devname:vhci");