|
| 1 | +/** |
| 2 | + * vim: set ts=4 : |
| 3 | + * ============================================================================= |
| 4 | + * SourceMod |
| 5 | + * Copyright (C) 2004-2007 AlliedModders LLC. All rights reserved. |
| 6 | + * ============================================================================= |
| 7 | + * |
| 8 | + * This program is free software; you can redistribute it and/or modify it under |
| 9 | + * the terms of the GNU General Public License, version 3.0, as published by the |
| 10 | + * Free Software Foundation. |
| 11 | + * |
| 12 | + * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| 14 | + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
| 15 | + * details. |
| 16 | + * |
| 17 | + * You should have received a copy of the GNU General Public License along with |
| 18 | + * this program. If not, see <http://www.gnu.org/licenses/>. |
| 19 | + * |
| 20 | + * As a special exception, AlliedModders LLC gives you permission to link the |
| 21 | + * code of this program (as well as its derivative works) to "Half-Life 2," the |
| 22 | + * "Source Engine," the "SourcePawn JIT," and any Game MODs that run on software |
| 23 | + * by the Valve Corporation. You must obey the GNU General Public License in |
| 24 | + * all respects for all other code used. Additionally, AlliedModders LLC grants |
| 25 | + * this exception to all derivative works. AlliedModders LLC defines further |
| 26 | + * exceptions, found in LICENSE.txt (as of this writing, version JULY-31-2007), |
| 27 | + * or <http://www.sourcemod.net/license.php>. |
| 28 | + * |
| 29 | + * Version: $Id: detourhelpers.h 248 2008-08-27 00:56:22Z pred $ |
| 30 | + */ |
| 31 | + |
| 32 | +#ifndef _INCLUDE_SOURCEMOD_DETOURHELPERS_H_ |
| 33 | +#define _INCLUDE_SOURCEMOD_DETOURHELPERS_H_ |
| 34 | + |
| 35 | +//#define DETOURHELPERS_LOG(...) L4D_DEBUG_LOG(__VA_ARGS__) |
| 36 | +#define DETOURHELPERS_LOG(...) |
| 37 | + |
| 38 | +#if defined PLATFORM_LINUX |
| 39 | +#include <sys/mman.h> |
| 40 | +#define PAGE_SIZE 4096 |
| 41 | +#define ALIGN(ar) ((long)ar & ~(PAGE_SIZE-1)) |
| 42 | +#define PAGE_EXECUTE_READWRITE PROT_READ|PROT_WRITE|PROT_EXEC |
| 43 | +#else |
| 44 | +#ifndef WIN32_LEAN_AND_MEAN |
| 45 | +#define WIN32_LEAN_AND_MEAN |
| 46 | +#endif |
| 47 | +#include <windows.h> |
| 48 | +#endif |
| 49 | + |
| 50 | +struct patch_t |
| 51 | +{ |
| 52 | + patch_t() |
| 53 | + { |
| 54 | + patch[0] = 0; |
| 55 | + bytes = 0; |
| 56 | + } |
| 57 | + unsigned char patch[20]; |
| 58 | + size_t bytes; |
| 59 | +}; |
| 60 | + |
| 61 | +inline void ProtectMemory(void *addr, int length, int prot) |
| 62 | +{ |
| 63 | + DETOURHELPERS_LOG("Protecting memory..."); |
| 64 | + |
| 65 | +#if defined PLATFORM_LINUX |
| 66 | + void *addr2 = (void *)ALIGN(addr); |
| 67 | + void *addr3 = (void*)ALIGN((unsigned char*)((unsigned char*)addr + length)); |
| 68 | + mprotect(addr2, sysconf(_SC_PAGESIZE), prot); |
| 69 | + |
| 70 | + /* sometimes our [addr, addr+patch->bytes] may span more than one code page |
| 71 | + this is fairly rare. thankfully since our patch->bytes is at most 20 , |
| 72 | + it will span at most 2 code pages |
| 73 | + */ |
| 74 | + if( addr3 != addr2) |
| 75 | + { |
| 76 | + DETOURHELPERS_LOG("Protecting memory across 2 code pages..."); |
| 77 | + mprotect(addr3, sysconf(_SC_PAGESIZE), prot); |
| 78 | + } |
| 79 | +#elif defined PLATFORM_WINDOWS |
| 80 | + DWORD old_prot; |
| 81 | + VirtualProtect(addr, length, prot, &old_prot); |
| 82 | +#endif |
| 83 | +} |
| 84 | + |
| 85 | +inline void SetMemPatchable(void *address, size_t size) |
| 86 | +{ |
| 87 | + ProtectMemory(address, (int)size, PAGE_EXECUTE_READWRITE); |
| 88 | +} |
| 89 | + |
| 90 | +inline void DoGatePatch(unsigned char *target, void *callback) |
| 91 | +{ |
| 92 | + SetMemPatchable(target, 20); |
| 93 | + |
| 94 | + target[0] = 0xFF; /* JMP */ |
| 95 | + target[1] = 0x25; /* MEM32 */ |
| 96 | + *(void **)(&target[2]) = callback; |
| 97 | +} |
| 98 | + |
| 99 | +inline void ApplyPatch(void *address, int offset, const patch_t *patch, patch_t *restore) |
| 100 | +{ |
| 101 | + ProtectMemory(address, 20, PAGE_EXECUTE_READWRITE); |
| 102 | + |
| 103 | + unsigned char *addr = (unsigned char *)address + offset; |
| 104 | + if (restore) |
| 105 | + { |
| 106 | + for (size_t i=0; i<patch->bytes; i++) |
| 107 | + { |
| 108 | + restore->patch[i] = addr[i]; |
| 109 | + } |
| 110 | + restore->bytes = patch->bytes; |
| 111 | + } |
| 112 | + |
| 113 | + DETOURHELPERS_LOG("Copying new patch into memory..."); |
| 114 | + for (size_t i=0; i<patch->bytes; i++) |
| 115 | + { |
| 116 | + DETOURHELPERS_LOG("Copying new patch into memory byte %d/%d...", i+1, patch->bytes); |
| 117 | + addr[i] = patch->patch[i]; |
| 118 | + } |
| 119 | +} |
| 120 | + |
| 121 | +#endif //_INCLUDE_SOURCEMOD_DETOURHELPERS_H_ |
0 commit comments