wibo/main.cpp

149 lines
4.1 KiB
C++
Raw Normal View History

2022-06-13 00:20:18 +00:00
#include "common.h"
#include <asm/ldt.h>
#include <errno.h>
#include <memory>
#include <sys/mman.h>
#include <sys/syscall.h>
2022-06-28 23:07:04 +00:00
#include <stdarg.h>
2022-06-13 00:20:18 +00:00
uint32_t wibo::lastError = 0;
char *wibo::commandLine;
2022-06-28 23:07:04 +00:00
void wibo::debug_log(const char *fmt, ...) {
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
}
2022-06-28 21:08:23 +00:00
static int stubIndex = 0;
static char stubDlls[0x100][0x100];
static char stubFuncNames[0x100][0x100];
static void stubBase(int index) {
2022-06-13 00:20:18 +00:00
// should go through all the functions imported by mwcceppc.exe
// and create template stubs for them, at least...
2022-06-28 23:07:04 +00:00
DEBUG_LOG("Unhandled function %s (%s)\n", stubFuncNames[index], stubDlls[index]);
2022-06-13 00:20:18 +00:00
exit(0);
}
2022-06-28 21:08:23 +00:00
void (*stubFuncs[0x100])(void) = {
#define DEFINE_STUB(a, b, c, d) []() { stubBase(a << 6 | b << 4 | c << 2 | d); },
#define DEFINE_STUBS(a, b) \
DEFINE_STUB(a, b, 0, 0) DEFINE_STUB(a, b, 0, 1) DEFINE_STUB(a, b, 0, 2) DEFINE_STUB(a, b, 0, 3) \
DEFINE_STUB(a, b, 1, 0) DEFINE_STUB(a, b, 1, 1) DEFINE_STUB(a, b, 1, 2) DEFINE_STUB(a, b, 1, 3) \
DEFINE_STUB(a, b, 2, 0) DEFINE_STUB(a, b, 2, 1) DEFINE_STUB(a, b, 2, 2) DEFINE_STUB(a, b, 2, 3) \
DEFINE_STUB(a, b, 3, 0) DEFINE_STUB(a, b, 3, 1) DEFINE_STUB(a, b, 3, 2) DEFINE_STUB(a, b, 3, 3)
DEFINE_STUBS(0, 0) DEFINE_STUBS(0, 1) DEFINE_STUBS(0, 2) DEFINE_STUBS(0, 3)
DEFINE_STUBS(1, 0) DEFINE_STUBS(1, 1) DEFINE_STUBS(1, 2) DEFINE_STUBS(1, 3)
DEFINE_STUBS(2, 0) DEFINE_STUBS(2, 1) DEFINE_STUBS(2, 2) DEFINE_STUBS(2, 3)
DEFINE_STUBS(3, 0) DEFINE_STUBS(3, 1) DEFINE_STUBS(3, 2) DEFINE_STUBS(3, 3)
};
#undef DEFINE_STUB
#undef DEFINE_STUBS
2022-06-13 00:20:18 +00:00
uint32_t __attribute__((stdcall)) CoInitialize(void *pvReserved) {
2022-06-28 23:07:04 +00:00
DEBUG_LOG("CoInitialize(...)\n");
2022-06-13 00:20:18 +00:00
return 0; // S_OK I think?
}
void *wibo::resolveStubByName(const char *dllName, const char *funcName) {
if (strcmp(dllName, "KERNEL32.dll") == 0) {
void *func = wibo::resolveKernel32(funcName);
if (func)
return func;
}
2022-06-28 21:08:23 +00:00
if (strcmp(dllName, "USER32.dll") == 0) {
void *func = wibo::resolveUser32(funcName);
if (func)
return func;
}
2022-06-13 00:20:18 +00:00
if (strcmp(dllName, "ADVAPI32.dll") == 0) {
void *func = wibo::resolveAdvApi32(funcName);
if (func)
return func;
}
2022-06-28 21:08:23 +00:00
if (strcmp(dllName, "VERSION.dll") == 0) {
void *func = wibo::resolveVersion(funcName);
if (func)
return func;
}
2022-06-13 00:20:18 +00:00
if (strcmp(dllName, "ole32.dll") == 0) {
if (strcmp(funcName, "CoInitialize") == 0) return (void *) CoInitialize;
}
2022-06-28 23:07:04 +00:00
DEBUG_LOG("Missing function: %s (%s)\n", dllName, funcName);
2022-06-28 21:08:23 +00:00
assert(stubIndex < 0x100);
assert(strlen(dllName) < 0x100);
assert(strlen(funcName) < 0x100);
strcpy(stubFuncNames[stubIndex], funcName);
strcpy(stubDlls[stubIndex], dllName);
return (void *) stubFuncs[stubIndex++];
2022-06-13 00:20:18 +00:00
}
void *wibo::resolveStubByOrdinal(const char *dllName, uint16_t ordinal) {
2022-06-28 23:07:04 +00:00
if (strcmp(dllName, "LMGR11.dll") == 0) {
void* func = wibo::resolveLmgr11(ordinal);
if (func)
return func;
}
2022-06-28 21:08:23 +00:00
assert(stubIndex < 0x100);
assert(strlen(dllName) < 0x100);
sprintf(stubFuncNames[stubIndex], "%d", ordinal);
strcpy(stubDlls[stubIndex], dllName);
return (void *) stubFuncs[stubIndex++];
2022-06-13 00:20:18 +00:00
}
// Windows Thread Information Block
struct TIB {
void *sehFrame;
void *stackBase;
void *stackLimit;
void *subSystemTib;
void *fiberData;
void *arbitraryDataSlot;
TIB *tib;
};
int main(int argc, char **argv) {
// Create TIB
TIB tib;
tib.tib = &tib;
struct user_desc tibDesc;
tibDesc.entry_number = 0;
tibDesc.base_addr = (unsigned int) &tib;
tibDesc.limit = 0x1000;
tibDesc.seg_32bit = 1;
tibDesc.contents = 0; // hopefully this is ok
tibDesc.read_exec_only = 0;
tibDesc.limit_in_pages = 0;
tibDesc.seg_not_present = 0;
tibDesc.useable = 1;
if (syscall(SYS_modify_ldt, 1, &tibDesc, sizeof tibDesc) != 0) {
perror("Failed to modify LDT\n");
return 1;
}
// Build a command line (todo, fill this with argv etc)
wibo::commandLine = new char[1024];
strcpy(wibo::commandLine, "mwcceppc.exe");
wibo::Executable exec;
FILE *f = fopen("mwcceppc.exe", "rb");
exec.loadPE(f);
fclose(f);
uint16_t tibSegment = (tibDesc.entry_number << 3) | 7;
// Invoke the damn thing
asm(
"movw %0, %%fs; call *%1"
:
: "r"(tibSegment), "r"(exec.entryPoint)
);
2022-06-28 23:07:04 +00:00
DEBUG_LOG("We came back\n");
2022-06-13 00:20:18 +00:00
return 0;
}