summaryrefslogtreecommitdiff
path: root/lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
blob: 321b3ec5d41405d245232f64d28c1ec7d8d5c761 (plain)
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
//===- FuzzerExtFunctionsDlsymWin.cpp - Interface to external functions ---===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// Implementation using dynamic loading for Windows.
//===----------------------------------------------------------------------===//
#include "FuzzerDefs.h"
#if LIBFUZZER_WINDOWS

#include "FuzzerExtFunctions.h"
#include "FuzzerIO.h"
#include "Windows.h"

// This must be included after Windows.h.
#include "Psapi.h"

namespace fuzzer {

ExternalFunctions::ExternalFunctions() {
  HMODULE Modules[1024];
  DWORD BytesNeeded;
  HANDLE CurrentProcess = GetCurrentProcess();

  if (!EnumProcessModules(CurrentProcess, Modules, sizeof(Modules),
                          &BytesNeeded)) {
    Printf("EnumProcessModules failed (error: %d).\n", GetLastError());
    exit(1);
  }

  if (sizeof(Modules) < BytesNeeded) {
    Printf("Error: the array is not big enough to hold all loaded modules.\n");
    exit(1);
  }

  for (size_t i = 0; i < (BytesNeeded / sizeof(HMODULE)); i++)
  {
    FARPROC Fn;
#define EXT_FUNC(NAME, RETURN_TYPE, FUNC_SIG, WARN)                            \
    if (this->NAME == nullptr) {                                               \
      Fn = GetProcAddress(Modules[i], #NAME);                                  \
      if (Fn == nullptr)                                                       \
         Fn = GetProcAddress(Modules[i], #NAME "__dll");                       \
      this->NAME = (decltype(ExternalFunctions::NAME)) Fn;                     \
    }
#include "FuzzerExtFunctions.def"
#undef EXT_FUNC
  }

#define EXT_FUNC(NAME, RETURN_TYPE, FUNC_SIG, WARN)                            \
  if (this->NAME == nullptr && WARN)                                           \
    Printf("WARNING: Failed to find function \"%s\".\n", #NAME);
#include "FuzzerExtFunctions.def"
#undef EXT_FUNC
}

} // namespace fuzzer

#endif // LIBFUZZER_WINDOWS