utils: Move Mlockall into separate file
[ganeti-local] / lib / utils / mlock.py
1 #
2 #
3
4 # Copyright (C) 2009, 2010, 2011 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 """Wrapper around mlockall(2).
22
23 """
24
25 import os
26 import logging
27
28 from ganeti import errors
29
30 try:
31   # pylint: disable-msg=F0401
32   import ctypes
33 except ImportError:
34   ctypes = None
35
36
37 # Flags for mlockall() (from bits/mman.h)
38 _MCL_CURRENT = 1
39 _MCL_FUTURE = 2
40
41
42 def Mlockall(_ctypes=ctypes):
43   """Lock current process' virtual address space into RAM.
44
45   This is equivalent to the C call mlockall(MCL_CURRENT|MCL_FUTURE),
46   see mlock(2) for more details. This function requires ctypes module.
47
48   @raises errors.NoCtypesError: if ctypes module is not found
49
50   """
51   if _ctypes is None:
52     raise errors.NoCtypesError()
53
54   libc = _ctypes.cdll.LoadLibrary("libc.so.6")
55   if libc is None:
56     logging.error("Cannot set memory lock, ctypes cannot load libc")
57     return
58
59   # Some older version of the ctypes module don't have built-in functionality
60   # to access the errno global variable, where function error codes are stored.
61   # By declaring this variable as a pointer to an integer we can then access
62   # its value correctly, should the mlockall call fail, in order to see what
63   # the actual error code was.
64   # pylint: disable-msg=W0212
65   libc.__errno_location.restype = _ctypes.POINTER(_ctypes.c_int)
66
67   if libc.mlockall(_MCL_CURRENT | _MCL_FUTURE):
68     # pylint: disable-msg=W0212
69     logging.error("Cannot set memory lock: %s",
70                   os.strerror(libc.__errno_location().contents.value))
71     return
72
73   logging.debug("Memory lock set")