Statistics
| Branch: | Tag: | Revision:

root / lib / bootstrap.py @ aeefe835

History | View | Annotate | Download (22.8 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008 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 tempfile
31
import time
32

    
33
from ganeti import rpc
34
from ganeti import ssh
35
from ganeti import utils
36
from ganeti import errors
37
from ganeti import config
38
from ganeti import constants
39
from ganeti import objects
40
from ganeti import ssconf
41
from ganeti import serializer
42
from ganeti import hypervisor
43

    
44

    
45
def _InitSSHSetup():
46
  """Setup the SSH configuration for the cluster.
47

48
  This generates a dsa keypair for root, adds the pub key to the
49
  permitted hosts and adds the hostkey to its own known hosts.
50

51
  """
52
  priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
53

    
54
  for name in priv_key, pub_key:
55
    if os.path.exists(name):
56
      utils.CreateBackup(name)
57
    utils.RemoveFile(name)
58

    
59
  result = utils.RunCmd(["ssh-keygen", "-t", "dsa",
60
                         "-f", priv_key,
61
                         "-q", "-N", ""])
62
  if result.failed:
63
    raise errors.OpExecError("Could not generate ssh keypair, error %s" %
64
                             result.output)
65

    
66
  utils.AddAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
67

    
68

    
69
def GenerateSelfSignedSslCert(file_name, validity=(365 * 5)):
70
  """Generates a self-signed SSL certificate.
71

72
  @type file_name: str
73
  @param file_name: Path to output file
74
  @type validity: int
75
  @param validity: Validity for certificate in days
76

77
  """
78
  (fd, tmp_file_name) = tempfile.mkstemp(dir=os.path.dirname(file_name))
79
  try:
80
    try:
81
      # Set permissions before writing key
82
      os.chmod(tmp_file_name, 0600)
83

    
84
      result = utils.RunCmd(["openssl", "req", "-new", "-newkey", "rsa:1024",
85
                             "-days", str(validity), "-nodes", "-x509",
86
                             "-keyout", tmp_file_name, "-out", tmp_file_name,
87
                             "-batch"])
88
      if result.failed:
89
        raise errors.OpExecError("Could not generate SSL certificate, command"
90
                                 " %s had exitcode %s and error message %s" %
91
                                 (result.cmd, result.exit_code, result.output))
92

    
93
      # Make read-only
94
      os.chmod(tmp_file_name, 0400)
95

    
96
      os.rename(tmp_file_name, file_name)
97
    finally:
98
      utils.RemoveFile(tmp_file_name)
99
  finally:
100
    os.close(fd)
101

    
102

    
103
def GenerateHmacKey(file_name):
104
  """Writes a new HMAC key.
105

106
  @type file_name: str
107
  @param file_name: Path to output file
108

109
  """
110
  utils.WriteFile(file_name, data="%s\n" % utils.GenerateSecret(), mode=0400,
111
                  backup=True)
112

    
113

    
114
def GenerateClusterCrypto(new_cluster_cert, new_rapi_cert, new_confd_hmac_key,
115
                          rapi_cert_pem=None,
116
                          nodecert_file=constants.NODED_CERT_FILE,
117
                          rapicert_file=constants.RAPI_CERT_FILE,
118
                          hmackey_file=constants.CONFD_HMAC_KEY):
119
  """Updates the cluster certificates, keys and secrets.
120

121
  @type new_cluster_cert: bool
122
  @param new_cluster_cert: Whether to generate a new cluster certificate
123
  @type new_rapi_cert: bool
124
  @param new_rapi_cert: Whether to generate a new RAPI certificate
125
  @type new_confd_hmac_key: bool
126
  @param new_confd_hmac_key: Whether to generate a new HMAC key
127
  @type rapi_cert_pem: string
128
  @param rapi_cert_pem: New RAPI certificate in PEM format
129
  @type nodecert_file: string
130
  @param nodecert_file: optional override of the node cert file path
131
  @type rapicert_file: string
132
  @param rapicert_file: optional override of the rapi 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
    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
    GenerateSelfSignedSslCert(rapicert_file)
165

    
166

    
167
def _InitGanetiServerSetup(master_name):
168
  """Setup the necessary configuration for the initial node daemon.
169

170
  This creates the nodepass file containing the shared password for
171
  the cluster and also generates the SSL certificate.
172

173
  """
174
  # Generate cluster secrets
175
  GenerateClusterCrypto(True, False, False)
176

    
177
  result = utils.RunCmd([constants.DAEMON_UTIL, "start", constants.NODED])
178
  if result.failed:
179
    raise errors.OpExecError("Could not start the node daemon, command %s"
180
                             " had exitcode %s and error %s" %
181
                             (result.cmd, result.exit_code, result.output))
182

    
183
  _WaitForNodeDaemon(master_name)
184

    
185

    
186
def _WaitForNodeDaemon(node_name):
187
  """Wait for node daemon to become responsive.
188

189
  """
190
  def _CheckNodeDaemon():
191
    result = rpc.RpcRunner.call_version([node_name])[node_name]
192
    if result.fail_msg:
193
      raise utils.RetryAgain()
194

    
195
  try:
196
    utils.Retry(_CheckNodeDaemon, 1.0, 10.0)
197
  except utils.RetryTimeout:
198
    raise errors.OpExecError("Node daemon on %s didn't answer queries within"
199
                             " 10 seconds" % node_name)
200

    
201

    
202
def InitCluster(cluster_name, mac_prefix,
203
                master_netdev, file_storage_dir, candidate_pool_size,
204
                secondary_ip=None, vg_name=None, beparams=None,
205
                nicparams=None, hvparams=None, enabled_hypervisors=None,
206
                modify_etc_hosts=True, modify_ssh_setup=True,
207
                maintain_node_health=False):
208
  """Initialise the cluster.
209

210
  @type candidate_pool_size: int
211
  @param candidate_pool_size: master candidate pool size
212

213
  """
214
  # TODO: complete the docstring
215
  if config.ConfigWriter.IsCluster():
216
    raise errors.OpPrereqError("Cluster is already initialised",
217
                               errors.ECODE_STATE)
218

    
219
  if not enabled_hypervisors:
220
    raise errors.OpPrereqError("Enabled hypervisors list must contain at"
221
                               " least one member", errors.ECODE_INVAL)
222
  invalid_hvs = set(enabled_hypervisors) - constants.HYPER_TYPES
223
  if invalid_hvs:
224
    raise errors.OpPrereqError("Enabled hypervisors contains invalid"
225
                               " entries: %s" % invalid_hvs,
226
                               errors.ECODE_INVAL)
227

    
228
  hostname = utils.GetHostInfo()
229

    
230
  if hostname.ip.startswith("127."):
231
    raise errors.OpPrereqError("This host's IP resolves to the private"
232
                               " range (%s). Please fix DNS or %s." %
233
                               (hostname.ip, constants.ETC_HOSTS),
234
                               errors.ECODE_ENVIRON)
235

    
236
  if not utils.OwnIpAddress(hostname.ip):
237
    raise errors.OpPrereqError("Inconsistency: this host's name resolves"
238
                               " to %s,\nbut this ip address does not"
239
                               " belong to this host. Aborting." %
240
                               hostname.ip, errors.ECODE_ENVIRON)
241

    
242
  clustername = utils.GetHostInfo(utils.HostInfo.NormalizeName(cluster_name))
243

    
244
  if utils.TcpPing(clustername.ip, constants.DEFAULT_NODED_PORT,
245
                   timeout=5):
246
    raise errors.OpPrereqError("Cluster IP already active. Aborting.",
247
                               errors.ECODE_NOTUNIQUE)
248

    
249
  if secondary_ip:
250
    if not utils.IsValidIP(secondary_ip):
251
      raise errors.OpPrereqError("Invalid secondary ip given",
252
                                 errors.ECODE_INVAL)
253
    if (secondary_ip != hostname.ip and
254
        not utils.OwnIpAddress(secondary_ip)):
255
      raise errors.OpPrereqError("You gave %s as secondary IP,"
256
                                 " but it does not belong to this host." %
257
                                 secondary_ip, errors.ECODE_ENVIRON)
258
  else:
259
    secondary_ip = hostname.ip
260

    
261
  if vg_name is not None:
262
    # Check if volume group is valid
263
    vgstatus = utils.CheckVolumeGroupSize(utils.ListVolumeGroups(), vg_name,
264
                                          constants.MIN_VG_SIZE)
265
    if vgstatus:
266
      raise errors.OpPrereqError("Error: %s\nspecify --no-lvm-storage if"
267
                                 " you are not using lvm" % vgstatus,
268
                                 errors.ECODE_INVAL)
269

    
270
  file_storage_dir = os.path.normpath(file_storage_dir)
271

    
272
  if not os.path.isabs(file_storage_dir):
273
    raise errors.OpPrereqError("The file storage directory you passed is"
274
                               " not an absolute path.", errors.ECODE_INVAL)
275

    
276
  if not os.path.exists(file_storage_dir):
277
    try:
278
      os.makedirs(file_storage_dir, 0750)
279
    except OSError, err:
280
      raise errors.OpPrereqError("Cannot create file storage directory"
281
                                 " '%s': %s" % (file_storage_dir, err),
282
                                 errors.ECODE_ENVIRON)
283

    
284
  if not os.path.isdir(file_storage_dir):
285
    raise errors.OpPrereqError("The file storage directory '%s' is not"
286
                               " a directory." % file_storage_dir,
287
                               errors.ECODE_ENVIRON)
288

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

    
293
  result = utils.RunCmd(["ip", "link", "show", "dev", master_netdev])
294
  if result.failed:
295
    raise errors.OpPrereqError("Invalid master netdev given (%s): '%s'" %
296
                               (master_netdev,
297
                                result.output.strip()), errors.ECODE_INVAL)
298

    
299
  dirs = [(constants.RUN_GANETI_DIR, constants.RUN_DIRS_MODE)]
300
  utils.EnsureDirs(dirs)
301

    
302
  utils.ForceDictType(beparams, constants.BES_PARAMETER_TYPES)
303
  utils.ForceDictType(nicparams, constants.NICS_PARAMETER_TYPES)
304
  objects.NIC.CheckParameterSyntax(nicparams)
305

    
306
  # hvparams is a mapping of hypervisor->hvparams dict
307
  for hv_name, hv_params in hvparams.iteritems():
308
    utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
309
    hv_class = hypervisor.GetHypervisor(hv_name)
310
    hv_class.CheckParameterSyntax(hv_params)
311

    
312
  # set up the inter-node password and certificate
313
  _InitGanetiServerSetup(hostname.name)
314

    
315
  # set up ssh config and /etc/hosts
316
  sshline = utils.ReadFile(constants.SSH_HOST_RSA_PUB)
317
  sshkey = sshline.split(" ")[1]
318

    
319
  if modify_etc_hosts:
320
    utils.AddHostToEtcHosts(hostname.name)
321

    
322
  if modify_ssh_setup:
323
    _InitSSHSetup()
324

    
325
  now = time.time()
326

    
327
  # init of cluster config file
328
  cluster_config = objects.Cluster(
329
    serial_no=1,
330
    rsahostkeypub=sshkey,
331
    highest_used_port=(constants.FIRST_DRBD_PORT - 1),
332
    mac_prefix=mac_prefix,
333
    volume_group_name=vg_name,
334
    tcpudp_port_pool=set(),
335
    master_node=hostname.name,
336
    master_ip=clustername.ip,
337
    master_netdev=master_netdev,
338
    cluster_name=clustername.name,
339
    file_storage_dir=file_storage_dir,
340
    enabled_hypervisors=enabled_hypervisors,
341
    beparams={constants.PP_DEFAULT: beparams},
342
    nicparams={constants.PP_DEFAULT: nicparams},
343
    hvparams=hvparams,
344
    candidate_pool_size=candidate_pool_size,
345
    modify_etc_hosts=modify_etc_hosts,
346
    modify_ssh_setup=modify_ssh_setup,
347
    ctime=now,
348
    mtime=now,
349
    uuid=utils.NewUUID(),
350
    maintain_node_health=maintain_node_health,
351
    )
352
  master_node_config = objects.Node(name=hostname.name,
353
                                    primary_ip=hostname.ip,
354
                                    secondary_ip=secondary_ip,
355
                                    serial_no=1,
356
                                    master_candidate=True,
357
                                    offline=False, drained=False,
358
                                    )
359
  InitConfig(constants.CONFIG_VERSION, cluster_config, master_node_config)
360
  cfg = config.ConfigWriter()
361
  ssh.WriteKnownHostsFile(cfg, constants.SSH_KNOWN_HOSTS_FILE)
362
  cfg.Update(cfg.GetClusterInfo(), logging.error)
363

    
364
  # start the master ip
365
  # TODO: Review rpc call from bootstrap
366
  # TODO: Warn on failed start master
367
  rpc.RpcRunner.call_node_start_master(hostname.name, True, False)
368

    
369

    
370
def InitConfig(version, cluster_config, master_node_config,
371
               cfg_file=constants.CLUSTER_CONF_FILE):
372
  """Create the initial cluster configuration.
373

374
  It will contain the current node, which will also be the master
375
  node, and no instances.
376

377
  @type version: int
378
  @param version: configuration version
379
  @type cluster_config: L{objects.Cluster}
380
  @param cluster_config: cluster configuration
381
  @type master_node_config: L{objects.Node}
382
  @param master_node_config: master node configuration
383
  @type cfg_file: string
384
  @param cfg_file: configuration file path
385

386
  """
387
  nodes = {
388
    master_node_config.name: master_node_config,
389
    }
390

    
391
  now = time.time()
392
  config_data = objects.ConfigData(version=version,
393
                                   cluster=cluster_config,
394
                                   nodes=nodes,
395
                                   instances={},
396
                                   serial_no=1,
397
                                   ctime=now, mtime=now)
398
  utils.WriteFile(cfg_file,
399
                  data=serializer.Dump(config_data.ToDict()),
400
                  mode=0600)
401

    
402

    
403
def FinalizeClusterDestroy(master):
404
  """Execute the last steps of cluster destroy
405

406
  This function shuts down all the daemons, completing the destroy
407
  begun in cmdlib.LUDestroyOpcode.
408

409
  """
410
  cfg = config.ConfigWriter()
411
  modify_ssh_setup = cfg.GetClusterInfo().modify_ssh_setup
412
  result = rpc.RpcRunner.call_node_stop_master(master, True)
413
  msg = result.fail_msg
414
  if msg:
415
    logging.warning("Could not disable the master role: %s", msg)
416
  result = rpc.RpcRunner.call_node_leave_cluster(master, modify_ssh_setup)
417
  msg = result.fail_msg
418
  if msg:
419
    logging.warning("Could not shutdown the node daemon and cleanup"
420
                    " the node: %s", msg)
421

    
422

    
423
def SetupNodeDaemon(cluster_name, node, ssh_key_check):
424
  """Add a node to the cluster.
425

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

430
  @param cluster_name: the cluster name
431
  @param node: the name of the new node
432
  @param ssh_key_check: whether to do a strict key check
433

434
  """
435
  sshrunner = ssh.SshRunner(cluster_name)
436

    
437
  noded_cert = utils.ReadFile(constants.NODED_CERT_FILE)
438
  rapi_cert = utils.ReadFile(constants.RAPI_CERT_FILE)
439
  confd_hmac_key = utils.ReadFile(constants.CONFD_HMAC_KEY)
440

    
441
  # in the base64 pem encoding, neither '!' nor '.' are valid chars,
442
  # so we use this to detect an invalid certificate; as long as the
443
  # cert doesn't contain this, the here-document will be correctly
444
  # parsed by the shell sequence below. HMAC keys are hexadecimal strings,
445
  # so the same restrictions apply.
446
  for content in (noded_cert, rapi_cert, confd_hmac_key):
447
    if re.search('^!EOF\.', content, re.MULTILINE):
448
      raise errors.OpExecError("invalid SSL certificate or HMAC key")
449

    
450
  if not noded_cert.endswith("\n"):
451
    noded_cert += "\n"
452
  if not rapi_cert.endswith("\n"):
453
    rapi_cert += "\n"
454
  if not confd_hmac_key.endswith("\n"):
455
    confd_hmac_key += "\n"
456

    
457
  # set up inter-node password and certificate and restarts the node daemon
458
  # and then connect with ssh to set password and start ganeti-noded
459
  # note that all the below variables are sanitized at this point,
460
  # either by being constants or by the checks above
461
  mycommand = ("umask 077 && "
462
               "cat > '%s' << '!EOF.' && \n"
463
               "%s!EOF.\n"
464
               "cat > '%s' << '!EOF.' && \n"
465
               "%s!EOF.\n"
466
               "cat > '%s' << '!EOF.' && \n"
467
               "%s!EOF.\n"
468
               "chmod 0400 %s %s %s && "
469
               "%s start %s" %
470
               (constants.NODED_CERT_FILE, noded_cert,
471
                constants.RAPI_CERT_FILE, rapi_cert,
472
                constants.CONFD_HMAC_KEY, confd_hmac_key,
473
                constants.NODED_CERT_FILE, constants.RAPI_CERT_FILE,
474
                constants.CONFD_HMAC_KEY,
475
                constants.DAEMON_UTIL, constants.NODED))
476

    
477
  result = sshrunner.Run(node, 'root', mycommand, batch=False,
478
                         ask_key=ssh_key_check,
479
                         use_cluster_key=False,
480
                         strict_host_check=ssh_key_check)
481
  if result.failed:
482
    raise errors.OpExecError("Remote command on node %s, error: %s,"
483
                             " output: %s" %
484
                             (node, result.fail_reason, result.output))
485

    
486
  _WaitForNodeDaemon(node)
487

    
488

    
489
def MasterFailover(no_voting=False):
490
  """Failover the master node.
491

492
  This checks that we are not already the master, and will cause the
493
  current master to cease being master, and the non-master to become
494
  new master.
495

496
  @type no_voting: boolean
497
  @param no_voting: force the operation without remote nodes agreement
498
                      (dangerous)
499

500
  """
501
  sstore = ssconf.SimpleStore()
502

    
503
  old_master, new_master = ssconf.GetMasterAndMyself(sstore)
504
  node_list = sstore.GetNodeList()
505
  mc_list = sstore.GetMasterCandidates()
506

    
507
  if old_master == new_master:
508
    raise errors.OpPrereqError("This commands must be run on the node"
509
                               " where you want the new master to be."
510
                               " %s is already the master" %
511
                               old_master, errors.ECODE_INVAL)
512

    
513
  if new_master not in mc_list:
514
    mc_no_master = [name for name in mc_list if name != old_master]
515
    raise errors.OpPrereqError("This node is not among the nodes marked"
516
                               " as master candidates. Only these nodes"
517
                               " can become masters. Current list of"
518
                               " master candidates is:\n"
519
                               "%s" % ('\n'.join(mc_no_master)),
520
                               errors.ECODE_STATE)
521

    
522
  if not no_voting:
523
    vote_list = GatherMasterVotes(node_list)
524

    
525
    if vote_list:
526
      voted_master = vote_list[0][0]
527
      if voted_master is None:
528
        raise errors.OpPrereqError("Cluster is inconsistent, most nodes did"
529
                                   " not respond.", errors.ECODE_ENVIRON)
530
      elif voted_master != old_master:
531
        raise errors.OpPrereqError("I have a wrong configuration, I believe"
532
                                   " the master is %s but the other nodes"
533
                                   " voted %s. Please resync the configuration"
534
                                   " of this node." %
535
                                   (old_master, voted_master),
536
                                   errors.ECODE_STATE)
537
  # end checks
538

    
539
  rcode = 0
540

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

    
543
  result = rpc.RpcRunner.call_node_stop_master(old_master, True)
544
  msg = result.fail_msg
545
  if msg:
546
    logging.error("Could not disable the master role on the old master"
547
                 " %s, please disable manually: %s", old_master, msg)
548

    
549
  # Here we have a phase where no master should be running
550

    
551
  # instantiate a real config writer, as we now know we have the
552
  # configuration data
553
  cfg = config.ConfigWriter()
554

    
555
  cluster_info = cfg.GetClusterInfo()
556
  cluster_info.master_node = new_master
557
  # this will also regenerate the ssconf files, since we updated the
558
  # cluster info
559
  cfg.Update(cluster_info, logging.error)
560

    
561
  result = rpc.RpcRunner.call_node_start_master(new_master, True, no_voting)
562
  msg = result.fail_msg
563
  if msg:
564
    logging.error("Could not start the master role on the new master"
565
                  " %s, please check: %s", new_master, msg)
566
    rcode = 1
567

    
568
  return rcode
569

    
570

    
571
def GetMaster():
572
  """Returns the current master node.
573

574
  This is a separate function in bootstrap since it's needed by
575
  gnt-cluster, and instead of importing directly ssconf, it's better
576
  to abstract it in bootstrap, where we do use ssconf in other
577
  functions too.
578

579
  """
580
  sstore = ssconf.SimpleStore()
581

    
582
  old_master, _ = ssconf.GetMasterAndMyself(sstore)
583

    
584
  return old_master
585

    
586

    
587
def GatherMasterVotes(node_list):
588
  """Check the agreement on who is the master.
589

590
  This function will return a list of (node, number of votes), ordered
591
  by the number of votes. Errors will be denoted by the key 'None'.
592

593
  Note that the sum of votes is the number of nodes this machine
594
  knows, whereas the number of entries in the list could be different
595
  (if some nodes vote for another master).
596

597
  We remove ourselves from the list since we know that (bugs aside)
598
  since we use the same source for configuration information for both
599
  backend and boostrap, we'll always vote for ourselves.
600

601
  @type node_list: list
602
  @param node_list: the list of nodes to query for master info; the current
603
      node will be removed if it is in the list
604
  @rtype: list
605
  @return: list of (node, votes)
606

607
  """
608
  myself = utils.HostInfo().name
609
  try:
610
    node_list.remove(myself)
611
  except ValueError:
612
    pass
613
  if not node_list:
614
    # no nodes left (eventually after removing myself)
615
    return []
616
  results = rpc.RpcRunner.call_master_info(node_list)
617
  if not isinstance(results, dict):
618
    # this should not happen (unless internal error in rpc)
619
    logging.critical("Can't complete rpc call, aborting master startup")
620
    return [(None, len(node_list))]
621
  votes = {}
622
  for node in results:
623
    nres = results[node]
624
    data = nres.payload
625
    msg = nres.fail_msg
626
    fail = False
627
    if msg:
628
      logging.warning("Error contacting node %s: %s", node, msg)
629
      fail = True
630
    elif not isinstance(data, (tuple, list)) or len(data) < 3:
631
      logging.warning("Invalid data received from node %s: %s", node, data)
632
      fail = True
633
    if fail:
634
      if None not in votes:
635
        votes[None] = 0
636
      votes[None] += 1
637
      continue
638
    master_node = data[2]
639
    if master_node not in votes:
640
      votes[master_node] = 0
641
    votes[master_node] += 1
642

    
643
  vote_list = [v for v in votes.items()]
644
  # sort first on number of votes then on name, since we want None
645
  # sorted later if we have the half of the nodes not responding, and
646
  # half voting all for the same master
647
  vote_list.sort(key=lambda x: (x[1], x[0]), reverse=True)
648

    
649
  return vote_list