2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4 * This is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 #include <linux/string.h>
21 #include <linux/module.h>
23 #include "usbip_common.h"
26 #define DRIVER_AUTHOR "Takahiro Hirofuchi"
27 #define DRIVER_DESC "USB/IP Host Driver"
29 struct kmem_cache
*stub_priv_cache
;
31 * busid_tables defines matching busids that usbip can grab. A user can change
32 * dynamically what device is locally used and what device is exported to a
36 static struct bus_id_priv busid_table
[MAX_BUSID
];
37 static spinlock_t busid_table_lock
;
39 static void init_busid_table(void)
43 memset(busid_table
, 0, sizeof(busid_table
));
44 for (i
= 0; i
< MAX_BUSID
; i
++)
45 busid_table
[i
].status
= STUB_BUSID_OTHER
;
47 spin_lock_init(&busid_table_lock
);
51 * Find the index of the busid by name.
52 * Must be called with busid_table_lock held.
54 static int get_busid_idx(const char *busid
)
59 for (i
= 0; i
< MAX_BUSID
; i
++)
60 if (busid_table
[i
].name
[0])
61 if (!strncmp(busid_table
[i
].name
, busid
, BUSID_SIZE
)) {
68 struct bus_id_priv
*get_busid_priv(const char *busid
)
71 struct bus_id_priv
*bid
= NULL
;
73 spin_lock(&busid_table_lock
);
74 idx
= get_busid_idx(busid
);
76 bid
= &(busid_table
[idx
]);
77 spin_unlock(&busid_table_lock
);
82 static int add_match_busid(char *busid
)
87 spin_lock(&busid_table_lock
);
88 /* already registered? */
89 if (get_busid_idx(busid
) >= 0) {
94 for (i
= 0; i
< MAX_BUSID
; i
++)
95 if (!busid_table
[i
].name
[0]) {
96 strncpy(busid_table
[i
].name
, busid
, BUSID_SIZE
);
97 if ((busid_table
[i
].status
!= STUB_BUSID_ALLOC
) &&
98 (busid_table
[i
].status
!= STUB_BUSID_REMOV
))
99 busid_table
[i
].status
= STUB_BUSID_ADDED
;
105 spin_unlock(&busid_table_lock
);
110 int del_match_busid(char *busid
)
115 spin_lock(&busid_table_lock
);
116 idx
= get_busid_idx(busid
);
123 if (busid_table
[idx
].status
== STUB_BUSID_OTHER
)
124 memset(busid_table
[idx
].name
, 0, BUSID_SIZE
);
126 if ((busid_table
[idx
].status
!= STUB_BUSID_OTHER
) &&
127 (busid_table
[idx
].status
!= STUB_BUSID_ADDED
))
128 busid_table
[idx
].status
= STUB_BUSID_REMOV
;
131 spin_unlock(&busid_table_lock
);
136 static ssize_t
show_match_busid(struct device_driver
*drv
, char *buf
)
141 spin_lock(&busid_table_lock
);
142 for (i
= 0; i
< MAX_BUSID
; i
++)
143 if (busid_table
[i
].name
[0])
144 out
+= sprintf(out
, "%s ", busid_table
[i
].name
);
145 spin_unlock(&busid_table_lock
);
146 out
+= sprintf(out
, "\n");
151 static ssize_t
store_match_busid(struct device_driver
*dev
, const char *buf
,
155 char busid
[BUSID_SIZE
];
160 /* strnlen() does not include \0 */
161 len
= strnlen(buf
+ 4, BUSID_SIZE
);
163 /* busid needs to include \0 termination */
164 if (!(len
< BUSID_SIZE
))
167 strncpy(busid
, buf
+ 4, BUSID_SIZE
);
169 if (!strncmp(buf
, "add ", 4)) {
170 if (add_match_busid(busid
) < 0) {
173 pr_debug("add busid %s\n", busid
);
176 } else if (!strncmp(buf
, "del ", 4)) {
177 if (del_match_busid(busid
) < 0) {
180 pr_debug("del busid %s\n", busid
);
187 static DRIVER_ATTR(match_busid
, S_IRUSR
| S_IWUSR
, show_match_busid
,
190 static struct stub_priv
*stub_priv_pop_from_listhead(struct list_head
*listhead
)
192 struct stub_priv
*priv
, *tmp
;
194 list_for_each_entry_safe(priv
, tmp
, listhead
, list
) {
195 list_del(&priv
->list
);
202 static struct stub_priv
*stub_priv_pop(struct stub_device
*sdev
)
205 struct stub_priv
*priv
;
207 spin_lock_irqsave(&sdev
->priv_lock
, flags
);
209 priv
= stub_priv_pop_from_listhead(&sdev
->priv_init
);
213 priv
= stub_priv_pop_from_listhead(&sdev
->priv_tx
);
217 priv
= stub_priv_pop_from_listhead(&sdev
->priv_free
);
220 spin_unlock_irqrestore(&sdev
->priv_lock
, flags
);
225 void stub_device_cleanup_urbs(struct stub_device
*sdev
)
227 struct stub_priv
*priv
;
230 dev_dbg(&sdev
->udev
->dev
, "free sdev %p\n", sdev
);
232 while ((priv
= stub_priv_pop(sdev
))) {
234 dev_dbg(&sdev
->udev
->dev
, "free urb %p\n", urb
);
237 kmem_cache_free(stub_priv_cache
, priv
);
239 kfree(urb
->transfer_buffer
);
240 kfree(urb
->setup_packet
);
245 static int __init
usbip_host_init(void)
249 stub_priv_cache
= KMEM_CACHE(stub_priv
, SLAB_HWCACHE_ALIGN
);
251 if (!stub_priv_cache
) {
252 pr_err("kmem_cache_create failed\n");
256 ret
= usb_register(&stub_driver
);
258 pr_err("usb_register failed %d\n", ret
);
259 goto err_usb_register
;
262 ret
= driver_create_file(&stub_driver
.drvwrap
.driver
,
263 &driver_attr_match_busid
);
265 pr_err("driver_create_file failed\n");
266 goto err_create_file
;
270 pr_info(DRIVER_DESC
" v" USBIP_VERSION
"\n");
274 usb_deregister(&stub_driver
);
276 kmem_cache_destroy(stub_priv_cache
);
280 static void __exit
usbip_host_exit(void)
282 driver_remove_file(&stub_driver
.drvwrap
.driver
,
283 &driver_attr_match_busid
);
286 * deregister() calls stub_disconnect() for all devices. Device
287 * specific data is cleared in stub_disconnect().
289 usb_deregister(&stub_driver
);
291 kmem_cache_destroy(stub_priv_cache
);
294 module_init(usbip_host_init
);
295 module_exit(usbip_host_exit
);
297 MODULE_AUTHOR(DRIVER_AUTHOR
);
298 MODULE_DESCRIPTION(DRIVER_DESC
);
299 MODULE_LICENSE("GPL");
300 MODULE_VERSION(USBIP_VERSION
);