config.py 3.5 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) 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. #
  24. # THIS FILE SHOULD BE CONFIGURED PER PRODUCT
  25. # or better, once first custom product arrives,
  26. # make a real /etc/qubes/master.conf or whatever
  27. #
  28. import os.path
  29. '''Constants which can be configured in one place'''
  30. qubes_base_dir = "/var/lib/qubes"
  31. system_path = {
  32. 'qubes_guid_path': '/usr/bin/qubes-guid',
  33. 'qrexec_daemon_path': '/usr/lib/qubes/qrexec-daemon',
  34. 'qrexec_client_path': '/usr/lib/qubes/qrexec-client',
  35. 'qubesdb_daemon_path': '/usr/sbin/qubesdb-daemon',
  36. 'qubes_base_dir': qubes_base_dir,
  37. # Relative to qubes_base_dir
  38. 'qubes_appvms_dir': 'appvms',
  39. 'qubes_templates_dir': 'vm-templates',
  40. 'qubes_servicevms_dir': 'servicevms',
  41. 'qubes_store_filename': 'qubes.xml',
  42. 'qubes_kernels_base_dir': 'vm-kernels',
  43. # qubes_icon_dir is obsolete
  44. # use QIcon.fromTheme() where applicable
  45. 'qubes_icon_dir': '/usr/share/icons/hicolor/128x128/devices',
  46. 'qrexec_policy_dir': '/etc/qubes-rpc/policy',
  47. 'config_template_pv': '/usr/share/qubes/vm-template.xml',
  48. 'qubes_pciback_cmd': '/usr/lib/qubes/unbind-pci-device.sh',
  49. 'prepare_volatile_img_cmd': '/usr/lib/qubes/prepare-volatile-img.sh',
  50. 'monitor_layout_notify_cmd': '/usr/bin/qubes-monitor-layout-notify',
  51. }
  52. vm_files = {
  53. 'root_img': 'root.img',
  54. 'rootcow_img': 'root-cow.img',
  55. 'volatile_img': 'volatile.img',
  56. 'clean_volatile_img': 'clean-volatile.img.tar',
  57. 'private_img': 'private.img',
  58. 'kernels_subdir': 'kernels',
  59. 'firewall_conf': 'firewall.xml',
  60. 'whitelisted_appmenus': 'whitelisted-appmenus.list',
  61. 'updates_stat_file': 'updates.stat',
  62. }
  63. defaults = {
  64. 'libvirt_uri': 'xen:///',
  65. 'memory': 400,
  66. 'hvm_memory': 512,
  67. 'kernelopts': "nopat",
  68. 'kernelopts_pcidevs': "nopat iommu=soft swiotlb=8192",
  69. 'dom0_update_check_interval': 6*3600,
  70. 'private_img_size': 2*1024*1024*1024,
  71. 'root_img_size': 10*1024*1024*1024,
  72. 'pool_configs': {
  73. 'default': {'dir_path': qubes_base_dir,
  74. 'driver': 'file',
  75. 'name': 'default'},
  76. 'linux-kernel': {
  77. 'dir_path': os.path.join(qubes_base_dir,
  78. system_path['qubes_kernels_base_dir']),
  79. 'driver': 'linux-kernel',
  80. 'name': 'linux-kernel'
  81. }
  82. },
  83. # how long (in sec) to wait for VMs to shutdown,
  84. # before killing them (when used qvm-run with --wait option),
  85. 'shutdown_counter_max': 60,
  86. 'vm_default_netmask': "255.255.255.0",
  87. # Set later
  88. 'appvm_label': None,
  89. 'template_label': None,
  90. 'servicevm_label': None,
  91. }
  92. max_qid = 254
  93. max_netid = 254