Forward-port: patch 2/4 extended HVM features for 1.2
[ganeti-local] / lib / constants.py
1 #
2 #
3
4 # Copyright (C) 2006, 2007 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 """Module holding different constants."""
23
24 from ganeti import _autoconf
25
26 # various versions
27 PROTOCOL_VERSION = 12
28 RELEASE_VERSION = _autoconf.PACKAGE_VERSION
29 OS_API_VERSION = 5
30 EXPORT_VERSION = 0
31
32 # Format for CONFIG_VERSION:
33 #   01 03 0123 = 01030123
34 #   ^^ ^^ ^^^^
35 #   |  |  + Configuration version/revision
36 #   |  + Minor version
37 #   + Major version
38 #
39 # It stored as an integer. Make sure not to write an octal number.
40 #
41 CONFIG_MAJOR = int(_autoconf.VERSION_MAJOR)
42 CONFIG_MINOR = int(_autoconf.VERSION_MINOR)
43 CONFIG_REVISION = 0
44 CONFIG_VERSION = (
45   1000000 * CONFIG_MAJOR +
46     10000 * CONFIG_MINOR +
47         1 * CONFIG_REVISION)
48
49 # file paths
50 DATA_DIR = _autoconf.LOCALSTATEDIR + "/lib/ganeti"
51 RUN_DIR = _autoconf.LOCALSTATEDIR + "/run"
52 BDEV_CACHE_DIR = RUN_DIR + "/ganeti"
53 LOCK_DIR = _autoconf.LOCALSTATEDIR + "/lock"
54 CLUSTER_CONF_FILE = DATA_DIR + "/config.data"
55 SSL_CERT_FILE = DATA_DIR + "/server.pem"
56 WATCHER_STATEFILE = DATA_DIR + "/watcher.data"
57 SSH_KNOWN_HOSTS_FILE = DATA_DIR + "/known_hosts"
58 ETC_HOSTS = "/etc/hosts"
59 DEFAULT_FILE_STORAGE_DIR = _autoconf.FILE_STORAGE_DIR
60 MASTER_SOCKET = RUN_DIR + "/master.sock"
61
62 NODE_INITD_SCRIPT = _autoconf.SYSCONFDIR + "/init.d/ganeti"
63 DEFAULT_NODED_PORT = 1811
64 FIRST_DRBD_PORT = 11000
65 LAST_DRBD_PORT = 14999
66 MASTER_SCRIPT = "ganeti-master"
67
68 LOG_DIR = _autoconf.LOCALSTATEDIR + "/log/ganeti"
69 LOG_OS_DIR = LOG_DIR + "/os"
70 LOG_NODESERVER = LOG_DIR + "/node-daemon.log"
71 LOG_WATCHER = LOG_DIR + "/watcher.log"
72 LOG_MASTERDAEMON = LOG_DIR + "/master-daemon.log"
73
74 OS_SEARCH_PATH = _autoconf.OS_SEARCH_PATH
75 EXPORT_DIR = _autoconf.EXPORT_DIR
76
77 EXPORT_CONF_FILE = "config.ini"
78
79 XEN_KERNEL = _autoconf.XEN_KERNEL
80 XEN_INITRD = _autoconf.XEN_INITRD
81
82 VALUE_DEFAULT = "default"
83 VALUE_NONE = "none"
84
85 # hooks-related constants
86 HOOKS_BASE_DIR = _autoconf.SYSCONFDIR + "/ganeti/hooks"
87 HOOKS_PHASE_PRE = "pre"
88 HOOKS_PHASE_POST = "post"
89 HOOKS_NAME_CFGUPDATE = "config-update"
90 HOOKS_VERSION = 1
91
92 # hooks subject type (what object type does the LU deal with)
93 HTYPE_CLUSTER = "CLUSTER"
94 HTYPE_NODE = "NODE"
95 HTYPE_INSTANCE = "INSTANCE"
96
97 HKR_SKIP = 0
98 HKR_FAIL = 1
99 HKR_SUCCESS = 2
100
101 # disk template types
102 DT_DISKLESS = "diskless"
103 DT_PLAIN = "plain"
104 DT_DRBD8 = "drbd"
105 DT_FILE = "file"
106
107 # the set of network-mirrored disk templates
108 DTS_NET_MIRROR = frozenset([DT_DRBD8])
109
110 # the set of non-lvm-based disk templates
111 DTS_NOT_LVM = frozenset([DT_DISKLESS, DT_FILE])
112
113 # logical disk types
114 LD_LV = "lvm"
115 LD_DRBD8 = "drbd8"
116 LD_FILE = "file"
117
118 # file backend driver
119 FD_LOOP = "loop"
120 FD_BLKTAP = "blktap"
121
122 # the set of drbd-like disk types
123 LDS_DRBD = frozenset([LD_DRBD8])
124
125 # disk replacement mode
126 REPLACE_DISK_PRI = "replace_primary"
127 REPLACE_DISK_SEC = "replace_secondary"
128 REPLACE_DISK_ALL = "replace_all"
129
130 # instance creation modes
131 INSTANCE_CREATE = "create"
132 INSTANCE_IMPORT = "import"
133
134 DISK_TEMPLATES = frozenset([DT_DISKLESS, DT_PLAIN,
135                             DT_DRBD8, DT_FILE])
136
137 FILE_DRIVER = frozenset([FD_LOOP, FD_BLKTAP])
138
139 # import/export config options
140 INISECT_EXP = "export"
141 INISECT_INS = "instance"
142
143 # common exit codes
144 EXIT_SUCCESS = 0
145 EXIT_NOTMASTER = 11
146 EXIT_NODESETUP_ERROR = 12
147 EXIT_CONFIRMATION = 13 # need user confirmation
148
149 # tags
150 TAG_CLUSTER = "cluster"
151 TAG_NODE = "node"
152 TAG_INSTANCE = "instance"
153 MAX_TAG_LEN = 128
154 MAX_TAGS_PER_OBJ = 4096
155
156 # others
157 DEFAULT_BRIDGE = "xen-br0"
158 SYNC_SPEED = 30 * 1024
159 LOCALHOST_IP_ADDRESS = "127.0.0.1"
160 TCP_PING_TIMEOUT = 10
161 GANETI_RUNAS = "root"
162 DEFAULT_VG = "xenvg"
163 BIND_ADDRESS_GLOBAL = "0.0.0.0"
164
165 # valid os status
166 OS_VALID_STATUS = "VALID"
167
168 # ssh constants
169 SSH_INITD_SCRIPT = _autoconf.SSH_INITD_SCRIPT
170 SSH_CONFIG_DIR = "/etc/ssh/"
171 SSH_HOST_DSA_PRIV = SSH_CONFIG_DIR + "ssh_host_dsa_key"
172 SSH_HOST_DSA_PUB = SSH_HOST_DSA_PRIV + ".pub"
173 SSH_HOST_RSA_PRIV = SSH_CONFIG_DIR + "ssh_host_rsa_key"
174 SSH_HOST_RSA_PUB = SSH_HOST_RSA_PRIV + ".pub"
175 SSH = "ssh"
176 SCP = "scp"
177
178 # reboot types
179 INSTANCE_REBOOT_SOFT = "soft"
180 INSTANCE_REBOOT_HARD = "hard"
181 INSTANCE_REBOOT_FULL = "full"
182
183 # Hypervisor constants
184 HT_XEN_PVM30 = "xen-3.0"
185 HT_FAKE = "fake"
186 HT_XEN_HVM31 = "xen-hvm-3.1"
187 HYPER_TYPES = frozenset([HT_XEN_PVM30, HT_FAKE, HT_XEN_HVM31])
188 HTS_REQ_PORT = frozenset([HT_XEN_HVM31])
189
190 HT_HVM_VNC_BASE_PORT = 5900
191 HT_HVM_DEFAULT_BOOT_ORDER = 'dc'
192 VNC_PASSWORD_FILE = _autoconf.SYSCONFDIR + "/ganeti/vnc-cluster-password"
193 VNC_DEFAULT_BIND_ADDRESS = '0.0.0.0'
194
195 # Cluster Verify steps
196 VERIFY_NPLUSONE_MEM = 'nplusone_mem'
197 VERIFY_OPTIONAL_CHECKS = frozenset([VERIFY_NPLUSONE_MEM])
198
199 # Allocator framework constants
200 IALLOCATOR_DIR_IN = "in"
201 IALLOCATOR_DIR_OUT = "out"
202 IALLOCATOR_MODE_ALLOC = "allocate"
203 IALLOCATOR_MODE_RELOC = "relocate"
204 IALLOCATOR_SEARCH_PATH = _autoconf.IALLOCATOR_SEARCH_PATH
205 IARUN_NOTFOUND = 1
206 IARUN_FAILURE = 2
207 IARUN_SUCCESS = 3