diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-04-20 17:04:24 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-04-20 17:06:22 +0200 |
commit | abc7a2f0b862f192c562d62053fc210b778cedb1 (patch) | |
tree | 352840c79f95b1c2dd01a5017222614975cc33e8 /DriverThread.hpp | |
parent | 3d51ea5b54a55c5417236ed00212d1e3d5134dd2 (diff) |
Added MT support for ring0 drivers.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'DriverThread.hpp')
-rw-r--r-- | DriverThread.hpp | 45 |
1 files changed, 40 insertions, 5 deletions
diff --git a/DriverThread.hpp b/DriverThread.hpp index 39f5a89..a15b3d1 100644 --- a/DriverThread.hpp +++ b/DriverThread.hpp @@ -3,20 +3,55 @@ #include <ntddk.h> -#define TERMINATE_MYSELF(ntstatus) PsTerminateSystemThread(ntstatus); +extern "C" void InterceptorThreadRoutine(PVOID threadContext); + +typedef NTSTATUS (*threadRoutine_t)(PVOID); namespace DriverThread { +class Mutex +{ +public: + Mutex(void); + ~Mutex(void); + +private: + void Lock(); + void Unlock(); + + volatile long int m_interlock; + + friend class LockGuard; +}; + +class LockGuard +{ +public: + LockGuard(Mutex & m); + ~LockGuard(void); + +private: + Mutex m_Lock; +}; + class Thread { public: - Thread(); - NTSTATUS Start(PKSTART_ROUTINE threadRoutine, PVOID threadContext); + Thread(void); + ~Thread(void); + NTSTATUS Start(threadRoutine_t routine, PVOID threadContext); NTSTATUS WaitForTermination(LONGLONG timeout = 0); + HANDLE GetThreadId(void); private: - PETHREAD m_threadObject; + friend void ::InterceptorThreadRoutine(PVOID threadContext); + + HANDLE m_threadId = nullptr; + PETHREAD m_threadObject = nullptr; + Mutex m_mutex; + threadRoutine_t m_routine; + PVOID m_threadContext; }; class Spinlock @@ -33,7 +68,7 @@ private: class Semaphore { public: - explicit Semaphore(LONG initialValue = 0, LONG maxValue = MAXLONG); + Semaphore(LONG initialValue = 0, LONG maxValue = MAXLONG); NTSTATUS Wait(LONGLONG timeout = 0); LONG Release(LONG adjustment = 1); |