Add forgotten RAPI constant
[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 = 1
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 # TODO(2.0): move deeper
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 MASTER_SOCKET = RUN_GANETI_DIR + "/master.sock"
99
100 NODE_INITD_SCRIPT = _autoconf.SYSCONFDIR + "/init.d/ganeti"
101 DEFAULT_NODED_PORT = 1811
102 FIRST_DRBD_PORT = 11000
103 LAST_DRBD_PORT = 14999
104 MASTER_SCRIPT = "ganeti-master"
105
106 LOG_DIR = _autoconf.LOCALSTATEDIR + "/log/ganeti"
107 LOG_OS_DIR = LOG_DIR + "/os"
108 LOG_NODESERVER = LOG_DIR + "/node-daemon.log"
109 LOG_WATCHER = LOG_DIR + "/watcher.log"
110 LOG_MASTERDAEMON = LOG_DIR + "/master-daemon.log"
111
112 OS_SEARCH_PATH = _autoconf.OS_SEARCH_PATH
113 EXPORT_DIR = _autoconf.EXPORT_DIR
114
115 EXPORT_CONF_FILE = "config.ini"
116
117 XEN_KERNEL = _autoconf.XEN_KERNEL
118 XEN_INITRD = _autoconf.XEN_INITRD
119
120 VALUE_DEFAULT = "default"
121 VALUE_NONE = "none"
122
123 # hooks-related constants
124 HOOKS_BASE_DIR = _autoconf.SYSCONFDIR + "/ganeti/hooks"
125 HOOKS_PHASE_PRE = "pre"
126 HOOKS_PHASE_POST = "post"
127 HOOKS_NAME_CFGUPDATE = "config-update"
128 HOOKS_VERSION = 1
129
130 # hooks subject type (what object type does the LU deal with)
131 HTYPE_CLUSTER = "CLUSTER"
132 HTYPE_NODE = "NODE"
133 HTYPE_INSTANCE = "INSTANCE"
134
135 HKR_SKIP = 0
136 HKR_FAIL = 1
137 HKR_SUCCESS = 2
138
139 # disk template types
140 DT_DISKLESS = "diskless"
141 DT_PLAIN = "plain"
142 DT_DRBD8 = "drbd"
143 DT_FILE = "file"
144
145 # the set of network-mirrored disk templates
146 DTS_NET_MIRROR = frozenset([DT_DRBD8])
147
148 # the set of non-lvm-based disk templates
149 DTS_NOT_LVM = frozenset([DT_DISKLESS, DT_FILE])
150
151 # logical disk types
152 LD_LV = "lvm"
153 LD_DRBD8 = "drbd8"
154 LD_FILE = "file"
155
156 # file backend driver
157 FD_LOOP = "loop"
158 FD_BLKTAP = "blktap"
159
160 # the set of drbd-like disk types
161 LDS_DRBD = frozenset([LD_DRBD8])
162
163 # disk replacement mode
164 REPLACE_DISK_PRI = "replace_primary"
165 REPLACE_DISK_SEC = "replace_secondary"
166 REPLACE_DISK_ALL = "replace_all"
167
168 # instance creation modes
169 INSTANCE_CREATE = "create"
170 INSTANCE_IMPORT = "import"
171
172 DISK_TEMPLATES = frozenset([DT_DISKLESS, DT_PLAIN,
173                             DT_DRBD8, DT_FILE])
174
175 FILE_DRIVER = frozenset([FD_LOOP, FD_BLKTAP])
176
177 # import/export config options
178 INISECT_EXP = "export"
179 INISECT_INS = "instance"
180
181 # common exit codes
182 EXIT_SUCCESS = 0
183 EXIT_FAILURE = 1
184 EXIT_NOTMASTER = 11
185 EXIT_NODESETUP_ERROR = 12
186 EXIT_CONFIRMATION = 13 # need user confirmation
187
188 # tags
189 TAG_CLUSTER = "cluster"
190 TAG_NODE = "node"
191 TAG_INSTANCE = "instance"
192 MAX_TAG_LEN = 128
193 MAX_TAGS_PER_OBJ = 4096
194
195 # others
196 DEFAULT_BRIDGE = "xen-br0"
197 SYNC_SPEED = 30 * 1024
198 LOCALHOST_IP_ADDRESS = "127.0.0.1"
199 TCP_PING_TIMEOUT = 10
200 GANETI_RUNAS = "root"
201 DEFAULT_VG = "xenvg"
202 BIND_ADDRESS_GLOBAL = "0.0.0.0"
203 MIN_VG_SIZE = 20480
204
205 # valid os status
206 OS_VALID_STATUS = "VALID"
207
208 # ssh constants
209 SSH_INITD_SCRIPT = _autoconf.SSH_INITD_SCRIPT
210 SSH_CONFIG_DIR = "/etc/ssh/"
211 SSH_HOST_DSA_PRIV = SSH_CONFIG_DIR + "ssh_host_dsa_key"
212 SSH_HOST_DSA_PUB = SSH_HOST_DSA_PRIV + ".pub"
213 SSH_HOST_RSA_PRIV = SSH_CONFIG_DIR + "ssh_host_rsa_key"
214 SSH_HOST_RSA_PUB = SSH_HOST_RSA_PRIV + ".pub"
215 SSH = "ssh"
216 SCP = "scp"
217
218 # reboot types
219 INSTANCE_REBOOT_SOFT = "soft"
220 INSTANCE_REBOOT_HARD = "hard"
221 INSTANCE_REBOOT_FULL = "full"
222
223 # Hypervisor constants
224 HT_XEN_PVM30 = "xen-3.0"
225 HT_FAKE = "fake"
226 HT_XEN_HVM31 = "xen-hvm-3.1"
227 HYPER_TYPES = frozenset([HT_XEN_PVM30, HT_FAKE, HT_XEN_HVM31])
228 HTS_REQ_PORT = frozenset([HT_XEN_HVM31])
229
230 HT_HVM_VNC_BASE_PORT = 5900
231 HT_HVM_DEFAULT_BOOT_ORDER = 'dc'
232 VNC_PASSWORD_FILE = _autoconf.SYSCONFDIR + "/ganeti/vnc-cluster-password"
233 VNC_DEFAULT_BIND_ADDRESS = '0.0.0.0'
234
235 # Cluster Verify steps
236 VERIFY_NPLUSONE_MEM = 'nplusone_mem'
237 VERIFY_OPTIONAL_CHECKS = frozenset([VERIFY_NPLUSONE_MEM])
238
239 # Allocator framework constants
240 IALLOCATOR_DIR_IN = "in"
241 IALLOCATOR_DIR_OUT = "out"
242 IALLOCATOR_MODE_ALLOC = "allocate"
243 IALLOCATOR_MODE_RELOC = "relocate"
244 IALLOCATOR_SEARCH_PATH = _autoconf.IALLOCATOR_SEARCH_PATH
245 IARUN_NOTFOUND = 1
246 IARUN_FAILURE = 2
247 IARUN_SUCCESS = 3
248
249 # Job queue
250 JOB_QUEUE_VERSION = 1
251 JOB_QUEUE_LOCK_FILE = QUEUE_DIR + "/lock"
252 JOB_QUEUE_VERSION_FILE = QUEUE_DIR + "/version"
253 JOB_QUEUE_SERIAL_FILE = QUEUE_DIR + "/serial"
254
255 # Job status
256 JOB_STATUS_QUEUED = "queued"
257 JOB_STATUS_RUNNING = "running"
258 JOB_STATUS_CANCELED = "canceled"
259 JOB_STATUS_SUCCESS = "success"
260 JOB_STATUS_ERROR = "error"
261
262 OP_STATUS_QUEUED = "queued"
263 OP_STATUS_RUNNING = "running"
264 OP_STATUS_SUCCESS = "success"
265 OP_STATUS_ERROR = "error"
266
267 # Execution log types
268 ELOG_MESSAGE = "message"
269 ELOG_PROGRESS = "progress"