Statistics
| Branch: | Tag: | Revision:

root / lib / bootstrap.py @ d4b72030

History | View | Annotate | Download (15.5 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
def _InitSSHSetup(node):
42
  """Setup the SSH configuration for the cluster.
43

44

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

48
  Args:
49
    node: the name of this host as a fqdn
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
  f = open(pub_key, 'r')
67
  try:
68
    utils.AddAuthorizedKey(auth_keys, f.read(8192))
69
  finally:
70
    f.close()
71

    
72

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

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

79
  """
80
  result = utils.RunCmd(["openssl", "req", "-new", "-newkey", "rsa:1024",
81
                         "-days", str(365*5), "-nodes", "-x509",
82
                         "-keyout", constants.SSL_CERT_FILE,
83
                         "-out", constants.SSL_CERT_FILE, "-batch"])
84
  if result.failed:
85
    raise errors.OpExecError("could not generate server ssl cert, command"
86
                             " %s had exitcode %s and error message %s" %
87
                             (result.cmd, result.exit_code, result.output))
88

    
89
  os.chmod(constants.SSL_CERT_FILE, 0400)
90

    
91
  result = utils.RunCmd([constants.NODE_INITD_SCRIPT, "restart"])
92

    
93
  if result.failed:
94
    raise errors.OpExecError("Could not start the node daemon, command %s"
95
                             " had exitcode %s and error %s" %
96
                             (result.cmd, result.exit_code, result.output))
97

    
98

    
99
def InitCluster(cluster_name, mac_prefix, def_bridge,
100
                master_netdev, file_storage_dir,
101
                secondary_ip=None,
102
                vg_name=None, beparams=None, hvparams=None,
103
                enabled_hypervisors=None, default_hypervisor=None):
104
  """Initialise the cluster.
105

106
  """
107
  if config.ConfigWriter.IsCluster():
108
    raise errors.OpPrereqError("Cluster is already initialised")
109

    
110
  hostname = utils.HostInfo()
111

    
112
  if hostname.ip.startswith("127."):
113
    raise errors.OpPrereqError("This host's IP resolves to the private"
114
                               " range (%s). Please fix DNS or %s." %
115
                               (hostname.ip, constants.ETC_HOSTS))
116

    
117
  if not utils.OwnIpAddress(hostname.ip):
118
    raise errors.OpPrereqError("Inconsistency: this host's name resolves"
119
                               " to %s,\nbut this ip address does not"
120
                               " belong to this host."
121
                               " Aborting." % hostname.ip)
122

    
123
  clustername = utils.HostInfo(cluster_name)
124

    
125
  if utils.TcpPing(clustername.ip, constants.DEFAULT_NODED_PORT,
126
                   timeout=5):
127
    raise errors.OpPrereqError("Cluster IP already active. Aborting.")
128

    
129
  if secondary_ip:
130
    if not utils.IsValidIP(secondary_ip):
131
      raise errors.OpPrereqError("Invalid secondary ip given")
132
    if (secondary_ip != hostname.ip and
133
        not utils.OwnIpAddress(secondary_ip)):
134
      raise errors.OpPrereqError("You gave %s as secondary IP,"
135
                                 " but it does not belong to this host." %
136
                                 secondary_ip)
137
  else:
138
    secondary_ip = hostname.ip
139

    
140
  if vg_name is not None:
141
    # Check if volume group is valid
142
    vgstatus = utils.CheckVolumeGroupSize(utils.ListVolumeGroups(), vg_name,
143
                                          constants.MIN_VG_SIZE)
144
    if vgstatus:
145
      raise errors.OpPrereqError("Error: %s\nspecify --no-lvm-storage if"
146
                                 " you are not using lvm" % vgstatus)
147

    
148
  file_storage_dir = os.path.normpath(file_storage_dir)
149

    
150
  if not os.path.isabs(file_storage_dir):
151
    raise errors.OpPrereqError("The file storage directory you passed is"
152
                               " not an absolute path.")
153

    
154
  if not os.path.exists(file_storage_dir):
155
    try:
156
      os.makedirs(file_storage_dir, 0750)
157
    except OSError, err:
158
      raise errors.OpPrereqError("Cannot create file storage directory"
159
                                 " '%s': %s" %
160
                                 (file_storage_dir, err))
161

    
162
  if not os.path.isdir(file_storage_dir):
163
    raise errors.OpPrereqError("The file storage directory '%s' is not"
164
                               " a directory." % file_storage_dir)
165

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

    
169
  result = utils.RunCmd(["ip", "link", "show", "dev", master_netdev])
170
  if result.failed:
171
    raise errors.OpPrereqError("Invalid master netdev given (%s): '%s'" %
172
                               (master_netdev,
173
                                result.output.strip()))
174

    
175
  if not (os.path.isfile(constants.NODE_INITD_SCRIPT) and
176
          os.access(constants.NODE_INITD_SCRIPT, os.X_OK)):
177
    raise errors.OpPrereqError("Init.d script '%s' missing or not"
178
                               " executable." % constants.NODE_INITD_SCRIPT)
179

    
180
  utils.CheckBEParams(beparams)
181

    
182
  # set up the inter-node password and certificate
183
  _InitGanetiServerSetup()
184

    
185
  # set up ssh config and /etc/hosts
186
  f = open(constants.SSH_HOST_RSA_PUB, 'r')
187
  try:
188
    sshline = f.read()
189
  finally:
190
    f.close()
191
  sshkey = sshline.split(" ")[1]
192

    
193
  utils.AddHostToEtcHosts(hostname.name)
194
  _InitSSHSetup(hostname.name)
195

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

    
220
  cfg = InitConfig(constants.CONFIG_VERSION,
221
                   cluster_config, master_node_config)
222
  ssh.WriteKnownHostsFile(cfg, constants.SSH_KNOWN_HOSTS_FILE)
223

    
224
  # start the master ip
225
  # TODO: Review rpc call from bootstrap
226
  rpc.RpcRunner.call_node_start_master(hostname.name, True)
227

    
228

    
229
def InitConfig(version, cluster_config, master_node_config,
230
               cfg_file=constants.CLUSTER_CONF_FILE):
231
  """Create the initial cluster configuration.
232

233
  It will contain the current node, which will also be the master
234
  node, and no instances.
235

236
  @type version: int
237
  @param version: Configuration version
238
  @type cluster_config: objects.Cluster
239
  @param cluster_config: Cluster configuration
240
  @type master_node_config: objects.Node
241
  @param master_node_config: Master node configuration
242
  @type file_name: string
243
  @param file_name: Configuration file path
244

245
  @rtype: ssconf.SimpleConfigWriter
246
  @returns: Initialized config instance
247

248
  """
249
  nodes = {
250
    master_node_config.name: master_node_config,
251
    }
252

    
253
  config_data = objects.ConfigData(version=version,
254
                                   cluster=cluster_config,
255
                                   nodes=nodes,
256
                                   instances={},
257
                                   serial_no=1)
258
  cfg = ssconf.SimpleConfigWriter.FromDict(config_data.ToDict(), cfg_file)
259
  cfg.Save()
260

    
261
  return cfg
262

    
263

    
264
def FinalizeClusterDestroy(master):
265
  """Execute the last steps of cluster destroy
266

267
  This function shuts down all the daemons, completing the destroy
268
  begun in cmdlib.LUDestroyOpcode.
269

270
  """
271
  if not rpc.RpcRunner.call_node_stop_master(master, True):
272
    logging.warning("Could not disable the master role")
273
  if not rpc.RpcRunner.call_node_leave_cluster(master):
274
    logging.warning("Could not shutdown the node daemon and cleanup the node")
275

    
276

    
277
def SetupNodeDaemon(cluster_name, node, ssh_key_check):
278
  """Add a node to the cluster.
279

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

284
  @param cluster_name: the cluster name
285
  @param node: the name of the new node
286
  @param ssh_key_check: whether to do a strict key check
287

288
  """
289
  sshrunner = ssh.SshRunner(cluster_name)
290
  gntpem = utils.ReadFile(constants.SSL_CERT_FILE)
291
  # in the base64 pem encoding, neither '!' nor '.' are valid chars,
292
  # so we use this to detect an invalid certificate; as long as the
293
  # cert doesn't contain this, the here-document will be correctly
294
  # parsed by the shell sequence below
295
  if re.search('^!EOF\.', gntpem, re.MULTILINE):
296
    raise errors.OpExecError("invalid PEM encoding in the SSL certificate")
297
  if not gntpem.endswith("\n"):
298
    raise errors.OpExecError("PEM must end with newline")
299

    
300
  # set up inter-node password and certificate and restarts the node daemon
301
  # and then connect with ssh to set password and start ganeti-noded
302
  # note that all the below variables are sanitized at this point,
303
  # either by being constants or by the checks above
304
  mycommand = ("umask 077 && "
305
               "cat > '%s' << '!EOF.' && \n"
306
               "%s!EOF.\n%s restart" %
307
               (constants.SSL_CERT_FILE, gntpem,
308
                constants.NODE_INITD_SCRIPT))
309

    
310
  result = sshrunner.Run(node, 'root', mycommand, batch=False,
311
                         ask_key=ssh_key_check,
312
                         use_cluster_key=False,
313
                         strict_host_check=ssh_key_check)
314
  if result.failed:
315
    raise errors.OpExecError("Remote command on node %s, error: %s,"
316
                             " output: %s" %
317
                             (node, result.fail_reason, result.output))
318

    
319

    
320
def MasterFailover():
321
  """Failover the master node.
322

323
  This checks that we are not already the master, and will cause the
324
  current master to cease being master, and the non-master to become
325
  new master.
326

327
  """
328
  sstore = ssconf.SimpleStore()
329

    
330
  old_master, new_master = ssconf.GetMasterAndMyself(sstore)
331
  node_list = sstore.GetNodeList()
332
  mc_list = sstore.GetMasterCandidates()
333

    
334
  if old_master == new_master:
335
    raise errors.OpPrereqError("This commands must be run on the node"
336
                               " where you want the new master to be."
337
                               " %s is already the master" %
338
                               old_master)
339

    
340
  if new_master not in mc_list:
341
    mc_no_master = [name for name in mc_list if name != old_master]
342
    raise errors.OpPrereqError("This node is not among the nodes marked"
343
                               " as master candidates. Only these nodes"
344
                               " can become masters. Current list of"
345
                               " master candidates is:\n"
346
                               "%s" % ('\n'.join(mc_no_master)))
347

    
348
  vote_list = GatherMasterVotes(node_list)
349

    
350
  if vote_list:
351
    voted_master = vote_list[0][0]
352
    if voted_master is None:
353
      raise errors.OpPrereqError("Cluster is inconsistent, most nodes did not"
354
                                 " respond.")
355
    elif voted_master != old_master:
356
      raise errors.OpPrereqError("I have wrong configuration, I believe the"
357
                                 " master is %s but the other nodes voted for"
358
                                 " %s. Please resync the configuration of"
359
                                 " this node." % (old_master, voted_master))
360
  # end checks
361

    
362
  rcode = 0
363

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

    
366
  if not rpc.RpcRunner.call_node_stop_master(old_master, True):
367
    logging.error("Could not disable the master role on the old master"
368
                 " %s, please disable manually", old_master)
369

    
370
  # Here we have a phase where no master should be running
371

    
372
  # instantiate a real config writer, as we now know we have the
373
  # configuration data
374
  cfg = config.ConfigWriter()
375

    
376
  cluster_info = cfg.GetClusterInfo()
377
  cluster_info.master_node = new_master
378
  # this will also regenerate the ssconf files, since we updated the
379
  # cluster info
380
  cfg.Update(cluster_info)
381

    
382
  if not rpc.RpcRunner.call_node_start_master(new_master, True):
383
    logging.error("Could not start the master role on the new master"
384
                  " %s, please check", new_master)
385
    rcode = 1
386

    
387
  return rcode
388

    
389

    
390
def GatherMasterVotes(node_list):
391
  """Check the agreement on who is the master.
392

393
  This function will return a list of (node, number of votes), ordered
394
  by the number of votes. Errors will be denoted by the key 'None'.
395

396
  Note that the sum of votes is the number of nodes this machine
397
  knows, whereas the number of entries in the list could be different
398
  (if some nodes vote for another master).
399

400
  We remove ourselves from the list since we know that (bugs aside)
401
  since we use the same source for configuration information for both
402
  backend and boostrap, we'll always vote for ourselves.
403

404
  @type node_list: list
405
  @param node_list: the list of nodes to query for master info; the current
406
      node wil be removed if it is in the list
407
  @rtype: list
408
  @return: list of (node, votes)
409

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

    
439
  vote_list = [v for v in votes.items()]
440
  # sort first on number of votes then on name, since we want None
441
  # sorted later if we have the half of the nodes not responding, and
442
  # half voting all for the same master
443
  vote_list.sort(key=lambda x: (x[1], x[0]), reverse=True)
444

    
445
  return vote_list