summaryrefslogtreecommitdiffhomepage
path: root/Kernel/CFKit/LoaderUtils.hxx
blob: 3edacc67fefca6409401dc41de076101d17ffafd (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
#ifndef __CFKIT_LOADER_UTILS_HXX__
#define __CFKIT_LOADER_UTILS_HXX__

#include <KernelKit/PE.hxx>
#include <KernelKit/MSDOS.hxx>

namespace Kernel
{
	/// @brief Find the PE header inside the blob.
	inline auto ldr_find_exec_header(DosHeaderPtr ptrDos) -> ExecHeaderPtr
	{
		if (!ptrDos)
			return nullptr;

		if (ptrDos->eMagic[0] != kMagMz0)
			return nullptr;

		if (ptrDos->eMagic[1] != kMagMz1)
			return nullptr;

		return (ExecHeaderPtr)(VoidPtr)(&ptrDos->eLfanew + 1);
	}

	/// @brief Find the PE optional header inside the blob.
	inline auto ldr_find_opt_exec_header(DosHeaderPtr ptrDos) -> ExecOptionalHeaderPtr
	{
		if (!ptrDos)
			return nullptr;

        auto exec = ldr_find_exec_header(ptrDos);

        if (!exec)
            return nullptr;

		return (ExecOptionalHeaderPtr)(VoidPtr)(&exec->mCharacteristics + 1);
	}

	/// @brief Find the PE header inside the blob.
	/// @note overloaded function.
	inline auto ldr_find_exec_header(const Char* ptrDos) -> ExecHeaderPtr
	{
	   return ldr_find_exec_header((DosHeaderPtr)ptrDos);
	}


	/// @brief Find the PE header inside the blob.
	/// @note overloaded function.
	inline auto ldr_find_opt_exec_header(const Char* ptrDos) -> ExecOptionalHeaderPtr
	{
	   return ldr_find_opt_exec_header((DosHeaderPtr)ptrDos);
	}
} // namespace Kernel

#endif // ifndef __CFKIT_LOADER_UTILS_HXX__