_LockInstancesNodes: support append mode
[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 = 13
28 RELEASE_VERSION = _autoconf.PACKAGE_VERSION
29 OS_API_VERSION = 5
30 EXPORT_VERSION = 0
31 RAPI_VERSION = 2
32
33
34 # Format for CONFIG_VERSION:
35 #   01 03 0123 = 01030123
36 #   ^^ ^^ ^^^^
37 #   |  |  + Configuration version/revision
38 #   |  + Minor version
39 #   + Major version
40 #
41 # It stored as an integer. Make sure not to write an octal number.
42
43 # BuildVersion and SplitVersion must be in here because we can't import other
44 # modules. The cfgupgrade tool must be able to read and write version numbers
45 # and thus requires these functions. To avoid code duplication, they're kept in
46 # here.
47
48 def BuildVersion(major, minor, revision):
49   """Calculates int version number from major, minor and revision numbers.
50
51   Returns: int representing version number
52
53   """
54   assert isinstance(major, int)
55   assert isinstance(minor, int)
56   assert isinstance(revision, int)
57   return (1000000 * major +
58             10000 * minor +
59                 1 * revision)
60
61
62 def SplitVersion(version):
63   """Splits version number stored in an int.
64
65   Returns: tuple; (major, minor, revision)
66
67   """
68   assert isinstance(version, int)
69
70   (major, remainder) = divmod(version, 1000000)
71   (minor, revision) = divmod(remainder, 10000)
72
73   return (major, minor, revision)
74
75
76 CONFIG_MAJOR = int(_autoconf.VERSION_MAJOR)
77 CONFIG_MINOR = int(_autoconf.VERSION_MINOR)
78 CONFIG_REVISION = 0
79 CONFIG_VERSION = BuildVersion(CONFIG_MAJOR, CONFIG_MINOR, CONFIG_REVISION)
80
81 # file paths
82 DATA_DIR = _autoconf.LOCALSTATEDIR + "/lib/ganeti"
83 RUN_DIR = _autoconf.LOCALSTATEDIR + "/run"
84 RUN_GANETI_DIR = RUN_DIR + "/ganeti"
85 BDEV_CACHE_DIR = RUN_GANETI_DIR + "/bdev-cache"
86 DISK_LINKS_DIR = RUN_GANETI_DIR + "/instance-disks"
87 # keep RUN_GANETI_DIR first here, to make sure all get created when the node
88 # daemon is started (this takes care of RUN_DIR being tmpfs)
89 SUB_RUN_DIRS = [ RUN_GANETI_DIR, BDEV_CACHE_DIR, DISK_LINKS_DIR ]
90 LOCK_DIR = _autoconf.LOCALSTATEDIR + "/lock"
91 CLUSTER_CONF_FILE = DATA_DIR + "/config.data"
92 SSL_CERT_FILE = DATA_DIR + "/server.pem"
93 WATCHER_STATEFILE = DATA_DIR + "/watcher.data"
94 SSH_KNOWN_HOSTS_FILE = DATA_DIR + "/known_hosts"
95 QUEUE_DIR = DATA_DIR + "/queue"
96 ETC_HOSTS = "/etc/hosts"
97 DEFAULT_FILE_STORAGE_DIR = _autoconf.FILE_STORAGE_DIR
98
99 # Quoting unix(7) on Linux:
100 #   Linux also supports an abstract namespace which is independent of the file
101 #   system. [...] If sun_path starts with a null byte ('\0'), then it refers to
102 #   the abstract namespace maintained by the Unix protocol module. The socket's
103 #   address in this namespace is given by the rest of the bytes in sun_path.
104 #
105 # By using this Linux-specific way we don't have to care about removing the
106 # socket file when quitting or starting (after an unclean shutdown).
107 #
108 # Sample output for "netstat -nlp":
109 #   unix 2 [ ACC ] STREAM LISTENING 247919 1234/python @ganeti-master
110 MASTER_SOCKET = "\0ganeti-master"
111
112 # PID files
113 MASTERD_PID = "ganeti-masterd"
114 NODED_PID = "ganeti-noded"
115 RAPI_PID = "ganeti-rapi"
116
117 NODE_INITD_SCRIPT = _autoconf.SYSCONFDIR + "/init.d/ganeti"
118 DEFAULT_NODED_PORT = 1811
119 FIRST_DRBD_PORT = 11000
120 LAST_DRBD_PORT = 14999
121 MASTER_SCRIPT = "ganeti-master"
122
123 LOG_DIR = _autoconf.LOCALSTATEDIR + "/log/ganeti/"
124 LOG_OS_DIR = LOG_DIR + "os"
125 LOG_NODESERVER = LOG_DIR + "node-daemon.log"
126 LOG_WATCHER = LOG_DIR + "watcher.log"
127 LOG_MASTERDAEMON = LOG_DIR + "master-daemon.log"
128 LOG_RAPISERVER = LOG_DIR + "rapi-daemon.log"
129 LOG_RAPIACCESS = LOG_DIR + "rapi-access.log"
130 LOG_COMMANDS = LOG_DIR + "commands.log"
131 LOG_BURNIN = LOG_DIR + "burnin.log"
132
133 OS_SEARCH_PATH = _autoconf.OS_SEARCH_PATH
134 EXPORT_DIR = _autoconf.EXPORT_DIR
135
136 EXPORT_CONF_FILE = "config.ini"
137
138 XEN_KERNEL = _autoconf.XEN_KERNEL
139 XEN_INITRD = _autoconf.XEN_INITRD
140
141 KVM_PATH = _autoconf.KVM_PATH
142
143 VALUE_DEFAULT = "default"
144 VALUE_NONE = "none"
145
146 # hooks-related constants
147 HOOKS_BASE_DIR = _autoconf.SYSCONFDIR + "/ganeti/hooks"
148 HOOKS_PHASE_PRE = "pre"
149 HOOKS_PHASE_POST = "post"
150 HOOKS_NAME_CFGUPDATE = "config-update"
151 HOOKS_VERSION = 1
152
153 # hooks subject type (what object type does the LU deal with)
154 HTYPE_CLUSTER = "CLUSTER"
155 HTYPE_NODE = "NODE"
156 HTYPE_INSTANCE = "INSTANCE"
157
158 HKR_SKIP = 0
159 HKR_FAIL = 1
160 HKR_SUCCESS = 2
161
162 # disk template types
163 DT_DISKLESS = "diskless"
164 DT_PLAIN = "plain"
165 DT_DRBD8 = "drbd"
166 DT_FILE = "file"
167
168 # the set of network-mirrored disk templates
169 DTS_NET_MIRROR = frozenset([DT_DRBD8])
170
171 # the set of non-lvm-based disk templates
172 DTS_NOT_LVM = frozenset([DT_DISKLESS, DT_FILE])
173
174 # logical disk types
175 LD_LV = "lvm"
176 LD_DRBD8 = "drbd8"
177 LD_FILE = "file"
178
179 # file backend driver
180 FD_LOOP = "loop"
181 FD_BLKTAP = "blktap"
182
183 # the set of drbd-like disk types
184 LDS_DRBD = frozenset([LD_DRBD8])
185
186 # disk replacement mode
187 REPLACE_DISK_PRI = "replace_primary"
188 REPLACE_DISK_SEC = "replace_secondary"
189 REPLACE_DISK_ALL = "replace_all"
190
191 # lock recalculate mode
192 LOCKS_REPLACE = 'replace'
193 LOCKS_APPEND = 'append'
194
195 # instance creation modes
196 INSTANCE_CREATE = "create"
197 INSTANCE_IMPORT = "import"
198
199 DISK_TEMPLATES = frozenset([DT_DISKLESS, DT_PLAIN,
200                             DT_DRBD8, DT_FILE])
201
202 FILE_DRIVER = frozenset([FD_LOOP, FD_BLKTAP])
203
204 # import/export config options
205 INISECT_EXP = "export"
206 INISECT_INS = "instance"
207
208 # common exit codes
209 EXIT_SUCCESS = 0
210 EXIT_FAILURE = 1
211 EXIT_NOTMASTER = 11
212 EXIT_NODESETUP_ERROR = 12
213 EXIT_CONFIRMATION = 13 # need user confirmation
214
215 # tags
216 TAG_CLUSTER = "cluster"
217 TAG_NODE = "node"
218 TAG_INSTANCE = "instance"
219 MAX_TAG_LEN = 128
220 MAX_TAGS_PER_OBJ = 4096
221
222 # others
223 DEFAULT_BRIDGE = "xen-br0"
224 SYNC_SPEED = 30 * 1024
225 LOCALHOST_IP_ADDRESS = "127.0.0.1"
226 TCP_PING_TIMEOUT = 10
227 GANETI_RUNAS = "root"
228 DEFAULT_VG = "xenvg"
229 BIND_ADDRESS_GLOBAL = "0.0.0.0"
230 MIN_VG_SIZE = 20480
231
232 # valid os status
233 OS_VALID_STATUS = "VALID"
234
235 # ssh constants
236 SSH_INITD_SCRIPT = _autoconf.SSH_INITD_SCRIPT
237 SSH_CONFIG_DIR = "/etc/ssh/"
238 SSH_HOST_DSA_PRIV = SSH_CONFIG_DIR + "ssh_host_dsa_key"
239 SSH_HOST_DSA_PUB = SSH_HOST_DSA_PRIV + ".pub"
240 SSH_HOST_RSA_PRIV = SSH_CONFIG_DIR + "ssh_host_rsa_key"
241 SSH_HOST_RSA_PUB = SSH_HOST_RSA_PRIV + ".pub"
242 SSH = "ssh"
243 SCP = "scp"
244
245 # reboot types
246 INSTANCE_REBOOT_SOFT = "soft"
247 INSTANCE_REBOOT_HARD = "hard"
248 INSTANCE_REBOOT_FULL = "full"
249
250 # Hypervisor constants
251 HT_XEN_PVM30 = "xen-3.0"
252 HT_FAKE = "fake"
253 HT_XEN_HVM31 = "xen-hvm-3.1"
254 HT_KVM = "kvm"
255 HYPER_TYPES = frozenset([HT_XEN_PVM30, HT_FAKE, HT_XEN_HVM31, HT_KVM])
256 HTS_REQ_PORT = frozenset([HT_XEN_HVM31])
257
258 HT_HVM_VNC_BASE_PORT = 5900
259 HT_HVM_DEFAULT_BOOT_ORDER = 'dc'
260 VNC_PASSWORD_FILE = _autoconf.SYSCONFDIR + "/ganeti/vnc-cluster-password"
261 VNC_DEFAULT_BIND_ADDRESS = '0.0.0.0'
262
263 # HVM NIC types
264 HT_HVM_NIC_RTL8139 = "rtl8139"
265 HT_HVM_NIC_NE2K_PCI = "ne2k_pci"
266 HT_HVM_NIC_NE2K_ISA = "ne2k_isa"
267 HT_HVM_DEV_PARAVIRTUAL = "paravirtual"
268 HT_HVM_DEV_IOEMU = "ioemu"
269 HT_HVM_VALID_NIC_TYPES = frozenset([HT_HVM_NIC_RTL8139, HT_HVM_NIC_NE2K_PCI,
270                                     HT_HVM_NIC_NE2K_ISA,
271                                     HT_HVM_DEV_PARAVIRTUAL])
272 HT_HVM_VALID_DISK_TYPES = frozenset([HT_HVM_DEV_PARAVIRTUAL, HT_HVM_DEV_IOEMU])
273
274 # Cluster Verify steps
275 VERIFY_NPLUSONE_MEM = 'nplusone_mem'
276 VERIFY_OPTIONAL_CHECKS = frozenset([VERIFY_NPLUSONE_MEM])
277
278 # Allocator framework constants
279 IALLOCATOR_DIR_IN = "in"
280 IALLOCATOR_DIR_OUT = "out"
281 IALLOCATOR_MODE_ALLOC = "allocate"
282 IALLOCATOR_MODE_RELOC = "relocate"
283 IALLOCATOR_SEARCH_PATH = _autoconf.IALLOCATOR_SEARCH_PATH
284 IARUN_NOTFOUND = 1
285 IARUN_FAILURE = 2
286 IARUN_SUCCESS = 3
287
288 # Job queue
289 JOB_QUEUE_VERSION = 1
290 JOB_QUEUE_LOCK_FILE = QUEUE_DIR + "/lock"
291 JOB_QUEUE_VERSION_FILE = QUEUE_DIR + "/version"
292 JOB_QUEUE_SERIAL_FILE = QUEUE_DIR + "/serial"
293 JOB_QUEUE_ARCHIVE_DIR = QUEUE_DIR + "/archive"
294
295 JOB_ID_TEMPLATE = r"\d+"
296
297 # unchanged job return
298 JOB_NOTCHANGED = "nochange"
299
300 # Job status
301 JOB_STATUS_QUEUED = "queued"
302 JOB_STATUS_RUNNING = "running"
303 JOB_STATUS_CANCELED = "canceled"
304 JOB_STATUS_SUCCESS = "success"
305 JOB_STATUS_ERROR = "error"
306
307 OP_STATUS_QUEUED = "queued"
308 OP_STATUS_RUNNING = "running"
309 OP_STATUS_CANCELED = "canceled"
310 OP_STATUS_SUCCESS = "success"
311 OP_STATUS_ERROR = "error"
312
313 # Execution log types
314 ELOG_MESSAGE = "message"
315 ELOG_PROGRESS = "progress"
316
317 # Temporary RAPI constants until we have cluster parameters
318 RAPI_ENABLE = True
319 RAPI_PORT = 5080