Chameleon

Chameleon Svn Source Tree

Root/branches/valv/i386/boot2/kernel_patcher.c

1/*
2 * Copyright (c) 2009 Evan Lojewski. All rights reserved.
3 *
4 */
5
6#include "libsaio.h"
7#include "kernel_patcher.h"
8#include "platform.h"
9
10extern PlatformInfo_t Platform;
11
12
13#define SYMBOL_CPUID_SET_INFO0
14#define SYMBOL_PANIC1
15#define SYMBOL_PMCPUEXITHALTTOOFF2
16#define SYMBOL_LAPIC_INIT3
17#define SYMBOL_COMMPAGE_STUFF_ROUTINE4
18#define NUM_SYMBOLS5
19
20#define SYMBOL_CPUID_SET_INFO_STRING"_cpuid_set_info"
21#define SYMBOL_PANIC_STRING"_panic"
22#define SYMBOL_PMCPUEXITHALTTOOFF_STRING"_pmCPUExitHaltToOff"
23#define SYMBOL_LAPIC_INIT_STRING"_lapic_init"
24#define SYMBOL_COMMPAGE_STUFF_ROUTINE_STRING"_commpage_stuff_routine"
25
26char* kernelSymbols[NUM_SYMBOLS] = {
27SYMBOL_CPUID_SET_INFO_STRING,
28SYMBOL_PANIC_STRING,
29SYMBOL_PMCPUEXITHALTTOOFF_STRING,
30SYMBOL_LAPIC_INIT_STRING,
31SYMBOL_COMMPAGE_STUFF_ROUTINE_STRING
32};
33
34UInt32 kernelSymbolAddresses[NUM_SYMBOLS] = {
350,
360,
370,
380,
390
40};
41
42
43UInt32 textSection = 0;
44UInt32 textAddress = 0;
45
46
47void patch_kernel(void* kernelData)
48{
49switch (locate_symbols((void*)kernelData)) {
50case KERNEL_32:
51patch_kernel_32((void*)kernelData);
52break;
53
54case KERNEL_64:
55default:
56patch_kernel_64((void*)kernelData);
57break;
58}
59}
60
61// patches a 64bit kernel.
62void patch_kernel_64(void* kernelData)
63{
64// At the moment, the kernel patching code fails when used
65// in 64bit mode, so we don't patch it. This is due to 32bit vs 64bit
66// pointers as well as changes in structure sizes
67printf("Unable to patch 64bit kernel. Please use arch=i386.\n");
68}
69
70
71/**
72 ** patch_kernel_32
73 **patches kernel based on cpu info determined earlier in the boot process.
74 **It the machine is vmware, remove the artificial lapic panic
75 **If the CPU is not supported, remove the cpuid_set_info panic
76 **If the CPU is and Intel Atom, inject the penryn cpuid info.
77 **/
78void patch_kernel_32(void* kernelData)
79{
80// Remove panic in commpage
81patch_commpage_stuff_routine(kernelData);
82
83//patch_pmCPUExitHaltToOff(kernelData);// Not working as intended, disabled for now
84
85//if(vmware_detected)
86{
87patch_lapic_init(kernelData);
88}
89
90switch(Platform.CPU.Model)
91{
92// Known good CPU's, no reason to patch kernel
93case 13:
94case CPUID_MODEL_YONAH:
95case CPUID_MODEL_MEROM:
96case CPUID_MODEL_PENRYN:
97case CPUID_MODEL_NEHALEM:
98case CPUID_MODEL_FIELDS:
99case CPUID_MODEL_DALES:
100case CPUID_MODEL_NEHALEM_EX:
101break;
102
103// Known unsuported CPU's
104case CPUID_MODEL_ATOM:
105// TODO: Impersonate CPU based on user selection
106patch_cpuid_set_info(kernelData, CPUFAMILY_INTEL_PENRYN, CPUID_MODEL_PENRYN);// Impersonate Penryn CPU
107break;
108
109// Unknown CPU's
110default:
111// TODO: Impersonate CPU based on user selection
112patch_cpuid_set_info(kernelData, 0, 0);// Remove Panic Call
113break;
114}
115}
116
117
118/**
119 **This functions located the kernelSymbols[i] symbols in the mach-o header.
120 **as well as determines the start of the __TEXT segment and __TEXT,__text sections
121 **/
122int locate_symbols(void* kernelData)
123{
124UInt16 symbolIndexes[NUM_SYMBOLS];
125
126struct load_command *loadCommand;
127struct symtab_command *symtableData;
128struct nlist *symbolEntry;
129
130char* symbolString;
131
132UInt32 kernelIndex = 0;
133kernelIndex += sizeof(struct mach_header);
134
135if(((struct mach_header*)kernelData)->magic != MH_MAGIC) return KERNEL_64;
136
137
138//printf("%d load commands beginning at 0x%X\n", (unsigned int)header->ncmds, (unsigned int)kernelIndex);
139//printf("Commands take up %d bytes\n", header->sizeofcmds);
140
141
142int cmd = 0;
143while(cmd < ((struct mach_header*)kernelData)->ncmds)// TODO: for loop instead
144{
145cmd++;
146
147loadCommand = kernelData + kernelIndex;
148
149UInt cmdSize = loadCommand->cmdsize;
150
151
152// Locate start of _panic and _cpuid_set_info in the symbol tabe.
153// Load commands should be anded with 0x7FFFFFFF to ignore theLC_REQ_DYLD flag
154if((loadCommand->cmd & 0x7FFFFFFF) == LC_SYMTAB)// We only care about the symtab segment
155{
156//printf("Located symtable, length is 0x%X, 0x%X\n", (unsigned int)loadCommand->cmdsize, (unsigned int)sizeof(symtableData));
157
158symtableData = kernelData + kernelIndex;
159kernelIndex += sizeof(struct symtab_command);
160
161cmdSize -= sizeof(struct symtab_command);
162
163// Loop through symbol table untill all of the symbols have been found
164
165symbolString = kernelData + symtableData->stroff;
166
167
168UInt16 symbolIndex = 0;
169UInt8 numSymbolsFound = 0;
170
171while(symbolIndex < symtableData->nsyms && numSymbolsFound < NUM_SYMBOLS)// TODO: for loop
172{
173int i = 0;
174while(i < NUM_SYMBOLS)
175{
176if(strcmp(symbolString, kernelSymbols[i]) == 0)
177{
178symbolIndexes[i] = symbolIndex;
179numSymbolsFound++;
180}
181i++;
182
183}
184symbolString += strlen(symbolString) + 1;
185symbolIndex++;
186}
187
188// loop again
189symbolIndex = 0;
190numSymbolsFound = 0;
191while(symbolIndex < symtableData->nsyms && numSymbolsFound < NUM_SYMBOLS)// TODO: for loop
192{
193
194symbolEntry = kernelData + symtableData->symoff + (symbolIndex * sizeof(struct nlist));
195
196int i = 0;
197while(i < NUM_SYMBOLS)
198{
199if(symbolIndex == (symbolIndexes[i] - 4))
200{
201kernelSymbolAddresses[i] = (UInt32)symbolEntry->n_value;
202numSymbolsFound++;
203}
204i++;
205
206}
207
208symbolIndex ++;
209}
210// Load commands should be anded with 0x7FFFFFFF to ignore theLC_REQ_DYLD flag
211} else if((loadCommand->cmd & 0x7FFFFFFF) == LC_SEGMENT)// We only care about the __TEXT segment, any other load command can be ignored
212{
213
214struct segment_command *segCommand;
215
216segCommand = kernelData + kernelIndex;
217
218//printf("Segment name is %s\n", segCommand->segname);
219
220if(strcmp("__TEXT", segCommand->segname) == 0)
221{
222UInt32 sectionIndex;
223
224sectionIndex = sizeof(struct segment_command);
225
226struct section *sect;
227
228while(sectionIndex < segCommand->cmdsize)
229{
230sect = kernelData + kernelIndex + sectionIndex;
231
232sectionIndex += sizeof(struct section);
233
234
235if(strcmp("__text", sect->sectname) == 0)
236{
237// __TEXT,__text found, save the offset and address for when looking for the calls.
238textSection = sect->offset;
239textAddress = sect->addr;
240break;
241}
242}
243}
244
245
246kernelIndex += cmdSize;
247} else {
248kernelIndex += cmdSize;
249}
250}
251
252return KERNEL_32;
253}
254
255
256/**
257 ** Locate the fisrt instance of _panic inside of _cpuid_set_info, and either remove it
258 ** Or replace it so that the cpuid is set to a valid value.
259 **/
260void patch_cpuid_set_info(void* kernelData, UInt32 impersonateFamily, UInt8 impersonateModel)
261{
262UInt8* bytes = (UInt8*)kernelData;
263UInt32 patchLocation = (kernelSymbolAddresses[SYMBOL_CPUID_SET_INFO] - textAddress + textSection);
264UInt32 jumpLocation = 0;
265UInt32 panicAddr = kernelSymbolAddresses[SYMBOL_PANIC] - textAddress;
266if(kernelSymbolAddresses[SYMBOL_CPUID_SET_INFO] == 0)
267{
268printf("Unable to locate _cpuid_set_info\n");
269return;
270
271}
272if(kernelSymbolAddresses[SYMBOL_PANIC] == 0)
273{
274printf("Unable to locate _panic\n");
275return;
276}
277
278//TODO: don't assume it'll always work (Look for *next* function address in symtab and fail once it's been reached)
279while(
280 (bytes[patchLocation -1] != 0xE8) ||
281 ( ( (UInt32)(panicAddr - patchLocation - 4) + textSection ) != (UInt32)((bytes[patchLocation + 0] << 0 |
282bytes[patchLocation + 1] << 8 |
283bytes[patchLocation + 2] << 16 |
284bytes[patchLocation + 3] << 24)))
285 )
286{
287patchLocation++;
288}
289patchLocation--;
290
291
292// Remove panic call, just in case the following patch routines fail
293bytes[patchLocation + 0] = 0x90;
294bytes[patchLocation + 1] = 0x90;
295bytes[patchLocation + 2] = 0x90;
296bytes[patchLocation + 3] = 0x90;
297bytes[patchLocation + 4] = 0x90;
298
299
300// Locate the jump call, so that 10 bytes can be reclamed.
301// NOTE: This will *NOT* be located on pre 10.6.2 kernels
302jumpLocation = patchLocation - 15;
303while((bytes[jumpLocation - 1] != 0x77 ||
304 bytes[jumpLocation] != (patchLocation - jumpLocation - -8)) &&
305 (patchLocation - jumpLocation) < 0xF0)
306{
307jumpLocation--;
308}
309
310// If found... AND we want to impersonate a specific cpumodel / family...
311if(impersonateFamily &&
312 impersonateModel &&
313 ((patchLocation - jumpLocation) < 0xF0))
314{
315
316bytes[jumpLocation] -= 10;// sizeof(movl$0x6b5a4cd2,0x00872eb4) = 10bytes
317
318/*
319 * Inpersonate the specified CPU FAMILY and CPU Model
320 */
321
322// bytes[patchLocation - 17] = 0xC7;// already here... not needed to be done
323// bytes[patchLocation - 16] = 0x05;// see above
324UInt32 cpuid_cpufamily_addr =bytes[patchLocation - 15] << 0 |
325bytes[patchLocation - 14] << 8 |
326bytes[patchLocation - 13] << 16 |
327bytes[patchLocation - 12] << 24;
328
329// NOTE: may change, determined based on cpuid_info struct
330UInt32 cpuid_model_addr = cpuid_cpufamily_addr - 299;
331
332
333// cpufamily = CPUFAMILY_INTEL_PENRYN
334bytes[patchLocation - 11] = (impersonateFamily & 0x000000FF) >> 0;
335bytes[patchLocation - 10] = (impersonateFamily & 0x0000FF00) >> 8;
336bytes[patchLocation - 9] = (impersonateFamily & 0x00FF0000) >> 16;
337bytes[patchLocation - 8] = (impersonateFamily & 0xFF000000) >> 24;
338
339// NOPS, just in case if the jmp call wasn't patched, we'll jump to a
340// nop and continue with the rest of the patch
341// Yay two free bytes :), 10 more can be reclamed if needed, as well as a few
342// from the above code (only cpuid_model needs to be set.
343bytes[patchLocation - 7] = 0x90;
344bytes[patchLocation - 6] = 0x90;
345
346bytes[patchLocation - 5] = 0xC7;
347bytes[patchLocation - 4] = 0x05;
348bytes[patchLocation - 3] = (cpuid_model_addr & 0x000000FF) >> 0;
349bytes[patchLocation - 2] = (cpuid_model_addr & 0x0000FF00) >> 8;
350bytes[patchLocation - 1] = (cpuid_model_addr & 0x00FF0000) >> 16;
351bytes[patchLocation - 0] = (cpuid_model_addr & 0xFF000000) >> 24;
352
353// Note: I could have just copied the 8bit cpuid_model in and saved about 4 bytes
354// so if this function need a different patch it's still possible. Also, about ten bytes previous can be freed.
355bytes[patchLocation + 1] = impersonateModel;// cpuid_model
356bytes[patchLocation + 2] = 0x01;// cpuid_extmodel
357bytes[patchLocation + 3] = 0x00;// cpuid_extfamily
358bytes[patchLocation + 4] = 0x02;// cpuid_stepping
359
360}
361else if(impersonateFamily && impersonateModel)
362{
363// pre 10.6.2 kernel
364// Locate the jump to directly *after* the panic call,
365jumpLocation = patchLocation - 4;
366while((bytes[jumpLocation - 1] != 0x77 ||
367 bytes[jumpLocation] != (patchLocation - jumpLocation + 4)) &&
368 (patchLocation - jumpLocation) < 0x20)
369{
370jumpLocation--;
371}
372// NOTE above isn't needed (I was going to use it, but I'm not, so instead,
373// I'll just leave it to verify the binary stucture.
374
375// NOTE: the cpumodel_familt data is not set in _cpuid_set_info
376// so we don't need to set it here, I'll get set later based on the model
377// we set now.
378
379if((patchLocation - jumpLocation) < 0x20)
380{
381UInt32 cpuid_model_addr =(bytes[patchLocation - 14] << 0 |
382bytes[patchLocation - 13] << 8 |
383bytes[patchLocation - 12] << 16 |
384bytes[patchLocation - 11] << 24);
385// Remove jump
386bytes[patchLocation - 9] = 0x90;/// Was a jump if supported cpu
387bytes[patchLocation - 8] = 0x90;// jumped past the panic call, we want to override the panic
388
389bytes[patchLocation - 7] = 0x90;
390bytes[patchLocation - 6] = 0x90;
391
392bytes[patchLocation - 5] = 0xC7;
393bytes[patchLocation - 4] = 0x05;
394bytes[patchLocation - 3] = (cpuid_model_addr & 0x000000FF) >> 0;
395bytes[patchLocation - 2] = (cpuid_model_addr & 0x0000FF00) >> 8;
396bytes[patchLocation - 1] = (cpuid_model_addr & 0x00FF0000) >> 16;
397bytes[patchLocation - 0] = (cpuid_model_addr & 0xFF000000) >> 24;
398
399// Note: I could have just copied the 8bit cpuid_model in and saved about 4 bytes
400// so if this function need a different patch it's still possible. Also, about ten bytes previous can be freed.
401bytes[patchLocation + 1] = impersonateModel;// cpuid_model
402bytes[patchLocation + 2] = 0x01;// cpuid_extmodel
403bytes[patchLocation + 3] = 0x00;// cpuid_extfamily
404bytes[patchLocation + 4] = 0x02;// cpuid_stepping
405
406
407
408patchLocation = jumpLocation;
409// We now have 14 bytes available for a patch
410
411}
412else
413{
414// Patching failed, using NOP replacement done initialy
415}
416}
417else
418{
419// Either We were unable to change the jump call due to the function's sctructure
420// changing, or the user did not request a patch. As such, resort to just
421// removing the panic call (using NOP replacement above). Note that the
422// IntelCPUPM kext may still panic due to the cpu's Model ID not being patched
423}
424}
425
426
427/**
428 ** SleepEnabler.kext replacement (for those that need it)
429 ** Located the KERN_INVALID_ARGUMENT return and replace it with KERN_SUCCESS
430 **/
431void patch_pmCPUExitHaltToOff(void* kernelData)
432{
433UInt8* bytes = (UInt8*)kernelData;
434UInt32 patchLocation = (kernelSymbolAddresses[SYMBOL_PMCPUEXITHALTTOOFF] - textAddress + textSection);
435
436if(kernelSymbolAddresses[SYMBOL_PMCPUEXITHALTTOOFF] == 0)
437{
438printf("Unable to locate _pmCPUExitHaltToOff\n");
439return;
440}
441
442while(bytes[patchLocation - 1]!= 0xB8 ||
443 bytes[patchLocation]!= 0x04 ||// KERN_INVALID_ARGUMENT (0x00000004)
444 bytes[patchLocation + 1]!= 0x00 ||// KERN_INVALID_ARGUMENT
445 bytes[patchLocation + 2]!= 0x00 ||// KERN_INVALID_ARGUMENT
446 bytes[patchLocation + 3]!= 0x00)// KERN_INVALID_ARGUMENT
447
448{
449patchLocation++;
450}
451bytes[patchLocation] = 0x00;// KERN_SUCCESS;
452}
453
454void patch_lapic_init(void* kernelData)
455{
456UInt8 panicIndex = 0;
457UInt8* bytes = (UInt8*)kernelData;
458UInt32 patchLocation = (kernelSymbolAddresses[SYMBOL_LAPIC_INIT] - textAddress + textSection);
459UInt32 panicAddr = kernelSymbolAddresses[SYMBOL_PANIC] - textAddress;
460
461if(kernelSymbolAddresses[SYMBOL_LAPIC_INIT] == 0)
462{
463printf("Unable to locate %s\n", SYMBOL_LAPIC_INIT_STRING);
464return;
465
466}
467if(kernelSymbolAddresses[SYMBOL_PANIC] == 0)
468{
469printf("Unable to locate %s\n", SYMBOL_PANIC_STRING);
470return;
471}
472
473
474
475// Locate the (panicIndex + 1) panic call
476while(panicIndex < 3)// Find the third panic call
477{
478while(
479 (bytes[patchLocation -1] != 0xE8) ||
480 ( ( (UInt32)(panicAddr - patchLocation - 4) + textSection ) != (UInt32)((bytes[patchLocation + 0] << 0 |
481bytes[patchLocation + 1] << 8 |
482bytes[patchLocation + 2] << 16 |
483bytes[patchLocation + 3] << 24)))
484 )
485{
486patchLocation++;
487}
488patchLocation++;
489panicIndex++;
490}
491patchLocation--;// Remove extra increment from the < 3 while loop
492
493bytes[--patchLocation] = 0x90;
494bytes[++patchLocation] = 0x90;
495bytes[++patchLocation] = 0x90;
496bytes[++patchLocation] = 0x90;
497bytes[++patchLocation] = 0x90;
498
499
500}
501
502
503void patch_commpage_stuff_routine(void* kernelData)
504{
505UInt8* bytes = (UInt8*)kernelData;
506UInt32 patchLocation = (kernelSymbolAddresses[SYMBOL_COMMPAGE_STUFF_ROUTINE] - textAddress + textSection);
507UInt32 panicAddr = kernelSymbolAddresses[SYMBOL_PANIC] - textAddress;
508
509if(kernelSymbolAddresses[SYMBOL_COMMPAGE_STUFF_ROUTINE] == 0)
510{
511printf("Unable to locate %s\n", SYMBOL_COMMPAGE_STUFF_ROUTINE_STRING);
512return;
513
514}
515if(kernelSymbolAddresses[SYMBOL_PANIC] == 0)
516{
517printf("Unable to locate %s\n", SYMBOL_PANIC_STRING);
518return;
519}
520
521
522while(
523 (bytes[patchLocation -1] != 0xE8) ||
524 ( ( (UInt32)(panicAddr - patchLocation - 4) + textSection ) != (UInt32)((bytes[patchLocation + 0] << 0 |
525bytes[patchLocation + 1] << 8 |
526bytes[patchLocation + 2] << 16 |
527bytes[patchLocation + 3] << 24)))
528 )
529{
530patchLocation++;
531}
532patchLocation--;
533
534
535// Remove panic call, just in case the following patch routines fail
536bytes[patchLocation + 0] = 0x90;
537bytes[patchLocation + 1] = 0x90;
538bytes[patchLocation + 2] = 0x90;
539bytes[patchLocation + 3] = 0x90;
540bytes[patchLocation + 4] = 0x90;
541
542
543}
544

Archive Download this file

Revision: 706