1 | /** @file
|
---|
2 | * USBLib - Library for wrapping up the VBoxUSB functionality. (DEV,HDrv,Main)
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2016 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_usblib_h
|
---|
27 | #define ___VBox_usblib_h
|
---|
28 |
|
---|
29 | #include <VBox/cdefs.h>
|
---|
30 | #include <VBox/types.h>
|
---|
31 | #include <VBox/usb.h>
|
---|
32 | #include <VBox/usbfilter.h>
|
---|
33 | #include <iprt/ctype.h>
|
---|
34 | #include <iprt/string.h>
|
---|
35 |
|
---|
36 | #ifdef RT_OS_WINDOWS
|
---|
37 | # include <VBox/usblib-win.h>
|
---|
38 | #endif
|
---|
39 | #ifdef RT_OS_SOLARIS
|
---|
40 | # include <VBox/usblib-solaris.h>
|
---|
41 | #endif
|
---|
42 | #ifdef RT_OS_DARWIN
|
---|
43 | # include <VBox/usblib-darwin.h>
|
---|
44 | #endif
|
---|
45 | /** @todo merge the usblib-win.h interface into the darwin and linux ports where suitable. */
|
---|
46 |
|
---|
47 | RT_C_DECLS_BEGIN
|
---|
48 | /** @defgroup grp_usblib USBLib - USB Support Library
|
---|
49 | * This module implements the basic low-level OS interfaces and common USB code.
|
---|
50 | * @{
|
---|
51 | */
|
---|
52 |
|
---|
53 | #ifdef IN_RING3
|
---|
54 | /**
|
---|
55 | * Initializes the USBLib component.
|
---|
56 | *
|
---|
57 | * The USBLib keeps a per process connection to the kernel driver
|
---|
58 | * and all USBLib users within a process will share the same
|
---|
59 | * connection. USBLib does reference counting to make sure that
|
---|
60 | * the connection remains open until all users has called USBLibTerm().
|
---|
61 | *
|
---|
62 | * @returns VBox status code.
|
---|
63 | *
|
---|
64 | * @remark The users within the process are responsible for not calling
|
---|
65 | * this function at the same time (because I'm lazy).
|
---|
66 | */
|
---|
67 | USBLIB_DECL(int) USBLibInit(void);
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * Terminates the USBLib component.
|
---|
71 | *
|
---|
72 | * Must match successful USBLibInit calls.
|
---|
73 | *
|
---|
74 | * @returns VBox status code.
|
---|
75 | */
|
---|
76 | USBLIB_DECL(int) USBLibTerm(void);
|
---|
77 |
|
---|
78 | /**
|
---|
79 | * Adds a filter.
|
---|
80 | *
|
---|
81 | * This function will validate and transfer the specified filter
|
---|
82 | * to the kernel driver and make it start using it. The kernel
|
---|
83 | * driver will return a filter id that this function passes on
|
---|
84 | * to its caller.
|
---|
85 | *
|
---|
86 | * The kernel driver will associate the added filter with the
|
---|
87 | * calling process and automatically remove all filters when
|
---|
88 | * the process terminates the connection to it or dies.
|
---|
89 | *
|
---|
90 | * @returns Filter id for passing to USBLibRemoveFilter on success.
|
---|
91 | * @returns NULL on failure.
|
---|
92 | *
|
---|
93 | * @param pFilter The filter to add.
|
---|
94 | */
|
---|
95 | USBLIB_DECL(void *) USBLibAddFilter(PCUSBFILTER pFilter);
|
---|
96 |
|
---|
97 | /**
|
---|
98 | * Removes a filter.
|
---|
99 | *
|
---|
100 | * @param pvId The ID returned by USBLibAddFilter.
|
---|
101 | */
|
---|
102 | USBLIB_DECL(void) USBLibRemoveFilter(void *pvId);
|
---|
103 |
|
---|
104 | /**
|
---|
105 | * Calculate the hash of the serial string.
|
---|
106 | *
|
---|
107 | * 64bit FNV1a, chosen because it is designed to hash in to a power of two
|
---|
108 | * space, and is much quicker and simpler than, say, a half MD4.
|
---|
109 | *
|
---|
110 | * @returns the hash.
|
---|
111 | * @param pszSerial The serial string.
|
---|
112 | */
|
---|
113 | USBLIB_DECL(uint64_t) USBLibHashSerial(const char *pszSerial);
|
---|
114 |
|
---|
115 | #endif /* IN_RING3 */
|
---|
116 |
|
---|
117 | /**
|
---|
118 | * Purge string of non-UTF-8 encodings and control characters.
|
---|
119 | *
|
---|
120 | * Control characters creates problems when presented to the user and currently
|
---|
121 | * also when used in XML settings. So, we must purge them in the USB vendor,
|
---|
122 | * product, and serial number strings.
|
---|
123 | *
|
---|
124 | * @returns String length (excluding terminator).
|
---|
125 | * @param psz The string to purge.
|
---|
126 | */
|
---|
127 | DECLINLINE(size_t) USBLibPurgeEncoding(char *psz)
|
---|
128 | {
|
---|
129 | if (psz)
|
---|
130 | {
|
---|
131 | size_t offSrc;
|
---|
132 |
|
---|
133 | /* Beat it into valid UTF-8 encoding. */
|
---|
134 | RTStrPurgeEncoding(psz);
|
---|
135 |
|
---|
136 | /* Look for control characters. */
|
---|
137 | for (offSrc = 0; ; offSrc++)
|
---|
138 | {
|
---|
139 | char ch = psz[offSrc];
|
---|
140 | if (RT_UNLIKELY(RT_C_IS_CNTRL(ch) && ch != '\0'))
|
---|
141 | {
|
---|
142 | /* Found a control character! Replace tab by space and remove all others. */
|
---|
143 | size_t offDst = offSrc;
|
---|
144 | for (;; offSrc++)
|
---|
145 | {
|
---|
146 | ch = psz[offSrc];
|
---|
147 | if (RT_C_IS_CNTRL(ch) && ch != '\0')
|
---|
148 | {
|
---|
149 | if (ch == '\t')
|
---|
150 | ch = ' ';
|
---|
151 | else
|
---|
152 | continue;
|
---|
153 | }
|
---|
154 | psz[offDst++] = ch;
|
---|
155 | if (ch == '\0')
|
---|
156 | break;
|
---|
157 | }
|
---|
158 | return offDst;
|
---|
159 | }
|
---|
160 | if (ch == '\0')
|
---|
161 | break;
|
---|
162 | }
|
---|
163 | return offSrc;
|
---|
164 | }
|
---|
165 | return 0;
|
---|
166 | }
|
---|
167 |
|
---|
168 |
|
---|
169 | /** @} */
|
---|
170 | RT_C_DECLS_END
|
---|
171 |
|
---|
172 | #endif
|
---|
173 |
|
---|