4 # Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012 Google Inc.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions are
11 # 1. Redistributions of source code must retain the above copyright notice,
12 # this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 # notice, this list of conditions and the following disclaimer in the
16 # documentation and/or other materials provided with the distribution.
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
19 # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 """Functions to bootstrap a new cluster.
41 from ganeti
.cmdlib
import cluster
42 import ganeti
.rpc
.node
as rpc
43 from ganeti
import ssh
44 from ganeti
import utils
45 from ganeti
import errors
46 from ganeti
import config
47 from ganeti
import constants
48 from ganeti
import objects
49 from ganeti
import ssconf
50 from ganeti
import serializer
51 from ganeti
import hypervisor
52 from ganeti
.storage
import drbd
53 from ganeti
.storage
import filestorage
54 from ganeti
import netutils
55 from ganeti
import luxi
56 from ganeti
import jstore
57 from ganeti
import pathutils
58 from ganeti
import runtime
59 from ganeti
import vcluster
62 # ec_id for InitConfig's temporary reservation manager
63 _INITCONF_ECID
= "initconfig-ecid"
65 #: After how many seconds daemon must be responsive
66 _DAEMON_READY_TIMEOUT
= 10.0
69 def GenerateHmacKey(file_name
):
70 """Writes a new HMAC key.
73 @param file_name: Path to output file
76 utils
.WriteFile(file_name
, data
="%s\n" % utils
.GenerateSecret(), mode
=0400,
80 # pylint: disable=R0913
81 def GenerateClusterCrypto(new_cluster_cert
, new_rapi_cert
, new_spice_cert
,
82 new_confd_hmac_key
, new_cds
, new_client_cert
,
84 rapi_cert_pem
=None, spice_cert_pem
=None,
85 spice_cacert_pem
=None, cds
=None,
86 nodecert_file
=pathutils
.NODED_CERT_FILE
,
87 clientcert_file
=pathutils
.NODED_CLIENT_CERT_FILE
,
88 rapicert_file
=pathutils
.RAPI_CERT_FILE
,
89 spicecert_file
=pathutils
.SPICE_CERT_FILE
,
90 spicecacert_file
=pathutils
.SPICE_CACERT_FILE
,
91 hmackey_file
=pathutils
.CONFD_HMAC_KEY
,
92 cds_file
=pathutils
.CLUSTER_DOMAIN_SECRET_FILE
):
93 """Updates the cluster certificates, keys and secrets.
95 @type new_cluster_cert: bool
96 @param new_cluster_cert: Whether to generate a new cluster certificate
97 @type new_rapi_cert: bool
98 @param new_rapi_cert: Whether to generate a new RAPI certificate
99 @type new_spice_cert: bool
100 @param new_spice_cert: Whether to generate a new SPICE certificate
101 @type new_confd_hmac_key: bool
102 @param new_confd_hmac_key: Whether to generate a new HMAC key
104 @param new_cds: Whether to generate a new cluster domain secret
105 @type new_client_cert: bool
106 @param new_client_cert: Whether to generate a new client certificate
107 @type master_name: string
108 @param master_name: FQDN of the master node
109 @type rapi_cert_pem: string
110 @param rapi_cert_pem: New RAPI certificate in PEM format
111 @type spice_cert_pem: string
112 @param spice_cert_pem: New SPICE certificate in PEM format
113 @type spice_cacert_pem: string
114 @param spice_cacert_pem: Certificate of the CA that signed the SPICE
115 certificate, in PEM format
117 @param cds: New cluster domain secret
118 @type nodecert_file: string
119 @param nodecert_file: optional override of the node cert file path
120 @type rapicert_file: string
121 @param rapicert_file: optional override of the rapi cert file path
122 @type spicecert_file: string
123 @param spicecert_file: optional override of the spice cert file path
124 @type spicecacert_file: string
125 @param spicecacert_file: optional override of the spice CA cert file path
126 @type hmackey_file: string
127 @param hmackey_file: optional override of the hmac key file path
130 # pylint: disable=R0913
131 # noded SSL certificate
132 utils
.GenerateNewSslCert(
133 new_cluster_cert
, nodecert_file
, 1,
134 "Generating new cluster certificate at %s" % nodecert_file
)
136 # If the cluster certificate was renewed, the client cert has to be
137 # renewed and resigned.
138 if new_cluster_cert
or new_client_cert
:
139 utils
.GenerateNewClientSslCert(clientcert_file
, nodecert_file
,
143 if new_confd_hmac_key
or not os
.path
.exists(hmackey_file
):
144 logging
.debug("Writing new confd HMAC key to %s", hmackey_file
)
145 GenerateHmacKey(hmackey_file
)
148 # Assume rapi_pem contains a valid PEM-formatted certificate and key
149 logging
.debug("Writing RAPI certificate at %s", rapicert_file
)
150 utils
.WriteFile(rapicert_file
, data
=rapi_cert_pem
, backup
=True)
153 utils
.GenerateNewSslCert(
154 new_rapi_cert
, rapicert_file
, 1,
155 "Generating new RAPI certificate at %s" % rapicert_file
)
158 spice_cert_exists
= os
.path
.exists(spicecert_file
)
159 spice_cacert_exists
= os
.path
.exists(spicecacert_file
)
161 # spice_cert_pem implies also spice_cacert_pem
162 logging
.debug("Writing SPICE certificate at %s", spicecert_file
)
163 utils
.WriteFile(spicecert_file
, data
=spice_cert_pem
, backup
=True)
164 logging
.debug("Writing SPICE CA certificate at %s", spicecacert_file
)
165 utils
.WriteFile(spicecacert_file
, data
=spice_cacert_pem
, backup
=True)
166 elif new_spice_cert
or not spice_cert_exists
:
167 if spice_cert_exists
:
168 utils
.CreateBackup(spicecert_file
)
169 if spice_cacert_exists
:
170 utils
.CreateBackup(spicecacert_file
)
172 logging
.debug("Generating new self-signed SPICE certificate at %s",
174 (_
, cert_pem
) = utils
.GenerateSelfSignedSslCert(spicecert_file
, 1)
176 # Self-signed certificate -> the public certificate is also the CA public
178 logging
.debug("Writing the public certificate to %s",
180 utils
.io
.WriteFile(spicecacert_file
, mode
=0400, data
=cert_pem
)
182 # Cluster domain secret
184 logging
.debug("Writing cluster domain secret to %s", cds_file
)
185 utils
.WriteFile(cds_file
, data
=cds
, backup
=True)
187 elif new_cds
or not os
.path
.exists(cds_file
):
188 logging
.debug("Generating new cluster domain secret at %s", cds_file
)
189 GenerateHmacKey(cds_file
)
192 def _InitGanetiServerSetup(master_name
, cfg
):
193 """Setup the necessary configuration for the initial node daemon.
195 This creates the nodepass file containing the shared password for
196 the cluster, generates the SSL certificate and starts the node daemon.
198 @type master_name: str
199 @param master_name: Name of the master node
200 @type cfg: ConfigWriter
201 @param cfg: the configuration writer
204 # Generate cluster secrets
205 GenerateClusterCrypto(True, False, False, False, False, False, master_name
)
207 # Add the master's SSL certificate digest to the configuration.
208 master_uuid
= cfg
.GetMasterNode()
209 master_digest
= utils
.GetCertificateDigest()
210 cfg
.AddNodeToCandidateCerts(master_uuid
, master_digest
)
211 cfg
.Update(cfg
.GetClusterInfo(), logging
.error
)
212 ssconf
.WriteSsconfFiles(cfg
.GetSsconfValues())
214 if not os
.path
.exists(
215 os
.path
.join(pathutils
.DATA_DIR
,
216 "%s%s" % (constants
.SSCONF_FILEPREFIX
,
217 constants
.SS_MASTER_CANDIDATES_CERTS
))):
218 raise errors
.OpExecError("Ssconf file for master candidate certificates"
221 if not os
.path
.exists(pathutils
.NODED_CERT_FILE
):
222 raise errors
.OpExecError("The server certficate was not created properly.")
224 if not os
.path
.exists(pathutils
.NODED_CLIENT_CERT_FILE
):
225 raise errors
.OpExecError("The client certificate was not created"
228 # set up the inter-node password and certificate
229 result
= utils
.RunCmd([pathutils
.DAEMON_UTIL
, "start", constants
.NODED
])
231 raise errors
.OpExecError("Could not start the node daemon, command %s"
232 " had exitcode %s and error %s" %
233 (result
.cmd
, result
.exit_code
, result
.output
))
235 _WaitForNodeDaemon(master_name
)
238 def _WaitForNodeDaemon(node_name
):
239 """Wait for node daemon to become responsive.
242 def _CheckNodeDaemon():
243 # Pylint bug <http://www.logilab.org/ticket/35642>
244 # pylint: disable=E1101
245 result
= rpc
.BootstrapRunner().call_version([node_name
])[node_name
]
247 raise utils
.RetryAgain()
250 utils
.Retry(_CheckNodeDaemon
, 1.0, _DAEMON_READY_TIMEOUT
)
251 except utils
.RetryTimeout
:
252 raise errors
.OpExecError("Node daemon on %s didn't answer queries within"
253 " %s seconds" % (node_name
, _DAEMON_READY_TIMEOUT
))
256 def _WaitForMasterDaemon():
257 """Wait for master daemon to become responsive.
260 def _CheckMasterDaemon():
263 (cluster_name
, ) = cl
.QueryConfigValues(["cluster_name"])
265 raise utils
.RetryAgain()
267 logging
.debug("Received cluster name %s from master", cluster_name
)
270 utils
.Retry(_CheckMasterDaemon
, 1.0, _DAEMON_READY_TIMEOUT
)
271 except utils
.RetryTimeout
:
272 raise errors
.OpExecError("Master daemon didn't answer queries within"
273 " %s seconds" % _DAEMON_READY_TIMEOUT
)
276 def _WaitForSshDaemon(hostname
, port
):
277 """Wait for SSH daemon to become responsive.
280 family
= ssconf
.SimpleStore().GetPrimaryIPFamily()
281 hostip
= netutils
.GetHostname(name
=hostname
, family
=family
).ip
283 def _CheckSshDaemon():
284 if netutils
.TcpPing(hostip
, port
, timeout
=1.0, live_port_needed
=True):
285 logging
.debug("SSH daemon on %s:%s (IP address %s) has become"
286 " responsive", hostname
, port
, hostip
)
288 raise utils
.RetryAgain()
291 utils
.Retry(_CheckSshDaemon
, 1.0, _DAEMON_READY_TIMEOUT
)
292 except utils
.RetryTimeout
:
293 raise errors
.OpExecError("SSH daemon on %s:%s (IP address %s) didn't"
294 " become responsive within %s seconds" %
295 (hostname
, port
, hostip
, _DAEMON_READY_TIMEOUT
))
298 def _InitFileStorageDir(file_storage_dir
):
299 """Initialize if needed the file storage.
301 @param file_storage_dir: the user-supplied value
302 @return: either empty string (if file storage was disabled at build
303 time) or the normalized path to the storage directory
306 file_storage_dir
= os
.path
.normpath(file_storage_dir
)
308 if not os
.path
.isabs(file_storage_dir
):
309 raise errors
.OpPrereqError("File storage directory '%s' is not an absolute"
310 " path" % file_storage_dir
, errors
.ECODE_INVAL
)
312 if not os
.path
.exists(file_storage_dir
):
314 os
.makedirs(file_storage_dir
, 0750)
316 raise errors
.OpPrereqError("Cannot create file storage directory"
317 " '%s': %s" % (file_storage_dir
, err
),
318 errors
.ECODE_ENVIRON
)
320 if not os
.path
.isdir(file_storage_dir
):
321 raise errors
.OpPrereqError("The file storage directory '%s' is not"
322 " a directory." % file_storage_dir
,
323 errors
.ECODE_ENVIRON
)
325 return file_storage_dir
328 def _PrepareFileBasedStorage(
329 enabled_disk_templates
, file_storage_dir
,
330 default_dir
, file_disk_template
, _storage_path_acceptance_fn
,
331 init_fn
=_InitFileStorageDir
, acceptance_fn
=None):
332 """Checks if a file-base storage type is enabled and inits the dir.
334 @type enabled_disk_templates: list of string
335 @param enabled_disk_templates: list of enabled disk templates
336 @type file_storage_dir: string
337 @param file_storage_dir: the file storage directory
338 @type default_dir: string
339 @param default_dir: default file storage directory when C{file_storage_dir}
341 @type file_disk_template: string
342 @param file_disk_template: a disk template whose storage type is 'ST_FILE',
343 'ST_SHARED_FILE' or 'ST_GLUSTER'
344 @type _storage_path_acceptance_fn: function
345 @param _storage_path_acceptance_fn: checks whether the given file-based
346 storage directory is acceptable
347 @see: C{cluster.CheckFileBasedStoragePathVsEnabledDiskTemplates} for details
350 @returns: the name of the actual file storage directory
353 assert (file_disk_template
in utils
.storage
.GetDiskTemplatesOfStorageTypes(
354 constants
.ST_FILE
, constants
.ST_SHARED_FILE
, constants
.ST_GLUSTER
357 if file_storage_dir
is None:
358 file_storage_dir
= default_dir
359 if not acceptance_fn
:
361 lambda path
: filestorage
.CheckFileStoragePathAcceptance(
362 path
, exact_match_ok
=True)
364 _storage_path_acceptance_fn(logging
.warning
, file_storage_dir
,
365 enabled_disk_templates
)
367 file_storage_enabled
= file_disk_template
in enabled_disk_templates
368 if file_storage_enabled
:
370 acceptance_fn(file_storage_dir
)
371 except errors
.FileStoragePathError
as e
:
372 raise errors
.OpPrereqError(str(e
))
373 result_file_storage_dir
= init_fn(file_storage_dir
)
375 result_file_storage_dir
= file_storage_dir
376 return result_file_storage_dir
379 def _PrepareFileStorage(
380 enabled_disk_templates
, file_storage_dir
, init_fn
=_InitFileStorageDir
,
382 """Checks if file storage is enabled and inits the dir.
384 @see: C{_PrepareFileBasedStorage}
387 return _PrepareFileBasedStorage(
388 enabled_disk_templates
, file_storage_dir
,
389 pathutils
.DEFAULT_FILE_STORAGE_DIR
, constants
.DT_FILE
,
390 cluster
.CheckFileStoragePathVsEnabledDiskTemplates
,
391 init_fn
=init_fn
, acceptance_fn
=acceptance_fn
)
394 def _PrepareSharedFileStorage(
395 enabled_disk_templates
, file_storage_dir
, init_fn
=_InitFileStorageDir
,
397 """Checks if shared file storage is enabled and inits the dir.
399 @see: C{_PrepareFileBasedStorage}
402 return _PrepareFileBasedStorage(
403 enabled_disk_templates
, file_storage_dir
,
404 pathutils
.DEFAULT_SHARED_FILE_STORAGE_DIR
, constants
.DT_SHARED_FILE
,
405 cluster
.CheckSharedFileStoragePathVsEnabledDiskTemplates
,
406 init_fn
=init_fn
, acceptance_fn
=acceptance_fn
)
409 def _PrepareGlusterStorage(
410 enabled_disk_templates
, file_storage_dir
, init_fn
=_InitFileStorageDir
,
412 """Checks if gluster storage is enabled and inits the dir.
414 @see: C{_PrepareFileBasedStorage}
417 return _PrepareFileBasedStorage(
418 enabled_disk_templates
, file_storage_dir
,
419 pathutils
.DEFAULT_GLUSTER_STORAGE_DIR
, constants
.DT_GLUSTER
,
420 cluster
.CheckGlusterStoragePathVsEnabledDiskTemplates
,
421 init_fn
=init_fn
, acceptance_fn
=acceptance_fn
)
424 def _InitCheckEnabledDiskTemplates(enabled_disk_templates
):
425 """Checks the sanity of the enabled disk templates.
428 if not enabled_disk_templates
:
429 raise errors
.OpPrereqError("Enabled disk templates list must contain at"
430 " least one member", errors
.ECODE_INVAL
)
431 invalid_disk_templates
= \
432 set(enabled_disk_templates
) - constants
.DISK_TEMPLATES
433 if invalid_disk_templates
:
434 raise errors
.OpPrereqError("Enabled disk templates list contains invalid"
435 " entries: %s" % invalid_disk_templates
,
439 def _RestrictIpolicyToEnabledDiskTemplates(ipolicy
, enabled_disk_templates
):
440 """Restricts the ipolicy's disk templates to the enabled ones.
442 This function clears the ipolicy's list of allowed disk templates from the
443 ones that are not enabled by the cluster.
446 @param ipolicy: the instance policy
447 @type enabled_disk_templates: list of string
448 @param enabled_disk_templates: the list of cluster-wide enabled disk
452 assert constants
.IPOLICY_DTS
in ipolicy
453 allowed_disk_templates
= ipolicy
[constants
.IPOLICY_DTS
]
454 restricted_disk_templates
= list(set(allowed_disk_templates
)
455 .intersection(set(enabled_disk_templates
)))
456 ipolicy
[constants
.IPOLICY_DTS
] = restricted_disk_templates
459 def _InitCheckDrbdHelper(drbd_helper
, drbd_enabled
):
460 """Checks the DRBD usermode helper.
462 @type drbd_helper: string
463 @param drbd_helper: name of the DRBD usermode helper that the system should
470 if drbd_helper
is not None:
472 curr_helper
= drbd
.DRBD8
.GetUsermodeHelper()
473 except errors
.BlockDeviceError
, err
:
474 raise errors
.OpPrereqError("Error while checking drbd helper"
475 " (disable drbd with --enabled-disk-templates"
476 " if you are not using drbd): %s" % str(err
),
477 errors
.ECODE_ENVIRON
)
478 if drbd_helper
!= curr_helper
:
479 raise errors
.OpPrereqError("Error: requiring %s as drbd helper but %s"
480 " is the current helper" % (drbd_helper
,
485 def InitCluster(cluster_name
, mac_prefix
, # pylint: disable=R0913, R0914
486 master_netmask
, master_netdev
, file_storage_dir
,
487 shared_file_storage_dir
, gluster_storage_dir
,
488 candidate_pool_size
, secondary_ip
=None,
489 vg_name
=None, beparams
=None, nicparams
=None, ndparams
=None,
490 hvparams
=None, diskparams
=None, enabled_hypervisors
=None,
491 modify_etc_hosts
=True, modify_ssh_setup
=True,
492 maintain_node_health
=False, drbd_helper
=None, uid_pool
=None,
493 default_iallocator
=None, default_iallocator_params
=None,
494 primary_ip_version
=None, ipolicy
=None,
495 prealloc_wipe_disks
=False, use_external_mip_script
=False,
496 hv_state
=None, disk_state
=None, enabled_disk_templates
=None,
497 install_image
=None, zeroing_image
=None, compression_tools
=None,
498 enabled_user_shutdown
=False):
499 """Initialise the cluster.
501 @type candidate_pool_size: int
502 @param candidate_pool_size: master candidate pool size
504 @type enabled_disk_templates: list of string
505 @param enabled_disk_templates: list of disk_templates to be used in this
508 @type enabled_user_shutdown: bool
509 @param enabled_user_shutdown: whether user shutdown is enabled cluster
513 # TODO: complete the docstring
514 if config
.ConfigWriter
.IsCluster():
515 raise errors
.OpPrereqError("Cluster is already initialised",
518 data_dir
= vcluster
.AddNodePrefix(pathutils
.DATA_DIR
)
519 queue_dir
= vcluster
.AddNodePrefix(pathutils
.QUEUE_DIR
)
520 archive_dir
= vcluster
.AddNodePrefix(pathutils
.JOB_QUEUE_ARCHIVE_DIR
)
521 for ddir
in [queue_dir
, data_dir
, archive_dir
]:
522 if os
.path
.isdir(ddir
):
523 for entry
in os
.listdir(ddir
):
524 if not os
.path
.isdir(os
.path
.join(ddir
, entry
)):
525 raise errors
.OpPrereqError(
526 "%s contains non-directory entries like %s. Remove left-overs of an"
527 " old cluster before initialising a new one" % (ddir
, entry
),
530 if not enabled_hypervisors
:
531 raise errors
.OpPrereqError("Enabled hypervisors list must contain at"
532 " least one member", errors
.ECODE_INVAL
)
533 invalid_hvs
= set(enabled_hypervisors
) - constants
.HYPER_TYPES
535 raise errors
.OpPrereqError("Enabled hypervisors contains invalid"
536 " entries: %s" % invalid_hvs
,
539 _InitCheckEnabledDiskTemplates(enabled_disk_templates
)
542 ipcls
= netutils
.IPAddress
.GetClassFromIpVersion(primary_ip_version
)
543 except errors
.ProgrammerError
:
544 raise errors
.OpPrereqError("Invalid primary ip version: %d." %
545 primary_ip_version
, errors
.ECODE_INVAL
)
547 hostname
= netutils
.GetHostname(family
=ipcls
.family
)
548 if not ipcls
.IsValid(hostname
.ip
):
549 raise errors
.OpPrereqError("This host's IP (%s) is not a valid IPv%d"
550 " address." % (hostname
.ip
, primary_ip_version
),
553 if ipcls
.IsLoopback(hostname
.ip
):
554 raise errors
.OpPrereqError("This host's IP (%s) resolves to a loopback"
555 " address. Please fix DNS or %s." %
556 (hostname
.ip
, pathutils
.ETC_HOSTS
),
557 errors
.ECODE_ENVIRON
)
559 if not ipcls
.Own(hostname
.ip
):
560 raise errors
.OpPrereqError("Inconsistency: this host's name resolves"
561 " to %s,\nbut this ip address does not"
562 " belong to this host" %
563 hostname
.ip
, errors
.ECODE_ENVIRON
)
565 clustername
= netutils
.GetHostname(name
=cluster_name
, family
=ipcls
.family
)
567 if netutils
.TcpPing(clustername
.ip
, constants
.DEFAULT_NODED_PORT
, timeout
=5):
568 raise errors
.OpPrereqError("Cluster IP already active",
569 errors
.ECODE_NOTUNIQUE
)
572 if primary_ip_version
== constants
.IP6_VERSION
:
573 raise errors
.OpPrereqError("When using a IPv6 primary address, a valid"
574 " IPv4 address must be given as secondary",
576 secondary_ip
= hostname
.ip
578 if not netutils
.IP4Address
.IsValid(secondary_ip
):
579 raise errors
.OpPrereqError("Secondary IP address (%s) has to be a valid"
580 " IPv4 address." % secondary_ip
,
583 if not netutils
.IP4Address
.Own(secondary_ip
):
584 raise errors
.OpPrereqError("You gave %s as secondary IP,"
585 " but it does not belong to this host." %
586 secondary_ip
, errors
.ECODE_ENVIRON
)
588 if master_netmask
is not None:
589 if not ipcls
.ValidateNetmask(master_netmask
):
590 raise errors
.OpPrereqError("CIDR netmask (%s) not valid for IPv%s " %
591 (master_netmask
, primary_ip_version
),
594 master_netmask
= ipcls
.iplen
597 # Check if volume group is valid
598 vgstatus
= utils
.CheckVolumeGroupSize(utils
.ListVolumeGroups(), vg_name
,
599 constants
.MIN_VG_SIZE
)
601 raise errors
.OpPrereqError("Error: %s" % vgstatus
, errors
.ECODE_INVAL
)
603 drbd_enabled
= constants
.DT_DRBD8
in enabled_disk_templates
604 _InitCheckDrbdHelper(drbd_helper
, drbd_enabled
)
606 logging
.debug("Stopping daemons (if any are running)")
607 result
= utils
.RunCmd([pathutils
.DAEMON_UTIL
, "stop-all"])
609 raise errors
.OpExecError("Could not stop daemons, command %s"
610 " had exitcode %s and error '%s'" %
611 (result
.cmd
, result
.exit_code
, result
.output
))
613 file_storage_dir
= _PrepareFileStorage(enabled_disk_templates
,
615 shared_file_storage_dir
= _PrepareSharedFileStorage(enabled_disk_templates
,
616 shared_file_storage_dir
)
617 gluster_storage_dir
= _PrepareGlusterStorage(enabled_disk_templates
,
620 if not re
.match("^[0-9a-z]{2}:[0-9a-z]{2}:[0-9a-z]{2}$", mac_prefix
):
621 raise errors
.OpPrereqError("Invalid mac prefix given '%s'" % mac_prefix
,
624 if not nicparams
.get('mode', None) == constants
.NIC_MODE_OVS
:
625 # Do not do this check if mode=openvswitch, since the openvswitch is not
627 result
= utils
.RunCmd(["ip", "link", "show", "dev", master_netdev
])
629 raise errors
.OpPrereqError("Invalid master netdev given (%s): '%s'" %
631 result
.output
.strip()), errors
.ECODE_INVAL
)
633 dirs
= [(pathutils
.RUN_DIR
, constants
.RUN_DIRS_MODE
)]
634 utils
.EnsureDirs(dirs
)
636 objects
.UpgradeBeParams(beparams
)
637 utils
.ForceDictType(beparams
, constants
.BES_PARAMETER_TYPES
)
638 utils
.ForceDictType(nicparams
, constants
.NICS_PARAMETER_TYPES
)
640 objects
.NIC
.CheckParameterSyntax(nicparams
)
642 full_ipolicy
= objects
.FillIPolicy(constants
.IPOLICY_DEFAULTS
, ipolicy
)
643 _RestrictIpolicyToEnabledDiskTemplates(full_ipolicy
, enabled_disk_templates
)
645 if ndparams
is not None:
646 utils
.ForceDictType(ndparams
, constants
.NDS_PARAMETER_TYPES
)
648 ndparams
= dict(constants
.NDC_DEFAULTS
)
650 # This is ugly, as we modify the dict itself
651 # FIXME: Make utils.ForceDictType pure functional or write a wrapper
654 for hvname
, hvs_data
in hv_state
.items():
655 utils
.ForceDictType(hvs_data
, constants
.HVSTS_PARAMETER_TYPES
)
656 hv_state
[hvname
] = objects
.Cluster
.SimpleFillHvState(hvs_data
)
658 hv_state
= dict((hvname
, constants
.HVST_DEFAULTS
)
659 for hvname
in enabled_hypervisors
)
661 # FIXME: disk_state has no default values yet
663 for storage
, ds_data
in disk_state
.items():
664 if storage
not in constants
.DS_VALID_TYPES
:
665 raise errors
.OpPrereqError("Invalid storage type in disk state: %s" %
666 storage
, errors
.ECODE_INVAL
)
667 for ds_name
, state
in ds_data
.items():
668 utils
.ForceDictType(state
, constants
.DSS_PARAMETER_TYPES
)
669 ds_data
[ds_name
] = objects
.Cluster
.SimpleFillDiskState(state
)
671 # hvparams is a mapping of hypervisor->hvparams dict
672 for hv_name
, hv_params
in hvparams
.iteritems():
673 utils
.ForceDictType(hv_params
, constants
.HVS_PARAMETER_TYPES
)
674 hv_class
= hypervisor
.GetHypervisor(hv_name
)
675 hv_class
.CheckParameterSyntax(hv_params
)
677 # diskparams is a mapping of disk-template->diskparams dict
678 for template
, dt_params
in diskparams
.items():
679 param_keys
= set(dt_params
.keys())
680 default_param_keys
= set(constants
.DISK_DT_DEFAULTS
[template
].keys())
681 if not (param_keys
<= default_param_keys
):
682 unknown_params
= param_keys
- default_param_keys
683 raise errors
.OpPrereqError("Invalid parameters for disk template %s:"
685 utils
.CommaJoin(unknown_params
)),
687 utils
.ForceDictType(dt_params
, constants
.DISK_DT_TYPES
)
688 if template
== constants
.DT_DRBD8
and vg_name
is not None:
689 # The default METAVG value is equal to the VG name set at init time,
691 dt_params
[constants
.DRBD_DEFAULT_METAVG
] = vg_name
694 utils
.VerifyDictOptions(diskparams
, constants
.DISK_DT_DEFAULTS
)
695 except errors
.OpPrereqError
, err
:
696 raise errors
.OpPrereqError("While verify diskparam options: %s" % err
,
699 # set up ssh config and /etc/hosts
702 if os
.path
.isfile(pathutils
.SSH_HOST_RSA_PUB
):
703 sshline
= utils
.ReadFile(pathutils
.SSH_HOST_RSA_PUB
)
704 rsa_sshkey
= sshline
.split(" ")[1]
705 if os
.path
.isfile(pathutils
.SSH_HOST_DSA_PUB
):
706 sshline
= utils
.ReadFile(pathutils
.SSH_HOST_DSA_PUB
)
707 dsa_sshkey
= sshline
.split(" ")[1]
708 if not rsa_sshkey
and not dsa_sshkey
:
709 raise errors
.OpPrereqError("Failed to find SSH public keys",
710 errors
.ECODE_ENVIRON
)
713 utils
.AddHostToEtcHosts(hostname
.name
, hostname
.ip
)
718 if default_iallocator
is not None:
719 alloc_script
= utils
.FindFile(default_iallocator
,
720 constants
.IALLOCATOR_SEARCH_PATH
,
722 if alloc_script
is None:
723 raise errors
.OpPrereqError("Invalid default iallocator script '%s'"
724 " specified" % default_iallocator
,
728 if utils
.FindFile(constants
.IALLOC_HAIL
,
729 constants
.IALLOCATOR_SEARCH_PATH
,
731 default_iallocator
= constants
.IALLOC_HAIL
733 # check if we have all the users we need
736 except errors
.ConfigurationError
, err
:
737 raise errors
.OpPrereqError("Required system user/group missing: %s" %
738 err
, errors
.ECODE_ENVIRON
)
744 if compression_tools
is not None:
745 cluster
.CheckCompressionTools(compression_tools
)
747 initial_dc_config
= dict(active
=True,
748 interval
=int(constants
.MOND_TIME_INTERVAL
* 1e6
))
749 data_collectors
= dict(
750 (name
, initial_dc_config
.copy())
751 for name
in constants
.DATA_COLLECTOR_NAMES
)
753 # init of cluster config file
754 cluster_config
= objects
.Cluster(
756 rsahostkeypub
=rsa_sshkey
,
757 dsahostkeypub
=dsa_sshkey
,
758 highest_used_port
=(constants
.FIRST_DRBD_PORT
- 1),
759 mac_prefix
=mac_prefix
,
760 volume_group_name
=vg_name
,
761 tcpudp_port_pool
=set(),
762 master_ip
=clustername
.ip
,
763 master_netmask
=master_netmask
,
764 master_netdev
=master_netdev
,
765 cluster_name
=clustername
.name
,
766 file_storage_dir
=file_storage_dir
,
767 shared_file_storage_dir
=shared_file_storage_dir
,
768 gluster_storage_dir
=gluster_storage_dir
,
769 enabled_hypervisors
=enabled_hypervisors
,
770 beparams
={constants
.PP_DEFAULT
: beparams
},
771 nicparams
={constants
.PP_DEFAULT
: nicparams
},
774 diskparams
=diskparams
,
775 candidate_pool_size
=candidate_pool_size
,
776 modify_etc_hosts
=modify_etc_hosts
,
777 modify_ssh_setup
=modify_ssh_setup
,
781 maintain_node_health
=maintain_node_health
,
782 data_collectors
=data_collectors
,
783 drbd_usermode_helper
=drbd_helper
,
784 default_iallocator
=default_iallocator
,
785 default_iallocator_params
=default_iallocator_params
,
786 primary_ip_family
=ipcls
.family
,
787 prealloc_wipe_disks
=prealloc_wipe_disks
,
788 use_external_mip_script
=use_external_mip_script
,
789 ipolicy
=full_ipolicy
,
790 hv_state_static
=hv_state
,
791 disk_state_static
=disk_state
,
792 enabled_disk_templates
=enabled_disk_templates
,
793 candidate_certs
=candidate_certs
,
795 osparams_private_cluster
={},
796 install_image
=install_image
,
797 zeroing_image
=zeroing_image
,
798 compression_tools
=compression_tools
,
799 enabled_user_shutdown
=enabled_user_shutdown
,
801 master_node_config
= objects
.Node(name
=hostname
.name
,
802 primary_ip
=hostname
.ip
,
803 secondary_ip
=secondary_ip
,
805 master_candidate
=True,
806 offline
=False, drained
=False,
807 ctime
=now
, mtime
=now
,
809 InitConfig(constants
.CONFIG_VERSION
, cluster_config
, master_node_config
)
810 cfg
= config
.ConfigWriter(offline
=True)
811 ssh
.WriteKnownHostsFile(cfg
, pathutils
.SSH_KNOWN_HOSTS_FILE
)
812 cfg
.Update(cfg
.GetClusterInfo(), logging
.error
)
813 ssconf
.WriteSsconfFiles(cfg
.GetSsconfValues())
815 master_uuid
= cfg
.GetMasterNode()
817 ssh
.InitPubKeyFile(master_uuid
)
818 # set up the inter-node password and certificate
819 _InitGanetiServerSetup(hostname
.name
, cfg
)
821 logging
.debug("Starting daemons")
822 result
= utils
.RunCmd([pathutils
.DAEMON_UTIL
, "start-all"])
824 raise errors
.OpExecError("Could not start daemons, command %s"
825 " had exitcode %s and error %s" %
826 (result
.cmd
, result
.exit_code
, result
.output
))
828 _WaitForMasterDaemon()
831 def InitConfig(version
, cluster_config
, master_node_config
,
832 cfg_file
=pathutils
.CLUSTER_CONF_FILE
):
833 """Create the initial cluster configuration.
835 It will contain the current node, which will also be the master
836 node, and no instances.
839 @param version: configuration version
840 @type cluster_config: L{objects.Cluster}
841 @param cluster_config: cluster configuration
842 @type master_node_config: L{objects.Node}
843 @param master_node_config: master node configuration
844 @type cfg_file: string
845 @param cfg_file: configuration file path
848 uuid_generator
= config
.TemporaryReservationManager()
849 cluster_config
.uuid
= uuid_generator
.Generate([], utils
.NewUUID
,
851 master_node_config
.uuid
= uuid_generator
.Generate([], utils
.NewUUID
,
853 cluster_config
.master_node
= master_node_config
.uuid
855 master_node_config
.uuid
: master_node_config
,
857 default_nodegroup
= objects
.NodeGroup(
858 uuid
=uuid_generator
.Generate([], utils
.NewUUID
, _INITCONF_ECID
),
859 name
=constants
.INITIAL_NODE_GROUP_NAME
,
860 members
=[master_node_config
.uuid
],
864 default_nodegroup
.uuid
: default_nodegroup
,
867 config_data
= objects
.ConfigData(version
=version
,
868 cluster
=cluster_config
,
869 nodegroups
=nodegroups
,
876 ctime
=now
, mtime
=now
)
877 utils
.WriteFile(cfg_file
,
878 data
=serializer
.Dump(config_data
.ToDict()),
882 def FinalizeClusterDestroy(master_uuid
):
883 """Execute the last steps of cluster destroy
885 This function shuts down all the daemons, completing the destroy
886 begun in cmdlib.LUDestroyOpcode.
889 livelock
= utils
.livelock
.LiveLock("bootstrap_destroy")
890 cfg
= config
.GetConfig(None, livelock
)
891 modify_ssh_setup
= cfg
.GetClusterInfo().modify_ssh_setup
892 runner
= rpc
.BootstrapRunner()
894 master_name
= cfg
.GetNodeName(master_uuid
)
896 master_params
= cfg
.GetMasterNetworkParameters()
897 master_params
.uuid
= master_uuid
898 ems
= cfg
.GetUseExternalMipScript()
899 result
= runner
.call_node_deactivate_master_ip(master_name
, master_params
,
902 msg
= result
.fail_msg
904 logging
.warning("Could not disable the master IP: %s", msg
)
906 result
= runner
.call_node_stop_master(master_name
)
907 msg
= result
.fail_msg
909 logging
.warning("Could not disable the master role: %s", msg
)
911 result
= runner
.call_node_leave_cluster(master_name
, modify_ssh_setup
)
912 msg
= result
.fail_msg
914 logging
.warning("Could not shutdown the node daemon and cleanup"
915 " the node: %s", msg
)
918 def SetupNodeDaemon(opts
, cluster_name
, node
, ssh_port
):
919 """Add a node to the cluster.
921 This function must be called before the actual opcode, and will ssh
922 to the remote node, copy the needed files, and start ganeti-noded,
923 allowing the master to do the rest via normal rpc calls.
925 @param cluster_name: the cluster name
926 @param node: the name of the new node
927 @param ssh_port: the SSH port of the new node
931 constants
.NDS_CLUSTER_NAME
: cluster_name
,
932 constants
.NDS_NODE_DAEMON_CERTIFICATE
:
933 utils
.ReadFile(pathutils
.NODED_CERT_FILE
),
934 constants
.NDS_SSCONF
: ssconf
.SimpleStore().ReadAll(),
935 constants
.NDS_START_NODE_DAEMON
: True,
936 constants
.NDS_NODE_NAME
: node
,
939 ssh
.RunSshCmdWithStdin(cluster_name
, node
, pathutils
.NODE_DAEMON_SETUP
,
941 debug
=opts
.debug
, verbose
=opts
.verbose
,
942 use_cluster_key
=True, ask_key
=opts
.ssh_key_check
,
943 strict_host_check
=opts
.ssh_key_check
,
946 _WaitForSshDaemon(node
, ssh_port
)
947 _WaitForNodeDaemon(node
)
950 def MasterFailover(no_voting
=False):
951 """Failover the master node.
953 This checks that we are not already the master, and will cause the
954 current master to cease being master, and the non-master to become
957 @type no_voting: boolean
958 @param no_voting: force the operation without remote nodes agreement
961 @returns: the pair of an exit code and warnings to display
963 sstore
= ssconf
.SimpleStore()
965 old_master
, new_master
= ssconf
.GetMasterAndMyself(sstore
)
966 node_names
= sstore
.GetNodeList()
967 mc_list
= sstore
.GetMasterCandidates()
969 if old_master
== new_master
:
970 raise errors
.OpPrereqError("This commands must be run on the node"
971 " where you want the new master to be."
972 " %s is already the master" %
973 old_master
, errors
.ECODE_INVAL
)
975 if new_master
not in mc_list
:
976 mc_no_master
= [name
for name
in mc_list
if name
!= old_master
]
977 raise errors
.OpPrereqError("This node is not among the nodes marked"
978 " as master candidates. Only these nodes"
979 " can become masters. Current list of"
980 " master candidates is:\n"
981 "%s" % ("\n".join(mc_no_master
)),
985 vote_list
= GatherMasterVotes(node_names
)
988 voted_master
= vote_list
[0][0]
989 if voted_master
is None:
990 raise errors
.OpPrereqError("Cluster is inconsistent, most nodes did"
991 " not respond.", errors
.ECODE_ENVIRON
)
992 elif voted_master
!= old_master
:
993 raise errors
.OpPrereqError("I have a wrong configuration, I believe"
994 " the master is %s but the other nodes"
995 " voted %s. Please resync the configuration"
997 (old_master
, voted_master
),
1004 logging
.info("Setting master to %s, old master: %s", new_master
, old_master
)
1007 # Forcefully start WConfd so that we can access the configuration
1008 result
= utils
.RunCmd([pathutils
.DAEMON_UTIL
,
1009 "start", constants
.WCONFD
, "--force-node",
1010 "--no-voting", "--yes-do-it"])
1012 raise errors
.OpPrereqError("Could not start the configuration daemon,"
1013 " command %s had exitcode %s and error %s" %
1014 (result
.cmd
, result
.exit_code
, result
.output
),
1017 # instantiate a real config writer, as we now know we have the
1018 # configuration data
1019 livelock
= utils
.livelock
.LiveLock("bootstrap_failover")
1020 cfg
= config
.GetConfig(None, livelock
, accept_foreign
=True)
1022 old_master_node
= cfg
.GetNodeInfoByName(old_master
)
1023 if old_master_node
is None:
1024 raise errors
.OpPrereqError("Could not find old master node '%s' in"
1025 " cluster configuration." % old_master
,
1028 cluster_info
= cfg
.GetClusterInfo()
1029 new_master_node
= cfg
.GetNodeInfoByName(new_master
)
1030 if new_master_node
is None:
1031 raise errors
.OpPrereqError("Could not find new master node '%s' in"
1032 " cluster configuration." % new_master
,
1035 cluster_info
.master_node
= new_master_node
.uuid
1036 # this will also regenerate the ssconf files, since we updated the
1038 cfg
.Update(cluster_info
, logging
.error
)
1040 # if cfg.Update worked, then it means the old master daemon won't be
1041 # able now to write its own config file (we rely on locking in both
1042 # backend.UploadFile() and ConfigWriter._Write(); hence the next
1043 # step is to kill the old master
1045 logging
.info("Stopping the master daemon on node %s", old_master
)
1047 runner
= rpc
.BootstrapRunner()
1048 master_params
= cfg
.GetMasterNetworkParameters()
1049 master_params
.uuid
= old_master_node
.uuid
1050 ems
= cfg
.GetUseExternalMipScript()
1051 result
= runner
.call_node_deactivate_master_ip(old_master
,
1054 msg
= result
.fail_msg
1056 warning
= "Could not disable the master IP: %s" % (msg
,)
1057 logging
.warning("%s", warning
)
1058 warnings
.append(warning
)
1060 result
= runner
.call_node_stop_master(old_master
)
1061 msg
= result
.fail_msg
1063 warning
= ("Could not disable the master role on the old master"
1064 " %s, please disable manually: %s" % (old_master
, msg
))
1065 logging
.error("%s", warning
)
1066 warnings
.append(warning
)
1067 except errors
.ConfigurationError
, err
:
1068 logging
.error("Error while trying to set the new master: %s",
1072 # stop WConfd again:
1073 result
= utils
.RunCmd([pathutils
.DAEMON_UTIL
, "stop", constants
.WCONFD
])
1075 warning
= ("Could not stop the configuration daemon,"
1076 " command %s had exitcode %s and error %s"
1077 % (result
.cmd
, result
.exit_code
, result
.output
))
1078 logging
.error("%s", warning
)
1081 logging
.info("Checking master IP non-reachability...")
1083 master_ip
= sstore
.GetMasterIP()
1086 # Here we have a phase where no master should be running
1087 def _check_ip(expected
):
1088 if netutils
.TcpPing(master_ip
, constants
.DEFAULT_NODED_PORT
) != expected
:
1089 raise utils
.RetryAgain()
1092 utils
.Retry(_check_ip
, (1, 1.5, 5), total_timeout
, args
=[False])
1093 except utils
.RetryTimeout
:
1094 warning
= ("The master IP is still reachable after %s seconds,"
1095 " continuing but activating the master IP on the current"
1096 " node will probably fail" % total_timeout
)
1097 logging
.warning("%s", warning
)
1098 warnings
.append(warning
)
1101 if jstore
.CheckDrainFlag():
1102 logging
.info("Undraining job queue")
1103 jstore
.SetDrainFlag(False)
1105 logging
.info("Starting the master daemons on the new master")
1107 result
= rpc
.BootstrapRunner().call_node_start_master_daemons(new_master
,
1109 msg
= result
.fail_msg
1111 logging
.error("Could not start the master role on the new master"
1112 " %s, please check: %s", new_master
, msg
)
1115 # Finally verify that the new master managed to set up the master IP
1116 # and warn if it didn't.
1118 utils
.Retry(_check_ip
, (1, 1.5, 5), total_timeout
, args
=[True])
1119 except utils
.RetryTimeout
:
1120 warning
= ("The master IP did not come up within %s seconds; the"
1121 " cluster should still be working and reachable via %s,"
1122 " but not via the master IP address"
1123 % (total_timeout
, new_master
))
1124 logging
.warning("%s", warning
)
1125 warnings
.append(warning
)
1128 logging
.info("Master failed over from %s to %s", old_master
, new_master
)
1129 return rcode
, warnings
1133 """Returns the current master node.
1135 This is a separate function in bootstrap since it's needed by
1136 gnt-cluster, and instead of importing directly ssconf, it's better
1137 to abstract it in bootstrap, where we do use ssconf in other
1141 sstore
= ssconf
.SimpleStore()
1143 old_master
, _
= ssconf
.GetMasterAndMyself(sstore
)
1148 def GatherMasterVotes(node_names
):
1149 """Check the agreement on who is the master.
1151 This function will return a list of (node, number of votes), ordered
1152 by the number of votes. Errors will be denoted by the key 'None'.
1154 Note that the sum of votes is the number of nodes this machine
1155 knows, whereas the number of entries in the list could be different
1156 (if some nodes vote for another master).
1158 @type node_names: list
1159 @param node_names: the list of nodes to query for master info; the current
1160 node will be removed if it is in the list
1162 @return: list of (node, votes)
1168 results
= rpc
.BootstrapRunner().call_master_node_name(node_names
)
1169 if not isinstance(results
, dict):
1170 # this should not happen (unless internal error in rpc)
1171 logging
.critical("Can't complete rpc call, aborting master startup")
1172 return [(None, len(node_names
))]
1174 for node_name
in results
:
1175 nres
= results
[node_name
]
1179 logging
.warning("Error contacting node %s: %s", node_name
, msg
)
1184 if node
not in votes
:
1189 vote_list
= [v
for v
in votes
.items()]
1190 # sort first on number of votes then on name, since we want None
1191 # sorted later if we have the half of the nodes not responding, and
1192 # half voting all for the same master
1193 vote_list
.sort(key
=lambda x
: (x
[1], x
[0]), reverse
=True)