VirtualBox

source: vbox/trunk/src/VBox/RDP/client/vrdp/vrdpusb.h@ 11610

Last change on this file since 11610 was 11610, checked in by vboxsync, 16 years ago

RDP/client: Enable building/packaging on solaris. Use vbox openssl lib, since the system openssl library may be incompatible.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.6 KB
Line 
1/** @file
2 *
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17 * Clara, CA 95054 USA or visit http://www.sun.com if you need
18 * additional information or have any questions.
19 */
20
21#ifndef __VRDPUSB__H
22#define __VRDPUSB__H
23
24#include <endian.h>
25#include <byteswap.h>
26
27#ifndef cpu_to_le16
28#if __BYTE_ORDER == __LITTLE_ENDIAN
29#define cpu_to_le16(_le16) (_le16)
30#elif __BYTE_ORDER == __BIG_ENDIAN
31#define cpu_to_le16(_le16) bswap_16(_le16)
32#else
33#error Unsupported host byte order!
34#endif
35#endif /* cpu_to_le16 */
36
37//#include <asm/byteorder.h>
38//#define cpu_to_le16 __cpu_to_le16
39
40#define uint8_t uint8
41#define uint16_t uint16
42#define uint32_t uint32
43#define uint64_t long long
44#define bool int
45#define false 0
46#define true 1
47
48#define OPSTATIC
49#ifdef RDPUSB_DEBUG
50#define LogFlow(a) printf a
51#define Log(a) printf a
52#define Log2(a) printf a
53#else
54#define LogFlow(a)
55#define Log(a)
56#define Log2(a)
57#endif
58
59#define LogRel(a) printf a
60
61/* Runtime wrappers. */
62#define RTMemAlloc xmalloc
63#define RTMemRealloc xrealloc
64#define RTMemFree xfree
65
66#define _1K 1024
67
68#define RT_LE2H_U16(_le16) (cpu_to_le16 (_le16))
69
70#define VINF_SUCCESS 0
71#define VERR_NO_MEMORY (-8)
72#define VERR_NOT_SUPPORTED (-37)
73#define VERR_ACCESS_DENIED (-38)
74#define VERR_VUSB_USBFS_PERMISSION (-2005)
75
76#define RT_SUCCESS(_rc) ((_rc) >= 0)
77
78#define RTFILE int
79#define RTCRITSECT void *
80
81#define Assert(_expr) do { \
82 if (!(_expr)) \
83 { \
84 Log(("Assertion failed: {%s}!!!\n", #_expr)); \
85 } \
86} while (0)
87
88#define AssertMsgFailed(_msg) do { \
89 Log(("Assertion failed msg:!!!\n")); \
90 Log(_msg); \
91} while (0)
92
93#define AssertReturn(_expr, _retval) do { \
94 if (!(_expr)) \
95 { \
96 Log(("Assertion failed: {%s}, returning 0x%08X!!!\n", #_expr, _retval)); \
97 return (_retval); \
98 } \
99} while (0)
100
101#define AssertRC(_rc) Assert(RT_SUCCESS(_rc))
102
103#define RT_FAILURE(_rc) (!RT_SUCCESS(_rc))
104
105#define NOREF(_a) ((void)_a)
106
107static inline int RTCritSectInit (RTCRITSECT *pCritSect)
108{
109 return VINF_SUCCESS;
110}
111
112static inline int RTCritSectDelete (RTCRITSECT *pCritSect)
113{
114 return VINF_SUCCESS;
115}
116
117static inline int RTCritSectEnter (RTCRITSECT *pCritSect)
118{
119 return VINF_SUCCESS;
120}
121
122static inline int RTCritSectLeave (RTCRITSECT *pCritSect)
123{
124 return VINF_SUCCESS;
125}
126
127static inline void *RTMemDupEx (const void *pvSrc, size_t cbSrc, size_t cbExtra)
128{
129 void *p = RTMemAlloc (cbSrc + cbExtra);
130
131 if (p)
132 {
133 memcpy (p, pvSrc, cbSrc);
134 memset ((char *)p + cbSrc, 0, cbExtra);
135 }
136
137 return p;
138}
139
140static inline void *RTMemAllocZ (size_t cb)
141{
142 void *p = RTMemAlloc (cb);
143
144 if (p)
145 {
146 memset (p, 0, cb);
147 }
148
149 return p;
150}
151
152static inline int RTStrToUInt32Ex (const char *pszValue, char **ppszNext, unsigned uBase, uint32_t *pu32)
153{
154 *pu32 = strtoul (pszValue, ppszNext, uBase);
155 return VINF_SUCCESS;
156}
157
158#define PRTSTREAM FILE *
159
160static inline int RTStrmOpen (const char *pszFileName, const char *pszMode, PRTSTREAM *ppStream)
161{
162 *ppStream = fopen (pszFileName, pszMode);
163
164 if (*ppStream)
165 {
166 return VINF_SUCCESS;
167 }
168
169 return VERR_NOT_SUPPORTED;
170}
171
172static inline int RTStrmClose (PRTSTREAM pStream)
173{
174 fclose (pStream);
175 return VINF_SUCCESS;
176}
177
178static inline int RTStrmGetLine (PRTSTREAM pStream, char *pszString, size_t cchString)
179{
180 if (fgets (pszString, cchString, pStream))
181 {
182 return VINF_SUCCESS;
183 }
184
185 return VERR_NOT_SUPPORTED;
186}
187
188static inline char *RTStrStripL (const char *psz)
189{
190 while (isspace (*psz))
191 psz++;
192 return (char *)psz;
193}
194
195#define NIL_RTFILE -1
196
197#define RTFILE_O_READWRITE 0x00000003
198#define RTFILE_O_OPEN 0x00000000
199#define RTFILE_O_DENY_NONE 0x00000000
200
201static inline int RTFileOpen (RTFILE *pFile, const char *pszFileName, unsigned fOpen)
202{
203 Assert (fOpen == RTFILE_O_READWRITE);
204
205 *pFile = open (pszFileName, O_RDWR, 00600);
206
207 if (*pFile != -1)
208 {
209 return VINF_SUCCESS;
210 }
211
212 return VERR_ACCESS_DENIED;
213}
214
215static inline int RTFileClose (RTFILE file)
216{
217 close (file);
218 return VINF_SUCCESS;
219}
220
221static inline uint64_t RTTimeMilliTS (void)
222{
223 struct timeval tv;
224 gettimeofday (&tv, NULL);
225 return (uint64_t)tv.tv_sec * (uint64_t)(1000)
226 + (uint64_t)(tv.tv_usec / 1000);
227}
228
229#define VRDP_USB_STATUS_SUCCESS 0
230#define VRDP_USB_STATUS_ACCESS_DENIED 1
231#define VRDP_USB_STATUS_DEVICE_REMOVED 2
232
233#define VRDP_USB_REAP_FLAG_CONTINUED (0)
234#define VRDP_USB_REAP_FLAG_LAST (1)
235
236#define VRDP_USB_CAPS_FLAG_ASYNC (0)
237#define VRDP_USB_CAPS_FLAG_POLL (1)
238
239#pragma pack(1)
240
241#include "vusb.h"
242
243typedef struct VUSBDEV
244{
245 char* pszName;
246 int request_detach;
247} VUSBDEV, *PVUSBDEV;
248
249typedef struct usb_proxy {
250 /* Note: the backend code assumes that the dev member is the first in the structure. */
251 VUSBDEV Dev;
252 /* 'union' because backend accesses the file handle as priv.File. */
253 union {
254 void *pv;
255 int File;
256 } Backend;
257
258 struct usb_proxy *next;
259 struct usb_proxy *prev;
260
261 uint32_t devid;
262
263 PVUSBURB urbs;
264
265 int iActiveCfg;
266 int cIgnoreSetConfigs;
267} *PUSBPROXYDEV;
268
269typedef struct vusb_setup {
270 uint8_t bmRequestType;
271 uint8_t bRequest;
272 uint16_t wValue;
273 uint16_t wIndex;
274 uint16_t wLength;
275} VUSBSETUP, *PVUSBSETUP;
276#pragma pack()
277
278
279static inline void vusbDevUnplugged(PVUSBDEV dev)
280{
281 dev->request_detach = 1;
282}
283
284int dev2fd (PUSBPROXYDEV pProxyDev);
285
286
287typedef struct USBPROXYBACK
288{
289 /** Name of the backend. */
290 const char *pszName;
291
292 int (* pfnOpen)(PUSBPROXYDEV pProxyDev, const char *pszAddress, void *pvBackend);
293 void (* pfnClose)(PUSBPROXYDEV pProxyDev);
294 int (* pfnReset)(PUSBPROXYDEV pProxyDev);
295 int (* pfnSetConfig)(PUSBPROXYDEV pProxyDev, int iCfg);
296 int (* pfnClaimInterface)(PUSBPROXYDEV pProxyDev, int iIf);
297 int (* pfnReleaseInterface)(PUSBPROXYDEV pProxyDev, int iIf);
298 int (* pfnSetInterface)(PUSBPROXYDEV pProxyDev, int iIf, int setting);
299 bool (* pfnClearHaltedEndpoint)(PUSBPROXYDEV pDev, unsigned int iEp);
300 int (* pfnUrbQueue)(PVUSBURB urb);
301 void (* pfnUrbCancel)(PVUSBURB pUrb);
302 PVUSBURB (* pfnUrbReap)(PUSBPROXYDEV pProxyDev, unsigned cMillies);
303 uint32_t uDummy;
304} USBPROXYBACK;
305
306typedef USBPROXYBACK *PUSBPROXYBACK;
307
308extern const USBPROXYBACK g_USBProxyDeviceHost;
309
310static inline int op_usbproxy_back_open(struct usb_proxy *p, const char *pszAddress)
311{
312 return g_USBProxyDeviceHost.pfnOpen (p, pszAddress, NULL);
313}
314
315static inline void op_usbproxy_back_close(PUSBPROXYDEV pDev)
316{
317 return g_USBProxyDeviceHost.pfnClose (pDev);
318}
319
320static inline int op_usbproxy_back_reset(PUSBPROXYDEV pDev)
321{
322 return g_USBProxyDeviceHost.pfnReset (pDev);
323}
324
325static inline int op_usbproxy_back_set_config(PUSBPROXYDEV pDev, int cfg)
326{
327 return g_USBProxyDeviceHost.pfnSetConfig (pDev, cfg);
328}
329
330static inline int op_usbproxy_back_claim_interface(PUSBPROXYDEV pDev, int ifnum)
331{
332 return g_USBProxyDeviceHost.pfnClaimInterface (pDev, ifnum);
333}
334
335static inline int op_usbproxy_back_release_interface(PUSBPROXYDEV pDev, int ifnum)
336{
337 return g_USBProxyDeviceHost.pfnReleaseInterface (pDev, ifnum);
338}
339
340static inline int op_usbproxy_back_interface_setting(PUSBPROXYDEV pDev, int ifnum, int setting)
341{
342 return g_USBProxyDeviceHost.pfnSetInterface (pDev, ifnum, setting);
343}
344
345static inline int op_usbproxy_back_queue_urb(PVUSBURB pUrb)
346{
347 return g_USBProxyDeviceHost.pfnUrbQueue(pUrb);
348}
349
350static inline PVUSBURB op_usbproxy_back_reap_urb(PUSBPROXYDEV pDev, unsigned cMillies)
351{
352 return g_USBProxyDeviceHost.pfnUrbReap (pDev, cMillies);
353}
354
355static inline bool op_usbproxy_back_clear_halted_ep(PUSBPROXYDEV pDev, unsigned EndPoint)
356{
357 return g_USBProxyDeviceHost.pfnClearHaltedEndpoint (pDev, EndPoint);
358}
359
360static inline void op_usbproxy_back_cancel_urb(PVUSBURB pUrb)
361{
362 return g_USBProxyDeviceHost.pfnUrbCancel (pUrb);
363}
364
365#endif /* __VRDPUSB__H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette