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
|
/*
Quick and dirty test to ensure that all functions are actually in the library.
How to compile for DOS (all mode(l)s: tiny/.COM, small/.EXE, huge/.EXE, unreal/.EXE, 32-bit DPMI/.EXE):
smlrcc -dost libf.c -o libfdt.com
smlrcc -doss libf.c -o libfds.exe
smlrcc -dosh libf.c -o libfdh.exe
smlrcc -dosu libf.c -o libfdu.exe
smlrcc -dosp libf.c -o libfdp.exe
How to compile for Windows:
smlrcc -win libf.c -o libfw.exe
How to compile for Linux:
smlrcc -linux libf.c -o libfl
How to compile for MacOS:
smlrcc -macos libf.c -o libfm
*/
#include <assert.h>
#include <stdint.h>
#include <ctype.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/lng.h>
#ifdef _WINDOWS
void __ExitProcess();
void ExitProcess();
char* __GetCommandLineA();
char* GetCommandLineA();
unsigned __GetStdHandle();
unsigned GetStdHandle();
unsigned __GetFileType();
unsigned GetFileType();
int __CloseHandle();
int CloseHandle();
unsigned __GetLastError();
unsigned GetLastError();
void __SetLastError();
void SetLastError();
unsigned __GetProcessHeap();
unsigned GetProcessHeap();
void* __HeapAlloc();
void* HeapAlloc();
int __HeapFree();
int HeapFree();
void* __HeapReAlloc();
void* HeapReAlloc();
unsigned __CreateFileA();
unsigned CreateFileA();
int __DeleteFileA();
int DeleteFileA();
int __MoveFileA();
int MoveFileA();
int __ReadFile();
int ReadFile();
int __WriteFile();
int WriteFile();
unsigned __SetFilePointer();
unsigned SetFilePointer();
unsigned __GetFileAttributesA();
unsigned GetFileAttributesA();
unsigned __GetEnvironmentVariableA();
unsigned GetEnvironmentVariableA();
unsigned __GetTickCount();
unsigned GetTickCount();
void __GetSystemTime();
void GetSystemTime();
int __SystemTimeToTzSpecificLocalTime();
int SystemTimeToTzSpecificLocalTime();
int __TzSpecificLocalTimeToSystemTime();
int TzSpecificLocalTimeToSystemTime();
int __CreateProcessA();
int CreateProcessA();
int __GetExitCodeProcess();
int GetExitCodeProcess();
unsigned __WaitForSingleObject();
unsigned WaitForSingleObject();
void* __SetUnhandledExceptionFilter();
void* SetUnhandledExceptionFilter();
void* __LoadLibraryExA();
void* LoadLibraryExA();
int __FreeLibrary();
int FreeLibrary();
void (*__GetProcAddress())();
void (*GetProcAddress())();
#endif
uintptr_t must_be_present[] =
{
// <ctype.h>
isalnum,
isalpha,
isblank,
iscntrl,
isdigit,
isgraph,
islower,
isprint,
ispunct,
isspace,
isupper,
isxdigit,
tolower,
toupper,
// <locale.h>
setlocale,
localeconv,
// <math.h>
#ifdef __SMALLER_C_32__
frexp,
frexpf,
ldexp,
ldexpf,
modf,
modff,
fabs,
fabsf,
ceil,
ceilf,
floor,
floorf,
round,
roundf,
trunc,
truncf,
sqrt,
sqrtf,
hypot,
hypotf,
exp,
expf,
exp2,
exp2f,
expm1,
expm1f,
pow,
powf,
log,
logf,
log2,
log2f,
log10,
log10f,
sin,
sinf,
cos,
cosf,
tan,
tanf,
atan2,
atan2f,
atan,
atanf,
acos,
acosf,
asin,
asinf,
fmod,
fmodf,
cosh,
coshf,
sinh,
sinhf,
tanh,
tanhf,
#endif
// <setjmp.h>
setjmp,
longjmp,
// <signal.h>
signal,
raise,
// <stdio.h>
fopen,
freopen,
fflush,
fclose,
remove,
rename,
fread,
fgetc,
getc,
getchar,
fgets,
gets,
ungetc,
fwrite,
fputc,
putc,
putchar,
fputs,
puts,
perror,
#ifdef __SMALLER_C_32__
ftell,
fseek,
#endif
__ftell,
__fseek,
rewind,
fgetpos,
fsetpos,
clearerr,
ferror,
feof,
setvbuf,
setbuf,
__fileno,
fileno,
tmpnam,
tmpfile,
vfprintf,
fprintf,
vprintf,
printf,
vsprintf,
sprintf,
vsnprintf,
snprintf,
vfscanf,
fscanf,
vscanf,
scanf,
vsscanf,
sscanf,
// <stdlib.h>
abort,
_Exit,
exit,
atexit,
malloc,
calloc,
free,
realloc,
abs,
#ifdef __SMALLER_C_32__
labs,
#endif
div,
#ifdef __SMALLER_C_32__
ldiv,
#endif
atoi,
#ifdef __SMALLER_C_32__
atol,
strtol,
strtoul,
strtof,
strtod,
atof,
#endif
rand,
srand,
bsearch,
qsort,
getenv,
system,
// <string.h>
memset,
memcpy,
memmove,
memchr,
memcmp,
strcpy,
strncpy,
strxfrm,
strcat,
strncat,
strlen,
strchr,
strrchr,
strstr,
strspn,
strcspn,
strpbrk,
strtok,
strcmp,
strncmp,
strcoll,
strerror,
// <time.h>
#ifdef __SMALLER_C_32__
clock,
time,
gmtime,
localtime,
mktime,
ctime,
difftime,
#endif
asctime,
strftime,
// <fcntl.h>
__creat,
creat,
__open,
open,
// <unistd.h>
__close,
close,
#ifdef __SMALLER_C_32__
__lseek,
lseek,
#endif
__lseekp,
__read,
read,
__write,
write,
__unlink,
unlink,
__isatty,
isatty,
// <sys/lng.h>
__lngFromUnsigned,
__lngFromSigned,
__lngToUnsigned,
__lngToSigned,
__lngAdd,
__lngSub,
__lngEq,
__lngUnsignedLess,
__lngSignedLess,
__lngLessThan0,
#ifdef _WINDOWS
__ExitProcess,
ExitProcess,
__GetCommandLineA,
GetCommandLineA,
__GetStdHandle,
GetStdHandle,
__GetFileType,
GetFileType,
__CloseHandle,
CloseHandle,
__GetLastError,
GetLastError,
__SetLastError,
SetLastError,
__GetProcessHeap,
GetProcessHeap,
__HeapAlloc,
HeapAlloc,
__HeapFree,
HeapFree,
__HeapReAlloc,
HeapReAlloc,
__CreateFileA,
CreateFileA,
__DeleteFileA,
DeleteFileA,
__MoveFileA,
MoveFileA,
__ReadFile,
ReadFile,
__WriteFile,
WriteFile,
__SetFilePointer,
SetFilePointer,
__GetFileAttributesA,
GetFileAttributesA,
__GetEnvironmentVariableA,
GetEnvironmentVariableA,
__GetTickCount,
GetTickCount,
__GetSystemTime,
GetSystemTime,
__SystemTimeToTzSpecificLocalTime,
SystemTimeToTzSpecificLocalTime,
__TzSpecificLocalTimeToSystemTime,
TzSpecificLocalTimeToSystemTime,
__CreateProcessA,
CreateProcessA,
__GetExitCodeProcess,
GetExitCodeProcess,
__WaitForSingleObject,
WaitForSingleObject,
__SetUnhandledExceptionFilter,
SetUnhandledExceptionFilter,
__LoadLibraryExA,
LoadLibraryExA,
__FreeLibrary,
FreeLibrary,
__GetProcAddress,
GetProcAddress,
#endif
};
uintptr_t aliases[][2] =
{
__fileno,
fileno,
__creat,
creat,
__open,
open,
__close,
close,
#ifdef __SMALLER_C_32__
__lseek,
lseek,
#endif
__read,
read,
__write,
write,
__unlink,
unlink,
__isatty,
isatty,
#ifdef _WINDOWS
__ExitProcess,
ExitProcess,
__GetCommandLineA,
GetCommandLineA,
__GetStdHandle,
GetStdHandle,
__GetFileType,
GetFileType,
__CloseHandle,
CloseHandle,
__GetLastError,
GetLastError,
__SetLastError,
SetLastError,
__GetProcessHeap,
GetProcessHeap,
__HeapAlloc,
HeapAlloc,
__HeapFree,
HeapFree,
__HeapReAlloc,
HeapReAlloc,
__CreateFileA,
CreateFileA,
__DeleteFileA,
DeleteFileA,
__MoveFileA,
MoveFileA,
__ReadFile,
ReadFile,
__WriteFile,
WriteFile,
__SetFilePointer,
SetFilePointer,
__GetFileAttributesA,
GetFileAttributesA,
__GetEnvironmentVariableA,
GetEnvironmentVariableA,
__GetTickCount,
GetTickCount,
__GetSystemTime,
GetSystemTime,
__SystemTimeToTzSpecificLocalTime,
SystemTimeToTzSpecificLocalTime,
__TzSpecificLocalTimeToSystemTime,
TzSpecificLocalTimeToSystemTime,
__CreateProcessA,
CreateProcessA,
__GetExitCodeProcess,
GetExitCodeProcess,
__WaitForSingleObject,
WaitForSingleObject,
__SetUnhandledExceptionFilter,
SetUnhandledExceptionFilter,
__LoadLibraryExA,
LoadLibraryExA,
__FreeLibrary,
FreeLibrary,
__GetProcAddress,
GetProcAddress,
#endif
};
#ifdef __HUGE__
#define __HUGE_OR_UNREAL__
#endif
#ifdef __UNREAL__
#define __HUGE_OR_UNREAL__
#endif
int main(void)
{
unsigned i;
#ifdef __SMALLER_C_16__
extern unsigned short __getCS(void);
extern unsigned short __getSS(void);
// In Small Model .EXE programs code and data/stack are in two
// different segments and so instructions can't be accessed as data.
if (__getCS() == __getSS())
// fallthrough
#endif
for (i = 0; i < sizeof aliases / sizeof aliases[0]; i++)
{
uintptr_t impl = aliases[i][0];
uintptr_t wrap = aliases[i][1];
uint8_t* p = wrap;
uintptr_t target;
#ifdef __HUGE_OR_UNREAL__
assert(*p == 0xEA); // jmp sel16:ofs16
memcpy(&target, p + 1, sizeof target);
target = ((target >> 16) << 4) + (target & 0xFFFF);
#else
assert(*p == 0xE9); // jmp rel16/32
memcpy(&target, p + 1, sizeof target);
p += target + 1 + sizeof target;
target = p;
#endif
assert(target == impl);
}
puts("All functions present!");
return 0;
}
|