utils.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. #
  4. # The Qubes OS Project, https://www.qubes-os.org/
  5. #
  6. # Copyright (C) 2010-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2013-2015 Marek Marczykowski-Górecki
  8. # <marmarek@invisiblethingslab.com>
  9. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License along
  22. # with this program; if not, write to the Free Software Foundation, Inc.,
  23. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  24. #
  25. import hashlib
  26. import os
  27. import re
  28. import subprocess
  29. import docutils
  30. import docutils.core
  31. import docutils.io
  32. import qubes.exc
  33. def get_timezone():
  34. # fc18
  35. if os.path.islink('/etc/localtime'):
  36. return '/'.join(os.readlink('/etc/localtime').split('/')[-2:])
  37. # <=fc17
  38. elif os.path.exists('/etc/sysconfig/clock'):
  39. clock_config = open('/etc/sysconfig/clock', "r")
  40. clock_config_lines = clock_config.readlines()
  41. clock_config.close()
  42. zone_re = re.compile(r'^ZONE="(.*)"')
  43. for line in clock_config_lines:
  44. line_match = zone_re.match(line)
  45. if line_match:
  46. return line_match.group(1)
  47. else:
  48. # last resort way, some applications makes /etc/localtime
  49. # hardlink instead of symlink...
  50. tz_info = os.stat('/etc/localtime')
  51. if not tz_info:
  52. return None
  53. if tz_info.st_nlink > 1:
  54. p = subprocess.Popen(['find', '/usr/share/zoneinfo',
  55. '-inum', str(tz_info.st_ino), '-print', '-quit'],
  56. stdout=subprocess.PIPE)
  57. tz_path = p.communicate()[0].strip()
  58. return tz_path.replace('/usr/share/zoneinfo/', '')
  59. return None
  60. def format_doc(docstring):
  61. '''Return parsed documentation string, stripping RST markup.
  62. '''
  63. if not docstring:
  64. return ''
  65. # pylint: disable=unused-variable
  66. output, pub = docutils.core.publish_programmatically(
  67. source_class=docutils.io.StringInput,
  68. source=' '.join(docstring.strip().split()),
  69. source_path=None,
  70. destination_class=docutils.io.NullOutput, destination=None,
  71. destination_path=None,
  72. reader=None, reader_name='standalone',
  73. parser=None, parser_name='restructuredtext',
  74. writer=None, writer_name='null',
  75. settings=None, settings_spec=None, settings_overrides=None,
  76. config_section=None, enable_exit_status=None)
  77. return pub.writer.document.astext()
  78. # FIXME those are wrong, k/M/G are SI prefixes and means 10**3
  79. # maybe adapt https://code.activestate.com/recipes/578019
  80. def parse_size(size):
  81. units = [
  82. ('K', 1024), ('KB', 1024),
  83. ('M', 1024*1024), ('MB', 1024*1024),
  84. ('G', 1024*1024*1024), ('GB', 1024*1024*1024),
  85. ]
  86. size = size.strip().upper()
  87. if size.isdigit():
  88. return int(size)
  89. for unit, multiplier in units:
  90. if size.endswith(unit):
  91. size = size[:-len(unit)].strip()
  92. return int(size)*multiplier
  93. raise qubes.exc.QubesException("Invalid size: {0}.".format(size))
  94. def urandom(size):
  95. rand = os.urandom(size)
  96. if rand is None:
  97. raise IOError('failed to read urandom')
  98. return hashlib.sha512(rand).digest()