summaryrefslogtreecommitdiffstats
path: root/mozglue/linker/Mappable.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /mozglue/linker/Mappable.h
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mozglue/linker/Mappable.h')
-rw-r--r--mozglue/linker/Mappable.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/mozglue/linker/Mappable.h b/mozglue/linker/Mappable.h
new file mode 100644
index 0000000000..3e25fc88c9
--- /dev/null
+++ b/mozglue/linker/Mappable.h
@@ -0,0 +1,55 @@
+/* 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 http://mozilla.org/MPL/2.0/. */
+
+#ifndef Mappable_h
+#define Mappable_h
+
+#include <optional>
+#include "mozilla/RefCounted.h"
+#include "Utils.h"
+
+/**
+ * Helper class to mmap plain files.
+ */
+class Mappable : public mozilla::RefCounted<Mappable> {
+ public:
+ MOZ_DECLARE_REFCOUNTED_TYPENAME(Mappable)
+ ~Mappable() {}
+
+ MemoryRange mmap(const void* addr, size_t length, int prot, int flags,
+ off_t offset);
+
+ private:
+ void munmap(void* addr, size_t length) { ::munmap(addr, length); }
+ /* Limit use of Mappable::munmap to classes that keep track of the address
+ * and size of the mapping. This allows to ignore ::munmap return value. */
+ friend class Mappable1stPagePtr;
+ friend class LibHandle;
+
+ public:
+ /**
+ * Indicate to a Mappable instance that no further mmap is going to happen.
+ */
+ void finalize();
+
+ /**
+ * Returns the maximum length that can be mapped from this Mappable for
+ * offset = 0.
+ */
+ size_t GetLength() const;
+
+ /**
+ * Create a Mappable instance for the given file path.
+ */
+ static Mappable* Create(const char* path);
+
+ protected:
+ explicit Mappable(int fd) : fd(fd) {}
+
+ private:
+ /* File descriptor */
+ std::optional<AutoCloseFD> fd;
+};
+
+#endif /* Mappable_h */