Statistics
| Branch: | Tag: | Revision:

root / lib / bootstrap.py @ 02691904

History | View | Annotate | Download (15.4 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 sha
29
import re
30
import logging
31

    
32
from ganeti import rpc
33
from ganeti import ssh
34
from ganeti import utils
35
from ganeti import errors
36
from ganeti import config
37
from ganeti import constants
38
from ganeti import objects
39
from ganeti import ssconf
40

    
41
from ganeti.rpc import RpcRunner
42

    
43
def _InitSSHSetup(node):
44
  """Setup the SSH configuration for the cluster.
45

46

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

50
  Args:
51
    node: the name of this host as a fqdn
52

53
  """
54
  priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
55

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

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

    
68
  f = open(pub_key, 'r')
69
  try:
70
    utils.AddAuthorizedKey(auth_keys, f.read(8192))
71
  finally:
72
    f.close()
73

    
74

    
75
def _InitGanetiServerSetup():
76
  """Setup the necessary configuration for the initial node daemon.
77

78
  This creates the nodepass file containing the shared password for
79
  the cluster and also generates the SSL certificate.
80

81
  """
82
  # Create pseudo random password
83
  randpass = utils.GenerateSecret()
84

    
85
  # and write it into the config file
86
  utils.WriteFile(constants.CLUSTER_PASSWORD_FILE,
87
                  data="%s\n" % randpass, mode=0400)
88

    
89
  result = utils.RunCmd(["openssl", "req", "-new", "-newkey", "rsa:1024",
90
                         "-days", str(365*5), "-nodes", "-x509",
91
                         "-keyout", constants.SSL_CERT_FILE,
92
                         "-out", constants.SSL_CERT_FILE, "-batch"])
93
  if result.failed:
94
    raise errors.OpExecError("could not generate server ssl cert, command"
95
                             " %s had exitcode %s and error message %s" %
96
                             (result.cmd, result.exit_code, result.output))
97

    
98
  os.chmod(constants.SSL_CERT_FILE, 0400)
99

    
100
  result = utils.RunCmd([constants.NODE_INITD_SCRIPT, "restart"])
101

    
102
  if result.failed:
103
    raise errors.OpExecError("Could not start the node daemon, command %s"
104
                             " had exitcode %s and error %s" %
105
                             (result.cmd, result.exit_code, result.output))
106

    
107

    
108
def InitCluster(cluster_name, mac_prefix, def_bridge,
109
                master_netdev, file_storage_dir,
110
                secondary_ip=None,
111
                vg_name=None, beparams=None, hvparams=None,
112
                enabled_hypervisors=None, default_hypervisor=None):
113
  """Initialise the cluster.
114

115
  """
116
  if config.ConfigWriter.IsCluster():
117
    raise errors.OpPrereqError("Cluster is already initialised")
118

    
119
  hostname = utils.HostInfo()
120

    
121
  if hostname.ip.startswith("127."):
122
    raise errors.OpPrereqError("This host's IP resolves to the private"
123
                               " range (%s). Please fix DNS or %s." %
124
                               (hostname.ip, constants.ETC_HOSTS))
125

    
126
  if not utils.OwnIpAddress(hostname.ip):
127
    raise errors.OpPrereqError("Inconsistency: this host's name resolves"
128
                               " to %s,\nbut this ip address does not"
129
                               " belong to this host."
130
                               " Aborting." % hostname.ip)
131

    
132
  clustername = utils.HostInfo(cluster_name)
133

    
134
  if utils.TcpPing(clustername.ip, constants.DEFAULT_NODED_PORT,
135
                   timeout=5):
136
    raise errors.OpPrereqError("Cluster IP already active. Aborting.")
137

    
138
  if secondary_ip:
139
    if not utils.IsValidIP(secondary_ip):
140
      raise errors.OpPrereqError("Invalid secondary ip given")
141
    if (secondary_ip != hostname.ip and
142
        not utils.OwnIpAddress(secondary_ip)):
143
      raise errors.OpPrereqError("You gave %s as secondary IP,"
144
                                 " but it does not belong to this host." %
145
                                 secondary_ip)
146
  else:
147
    secondary_ip = hostname.ip
148

    
149
  if vg_name is not None:
150
    # Check if volume group is valid
151
    vgstatus = utils.CheckVolumeGroupSize(utils.ListVolumeGroups(), vg_name,
152
                                          constants.MIN_VG_SIZE)
153
    if vgstatus:
154
      raise errors.OpPrereqError("Error: %s\nspecify --no-lvm-storage if"
155
                                 " you are not using lvm" % vgstatus)
156

    
157
  file_storage_dir = os.path.normpath(file_storage_dir)
158

    
159
  if not os.path.isabs(file_storage_dir):
160
    raise errors.OpPrereqError("The file storage directory you passed is"
161
                               " not an absolute path.")
162

    
163
  if not os.path.exists(file_storage_dir):
164
    try:
165
      os.makedirs(file_storage_dir, 0750)
166
    except OSError, err:
167
      raise errors.OpPrereqError("Cannot create file storage directory"
168
                                 " '%s': %s" %
169
                                 (file_storage_dir, err))
170

    
171
  if not os.path.isdir(file_storage_dir):
172
    raise errors.OpPrereqError("The file storage directory '%s' is not"
173
                               " a directory." % file_storage_dir)
174

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

    
178
  result = utils.RunCmd(["ip", "link", "show", "dev", master_netdev])
179
  if result.failed:
180
    raise errors.OpPrereqError("Invalid master netdev given (%s): '%s'" %
181
                               (master_netdev,
182
                                result.output.strip()))
183

    
184
  if not (os.path.isfile(constants.NODE_INITD_SCRIPT) and
185
          os.access(constants.NODE_INITD_SCRIPT, os.X_OK)):
186
    raise errors.OpPrereqError("Init.d script '%s' missing or not"
187
                               " executable." % constants.NODE_INITD_SCRIPT)
188

    
189
  # set up the inter-node password and certificate
190
  _InitGanetiServerSetup()
191

    
192
  # set up ssh config and /etc/hosts
193
  f = open(constants.SSH_HOST_RSA_PUB, 'r')
194
  try:
195
    sshline = f.read()
196
  finally:
197
    f.close()
198
  sshkey = sshline.split(" ")[1]
199

    
200
  utils.AddHostToEtcHosts(hostname.name)
201
  _InitSSHSetup(hostname.name)
202

    
203
  # init of cluster config file
204
  cluster_config = objects.Cluster(
205
    serial_no=1,
206
    rsahostkeypub=sshkey,
207
    highest_used_port=(constants.FIRST_DRBD_PORT - 1),
208
    mac_prefix=mac_prefix,
209
    volume_group_name=vg_name,
210
    default_bridge=def_bridge,
211
    tcpudp_port_pool=set(),
212
    master_node=hostname.name,
213
    master_ip=clustername.ip,
214
    master_netdev=master_netdev,
215
    cluster_name=clustername.name,
216
    file_storage_dir=file_storage_dir,
217
    enabled_hypervisors=enabled_hypervisors,
218
    default_hypervisor=default_hypervisor,
219
    beparams={constants.BEGR_DEFAULT: beparams},
220
    hvparams=hvparams,
221
    )
222
  master_node_config = objects.Node(name=hostname.name,
223
                                    primary_ip=hostname.ip,
224
                                    secondary_ip=secondary_ip)
225

    
226
  cfg = InitConfig(constants.CONFIG_VERSION,
227
                   cluster_config, master_node_config)
228
  ssh.WriteKnownHostsFile(cfg, constants.SSH_KNOWN_HOSTS_FILE)
229

    
230
  # start the master ip
231
  # TODO: Review rpc call from bootstrap
232
  RpcRunner.call_node_start_master(hostname.name, True)
233

    
234

    
235
def InitConfig(version, cluster_config, master_node_config,
236
               cfg_file=constants.CLUSTER_CONF_FILE):
237
  """Create the initial cluster configuration.
238

239
  It will contain the current node, which will also be the master
240
  node, and no instances.
241

242
  @type version: int
243
  @param version: Configuration version
244
  @type cluster_config: objects.Cluster
245
  @param cluster_config: Cluster configuration
246
  @type master_node_config: objects.Node
247
  @param master_node_config: Master node configuration
248
  @type file_name: string
249
  @param file_name: Configuration file path
250

251
  @rtype: ssconf.SimpleConfigWriter
252
  @returns: Initialized config instance
253

254
  """
255
  nodes = {
256
    master_node_config.name: master_node_config,
257
    }
258

    
259
  config_data = objects.ConfigData(version=version,
260
                                   cluster=cluster_config,
261
                                   nodes=nodes,
262
                                   instances={},
263
                                   serial_no=1)
264
  cfg = ssconf.SimpleConfigWriter.FromDict(config_data.ToDict(), cfg_file)
265
  cfg.Save()
266

    
267
  return cfg
268

    
269

    
270
def FinalizeClusterDestroy(master):
271
  """Execute the last steps of cluster destroy
272

273
  This function shuts down all the daemons, completing the destroy
274
  begun in cmdlib.LUDestroyOpcode.
275

276
  """
277
  if not RpcRunner.call_node_stop_master(master, True):
278
    logging.warning("Could not disable the master role")
279
  if not RpcRunner.call_node_leave_cluster(master):
280
    logging.warning("Could not shutdown the node daemon and cleanup the node")
281

    
282

    
283
def SetupNodeDaemon(node, ssh_key_check):
284
  """Add a node to the cluster.
285

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

290
  Args:
291
    node: fully qualified domain name for the new node
292

293
  """
294
  cfg = ssconf.SimpleConfigReader()
295
  sshrunner = ssh.SshRunner(cfg.GetClusterName())
296
  gntpass = utils.GetNodeDaemonPassword()
297
  if not re.match('^[a-zA-Z0-9.]{1,64}$', gntpass):
298
    raise errors.OpExecError("ganeti password corruption detected")
299
  f = open(constants.SSL_CERT_FILE)
300
  try:
301
    gntpem = f.read(8192)
302
  finally:
303
    f.close()
304
  # in the base64 pem encoding, neither '!' nor '.' are valid chars,
305
  # so we use this to detect an invalid certificate; as long as the
306
  # cert doesn't contain this, the here-document will be correctly
307
  # parsed by the shell sequence below
308
  if re.search('^!EOF\.', gntpem, re.MULTILINE):
309
    raise errors.OpExecError("invalid PEM encoding in the SSL certificate")
310
  if not gntpem.endswith("\n"):
311
    raise errors.OpExecError("PEM must end with newline")
312

    
313
  # set up inter-node password and certificate and restarts the node daemon
314
  # and then connect with ssh to set password and start ganeti-noded
315
  # note that all the below variables are sanitized at this point,
316
  # either by being constants or by the checks above
317
  mycommand = ("umask 077 && "
318
               "echo '%s' > '%s' && "
319
               "cat > '%s' << '!EOF.' && \n"
320
               "%s!EOF.\n%s restart" %
321
               (gntpass, constants.CLUSTER_PASSWORD_FILE,
322
                constants.SSL_CERT_FILE, gntpem,
323
                constants.NODE_INITD_SCRIPT))
324

    
325
  result = sshrunner.Run(node, 'root', mycommand, batch=False,
326
                         ask_key=ssh_key_check,
327
                         use_cluster_key=False,
328
                         strict_host_check=ssh_key_check)
329
  if result.failed:
330
    raise errors.OpExecError("Remote command on node %s, error: %s,"
331
                             " output: %s" %
332
                             (node, result.fail_reason, result.output))
333

    
334
  return 0
335

    
336

    
337
def MasterFailover():
338
  """Failover the master node.
339

340
  This checks that we are not already the master, and will cause the
341
  current master to cease being master, and the non-master to become
342
  new master.
343

344
  """
345
  cfg = ssconf.SimpleConfigWriter()
346

    
347
  new_master = utils.HostInfo().name
348
  old_master = cfg.GetMasterNode()
349
  node_list = cfg.GetNodeList()
350

    
351
  if old_master == new_master:
352
    raise errors.OpPrereqError("This commands must be run on the node"
353
                               " where you want the new master to be."
354
                               " %s is already the master" %
355
                               old_master)
356

    
357
  vote_list = GatherMasterVotes(node_list)
358

    
359
  if vote_list:
360
    voted_master = vote_list[0][0]
361
    if voted_master is None:
362
      raise errors.OpPrereqError("Cluster is inconsistent, most nodes did not"
363
                                 " respond.")
364
    elif voted_master != old_master:
365
      raise errors.OpPrereqError("I have wrong configuration, I believe the"
366
                                 " master is %s but the other nodes voted for"
367
                                 " %s. Please resync the configuration of"
368
                                 " this node." % (old_master, voted_master))
369
  # end checks
370

    
371
  rcode = 0
372

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

    
375
  if not RpcRunner.call_node_stop_master(old_master, True):
376
    logging.error("Could not disable the master role on the old master"
377
                 " %s, please disable manually", old_master)
378

    
379
  cfg.SetMasterNode(new_master)
380
  cfg.Save()
381

    
382
  # Here we have a phase where no master should be running
383

    
384
  if not RpcRunner.call_upload_file(cfg.GetNodeList(),
385
                                    constants.CLUSTER_CONF_FILE):
386
    logging.error("Could not distribute the new configuration"
387
                  " to the other nodes, please check.")
388

    
389

    
390
  if not RpcRunner.call_node_start_master(new_master, True):
391
    logging.error("Could not start the master role on the new master"
392
                  " %s, please check", new_master)
393
    rcode = 1
394

    
395
  return rcode
396

    
397

    
398
def GatherMasterVotes(node_list):
399
  """Check the agreement on who is the master.
400

401
  This function will return a list of (node, number of votes), ordered
402
  by the number of votes. Errors will be denoted by the key 'None'.
403

404
  Note that the sum of votes is the number of nodes this machine
405
  knows, whereas the number of entries in the list could be different
406
  (if some nodes vote for another master).
407

408
  We remove ourselves from the list since we know that (bugs aside)
409
  since we use the same source for configuration information for both
410
  backend and boostrap, we'll always vote for ourselves.
411

412
  @type node_list: list
413
  @param node_list: the list of nodes to query for master info; the current
414
      node wil be removed if it is in the list
415
  @rtype: list
416
  @return: list of (node, votes)
417

418
  """
419
  myself = utils.HostInfo().name
420
  try:
421
    node_list.remove(myself)
422
  except ValueError:
423
    pass
424
  if not node_list:
425
    # no nodes left (eventually after removing myself)
426
    return []
427
  results = rpc.RpcRunner.call_master_info(node_list)
428
  if not isinstance(results, dict):
429
    # this should not happen (unless internal error in rpc)
430
    logging.critical("Can't complete rpc call, aborting master startup")
431
    return [(None, len(node_list))]
432
  positive = negative = 0
433
  other_masters = {}
434
  votes = {}
435
  for node in results:
436
    if not isinstance(results[node], (tuple, list)) or len(results[node]) < 3:
437
      # here the rpc layer should have already logged errors
438
      if None not in votes:
439
        votes[None] = 0
440
      votes[None] += 1
441
      continue
442
    master_node = results[node][2]
443
    if master_node not in votes:
444
      votes[master_node] = 0
445
    votes[master_node] += 1
446

    
447
  vote_list = [v for v in votes.items()]
448
  # sort first on number of votes then on name, since we want None
449
  # sorted later if we have the half of the nodes not responding, and
450
  # half voting all for the same master
451
  vote_list.sort(key=lambda x: (x[1], x[0]), reverse=True)
452

    
453
  return vote_list