1 /* Bluetooth HCI driver model support. */
3 #include <linux/debugfs.h>
4 #include <linux/module.h>
5 #include <asm/unaligned.h>
7 #include <net/bluetooth/bluetooth.h>
8 #include <net/bluetooth/hci_core.h>
10 static struct class *bt_class;
12 struct dentry *bt_debugfs;
13 EXPORT_SYMBOL_GPL(bt_debugfs);
15 static inline char *link_typetostr(int type)
31 static ssize_t show_link_type(struct device *dev,
32 struct device_attribute *attr, char *buf)
34 struct hci_conn *conn = to_hci_conn(dev);
35 return sprintf(buf, "%s\n", link_typetostr(conn->type));
38 static ssize_t show_link_address(struct device *dev,
39 struct device_attribute *attr, char *buf)
41 struct hci_conn *conn = to_hci_conn(dev);
42 return sprintf(buf, "%pMR\n", &conn->dst);
45 static ssize_t show_link_features(struct device *dev,
46 struct device_attribute *attr, char *buf)
48 struct hci_conn *conn = to_hci_conn(dev);
50 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
51 conn->features[0][0], conn->features[0][1],
52 conn->features[0][2], conn->features[0][3],
53 conn->features[0][4], conn->features[0][5],
54 conn->features[0][6], conn->features[0][7]);
57 #define LINK_ATTR(_name, _mode, _show, _store) \
58 struct device_attribute link_attr_##_name = __ATTR(_name, _mode, _show, _store)
60 static LINK_ATTR(type, S_IRUGO, show_link_type, NULL);
61 static LINK_ATTR(address, S_IRUGO, show_link_address, NULL);
62 static LINK_ATTR(features, S_IRUGO, show_link_features, NULL);
64 static struct attribute *bt_link_attrs[] = {
66 &link_attr_address.attr,
67 &link_attr_features.attr,
71 static struct attribute_group bt_link_group = {
72 .attrs = bt_link_attrs,
75 static const struct attribute_group *bt_link_groups[] = {
80 static void bt_link_release(struct device *dev)
82 struct hci_conn *conn = to_hci_conn(dev);
86 static struct device_type bt_link = {
88 .groups = bt_link_groups,
89 .release = bt_link_release,
93 * The rfcomm tty device will possibly retain even when conn
94 * is down, and sysfs doesn't support move zombie device,
95 * so we should move the device before conn device is destroyed.
97 static int __match_tty(struct device *dev, void *data)
99 return !strncmp(dev_name(dev), "rfcomm", 6);
102 void hci_conn_init_sysfs(struct hci_conn *conn)
104 struct hci_dev *hdev = conn->hdev;
106 BT_DBG("conn %p", conn);
108 conn->dev.type = &bt_link;
109 conn->dev.class = bt_class;
110 conn->dev.parent = &hdev->dev;
112 device_initialize(&conn->dev);
115 void hci_conn_add_sysfs(struct hci_conn *conn)
117 struct hci_dev *hdev = conn->hdev;
119 BT_DBG("conn %p", conn);
121 dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle);
123 if (device_add(&conn->dev) < 0) {
124 BT_ERR("Failed to register connection device");
131 void hci_conn_del_sysfs(struct hci_conn *conn)
133 struct hci_dev *hdev = conn->hdev;
135 if (!device_is_registered(&conn->dev))
141 dev = device_find_child(&conn->dev, NULL, __match_tty);
144 device_move(dev, NULL, DPM_ORDER_DEV_LAST);
148 device_del(&conn->dev);
153 static inline char *host_bustostr(int bus)
175 static inline char *host_typetostr(int type)
187 static ssize_t show_bus(struct device *dev,
188 struct device_attribute *attr, char *buf)
190 struct hci_dev *hdev = to_hci_dev(dev);
191 return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
194 static ssize_t show_type(struct device *dev,
195 struct device_attribute *attr, char *buf)
197 struct hci_dev *hdev = to_hci_dev(dev);
198 return sprintf(buf, "%s\n", host_typetostr(hdev->dev_type));
201 static ssize_t show_name(struct device *dev,
202 struct device_attribute *attr, char *buf)
204 struct hci_dev *hdev = to_hci_dev(dev);
205 char name[HCI_MAX_NAME_LENGTH + 1];
208 for (i = 0; i < HCI_MAX_NAME_LENGTH; i++)
209 name[i] = hdev->dev_name[i];
211 name[HCI_MAX_NAME_LENGTH] = '\0';
212 return sprintf(buf, "%s\n", name);
215 static ssize_t show_class(struct device *dev,
216 struct device_attribute *attr, char *buf)
218 struct hci_dev *hdev = to_hci_dev(dev);
219 return sprintf(buf, "0x%.2x%.2x%.2x\n", hdev->dev_class[2],
220 hdev->dev_class[1], hdev->dev_class[0]);
223 static ssize_t show_address(struct device *dev,
224 struct device_attribute *attr, char *buf)
226 struct hci_dev *hdev = to_hci_dev(dev);
227 return sprintf(buf, "%pMR\n", &hdev->bdaddr);
230 static ssize_t show_features(struct device *dev,
231 struct device_attribute *attr, char *buf)
233 struct hci_dev *hdev = to_hci_dev(dev);
235 return sprintf(buf, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
236 hdev->features[0][0], hdev->features[0][1],
237 hdev->features[0][2], hdev->features[0][3],
238 hdev->features[0][4], hdev->features[0][5],
239 hdev->features[0][6], hdev->features[0][7]);
242 static ssize_t show_manufacturer(struct device *dev,
243 struct device_attribute *attr, char *buf)
245 struct hci_dev *hdev = to_hci_dev(dev);
246 return sprintf(buf, "%d\n", hdev->manufacturer);
249 static ssize_t show_hci_version(struct device *dev,
250 struct device_attribute *attr, char *buf)
252 struct hci_dev *hdev = to_hci_dev(dev);
253 return sprintf(buf, "%d\n", hdev->hci_ver);
256 static ssize_t show_hci_revision(struct device *dev,
257 struct device_attribute *attr, char *buf)
259 struct hci_dev *hdev = to_hci_dev(dev);
260 return sprintf(buf, "%d\n", hdev->hci_rev);
263 static ssize_t show_idle_timeout(struct device *dev,
264 struct device_attribute *attr, char *buf)
266 struct hci_dev *hdev = to_hci_dev(dev);
267 return sprintf(buf, "%d\n", hdev->idle_timeout);
270 static ssize_t store_idle_timeout(struct device *dev,
271 struct device_attribute *attr,
272 const char *buf, size_t count)
274 struct hci_dev *hdev = to_hci_dev(dev);
278 rv = kstrtouint(buf, 0, &val);
282 if (val != 0 && (val < 500 || val > 3600000))
285 hdev->idle_timeout = val;
290 static ssize_t show_sniff_max_interval(struct device *dev,
291 struct device_attribute *attr, char *buf)
293 struct hci_dev *hdev = to_hci_dev(dev);
294 return sprintf(buf, "%d\n", hdev->sniff_max_interval);
297 static ssize_t store_sniff_max_interval(struct device *dev,
298 struct device_attribute *attr,
299 const char *buf, size_t count)
301 struct hci_dev *hdev = to_hci_dev(dev);
305 rv = kstrtou16(buf, 0, &val);
309 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
312 hdev->sniff_max_interval = val;
317 static ssize_t show_sniff_min_interval(struct device *dev,
318 struct device_attribute *attr, char *buf)
320 struct hci_dev *hdev = to_hci_dev(dev);
321 return sprintf(buf, "%d\n", hdev->sniff_min_interval);
324 static ssize_t store_sniff_min_interval(struct device *dev,
325 struct device_attribute *attr,
326 const char *buf, size_t count)
328 struct hci_dev *hdev = to_hci_dev(dev);
332 rv = kstrtou16(buf, 0, &val);
336 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
339 hdev->sniff_min_interval = val;
344 static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
345 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
346 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
347 static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
348 static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
349 static DEVICE_ATTR(features, S_IRUGO, show_features, NULL);
350 static DEVICE_ATTR(manufacturer, S_IRUGO, show_manufacturer, NULL);
351 static DEVICE_ATTR(hci_version, S_IRUGO, show_hci_version, NULL);
352 static DEVICE_ATTR(hci_revision, S_IRUGO, show_hci_revision, NULL);
354 static DEVICE_ATTR(idle_timeout, S_IRUGO | S_IWUSR,
355 show_idle_timeout, store_idle_timeout);
356 static DEVICE_ATTR(sniff_max_interval, S_IRUGO | S_IWUSR,
357 show_sniff_max_interval, store_sniff_max_interval);
358 static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
359 show_sniff_min_interval, store_sniff_min_interval);
361 static struct attribute *bt_host_attrs[] = {
365 &dev_attr_class.attr,
366 &dev_attr_address.attr,
367 &dev_attr_features.attr,
368 &dev_attr_manufacturer.attr,
369 &dev_attr_hci_version.attr,
370 &dev_attr_hci_revision.attr,
371 &dev_attr_idle_timeout.attr,
372 &dev_attr_sniff_max_interval.attr,
373 &dev_attr_sniff_min_interval.attr,
377 static struct attribute_group bt_host_group = {
378 .attrs = bt_host_attrs,
381 static const struct attribute_group *bt_host_groups[] = {
386 static void bt_host_release(struct device *dev)
388 struct hci_dev *hdev = to_hci_dev(dev);
390 module_put(THIS_MODULE);
393 static struct device_type bt_host = {
395 .groups = bt_host_groups,
396 .release = bt_host_release,
399 static int inquiry_cache_show(struct seq_file *f, void *p)
401 struct hci_dev *hdev = f->private;
402 struct discovery_state *cache = &hdev->discovery;
403 struct inquiry_entry *e;
407 list_for_each_entry(e, &cache->all, all) {
408 struct inquiry_data *data = &e->data;
409 seq_printf(f, "%pMR %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
411 data->pscan_rep_mode, data->pscan_period_mode,
412 data->pscan_mode, data->dev_class[2],
413 data->dev_class[1], data->dev_class[0],
414 __le16_to_cpu(data->clock_offset),
415 data->rssi, data->ssp_mode, e->timestamp);
418 hci_dev_unlock(hdev);
423 static int inquiry_cache_open(struct inode *inode, struct file *file)
425 return single_open(file, inquiry_cache_show, inode->i_private);
428 static const struct file_operations inquiry_cache_fops = {
429 .open = inquiry_cache_open,
432 .release = single_release,
435 static int blacklist_show(struct seq_file *f, void *p)
437 struct hci_dev *hdev = f->private;
438 struct bdaddr_list *b;
442 list_for_each_entry(b, &hdev->blacklist, list)
443 seq_printf(f, "%pMR\n", &b->bdaddr);
445 hci_dev_unlock(hdev);
450 static int blacklist_open(struct inode *inode, struct file *file)
452 return single_open(file, blacklist_show, inode->i_private);
455 static const struct file_operations blacklist_fops = {
456 .open = blacklist_open,
459 .release = single_release,
462 static void print_bt_uuid(struct seq_file *f, u8 *uuid)
465 u16 data1, data2, data3, data4;
467 data5 = get_unaligned_le32(uuid);
468 data4 = get_unaligned_le16(uuid + 4);
469 data3 = get_unaligned_le16(uuid + 6);
470 data2 = get_unaligned_le16(uuid + 8);
471 data1 = get_unaligned_le16(uuid + 10);
472 data0 = get_unaligned_le32(uuid + 12);
474 seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.4x%.8x\n",
475 data0, data1, data2, data3, data4, data5);
478 static int uuids_show(struct seq_file *f, void *p)
480 struct hci_dev *hdev = f->private;
481 struct bt_uuid *uuid;
485 list_for_each_entry(uuid, &hdev->uuids, list)
486 print_bt_uuid(f, uuid->uuid);
488 hci_dev_unlock(hdev);
493 static int uuids_open(struct inode *inode, struct file *file)
495 return single_open(file, uuids_show, inode->i_private);
498 static const struct file_operations uuids_fops = {
502 .release = single_release,
505 static int auto_accept_delay_set(void *data, u64 val)
507 struct hci_dev *hdev = data;
511 hdev->auto_accept_delay = val;
513 hci_dev_unlock(hdev);
518 static int auto_accept_delay_get(void *data, u64 *val)
520 struct hci_dev *hdev = data;
524 *val = hdev->auto_accept_delay;
526 hci_dev_unlock(hdev);
531 DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
532 auto_accept_delay_set, "%llu\n");
534 void hci_init_sysfs(struct hci_dev *hdev)
536 struct device *dev = &hdev->dev;
538 dev->type = &bt_host;
539 dev->class = bt_class;
541 __module_get(THIS_MODULE);
542 device_initialize(dev);
545 int hci_add_sysfs(struct hci_dev *hdev)
547 struct device *dev = &hdev->dev;
550 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
552 dev_set_name(dev, "%s", hdev->name);
554 err = device_add(dev);
561 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
565 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
566 hdev, &inquiry_cache_fops);
568 debugfs_create_file("blacklist", 0444, hdev->debugfs,
569 hdev, &blacklist_fops);
571 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
573 debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
574 &auto_accept_delay_fops);
578 void hci_del_sysfs(struct hci_dev *hdev)
580 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
582 debugfs_remove_recursive(hdev->debugfs);
584 device_del(&hdev->dev);
587 int __init bt_sysfs_init(void)
589 bt_debugfs = debugfs_create_dir("bluetooth", NULL);
591 bt_class = class_create(THIS_MODULE, "bluetooth");
593 return PTR_RET(bt_class);
596 void bt_sysfs_cleanup(void)
598 class_destroy(bt_class);
600 debugfs_remove_recursive(bt_debugfs);