1 // SPDX-License-Identifier: GPL-2.0
3 * Thunderbolt bus support
5 * Copyright (C) 2017, Intel Corporation
9 #include <linux/device.h>
10 #include <linux/dmar.h>
11 #include <linux/idr.h>
12 #include <linux/iommu.h>
13 #include <linux/module.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/slab.h>
16 #include <linux/random.h>
17 #include <crypto/hash.h>
21 static DEFINE_IDA(tb_domain_ida);
23 static bool match_service_id(const struct tb_service_id *id,
24 const struct tb_service *svc)
26 if (id->match_flags & TBSVC_MATCH_PROTOCOL_KEY) {
27 if (strcmp(id->protocol_key, svc->key))
31 if (id->match_flags & TBSVC_MATCH_PROTOCOL_ID) {
32 if (id->protocol_id != svc->prtcid)
36 if (id->match_flags & TBSVC_MATCH_PROTOCOL_VERSION) {
37 if (id->protocol_version != svc->prtcvers)
41 if (id->match_flags & TBSVC_MATCH_PROTOCOL_VERSION) {
42 if (id->protocol_revision != svc->prtcrevs)
49 static const struct tb_service_id *__tb_service_match(struct device *dev,
50 struct device_driver *drv)
52 struct tb_service_driver *driver;
53 const struct tb_service_id *ids;
54 struct tb_service *svc;
56 svc = tb_to_service(dev);
60 driver = container_of(drv, struct tb_service_driver, driver);
61 if (!driver->id_table)
64 for (ids = driver->id_table; ids->match_flags != 0; ids++) {
65 if (match_service_id(ids, svc))
72 static int tb_service_match(struct device *dev, struct device_driver *drv)
74 return !!__tb_service_match(dev, drv);
77 static int tb_service_probe(struct device *dev)
79 struct tb_service *svc = tb_to_service(dev);
80 struct tb_service_driver *driver;
81 const struct tb_service_id *id;
83 driver = container_of(dev->driver, struct tb_service_driver, driver);
84 id = __tb_service_match(dev, &driver->driver);
86 return driver->probe(svc, id);
89 static int tb_service_remove(struct device *dev)
91 struct tb_service *svc = tb_to_service(dev);
92 struct tb_service_driver *driver;
94 driver = container_of(dev->driver, struct tb_service_driver, driver);
101 static void tb_service_shutdown(struct device *dev)
103 struct tb_service_driver *driver;
104 struct tb_service *svc;
106 svc = tb_to_service(dev);
107 if (!svc || !dev->driver)
110 driver = container_of(dev->driver, struct tb_service_driver, driver);
111 if (driver->shutdown)
112 driver->shutdown(svc);
115 static const char * const tb_security_names[] = {
116 [TB_SECURITY_NONE] = "none",
117 [TB_SECURITY_USER] = "user",
118 [TB_SECURITY_SECURE] = "secure",
119 [TB_SECURITY_DPONLY] = "dponly",
120 [TB_SECURITY_USBONLY] = "usbonly",
123 static ssize_t boot_acl_show(struct device *dev, struct device_attribute *attr,
126 struct tb *tb = container_of(dev, struct tb, dev);
131 uuids = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL);
135 pm_runtime_get_sync(&tb->dev);
137 if (mutex_lock_interruptible(&tb->lock)) {
141 ret = tb->cm_ops->get_boot_acl(tb, uuids, tb->nboot_acl);
143 mutex_unlock(&tb->lock);
146 mutex_unlock(&tb->lock);
148 for (ret = 0, i = 0; i < tb->nboot_acl; i++) {
149 if (!uuid_is_null(&uuids[i]))
150 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%pUb",
153 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%s",
154 i < tb->nboot_acl - 1 ? "," : "\n");
158 pm_runtime_mark_last_busy(&tb->dev);
159 pm_runtime_put_autosuspend(&tb->dev);
165 static ssize_t boot_acl_store(struct device *dev, struct device_attribute *attr,
166 const char *buf, size_t count)
168 struct tb *tb = container_of(dev, struct tb, dev);
169 char *str, *s, *uuid_str;
175 * Make sure the value is not bigger than tb->nboot_acl * UUID
176 * length + commas and optional "\n". Also the smallest allowable
177 * string is tb->nboot_acl * ",".
179 if (count > (UUID_STRING_LEN + 1) * tb->nboot_acl + 1)
181 if (count < tb->nboot_acl - 1)
184 str = kstrdup(buf, GFP_KERNEL);
188 acl = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL);
194 uuid_str = strim(str);
195 while ((s = strsep(&uuid_str, ",")) != NULL && i < tb->nboot_acl) {
196 size_t len = strlen(s);
199 if (len != UUID_STRING_LEN) {
203 ret = uuid_parse(s, &acl[i]);
211 if (s || i < tb->nboot_acl) {
216 pm_runtime_get_sync(&tb->dev);
218 if (mutex_lock_interruptible(&tb->lock)) {
222 ret = tb->cm_ops->set_boot_acl(tb, acl, tb->nboot_acl);
224 /* Notify userspace about the change */
225 kobject_uevent(&tb->dev.kobj, KOBJ_CHANGE);
227 mutex_unlock(&tb->lock);
230 pm_runtime_mark_last_busy(&tb->dev);
231 pm_runtime_put_autosuspend(&tb->dev);
239 static DEVICE_ATTR_RW(boot_acl);
241 static ssize_t iommu_dma_protection_show(struct device *dev,
242 struct device_attribute *attr,
246 * Kernel DMA protection is a feature where Thunderbolt security is
247 * handled natively using IOMMU. It is enabled when IOMMU is
248 * enabled and ACPI DMAR table has DMAR_PLATFORM_OPT_IN set.
250 return sprintf(buf, "%d\n",
251 iommu_present(&pci_bus_type) && dmar_platform_optin());
253 static DEVICE_ATTR_RO(iommu_dma_protection);
255 static ssize_t security_show(struct device *dev, struct device_attribute *attr,
258 struct tb *tb = container_of(dev, struct tb, dev);
259 const char *name = "unknown";
261 if (tb->security_level < ARRAY_SIZE(tb_security_names))
262 name = tb_security_names[tb->security_level];
264 return sprintf(buf, "%s\n", name);
266 static DEVICE_ATTR_RO(security);
268 static struct attribute *domain_attrs[] = {
269 &dev_attr_boot_acl.attr,
270 &dev_attr_iommu_dma_protection.attr,
271 &dev_attr_security.attr,
275 static umode_t domain_attr_is_visible(struct kobject *kobj,
276 struct attribute *attr, int n)
278 struct device *dev = kobj_to_dev(kobj);
279 struct tb *tb = container_of(dev, struct tb, dev);
281 if (attr == &dev_attr_boot_acl.attr) {
283 tb->cm_ops->get_boot_acl &&
284 tb->cm_ops->set_boot_acl)
292 static struct attribute_group domain_attr_group = {
293 .is_visible = domain_attr_is_visible,
294 .attrs = domain_attrs,
297 static const struct attribute_group *domain_attr_groups[] = {
302 struct bus_type tb_bus_type = {
303 .name = "thunderbolt",
304 .match = tb_service_match,
305 .probe = tb_service_probe,
306 .remove = tb_service_remove,
307 .shutdown = tb_service_shutdown,
310 static void tb_domain_release(struct device *dev)
312 struct tb *tb = container_of(dev, struct tb, dev);
314 tb_ctl_free(tb->ctl);
315 destroy_workqueue(tb->wq);
316 ida_simple_remove(&tb_domain_ida, tb->index);
317 mutex_destroy(&tb->lock);
321 struct device_type tb_domain_type = {
322 .name = "thunderbolt_domain",
323 .release = tb_domain_release,
327 * tb_domain_alloc() - Allocate a domain
328 * @nhi: Pointer to the host controller
329 * @privsize: Size of the connection manager private data
331 * Allocates and initializes a new Thunderbolt domain. Connection
332 * managers are expected to call this and then fill in @cm_ops
335 * Call tb_domain_put() to release the domain before it has been added
338 * Return: allocated domain structure on %NULL in case of error
340 struct tb *tb_domain_alloc(struct tb_nhi *nhi, size_t privsize)
345 * Make sure the structure sizes map with that the hardware
346 * expects because bit-fields are being used.
348 BUILD_BUG_ON(sizeof(struct tb_regs_switch_header) != 5 * 4);
349 BUILD_BUG_ON(sizeof(struct tb_regs_port_header) != 8 * 4);
350 BUILD_BUG_ON(sizeof(struct tb_regs_hop) != 2 * 4);
352 tb = kzalloc(sizeof(*tb) + privsize, GFP_KERNEL);
357 mutex_init(&tb->lock);
359 tb->index = ida_simple_get(&tb_domain_ida, 0, 0, GFP_KERNEL);
363 tb->wq = alloc_ordered_workqueue("thunderbolt%d", 0, tb->index);
367 tb->dev.parent = &nhi->pdev->dev;
368 tb->dev.bus = &tb_bus_type;
369 tb->dev.type = &tb_domain_type;
370 tb->dev.groups = domain_attr_groups;
371 dev_set_name(&tb->dev, "domain%d", tb->index);
372 device_initialize(&tb->dev);
377 ida_simple_remove(&tb_domain_ida, tb->index);
384 static bool tb_domain_event_cb(void *data, enum tb_cfg_pkg_type type,
385 const void *buf, size_t size)
387 struct tb *tb = data;
389 if (!tb->cm_ops->handle_event) {
390 tb_warn(tb, "domain does not have event handler\n");
395 case TB_CFG_PKG_XDOMAIN_REQ:
396 case TB_CFG_PKG_XDOMAIN_RESP:
397 return tb_xdomain_handle_request(tb, type, buf, size);
400 tb->cm_ops->handle_event(tb, type, buf, size);
407 * tb_domain_add() - Add domain to the system
410 * Starts the domain and adds it to the system. Hotplugging devices will
411 * work after this has been returned successfully. In order to remove
412 * and release the domain after this function has been called, call
413 * tb_domain_remove().
415 * Return: %0 in case of success and negative errno in case of error
417 int tb_domain_add(struct tb *tb)
421 if (WARN_ON(!tb->cm_ops))
424 mutex_lock(&tb->lock);
426 tb->ctl = tb_ctl_alloc(tb->nhi, tb_domain_event_cb, tb);
433 * tb_schedule_hotplug_handler may be called as soon as the config
434 * channel is started. Thats why we have to hold the lock here.
436 tb_ctl_start(tb->ctl);
438 if (tb->cm_ops->driver_ready) {
439 ret = tb->cm_ops->driver_ready(tb);
444 ret = device_add(&tb->dev);
448 /* Start the domain */
449 if (tb->cm_ops->start) {
450 ret = tb->cm_ops->start(tb);
455 /* This starts event processing */
456 mutex_unlock(&tb->lock);
458 device_init_wakeup(&tb->dev, true);
460 pm_runtime_no_callbacks(&tb->dev);
461 pm_runtime_set_active(&tb->dev);
462 pm_runtime_enable(&tb->dev);
463 pm_runtime_set_autosuspend_delay(&tb->dev, TB_AUTOSUSPEND_DELAY);
464 pm_runtime_mark_last_busy(&tb->dev);
465 pm_runtime_use_autosuspend(&tb->dev);
470 device_del(&tb->dev);
472 tb_ctl_stop(tb->ctl);
474 mutex_unlock(&tb->lock);
480 * tb_domain_remove() - Removes and releases a domain
481 * @tb: Domain to remove
483 * Stops the domain, removes it from the system and releases all
484 * resources once the last reference has been released.
486 void tb_domain_remove(struct tb *tb)
488 mutex_lock(&tb->lock);
489 if (tb->cm_ops->stop)
490 tb->cm_ops->stop(tb);
491 /* Stop the domain control traffic */
492 tb_ctl_stop(tb->ctl);
493 mutex_unlock(&tb->lock);
495 flush_workqueue(tb->wq);
496 device_unregister(&tb->dev);
500 * tb_domain_suspend_noirq() - Suspend a domain
501 * @tb: Domain to suspend
503 * Suspends all devices in the domain and stops the control channel.
505 int tb_domain_suspend_noirq(struct tb *tb)
510 * The control channel interrupt is left enabled during suspend
511 * and taking the lock here prevents any events happening before
512 * we actually have stopped the domain and the control channel.
514 mutex_lock(&tb->lock);
515 if (tb->cm_ops->suspend_noirq)
516 ret = tb->cm_ops->suspend_noirq(tb);
518 tb_ctl_stop(tb->ctl);
519 mutex_unlock(&tb->lock);
525 * tb_domain_resume_noirq() - Resume a domain
526 * @tb: Domain to resume
528 * Re-starts the control channel, and resumes all devices connected to
531 int tb_domain_resume_noirq(struct tb *tb)
535 mutex_lock(&tb->lock);
536 tb_ctl_start(tb->ctl);
537 if (tb->cm_ops->resume_noirq)
538 ret = tb->cm_ops->resume_noirq(tb);
539 mutex_unlock(&tb->lock);
544 int tb_domain_suspend(struct tb *tb)
546 return tb->cm_ops->suspend ? tb->cm_ops->suspend(tb) : 0;
549 int tb_domain_freeze_noirq(struct tb *tb)
553 mutex_lock(&tb->lock);
554 if (tb->cm_ops->freeze_noirq)
555 ret = tb->cm_ops->freeze_noirq(tb);
557 tb_ctl_stop(tb->ctl);
558 mutex_unlock(&tb->lock);
563 int tb_domain_thaw_noirq(struct tb *tb)
567 mutex_lock(&tb->lock);
568 tb_ctl_start(tb->ctl);
569 if (tb->cm_ops->thaw_noirq)
570 ret = tb->cm_ops->thaw_noirq(tb);
571 mutex_unlock(&tb->lock);
576 void tb_domain_complete(struct tb *tb)
578 if (tb->cm_ops->complete)
579 tb->cm_ops->complete(tb);
582 int tb_domain_runtime_suspend(struct tb *tb)
584 if (tb->cm_ops->runtime_suspend) {
585 int ret = tb->cm_ops->runtime_suspend(tb);
589 tb_ctl_stop(tb->ctl);
593 int tb_domain_runtime_resume(struct tb *tb)
595 tb_ctl_start(tb->ctl);
596 if (tb->cm_ops->runtime_resume) {
597 int ret = tb->cm_ops->runtime_resume(tb);
605 * tb_domain_approve_switch() - Approve switch
606 * @tb: Domain the switch belongs to
607 * @sw: Switch to approve
609 * This will approve switch by connection manager specific means. In
610 * case of success the connection manager will create tunnels for all
611 * supported protocols.
613 int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw)
615 struct tb_switch *parent_sw;
617 if (!tb->cm_ops->approve_switch)
620 /* The parent switch must be authorized before this one */
621 parent_sw = tb_to_switch(sw->dev.parent);
622 if (!parent_sw || !parent_sw->authorized)
625 return tb->cm_ops->approve_switch(tb, sw);
629 * tb_domain_approve_switch_key() - Approve switch and add key
630 * @tb: Domain the switch belongs to
631 * @sw: Switch to approve
633 * For switches that support secure connect, this function first adds
634 * key to the switch NVM using connection manager specific means. If
635 * adding the key is successful, the switch is approved and connected.
637 * Return: %0 on success and negative errno in case of failure.
639 int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw)
641 struct tb_switch *parent_sw;
644 if (!tb->cm_ops->approve_switch || !tb->cm_ops->add_switch_key)
647 /* The parent switch must be authorized before this one */
648 parent_sw = tb_to_switch(sw->dev.parent);
649 if (!parent_sw || !parent_sw->authorized)
652 ret = tb->cm_ops->add_switch_key(tb, sw);
656 return tb->cm_ops->approve_switch(tb, sw);
660 * tb_domain_challenge_switch_key() - Challenge and approve switch
661 * @tb: Domain the switch belongs to
662 * @sw: Switch to approve
664 * For switches that support secure connect, this function generates
665 * random challenge and sends it to the switch. The switch responds to
666 * this and if the response matches our random challenge, the switch is
667 * approved and connected.
669 * Return: %0 on success and negative errno in case of failure.
671 int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw)
673 u8 challenge[TB_SWITCH_KEY_SIZE];
674 u8 response[TB_SWITCH_KEY_SIZE];
675 u8 hmac[TB_SWITCH_KEY_SIZE];
676 struct tb_switch *parent_sw;
677 struct crypto_shash *tfm;
678 struct shash_desc *shash;
681 if (!tb->cm_ops->approve_switch || !tb->cm_ops->challenge_switch_key)
684 /* The parent switch must be authorized before this one */
685 parent_sw = tb_to_switch(sw->dev.parent);
686 if (!parent_sw || !parent_sw->authorized)
689 get_random_bytes(challenge, sizeof(challenge));
690 ret = tb->cm_ops->challenge_switch_key(tb, sw, challenge, response);
694 tfm = crypto_alloc_shash("hmac(sha256)", 0, 0);
698 ret = crypto_shash_setkey(tfm, sw->key, TB_SWITCH_KEY_SIZE);
702 shash = kzalloc(sizeof(*shash) + crypto_shash_descsize(tfm),
711 memset(hmac, 0, sizeof(hmac));
712 ret = crypto_shash_digest(shash, challenge, sizeof(hmac), hmac);
716 /* The returned HMAC must match the one we calculated */
717 if (memcmp(response, hmac, sizeof(hmac))) {
722 crypto_free_shash(tfm);
725 return tb->cm_ops->approve_switch(tb, sw);
730 crypto_free_shash(tfm);
736 * tb_domain_disconnect_pcie_paths() - Disconnect all PCIe paths
737 * @tb: Domain whose PCIe paths to disconnect
739 * This needs to be called in preparation for NVM upgrade of the host
740 * controller. Makes sure all PCIe paths are disconnected.
742 * Return %0 on success and negative errno in case of error.
744 int tb_domain_disconnect_pcie_paths(struct tb *tb)
746 if (!tb->cm_ops->disconnect_pcie_paths)
749 return tb->cm_ops->disconnect_pcie_paths(tb);
753 * tb_domain_approve_xdomain_paths() - Enable DMA paths for XDomain
754 * @tb: Domain enabling the DMA paths
755 * @xd: XDomain DMA paths are created to
757 * Calls connection manager specific method to enable DMA paths to the
758 * XDomain in question.
760 * Return: 0% in case of success and negative errno otherwise. In
761 * particular returns %-ENOTSUPP if the connection manager
762 * implementation does not support XDomains.
764 int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd)
766 if (!tb->cm_ops->approve_xdomain_paths)
769 return tb->cm_ops->approve_xdomain_paths(tb, xd);
773 * tb_domain_disconnect_xdomain_paths() - Disable DMA paths for XDomain
774 * @tb: Domain disabling the DMA paths
775 * @xd: XDomain whose DMA paths are disconnected
777 * Calls connection manager specific method to disconnect DMA paths to
778 * the XDomain in question.
780 * Return: 0% in case of success and negative errno otherwise. In
781 * particular returns %-ENOTSUPP if the connection manager
782 * implementation does not support XDomains.
784 int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd)
786 if (!tb->cm_ops->disconnect_xdomain_paths)
789 return tb->cm_ops->disconnect_xdomain_paths(tb, xd);
792 static int disconnect_xdomain(struct device *dev, void *data)
794 struct tb_xdomain *xd;
795 struct tb *tb = data;
798 xd = tb_to_xdomain(dev);
799 if (xd && xd->tb == tb)
800 ret = tb_xdomain_disable_paths(xd);
806 * tb_domain_disconnect_all_paths() - Disconnect all paths for the domain
807 * @tb: Domain whose paths are disconnected
809 * This function can be used to disconnect all paths (PCIe, XDomain) for
810 * example in preparation for host NVM firmware upgrade. After this is
811 * called the paths cannot be established without resetting the switch.
813 * Return: %0 in case of success and negative errno otherwise.
815 int tb_domain_disconnect_all_paths(struct tb *tb)
819 ret = tb_domain_disconnect_pcie_paths(tb);
823 return bus_for_each_dev(&tb_bus_type, NULL, tb, disconnect_xdomain);
826 int tb_domain_init(void)
833 ret = tb_xdomain_init();
836 ret = bus_register(&tb_bus_type);
851 void tb_domain_exit(void)
853 bus_unregister(&tb_bus_type);
854 ida_destroy(&tb_domain_ida);