1 | /** $Id: USBLib-darwin.cpp 51488 2014-06-02 14:46:50Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * USBLib - Library for wrapping up the VBoxUSB functionality, Darwin flavor.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2013 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <VBox/usblib.h>
|
---|
23 | #include <VBox/err.h>
|
---|
24 | #include <VBox/log.h>
|
---|
25 | #include "VBoxUSBInterface.h"
|
---|
26 |
|
---|
27 | #include <iprt/assert.h>
|
---|
28 | #include <iprt/asm.h>
|
---|
29 |
|
---|
30 | #include <mach/mach_port.h>
|
---|
31 | #include <IOKit/IOKitLib.h>
|
---|
32 |
|
---|
33 | /*******************************************************************************
|
---|
34 | * Defined Constants And Macros *
|
---|
35 | *******************************************************************************/
|
---|
36 | /** The IOClass key of the service (see VBoxUSB.cpp / Info.plist). */
|
---|
37 | #define IOCLASS_NAME "org_virtualbox_VBoxUSB"
|
---|
38 |
|
---|
39 |
|
---|
40 | /*******************************************************************************
|
---|
41 | * Global Variables *
|
---|
42 | *******************************************************************************/
|
---|
43 | /** Reference counter. */
|
---|
44 | static uint32_t volatile g_cUsers = 0;
|
---|
45 | /** The IOMasterPort. */
|
---|
46 | static mach_port_t g_MasterPort = 0;
|
---|
47 | /** The current service connection. */
|
---|
48 | static io_connect_t g_Connection = NULL;
|
---|
49 |
|
---|
50 |
|
---|
51 |
|
---|
52 | USBLIB_DECL(int) USBLibInit(void)
|
---|
53 | {
|
---|
54 | /*
|
---|
55 | * Already open?
|
---|
56 | * This isn't properly serialized, but we'll be fine with the current usage.
|
---|
57 | */
|
---|
58 | if (g_cUsers)
|
---|
59 | {
|
---|
60 | ASMAtomicIncU32(&g_cUsers);
|
---|
61 | return VINF_SUCCESS;
|
---|
62 | }
|
---|
63 |
|
---|
64 | /*
|
---|
65 | * Finding the VBoxUSB service.
|
---|
66 | */
|
---|
67 | mach_port_t MasterPort;
|
---|
68 | kern_return_t kr = IOMasterPort(MACH_PORT_NULL, &MasterPort);
|
---|
69 | if (kr != kIOReturnSuccess)
|
---|
70 | {
|
---|
71 | LogRel(("USBLib: IOMasterPort -> %#x\n", kr));
|
---|
72 | return RTErrConvertFromDarwinKern(kr);
|
---|
73 | }
|
---|
74 |
|
---|
75 | CFDictionaryRef ClassToMatch = IOServiceMatching(IOCLASS_NAME);
|
---|
76 | if (!ClassToMatch)
|
---|
77 | {
|
---|
78 | LogRel(("USBLib: IOServiceMatching(\"%s\") failed.\n", IOCLASS_NAME));
|
---|
79 | return VERR_GENERAL_FAILURE;
|
---|
80 | }
|
---|
81 |
|
---|
82 | /* Create an io_iterator_t for all instances of our drivers class that exist in the IORegistry. */
|
---|
83 | io_iterator_t Iterator;
|
---|
84 | kr = IOServiceGetMatchingServices(g_MasterPort, ClassToMatch, &Iterator);
|
---|
85 | if (kr != kIOReturnSuccess)
|
---|
86 | {
|
---|
87 | LogRel(("USBLib: IOServiceGetMatchingServices returned %#x\n", kr));
|
---|
88 | return RTErrConvertFromDarwinKern(kr);
|
---|
89 | }
|
---|
90 |
|
---|
91 | /* Get the first item in the iterator and release it. */
|
---|
92 | io_service_t ServiceObject = IOIteratorNext(Iterator);
|
---|
93 | IOObjectRelease(Iterator);
|
---|
94 | if (!ServiceObject)
|
---|
95 | {
|
---|
96 | LogRel(("USBLib: Couldn't find any matches.\n"));
|
---|
97 | return VERR_GENERAL_FAILURE;
|
---|
98 | }
|
---|
99 |
|
---|
100 | /*
|
---|
101 | * Open the service.
|
---|
102 | * This will cause the user client class in VBoxUSB.cpp to be instantiated.
|
---|
103 | */
|
---|
104 | kr = IOServiceOpen(ServiceObject, mach_task_self(), VBOXUSB_DARWIN_IOSERVICE_COOKIE, &g_Connection);
|
---|
105 | IOObjectRelease(ServiceObject);
|
---|
106 | if (kr != kIOReturnSuccess)
|
---|
107 | {
|
---|
108 | LogRel(("USBLib: IOServiceOpen returned %#x\n", kr));
|
---|
109 | return RTErrConvertFromDarwinKern(kr);
|
---|
110 | }
|
---|
111 |
|
---|
112 | ASMAtomicIncU32(&g_cUsers);
|
---|
113 | return VINF_SUCCESS;
|
---|
114 | }
|
---|
115 |
|
---|
116 |
|
---|
117 | USBLIB_DECL(int) USBLibTerm(void)
|
---|
118 | {
|
---|
119 | if (!g_cUsers)
|
---|
120 | return VERR_WRONG_ORDER;
|
---|
121 | if (ASMAtomicDecU32(&g_cUsers) != 0)
|
---|
122 | return VINF_SUCCESS;
|
---|
123 |
|
---|
124 | /*
|
---|
125 | * We're the last guy, close down the connection.
|
---|
126 | */
|
---|
127 | kern_return_t kr = IOServiceClose(g_Connection);
|
---|
128 | if (kr != kIOReturnSuccess)
|
---|
129 | {
|
---|
130 | LogRel(("USBLib: Warning: IOServiceClose(%p) returned %#x\n", g_Connection, kr));
|
---|
131 | AssertMsgFailed(("%#x\n", kr));
|
---|
132 | }
|
---|
133 | g_Connection = NULL;
|
---|
134 |
|
---|
135 | return VINF_SUCCESS;
|
---|
136 | }
|
---|
137 |
|
---|
138 |
|
---|
139 | USBLIB_DECL(void *) USBLibAddFilter(PCUSBFILTER pFilter)
|
---|
140 | {
|
---|
141 | VBOXUSBADDFILTEROUT Out = { 0, VERR_WRONG_ORDER };
|
---|
142 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 1050
|
---|
143 | IOByteCount cbOut = sizeof(Out);
|
---|
144 | kern_return_t kr = IOConnectMethodStructureIStructureO(g_Connection,
|
---|
145 | VBOXUSBMETHOD_ADD_FILTER,
|
---|
146 | sizeof(*pFilter),
|
---|
147 | &cbOut,
|
---|
148 | (void *)pFilter,
|
---|
149 | &Out);
|
---|
150 | #else /* 10.5 and later */
|
---|
151 | size_t cbOut = sizeof(Out);
|
---|
152 | kern_return_t kr = IOConnectCallStructMethod(g_Connection,
|
---|
153 | VBOXUSBMETHOD_ADD_FILTER,
|
---|
154 | (void *)pFilter, sizeof(*pFilter),
|
---|
155 | &Out, &cbOut);
|
---|
156 | #endif /* 10.5 and later */
|
---|
157 | if ( kr == kIOReturnSuccess
|
---|
158 | && RT_SUCCESS(Out.rc))
|
---|
159 | {
|
---|
160 | Assert(cbOut == sizeof(Out));
|
---|
161 | Assert((void *)Out.uId != NULL);
|
---|
162 | return (void *)Out.uId;
|
---|
163 | }
|
---|
164 |
|
---|
165 | AssertMsgFailed(("kr=%#x Out.rc=%Rrc\n", kr, Out.rc));
|
---|
166 | return NULL;
|
---|
167 | }
|
---|
168 |
|
---|
169 |
|
---|
170 | USBLIB_DECL(void) USBLibRemoveFilter(void *pvId)
|
---|
171 | {
|
---|
172 | int rc = VERR_WRONG_ORDER;
|
---|
173 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 1050
|
---|
174 | IOByteCount cbOut = sizeof(rc);
|
---|
175 | kern_return_t kr = IOConnectMethodStructureIStructureO(g_Connection,
|
---|
176 | VBOXUSBMETHOD_REMOVE_FILTER,
|
---|
177 | sizeof(pvId),
|
---|
178 | &cbOut,
|
---|
179 | &pvId,
|
---|
180 | &rc);
|
---|
181 | #else /* 10.5 and later */
|
---|
182 | size_t cbOut = sizeof(rc);
|
---|
183 | kern_return_t kr = IOConnectCallStructMethod(g_Connection,
|
---|
184 | VBOXUSBMETHOD_REMOVE_FILTER,
|
---|
185 | (void *)&pvId, sizeof(pvId),
|
---|
186 | &rc, &cbOut);
|
---|
187 | #endif /* 10.5 and later */
|
---|
188 | AssertMsg(kr == kIOReturnSuccess && RT_SUCCESS(rc), ("kr=%#x rc=%Rrc\n", kr, rc));
|
---|
189 | NOREF(kr);
|
---|
190 | }
|
---|
191 |
|
---|