summaryrefslogtreecommitdiffstats
path: root/src/detection/swap/swap_windows.c
diff options
context:
space:
mode:
authorsumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
committersumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
commit76424950e373d3b04ac3dd13019151bfba3e8423 (patch)
tree4c3cfdbda039e592b9186be3e28f8d7cfd439e8a /src/detection/swap/swap_windows.c
Add the files
Diffstat (limited to 'src/detection/swap/swap_windows.c')
-rw-r--r--src/detection/swap/swap_windows.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/detection/swap/swap_windows.c b/src/detection/swap/swap_windows.c
new file mode 100644
index 0000000..e96298b
--- /dev/null
+++ b/src/detection/swap/swap_windows.c
@@ -0,0 +1,35 @@
+#include "swap.h"
+#include "common/windows/unicode.h"
+
+#include <winternl.h>
+#include <ntstatus.h>
+#include <windows.h>
+#include <stdalign.h>
+
+const char* ffDetectSwap(FFlist* result) {
+ alignas(SYSTEM_PAGEFILE_INFORMATION) uint8_t buffer[4096];
+ ULONG size = sizeof(buffer);
+ SYSTEM_PAGEFILE_INFORMATION* pstart = (SYSTEM_PAGEFILE_INFORMATION*) buffer;
+ if (!NT_SUCCESS(NtQuerySystemInformation(SystemPagefileInformation, pstart, size, &size))) {
+ return "NtQuerySystemInformation(SystemPagefileInformation, size) failed";
+ }
+
+ if (size == 0) {
+ return NULL;
+ }
+
+ uint32_t pageSize = instance.state.platform.sysinfo.pageSize;
+ for (SYSTEM_PAGEFILE_INFORMATION* current = pstart;; current = (SYSTEM_PAGEFILE_INFORMATION*) ((uint8_t*) current + current->NextEntryOffset)) {
+ FFSwapResult* swap = FF_LIST_ADD(FFSwapResult, *result);
+ ffStrbufInitNWS(&swap->name, current->FileName.Length / sizeof(wchar_t), current->FileName.Buffer);
+ if (ffStrbufStartsWithS(&swap->name, "\\??\\")) {
+ ffStrbufSubstrAfter(&swap->name, strlen("\\??\\") - 1);
+ }
+ swap->bytesUsed = (uint64_t) current->TotalUsed * pageSize;
+ swap->bytesTotal = (uint64_t) current->CurrentSize * pageSize;
+ if (current->NextEntryOffset == 0) {
+ break;
+ }
+ }
+ return NULL;
+}