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: Once we have done the vm_map_copyout(), we *must* return
194 * KERN_SUCCESS or the kernel map gets messed up (reason as yet
195 * unknown). We use op_result to return the real result of our work.
196 *********************************************************************/
199 host_priv_t hostPriv
,
200 /* in only */ uint32_t clientLogSpec
,
201 /* in only */ vm_offset_t requestIn
,
202 /* in only */ mach_msg_type_number_t requestLengthIn
,
203 /* out only */ vm_offset_t
* responseOut
,
204 /* out only */ mach_msg_type_number_t
* responseLengthOut
,
205 /* out only */ vm_offset_t
* logDataOut
,
206 /* out only */ mach_msg_type_number_t
* logDataLengthOut
,
207 /* out only */ kern_return_t
* op_result
)
209 kern_return_t result
= KERN_FAILURE
;
210 vm_map_address_t map_addr
= 0; // do not free/deallocate
211 char * request
= NULL
;// must vm_deallocate
213 mkext2_header
* mkextHeader
= NULL
;// do not release
214 bool isMkext
= false;
216 char * response
= NULL
;// must kmem_free
217 uint32_t responseLength
= 0;
218 char * logData
= NULL
;// must kmem_free
219 uint32_t logDataLength
= 0;
221 /* MIG doesn't pass "out" parameters as empty, so clear them immediately
222 * just in case, or MIG will try to copy out bogus data.
224 *op_result
= KERN_FAILURE
;
226 *responseLengthOut
= 0;
228 *logDataLengthOut
= 0;
230 /* Check for input. Don't discard what isn't there, though.
232 if (!requestLengthIn
|| !requestIn
) {
233 OSKextLog(/* kext */ NULL
,
234 kOSKextLogErrorLevel
|
236 "Invalid request from user space (no data).");
237 *op_result
= KERN_INVALID_ARGUMENT
;
241 /* Once we have done the vm_map_copyout(), we *must* return KERN_SUCCESS
242 * or the kernel map gets messed up (reason as yet unknown). We will use
243 * op_result to return the real result of our work.
245 result
= vm_map_copyout(kernel_map
, &map_addr
, (vm_map_copy_t
)requestIn
);
246 if (result
!= KERN_SUCCESS
) {
247 OSKextLog(/* kext */ NULL
,
248 kOSKextLogErrorLevel
|
250 "vm_map_copyout() failed for request from user space.");
251 vm_map_copy_discard((vm_map_copy_t
)requestIn
);
254 request
= CAST_DOWN(char *, map_addr
);
256 /* Check if request is an mkext; this is always a load request
257 * and requires root access. If it isn't an mkext, see if it's
258 * an XML request, and check the request to see if that requires
261 if (requestLengthIn
> sizeof(mkext2_header
)) {
262 mkextHeader
= (mkext2_header
*)request
;
263 if (MKEXT_GET_MAGIC(mkextHeader
) == MKEXT_MAGIC
&&
264 MKEXT_GET_SIGNATURE(mkextHeader
) == MKEXT_SIGN
) {
271 // xxx - something tells me if we have a secure kernel we don't even
272 // xxx - want to log a message here. :-)
273 *op_result
= KERN_NOT_SUPPORTED
;
276 // xxx - can we find out if calling task is kextd?
277 // xxx - can we find the name of the calling task?
278 if (hostPriv
== HOST_PRIV_NULL
) {
279 OSKextLog(/* kext */ NULL
,
280 kOSKextLogErrorLevel
|
281 kOSKextLogLoadFlag
| kOSKextLogIPCFlag
,
282 "Attempt by non-root process to load a kext.");
283 *op_result
= kOSKextReturnNotPrivileged
;
287 *op_result
= OSKext::loadFromMkext((OSKextLogSpec
)clientLogSpec
,
288 request
, requestLengthIn
,
289 &logData
, &logDataLength
);
291 #endif /* defined(SECURE_KERNEL) */
293 /* If the request isn't an mkext, then is should be XML. Parse it
294 * if possible and hand the request over to OSKext.
296 *op_result
= OSKext::handleRequest(hostPriv
,
297 (OSKextLogSpec
)clientLogSpec
,
298 request
, requestLengthIn
,
299 &response
, &responseLength
,
300 &logData
, &logDataLength
);
303 if (response
&& responseLength
> 0) {
304 kern_return_t copyin_result
;
306 copyin_result
= vm_map_copyin(kernel_map
,
307 CAST_USER_ADDR_T(response
), responseLength
,
308 /* src_destroy */ false, (vm_map_copy_t
*)responseOut
);
309 if (copyin_result
== KERN_SUCCESS
) {
310 *responseLengthOut
= responseLength
;
312 OSKextLog(/* kext */ NULL
,
313 kOSKextLogErrorLevel
|
315 "Failed to copy response to request from user space.");
316 *op_result
= copyin_result
; // xxx - should we map to our own code?
318 *responseLengthOut
= 0;
323 if (logData
&& logDataLength
> 0) {
324 kern_return_t copyin_result
;
326 copyin_result
= vm_map_copyin(kernel_map
,
327 CAST_USER_ADDR_T(logData
), logDataLength
,
328 /* src_destroy */ false, (vm_map_copy_t
*)logDataOut
);
329 if (copyin_result
== KERN_SUCCESS
) {
330 *logDataLengthOut
= logDataLength
;
332 OSKextLog(/* kext */ NULL
,
333 kOSKextLogErrorLevel
|
335 "Failed to copy log data for request from user space.");
336 *op_result
= copyin_result
; // xxx - should we map to our own code?
338 *logDataLengthOut
= 0;
345 (void)vm_deallocate(kernel_map
, (vm_offset_t
)request
, requestLengthIn
);
348 /* 11981737 - clear uninitialized data in last page */
349 kmem_free(kernel_map
, (vm_offset_t
)response
, round_page(responseLength
));
352 /* 11981737 - clear uninitialized data in last page */
353 kmem_free(kernel_map
, (vm_offset_t
)logData
, round_page(logDataLength
));
359 /*********************************************************************
360 * Gets the vm_map for the current kext
361 *********************************************************************/
362 extern vm_offset_t segPRELINKTEXTB
;
363 extern unsigned long segSizePRELINKTEXT
;
364 extern int kth_started
;
365 extern vm_map_t g_kext_map
;
368 kext_get_vm_map(kmod_info_t
*info
)
370 vm_map_t kext_map
= NULL
;
373 if ((info
->address
>= segPRELINKTEXTB
) &&
374 (info
->address
< (segPRELINKTEXTB
+ segSizePRELINKTEXT
))) {
375 kext_map
= kernel_map
;
377 kext_map
= g_kext_map
;
385 /********************************************************************/
386 #pragma mark Weak linking support
387 /********************************************************************/
390 kext_weak_symbol_referenced(void)
392 panic("A kext referenced an unresolved weak symbol\n");
395 const void *gOSKextUnresolved
= (const void *)&kext_weak_symbol_referenced
;
398 #pragma mark Kernel-Internal C Functions
400 /*********************************************************************
401 * Called from startup.c.
402 *********************************************************************/
404 OSKextRemoveKextBootstrap(void)
406 OSKext::removeKextBootstrap();
411 /*********************************************************************
412 *********************************************************************/
414 OSKextRegisterKextsWithDTrace(void)
416 OSKext::registerKextsWithDTrace();
419 #endif /* CONFIG_DTRACE */
421 /*********************************************************************
422 *********************************************************************/
424 kext_dump_panic_lists(int (*printf_func
)(const char * fmt
, ...))
426 OSKext::printKextPanicLists(printf_func
);
431 #pragma mark Kmod Compatibility Functions
433 /*********************************************************************
434 **********************************************************************
435 * KMOD COMPATIBILITY FUNCTIONS *
436 * (formerly in kmod.c, or C++ bridges from) *
437 **********************************************************************
438 **********************************************************************
439 * These two functions are used in various places in the kernel, but
440 * are not exported. We might rename them at some point to start with
443 * kmod_panic_dump() must not be called outside of a panic context.
444 * kmod_dump_log() must not be called in a panic context.
445 *********************************************************************/
447 kmod_panic_dump(vm_offset_t
* addr
, unsigned int cnt
)
449 extern int paniclog_append_noflush(const char *format
, ...) __printflike(1, 2);
451 OSKext::printKextsInBacktrace(addr
, cnt
, &paniclog_append_noflush
, 0);
456 /********************************************************************/
457 void kmod_dump_log(vm_offset_t
*addr
, unsigned int cnt
, boolean_t doUnslide
);
465 uint32_t flags
= OSKext::kPrintKextsLock
;
467 flags
|= OSKext::kPrintKextsUnslide
;
469 OSKext::printKextsInBacktrace(addr
, cnt
, &printf
, flags
);
473 OSKextKextForAddress(const void *addr
)
475 return OSKext::kextForAddress(addr
);
479 /*********************************************************************
480 * Compatibility implementation for kmod_get_info() host_priv routine.
481 * Only supported on old 32-bit architectures.
482 *********************************************************************/
485 #pragma mark Loaded Kext Summary
489 OSKextLoadedKextSummariesUpdated(void)