blob: 12947709d754347fe5afded859f4af3dc0b9dfab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*************************************************
* Memory Locking Functions Source File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#include <botan/util.h>
#if defined(BOTAN_TARGET_OS_HAS_POSIX_MLOCK)
#include <sys/types.h>
#include <sys/mman.h>
#elif defined(BOTAN_TARGET_OS_HAS_WIN32_VIRTUAL_LOCK)
#include <windows.h>
#endif
namespace Botan {
/*************************************************
* Lock an area of memory into RAM *
*************************************************/
bool lock_mem(void* ptr, u32bit bytes)
{
#if defined(BOTAN_TARGET_OS_HAS_POSIX_MLOCK)
return (mlock(ptr, bytes) == 0);
#elif defined(BOTAN_TARGET_OS_HAS_WIN32_VIRTUAL_LOCK)
return (VirtualLock(ptr, bytes) != 0);
#else
return false;
#endif
}
/*************************************************
* Unlock a previously locked region of memory *
*************************************************/
void unlock_mem(void* ptr, u32bit bytes)
{
#if defined(BOTAN_TARGET_OS_HAS_POSIX_MLOCK)
munlock(ptr, bytes);
#elif defined(BOTAN_TARGET_OS_HAS_WIN32_VIRTUAL_LOCK)
VirtualUnlock(ptr, bytes);
#endif
}
}
|