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/*
8 * Copyright 2012 Cadet-petit Armel <armelcadetpetit@gmail.com>. All rights reserved.
9 *
10 * Cleaned, Added bundles support.
11 *
12 */
13
14// There is a bug with the module system / rebasing / binding
15// that causes static variables to be incorrectly rebased or bound
16// Disable static variables for the moment
17// #define static
18
19#ifndef __BOOT_MODULES_H
20#define __BOOT_MODULES_H
21
22#include <mach-o/loader.h>
23#include <mach-o/nlist.h>
24#include "efi.h"
25
26extern unsigned long long textAddress;
27extern unsigned long long textSection;
28
29typedef struct symbolList_t
30{
31 char* module;
32char* symbol;
33unsigned int addr;
34struct symbolList_t* next;
35} symbolList_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_BUNDLE "Symbols"
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
59#define SYS_CLASS "SYMS"
60#define SYSLIB_CLASS "SYS_LIB"
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
80long long add_symbol(char* module,char* symbol, long long addr, char is64);
81
82unsigned int parse_mach(char *module, void* binary, long long(*symbol_handler)(char*, char*, long long, char));
83
84unsigned int handle_symtable(char *module, UInt32 base,
85 struct symtab_command* symtabCommand,
86 long long(*symbol_handler)(char*, char*, long long, char),
87 char is64);
88
89unsigned int lookup_all_symbols(const char* module, const char* name);
90
91EFI_STATUS replace_function(const char* module, const char* symbol, void* newAddress);
92EFI_STATUS replace_system_function(const char* symbol, void* newAddress);
93EFI_STATUS replace_function_any(const char* symbol, void* newAddress);
94
95extern unsigned int (*lookup_symbol)(const char*, int(*strcmp_callback)(const char*, const char*));
96
97
98long InitBundleSupport(void);
99long FileLoadBundles(char *dirSpec, long plugin);
100long LoadBundlePList(char *dirSpec, char *name, long bundleType);
101long LoadMatchedBundles(void);
102long MatchBundlesLibraries(void);
103long LoadBundles( char * dirSpec );
104void * GetBundleDict( char * bundle_id );
105void * GetBundlePersonality( char * bundle_id );
106char * GetBundlePath( char * bundle_id );
107
108#endif /* __BOOT_MODULES_H */

Archive Download this file

Revision: 1984