summaryrefslogtreecommitdiff
path: root/src/common/host_memory.h
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.org>2025-02-01 21:50:33 +1000
committerZephyron <zephyron@citron-emu.org>2025-02-01 21:50:33 +1000
commitf4b9e54b2280eea66fe449416251d6c50ce0d3a8 (patch)
tree7ebe3e8a57efada717ac6bce4fe7f99628dfc313 /src/common/host_memory.h
parent70a9f20ae11aee144bae229a81418cfaadf354f7 (diff)
common/nvdrv: improve memory validation and error handling
Implements several improvements to memory handling and validation: - host_memory: Add IsValidMapping() and IsDirectMappingEnabled() methods to validate memory access - host_memory: Fix virtual base offset calculation to use proper pointer arithmetic - host_memory: Add size field to track allocation size - nvhost_ctrl_gpu: Return InvalidState instead of InvalidValue for TPC mask buffer size validation - Update copyright year for citron The changes improve memory safety by adding explicit validation checks and fixing pointer arithmetic in the virtual memory implementation.
Diffstat (limited to 'src/common/host_memory.h')
-rw-r--r--src/common/host_memory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/host_memory.h b/src/common/host_memory.h
index 72fbb05af..7d4a94123 100644
--- a/src/common/host_memory.h
+++ b/src/common/host_memory.h
@@ -1,4 +1,5 @@
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
+// SPDX-FileCopyrightText: Copyright 2025 citron Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
@@ -82,6 +83,8 @@ private:
// Fallback if fastmem is not supported on this platform
std::unique_ptr<Common::VirtualBuffer<u8>> fallback_buffer;
+
+ size_t size;
};
} // namespace Common