client.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # pylint: skip-file
  2. #
  3. # The Qubes OS Project, http://www.qubes-os.org
  4. #
  5. # Copyright (C) 2010 Rafal Wojtczuk <rafal@invisiblethingslab.com>
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Lesser General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2.1 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. # Lesser General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public
  18. # License along with this library; if not, see <https://www.gnu.org/licenses/>.
  19. #
  20. import socket
  21. import fcntl
  22. class QMemmanClient:
  23. def request_memory(self, amount):
  24. self.sock = socket.socket(socket.AF_UNIX)
  25. flags = fcntl.fcntl(self.sock.fileno(), fcntl.F_GETFD)
  26. flags |= fcntl.FD_CLOEXEC
  27. fcntl.fcntl(self.sock.fileno(), fcntl.F_SETFD, flags)
  28. self.sock.connect("/var/run/qubes/qmemman.sock")
  29. self.sock.send(str(int(amount)).encode('ascii')+b"\n")
  30. received = self.sock.recv(1024).strip()
  31. if received == b'OK':
  32. return True
  33. else:
  34. return False
  35. def close(self):
  36. self.sock.close()