зеркало из https://github.com/mozilla/gecko-dev.git
179 строки
5.4 KiB
C++
179 строки
5.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "mozilla/NativeNt.h"
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
#include <stdio.h>
|
|
#include <windows.h>
|
|
|
|
const wchar_t kNormal[] = L"Foo.dll";
|
|
const wchar_t kHex12[] = L"Foo.ABCDEF012345.dll";
|
|
const wchar_t kHex15[] = L"ABCDEF012345678.dll";
|
|
const wchar_t kHex16[] = L"ABCDEF0123456789.dll";
|
|
const wchar_t kHex17[] = L"ABCDEF0123456789a.dll";
|
|
const wchar_t kHex24[] = L"ABCDEF0123456789cdabef98.dll";
|
|
const wchar_t kHex8[] = L"01234567.dll";
|
|
const wchar_t kNonHex12[] = L"Foo.ABCDEFG12345.dll";
|
|
const wchar_t kHex13[] = L"Foo.ABCDEF0123456.dll";
|
|
const wchar_t kHex11[] = L"Foo.ABCDEF01234.dll";
|
|
const wchar_t kPrefixedHex16[] = L"Pabcdef0123456789.dll";
|
|
|
|
const char kFailFmt[] =
|
|
"TEST-FAILED | NativeNt | %s(%s) should have returned %s but did not\n";
|
|
|
|
#define RUN_TEST(fn, varName, expected) \
|
|
if (fn(varName) == !expected) { \
|
|
printf(kFailFmt, #fn, #varName, #expected); \
|
|
return 1; \
|
|
}
|
|
|
|
#define EXPECT_FAIL(fn, varName) RUN_TEST(fn, varName, false)
|
|
|
|
#define EXPECT_SUCCESS(fn, varName) RUN_TEST(fn, varName, true)
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::nt;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
UNICODE_STRING normal;
|
|
::RtlInitUnicodeString(&normal, kNormal);
|
|
|
|
UNICODE_STRING hex12;
|
|
::RtlInitUnicodeString(&hex12, kHex12);
|
|
|
|
UNICODE_STRING hex16;
|
|
::RtlInitUnicodeString(&hex16, kHex16);
|
|
|
|
UNICODE_STRING hex24;
|
|
::RtlInitUnicodeString(&hex24, kHex24);
|
|
|
|
UNICODE_STRING hex8;
|
|
::RtlInitUnicodeString(&hex8, kHex8);
|
|
|
|
UNICODE_STRING nonHex12;
|
|
::RtlInitUnicodeString(&nonHex12, kNonHex12);
|
|
|
|
UNICODE_STRING hex13;
|
|
::RtlInitUnicodeString(&hex13, kHex13);
|
|
|
|
UNICODE_STRING hex11;
|
|
::RtlInitUnicodeString(&hex11, kHex11);
|
|
|
|
UNICODE_STRING hex15;
|
|
::RtlInitUnicodeString(&hex15, kHex15);
|
|
|
|
UNICODE_STRING hex17;
|
|
::RtlInitUnicodeString(&hex17, kHex17);
|
|
|
|
UNICODE_STRING prefixedHex16;
|
|
::RtlInitUnicodeString(&prefixedHex16, kPrefixedHex16);
|
|
|
|
EXPECT_FAIL(Contains12DigitHexString, normal);
|
|
EXPECT_SUCCESS(Contains12DigitHexString, hex12);
|
|
EXPECT_FAIL(Contains12DigitHexString, hex13);
|
|
EXPECT_FAIL(Contains12DigitHexString, hex11);
|
|
EXPECT_FAIL(Contains12DigitHexString, hex16);
|
|
EXPECT_FAIL(Contains12DigitHexString, nonHex12);
|
|
|
|
EXPECT_FAIL(IsFileNameAtLeast16HexDigits, normal);
|
|
EXPECT_FAIL(IsFileNameAtLeast16HexDigits, hex12);
|
|
EXPECT_SUCCESS(IsFileNameAtLeast16HexDigits, hex24);
|
|
EXPECT_SUCCESS(IsFileNameAtLeast16HexDigits, hex16);
|
|
EXPECT_SUCCESS(IsFileNameAtLeast16HexDigits, hex17);
|
|
EXPECT_FAIL(IsFileNameAtLeast16HexDigits, hex8);
|
|
EXPECT_FAIL(IsFileNameAtLeast16HexDigits, hex15);
|
|
EXPECT_FAIL(IsFileNameAtLeast16HexDigits, prefixedHex16);
|
|
|
|
if (RtlGetProcessHeap() != ::GetProcessHeap()) {
|
|
printf("TEST-FAILED | NativeNt | RtlGetProcessHeap() is broken\n");
|
|
return 1;
|
|
}
|
|
|
|
if (RtlGetCurrentThreadId() != ::GetCurrentThreadId()) {
|
|
printf("TEST-FAILED | NativeNt | RtlGetCurrentThreadId() is broken\n");
|
|
return 1;
|
|
}
|
|
|
|
const wchar_t kKernel32[] = L"kernel32.dll";
|
|
DWORD verInfoSize = ::GetFileVersionInfoSizeW(kKernel32, nullptr);
|
|
if (!verInfoSize) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Call to GetFileVersionInfoSizeW failed with "
|
|
"code %lu\n",
|
|
::GetLastError());
|
|
return 1;
|
|
}
|
|
|
|
auto verInfoBuf = MakeUnique<char[]>(verInfoSize);
|
|
|
|
if (!::GetFileVersionInfoW(kKernel32, 0, verInfoSize, verInfoBuf.get())) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Call to GetFileVersionInfoW failed with code "
|
|
"%lu\n",
|
|
::GetLastError());
|
|
return 1;
|
|
}
|
|
|
|
UINT len;
|
|
VS_FIXEDFILEINFO* fixedFileInfo = nullptr;
|
|
if (!::VerQueryValueW(verInfoBuf.get(), L"\\", (LPVOID*)&fixedFileInfo,
|
|
&len)) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Call to VerQueryValueW failed with code "
|
|
"%lu\n",
|
|
::GetLastError());
|
|
return 1;
|
|
}
|
|
|
|
const uint64_t expectedVersion =
|
|
(static_cast<uint64_t>(fixedFileInfo->dwFileVersionMS) << 32) |
|
|
static_cast<uint64_t>(fixedFileInfo->dwFileVersionLS);
|
|
|
|
PEHeaders k32headers(::GetModuleHandleW(kKernel32));
|
|
if (!k32headers) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Failed parsing kernel32.dll's PE headers\n");
|
|
return 1;
|
|
}
|
|
|
|
uint64_t version;
|
|
if (!k32headers.GetVersionInfo(version)) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Unable to obtain version information from "
|
|
"kernel32.dll\n");
|
|
return 1;
|
|
}
|
|
|
|
if (version != expectedVersion) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | kernel32.dll's detected version "
|
|
"(0x%016llX) does not match expected version (0x%016llX)\n",
|
|
version, expectedVersion);
|
|
return 1;
|
|
}
|
|
|
|
Maybe<Span<IMAGE_THUNK_DATA>> iatThunks =
|
|
k32headers.GetIATThunksForModule("kernel32.dll");
|
|
if (iatThunks) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Detected the IAT thunk for kernel32 "
|
|
"in kernel32.dll\n");
|
|
return 1;
|
|
}
|
|
|
|
iatThunks = k32headers.GetIATThunksForModule("ntdll.dll");
|
|
if (!iatThunks) {
|
|
printf(
|
|
"TEST-FAILED | NativeNt | Unable to find the IAT thunk for "
|
|
"ntdll.dll in kernel32.dll\n");
|
|
return 1;
|
|
}
|
|
|
|
printf("TEST-PASS | NativeNt | All tests ran successfully\n");
|
|
return 0;
|
|
}
|