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,
21 #include "usbip_common.h"
24 /* Version Information */
25 #define DRIVER_VERSION "1.0"
26 #define DRIVER_AUTHOR "Takahiro Hirofuchi"
27 #define DRIVER_DESC "Stub Driver for USB/IP"
29 /* stub_priv is allocated from stub_priv_cache */
30 struct kmem_cache
*stub_priv_cache
;
32 /*-------------------------------------------------------------------------*/
34 /* Define sysfs entries for the usbip driver */
38 * busid_tables defines matching busids that usbip can grab. A user can change
39 * dynamically what device is locally used and what device is exported to a
44 static char busid_table
[MAX_BUSID
][BUSID_SIZE
];
45 static spinlock_t busid_table_lock
;
48 int match_busid(const char *busid
)
52 spin_lock(&busid_table_lock
);
54 for (i
= 0; i
< MAX_BUSID
; i
++)
55 if (busid_table
[i
][0])
56 if (!strncmp(busid_table
[i
], busid
, BUSID_SIZE
)) {
57 /* already registerd */
58 spin_unlock(&busid_table_lock
);
62 spin_unlock(&busid_table_lock
);
67 static ssize_t
show_match_busid(struct device_driver
*drv
, char *buf
)
72 spin_lock(&busid_table_lock
);
74 for (i
= 0; i
< MAX_BUSID
; i
++)
75 if (busid_table
[i
][0])
76 out
+= sprintf(out
, "%s ", busid_table
[i
]);
78 spin_unlock(&busid_table_lock
);
80 out
+= sprintf(out
, "\n");
85 static int add_match_busid(char *busid
)
89 if (!match_busid(busid
))
92 spin_lock(&busid_table_lock
);
94 for (i
= 0; i
< MAX_BUSID
; i
++)
95 if (!busid_table
[i
][0]) {
96 strncpy(busid_table
[i
], busid
, BUSID_SIZE
);
97 spin_unlock(&busid_table_lock
);
101 spin_unlock(&busid_table_lock
);
106 static int del_match_busid(char *busid
)
110 spin_lock(&busid_table_lock
);
112 for (i
= 0; i
< MAX_BUSID
; i
++)
113 if (!strncmp(busid_table
[i
], busid
, BUSID_SIZE
)) {
115 memset(busid_table
[i
], 0, BUSID_SIZE
);
116 spin_unlock(&busid_table_lock
);
120 spin_unlock(&busid_table_lock
);
125 static ssize_t
store_match_busid(struct device_driver
*dev
, const char *buf
,
129 char busid
[BUSID_SIZE
];
134 /* strnlen() does not include \0 */
135 len
= strnlen(buf
+ 4, BUSID_SIZE
);
137 /* busid needs to include \0 termination */
138 if (!(len
< BUSID_SIZE
))
141 strncpy(busid
, buf
+ 4, BUSID_SIZE
);
144 if (!strncmp(buf
, "add ", 4)) {
145 if (add_match_busid(busid
) < 0)
148 usbip_udbg("add busid %s\n", busid
);
151 } else if (!strncmp(buf
, "del ", 4)) {
152 if (del_match_busid(busid
) < 0)
155 usbip_udbg("del busid %s\n", busid
);
162 static DRIVER_ATTR(match_busid
, S_IRUSR
|S_IWUSR
, show_match_busid
,
167 /*-------------------------------------------------------------------------*/
169 /* Cleanup functions used to free private data */
171 static struct stub_priv
*stub_priv_pop_from_listhead(struct list_head
*listhead
)
173 struct stub_priv
*priv
, *tmp
;
175 list_for_each_entry_safe(priv
, tmp
, listhead
, list
) {
176 list_del(&priv
->list
);
183 static struct stub_priv
*stub_priv_pop(struct stub_device
*sdev
)
186 struct stub_priv
*priv
;
188 spin_lock_irqsave(&sdev
->priv_lock
, flags
);
190 priv
= stub_priv_pop_from_listhead(&sdev
->priv_init
);
192 spin_unlock_irqrestore(&sdev
->priv_lock
, flags
);
196 priv
= stub_priv_pop_from_listhead(&sdev
->priv_tx
);
198 spin_unlock_irqrestore(&sdev
->priv_lock
, flags
);
202 priv
= stub_priv_pop_from_listhead(&sdev
->priv_free
);
204 spin_unlock_irqrestore(&sdev
->priv_lock
, flags
);
208 spin_unlock_irqrestore(&sdev
->priv_lock
, flags
);
212 void stub_device_cleanup_urbs(struct stub_device
*sdev
)
214 struct stub_priv
*priv
;
216 usbip_udbg("free sdev %p\n", sdev
);
218 while ((priv
= stub_priv_pop(sdev
))) {
219 struct urb
*urb
= priv
->urb
;
221 usbip_udbg(" free urb %p\n", urb
);
224 kmem_cache_free(stub_priv_cache
, priv
);
226 if (urb
->transfer_buffer
!= NULL
)
227 kfree(urb
->transfer_buffer
);
229 if (urb
->setup_packet
!= NULL
)
230 kfree(urb
->setup_packet
);
237 /*-------------------------------------------------------------------------*/
239 static int __init
usb_stub_init(void)
243 stub_priv_cache
= kmem_cache_create("stub_priv",
244 sizeof(struct stub_priv
), 0,
245 SLAB_HWCACHE_ALIGN
, NULL
);
247 if (!stub_priv_cache
) {
248 printk(KERN_ERR KBUILD_MODNAME
249 ": create stub_priv_cache error\n");
253 ret
= usb_register(&stub_driver
);
255 printk(KERN_ERR KBUILD_MODNAME
": usb_register failed %d\n",
257 goto error_usb_register
;
260 printk(KERN_INFO KBUILD_MODNAME
":"
261 DRIVER_DESC
":" DRIVER_VERSION
"\n");
263 memset(busid_table
, 0, sizeof(busid_table
));
264 spin_lock_init(&busid_table_lock
);
266 ret
= driver_create_file(&stub_driver
.drvwrap
.driver
,
267 &driver_attr_match_busid
);
270 printk(KERN_ERR KBUILD_MODNAME
": create driver sysfs\n");
271 goto error_create_file
;
276 usb_deregister(&stub_driver
);
278 kmem_cache_destroy(stub_priv_cache
);
282 static void __exit
usb_stub_exit(void)
284 driver_remove_file(&stub_driver
.drvwrap
.driver
,
285 &driver_attr_match_busid
);
288 * deregister() calls stub_disconnect() for all devices. Device
289 * specific data is cleared in stub_disconnect().
291 usb_deregister(&stub_driver
);
293 kmem_cache_destroy(stub_priv_cache
);
296 module_init(usb_stub_init
);
297 module_exit(usb_stub_exit
);
299 MODULE_AUTHOR(DRIVER_AUTHOR
);
300 MODULE_DESCRIPTION(DRIVER_DESC
);
301 MODULE_LICENSE("GPL");