client.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program 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
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. #
  21. import socket
  22. import fcntl
  23. class QMemmanClient:
  24. def request_memory(self, amount):
  25. self.sock = socket.socket(socket.AF_UNIX)
  26. flags = fcntl.fcntl(self.sock.fileno(), fcntl.F_GETFD)
  27. flags |= fcntl.FD_CLOEXEC
  28. fcntl.fcntl(self.sock.fileno(), fcntl.F_SETFD, flags)
  29. self.sock.connect("/var/run/qubes/qmemman.sock")
  30. self.sock.send(str(int(amount)).encode('ascii')+b"\n")
  31. received = self.sock.recv(1024).strip()
  32. if received == b'OK':
  33. return True
  34. else:
  35. return False
  36. def close(self):
  37. self.sock.close()