Add experimental persistency to job queue
[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
32
33 # Format for CONFIG_VERSION:
34 #   01 03 0123 = 01030123
35 #   ^^ ^^ ^^^^
36 #   |  |  + Configuration version/revision
37 #   |  + Minor version
38 #   + Major version
39 #
40 # It stored as an integer. Make sure not to write an octal number.
41
42 # BuildVersion and SplitVersion must be in here because we can't import other
43 # modules. The cfgupgrade tool must be able to read and write version numbers
44 # and thus requires these functions. To avoid code duplication, they're kept in
45 # here.
46
47 def BuildVersion(major, minor, revision):
48   """Calculates int version number from major, minor and revision numbers.
49
50   Returns: int representing version number
51
52   """
53   assert isinstance(major, int)
54   assert isinstance(minor, int)
55   assert isinstance(revision, int)
56   return (1000000 * major +
57             10000 * minor +
58                 1 * revision)
59
60
61 def SplitVersion(version):
62   """Splits version number stored in an int.
63
64   Returns: tuple; (major, minor, revision)
65
66   """
67   assert isinstance(version, int)
68
69   (major, remainder) = divmod(version, 1000000)
70   (minor, revision) = divmod(remainder, 10000)
71
72   return (major, minor, revision)
73
74
75 CONFIG_MAJOR = int(_autoconf.VERSION_MAJOR)
76 CONFIG_MINOR = int(_autoconf.VERSION_MINOR)
77 CONFIG_REVISION = 0
78 CONFIG_VERSION = BuildVersion(CONFIG_MAJOR, CONFIG_MINOR, CONFIG_REVISION)
79
80 # file paths
81 DATA_DIR = _autoconf.LOCALSTATEDIR + "/lib/ganeti"
82 RUN_DIR = _autoconf.LOCALSTATEDIR + "/run"
83 RUN_GANETI_DIR = RUN_DIR + "/ganeti"
84 BDEV_CACHE_DIR = RUN_GANETI_DIR # TODO(2.0): move deeper
85 DISK_LINKS_DIR = RUN_GANETI_DIR + "/instance-disks"
86 # keep RUN_GANETI_DIR first here, to make sure all get created when the node
87 # daemon is started (this takes care of RUN_DIR being tmpfs)
88 SUB_RUN_DIRS = [ RUN_GANETI_DIR, BDEV_CACHE_DIR, DISK_LINKS_DIR ]
89 LOCK_DIR = _autoconf.LOCALSTATEDIR + "/lock"
90 CLUSTER_CONF_FILE = DATA_DIR + "/config.data"
91 SSL_CERT_FILE = DATA_DIR + "/server.pem"
92 WATCHER_STATEFILE = DATA_DIR + "/watcher.data"
93 SSH_KNOWN_HOSTS_FILE = DATA_DIR + "/known_hosts"
94 QUEUE_DIR = DATA_DIR + "/queue"
95 ETC_HOSTS = "/etc/hosts"
96 DEFAULT_FILE_STORAGE_DIR = _autoconf.FILE_STORAGE_DIR
97 MASTER_SOCKET = RUN_GANETI_DIR + "/master.sock"
98
99 NODE_INITD_SCRIPT = _autoconf.SYSCONFDIR + "/init.d/ganeti"
100 DEFAULT_NODED_PORT = 1811
101 FIRST_DRBD_PORT = 11000
102 LAST_DRBD_PORT = 14999
103 MASTER_SCRIPT = "ganeti-master"
104
105 LOG_DIR = _autoconf.LOCALSTATEDIR + "/log/ganeti"
106 LOG_OS_DIR = LOG_DIR + "/os"
107 LOG_NODESERVER = LOG_DIR + "/node-daemon.log"
108 LOG_WATCHER = LOG_DIR + "/watcher.log"
109 LOG_MASTERDAEMON = LOG_DIR + "/master-daemon.log"
110
111 OS_SEARCH_PATH = _autoconf.OS_SEARCH_PATH
112 EXPORT_DIR = _autoconf.EXPORT_DIR
113
114 EXPORT_CONF_FILE = "config.ini"
115
116 XEN_KERNEL = _autoconf.XEN_KERNEL
117 XEN_INITRD = _autoconf.XEN_INITRD
118
119 VALUE_DEFAULT = "default"
120 VALUE_NONE = "none"
121
122 # hooks-related constants
123 HOOKS_BASE_DIR = _autoconf.SYSCONFDIR + "/ganeti/hooks"
124 HOOKS_PHASE_PRE = "pre"
125 HOOKS_PHASE_POST = "post"
126 HOOKS_NAME_CFGUPDATE = "config-update"
127 HOOKS_VERSION = 1
128
129 # hooks subject type (what object type does the LU deal with)
130 HTYPE_CLUSTER = "CLUSTER"
131 HTYPE_NODE = "NODE"
132 HTYPE_INSTANCE = "INSTANCE"
133
134 HKR_SKIP = 0
135 HKR_FAIL = 1
136 HKR_SUCCESS = 2
137
138 # disk template types
139 DT_DISKLESS = "diskless"
140 DT_PLAIN = "plain"
141 DT_DRBD8 = "drbd"
142 DT_FILE = "file"
143
144 # the set of network-mirrored disk templates
145 DTS_NET_MIRROR = frozenset([DT_DRBD8])
146
147 # the set of non-lvm-based disk templates
148 DTS_NOT_LVM = frozenset([DT_DISKLESS, DT_FILE])
149
150 # logical disk types
151 LD_LV = "lvm"
152 LD_DRBD8 = "drbd8"
153 LD_FILE = "file"
154
155 # file backend driver
156 FD_LOOP = "loop"
157 FD_BLKTAP = "blktap"
158
159 # the set of drbd-like disk types
160 LDS_DRBD = frozenset([LD_DRBD8])
161
162 # disk replacement mode
163 REPLACE_DISK_PRI = "replace_primary"
164 REPLACE_DISK_SEC = "replace_secondary"
165 REPLACE_DISK_ALL = "replace_all"
166
167 # instance creation modes
168 INSTANCE_CREATE = "create"
169 INSTANCE_IMPORT = "import"
170
171 DISK_TEMPLATES = frozenset([DT_DISKLESS, DT_PLAIN,
172                             DT_DRBD8, DT_FILE])
173
174 FILE_DRIVER = frozenset([FD_LOOP, FD_BLKTAP])
175
176 # import/export config options
177 INISECT_EXP = "export"
178 INISECT_INS = "instance"
179
180 # common exit codes
181 EXIT_SUCCESS = 0
182 EXIT_FAILURE = 1
183 EXIT_NOTMASTER = 11
184 EXIT_NODESETUP_ERROR = 12
185 EXIT_CONFIRMATION = 13 # need user confirmation
186
187 # tags
188 TAG_CLUSTER = "cluster"
189 TAG_NODE = "node"
190 TAG_INSTANCE = "instance"
191 MAX_TAG_LEN = 128
192 MAX_TAGS_PER_OBJ = 4096
193
194 # others
195 DEFAULT_BRIDGE = "xen-br0"
196 SYNC_SPEED = 30 * 1024
197 LOCALHOST_IP_ADDRESS = "127.0.0.1"
198 TCP_PING_TIMEOUT = 10
199 GANETI_RUNAS = "root"
200 DEFAULT_VG = "xenvg"
201 BIND_ADDRESS_GLOBAL = "0.0.0.0"
202 MIN_VG_SIZE = 20480
203
204 # valid os status
205 OS_VALID_STATUS = "VALID"
206
207 # ssh constants
208 SSH_INITD_SCRIPT = _autoconf.SSH_INITD_SCRIPT
209 SSH_CONFIG_DIR = "/etc/ssh/"
210 SSH_HOST_DSA_PRIV = SSH_CONFIG_DIR + "ssh_host_dsa_key"
211 SSH_HOST_DSA_PUB = SSH_HOST_DSA_PRIV + ".pub"
212 SSH_HOST_RSA_PRIV = SSH_CONFIG_DIR + "ssh_host_rsa_key"
213 SSH_HOST_RSA_PUB = SSH_HOST_RSA_PRIV + ".pub"
214 SSH = "ssh"
215 SCP = "scp"
216
217 # reboot types
218 INSTANCE_REBOOT_SOFT = "soft"
219 INSTANCE_REBOOT_HARD = "hard"
220 INSTANCE_REBOOT_FULL = "full"
221
222 # Hypervisor constants
223 HT_XEN_PVM30 = "xen-3.0"
224 HT_FAKE = "fake"
225 HT_XEN_HVM31 = "xen-hvm-3.1"
226 HYPER_TYPES = frozenset([HT_XEN_PVM30, HT_FAKE, HT_XEN_HVM31])
227 HTS_REQ_PORT = frozenset([HT_XEN_HVM31])
228
229 HT_HVM_VNC_BASE_PORT = 5900
230 HT_HVM_DEFAULT_BOOT_ORDER = 'dc'
231 VNC_PASSWORD_FILE = _autoconf.SYSCONFDIR + "/ganeti/vnc-cluster-password"
232 VNC_DEFAULT_BIND_ADDRESS = '0.0.0.0'
233
234 # Cluster Verify steps
235 VERIFY_NPLUSONE_MEM = 'nplusone_mem'
236 VERIFY_OPTIONAL_CHECKS = frozenset([VERIFY_NPLUSONE_MEM])
237
238 # Allocator framework constants
239 IALLOCATOR_DIR_IN = "in"
240 IALLOCATOR_DIR_OUT = "out"
241 IALLOCATOR_MODE_ALLOC = "allocate"
242 IALLOCATOR_MODE_RELOC = "relocate"
243 IALLOCATOR_SEARCH_PATH = _autoconf.IALLOCATOR_SEARCH_PATH
244 IARUN_NOTFOUND = 1
245 IARUN_FAILURE = 2
246 IARUN_SUCCESS = 3
247
248 # Job queue
249 JOB_QUEUE_VERSION = 1
250 JOB_QUEUE_LOCK_FILE = QUEUE_DIR + "/lock"
251 JOB_QUEUE_VERSION_FILE = QUEUE_DIR + "/version"
252 JOB_QUEUE_SERIAL_FILE = QUEUE_DIR + "/serial"
253
254 # Job status
255 JOB_STATUS_QUEUED = "queued"
256 JOB_STATUS_RUNNING = "running"
257 JOB_STATUS_CANCELED = "canceled"
258 JOB_STATUS_SUCCESS = "success"
259 JOB_STATUS_ERROR = "error"
260
261 OP_STATUS_QUEUED = "queued"
262 OP_STATUS_RUNNING = "running"
263 OP_STATUS_SUCCESS = "success"
264 OP_STATUS_ERROR = "error"