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