2 * Copyright (c) 2008-2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 #include <libkern/OSKextLibPrivate.h>
31 #include <libkern/mkext.h>
34 #include <libkern/c++/OSContainers.h>
35 #include <libkern/c++/OSKext.h>
36 #include <libkern/OSKextLib.h>
37 #include <libkern/OSKextLibPrivate.h>
41 #pragma mark C-based kext interface (loading/loaded kexts only)
43 /*********************************************************************
44 *********************************************************************/
46 OSKextLoadKextWithIdentifier(const char * bundle_id
)
48 return OSKext::loadKextWithIdentifier(bundle_id
);
51 uint32_t OSKextGetLoadTagForIdentifier(const char * kextIdentifier
);
52 /*********************************************************************
53 *********************************************************************/
55 OSKextGetLoadTagForIdentifier(const char * kextIdentifier
)
57 uint32_t result
= kOSKextInvalidLoadTag
;
58 OSKext
* theKext
= NULL
; // must release
60 if (!kextIdentifier
) {
64 theKext
= OSKext::lookupKextWithIdentifier(kextIdentifier
);
65 if (theKext
&& theKext
->isLoaded()) {
66 result
= theKext
->getLoadTag();
75 /*********************************************************************
76 *********************************************************************/
78 OSKextRetainKextWithLoadTag(uint32_t loadTag
)
80 OSReturn result
= kOSKextReturnNotFound
;
81 OSKext
* theKext
= NULL
;// do not release; as this function is a retain
83 if (loadTag
== kOSKextInvalidLoadTag
) {
84 result
= kOSKextReturnInvalidArgument
;
87 theKext
= OSKext::lookupKextWithLoadTag(loadTag
);
89 result
= kOSReturnSuccess
;
92 kOSKextLogDebugLevel
|
93 kOSKextLogKextBookkeepingFlag
,
94 "Kext %s (load tag %d) has been retained.",
95 theKext
->getIdentifierCString(),
98 /* Call this after so a log message about autounload comes second.
100 theKext
->setAutounloadEnabled(true);
103 kOSKextLogErrorLevel
|
104 kOSKextLogKextBookkeepingFlag
,
105 "Can't retain kext with load tag %d - no such kext is loaded.",
112 /*********************************************************************
113 *********************************************************************/
115 OSKextReleaseKextWithLoadTag(uint32_t loadTag
)
117 OSReturn result
= kOSKextReturnNotFound
;
118 OSKext
* theKext
= NULL
; // must release twice!
120 if (loadTag
== kOSKextInvalidLoadTag
) {
121 result
= kOSKextReturnInvalidArgument
;
124 theKext
= OSKext::lookupKextWithLoadTag(loadTag
);
126 result
= kOSReturnSuccess
;
127 OSKext::considerUnloads(); // schedule autounload pass
128 theKext
->release(); // do the release the caller wants
129 theKext
->release(); // now do the release on the lookup
131 kOSKextLogDebugLevel
|
132 kOSKextLogKextBookkeepingFlag
,
133 "Kext %s (load tag %d) has been released.",
134 theKext
->getIdentifierCString(),
138 kOSKextLogErrorLevel
|
139 kOSKextLogKextBookkeepingFlag
,
140 "Can't release kext with load tag %d - no such kext is loaded.",
144 // xxx - should I check that the refcount of the OSKext is above the lower bound?
145 // xxx - do we want a OSKextGetRetainCountOfKextWithLoadTag()?
150 /*********************************************************************
151 * Not to be called by the kext being unloaded!
152 *********************************************************************/
154 OSKextUnloadKextWithLoadTag(uint32_t loadTag
)
156 return OSKext::removeKextWithLoadTag(loadTag
,
157 /* terminateServicesAndRemovePersonalitiesFlag */ false);
162 #pragma mark Kext Requests
164 /*********************************************************************
166 *********************************************************************/
168 OSKextRequestResource(
169 const char * kextIdentifier
,
170 const char * resourceName
,
171 OSKextRequestResourceCallback callback
,
173 OSKextRequestTag
* requestTagOut
)
175 return OSKext::requestResource(kextIdentifier
, resourceName
,
176 callback
, context
, requestTagOut
);
179 /*********************************************************************
180 *********************************************************************/
183 OSKextRequestTag requestTag
,
186 return OSKext::cancelRequest(requestTag
, contextOut
);
190 #pragma mark MIG Functions & Wrappers
192 /*********************************************************************
193 * IMPORTANT: vm_map_copyout_size() consumes the requestIn copy
194 * object on success. Therefore once it has been invoked successfully,
195 * this routine *must* return KERN_SUCCESS, regardless of our actual
196 * result. Our contract with the caller is that requestIn must be
197 * caller-deallocated if we return an error. We use op_result to return
198 * the real result of our work.
199 *********************************************************************/
202 host_priv_t hostPriv
,
203 /* in only */ uint32_t clientLogSpec
,
204 /* in only */ vm_offset_t requestIn
,
205 /* in only */ mach_msg_type_number_t requestLengthIn
,
206 /* out only */ vm_offset_t
* responseOut
,
207 /* out only */ mach_msg_type_number_t
* responseLengthOut
,
208 /* out only */ vm_offset_t
* logDataOut
,
209 /* out only */ mach_msg_type_number_t
* logDataLengthOut
,
210 /* out only */ kern_return_t
* op_result
)
212 kern_return_t result
= KERN_FAILURE
;
213 vm_map_address_t map_addr
= 0; // do not free/deallocate
214 char * request
= NULL
;// must vm_deallocate
216 mkext2_header
* mkextHeader
= NULL
;// do not release
217 bool isMkext
= false;
219 char * response
= NULL
;// must kmem_free
220 uint32_t responseLength
= 0;
221 char * logData
= NULL
;// must kmem_free
222 uint32_t logDataLength
= 0;
224 /* MIG doesn't pass "out" parameters as empty, so clear them immediately
225 * just in case, or MIG will try to copy out bogus data.
227 *op_result
= KERN_FAILURE
;
229 *responseLengthOut
= 0;
231 *logDataLengthOut
= 0;
233 /* Check for input. Don't discard what isn't there, though.
235 if (!requestLengthIn
|| !requestIn
) {
236 OSKextLog(/* kext */ NULL
,
237 kOSKextLogErrorLevel
|
239 "Invalid request from user space (no data).");
240 *op_result
= KERN_INVALID_ARGUMENT
;
244 result
= vm_map_copyout_size(kernel_map
, &map_addr
, (vm_map_copy_t
)requestIn
, requestLengthIn
);
245 if (result
!= KERN_SUCCESS
) {
246 OSKextLog(/* kext */ NULL
,
247 kOSKextLogErrorLevel
|
249 "vm_map_copyout() failed for request from user space.");
251 * If we return an error it is our caller's responsibility to
252 * deallocate the requestIn copy object, so do not deallocate it
253 * here. See comment above.
257 request
= CAST_DOWN(char *, map_addr
);
259 /* Check if request is an mkext; this is always a load request
260 * and requires root access. If it isn't an mkext, see if it's
261 * an XML request, and check the request to see if that requires
264 if (requestLengthIn
> sizeof(mkext2_header
)) {
265 mkextHeader
= (mkext2_header
*)request
;
266 if (MKEXT_GET_MAGIC(mkextHeader
) == MKEXT_MAGIC
&&
267 MKEXT_GET_SIGNATURE(mkextHeader
) == MKEXT_SIGN
) {
274 // xxx - something tells me if we have a secure kernel we don't even
275 // xxx - want to log a message here. :-)
276 *op_result
= KERN_NOT_SUPPORTED
;
279 // xxx - can we find out if calling task is kextd?
280 // xxx - can we find the name of the calling task?
281 if (hostPriv
== HOST_PRIV_NULL
) {
282 OSKextLog(/* kext */ NULL
,
283 kOSKextLogErrorLevel
|
284 kOSKextLogLoadFlag
| kOSKextLogIPCFlag
,
285 "Attempt by non-root process to load a kext.");
286 *op_result
= kOSKextReturnNotPrivileged
;
290 *op_result
= OSKext::loadFromMkext((OSKextLogSpec
)clientLogSpec
,
291 request
, requestLengthIn
,
292 &logData
, &logDataLength
);
294 #endif /* defined(SECURE_KERNEL) */
296 /* If the request isn't an mkext, then is should be XML. Parse it
297 * if possible and hand the request over to OSKext.
299 *op_result
= OSKext::handleRequest(hostPriv
,
300 (OSKextLogSpec
)clientLogSpec
,
301 request
, requestLengthIn
,
302 &response
, &responseLength
,
303 &logData
, &logDataLength
);
306 if (response
&& responseLength
> 0) {
307 kern_return_t copyin_result
;
309 copyin_result
= vm_map_copyin(kernel_map
,
310 CAST_USER_ADDR_T(response
), responseLength
,
311 /* src_destroy */ false, (vm_map_copy_t
*)responseOut
);
312 if (copyin_result
== KERN_SUCCESS
) {
313 *responseLengthOut
= responseLength
;
315 OSKextLog(/* kext */ NULL
,
316 kOSKextLogErrorLevel
|
318 "Failed to copy response to request from user space.");
319 *op_result
= copyin_result
; // xxx - should we map to our own code?
321 *responseLengthOut
= 0;
326 if (logData
&& logDataLength
> 0) {
327 kern_return_t copyin_result
;
329 copyin_result
= vm_map_copyin(kernel_map
,
330 CAST_USER_ADDR_T(logData
), logDataLength
,
331 /* src_destroy */ false, (vm_map_copy_t
*)logDataOut
);
332 if (copyin_result
== KERN_SUCCESS
) {
333 *logDataLengthOut
= logDataLength
;
335 OSKextLog(/* kext */ NULL
,
336 kOSKextLogErrorLevel
|
338 "Failed to copy log data for request from user space.");
339 *op_result
= copyin_result
; // xxx - should we map to our own code?
341 *logDataLengthOut
= 0;
348 (void)vm_deallocate(kernel_map
, (vm_offset_t
)request
, requestLengthIn
);
351 /* 11981737 - clear uninitialized data in last page */
352 kmem_free(kernel_map
, (vm_offset_t
)response
, round_page(responseLength
));
355 /* 11981737 - clear uninitialized data in last page */
356 kmem_free(kernel_map
, (vm_offset_t
)logData
, round_page(logDataLength
));
362 /*********************************************************************
363 * Gets the vm_map for the current kext
364 *********************************************************************/
365 extern vm_offset_t segPRELINKTEXTB
;
366 extern unsigned long segSizePRELINKTEXT
;
367 extern int kth_started
;
368 extern vm_map_t g_kext_map
;
371 kext_get_vm_map(kmod_info_t
*info
)
373 vm_map_t kext_map
= NULL
;
376 if ((info
->address
>= segPRELINKTEXTB
) &&
377 (info
->address
< (segPRELINKTEXTB
+ segSizePRELINKTEXT
))) {
378 kext_map
= kernel_map
;
380 kext_map
= g_kext_map
;
388 /********************************************************************/
389 #pragma mark Weak linking support
390 /********************************************************************/
393 kext_weak_symbol_referenced(void)
395 panic("A kext referenced an unresolved weak symbol\n");
398 const void * const gOSKextUnresolved
= (const void *)&kext_weak_symbol_referenced
;
401 #pragma mark Kernel-Internal C Functions
403 /*********************************************************************
404 * Called from startup.c.
405 *********************************************************************/
407 OSKextRemoveKextBootstrap(void)
409 OSKext::removeKextBootstrap();
414 /*********************************************************************
415 *********************************************************************/
417 OSKextRegisterKextsWithDTrace(void)
419 OSKext::registerKextsWithDTrace();
422 #endif /* CONFIG_DTRACE */
424 /*********************************************************************
425 *********************************************************************/
427 kext_dump_panic_lists(int (*printf_func
)(const char * fmt
, ...))
429 OSKext::printKextPanicLists(printf_func
);
434 #pragma mark Kmod Compatibility Functions
436 /*********************************************************************
437 **********************************************************************
438 * KMOD COMPATIBILITY FUNCTIONS *
439 * (formerly in kmod.c, or C++ bridges from) *
440 **********************************************************************
441 **********************************************************************
442 * These two functions are used in various places in the kernel, but
443 * are not exported. We might rename them at some point to start with
446 * kmod_panic_dump() must not be called outside of a panic context.
447 * kmod_dump_log() must not be called in a panic context.
448 *********************************************************************/
450 kmod_panic_dump(vm_offset_t
* addr
, unsigned int cnt
)
452 extern int paniclog_append_noflush(const char *format
, ...) __printflike(1, 2);
454 OSKext::printKextsInBacktrace(addr
, cnt
, &paniclog_append_noflush
, 0);
459 /********************************************************************/
460 void kmod_dump_log(vm_offset_t
*addr
, unsigned int cnt
, boolean_t doUnslide
);
468 uint32_t flags
= OSKext::kPrintKextsLock
;
470 flags
|= OSKext::kPrintKextsUnslide
;
472 OSKext::printKextsInBacktrace(addr
, cnt
, &printf
, flags
);
476 OSKextKextForAddress(const void *addr
)
478 return OSKext::kextForAddress(addr
);
482 /*********************************************************************
483 * Compatibility implementation for kmod_get_info() host_priv routine.
484 * Only supported on old 32-bit architectures.
485 *********************************************************************/
488 #pragma mark Loaded Kext Summary
492 OSKextLoadedKextSummariesUpdated(void)