]> git.saurik.com Git - apple/xnu.git/blob - libsa/bootstrap.cpp
12936fdcc6322d39881c39396e04b4e64e45ee87
[apple/xnu.git] / libsa / bootstrap.cpp
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25 #include <IOKit/IOLib.h>
26 #include <mach/kmod.h>
27 #include <libkern/c++/OSDictionary.h>
28
29 #include <libsa/kmod.h>
30 #include <libsa/catalogue.h>
31 extern "C" {
32 #include <libsa/malloc.h>
33 };
34
35 #include "kld_patch.h"
36
37 extern "C" {
38 /*****
39 * This function is used by IOCatalogue to load a kernel
40 * extension. libsa initially sets it to be a function
41 * that uses libkld to load and link the extension from
42 * within the kernel. Once the root filesystem is up,
43 * this gets switch to the kmod_load_extension() function,
44 * which merely queues the extension for loading by the
45 * kmodload utility.
46 */
47 extern kern_return_t (*kmod_load_function)(char *extension_name);
48 extern bool (*record_startup_extensions_function)(void);
49 extern bool (*add_from_mkext_function)(OSData * mkext);
50 extern void (*remove_startup_extension_function)(const char * name);
51
52 /****
53 * IOCatalogue uses this variable to make a few decisions
54 * about loading and matching drivers.
55 */
56 extern int kernelLinkerPresent;
57 };
58
59
60 class KLDBootstrap {
61 public:
62 KLDBootstrap();
63 ~KLDBootstrap();
64 };
65
66
67 static KLDBootstrap bootstrap_obj;
68
69
70 /* The constructor creates a lock and puts entries into a dispatch
71 * table for functions used to record and load kmods.
72 */
73 KLDBootstrap::KLDBootstrap() {
74
75 kmod_load_function = &load_kernel_extension;
76
77 record_startup_extensions_function = &recordStartupExtensions;
78 add_from_mkext_function = &addExtensionsFromArchive;
79 remove_startup_extension_function = &removeStartupExtension;
80
81 kernelLinkerPresent = 1;
82 }
83
84 /* The destructor frees all wired memory regions held
85 * by libsa's malloc package and disposes of the lock.
86 */
87 KLDBootstrap::~KLDBootstrap() {
88
89 kld_file_cleanup_all_resources();
90
91 /* Dump all device-tree entries for boot drivers, and all
92 * info on startup extensions. The IOCatalogue will now
93 * get personalities from kextd.
94 */
95 clearStartupExtensionsAndLoaderInfo();
96
97 /* Free all temporary malloc memory.
98 */
99 malloc_reset();
100 }