Chameleon

Chameleon Commit Details

Date:2010-08-09 05:12:50 (13 years 8 months ago)
Author:Evan Lojewski
Commit:333
Parents: 332
Message:Initial version of the module system. Basic at the moment, needs a lot of work. Modules (should) be able to link with any function or global variable exported by chameleon. Modules currently *cannot* lonk with each other, if you try to, bad things might happen. Lots fo verbose / debugging information is int modules.c. If you write a module that doesn't load properly, upload a copy of the module, the source, and the issues you are having to the issue tracker and I'll try to fix the bug.
Changes:
A/branches/meklort/i386/boot2/modules.c
A/branches/meklort/i386/boot2/modules.h
M/branches/meklort/i386/boot2/boot.c
M/branches/meklort/i386/libsaio/table.c
M/branches/meklort/i386/modules/Symbols/Makefile
M/branches/meklort/i386/modules/HelloWorld/Makefile
M/branches/meklort/i386/boot2/Makefile

File differences

branches/meklort/i386/libsaio/table.c
7676
7777
7878
79
80
79
80
81
82
8183
8284
8385
/* 0x8 : boot protected mode 32-bit code segment
byte granularity, 1MB limit, MEMBASE offset */
{0xFFFF, MEMBASE, 0x00, 0x9E, 0x4F, 0x00},
//{0xFFFF, MEMBASE, 0x00, 0x9E, 0x4F, 0x00},
{0xFFFF, 0x0000, 0x00, 0x9E, 0xCF, 0x00},
// TODO: Restore the correct GDT 0x8 entry before exiting the bootloader
/* 0x10 : boot protected mode data segment
page granularity, 4GB limit, MEMBASE offset */
{0xFFFF, MEMBASE, 0x00, 0x92, 0xCF, 0x00},
branches/meklort/i386/boot2/Makefile
4242
4343
4444
45
45
4646
4747
4848
# The ordering is important;
# boot2.o must be first.
OBJS = boot2.o boot.o graphics.o drivers.o prompt.o options.o lzss.o mboot.o \
ramdisk.o kernel_patcher.o picopng.o resume.o bmdecompress.o graphic_utils.o gui.o
ramdisk.o picopng.o resume.o bmdecompress.o graphic_utils.o gui.o modules.o kernel_patcher.o
# button.o browser.o scrollbar.o == NOTYET
UTILDIR = ../util
branches/meklort/i386/boot2/boot.c
5959
6060
6161
62
6263
6364
6465
......
284285
285286
286287
288
289
290
291
287292
288293
289294
#include "gui.h"
#include "platform.h"
#include "resolution.h"
#include "modules.h"
long gBootMode; /* defaults to 0 == kBootModeNormal */
bool gOverrideKernel;
// Loading preboot ramdisk if exists.
loadPrebootRAMDisk();
// Intialize module system
load_module(SYMBOLS_MODULE);
load_module("HelloWorld");
// Disable rescan option by default
gEnableCDROMRescan = false;
branches/meklort/i386/boot2/modules.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
/*
* Copyright 2009 Evan Lojewski. All rights reserved.
*
*/
#include "boot.h"
#include "bootstruct.h"
#include "multiboot.h"
#include "modules.h"
unsigned int (*lookup_symbol)(const char*) = NULL;
void rebase_macho(void* base, char* rebase_stream, UInt32 size);
void bind_macho(void* base, char* bind_stream, UInt32 size);
int load_module(const char* module)
{
char modString[128];
int fh = -1;
sprintf(modString, "/Extra/modules/%s.dylib", module);
fh = open(modString, 0);
if(fh < 0)
{
printf("Unable to locate module %s\n", modString);
getc();
return ERROR;
}
unsigned int moduleSize = file_size(fh);
char* module_base = (char*) malloc(moduleSize);
if (read(fh, module_base, moduleSize) == moduleSize)
{
void (*module_start)(void) = NULL;
printf("Module %s read in.\n", modString);
// Module loaded into memory, parse it
module_start = parse_mach(module_base);
if(module_start)
{
(*module_start)();// Start the module
printf("Module started\n");
}
else {
printf("Unabel to locate module start\n");
}
getc();
// TODO: Add module to loaded list if loaded successfuly
}
else
{
printf("Unable to read in module %s.dylib\n.", module);
getc();
}
return 1;
}
void* parse_mach(void* binary)
{
int (*module_init)(void) = NULL;
void (*module_start)(void) = NULL;
char* moduleName = NULL;
UInt32 moduleVersion = 0;
UInt32 moduleCompat = 0;
char* symbolStub = NULL;
char* nonlazy = NULL;
char* nonlazy_variables = NULL;
char* symbolTable = NULL;
// TODO convert all of the structs a union
struct load_command *loadCommand;
struct dylib_command* dylibCommand;
struct dyld_info_command* dyldInfoCommand;
struct symtab_command* symtabCommand;
struct segment_command* segmentCommand;
struct dysymtab_command* dysymtabCommand;
struct section* section;
UInt32 binaryIndex = sizeof(struct mach_header);
UInt16 cmd = 0;
// Parse hthrough th eload commands
if(((struct mach_header*)binary)->magic != MH_MAGIC)
{
printf("Module is not 32bit\n");
return NULL;// 32bit only
}
if(((struct mach_header*)binary)->filetype != MH_DYLIB)
{
printf("Module is not a dylib. Unable to load.\n");
return NULL; // Module is in the incorrect format
}
while(cmd < ((struct mach_header*)binary)->ncmds)// TODO: for loop instead
{
cmd++;
loadCommand = binary + binaryIndex;
UInt32 cmdSize = loadCommand->cmdsize;
switch ((loadCommand->cmd & 0x7FFFFFFF))
{
case LC_SYMTAB:
symtabCommand = binary + binaryIndex;
UInt32 symbolIndex = 0;
char* symbolString = (UInt32)binary + (char*)symtabCommand->stroff;
symbolTable = binary + symtabCommand->symoff;
int externalIndex = 0;
while(symbolIndex < symtabCommand->nsyms)
{
struct nlist* symbolEntry = binary + symtabCommand->symoff + (symbolIndex * sizeof(struct nlist));
// If the symbol is exported by this module
if(symbolEntry->n_value)
{
if(strcmp(symbolString + symbolEntry->n_un.n_strx, "_start") == 0)
{
// Module init located. Don't register it, only called once
module_init = binary + symbolEntry->n_value;
}
else if(strcmp(symbolString + symbolEntry->n_un.n_strx, "start") == 0)
{
// Module start located. Start is an alias so don't register it
module_start = binary + symbolEntry->n_value;
}
else
{
add_symbol(symbolString + symbolEntry->n_un.n_strx, binary + symbolEntry->n_value);
}
}
// External symbol
else if(symbolEntry->n_type & 0x01 && symbolStub)
{
printf("Located external symbol %s", symbolString + symbolEntry->n_un.n_strx);
printf(" stub at 0x%X, (0x%X)\n", symbolStub + STUB_ENTRY_SIZE * externalIndex - (UInt32)binary, symbolStub + STUB_ENTRY_SIZE * externalIndex);
getc();
// Patch stub
if(lookup_symbol == NULL)
{
printf("Symbol.dylib not loaded. Module loader not setup.\n");
return NULL;
}
else
{
void* symbolAddress = (void*)lookup_symbol(symbolString + symbolEntry->n_un.n_strx);
if((0xFFFFFFFF == (UInt32)symbolAddress) &&
strcmp(symbolString + symbolEntry->n_un.n_strx, SYMBOL_DYLD_STUB_BINDER) != 0)
{
printf("Unable to locate symbol %s\n", symbolString + symbolEntry->n_un.n_strx);
}
else
{
char* patchLocation = symbolStub + STUB_ENTRY_SIZE * externalIndex;
//patch with far jump ;
/*
printf("0x%X 0x%X 0x%X 0x%X 0x%X 0x%X\n",
patchLocation[0],
patchLocation[1],
patchLocation[2],
patchLocation[3],
patchLocation[4],
patchLocation[5]);
*/
// Point the symbol stub to the nonlazy pointers
patchLocation[0] = 0xFF;// Should already be this
patchLocation[1] = 0x25;// Should already be this
patchLocation[2] = ((UInt32)(nonlazy + externalIndex * 4) & 0x000000FF) >> 0;
patchLocation[3] = ((UInt32)(nonlazy + externalIndex * 4) & 0x0000FF00) >> 8;
patchLocation[4] = ((UInt32)(nonlazy + externalIndex * 4) & 0x00FF0000) >> 16;
patchLocation[5] = ((UInt32)(nonlazy + externalIndex * 4) & 0xFF000000) >> 24;
// Set the nonlazy pointer to the correct address
patchLocation = (nonlazy + externalIndex*4);
patchLocation[0] =((UInt32)symbolAddress & 0x000000FF) >> 0;
patchLocation[1] =((UInt32)symbolAddress & 0x0000FF00) >> 8;
patchLocation[2] =((UInt32)symbolAddress & 0x00FF0000) >> 16;
patchLocation[3] =((UInt32)symbolAddress & 0xFF000000) >> 24;
externalIndex++;
}
}
}
symbolEntry+= sizeof(struct nlist);
symbolIndex++;// TODO remove
}
break;
case LC_SEGMENT:
segmentCommand = binary + binaryIndex;
UInt32 sections = segmentCommand->nsects;
section = binary + binaryIndex + sizeof(struct segment_command);
while(sections)
{
// Look for the __symbol_stub section
if(strcmp(section->sectname, "__nl_symbol_ptr") == 0)
{
/*printf("\tSection non lazy pointers at 0x%X, %d symbols\n",
section->offset,
section->size / 4);
*/
switch(section->flags)
{
case S_NON_LAZY_SYMBOL_POINTERS:
nonlazy_variables = binary + section->offset;
break;
case S_LAZY_SYMBOL_POINTERS:
nonlazy = binary + section->offset;
// Fucntions
break;
default:
printf("Unhandled __nl_symbol_ptr section\n");
getc();
break;
}
//getc();
}
else if(strcmp(section->sectname, "__symbol_stub") == 0)
{
/*printf("\tSection __symbol_stub at 0x%X (0x%X), %d symbols\n",
section->offset,
section->size / 6);*/
symbolStub = binary + section->offset;
//getc();
}
sections--;
section++;
}
break;
case LC_DYSYMTAB:
dysymtabCommand = binary + binaryIndex;
//printf("Unhandled loadcommand LC_DYSYMTAB\n");
break;
case LC_LOAD_DYLIB:
//printf("Unhandled loadcommand LC_LOAD_DYLIB\n");
break;
case LC_ID_DYLIB:
dylibCommand = binary + binaryIndex;
moduleName =binary + binaryIndex + ((UInt32)*((UInt32*)&dylibCommand->dylib.name));
moduleVersion =dylibCommand->dylib.current_version;
moduleCompat =dylibCommand->dylib.compatibility_version;
break;
case LC_DYLD_INFO:
dyldInfoCommand = binary + binaryIndex;
/*
printf("LC_DYLD_INFO:\n"
"\tRebase Offset: 0x%X\n"
"\tBind Offset: 0x%X\n"
"\tWeak Bind Offset: 0x%X\n"
"\tLazy Bind Offset: 0x%X\n"
"\tExport Offset: 0x%X\n",
dyldInfoCommand->rebase_off,
dyldInfoCommand->bind_off,
dyldInfoCommand->weak_bind_off,
dyldInfoCommand->lazy_bind_off,
dyldInfoCommand->export_off);
*/
if(dyldInfoCommand->bind_off)
{
bind_macho(binary, (char*)dyldInfoCommand->bind_off, dyldInfoCommand->bind_size);
}
/*
// This is done later on using the __symbol_stub instead
if(dyldInfoCommand->lazy_bind_off)
{
bind_macho(binary, (char*)dyldInfoCommand->lazy_bind_off, dyldInfoCommand->lazy_bind_size);
}*/
if(dyldInfoCommand->rebase_off)
{
rebase_macho(binary, (char*)dyldInfoCommand->rebase_off, dyldInfoCommand->rebase_size);
}
break;
case LC_UUID:
// We don't care about the UUID at the moment
break;
default:
printf("Unhandled loadcommand 0x%X\n", loadCommand->cmd & 0x7FFFFFFF);
break;
}
binaryIndex += cmdSize;
}
if(!moduleName) return NULL;
// TODO: Initialize the module.
printf("Calling _start\n");
getc();
if(module_init)
{
jump_pointer(module_init);
}
module_loaded(moduleName, moduleVersion, moduleCompat);
getc();
//*/
return module_start; // TODO populate w/ address of _start
}
// This is for debugging, remove the jump_pointer funciton later
int jump_pointer(int (*pointer)())
{
printf("Jumping to function at 0x%X\n", pointer);
getc();
return (*pointer)();
}
// Based on code from dylibinfo.cpp and ImageLoaderMachOCompressed.cpp
void rebase_macho(void* base, char* rebase_stream, UInt32 size)
{
rebase_stream += (UInt32)base;
UInt8 immediate = 0;
UInt8 opcode = 0;
UInt8 type = 0;
UInt32 segmentAddress = 0;
UInt32 address = 0;
UInt32 tmp = 0;
UInt32 tmp2 = 0;
UInt8 bits = 0;
int index = 0;
int done = 0;
unsigned int i = 0;
while(/*!done &&*/ i < size)
{
immediate = rebase_stream[i] & REBASE_IMMEDIATE_MASK;
opcode = rebase_stream[i] & REBASE_OPCODE_MASK;
switch(opcode)
{
case REBASE_OPCODE_DONE:
// Rebase complete.
done = 1;
break;
case REBASE_OPCODE_SET_TYPE_IMM:
// Set rebase type (pointer, absolute32, pcrel32)
//printf("Rebase type = 0x%X\n", immediate);
// NOTE: This is currently NOT used
type = immediate;
break;
case REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB:
// Locate address to begin rebasing
segmentAddress = 0;
struct segment_command* segCommand = NULL;
unsigned int binIndex = 0;
index = 0;
do
{
segCommand = base + sizeof(struct mach_header) + binIndex;
binIndex += segCommand->cmdsize;
index++;
}
while(index <= immediate);
segmentAddress = segCommand->fileoff;
tmp = 0;
bits = 0;
do
{
tmp |= (rebase_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(rebase_stream[i] & 0x80);
segmentAddress += tmp;
//printf("Address = 0x%X\n", segmentAddress);
break;
case REBASE_OPCODE_ADD_ADDR_ULEB:
// Add value to rebase address
tmp = 0;
bits = 0;
do
{
tmp <<= bits;
tmp |= rebase_stream[++i] & 0x7f;
bits += 7;
}
while(rebase_stream[i] & 0x80);
address +=tmp;
//printf("Address (add) = 0x%X\n", address);
break;
case REBASE_OPCODE_ADD_ADDR_IMM_SCALED:
address += immediate * sizeof(void*);
//printf("Address (immscaled) = 0x%X\n", address);
break;
case REBASE_OPCODE_DO_REBASE_IMM_TIMES:
//printf("Rebase %d time(s)\n", immediate);
index = 0;
for (index = 0; index < immediate; ++index) {
//printf("\tRebasing 0x%X\n", segmentAddress);
UInt32* addr = base + segmentAddress;
addr[0] += (UInt32)base;
segmentAddress += sizeof(void*);
}
break;
case REBASE_OPCODE_DO_REBASE_ULEB_TIMES:
tmp = 0;
bits = 0;
do
{
tmp |= (rebase_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(rebase_stream[i] & 0x80);
//printf("Rebase %d time(s)\n", tmp);
index = 0;
for (index = 0; index < tmp; ++index) {
//printf("\tRebasing 0x%X\n", segmentAddress);
UInt32* addr = base + segmentAddress;
addr[0] += (UInt32)base;
segmentAddress += sizeof(void*);
}
break;
case REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB:
tmp = 0;
bits = 0;
do
{
tmp |= (rebase_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(rebase_stream[i] & 0x80);
//printf("Rebase and add 0x%X\n", tmp);
//printf("\tRebasing 0x%X\n", segmentAddress);
UInt32* addr = base + segmentAddress;
addr[0] += (UInt32)base;
segmentAddress += tmp + sizeof(void*);
break;
case REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_ULEB:
tmp = 0;
bits = 0;
do
{
tmp |= (rebase_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(rebase_stream[i] & 0x80);
tmp2 = 0;
bits = 0;
do
{
tmp2 |= (rebase_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(rebase_stream[i] & 0x80);
//printf("Rebase 0x%X times, skiping 0x%X\n",tmp, tmp2);
index = 0;
for (index = 0; index < tmp; ++index) {
//printf("\tRebasing 0x%X\n", segmentAddress);
UInt32* addr = base + segmentAddress;
addr[0] += (UInt32)base;
segmentAddress += tmp2 + sizeof(void*);
}
break;
}
i++;
}
}
// Based on code from dylibinfo.cpp and ImageLoaderMachOCompressed.cpp
// NOTE: this uses 32bit values, and not 64bit values.
// There is apossibility that this could cause issues,
// however the macho file is 32 bit, so it shouldn't matter too much
void bind_macho(void* base, char* bind_stream, UInt32 size)
{
bind_stream += (UInt32)base;
UInt8 immediate = 0;
UInt8 opcode = 0;
UInt8 type = 0;
UInt32 segmentAddress = 0;
UInt32 address = 0;
SInt32 addend = 0;
SInt32 libraryOrdinal = 0;
const char* symbolName = NULL;
UInt8 symboFlags = 0;
UInt32 symbolAddr = 0xFFFFFFFF;
// Temperary variables
UInt8 bits = 0;
UInt32 tmp = 0;
UInt32 tmp2 = 0;
UInt32 index = 0;
int done = 0;
unsigned int i = 0;
while(/*!done &&*/ i < size)
{
immediate = bind_stream[i] & BIND_IMMEDIATE_MASK;
opcode = bind_stream[i] & BIND_OPCODE_MASK;
switch(opcode)
{
case BIND_OPCODE_DONE:
done = 1;
break;
case BIND_OPCODE_SET_DYLIB_ORDINAL_IMM:
libraryOrdinal = immediate;
//printf("BIND_OPCODE_SET_DYLIB_ORDINAL_IMM: %d\n", libraryOrdinal);
break;
case BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB:
libraryOrdinal = 0;
bits = 0;
do
{
libraryOrdinal |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
//printf("BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB: %d\n", libraryOrdinal);
break;
case BIND_OPCODE_SET_DYLIB_SPECIAL_IMM:
// NOTE: this is wrong, fortunately we don't use it
libraryOrdinal = -immediate;
//printf("BIND_OPCODE_SET_DYLIB_SPECIAL_IMM: %d\n", libraryOrdinal);
break;
case BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM:
symboFlags = immediate;
symbolName = (char*)&bind_stream[++i];
i += strlen((char*)&bind_stream[i]);
//printf("BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM: %s, 0x%X\n", symbolName, symboFlags);
symbolAddr = lookup_symbol(symbolName);
break;
case BIND_OPCODE_SET_TYPE_IMM:
// Set bind type (pointer, absolute32, pcrel32)
type = immediate;
//printf("BIND_OPCODE_SET_TYPE_IMM: %d\n", type);
break;
case BIND_OPCODE_SET_ADDEND_SLEB:
addend = 0;
bits = 0;
do
{
addend |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
if(!(bind_stream[i-1] & 0x40)) addend *= -1;
//printf("BIND_OPCODE_SET_ADDEND_SLEB: %d\n", addend);
break;
case BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB:
segmentAddress = 0;
// Locate address
struct segment_command* segCommand = NULL;
unsigned int binIndex = 0;
index = 0;
do
{
segCommand = base + sizeof(struct mach_header) + binIndex;
binIndex += segCommand->cmdsize;
index++;
}
while(index <= immediate);
segmentAddress = segCommand->fileoff;
// Read in offset
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
segmentAddress += tmp;
//printf("BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB: 0x%X\n", segmentAddress);
break;
case BIND_OPCODE_ADD_ADDR_ULEB:
// Read in offset
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
segmentAddress += tmp;
//printf("BIND_OPCODE_ADD_ADDR_ULEB: 0x%X\n", segmentAddress);
break;
case BIND_OPCODE_DO_BIND:
//printf("BIND_OPCODE_DO_BIND\n");
if(symbolAddr != 0xFFFFFFFF)
{
address = segmentAddress + (UInt32)base;
((char*)address)[0] = (symbolAddr & 0x000000FF) >> 0;
((char*)address)[1] = (symbolAddr & 0x0000FF00) >> 8;
((char*)address)[2] = (symbolAddr & 0x00FF0000) >> 16;
((char*)address)[3] = (symbolAddr & 0xFF000000) >> 24;
}
else if(strcmp(symbolName, SYMBOL_DYLD_STUB_BINDER) != 0)
{
printf("Unable to bind symbol %s\n", symbolName);
}
segmentAddress += sizeof(void*);
break;
case BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB:
//printf("BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB\n");
// Read in offset
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
if(symbolAddr != 0xFFFFFFFF)
{
address = segmentAddress + (UInt32)base;
((char*)address)[0] = (symbolAddr & 0x000000FF) >> 0;
((char*)address)[1] = (symbolAddr & 0x0000FF00) >> 8;
((char*)address)[2] = (symbolAddr & 0x00FF0000) >> 16;
((char*)address)[3] = (symbolAddr & 0xFF000000) >> 24;
}
else if(strcmp(symbolName, SYMBOL_DYLD_STUB_BINDER) != 0)
{
printf("Unable to bind symbol %s\n", symbolName);
}
segmentAddress += tmp + sizeof(void*);
break;
case BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED:
//printf("BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED\n");
if(symbolAddr != 0xFFFFFFFF)
{
address = segmentAddress + (UInt32)base;
((char*)address)[0] = (symbolAddr & 0x000000FF) >> 0;
((char*)address)[1] = (symbolAddr & 0x0000FF00) >> 8;
((char*)address)[2] = (symbolAddr & 0x00FF0000) >> 16;
((char*)address)[3] = (symbolAddr & 0xFF000000) >> 24;
}
else if(strcmp(symbolName, SYMBOL_DYLD_STUB_BINDER) != 0)
{
printf("Unable to bind symbol %s\n", symbolName);
}
segmentAddress += (immediate * sizeof(void*)) + sizeof(void*);
break;
case BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB:
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
tmp2 = 0;
bits = 0;
do
{
tmp2 |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
//printf("BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB 0x%X 0x%X\n", tmp, tmp2);
if(symbolAddr != 0xFFFFFFFF)
{
for(index = 0; index < tmp; index++)
{
address = segmentAddress + (UInt32)base;
((char*)address)[0] = (symbolAddr & 0x000000FF) >> 0;
((char*)address)[1] = (symbolAddr & 0x0000FF00) >> 8;
((char*)address)[2] = (symbolAddr & 0x00FF0000) >> 16;
((char*)address)[3] = (symbolAddr & 0xFF000000) >> 24;
segmentAddress += tmp2 + sizeof(void*);
}
}
else if(strcmp(symbolName, SYMBOL_DYLD_STUB_BINDER) != 0)
{
printf("Unable to bind symbol %s\n", symbolName);
}
break;
}
i++;
}
}
/*
* add_symbol
* This function adds a symbol from a module to the list of known symbols
* TODO: actualy do something...
* possibly change to a pointer and add this to the Symbol module
*/
void add_symbol(const char* symbol, void* addr)
{
printf("Adding symbol %s at 0x%X\n", symbol, addr);
//hack
if(strcmp(symbol, "_lookup_symbol") == 0)
{
printf("Initializing lookup symbol function\n");
lookup_symbol = addr;
}
}
/*
* print out the information about the loaded module
* In the future, add to a list of laoded modules
* so that if another module depends on it we don't
* try to reload the same module.
*/
void module_loaded(const char* name, UInt32 version, UInt32 compat)
{
printf("\%s.dylib Version %d.%d.%d oaded\n"
"\tCompatibility Version: %d.%d.%d\n",
name,
(version >> 16) & 0xFFFF,
(version >> 8) & 0x00FF,
(version >> 0) & 0x00FF,
(compat >> 16) & 0xFFFF,
(compat >> 8) & 0x00FF,
(compat >> 0) & 0x00FF);
}
branches/meklort/i386/boot2/modules.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* Module Loading functionality
* Copyright 2009 Evan Lojewski. All rights reserved.
*
*/
#include <mach-o/loader.h>
#include <mach-o/nlist.h>
#ifndef __BOOT_MODULES_H
#define __BOOT_MODULES_H
#define SYMBOLS_MODULE "Symbols"
#define SYMBOL_DYLD_STUB_BINDER"dyld_stub_binder"
#define STUB_ENTRY_SIZE6
#define SUCCESS1
#defineERROR0
int jump_pointer(int (*pointer)());
int load_module(const char* module);
void module_loaded(const char* name, UInt32 version, UInt32 compat);
void add_symbol(const char* symbol, void* addr);
void* parse_mach(void* binary);
#endif /* __BOOT_MODULES_H */
branches/meklort/i386/modules/Symbols/Makefile
6262
6363
6464
65
6566
6667
6768
-dylib -read_only_relocs suppress \
-S -x -dead_strip_dylibs \
-no_uuid \
-bind_at_load \
-current_version $(MODULE_VERSION) -compatibility_version `svn info ../../ | grep Revision | awk '{print $$2}'` \
-final_output $(MODULE_NAME) \
$(OBJROOT)/$(MODULE_NAME)Init.o $(OBJROOT)/Symbols.o -o $(SYMROOT)/$(MODULE_NAME).dylib \
branches/meklort/i386/modules/HelloWorld/Makefile
6969
7070
7171
72
7273
7374
7475
-dylib -read_only_relocs suppress \
-S -x -dead_strip_dylibs \
-no_uuid \
-bind_at_load \
-current_version $(MODULE_VERSION) -compatibility_version $(MODULE_COMPAT_VERSION) \
-final_output $(MODULE_NAME) \
$(OBJROOT)/$(MODULE_NAME)Init.o \

Archive Download the corresponding diff file

Revision: 333