diff options
author | lloyd <[email protected]> | 2008-09-28 20:18:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-28 20:18:37 +0000 |
commit | 92abcf5fca3fbea01ccc9ffe51bd8c208f2c452d (patch) | |
tree | b451e50f3ac978cdd5fd3561deac3d26306e8ac5 /src/secalloc | |
parent | 30241a0530d66b558006466460b4bfb22b79a49c (diff) |
Rename compression->compress and allocation->secalloc
Diffstat (limited to 'src/secalloc')
-rw-r--r-- | src/secalloc/alloc_mmap/mmap_mem.cpp | 128 | ||||
-rw-r--r-- | src/secalloc/alloc_mmap/mmap_mem.h | 27 | ||||
-rw-r--r-- | src/secalloc/alloc_mmap/modinfo.txt | 25 | ||||
-rw-r--r-- | src/secalloc/ml_unix/mlock.cpp | 33 | ||||
-rw-r--r-- | src/secalloc/ml_unix/modinfo.txt | 25 | ||||
-rw-r--r-- | src/secalloc/ml_win32/mlock.cpp | 27 | ||||
-rw-r--r-- | src/secalloc/ml_win32/modinfo.txt | 12 |
7 files changed, 277 insertions, 0 deletions
diff --git a/src/secalloc/alloc_mmap/mmap_mem.cpp b/src/secalloc/alloc_mmap/mmap_mem.cpp new file mode 100644 index 000000000..e9ea17a53 --- /dev/null +++ b/src/secalloc/alloc_mmap/mmap_mem.cpp @@ -0,0 +1,128 @@ +/************************************************* +* Memory Mapping Allocator Source File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#include <botan/mmap_mem.h> +#include <cstring> + +#ifndef _XOPEN_SOURCE + #define _XOPEN_SOURCE 500 +#endif + +#ifndef _XOPEN_SOURCE_EXTENDED + #define _XOPEN_SOURCE_EXTENDED 1 +#endif + +#include <sys/types.h> +#include <sys/mman.h> +#include <sys/stat.h> +#include <unistd.h> +#include <stdlib.h> +#include <fcntl.h> + +#ifndef MAP_FAILED + #define MAP_FAILED -1 +#endif + +namespace Botan { + +namespace { + +/************************************************* +* MemoryMapping_Allocator Exception * +*************************************************/ +class MemoryMapping_Failed : public Exception + { + public: + MemoryMapping_Failed(const std::string& msg) : + Exception("MemoryMapping_Allocator: " + msg) {} + }; + +} + +/************************************************* +* Memory Map a File into Memory * +*************************************************/ +void* MemoryMapping_Allocator::alloc_block(u32bit n) + { + class TemporaryFile + { + public: + int get_fd() const { return fd; } + const std::string path() const { return filepath; } + + TemporaryFile(const std::string& base) + { + const std::string path = base + "XXXXXX"; + + filepath = new char[path.length() + 1]; + std::strcpy(filepath, path.c_str()); + + mode_t old_umask = ::umask(077); + fd = ::mkstemp(filepath); + ::umask(old_umask); + } + + ~TemporaryFile() + { + delete[] filepath; + if(fd != -1 && ::close(fd) == -1) + throw MemoryMapping_Failed("Could not close file"); + } + private: + int fd; + char* filepath; + }; + + TemporaryFile file("/tmp/botan_"); + + if(file.get_fd() == -1) + throw MemoryMapping_Failed("Could not create file"); + + if(::unlink(file.path().c_str())) + throw MemoryMapping_Failed("Could not unlink file '" + file.path() + "'"); + + ::lseek(file.get_fd(), n-1, SEEK_SET); + if(::write(file.get_fd(), "\0", 1) != 1) + throw MemoryMapping_Failed("Could not write to file"); + +#ifndef MAP_NOSYNC + #define MAP_NOSYNC 0 +#endif + + void* ptr = ::mmap(0, n, + PROT_READ | PROT_WRITE, + MAP_SHARED | MAP_NOSYNC, + file.get_fd(), 0); + + if(ptr == static_cast<void*>(MAP_FAILED)) + throw MemoryMapping_Failed("Could not map file"); + + return ptr; + } + +/************************************************* +* Remove a Memory Mapping * +*************************************************/ +void MemoryMapping_Allocator::dealloc_block(void* ptr, u32bit n) + { + if(ptr == 0) + return; + + const byte PATTERNS[] = { 0x00, 0xFF, 0xAA, 0x55, 0x73, 0x8C, 0x5F, 0xA0, + 0x6E, 0x91, 0x30, 0xCF, 0xD3, 0x2C, 0xAC, 0x00 }; + + for(u32bit j = 0; j != sizeof(PATTERNS); j++) + { + std::memset(ptr, PATTERNS[j], n); + + if(::msync(ptr, n, MS_SYNC)) + throw MemoryMapping_Failed("Sync operation failed"); + } + + if(::munmap(ptr, n)) + throw MemoryMapping_Failed("Could not unmap file"); + } + +} diff --git a/src/secalloc/alloc_mmap/mmap_mem.h b/src/secalloc/alloc_mmap/mmap_mem.h new file mode 100644 index 000000000..a6f68d039 --- /dev/null +++ b/src/secalloc/alloc_mmap/mmap_mem.h @@ -0,0 +1,27 @@ +/************************************************* +* Memory Mapping Allocator Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_MMAP_ALLOCATOR_H__ +#define BOTAN_MMAP_ALLOCATOR_H__ + +#include <botan/mem_pool.h> + +namespace Botan { + +/************************************************* +* Memory Mapping Allocator * +*************************************************/ +class MemoryMapping_Allocator : public Pooling_Allocator + { + public: + std::string type() const { return "mmap"; } + private: + void* alloc_block(u32bit); + void dealloc_block(void*, u32bit); + }; + +} + +#endif diff --git a/src/secalloc/alloc_mmap/modinfo.txt b/src/secalloc/alloc_mmap/modinfo.txt new file mode 100644 index 000000000..8cc2b206e --- /dev/null +++ b/src/secalloc/alloc_mmap/modinfo.txt @@ -0,0 +1,25 @@ +realname "Disk Based Allocation System" + +define ALLOC_MMAP +modset unix + +load_on auto + +<add> +mmap_mem.cpp +mmap_mem.h +</add> + +<os> +linux +freebsd +openbsd +netbsd +solaris +qnx +darwin +tru64 + +# Only without -ansi, otherwise can't get mkstemp +#cygwin +</os> diff --git a/src/secalloc/ml_unix/mlock.cpp b/src/secalloc/ml_unix/mlock.cpp new file mode 100644 index 000000000..98214a215 --- /dev/null +++ b/src/secalloc/ml_unix/mlock.cpp @@ -0,0 +1,33 @@ +/************************************************* +* Memory Locking Functions Source File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#include <botan/util.h> + +#ifndef _POSIX_C_SOURCE + #define _POSIX_C_SOURCE 199309 +#endif + +#include <sys/types.h> +#include <sys/mman.h> + +namespace Botan { + +/************************************************* +* Lock an area of memory into RAM * +*************************************************/ +void lock_mem(void* ptr, u32bit bytes) + { + mlock(ptr, bytes); + } + +/************************************************* +* Unlock a previously locked region of memory * +*************************************************/ +void unlock_mem(void* ptr, u32bit bytes) + { + munlock(ptr, bytes); + } + +} diff --git a/src/secalloc/ml_unix/modinfo.txt b/src/secalloc/ml_unix/modinfo.txt new file mode 100644 index 000000000..201a30ead --- /dev/null +++ b/src/secalloc/ml_unix/modinfo.txt @@ -0,0 +1,25 @@ +realname "Memory Locking for Unix" + +load_on auto + +<replace> +mlock.cpp +</replace> + +<os> +aix +darwin +freebsd +hpux +irix +linux +netbsd +openbsd +qnx +solaris +tru64 +</os> + +<libs> +tru64 -> rt +</libs> diff --git a/src/secalloc/ml_win32/mlock.cpp b/src/secalloc/ml_win32/mlock.cpp new file mode 100644 index 000000000..8c5919934 --- /dev/null +++ b/src/secalloc/ml_win32/mlock.cpp @@ -0,0 +1,27 @@ +/************************************************* +* Memory Locking Functions Source File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#include <botan/util.h> +#include <windows.h> + +namespace Botan { + +/************************************************* +* Lock an area of memory into RAM * +*************************************************/ +void lock_mem(void* ptr, u32bit bytes) + { + VirtualLock(ptr, bytes); + } + +/************************************************* +* Unlock a previously locked region of memory * +*************************************************/ +void unlock_mem(void* ptr, u32bit bytes) + { + VirtualUnlock(ptr, bytes); + } + +} diff --git a/src/secalloc/ml_win32/modinfo.txt b/src/secalloc/ml_win32/modinfo.txt new file mode 100644 index 000000000..92936e1de --- /dev/null +++ b/src/secalloc/ml_win32/modinfo.txt @@ -0,0 +1,12 @@ +realname "Memory Locking for Win32" + +load_on auto + +<replace> +mlock.cpp +</replace> + +<os> +windows +cygwin +</os> |