blob: 0b199a2664c009630f0772fc82e752fc04ba252d [file] [log] [blame]
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -06001/*
2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
Igor Kotrasinskic7af4c22016-03-08 21:48:57 +01003 * Copyright (C) 2015-2016 Samsung Electronics
4 * Krzysztof Opasiak <k.opasiak@samsung.com>
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -06005 *
6 * This is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 * USA.
20 */
21
matt mooney7aaacb42011-05-11 22:33:43 -070022#ifndef __USBIP_COMMON_H
23#define __USBIP_COMMON_H
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060024
matt mooney4980d962011-05-06 03:47:45 -070025#include <linux/compiler.h>
matt mooney7aaacb42011-05-11 22:33:43 -070026#include <linux/device.h>
27#include <linux/interrupt.h>
28#include <linux/net.h>
29#include <linux/printk.h>
30#include <linux/spinlock.h>
31#include <linux/types.h>
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060032#include <linux/usb.h>
matt mooney7aaacb42011-05-11 22:33:43 -070033#include <linux/wait.h>
Valentina Manea96c27372014-08-20 07:31:00 +030034#include <uapi/linux/usbip.h>
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060035
matt mooney6973c6f2011-05-11 01:54:14 -070036#define USBIP_VERSION "1.0.0"
37
matt mooney1a4b6f62011-05-19 16:47:32 -070038#undef pr_fmt
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060039
matt mooney1a4b6f62011-05-19 16:47:32 -070040#ifdef DEBUG
41#define pr_fmt(fmt) KBUILD_MODNAME ": %s:%d: " fmt, __func__, __LINE__
matt mooney981f30c2011-05-11 01:54:13 -070042#else
matt mooney1a4b6f62011-05-19 16:47:32 -070043#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
44#endif
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060045
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060046enum {
47 usbip_debug_xmit = (1 << 0),
48 usbip_debug_sysfs = (1 << 1),
49 usbip_debug_urb = (1 << 2),
50 usbip_debug_eh = (1 << 3),
51
52 usbip_debug_stub_cmp = (1 << 8),
53 usbip_debug_stub_dev = (1 << 9),
54 usbip_debug_stub_rx = (1 << 10),
55 usbip_debug_stub_tx = (1 << 11),
56
57 usbip_debug_vhci_rh = (1 << 8),
58 usbip_debug_vhci_hc = (1 << 9),
59 usbip_debug_vhci_rx = (1 << 10),
60 usbip_debug_vhci_tx = (1 << 11),
61 usbip_debug_vhci_sysfs = (1 << 12)
62};
63
Brian G. Merrellb8868e42009-07-21 00:46:13 -060064#define usbip_dbg_flag_xmit (usbip_debug_flag & usbip_debug_xmit)
65#define usbip_dbg_flag_vhci_rh (usbip_debug_flag & usbip_debug_vhci_rh)
66#define usbip_dbg_flag_vhci_hc (usbip_debug_flag & usbip_debug_vhci_hc)
67#define usbip_dbg_flag_vhci_rx (usbip_debug_flag & usbip_debug_vhci_rx)
68#define usbip_dbg_flag_vhci_tx (usbip_debug_flag & usbip_debug_vhci_tx)
69#define usbip_dbg_flag_stub_rx (usbip_debug_flag & usbip_debug_stub_rx)
70#define usbip_dbg_flag_stub_tx (usbip_debug_flag & usbip_debug_stub_tx)
matt mooney87352762011-05-19 21:36:56 -070071#define usbip_dbg_flag_vhci_sysfs (usbip_debug_flag & usbip_debug_vhci_sysfs)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060072
73extern unsigned long usbip_debug_flag;
74extern struct device_attribute dev_attr_usbip_debug;
75
Brian G. Merrellb8868e42009-07-21 00:46:13 -060076#define usbip_dbg_with_flag(flag, fmt, args...) \
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060077 do { \
78 if (flag & usbip_debug_flag) \
matt mooney1a4b6f62011-05-19 16:47:32 -070079 pr_debug(fmt, ##args); \
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060080 } while (0)
81
matt mooney4980d962011-05-06 03:47:45 -070082#define usbip_dbg_sysfs(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -060083 usbip_dbg_with_flag(usbip_debug_sysfs, fmt , ##args)
matt mooney4980d962011-05-06 03:47:45 -070084#define usbip_dbg_xmit(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -060085 usbip_dbg_with_flag(usbip_debug_xmit, fmt , ##args)
matt mooney4980d962011-05-06 03:47:45 -070086#define usbip_dbg_urb(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -060087 usbip_dbg_with_flag(usbip_debug_urb, fmt , ##args)
matt mooney4980d962011-05-06 03:47:45 -070088#define usbip_dbg_eh(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -060089 usbip_dbg_with_flag(usbip_debug_eh, fmt , ##args)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060090
Brian G. Merrellb8868e42009-07-21 00:46:13 -060091#define usbip_dbg_vhci_rh(fmt, args...) \
92 usbip_dbg_with_flag(usbip_debug_vhci_rh, fmt , ##args)
93#define usbip_dbg_vhci_hc(fmt, args...) \
94 usbip_dbg_with_flag(usbip_debug_vhci_hc, fmt , ##args)
95#define usbip_dbg_vhci_rx(fmt, args...) \
96 usbip_dbg_with_flag(usbip_debug_vhci_rx, fmt , ##args)
97#define usbip_dbg_vhci_tx(fmt, args...) \
98 usbip_dbg_with_flag(usbip_debug_vhci_tx, fmt , ##args)
matt mooney4980d962011-05-06 03:47:45 -070099#define usbip_dbg_vhci_sysfs(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600100 usbip_dbg_with_flag(usbip_debug_vhci_sysfs, fmt , ##args)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600101
matt mooney4980d962011-05-06 03:47:45 -0700102#define usbip_dbg_stub_cmp(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600103 usbip_dbg_with_flag(usbip_debug_stub_cmp, fmt , ##args)
matt mooney4980d962011-05-06 03:47:45 -0700104#define usbip_dbg_stub_rx(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600105 usbip_dbg_with_flag(usbip_debug_stub_rx, fmt , ##args)
matt mooney4980d962011-05-06 03:47:45 -0700106#define usbip_dbg_stub_tx(fmt, args...) \
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600107 usbip_dbg_with_flag(usbip_debug_stub_tx, fmt , ##args)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600108
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600109/*
matt mooneyb7d27ea2011-05-19 21:37:02 -0700110 * USB/IP request headers
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600111 *
matt mooneyb7d27ea2011-05-19 21:37:02 -0700112 * Each request is transferred across the network to its counterpart, which
113 * facilitates the normal USB communication. The values contained in the headers
114 * are basically the same as in a URB. Currently, four request types are
115 * defined:
116 *
117 * - USBIP_CMD_SUBMIT: a USB request block, corresponds to usb_submit_urb()
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600118 * (client to server)
matt mooneyb7d27ea2011-05-19 21:37:02 -0700119 *
120 * - USBIP_RET_SUBMIT: the result of USBIP_CMD_SUBMIT
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600121 * (server to client)
122 *
matt mooneyb7d27ea2011-05-19 21:37:02 -0700123 * - USBIP_CMD_UNLINK: an unlink request of a pending USBIP_CMD_SUBMIT,
124 * corresponds to usb_unlink_urb()
125 * (client to server)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600126 *
matt mooneyb7d27ea2011-05-19 21:37:02 -0700127 * - USBIP_RET_UNLINK: the result of USBIP_CMD_UNLINK
128 * (server to client)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600129 *
130 */
matt mooneyb7d27ea2011-05-19 21:37:02 -0700131#define USBIP_CMD_SUBMIT 0x0001
Alexander Thomas7518b9b2011-09-19 16:56:51 +0200132#define USBIP_CMD_UNLINK 0x0002
133#define USBIP_RET_SUBMIT 0x0003
matt mooneyb7d27ea2011-05-19 21:37:02 -0700134#define USBIP_RET_UNLINK 0x0004
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600135
Alexander Thomas7518b9b2011-09-19 16:56:51 +0200136#define USBIP_DIR_OUT 0x00
137#define USBIP_DIR_IN 0x01
matt mooneyb7d27ea2011-05-19 21:37:02 -0700138
Malte Leip616ba122019-04-14 12:00:12 +0200139/*
140 * Arbitrary limit for the maximum number of isochronous packets in an URB,
141 * compare for example the uhci_submit_isochronous function in
142 * drivers/usb/host/uhci-q.c
143 */
144#define USBIP_MAX_ISO_PACKETS 1024
145
matt mooneyb7d27ea2011-05-19 21:37:02 -0700146/**
147 * struct usbip_header_basic - data pertinent to every request
148 * @command: the usbip request type
149 * @seqnum: sequential number that identifies requests; incremented per
150 * connection
151 * @devid: specifies a remote USB device uniquely instead of busnum and devnum;
152 * in the stub driver, this value is ((busnum << 16) | devnum)
153 * @direction: direction of the transfer
154 * @ep: endpoint number
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600155 */
156struct usbip_header_basic {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600157 __u32 command;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600158 __u32 seqnum;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600159 __u32 devid;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600160 __u32 direction;
matt mooneyb7d27ea2011-05-19 21:37:02 -0700161 __u32 ep;
matt mooney4980d962011-05-06 03:47:45 -0700162} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600163
matt mooneyb7d27ea2011-05-19 21:37:02 -0700164/**
165 * struct usbip_header_cmd_submit - USBIP_CMD_SUBMIT packet header
166 * @transfer_flags: URB flags
167 * @transfer_buffer_length: the data size for (in) or (out) transfer
168 * @start_frame: initial frame for isochronous or interrupt transfers
169 * @number_of_packets: number of isochronous packets
170 * @interval: maximum time for the request on the server-side host controller
171 * @setup: setup data for a control request
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600172 */
173struct usbip_header_cmd_submit {
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600174 __u32 transfer_flags;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600175 __s32 transfer_buffer_length;
176
177 /* it is difficult for usbip to sync frames (reserved only?) */
178 __s32 start_frame;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600179 __s32 number_of_packets;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600180 __s32 interval;
181
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600182 unsigned char setup[8];
matt mooney4980d962011-05-06 03:47:45 -0700183} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600184
matt mooneyb7d27ea2011-05-19 21:37:02 -0700185/**
186 * struct usbip_header_ret_submit - USBIP_RET_SUBMIT packet header
187 * @status: return status of a non-iso request
188 * @actual_length: number of bytes transferred
189 * @start_frame: initial frame for isochronous or interrupt transfers
190 * @number_of_packets: number of isochronous packets
191 * @error_count: number of errors for isochronous transfers
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600192 */
193struct usbip_header_ret_submit {
194 __s32 status;
matt mooneyb7d27ea2011-05-19 21:37:02 -0700195 __s32 actual_length;
196 __s32 start_frame;
197 __s32 number_of_packets;
198 __s32 error_count;
matt mooney4980d962011-05-06 03:47:45 -0700199} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600200
matt mooneyb7d27ea2011-05-19 21:37:02 -0700201/**
202 * struct usbip_header_cmd_unlink - USBIP_CMD_UNLINK packet header
203 * @seqnum: the URB seqnum to unlink
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600204 */
205struct usbip_header_cmd_unlink {
matt mooneyb7d27ea2011-05-19 21:37:02 -0700206 __u32 seqnum;
matt mooney4980d962011-05-06 03:47:45 -0700207} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600208
matt mooneyb7d27ea2011-05-19 21:37:02 -0700209/**
210 * struct usbip_header_ret_unlink - USBIP_RET_UNLINK packet header
211 * @status: return status of the request
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600212 */
213struct usbip_header_ret_unlink {
214 __s32 status;
matt mooney4980d962011-05-06 03:47:45 -0700215} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600216
matt mooneyb7d27ea2011-05-19 21:37:02 -0700217/**
218 * struct usbip_header - common header for all usbip packets
219 * @base: the basic header
220 * @u: packet type dependent header
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600221 */
222struct usbip_header {
223 struct usbip_header_basic base;
224
225 union {
226 struct usbip_header_cmd_submit cmd_submit;
227 struct usbip_header_ret_submit ret_submit;
228 struct usbip_header_cmd_unlink cmd_unlink;
229 struct usbip_header_ret_unlink ret_unlink;
230 } u;
matt mooney4980d962011-05-06 03:47:45 -0700231} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600232
matt mooneyb7d27ea2011-05-19 21:37:02 -0700233/*
234 * This is the same as usb_iso_packet_descriptor but packed for pdu.
235 */
236struct usbip_iso_packet_descriptor {
237 __u32 offset;
238 __u32 length; /* expected length */
239 __u32 actual_length;
240 __u32 status;
241} __packed;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600242
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600243enum usbip_side {
244 USBIP_VHCI,
245 USBIP_STUB,
Igor Kotrasinskic7af4c22016-03-08 21:48:57 +0100246 USBIP_VUDC,
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600247};
248
matt mooneyb7d27ea2011-05-19 21:37:02 -0700249/* event handler */
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600250#define USBIP_EH_SHUTDOWN (1 << 0)
251#define USBIP_EH_BYE (1 << 1)
252#define USBIP_EH_RESET (1 << 2)
253#define USBIP_EH_UNUSABLE (1 << 3)
254
Alexander Popov134a9262016-05-20 12:37:28 +0300255#define SDEV_EVENT_REMOVED (USBIP_EH_SHUTDOWN | USBIP_EH_BYE)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600256#define SDEV_EVENT_DOWN (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
257#define SDEV_EVENT_ERROR_TCP (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
258#define SDEV_EVENT_ERROR_SUBMIT (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
259#define SDEV_EVENT_ERROR_MALLOC (USBIP_EH_SHUTDOWN | USBIP_EH_UNUSABLE)
260
Igor Kotrasinskic7af4c22016-03-08 21:48:57 +0100261#define VUDC_EVENT_REMOVED (USBIP_EH_SHUTDOWN | USBIP_EH_RESET | USBIP_EH_BYE)
262#define VUDC_EVENT_DOWN (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
263#define VUDC_EVENT_ERROR_TCP (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
264/* catastrophic emulated usb error */
265#define VUDC_EVENT_ERROR_USB (USBIP_EH_SHUTDOWN | USBIP_EH_UNUSABLE)
266#define VUDC_EVENT_ERROR_MALLOC (USBIP_EH_SHUTDOWN | USBIP_EH_UNUSABLE)
267
Shuah Khanc0182ba2018-04-02 14:52:32 -0600268#define VDEV_EVENT_REMOVED (USBIP_EH_SHUTDOWN | USBIP_EH_RESET | USBIP_EH_BYE)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600269#define VDEV_EVENT_DOWN (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
270#define VDEV_EVENT_ERROR_TCP (USBIP_EH_SHUTDOWN | USBIP_EH_RESET)
271#define VDEV_EVENT_ERROR_MALLOC (USBIP_EH_SHUTDOWN | USBIP_EH_UNUSABLE)
272
matt mooneyb7d27ea2011-05-19 21:37:02 -0700273/* a common structure for stub_device and vhci_device */
274struct usbip_device {
275 enum usbip_side side;
Shuah Khancd84ec92014-03-03 16:38:44 -0700276 enum usbip_device_status status;
matt mooneyb7d27ea2011-05-19 21:37:02 -0700277
278 /* lock for status */
279 spinlock_t lock;
280
Shuah Khance601a02017-12-07 14:16:49 -0700281 int sockfd;
matt mooneyb7d27ea2011-05-19 21:37:02 -0700282 struct socket *tcp_socket;
283
284 struct task_struct *tcp_rx;
285 struct task_struct *tcp_tx;
286
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600287 unsigned long event;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600288 wait_queue_head_t eh_waitq;
289
290 struct eh_ops {
291 void (*shutdown)(struct usbip_device *);
292 void (*reset)(struct usbip_device *);
293 void (*unusable)(struct usbip_device *);
294 } eh_ops;
295};
296
Oleg Nesterovba46ce32012-03-13 19:07:18 +0100297#define kthread_get_run(threadfn, data, namefmt, ...) \
298({ \
299 struct task_struct *__k \
300 = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
301 if (!IS_ERR(__k)) { \
302 get_task_struct(__k); \
303 wake_up_process(__k); \
304 } \
305 __k; \
306})
307
308#define kthread_stop_put(k) \
309 do { \
310 kthread_stop(k); \
311 put_task_struct(k); \
312 } while (0)
313
matt mooneyb7d27ea2011-05-19 21:37:02 -0700314/* usbip_common.c */
315void usbip_dump_urb(struct urb *purb);
316void usbip_dump_header(struct usbip_header *pdu);
317
Bart Westgeest5a08c522011-12-19 17:44:11 -0500318int usbip_recv(struct socket *sock, void *buf, int size);
matt mooneyb7d27ea2011-05-19 21:37:02 -0700319
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600320void usbip_pack_pdu(struct usbip_header *pdu, struct urb *urb, int cmd,
matt mooney4980d962011-05-06 03:47:45 -0700321 int pack);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600322void usbip_header_correct_endian(struct usbip_header *pdu, int send);
matt mooneyb7d27ea2011-05-19 21:37:02 -0700323
Bart Westgeest36ac9b02012-10-10 13:34:25 -0400324struct usbip_iso_packet_descriptor*
325usbip_alloc_iso_desc_pdu(struct urb *urb, ssize_t *bufflen);
326
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600327/* some members of urb must be substituted before. */
328int usbip_recv_iso(struct usbip_device *ud, struct urb *urb);
Bart Westgeestac2b41a2012-01-23 10:55:46 -0500329void usbip_pad_iso(struct usbip_device *ud, struct urb *urb);
matt mooneyb7d27ea2011-05-19 21:37:02 -0700330int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600331
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600332/* usbip_event.c */
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900333int usbip_init_eh(void);
334void usbip_finish_eh(void);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600335int usbip_start_eh(struct usbip_device *ud);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600336void usbip_stop_eh(struct usbip_device *ud);
337void usbip_event_add(struct usbip_device *ud, unsigned long event);
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600338int usbip_event_happened(struct usbip_device *ud);
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900339int usbip_in_eh(struct task_struct *task);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600340
matt mooneyb7d27ea2011-05-19 21:37:02 -0700341static inline int interface_to_busnum(struct usb_interface *interface)
342{
343 struct usb_device *udev = interface_to_usbdev(interface);
Pawel Lebioda3eed8c02014-05-14 19:20:27 +0200344
matt mooneyb7d27ea2011-05-19 21:37:02 -0700345 return udev->bus->busnum;
346}
347
348static inline int interface_to_devnum(struct usb_interface *interface)
349{
350 struct usb_device *udev = interface_to_usbdev(interface);
Pawel Lebioda3eed8c02014-05-14 19:20:27 +0200351
matt mooneyb7d27ea2011-05-19 21:37:02 -0700352 return udev->devnum;
353}
354
matt mooney7aaacb42011-05-11 22:33:43 -0700355#endif /* __USBIP_COMMON_H */