blob: 0fd522e85a718717dc6ef2b3c805b09b874edfac [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 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
David Herrmann155961e2012-02-09 21:58:32 +010097 data = hci_get_drvdata(hdev);
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);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700103 return 0;
104}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Marcel Holtmann23424c02013-09-02 10:41:39 -0700106static int vhci_create_device(struct vhci_data *data, __u8 dev_type)
107{
108 struct hci_dev *hdev;
109 struct sk_buff *skb;
110
111 skb = bt_skb_alloc(4, GFP_KERNEL);
112 if (!skb)
113 return -ENOMEM;
114
115 hdev = hci_alloc_dev();
116 if (!hdev) {
117 kfree_skb(skb);
118 return -ENOMEM;
119 }
120
121 data->hdev = hdev;
122
123 hdev->bus = HCI_VIRTUAL;
124 hdev->dev_type = dev_type;
125 hci_set_drvdata(hdev, data);
126
127 hdev->open = vhci_open_dev;
128 hdev->close = vhci_close_dev;
129 hdev->flush = vhci_flush;
130 hdev->send = vhci_send_frame;
131
132 if (hci_register_dev(hdev) < 0) {
133 BT_ERR("Can't register HCI device");
134 hci_free_dev(hdev);
135 data->hdev = NULL;
136 kfree_skb(skb);
137 return -EBUSY;
138 }
139
140 bt_cb(skb)->pkt_type = HCI_VENDOR_PKT;
141
142 *skb_put(skb, 1) = 0xff;
143 *skb_put(skb, 1) = dev_type;
144 put_unaligned_le16(hdev->id, skb_put(skb, 2));
145 skb_queue_tail(&data->readq, skb);
146
147 wake_up_interruptible(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 0;
149}
150
Marcel Holtmann9c724352006-07-06 15:45:23 +0200151static inline ssize_t vhci_get_user(struct vhci_data *data,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700152 const char __user *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct sk_buff *skb;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700155 __u8 pkt_type, dev_type;
156 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Marcel Holtmann23424c02013-09-02 10:41:39 -0700158 if (count < 2 || count > HCI_MAX_FRAME_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return -EINVAL;
160
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700161 skb = bt_skb_alloc(count, GFP_KERNEL);
162 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return -ENOMEM;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (copy_from_user(skb_put(skb, count), buf, count)) {
166 kfree_skb(skb);
167 return -EFAULT;
168 }
169
Marcel Holtmann23424c02013-09-02 10:41:39 -0700170 pkt_type = *((__u8 *) skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 skb_pull(skb, 1);
172
Marcel Holtmann23424c02013-09-02 10:41:39 -0700173 switch (pkt_type) {
174 case HCI_EVENT_PKT:
175 case HCI_ACLDATA_PKT:
176 case HCI_SCODATA_PKT:
177 if (!data->hdev) {
178 kfree_skb(skb);
179 return -ENODEV;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Marcel Holtmann23424c02013-09-02 10:41:39 -0700182 bt_cb(skb)->pkt_type = pkt_type;
183
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700184 ret = hci_recv_frame(data->hdev, skb);
Marcel Holtmann23424c02013-09-02 10:41:39 -0700185 break;
186
187 case HCI_VENDOR_PKT:
188 if (data->hdev) {
189 kfree_skb(skb);
190 return -EBADFD;
191 }
192
193 cancel_delayed_work_sync(&data->open_timeout);
194
195 dev_type = *((__u8 *) skb->data);
196 skb_pull(skb, 1);
197
198 if (skb->len > 0) {
199 kfree_skb(skb);
200 return -EINVAL;
201 }
202
203 kfree_skb(skb);
204
205 if (dev_type != HCI_BREDR && dev_type != HCI_AMP)
206 return -EINVAL;
207
208 ret = vhci_create_device(data, dev_type);
209 break;
210
211 default:
212 kfree_skb(skb);
213 return -EINVAL;
214 }
215
216 return (ret < 0) ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Marcel Holtmann9c724352006-07-06 15:45:23 +0200219static inline ssize_t vhci_put_user(struct vhci_data *data,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700220 struct sk_buff *skb,
221 char __user *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 char __user *ptr = buf;
Marcel Holtmann23424c02013-09-02 10:41:39 -0700224 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700226 len = min_t(unsigned int, skb->len, count);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (copy_to_user(ptr, skb->data, len))
229 return -EFAULT;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700230
Marcel Holtmann23424c02013-09-02 10:41:39 -0700231 if (!data->hdev)
232 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Marcel Holtmann9c724352006-07-06 15:45:23 +0200234 data->hdev->stat.byte_tx += len;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700235
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700236 switch (bt_cb(skb)->pkt_type) {
237 case HCI_COMMAND_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200238 data->hdev->stat.cmd_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700239 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700240 case HCI_ACLDATA_PKT:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200241 data->hdev->stat.acl_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700242 break;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700243 case HCI_SCODATA_PKT:
Gustavo F. Padovan4f7ac182010-05-01 16:15:34 -0300244 data->hdev->stat.sco_tx++;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700245 break;
Peter Senna Tschudin2c24d452012-09-07 17:24:47 +0200246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Marcel Holtmann23424c02013-09-02 10:41:39 -0700248 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Marcel Holtmann9c724352006-07-06 15:45:23 +0200251static ssize_t vhci_read(struct file *file,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700252 char __user *buf, size_t count, loff_t *pos)
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700253{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200254 struct vhci_data *data = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 struct sk_buff *skb;
256 ssize_t ret = 0;
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 while (count) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200259 skb = skb_dequeue(&data->readq);
Marcel Holtmann4db75892009-06-08 14:13:57 +0200260 if (skb) {
261 ret = vhci_put_user(data, skb, buf, count);
262 if (ret < 0)
263 skb_queue_head(&data->readq, skb);
264 else
265 kfree_skb(skb);
266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
Marcel Holtmann4db75892009-06-08 14:13:57 +0200269 if (file->f_flags & O_NONBLOCK) {
270 ret = -EAGAIN;
271 break;
272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Marcel Holtmann4db75892009-06-08 14:13:57 +0200274 ret = wait_event_interruptible(data->read_wait,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700275 !skb_queue_empty(&data->readq));
Marcel Holtmann4db75892009-06-08 14:13:57 +0200276 if (ret < 0)
277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 return ret;
281}
282
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700283static ssize_t vhci_write(struct file *file,
Marcel Holtmann23424c02013-09-02 10:41:39 -0700284 const char __user *buf, size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200286 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700287
Marcel Holtmann9c724352006-07-06 15:45:23 +0200288 return vhci_get_user(data, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700291static unsigned int vhci_poll(struct file *file, poll_table *wait)
292{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200293 struct vhci_data *data = file->private_data;
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700294
Marcel Holtmann9c724352006-07-06 15:45:23 +0200295 poll_wait(file, &data->read_wait, wait);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700296
Marcel Holtmann9c724352006-07-06 15:45:23 +0200297 if (!skb_queue_empty(&data->readq))
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700298 return POLLIN | POLLRDNORM;
299
300 return POLLOUT | POLLWRNORM;
301}
302
Marcel Holtmann23424c02013-09-02 10:41:39 -0700303static void vhci_open_timeout(struct work_struct *work)
304{
305 struct vhci_data *data = container_of(work, struct vhci_data,
306 open_timeout.work);
307
308 vhci_create_device(data, amp ? HCI_AMP : HCI_BREDR);
309}
310
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700311static int vhci_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200313 struct vhci_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Marcel Holtmann9c724352006-07-06 15:45:23 +0200315 data = kzalloc(sizeof(struct vhci_data), GFP_KERNEL);
316 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return -ENOMEM;
318
Marcel Holtmann9c724352006-07-06 15:45:23 +0200319 skb_queue_head_init(&data->readq);
320 init_waitqueue_head(&data->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Marcel Holtmann23424c02013-09-02 10:41:39 -0700322 INIT_DELAYED_WORK(&data->open_timeout, vhci_open_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Marcel Holtmann9c724352006-07-06 15:45:23 +0200324 file->private_data = data;
David Herrmann0dea0142012-03-28 11:48:42 +0200325 nonseekable_open(inode, file);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700326
Marcel Holtmann23424c02013-09-02 10:41:39 -0700327 schedule_delayed_work(&data->open_timeout, msecs_to_jiffies(1000));
328
David Herrmann0dea0142012-03-28 11:48:42 +0200329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700332static int vhci_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200334 struct vhci_data *data = file->private_data;
335 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Marcel Holtmann23424c02013-09-02 10:41:39 -0700337 cancel_delayed_work_sync(&data->open_timeout);
338
339 if (hdev) {
340 hci_unregister_dev(hdev);
341 hci_free_dev(hdev);
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 file->private_data = NULL;
David Herrmannbf18c712012-01-07 15:47:14 +0100345 kfree(data);
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348}
349
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800350static const struct file_operations vhci_fops = {
Marcel Holtmannfed4c252009-12-03 18:07:28 +0100351 .owner = THIS_MODULE,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700352 .read = vhci_read,
353 .write = vhci_write,
354 .poll = vhci_poll,
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700355 .open = vhci_open,
356 .release = vhci_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200357 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700360static struct miscdevice vhci_miscdev= {
Marcel Holtmannac284942009-06-07 18:09:57 +0200361 .name = "vhci",
362 .fops = &vhci_fops,
363 .minor = MISC_DYNAMIC_MINOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
365
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700366static int __init vhci_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700368 BT_INFO("Virtual HCI driver ver %s", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100370 return misc_register(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700373static void __exit vhci_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Marcel Holtmann329ab1b2009-12-03 18:05:16 +0100375 misc_deregister(&vhci_miscdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700378module_init(vhci_init);
379module_exit(vhci_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Andrei Emeltchenko36acbb12011-11-14 12:42:48 +0200381module_param(amp, bool, 0644);
382MODULE_PARM_DESC(amp, "Create AMP controller device");
383
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200384MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Marcel Holtmann4aa769b2005-08-09 20:27:37 -0700385MODULE_DESCRIPTION("Bluetooth virtual HCI driver ver " VERSION);
386MODULE_VERSION(VERSION);
387MODULE_LICENSE("GPL");
Marcel Holtmannbfacbb92013-08-26 22:02:38 -0700388MODULE_ALIAS("devname:vhci");