]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/usb/usbip/stub_main.c
Merge remote-tracking branches 'asoc/topic/tas6424', 'asoc/topic/tfa9879', 'asoc...
[mirror_ubuntu-focal-kernel.git] / drivers / usb / usbip / stub_main.c
CommitLineData
5fd54ace 1// SPDX-License-Identifier: GPL-2.0+
4d7b5c7f
TH
2/*
3 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4d7b5c7f
TH
4 */
5
7aaacb43 6#include <linux/string.h>
99c97852 7#include <linux/module.h>
a46034ca 8#include <linux/device.h>
4d7b5c7f
TH
9
10#include "usbip_common.h"
11#include "stub.h"
12
4d7b5c7f 13#define DRIVER_AUTHOR "Takahiro Hirofuchi"
64e62426 14#define DRIVER_DESC "USB/IP Host Driver"
4d7b5c7f 15
4d7b5c7f 16struct kmem_cache *stub_priv_cache;
4d7b5c7f
TH
17/*
18 * busid_tables defines matching busids that usbip can grab. A user can change
19 * dynamically what device is locally used and what device is exported to a
20 * remote host.
21 */
22#define MAX_BUSID 16
aa5873e9 23static struct bus_id_priv busid_table[MAX_BUSID];
4d7b5c7f
TH
24static spinlock_t busid_table_lock;
25
efad25e9 26static void init_busid_table(void)
27{
521e1e7c
KK
28 /*
29 * This also sets the bus_table[i].status to
30 * STUB_BUSID_OTHER, which is 0.
31 */
0a186be3 32 memset(busid_table, 0, sizeof(busid_table));
efad25e9 33
34 spin_lock_init(&busid_table_lock);
35}
36
41e02f01 37/*
38 * Find the index of the busid by name.
39 * Must be called with busid_table_lock held.
40 */
41static int get_busid_idx(const char *busid)
4d7b5c7f
TH
42{
43 int i;
41e02f01 44 int idx = -1;
4d7b5c7f 45
4d7b5c7f 46 for (i = 0; i < MAX_BUSID; i++)
aa5873e9
EK
47 if (busid_table[i].name[0])
48 if (!strncmp(busid_table[i].name, busid, BUSID_SIZE)) {
41e02f01 49 idx = i;
50 break;
4d7b5c7f 51 }
41e02f01 52 return idx;
4d7b5c7f
TH
53}
54
aa5873e9
EK
55struct bus_id_priv *get_busid_priv(const char *busid)
56{
41e02f01 57 int idx;
58 struct bus_id_priv *bid = NULL;
aa5873e9
EK
59
60 spin_lock(&busid_table_lock);
41e02f01 61 idx = get_busid_idx(busid);
62 if (idx >= 0)
63 bid = &(busid_table[idx]);
aa5873e9
EK
64 spin_unlock(&busid_table_lock);
65
41e02f01 66 return bid;
aa5873e9
EK
67}
68
4d7b5c7f
TH
69static int add_match_busid(char *busid)
70{
71 int i;
41e02f01 72 int ret = -1;
4d7b5c7f
TH
73
74 spin_lock(&busid_table_lock);
41e02f01 75 /* already registered? */
76 if (get_busid_idx(busid) >= 0) {
77 ret = 0;
78 goto out;
79 }
80
4d7b5c7f 81 for (i = 0; i < MAX_BUSID; i++)
aa5873e9 82 if (!busid_table[i].name[0]) {
96955ed6 83 strlcpy(busid_table[i].name, busid, BUSID_SIZE);
aa5873e9
EK
84 if ((busid_table[i].status != STUB_BUSID_ALLOC) &&
85 (busid_table[i].status != STUB_BUSID_REMOV))
86 busid_table[i].status = STUB_BUSID_ADDED;
41e02f01 87 ret = 0;
88 break;
4d7b5c7f 89 }
41e02f01 90
91out:
4d7b5c7f
TH
92 spin_unlock(&busid_table_lock);
93
41e02f01 94 return ret;
4d7b5c7f
TH
95}
96
aa5873e9 97int del_match_busid(char *busid)
4d7b5c7f 98{
41e02f01 99 int idx;
100 int ret = -1;
4d7b5c7f
TH
101
102 spin_lock(&busid_table_lock);
41e02f01 103 idx = get_busid_idx(busid);
104 if (idx < 0)
105 goto out;
106
107 /* found */
108 ret = 0;
109
110 if (busid_table[idx].status == STUB_BUSID_OTHER)
111 memset(busid_table[idx].name, 0, BUSID_SIZE);
112
113 if ((busid_table[idx].status != STUB_BUSID_OTHER) &&
114 (busid_table[idx].status != STUB_BUSID_ADDED))
115 busid_table[idx].status = STUB_BUSID_REMOV;
116
117out:
4d7b5c7f
TH
118 spin_unlock(&busid_table_lock);
119
41e02f01 120 return ret;
4d7b5c7f 121}
6c033b46 122
cc3d53de 123static ssize_t match_busid_show(struct device_driver *drv, char *buf)
aa5873e9
EK
124{
125 int i;
efad25e9 126 char *out = buf;
aa5873e9 127
efad25e9 128 spin_lock(&busid_table_lock);
129 for (i = 0; i < MAX_BUSID; i++)
130 if (busid_table[i].name[0])
131 out += sprintf(out, "%s ", busid_table[i].name);
132 spin_unlock(&busid_table_lock);
efad25e9 133 out += sprintf(out, "\n");
41e02f01 134
efad25e9 135 return out - buf;
aa5873e9 136}
4d7b5c7f 137
cc3d53de 138static ssize_t match_busid_store(struct device_driver *dev, const char *buf,
6c033b46 139 size_t count)
4d7b5c7f
TH
140{
141 int len;
e9133972 142 char busid[BUSID_SIZE];
4d7b5c7f
TH
143
144 if (count < 5)
145 return -EINVAL;
146
4d7b5c7f 147 /* busid needs to include \0 termination */
96955ed6
RS
148 len = strlcpy(busid, buf + 4, BUSID_SIZE);
149 if (sizeof(busid) <= len)
4d7b5c7f
TH
150 return -EINVAL;
151
4d7b5c7f 152 if (!strncmp(buf, "add ", 4)) {
2183b77e 153 if (add_match_busid(busid) < 0)
4d7b5c7f 154 return -ENOMEM;
2183b77e
KK
155
156 pr_debug("add busid %s\n", busid);
157 return count;
158 }
159
160 if (!strncmp(buf, "del ", 4)) {
161 if (del_match_busid(busid) < 0)
4d7b5c7f 162 return -ENODEV;
2183b77e
KK
163
164 pr_debug("del busid %s\n", busid);
165 return count;
41e02f01 166 }
2183b77e
KK
167
168 return -EINVAL;
4d7b5c7f 169}
cc3d53de 170static DRIVER_ATTR_RW(match_busid);
4d7b5c7f 171
a46034ca
VM
172static ssize_t rebind_store(struct device_driver *dev, const char *buf,
173 size_t count)
174{
175 int ret;
176 int len;
177 struct bus_id_priv *bid;
178
179 /* buf length should be less that BUSID_SIZE */
180 len = strnlen(buf, BUSID_SIZE);
181
182 if (!(len < BUSID_SIZE))
183 return -EINVAL;
184
185 bid = get_busid_priv(buf);
186 if (!bid)
187 return -ENODEV;
188
189 ret = device_attach(&bid->udev->dev);
190 if (ret < 0) {
191 dev_err(&bid->udev->dev, "rebind failed\n");
192 return ret;
193 }
194
195 return count;
196}
197
198static DRIVER_ATTR_WO(rebind);
199
4d7b5c7f
TH
200static struct stub_priv *stub_priv_pop_from_listhead(struct list_head *listhead)
201{
202 struct stub_priv *priv, *tmp;
203
204 list_for_each_entry_safe(priv, tmp, listhead, list) {
205 list_del(&priv->list);
206 return priv;
207 }
208
209 return NULL;
210}
211
212static struct stub_priv *stub_priv_pop(struct stub_device *sdev)
213{
214 unsigned long flags;
215 struct stub_priv *priv;
216
217 spin_lock_irqsave(&sdev->priv_lock, flags);
218
219 priv = stub_priv_pop_from_listhead(&sdev->priv_init);
41e02f01 220 if (priv)
221 goto done;
4d7b5c7f
TH
222
223 priv = stub_priv_pop_from_listhead(&sdev->priv_tx);
41e02f01 224 if (priv)
225 goto done;
4d7b5c7f
TH
226
227 priv = stub_priv_pop_from_listhead(&sdev->priv_free);
4d7b5c7f 228
41e02f01 229done:
4d7b5c7f 230 spin_unlock_irqrestore(&sdev->priv_lock, flags);
41e02f01 231
232 return priv;
4d7b5c7f
TH
233}
234
235void stub_device_cleanup_urbs(struct stub_device *sdev)
236{
237 struct stub_priv *priv;
41e02f01 238 struct urb *urb;
4d7b5c7f 239
248a2204 240 dev_dbg(&sdev->udev->dev, "Stub device cleaning up urbs\n");
4d7b5c7f
TH
241
242 while ((priv = stub_priv_pop(sdev))) {
41e02f01 243 urb = priv->urb;
248a2204
SK
244 dev_dbg(&sdev->udev->dev, "free urb seqnum %lu\n",
245 priv->seqnum);
4d7b5c7f
TH
246 usb_kill_urb(urb);
247
248 kmem_cache_free(stub_priv_cache, priv);
249
06dde506 250 kfree(urb->transfer_buffer);
b3b51417
MG
251 urb->transfer_buffer = NULL;
252
06dde506 253 kfree(urb->setup_packet);
b3b51417
MG
254 urb->setup_packet = NULL;
255
4d7b5c7f
TH
256 usb_free_urb(urb);
257 }
258}
259
27ed5da0 260static int __init usbip_host_init(void)
4d7b5c7f
TH
261{
262 int ret;
263
737912e1 264 init_busid_table();
7d4de89f 265
737912e1 266 stub_priv_cache = KMEM_CACHE(stub_priv, SLAB_HWCACHE_ALIGN);
4d7b5c7f 267 if (!stub_priv_cache) {
41e02f01 268 pr_err("kmem_cache_create failed\n");
4d7b5c7f
TH
269 return -ENOMEM;
270 }
271
b7945b77 272 ret = usb_register_device_driver(&stub_driver, THIS_MODULE);
1583aeb5 273 if (ret) {
1a4b6f66 274 pr_err("usb_register failed %d\n", ret);
41e02f01 275 goto err_usb_register;
4d7b5c7f
TH
276 }
277
4d7b5c7f
TH
278 ret = driver_create_file(&stub_driver.drvwrap.driver,
279 &driver_attr_match_busid);
1583aeb5 280 if (ret) {
41e02f01 281 pr_err("driver_create_file failed\n");
282 goto err_create_file;
4d7b5c7f
TH
283 }
284
a46034ca
VM
285 ret = driver_create_file(&stub_driver.drvwrap.driver,
286 &driver_attr_rebind);
287 if (ret) {
288 pr_err("driver_create_file failed\n");
289 goto err_create_file;
290 }
291
4d7b5c7f 292 return ret;
41e02f01 293
294err_create_file:
b7945b77 295 usb_deregister_device_driver(&stub_driver);
41e02f01 296err_usb_register:
4d7b5c7f
TH
297 kmem_cache_destroy(stub_priv_cache);
298 return ret;
299}
300
27ed5da0 301static void __exit usbip_host_exit(void)
4d7b5c7f
TH
302{
303 driver_remove_file(&stub_driver.drvwrap.driver,
304 &driver_attr_match_busid);
305
a46034ca
VM
306 driver_remove_file(&stub_driver.drvwrap.driver,
307 &driver_attr_rebind);
308
4d7b5c7f
TH
309 /*
310 * deregister() calls stub_disconnect() for all devices. Device
311 * specific data is cleared in stub_disconnect().
312 */
b7945b77 313 usb_deregister_device_driver(&stub_driver);
4d7b5c7f
TH
314
315 kmem_cache_destroy(stub_priv_cache);
316}
317
27ed5da0 318module_init(usbip_host_init);
319module_exit(usbip_host_exit);
4d7b5c7f
TH
320
321MODULE_AUTHOR(DRIVER_AUTHOR);
322MODULE_DESCRIPTION(DRIVER_DESC);
323MODULE_LICENSE("GPL");