Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/libsaio/modules.h

1/*
2 * Module Loading functionality
3 * Copyright 2009 Evan Lojewski. All rights reserved.
4 *
5 */
6
7// There is a bug with the module system / rebasing / binding
8// that causes static variables to be incorrectly rebased or bound
9// Disable static variables for the moment
10// #define static
11
12#ifndef __BOOT_MODULES_H
13#define __BOOT_MODULES_H
14
15#include <mach-o/loader.h>
16#include <mach-o/nlist.h>
17#include "efi.h"
18
19extern unsigned long long textAddress;
20extern unsigned long long textSection;
21
22typedef struct symbolList_t
23{
24 char* module;
25char* symbol;
26unsigned int addr;
27struct symbolList_t* next;
28} symbolList_t;
29
30typedef struct moduleList_t
31{
32char* module;
33//struct moduleHook_t* hook_list;
34struct moduleList_t* next;
35} moduleList_t;
36
37typedef struct callbackList_t
38{
39void(*callback)(void*, void*, void*, void*, void*, void*);
40struct callbackList_t* next;
41} callbackList_t;
42
43typedef struct moduleHook_t
44{
45const char* name;
46callbackList_t* callbacks;
47struct moduleHook_t* next;
48} moduleHook_t;
49
50#define SYMBOLS_MODULE "Symbols.dylib"
51
52#define SYMBOL_DYLD_STUB_BINDER"dyld_stub_binder"
53#define SYMBOL_LOOKUP_SYMBOL"_lookup_symbol"
54#define STUB_ENTRY_SIZE6
55
56#define SECT_NON_LAZY_SYMBOL_PTR"__nl_symbol_ptr"
57#define SECT_SYMBOL_STUBS"__symbol_stub"
58
59EFI_STATUS init_module_system(void);
60VOID load_all_modules(void);
61
62/*
63 * Modules Interface
64 * execute_hook
65 *Exexutes a registered hook. All callbaks are
66 *called in the same order that they were added
67 *
68 * register_hook_callback
69 *registers a void function to be executed when a
70 *hook is executed.
71 */
72EFI_STATUS execute_hook(const char* name, void*, void*, void*, void*, void*, void*);
73VOID register_hook_callback(const char* name, void(*callback)(void*, void*, void*, void*, void*, void*));
74
75void rebase_location(UInt32* location, char* base, int type);
76void bind_location(UInt32* location, char* value, UInt32 addend, int type);
77void rebase_macho(void* base, char* rebase_stream, UInt32 size);
78EFI_STATUS bind_macho(char* module, void* base, char* bind_stream, UInt32 size);
79
80EFI_STATUS load_module(char* module);
81
82EFI_STATUS is_module_loaded(const char* name);
83VOID module_loaded(const char* name);
84
85long long add_symbol(char* module,char* symbol, long long addr, char is64);
86
87void* parse_mach(char *module, void* binary, EFI_STATUS(*dylib_loader)(char*), long long(*symbol_handler)(char*, char*, long long, char));
88
89unsigned int handle_symtable(char *module, UInt32 base,
90 struct symtab_command* symtabCommand,
91 long long(*symbol_handler)(char*, char*, long long, char),
92 char is64);
93
94unsigned int lookup_all_symbols(const char* module, const char* name);
95
96EFI_STATUS replace_function(const char* module, const char* symbol, void* newAddress);
97EFI_STATUS replace_system_function(const char* symbol, void* newAddress);
98EFI_STATUS replace_function_any(const char* symbol, void* newAddress);
99
100extern unsigned int (*lookup_symbol)(const char*, int(*strcmp_callback)(const char*, const char*));
101
102
103long InitBundleSupport(void);
104long FileLoadBundles(char *dirSpec, long plugin);
105long LoadBundlePList(char *dirSpec, char *name, long bundleType);
106long LoadMatchedBundles(void);
107long MatchBundlesLibraries(void);
108long LoadBundles( char * dirSpec );
109void * GetBundleDict( char * bundle_id );
110void * GetBundlePersonalities( char * bundle_id );
111char * GetBundlePath( char * bundle_id );
112
113#endif /* __BOOT_MODULES_H */

Archive Download this file

Revision: 1929