Greg Kroah-Hartman | 5fd54ac | 2017-11-03 11:28:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2003-2008 Takahiro Hirofuchi |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
Tobias Klauser | 306dac6 | 2011-08-22 08:53:28 +0200 | [diff] [blame] | 6 | #ifndef __USBIP_STUB_H |
| 7 | #define __USBIP_STUB_H |
| 8 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 9 | #include <linux/list.h> |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 10 | #include <linux/slab.h> |
matt mooney | 7aaacb4 | 2011-05-11 22:33:43 -0700 | [diff] [blame] | 11 | #include <linux/spinlock.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/usb.h> |
| 14 | #include <linux/wait.h> |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 15 | |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 16 | #define STUB_BUSID_OTHER 0 |
| 17 | #define STUB_BUSID_REMOV 1 |
| 18 | #define STUB_BUSID_ADDED 2 |
| 19 | #define STUB_BUSID_ALLOC 3 |
| 20 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 21 | struct stub_device { |
Max Vozeler | 2d8f459 | 2011-01-12 15:01:59 +0200 | [diff] [blame] | 22 | struct usb_device *udev; |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 23 | |
| 24 | struct usbip_device ud; |
| 25 | __u32 devid; |
| 26 | |
| 27 | /* |
| 28 | * stub_priv preserves private data of each urb. |
| 29 | * It is allocated as stub_priv_cache and assigned to urb->context. |
| 30 | * |
| 31 | * stub_priv is always linked to any one of 3 lists; |
| 32 | * priv_init: linked to this until the comletion of a urb. |
| 33 | * priv_tx : linked to this after the completion of a urb. |
| 34 | * priv_free: linked to this after the sending of the result. |
| 35 | * |
| 36 | * Any of these list operations should be locked by priv_lock. |
| 37 | */ |
| 38 | spinlock_t priv_lock; |
| 39 | struct list_head priv_init; |
| 40 | struct list_head priv_tx; |
| 41 | struct list_head priv_free; |
| 42 | |
| 43 | /* see comments for unlinking in stub_rx.c */ |
| 44 | struct list_head unlink_tx; |
| 45 | struct list_head unlink_free; |
| 46 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 47 | wait_queue_head_t tx_waitq; |
| 48 | }; |
| 49 | |
| 50 | /* private data into urb->priv */ |
| 51 | struct stub_priv { |
| 52 | unsigned long seqnum; |
| 53 | struct list_head list; |
| 54 | struct stub_device *sdev; |
| 55 | struct urb *urb; |
| 56 | |
| 57 | int unlinking; |
| 58 | }; |
| 59 | |
| 60 | struct stub_unlink { |
| 61 | unsigned long seqnum; |
| 62 | struct list_head list; |
| 63 | __u32 status; |
| 64 | }; |
| 65 | |
matt mooney | 3e4fda9 | 2011-05-27 01:44:12 -0700 | [diff] [blame] | 66 | /* same as SYSFS_BUS_ID_SIZE */ |
| 67 | #define BUSID_SIZE 32 |
matt mooney | 8735276 | 2011-05-19 21:36:56 -0700 | [diff] [blame] | 68 | |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 69 | struct bus_id_priv { |
| 70 | char name[BUSID_SIZE]; |
| 71 | char status; |
| 72 | int interf_count; |
| 73 | struct stub_device *sdev; |
Valentina Manea | a46034c | 2014-03-08 14:53:33 +0200 | [diff] [blame] | 74 | struct usb_device *udev; |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 75 | char shutdown_busid; |
Shuah Khan (Samsung OSG) | 22076557 | 2018-05-14 20:49:58 -0600 | [diff] [blame^] | 76 | spinlock_t busid_lock; |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 77 | }; |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 78 | |
matt mooney | 499aaae | 2011-05-11 01:54:22 -0700 | [diff] [blame] | 79 | /* stub_priv is allocated from stub_priv_cache */ |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 80 | extern struct kmem_cache *stub_priv_cache; |
| 81 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 82 | /* stub_dev.c */ |
Valentina Manea | b7945b7 | 2014-01-23 23:12:29 +0200 | [diff] [blame] | 83 | extern struct usb_device_driver stub_driver; |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 84 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 85 | /* stub_main.c */ |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 86 | struct bus_id_priv *get_busid_priv(const char *busid); |
Shuah Khan (Samsung OSG) | 22076557 | 2018-05-14 20:49:58 -0600 | [diff] [blame^] | 87 | void put_busid_priv(struct bus_id_priv *bid); |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 88 | int del_match_busid(char *busid); |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 89 | void stub_device_cleanup_urbs(struct stub_device *sdev); |
matt mooney | 499aaae | 2011-05-11 01:54:22 -0700 | [diff] [blame] | 90 | |
| 91 | /* stub_rx.c */ |
| 92 | int stub_rx_loop(void *data); |
| 93 | |
| 94 | /* stub_tx.c */ |
| 95 | void stub_enqueue_ret_unlink(struct stub_device *sdev, __u32 seqnum, |
| 96 | __u32 status); |
| 97 | void stub_complete(struct urb *urb); |
| 98 | int stub_tx_loop(void *data); |
Tobias Klauser | 306dac6 | 2011-08-22 08:53:28 +0200 | [diff] [blame] | 99 | |
| 100 | #endif /* __USBIP_STUB_H */ |