utils.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. #
  2. # The Qubes OS Project, https://www.qubes-os.org/
  3. #
  4. # Copyright (C) 2010-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  5. # Copyright (C) 2013-2015 Marek Marczykowski-Górecki
  6. # <marmarek@invisiblethingslab.com>
  7. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License along
  20. # with this program; if not, write to the Free Software Foundation, Inc.,
  21. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  22. #
  23. import hashlib
  24. import random
  25. import string
  26. import os
  27. import re
  28. import socket
  29. import subprocess
  30. import pkg_resources
  31. import docutils
  32. import docutils.core
  33. import docutils.io
  34. import qubes.exc
  35. def get_timezone():
  36. # fc18
  37. if os.path.islink('/etc/localtime'):
  38. return '/'.join(os.readlink('/etc/localtime').split('/')[-2:])
  39. # <=fc17
  40. elif os.path.exists('/etc/sysconfig/clock'):
  41. clock_config = open('/etc/sysconfig/clock', "r")
  42. clock_config_lines = clock_config.readlines()
  43. clock_config.close()
  44. zone_re = re.compile(r'^ZONE="(.*)"')
  45. for line in clock_config_lines:
  46. line_match = zone_re.match(line)
  47. if line_match:
  48. return line_match.group(1)
  49. else:
  50. # last resort way, some applications makes /etc/localtime
  51. # hardlink instead of symlink...
  52. tz_info = os.stat('/etc/localtime')
  53. if not tz_info:
  54. return None
  55. if tz_info.st_nlink > 1:
  56. p = subprocess.Popen(['find', '/usr/share/zoneinfo',
  57. '-inum', str(tz_info.st_ino), '-print', '-quit'],
  58. stdout=subprocess.PIPE)
  59. tz_path = p.communicate()[0].strip()
  60. return tz_path.replace('/usr/share/zoneinfo/', '')
  61. return None
  62. def format_doc(docstring):
  63. '''Return parsed documentation string, stripping RST markup.
  64. '''
  65. if not docstring:
  66. return ''
  67. # pylint: disable=unused-variable
  68. output, pub = docutils.core.publish_programmatically(
  69. source_class=docutils.io.StringInput,
  70. source=' '.join(docstring.strip().split()),
  71. source_path=None,
  72. destination_class=docutils.io.NullOutput, destination=None,
  73. destination_path=None,
  74. reader=None, reader_name='standalone',
  75. parser=None, parser_name='restructuredtext',
  76. writer=None, writer_name='null',
  77. settings=None, settings_spec=None, settings_overrides=None,
  78. config_section=None, enable_exit_status=None)
  79. return pub.writer.document.astext()
  80. def parse_size(size):
  81. units = [
  82. ('K', 1000), ('KB', 1000),
  83. ('M', 1000 * 1000), ('MB', 1000 * 1000),
  84. ('G', 1000 * 1000 * 1000), ('GB', 1000 * 1000 * 1000),
  85. ('Ki', 1024), ('KiB', 1024),
  86. ('Mi', 1024 * 1024), ('MiB', 1024 * 1024),
  87. ('Gi', 1024 * 1024 * 1024), ('GiB', 1024 * 1024 * 1024),
  88. ]
  89. size = size.strip().upper()
  90. if size.isdigit():
  91. return int(size)
  92. for unit, multiplier in units:
  93. if size.endswith(unit):
  94. size = size[:-len(unit)].strip()
  95. return int(size) * multiplier
  96. raise qubes.exc.QubesException("Invalid size: {0}.".format(size))
  97. def mbytes_to_kmg(size):
  98. if size > 1024:
  99. return "%d GiB" % (size / 1024)
  100. else:
  101. return "%d MiB" % size
  102. def kbytes_to_kmg(size):
  103. if size > 1024:
  104. return mbytes_to_kmg(size / 1024)
  105. else:
  106. return "%d KiB" % size
  107. def bytes_to_kmg(size):
  108. if size > 1024:
  109. return kbytes_to_kmg(size / 1024)
  110. else:
  111. return "%d B" % size
  112. def size_to_human(size):
  113. """Humane readable size, with 1/10 precision"""
  114. if size < 1024:
  115. return str(size)
  116. elif size < 1024 * 1024:
  117. return str(round(size / 1024.0, 1)) + ' KiB'
  118. elif size < 1024 * 1024 * 1024:
  119. return str(round(size / (1024.0 * 1024), 1)) + ' MiB'
  120. else:
  121. return str(round(size / (1024.0 * 1024 * 1024), 1)) + ' GiB'
  122. def urandom(size):
  123. rand = os.urandom(size)
  124. if rand is None:
  125. raise IOError('failed to read urandom')
  126. return hashlib.sha512(rand).digest()
  127. def get_entry_point_one(group, name):
  128. epoints = tuple(pkg_resources.iter_entry_points(group, name))
  129. if not epoints:
  130. raise KeyError(name)
  131. elif len(epoints) > 1:
  132. raise TypeError(
  133. 'more than 1 implementation of {!r} found: {}'.format(name,
  134. ', '.join('{}.{}'.format(ep.module_name, '.'.join(ep.attrs))
  135. for ep in epoints)))
  136. return epoints[0].load()
  137. def random_string(length=5):
  138. ''' Return random string consisting of ascii_leters and digits '''
  139. return ''.join(random.choice(string.ascii_letters + string.digits)
  140. for _ in range(length))
  141. def systemd_notify():
  142. '''Notify systemd'''
  143. nofity_socket = os.getenv('NOTIFY_SOCKET')
  144. if not nofity_socket:
  145. return
  146. if nofity_socket.startswith('@'):
  147. nofity_socket = '\0' + nofity_socket[1:]
  148. s = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
  149. s.connect(nofity_socket)
  150. s.sendall(b'READY=1')
  151. s.close()