config.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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) 2014-2015 Wojtek Porczyk <woju@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. #
  21. # THIS FILE SHOULD BE CONFIGURED PER PRODUCT
  22. # or better, once first custom product arrives,
  23. # make a real /etc/qubes/master.conf or whatever
  24. #
  25. '''Constants which can be configured in one place'''
  26. import os.path
  27. qubes_base_dir = "/var/lib/qubes"
  28. system_path = {
  29. 'qubes_guid_path': '/usr/bin/qubes-guid',
  30. 'qrexec_daemon_path': '/usr/lib/qubes/qrexec-daemon',
  31. 'qrexec_client_path': '/usr/lib/qubes/qrexec-client',
  32. 'qubesdb_daemon_path': '/usr/sbin/qubesdb-daemon',
  33. # Relative to qubes_base_dir
  34. 'qubes_appvms_dir': 'appvms',
  35. 'qubes_templates_dir': 'vm-templates',
  36. 'qubes_servicevms_dir': 'servicevms',
  37. 'qubes_store_filename': 'qubes.xml',
  38. 'qubes_kernels_base_dir': 'vm-kernels',
  39. # qubes_icon_dir is obsolete
  40. # use QIcon.fromTheme() where applicable
  41. 'qubes_icon_dir': '/usr/share/icons/hicolor/128x128/devices',
  42. 'qrexec_policy_dir': '/etc/qubes-rpc/policy',
  43. 'config_template_pv': '/usr/share/qubes/vm-template.xml',
  44. }
  45. vm_files = {
  46. 'root_img': 'root.img',
  47. 'rootcow_img': 'root-cow.img',
  48. 'volatile_img': 'volatile.img',
  49. 'clean_volatile_img': 'clean-volatile.img.tar',
  50. 'private_img': 'private.img',
  51. 'kernels_subdir': 'kernels',
  52. 'firewall_conf': 'firewall.xml',
  53. 'whitelisted_appmenus': 'whitelisted-appmenus.list',
  54. 'updates_stat_file': 'updates.stat',
  55. }
  56. defaults = {
  57. 'libvirt_uri': 'xen:///',
  58. 'memory': 400,
  59. 'hvm_memory': 400,
  60. 'kernelopts': "nopat",
  61. 'kernelopts_pcidevs': "nopat iommu=soft swiotlb=8192",
  62. 'dom0_update_check_interval': 6*3600,
  63. 'private_img_size': 2*1024*1024*1024,
  64. 'root_img_size': 10*1024*1024*1024,
  65. 'pool_configs': {
  66. # create file pool even when the default one is LVM
  67. 'varlibqubes': {'dir_path': qubes_base_dir,
  68. 'driver': 'file',
  69. 'name': 'varlibqubes'},
  70. 'linux-kernel': {
  71. 'dir_path': os.path.join(qubes_base_dir,
  72. system_path['qubes_kernels_base_dir']),
  73. 'driver': 'linux-kernel',
  74. 'name': 'linux-kernel'
  75. }
  76. },
  77. # how long (in sec) to wait for VMs to shutdown,
  78. # before killing them (when used qvm-run with --wait option),
  79. 'shutdown_counter_max': 60,
  80. 'vm_default_netmask': "255.255.255.0",
  81. 'appvm_label': 'red',
  82. 'template_label': 'black',
  83. 'servicevm_label': 'red',
  84. }
  85. max_qid = 254
  86. max_netid = 254
  87. max_dispid = 10000
  88. #: built-in standard labels, if creating new one, allocate them above this
  89. # number, at least until label index is removed from API
  90. max_default_label = 8
  91. #: profiles for admin.backup.* calls
  92. backup_profile_dir = '/etc/qubes/backup'