Statistics
| Branch: | Tag: | Revision:

root / lib / bootstrap.py @ 0359e5d0

History | View | Annotate | Download (41.6 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012 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
"""Functions to bootstrap a new cluster.
23

24
"""
25

    
26
import os
27
import os.path
28
import re
29
import logging
30
import time
31
import tempfile
32

    
33
from ganeti.cmdlib import cluster
34
from ganeti import rpc
35
from ganeti import ssh
36
from ganeti import utils
37
from ganeti import errors
38
from ganeti import config
39
from ganeti import constants
40
from ganeti import objects
41
from ganeti import ssconf
42
from ganeti import serializer
43
from ganeti import hypervisor
44
from ganeti.storage import drbd
45
from ganeti.storage import filestorage
46
from ganeti import netutils
47
from ganeti import luxi
48
from ganeti import jstore
49
from ganeti import pathutils
50

    
51

    
52
# ec_id for InitConfig's temporary reservation manager
53
_INITCONF_ECID = "initconfig-ecid"
54

    
55
#: After how many seconds daemon must be responsive
56
_DAEMON_READY_TIMEOUT = 10.0
57

    
58

    
59
def _InitSSHSetup():
60
  """Setup the SSH configuration for the cluster.
61

62
  This generates a dsa keypair for root, adds the pub key to the
63
  permitted hosts and adds the hostkey to its own known hosts.
64

65
  """
66
  priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.SSH_LOGIN_USER)
67

    
68
  for name in priv_key, pub_key:
69
    if os.path.exists(name):
70
      utils.CreateBackup(name)
71
    utils.RemoveFile(name)
72

    
73
  result = utils.RunCmd(["ssh-keygen", "-t", "dsa",
74
                         "-f", priv_key,
75
                         "-q", "-N", ""])
76
  if result.failed:
77
    raise errors.OpExecError("Could not generate ssh keypair, error %s" %
78
                             result.output)
79

    
80
  utils.AddAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
81

    
82

    
83
def GenerateHmacKey(file_name):
84
  """Writes a new HMAC key.
85

86
  @type file_name: str
87
  @param file_name: Path to output file
88

89
  """
90
  utils.WriteFile(file_name, data="%s\n" % utils.GenerateSecret(), mode=0400,
91
                  backup=True)
92

    
93

    
94
def GenerateClusterCrypto(new_cluster_cert, new_rapi_cert, new_spice_cert,
95
                          new_confd_hmac_key, new_cds,
96
                          rapi_cert_pem=None, spice_cert_pem=None,
97
                          spice_cacert_pem=None, cds=None,
98
                          nodecert_file=pathutils.NODED_CERT_FILE,
99
                          rapicert_file=pathutils.RAPI_CERT_FILE,
100
                          spicecert_file=pathutils.SPICE_CERT_FILE,
101
                          spicecacert_file=pathutils.SPICE_CACERT_FILE,
102
                          hmackey_file=pathutils.CONFD_HMAC_KEY,
103
                          cds_file=pathutils.CLUSTER_DOMAIN_SECRET_FILE):
104
  """Updates the cluster certificates, keys and secrets.
105

106
  @type new_cluster_cert: bool
107
  @param new_cluster_cert: Whether to generate a new cluster certificate
108
  @type new_rapi_cert: bool
109
  @param new_rapi_cert: Whether to generate a new RAPI certificate
110
  @type new_spice_cert: bool
111
  @param new_spice_cert: Whether to generate a new SPICE certificate
112
  @type new_confd_hmac_key: bool
113
  @param new_confd_hmac_key: Whether to generate a new HMAC key
114
  @type new_cds: bool
115
  @param new_cds: Whether to generate a new cluster domain secret
116
  @type rapi_cert_pem: string
117
  @param rapi_cert_pem: New RAPI certificate in PEM format
118
  @type spice_cert_pem: string
119
  @param spice_cert_pem: New SPICE certificate in PEM format
120
  @type spice_cacert_pem: string
121
  @param spice_cacert_pem: Certificate of the CA that signed the SPICE
122
                           certificate, in PEM format
123
  @type cds: string
124
  @param cds: New cluster domain secret
125
  @type nodecert_file: string
126
  @param nodecert_file: optional override of the node cert file path
127
  @type rapicert_file: string
128
  @param rapicert_file: optional override of the rapi cert file path
129
  @type spicecert_file: string
130
  @param spicecert_file: optional override of the spice cert file path
131
  @type spicecacert_file: string
132
  @param spicecacert_file: optional override of the spice CA cert file path
133
  @type hmackey_file: string
134
  @param hmackey_file: optional override of the hmac key file path
135

136
  """
137
  # noded SSL certificate
138
  cluster_cert_exists = os.path.exists(nodecert_file)
139
  if new_cluster_cert or not cluster_cert_exists:
140
    if cluster_cert_exists:
141
      utils.CreateBackup(nodecert_file)
142

    
143
    logging.debug("Generating new cluster certificate at %s", nodecert_file)
144
    utils.GenerateSelfSignedSslCert(nodecert_file)
145

    
146
  # confd HMAC key
147
  if new_confd_hmac_key or not os.path.exists(hmackey_file):
148
    logging.debug("Writing new confd HMAC key to %s", hmackey_file)
149
    GenerateHmacKey(hmackey_file)
150

    
151
  # RAPI
152
  rapi_cert_exists = os.path.exists(rapicert_file)
153

    
154
  if rapi_cert_pem:
155
    # Assume rapi_pem contains a valid PEM-formatted certificate and key
156
    logging.debug("Writing RAPI certificate at %s", rapicert_file)
157
    utils.WriteFile(rapicert_file, data=rapi_cert_pem, backup=True)
158

    
159
  elif new_rapi_cert or not rapi_cert_exists:
160
    if rapi_cert_exists:
161
      utils.CreateBackup(rapicert_file)
162

    
163
    logging.debug("Generating new RAPI certificate at %s", rapicert_file)
164
    utils.GenerateSelfSignedSslCert(rapicert_file)
165

    
166
  # SPICE
167
  spice_cert_exists = os.path.exists(spicecert_file)
168
  spice_cacert_exists = os.path.exists(spicecacert_file)
169
  if spice_cert_pem:
170
    # spice_cert_pem implies also spice_cacert_pem
171
    logging.debug("Writing SPICE certificate at %s", spicecert_file)
172
    utils.WriteFile(spicecert_file, data=spice_cert_pem, backup=True)
173
    logging.debug("Writing SPICE CA certificate at %s", spicecacert_file)
174
    utils.WriteFile(spicecacert_file, data=spice_cacert_pem, backup=True)
175
  elif new_spice_cert or not spice_cert_exists:
176
    if spice_cert_exists:
177
      utils.CreateBackup(spicecert_file)
178
    if spice_cacert_exists:
179
      utils.CreateBackup(spicecacert_file)
180

    
181
    logging.debug("Generating new self-signed SPICE certificate at %s",
182
                  spicecert_file)
183
    (_, cert_pem) = utils.GenerateSelfSignedSslCert(spicecert_file)
184

    
185
    # Self-signed certificate -> the public certificate is also the CA public
186
    # certificate
187
    logging.debug("Writing the public certificate to %s",
188
                  spicecert_file)
189
    utils.io.WriteFile(spicecacert_file, mode=0400, data=cert_pem)
190

    
191
  # Cluster domain secret
192
  if cds:
193
    logging.debug("Writing cluster domain secret to %s", cds_file)
194
    utils.WriteFile(cds_file, data=cds, backup=True)
195

    
196
  elif new_cds or not os.path.exists(cds_file):
197
    logging.debug("Generating new cluster domain secret at %s", cds_file)
198
    GenerateHmacKey(cds_file)
199

    
200

    
201
def _InitGanetiServerSetup(master_name):
202
  """Setup the necessary configuration for the initial node daemon.
203

204
  This creates the nodepass file containing the shared password for
205
  the cluster, generates the SSL certificate and starts the node daemon.
206

207
  @type master_name: str
208
  @param master_name: Name of the master node
209

210
  """
211
  # Generate cluster secrets
212
  GenerateClusterCrypto(True, False, False, False, False)
213

    
214
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "start", constants.NODED])
215
  if result.failed:
216
    raise errors.OpExecError("Could not start the node daemon, command %s"
217
                             " had exitcode %s and error %s" %
218
                             (result.cmd, result.exit_code, result.output))
219

    
220
  _WaitForNodeDaemon(master_name)
221

    
222

    
223
def _WaitForNodeDaemon(node_name):
224
  """Wait for node daemon to become responsive.
225

226
  """
227
  def _CheckNodeDaemon():
228
    # Pylint bug <http://www.logilab.org/ticket/35642>
229
    # pylint: disable=E1101
230
    result = rpc.BootstrapRunner().call_version([node_name])[node_name]
231
    if result.fail_msg:
232
      raise utils.RetryAgain()
233

    
234
  try:
235
    utils.Retry(_CheckNodeDaemon, 1.0, _DAEMON_READY_TIMEOUT)
236
  except utils.RetryTimeout:
237
    raise errors.OpExecError("Node daemon on %s didn't answer queries within"
238
                             " %s seconds" % (node_name, _DAEMON_READY_TIMEOUT))
239

    
240

    
241
def _WaitForMasterDaemon():
242
  """Wait for master daemon to become responsive.
243

244
  """
245
  def _CheckMasterDaemon():
246
    try:
247
      cl = luxi.Client()
248
      (cluster_name, ) = cl.QueryConfigValues(["cluster_name"])
249
    except Exception:
250
      raise utils.RetryAgain()
251

    
252
    logging.debug("Received cluster name %s from master", cluster_name)
253

    
254
  try:
255
    utils.Retry(_CheckMasterDaemon, 1.0, _DAEMON_READY_TIMEOUT)
256
  except utils.RetryTimeout:
257
    raise errors.OpExecError("Master daemon didn't answer queries within"
258
                             " %s seconds" % _DAEMON_READY_TIMEOUT)
259

    
260

    
261
def _WaitForSshDaemon(hostname, port, family):
262
  """Wait for SSH daemon to become responsive.
263

264
  """
265
  hostip = netutils.GetHostname(name=hostname, family=family).ip
266

    
267
  def _CheckSshDaemon():
268
    if netutils.TcpPing(hostip, port, timeout=1.0, live_port_needed=True):
269
      logging.debug("SSH daemon on %s:%s (IP address %s) has become"
270
                    " responsive", hostname, port, hostip)
271
    else:
272
      raise utils.RetryAgain()
273

    
274
  try:
275
    utils.Retry(_CheckSshDaemon, 1.0, _DAEMON_READY_TIMEOUT)
276
  except utils.RetryTimeout:
277
    raise errors.OpExecError("SSH daemon on %s:%s (IP address %s) didn't"
278
                             " become responsive within %s seconds" %
279
                             (hostname, port, hostip, _DAEMON_READY_TIMEOUT))
280

    
281

    
282
def RunNodeSetupCmd(cluster_name, node, basecmd, debug, verbose,
283
                    use_cluster_key, ask_key, strict_host_check,
284
                    port, data):
285
  """Runs a command to configure something on a remote machine.
286

287
  @type cluster_name: string
288
  @param cluster_name: Cluster name
289
  @type node: string
290
  @param node: Node name
291
  @type basecmd: string
292
  @param basecmd: Base command (path on the remote machine)
293
  @type debug: bool
294
  @param debug: Enable debug output
295
  @type verbose: bool
296
  @param verbose: Enable verbose output
297
  @type use_cluster_key: bool
298
  @param use_cluster_key: See L{ssh.SshRunner.BuildCmd}
299
  @type ask_key: bool
300
  @param ask_key: See L{ssh.SshRunner.BuildCmd}
301
  @type strict_host_check: bool
302
  @param strict_host_check: See L{ssh.SshRunner.BuildCmd}
303
  @type port: int
304
  @param port: The SSH port of the remote machine or None for the default
305
  @param data: JSON-serializable input data for script (passed to stdin)
306

307
  """
308
  cmd = [basecmd]
309

    
310
  # Pass --debug/--verbose to the external script if set on our invocation
311
  if debug:
312
    cmd.append("--debug")
313

    
314
  if verbose:
315
    cmd.append("--verbose")
316

    
317
  if port is None:
318
    port = netutils.GetDaemonPort(constants.SSH)
319

    
320
  family = ssconf.SimpleStore().GetPrimaryIPFamily()
321
  srun = ssh.SshRunner(cluster_name,
322
                       ipv6=(family == netutils.IP6Address.family))
323
  scmd = srun.BuildCmd(node, constants.SSH_LOGIN_USER,
324
                       utils.ShellQuoteArgs(cmd),
325
                       batch=False, ask_key=ask_key, quiet=False,
326
                       strict_host_check=strict_host_check,
327
                       use_cluster_key=use_cluster_key,
328
                       port=port)
329

    
330
  tempfh = tempfile.TemporaryFile()
331
  try:
332
    tempfh.write(serializer.DumpJson(data))
333
    tempfh.seek(0)
334

    
335
    result = utils.RunCmd(scmd, interactive=True, input_fd=tempfh)
336
  finally:
337
    tempfh.close()
338

    
339
  if result.failed:
340
    raise errors.OpExecError("Command '%s' failed: %s" %
341
                             (result.cmd, result.fail_reason))
342

    
343
  _WaitForSshDaemon(node, port, family)
344

    
345

    
346
def _InitFileStorageDir(file_storage_dir):
347
  """Initialize if needed the file storage.
348

349
  @param file_storage_dir: the user-supplied value
350
  @return: either empty string (if file storage was disabled at build
351
      time) or the normalized path to the storage directory
352

353
  """
354
  file_storage_dir = os.path.normpath(file_storage_dir)
355

    
356
  if not os.path.isabs(file_storage_dir):
357
    raise errors.OpPrereqError("File storage directory '%s' is not an absolute"
358
                               " path" % file_storage_dir, errors.ECODE_INVAL)
359

    
360
  if not os.path.exists(file_storage_dir):
361
    try:
362
      os.makedirs(file_storage_dir, 0750)
363
    except OSError, err:
364
      raise errors.OpPrereqError("Cannot create file storage directory"
365
                                 " '%s': %s" % (file_storage_dir, err),
366
                                 errors.ECODE_ENVIRON)
367

    
368
  if not os.path.isdir(file_storage_dir):
369
    raise errors.OpPrereqError("The file storage directory '%s' is not"
370
                               " a directory." % file_storage_dir,
371
                               errors.ECODE_ENVIRON)
372

    
373
  return file_storage_dir
374

    
375

    
376
def _PrepareFileBasedStorage(
377
    enabled_disk_templates, file_storage_dir,
378
    default_dir, file_disk_template,
379
    init_fn=_InitFileStorageDir, acceptance_fn=None):
380
  """Checks if a file-base storage type is enabled and inits the dir.
381

382
  @type enabled_disk_templates: list of string
383
  @param enabled_disk_templates: list of enabled disk templates
384
  @type file_storage_dir: string
385
  @param file_storage_dir: the file storage directory
386
  @type default_dir: string
387
  @param default_dir: default file storage directory when C{file_storage_dir}
388
      is 'None'
389
  @type file_disk_template: string
390
  @param file_disk_template: a disk template whose storage type is 'ST_FILE'
391
  @rtype: string
392
  @returns: the name of the actual file storage directory
393

394
  """
395
  assert (file_disk_template in
396
          utils.storage.GetDiskTemplatesOfStorageType(constants.ST_FILE))
397
  if file_storage_dir is None:
398
    file_storage_dir = default_dir
399
  if not acceptance_fn:
400
    acceptance_fn = \
401
        lambda path: filestorage.CheckFileStoragePathAcceptance(
402
            path, exact_match_ok=True)
403

    
404
  cluster.CheckFileStoragePathVsEnabledDiskTemplates(
405
      logging.warning, file_storage_dir, enabled_disk_templates)
406

    
407
  file_storage_enabled = file_disk_template in enabled_disk_templates
408
  if file_storage_enabled:
409
    try:
410
      acceptance_fn(file_storage_dir)
411
    except errors.FileStoragePathError as e:
412
      raise errors.OpPrereqError(str(e))
413
    result_file_storage_dir = init_fn(file_storage_dir)
414
  else:
415
    result_file_storage_dir = file_storage_dir
416
  return result_file_storage_dir
417

    
418

    
419
def _PrepareFileStorage(
420
    enabled_disk_templates, file_storage_dir, init_fn=_InitFileStorageDir,
421
    acceptance_fn=None):
422
  """Checks if file storage is enabled and inits the dir.
423

424
  @see: C{_PrepareFileBasedStorage}
425

426
  """
427
  return _PrepareFileBasedStorage(
428
      enabled_disk_templates, file_storage_dir,
429
      pathutils.DEFAULT_FILE_STORAGE_DIR, constants.DT_FILE,
430
      init_fn=init_fn, acceptance_fn=acceptance_fn)
431

    
432

    
433
def _PrepareSharedFileStorage(
434
    enabled_disk_templates, file_storage_dir, init_fn=_InitFileStorageDir,
435
    acceptance_fn=None):
436
  """Checks if shared file storage is enabled and inits the dir.
437

438
  @see: C{_PrepareFileBasedStorage}
439

440
  """
441
  return _PrepareFileBasedStorage(
442
      enabled_disk_templates, file_storage_dir,
443
      pathutils.DEFAULT_SHARED_FILE_STORAGE_DIR, constants.DT_SHARED_FILE,
444
      init_fn=init_fn, acceptance_fn=acceptance_fn)
445

    
446

    
447
def _InitCheckEnabledDiskTemplates(enabled_disk_templates):
448
  """Checks the sanity of the enabled disk templates.
449

450
  """
451
  if not enabled_disk_templates:
452
    raise errors.OpPrereqError("Enabled disk templates list must contain at"
453
                               " least one member", errors.ECODE_INVAL)
454
  invalid_disk_templates = \
455
    set(enabled_disk_templates) - constants.DISK_TEMPLATES
456
  if invalid_disk_templates:
457
    raise errors.OpPrereqError("Enabled disk templates list contains invalid"
458
                               " entries: %s" % invalid_disk_templates,
459
                               errors.ECODE_INVAL)
460

    
461

    
462
def _RestrictIpolicyToEnabledDiskTemplates(ipolicy, enabled_disk_templates):
463
  """Restricts the ipolicy's disk templates to the enabled ones.
464

465
  This function clears the ipolicy's list of allowed disk templates from the
466
  ones that are not enabled by the cluster.
467

468
  @type ipolicy: dict
469
  @param ipolicy: the instance policy
470
  @type enabled_disk_templates: list of string
471
  @param enabled_disk_templates: the list of cluster-wide enabled disk
472
    templates
473

474
  """
475
  assert constants.IPOLICY_DTS in ipolicy
476
  allowed_disk_templates = ipolicy[constants.IPOLICY_DTS]
477
  restricted_disk_templates = list(set(allowed_disk_templates)
478
                                   .intersection(set(enabled_disk_templates)))
479
  ipolicy[constants.IPOLICY_DTS] = restricted_disk_templates
480

    
481

    
482
def _InitCheckDrbdHelper(drbd_helper, drbd_enabled):
483
  """Checks the DRBD usermode helper.
484

485
  @type drbd_helper: string
486
  @param drbd_helper: name of the DRBD usermode helper that the system should
487
    use
488

489
  """
490
  if not drbd_enabled:
491
    return
492

    
493
  if drbd_helper is not None:
494
    try:
495
      curr_helper = drbd.DRBD8.GetUsermodeHelper()
496
    except errors.BlockDeviceError, err:
497
      raise errors.OpPrereqError("Error while checking drbd helper"
498
                                 " (disable drbd with --enabled-disk-templates"
499
                                 " if you are not using drbd): %s" % str(err),
500
                                 errors.ECODE_ENVIRON)
501
    if drbd_helper != curr_helper:
502
      raise errors.OpPrereqError("Error: requiring %s as drbd helper but %s"
503
                                 " is the current helper" % (drbd_helper,
504
                                                             curr_helper),
505
                                 errors.ECODE_INVAL)
506

    
507

    
508
def InitCluster(cluster_name, mac_prefix, # pylint: disable=R0913, R0914
509
                master_netmask, master_netdev, file_storage_dir,
510
                shared_file_storage_dir, candidate_pool_size, secondary_ip=None,
511
                vg_name=None, beparams=None, nicparams=None, ndparams=None,
512
                hvparams=None, diskparams=None, enabled_hypervisors=None,
513
                modify_etc_hosts=True, modify_ssh_setup=True,
514
                maintain_node_health=False, drbd_helper=None, uid_pool=None,
515
                default_iallocator=None, default_iallocator_params=None,
516
                primary_ip_version=None, ipolicy=None,
517
                prealloc_wipe_disks=False, use_external_mip_script=False,
518
                hv_state=None, disk_state=None, enabled_disk_templates=None):
519
  """Initialise the cluster.
520

521
  @type candidate_pool_size: int
522
  @param candidate_pool_size: master candidate pool size
523
  @type enabled_disk_templates: list of string
524
  @param enabled_disk_templates: list of disk_templates to be used in this
525
    cluster
526

527
  """
528
  # TODO: complete the docstring
529
  if config.ConfigWriter.IsCluster():
530
    raise errors.OpPrereqError("Cluster is already initialised",
531
                               errors.ECODE_STATE)
532

    
533
  if not enabled_hypervisors:
534
    raise errors.OpPrereqError("Enabled hypervisors list must contain at"
535
                               " least one member", errors.ECODE_INVAL)
536
  invalid_hvs = set(enabled_hypervisors) - constants.HYPER_TYPES
537
  if invalid_hvs:
538
    raise errors.OpPrereqError("Enabled hypervisors contains invalid"
539
                               " entries: %s" % invalid_hvs,
540
                               errors.ECODE_INVAL)
541

    
542
  _InitCheckEnabledDiskTemplates(enabled_disk_templates)
543

    
544
  try:
545
    ipcls = netutils.IPAddress.GetClassFromIpVersion(primary_ip_version)
546
  except errors.ProgrammerError:
547
    raise errors.OpPrereqError("Invalid primary ip version: %d." %
548
                               primary_ip_version, errors.ECODE_INVAL)
549

    
550
  hostname = netutils.GetHostname(family=ipcls.family)
551
  if not ipcls.IsValid(hostname.ip):
552
    raise errors.OpPrereqError("This host's IP (%s) is not a valid IPv%d"
553
                               " address." % (hostname.ip, primary_ip_version),
554
                               errors.ECODE_INVAL)
555

    
556
  if ipcls.IsLoopback(hostname.ip):
557
    raise errors.OpPrereqError("This host's IP (%s) resolves to a loopback"
558
                               " address. Please fix DNS or %s." %
559
                               (hostname.ip, pathutils.ETC_HOSTS),
560
                               errors.ECODE_ENVIRON)
561

    
562
  if not ipcls.Own(hostname.ip):
563
    raise errors.OpPrereqError("Inconsistency: this host's name resolves"
564
                               " to %s,\nbut this ip address does not"
565
                               " belong to this host" %
566
                               hostname.ip, errors.ECODE_ENVIRON)
567

    
568
  clustername = netutils.GetHostname(name=cluster_name, family=ipcls.family)
569

    
570
  if netutils.TcpPing(clustername.ip, constants.DEFAULT_NODED_PORT, timeout=5):
571
    raise errors.OpPrereqError("Cluster IP already active",
572
                               errors.ECODE_NOTUNIQUE)
573

    
574
  if not secondary_ip:
575
    if primary_ip_version == constants.IP6_VERSION:
576
      raise errors.OpPrereqError("When using a IPv6 primary address, a valid"
577
                                 " IPv4 address must be given as secondary",
578
                                 errors.ECODE_INVAL)
579
    secondary_ip = hostname.ip
580

    
581
  if not netutils.IP4Address.IsValid(secondary_ip):
582
    raise errors.OpPrereqError("Secondary IP address (%s) has to be a valid"
583
                               " IPv4 address." % secondary_ip,
584
                               errors.ECODE_INVAL)
585

    
586
  if not netutils.IP4Address.Own(secondary_ip):
587
    raise errors.OpPrereqError("You gave %s as secondary IP,"
588
                               " but it does not belong to this host." %
589
                               secondary_ip, errors.ECODE_ENVIRON)
590

    
591
  if master_netmask is not None:
592
    if not ipcls.ValidateNetmask(master_netmask):
593
      raise errors.OpPrereqError("CIDR netmask (%s) not valid for IPv%s " %
594
                                  (master_netmask, primary_ip_version),
595
                                 errors.ECODE_INVAL)
596
  else:
597
    master_netmask = ipcls.iplen
598

    
599
  if vg_name:
600
    # Check if volume group is valid
601
    vgstatus = utils.CheckVolumeGroupSize(utils.ListVolumeGroups(), vg_name,
602
                                          constants.MIN_VG_SIZE)
603
    if vgstatus:
604
      raise errors.OpPrereqError("Error: %s" % vgstatus, errors.ECODE_INVAL)
605

    
606
  drbd_enabled = constants.DT_DRBD8 in enabled_disk_templates
607
  _InitCheckDrbdHelper(drbd_helper, drbd_enabled)
608

    
609
  logging.debug("Stopping daemons (if any are running)")
610
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "stop-all"])
611
  if result.failed:
612
    raise errors.OpExecError("Could not stop daemons, command %s"
613
                             " had exitcode %s and error '%s'" %
614
                             (result.cmd, result.exit_code, result.output))
615

    
616
  file_storage_dir = _PrepareFileStorage(enabled_disk_templates,
617
                                         file_storage_dir)
618
  shared_file_storage_dir = _PrepareSharedFileStorage(enabled_disk_templates,
619
                                                      shared_file_storage_dir)
620

    
621
  if not re.match("^[0-9a-z]{2}:[0-9a-z]{2}:[0-9a-z]{2}$", mac_prefix):
622
    raise errors.OpPrereqError("Invalid mac prefix given '%s'" % mac_prefix,
623
                               errors.ECODE_INVAL)
624

    
625
  if not nicparams.get('mode', None) == constants.NIC_MODE_OVS:
626
    # Do not do this check if mode=openvswitch, since the openvswitch is not
627
    # created yet
628
    result = utils.RunCmd(["ip", "link", "show", "dev", master_netdev])
629
    if result.failed:
630
      raise errors.OpPrereqError("Invalid master netdev given (%s): '%s'" %
631
                                 (master_netdev,
632
                                  result.output.strip()), errors.ECODE_INVAL)
633

    
634
  dirs = [(pathutils.RUN_DIR, constants.RUN_DIRS_MODE)]
635
  utils.EnsureDirs(dirs)
636

    
637
  objects.UpgradeBeParams(beparams)
638
  utils.ForceDictType(beparams, constants.BES_PARAMETER_TYPES)
639
  utils.ForceDictType(nicparams, constants.NICS_PARAMETER_TYPES)
640

    
641
  objects.NIC.CheckParameterSyntax(nicparams)
642

    
643
  full_ipolicy = objects.FillIPolicy(constants.IPOLICY_DEFAULTS, ipolicy)
644
  _RestrictIpolicyToEnabledDiskTemplates(full_ipolicy, enabled_disk_templates)
645

    
646
  if ndparams is not None:
647
    utils.ForceDictType(ndparams, constants.NDS_PARAMETER_TYPES)
648
  else:
649
    ndparams = dict(constants.NDC_DEFAULTS)
650

    
651
  # This is ugly, as we modify the dict itself
652
  # FIXME: Make utils.ForceDictType pure functional or write a wrapper
653
  # around it
654
  if hv_state:
655
    for hvname, hvs_data in hv_state.items():
656
      utils.ForceDictType(hvs_data, constants.HVSTS_PARAMETER_TYPES)
657
      hv_state[hvname] = objects.Cluster.SimpleFillHvState(hvs_data)
658
  else:
659
    hv_state = dict((hvname, constants.HVST_DEFAULTS)
660
                    for hvname in enabled_hypervisors)
661

    
662
  # FIXME: disk_state has no default values yet
663
  if disk_state:
664
    for storage, ds_data in disk_state.items():
665
      if storage not in constants.DS_VALID_TYPES:
666
        raise errors.OpPrereqError("Invalid storage type in disk state: %s" %
667
                                   storage, errors.ECODE_INVAL)
668
      for ds_name, state in ds_data.items():
669
        utils.ForceDictType(state, constants.DSS_PARAMETER_TYPES)
670
        ds_data[ds_name] = objects.Cluster.SimpleFillDiskState(state)
671

    
672
  # hvparams is a mapping of hypervisor->hvparams dict
673
  for hv_name, hv_params in hvparams.iteritems():
674
    utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
675
    hv_class = hypervisor.GetHypervisor(hv_name)
676
    hv_class.CheckParameterSyntax(hv_params)
677

    
678
  # diskparams is a mapping of disk-template->diskparams dict
679
  for template, dt_params in diskparams.items():
680
    param_keys = set(dt_params.keys())
681
    default_param_keys = set(constants.DISK_DT_DEFAULTS[template].keys())
682
    if not (param_keys <= default_param_keys):
683
      unknown_params = param_keys - default_param_keys
684
      raise errors.OpPrereqError("Invalid parameters for disk template %s:"
685
                                 " %s" % (template,
686
                                          utils.CommaJoin(unknown_params)),
687
                                 errors.ECODE_INVAL)
688
    utils.ForceDictType(dt_params, constants.DISK_DT_TYPES)
689
    if template == constants.DT_DRBD8 and vg_name is not None:
690
      # The default METAVG value is equal to the VG name set at init time,
691
      # if provided
692
      dt_params[constants.DRBD_DEFAULT_METAVG] = vg_name
693

    
694
  try:
695
    utils.VerifyDictOptions(diskparams, constants.DISK_DT_DEFAULTS)
696
  except errors.OpPrereqError, err:
697
    raise errors.OpPrereqError("While verify diskparam options: %s" % err,
698
                               errors.ECODE_INVAL)
699

    
700
  # set up ssh config and /etc/hosts
701
  rsa_sshkey = ""
702
  dsa_sshkey = ""
703
  if os.path.isfile(pathutils.SSH_HOST_RSA_PUB):
704
    sshline = utils.ReadFile(pathutils.SSH_HOST_RSA_PUB)
705
    rsa_sshkey = sshline.split(" ")[1]
706
  if os.path.isfile(pathutils.SSH_HOST_DSA_PUB):
707
    sshline = utils.ReadFile(pathutils.SSH_HOST_DSA_PUB)
708
    dsa_sshkey = sshline.split(" ")[1]
709
  if not rsa_sshkey and not dsa_sshkey:
710
    raise errors.OpPrereqError("Failed to find SSH public keys",
711
                               errors.ECODE_ENVIRON)
712

    
713
  if modify_etc_hosts:
714
    utils.AddHostToEtcHosts(hostname.name, hostname.ip)
715

    
716
  if modify_ssh_setup:
717
    _InitSSHSetup()
718

    
719
  if default_iallocator is not None:
720
    alloc_script = utils.FindFile(default_iallocator,
721
                                  constants.IALLOCATOR_SEARCH_PATH,
722
                                  os.path.isfile)
723
    if alloc_script is None:
724
      raise errors.OpPrereqError("Invalid default iallocator script '%s'"
725
                                 " specified" % default_iallocator,
726
                                 errors.ECODE_INVAL)
727
  elif constants.HTOOLS:
728
    # htools was enabled at build-time, we default to it
729
    if utils.FindFile(constants.IALLOC_HAIL,
730
                      constants.IALLOCATOR_SEARCH_PATH,
731
                      os.path.isfile):
732
      default_iallocator = constants.IALLOC_HAIL
733

    
734
  now = time.time()
735

    
736
  # init of cluster config file
737
  cluster_config = objects.Cluster(
738
    serial_no=1,
739
    rsahostkeypub=rsa_sshkey,
740
    dsahostkeypub=dsa_sshkey,
741
    highest_used_port=(constants.FIRST_DRBD_PORT - 1),
742
    mac_prefix=mac_prefix,
743
    volume_group_name=vg_name,
744
    tcpudp_port_pool=set(),
745
    master_ip=clustername.ip,
746
    master_netmask=master_netmask,
747
    master_netdev=master_netdev,
748
    cluster_name=clustername.name,
749
    file_storage_dir=file_storage_dir,
750
    shared_file_storage_dir=shared_file_storage_dir,
751
    enabled_hypervisors=enabled_hypervisors,
752
    beparams={constants.PP_DEFAULT: beparams},
753
    nicparams={constants.PP_DEFAULT: nicparams},
754
    ndparams=ndparams,
755
    hvparams=hvparams,
756
    diskparams=diskparams,
757
    candidate_pool_size=candidate_pool_size,
758
    modify_etc_hosts=modify_etc_hosts,
759
    modify_ssh_setup=modify_ssh_setup,
760
    uid_pool=uid_pool,
761
    ctime=now,
762
    mtime=now,
763
    maintain_node_health=maintain_node_health,
764
    drbd_usermode_helper=drbd_helper,
765
    default_iallocator=default_iallocator,
766
    default_iallocator_params=default_iallocator_params,
767
    primary_ip_family=ipcls.family,
768
    prealloc_wipe_disks=prealloc_wipe_disks,
769
    use_external_mip_script=use_external_mip_script,
770
    ipolicy=full_ipolicy,
771
    hv_state_static=hv_state,
772
    disk_state_static=disk_state,
773
    enabled_disk_templates=enabled_disk_templates,
774
    )
775
  master_node_config = objects.Node(name=hostname.name,
776
                                    primary_ip=hostname.ip,
777
                                    secondary_ip=secondary_ip,
778
                                    serial_no=1,
779
                                    master_candidate=True,
780
                                    offline=False, drained=False,
781
                                    ctime=now, mtime=now,
782
                                    )
783
  InitConfig(constants.CONFIG_VERSION, cluster_config, master_node_config)
784
  cfg = config.ConfigWriter(offline=True)
785
  ssh.WriteKnownHostsFile(cfg, pathutils.SSH_KNOWN_HOSTS_FILE)
786
  cfg.Update(cfg.GetClusterInfo(), logging.error)
787
  ssconf.WriteSsconfFiles(cfg.GetSsconfValues())
788

    
789
  # set up the inter-node password and certificate
790
  _InitGanetiServerSetup(hostname.name)
791

    
792
  logging.debug("Starting daemons")
793
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "start-all"])
794
  if result.failed:
795
    raise errors.OpExecError("Could not start daemons, command %s"
796
                             " had exitcode %s and error %s" %
797
                             (result.cmd, result.exit_code, result.output))
798

    
799
  _WaitForMasterDaemon()
800

    
801

    
802
def InitConfig(version, cluster_config, master_node_config,
803
               cfg_file=pathutils.CLUSTER_CONF_FILE):
804
  """Create the initial cluster configuration.
805

806
  It will contain the current node, which will also be the master
807
  node, and no instances.
808

809
  @type version: int
810
  @param version: configuration version
811
  @type cluster_config: L{objects.Cluster}
812
  @param cluster_config: cluster configuration
813
  @type master_node_config: L{objects.Node}
814
  @param master_node_config: master node configuration
815
  @type cfg_file: string
816
  @param cfg_file: configuration file path
817

818
  """
819
  uuid_generator = config.TemporaryReservationManager()
820
  cluster_config.uuid = uuid_generator.Generate([], utils.NewUUID,
821
                                                _INITCONF_ECID)
822
  master_node_config.uuid = uuid_generator.Generate([], utils.NewUUID,
823
                                                    _INITCONF_ECID)
824
  cluster_config.master_node = master_node_config.uuid
825
  nodes = {
826
    master_node_config.uuid: master_node_config,
827
    }
828
  default_nodegroup = objects.NodeGroup(
829
    uuid=uuid_generator.Generate([], utils.NewUUID, _INITCONF_ECID),
830
    name=constants.INITIAL_NODE_GROUP_NAME,
831
    members=[master_node_config.uuid],
832
    diskparams={},
833
    )
834
  nodegroups = {
835
    default_nodegroup.uuid: default_nodegroup,
836
    }
837
  now = time.time()
838
  config_data = objects.ConfigData(version=version,
839
                                   cluster=cluster_config,
840
                                   nodegroups=nodegroups,
841
                                   nodes=nodes,
842
                                   instances={},
843
                                   networks={},
844
                                   serial_no=1,
845
                                   ctime=now, mtime=now)
846
  utils.WriteFile(cfg_file,
847
                  data=serializer.Dump(config_data.ToDict()),
848
                  mode=0600)
849

    
850

    
851
def FinalizeClusterDestroy(master_uuid):
852
  """Execute the last steps of cluster destroy
853

854
  This function shuts down all the daemons, completing the destroy
855
  begun in cmdlib.LUDestroyOpcode.
856

857
  """
858
  cfg = config.ConfigWriter()
859
  modify_ssh_setup = cfg.GetClusterInfo().modify_ssh_setup
860
  runner = rpc.BootstrapRunner()
861

    
862
  master_name = cfg.GetNodeName(master_uuid)
863

    
864
  master_params = cfg.GetMasterNetworkParameters()
865
  master_params.uuid = master_uuid
866
  ems = cfg.GetUseExternalMipScript()
867
  result = runner.call_node_deactivate_master_ip(master_name, master_params,
868
                                                 ems)
869

    
870
  msg = result.fail_msg
871
  if msg:
872
    logging.warning("Could not disable the master IP: %s", msg)
873

    
874
  result = runner.call_node_stop_master(master_name)
875
  msg = result.fail_msg
876
  if msg:
877
    logging.warning("Could not disable the master role: %s", msg)
878

    
879
  result = runner.call_node_leave_cluster(master_name, modify_ssh_setup)
880
  msg = result.fail_msg
881
  if msg:
882
    logging.warning("Could not shutdown the node daemon and cleanup"
883
                    " the node: %s", msg)
884

    
885

    
886
def SetupNodeDaemon(opts, cluster_name, node, ssh_port):
887
  """Add a node to the cluster.
888

889
  This function must be called before the actual opcode, and will ssh
890
  to the remote node, copy the needed files, and start ganeti-noded,
891
  allowing the master to do the rest via normal rpc calls.
892

893
  @param cluster_name: the cluster name
894
  @param node: the name of the new node
895
  @param ssh_port: the SSH port of the new node
896

897
  """
898
  data = {
899
    constants.NDS_CLUSTER_NAME: cluster_name,
900
    constants.NDS_NODE_DAEMON_CERTIFICATE:
901
      utils.ReadFile(pathutils.NODED_CERT_FILE),
902
    constants.NDS_SSCONF: ssconf.SimpleStore().ReadAll(),
903
    constants.NDS_START_NODE_DAEMON: True,
904
    }
905

    
906
  RunNodeSetupCmd(cluster_name, node, pathutils.NODE_DAEMON_SETUP,
907
                  opts.debug, opts.verbose,
908
                  True, opts.ssh_key_check, opts.ssh_key_check,
909
                  ssh_port, data)
910

    
911
  _WaitForNodeDaemon(node)
912

    
913

    
914
def MasterFailover(no_voting=False):
915
  """Failover the master node.
916

917
  This checks that we are not already the master, and will cause the
918
  current master to cease being master, and the non-master to become
919
  new master.
920

921
  @type no_voting: boolean
922
  @param no_voting: force the operation without remote nodes agreement
923
                      (dangerous)
924

925
  """
926
  sstore = ssconf.SimpleStore()
927

    
928
  old_master, new_master = ssconf.GetMasterAndMyself(sstore)
929
  node_names = sstore.GetNodeList()
930
  mc_list = sstore.GetMasterCandidates()
931

    
932
  if old_master == new_master:
933
    raise errors.OpPrereqError("This commands must be run on the node"
934
                               " where you want the new master to be."
935
                               " %s is already the master" %
936
                               old_master, errors.ECODE_INVAL)
937

    
938
  if new_master not in mc_list:
939
    mc_no_master = [name for name in mc_list if name != old_master]
940
    raise errors.OpPrereqError("This node is not among the nodes marked"
941
                               " as master candidates. Only these nodes"
942
                               " can become masters. Current list of"
943
                               " master candidates is:\n"
944
                               "%s" % ("\n".join(mc_no_master)),
945
                               errors.ECODE_STATE)
946

    
947
  if not no_voting:
948
    vote_list = GatherMasterVotes(node_names)
949

    
950
    if vote_list:
951
      voted_master = vote_list[0][0]
952
      if voted_master is None:
953
        raise errors.OpPrereqError("Cluster is inconsistent, most nodes did"
954
                                   " not respond.", errors.ECODE_ENVIRON)
955
      elif voted_master != old_master:
956
        raise errors.OpPrereqError("I have a wrong configuration, I believe"
957
                                   " the master is %s but the other nodes"
958
                                   " voted %s. Please resync the configuration"
959
                                   " of this node." %
960
                                   (old_master, voted_master),
961
                                   errors.ECODE_STATE)
962
  # end checks
963

    
964
  rcode = 0
965

    
966
  logging.info("Setting master to %s, old master: %s", new_master, old_master)
967

    
968
  try:
969
    # instantiate a real config writer, as we now know we have the
970
    # configuration data
971
    cfg = config.ConfigWriter(accept_foreign=True)
972

    
973
    old_master_node = cfg.GetNodeInfoByName(old_master)
974
    if old_master_node is None:
975
      raise errors.OpPrereqError("Could not find old master node '%s' in"
976
                                 " cluster configuration." % old_master,
977
                                 errors.ECODE_NOENT)
978

    
979
    cluster_info = cfg.GetClusterInfo()
980
    new_master_node = cfg.GetNodeInfoByName(new_master)
981
    if new_master_node is None:
982
      raise errors.OpPrereqError("Could not find new master node '%s' in"
983
                                 " cluster configuration." % new_master,
984
                                 errors.ECODE_NOENT)
985

    
986
    cluster_info.master_node = new_master_node.uuid
987
    # this will also regenerate the ssconf files, since we updated the
988
    # cluster info
989
    cfg.Update(cluster_info, logging.error)
990
  except errors.ConfigurationError, err:
991
    logging.error("Error while trying to set the new master: %s",
992
                  str(err))
993
    return 1
994

    
995
  # if cfg.Update worked, then it means the old master daemon won't be
996
  # able now to write its own config file (we rely on locking in both
997
  # backend.UploadFile() and ConfigWriter._Write(); hence the next
998
  # step is to kill the old master
999

    
1000
  logging.info("Stopping the master daemon on node %s", old_master)
1001

    
1002
  runner = rpc.BootstrapRunner()
1003
  master_params = cfg.GetMasterNetworkParameters()
1004
  master_params.uuid = old_master_node.uuid
1005
  ems = cfg.GetUseExternalMipScript()
1006
  result = runner.call_node_deactivate_master_ip(old_master,
1007
                                                 master_params, ems)
1008

    
1009
  msg = result.fail_msg
1010
  if msg:
1011
    logging.warning("Could not disable the master IP: %s", msg)
1012

    
1013
  result = runner.call_node_stop_master(old_master)
1014
  msg = result.fail_msg
1015
  if msg:
1016
    logging.error("Could not disable the master role on the old master"
1017
                  " %s, please disable manually: %s", old_master, msg)
1018

    
1019
  logging.info("Checking master IP non-reachability...")
1020

    
1021
  master_ip = sstore.GetMasterIP()
1022
  total_timeout = 30
1023

    
1024
  # Here we have a phase where no master should be running
1025
  def _check_ip():
1026
    if netutils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
1027
      raise utils.RetryAgain()
1028

    
1029
  try:
1030
    utils.Retry(_check_ip, (1, 1.5, 5), total_timeout)
1031
  except utils.RetryTimeout:
1032
    logging.warning("The master IP is still reachable after %s seconds,"
1033
                    " continuing but activating the master on the current"
1034
                    " node will probably fail", total_timeout)
1035

    
1036
  if jstore.CheckDrainFlag():
1037
    logging.info("Undraining job queue")
1038
    jstore.SetDrainFlag(False)
1039

    
1040
  logging.info("Starting the master daemons on the new master")
1041

    
1042
  result = rpc.BootstrapRunner().call_node_start_master_daemons(new_master,
1043
                                                                no_voting)
1044
  msg = result.fail_msg
1045
  if msg:
1046
    logging.error("Could not start the master role on the new master"
1047
                  " %s, please check: %s", new_master, msg)
1048
    rcode = 1
1049

    
1050
  logging.info("Master failed over from %s to %s", old_master, new_master)
1051
  return rcode
1052

    
1053

    
1054
def GetMaster():
1055
  """Returns the current master node.
1056

1057
  This is a separate function in bootstrap since it's needed by
1058
  gnt-cluster, and instead of importing directly ssconf, it's better
1059
  to abstract it in bootstrap, where we do use ssconf in other
1060
  functions too.
1061

1062
  """
1063
  sstore = ssconf.SimpleStore()
1064

    
1065
  old_master, _ = ssconf.GetMasterAndMyself(sstore)
1066

    
1067
  return old_master
1068

    
1069

    
1070
def GatherMasterVotes(node_names):
1071
  """Check the agreement on who is the master.
1072

1073
  This function will return a list of (node, number of votes), ordered
1074
  by the number of votes. Errors will be denoted by the key 'None'.
1075

1076
  Note that the sum of votes is the number of nodes this machine
1077
  knows, whereas the number of entries in the list could be different
1078
  (if some nodes vote for another master).
1079

1080
  We remove ourselves from the list since we know that (bugs aside)
1081
  since we use the same source for configuration information for both
1082
  backend and boostrap, we'll always vote for ourselves.
1083

1084
  @type node_names: list
1085
  @param node_names: the list of nodes to query for master info; the current
1086
      node will be removed if it is in the list
1087
  @rtype: list
1088
  @return: list of (node, votes)
1089

1090
  """
1091
  myself = netutils.Hostname.GetSysName()
1092
  try:
1093
    node_names.remove(myself)
1094
  except ValueError:
1095
    pass
1096
  if not node_names:
1097
    # no nodes left (eventually after removing myself)
1098
    return []
1099
  results = rpc.BootstrapRunner().call_master_info(node_names)
1100
  if not isinstance(results, dict):
1101
    # this should not happen (unless internal error in rpc)
1102
    logging.critical("Can't complete rpc call, aborting master startup")
1103
    return [(None, len(node_names))]
1104
  votes = {}
1105
  for node_name in results:
1106
    nres = results[node_name]
1107
    data = nres.payload
1108
    msg = nres.fail_msg
1109
    fail = False
1110
    if msg:
1111
      logging.warning("Error contacting node %s: %s", node_name, msg)
1112
      fail = True
1113
    # for now we accept both length 3, 4 and 5 (data[3] is primary ip version
1114
    # and data[4] is the master netmask)
1115
    elif not isinstance(data, (tuple, list)) or len(data) < 3:
1116
      logging.warning("Invalid data received from node %s: %s",
1117
                      node_name, data)
1118
      fail = True
1119
    if fail:
1120
      if None not in votes:
1121
        votes[None] = 0
1122
      votes[None] += 1
1123
      continue
1124
    master_node = data[2]
1125
    if master_node not in votes:
1126
      votes[master_node] = 0
1127
    votes[master_node] += 1
1128

    
1129
  vote_list = [v for v in votes.items()]
1130
  # sort first on number of votes then on name, since we want None
1131
  # sorted later if we have the half of the nodes not responding, and
1132
  # half voting all for the same master
1133
  vote_list.sort(key=lambda x: (x[1], x[0]), reverse=True)
1134

    
1135
  return vote_list