Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ dcaabc4f

History | View | Annotate | Download (93.6 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007 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 used by the node daemon
23

24
@var _ALLOWED_UPLOAD_FILES: denotes which files are accepted in
25
     the L{UploadFile} function
26
@var _ALLOWED_CLEAN_DIRS: denotes which directories are accepted
27
     in the L{_CleanDirectory} function
28

29
"""
30

    
31
# pylint: disable-msg=E1103
32

    
33
# E1103: %s %r has no %r member (but some types could not be
34
# inferred), because the _TryOSFromDisk returns either (True, os_obj)
35
# or (False, "string") which confuses pylint
36

    
37

    
38
import os
39
import os.path
40
import shutil
41
import time
42
import stat
43
import errno
44
import re
45
import random
46
import logging
47
import tempfile
48
import zlib
49
import base64
50
import signal
51

    
52
from ganeti import errors
53
from ganeti import utils
54
from ganeti import ssh
55
from ganeti import hypervisor
56
from ganeti import constants
57
from ganeti import bdev
58
from ganeti import objects
59
from ganeti import ssconf
60
from ganeti import serializer
61

    
62

    
63
_BOOT_ID_PATH = "/proc/sys/kernel/random/boot_id"
64
_ALLOWED_CLEAN_DIRS = frozenset([
65
  constants.DATA_DIR,
66
  constants.JOB_QUEUE_ARCHIVE_DIR,
67
  constants.QUEUE_DIR,
68
  constants.CRYPTO_KEYS_DIR,
69
  ])
70
_MAX_SSL_CERT_VALIDITY = 7 * 24 * 60 * 60
71
_X509_KEY_FILE = "key"
72
_X509_CERT_FILE = "cert"
73
_IES_STATUS_FILE = "status"
74
_IES_PID_FILE = "pid"
75
_IES_CA_FILE = "ca"
76

    
77

    
78
class RPCFail(Exception):
79
  """Class denoting RPC failure.
80

81
  Its argument is the error message.
82

83
  """
84

    
85

    
86
def _Fail(msg, *args, **kwargs):
87
  """Log an error and the raise an RPCFail exception.
88

89
  This exception is then handled specially in the ganeti daemon and
90
  turned into a 'failed' return type. As such, this function is a
91
  useful shortcut for logging the error and returning it to the master
92
  daemon.
93

94
  @type msg: string
95
  @param msg: the text of the exception
96
  @raise RPCFail
97

98
  """
99
  if args:
100
    msg = msg % args
101
  if "log" not in kwargs or kwargs["log"]: # if we should log this error
102
    if "exc" in kwargs and kwargs["exc"]:
103
      logging.exception(msg)
104
    else:
105
      logging.error(msg)
106
  raise RPCFail(msg)
107

    
108

    
109
def _GetConfig():
110
  """Simple wrapper to return a SimpleStore.
111

112
  @rtype: L{ssconf.SimpleStore}
113
  @return: a SimpleStore instance
114

115
  """
116
  return ssconf.SimpleStore()
117

    
118

    
119
def _GetSshRunner(cluster_name):
120
  """Simple wrapper to return an SshRunner.
121

122
  @type cluster_name: str
123
  @param cluster_name: the cluster name, which is needed
124
      by the SshRunner constructor
125
  @rtype: L{ssh.SshRunner}
126
  @return: an SshRunner instance
127

128
  """
129
  return ssh.SshRunner(cluster_name)
130

    
131

    
132
def _Decompress(data):
133
  """Unpacks data compressed by the RPC client.
134

135
  @type data: list or tuple
136
  @param data: Data sent by RPC client
137
  @rtype: str
138
  @return: Decompressed data
139

140
  """
141
  assert isinstance(data, (list, tuple))
142
  assert len(data) == 2
143
  (encoding, content) = data
144
  if encoding == constants.RPC_ENCODING_NONE:
145
    return content
146
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
147
    return zlib.decompress(base64.b64decode(content))
148
  else:
149
    raise AssertionError("Unknown data encoding")
150

    
151

    
152
def _CleanDirectory(path, exclude=None):
153
  """Removes all regular files in a directory.
154

155
  @type path: str
156
  @param path: the directory to clean
157
  @type exclude: list
158
  @param exclude: list of files to be excluded, defaults
159
      to the empty list
160

161
  """
162
  if path not in _ALLOWED_CLEAN_DIRS:
163
    _Fail("Path passed to _CleanDirectory not in allowed clean targets: '%s'",
164
          path)
165

    
166
  if not os.path.isdir(path):
167
    return
168
  if exclude is None:
169
    exclude = []
170
  else:
171
    # Normalize excluded paths
172
    exclude = [os.path.normpath(i) for i in exclude]
173

    
174
  for rel_name in utils.ListVisibleFiles(path):
175
    full_name = utils.PathJoin(path, rel_name)
176
    if full_name in exclude:
177
      continue
178
    if os.path.isfile(full_name) and not os.path.islink(full_name):
179
      utils.RemoveFile(full_name)
180

    
181

    
182
def _BuildUploadFileList():
183
  """Build the list of allowed upload files.
184

185
  This is abstracted so that it's built only once at module import time.
186

187
  """
188
  allowed_files = set([
189
    constants.CLUSTER_CONF_FILE,
190
    constants.ETC_HOSTS,
191
    constants.SSH_KNOWN_HOSTS_FILE,
192
    constants.VNC_PASSWORD_FILE,
193
    constants.RAPI_CERT_FILE,
194
    constants.RAPI_USERS_FILE,
195
    constants.CONFD_HMAC_KEY,
196
    ])
197

    
198
  for hv_name in constants.HYPER_TYPES:
199
    hv_class = hypervisor.GetHypervisorClass(hv_name)
200
    allowed_files.update(hv_class.GetAncillaryFiles())
201

    
202
  return frozenset(allowed_files)
203

    
204

    
205
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
206

    
207

    
208
def JobQueuePurge():
209
  """Removes job queue files and archived jobs.
210

211
  @rtype: tuple
212
  @return: True, None
213

214
  """
215
  _CleanDirectory(constants.QUEUE_DIR, exclude=[constants.JOB_QUEUE_LOCK_FILE])
216
  _CleanDirectory(constants.JOB_QUEUE_ARCHIVE_DIR)
217

    
218

    
219
def GetMasterInfo():
220
  """Returns master information.
221

222
  This is an utility function to compute master information, either
223
  for consumption here or from the node daemon.
224

225
  @rtype: tuple
226
  @return: master_netdev, master_ip, master_name
227
  @raise RPCFail: in case of errors
228

229
  """
230
  try:
231
    cfg = _GetConfig()
232
    master_netdev = cfg.GetMasterNetdev()
233
    master_ip = cfg.GetMasterIP()
234
    master_node = cfg.GetMasterNode()
235
  except errors.ConfigurationError, err:
236
    _Fail("Cluster configuration incomplete: %s", err, exc=True)
237
  return (master_netdev, master_ip, master_node)
238

    
239

    
240
def StartMaster(start_daemons, no_voting):
241
  """Activate local node as master node.
242

243
  The function will always try activate the IP address of the master
244
  (unless someone else has it). It will also start the master daemons,
245
  based on the start_daemons parameter.
246

247
  @type start_daemons: boolean
248
  @param start_daemons: whether to also start the master
249
      daemons (ganeti-masterd and ganeti-rapi)
250
  @type no_voting: boolean
251
  @param no_voting: whether to start ganeti-masterd without a node vote
252
      (if start_daemons is True), but still non-interactively
253
  @rtype: None
254

255
  """
256
  # GetMasterInfo will raise an exception if not able to return data
257
  master_netdev, master_ip, _ = GetMasterInfo()
258

    
259
  err_msgs = []
260
  if utils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
261
    if utils.OwnIpAddress(master_ip):
262
      # we already have the ip:
263
      logging.debug("Master IP already configured, doing nothing")
264
    else:
265
      msg = "Someone else has the master ip, not activating"
266
      logging.error(msg)
267
      err_msgs.append(msg)
268
  else:
269
    result = utils.RunCmd(["ip", "address", "add", "%s/32" % master_ip,
270
                           "dev", master_netdev, "label",
271
                           "%s:0" % master_netdev])
272
    if result.failed:
273
      msg = "Can't activate master IP: %s" % result.output
274
      logging.error(msg)
275
      err_msgs.append(msg)
276

    
277
    result = utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev,
278
                           "-s", master_ip, master_ip])
279
    # we'll ignore the exit code of arping
280

    
281
  # and now start the master and rapi daemons
282
  if start_daemons:
283
    if no_voting:
284
      masterd_args = "--no-voting --yes-do-it"
285
    else:
286
      masterd_args = ""
287

    
288
    env = {
289
      "EXTRA_MASTERD_ARGS": masterd_args,
290
      }
291

    
292
    result = utils.RunCmd([constants.DAEMON_UTIL, "start-master"], env=env)
293
    if result.failed:
294
      msg = "Can't start Ganeti master: %s" % result.output
295
      logging.error(msg)
296
      err_msgs.append(msg)
297

    
298
  if err_msgs:
299
    _Fail("; ".join(err_msgs))
300

    
301

    
302
def StopMaster(stop_daemons):
303
  """Deactivate this node as master.
304

305
  The function will always try to deactivate the IP address of the
306
  master. It will also stop the master daemons depending on the
307
  stop_daemons parameter.
308

309
  @type stop_daemons: boolean
310
  @param stop_daemons: whether to also stop the master daemons
311
      (ganeti-masterd and ganeti-rapi)
312
  @rtype: None
313

314
  """
315
  # TODO: log and report back to the caller the error failures; we
316
  # need to decide in which case we fail the RPC for this
317

    
318
  # GetMasterInfo will raise an exception if not able to return data
319
  master_netdev, master_ip, _ = GetMasterInfo()
320

    
321
  result = utils.RunCmd(["ip", "address", "del", "%s/32" % master_ip,
322
                         "dev", master_netdev])
323
  if result.failed:
324
    logging.error("Can't remove the master IP, error: %s", result.output)
325
    # but otherwise ignore the failure
326

    
327
  if stop_daemons:
328
    result = utils.RunCmd([constants.DAEMON_UTIL, "stop-master"])
329
    if result.failed:
330
      logging.error("Could not stop Ganeti master, command %s had exitcode %s"
331
                    " and error %s",
332
                    result.cmd, result.exit_code, result.output)
333

    
334

    
335
def AddNode(dsa, dsapub, rsa, rsapub, sshkey, sshpub):
336
  """Joins this node to the cluster.
337

338
  This does the following:
339
      - updates the hostkeys of the machine (rsa and dsa)
340
      - adds the ssh private key to the user
341
      - adds the ssh public key to the users' authorized_keys file
342

343
  @type dsa: str
344
  @param dsa: the DSA private key to write
345
  @type dsapub: str
346
  @param dsapub: the DSA public key to write
347
  @type rsa: str
348
  @param rsa: the RSA private key to write
349
  @type rsapub: str
350
  @param rsapub: the RSA public key to write
351
  @type sshkey: str
352
  @param sshkey: the SSH private key to write
353
  @type sshpub: str
354
  @param sshpub: the SSH public key to write
355
  @rtype: boolean
356
  @return: the success of the operation
357

358
  """
359
  sshd_keys =  [(constants.SSH_HOST_RSA_PRIV, rsa, 0600),
360
                (constants.SSH_HOST_RSA_PUB, rsapub, 0644),
361
                (constants.SSH_HOST_DSA_PRIV, dsa, 0600),
362
                (constants.SSH_HOST_DSA_PUB, dsapub, 0644)]
363
  for name, content, mode in sshd_keys:
364
    utils.WriteFile(name, data=content, mode=mode)
365

    
366
  try:
367
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS,
368
                                                    mkdir=True)
369
  except errors.OpExecError, err:
370
    _Fail("Error while processing user ssh files: %s", err, exc=True)
371

    
372
  for name, content in [(priv_key, sshkey), (pub_key, sshpub)]:
373
    utils.WriteFile(name, data=content, mode=0600)
374

    
375
  utils.AddAuthorizedKey(auth_keys, sshpub)
376

    
377
  result = utils.RunCmd([constants.DAEMON_UTIL, "reload-ssh-keys"])
378
  if result.failed:
379
    _Fail("Unable to reload SSH keys (command %r, exit code %s, output %r)",
380
          result.cmd, result.exit_code, result.output)
381

    
382

    
383
def LeaveCluster(modify_ssh_setup):
384
  """Cleans up and remove the current node.
385

386
  This function cleans up and prepares the current node to be removed
387
  from the cluster.
388

389
  If processing is successful, then it raises an
390
  L{errors.QuitGanetiException} which is used as a special case to
391
  shutdown the node daemon.
392

393
  @param modify_ssh_setup: boolean
394

395
  """
396
  _CleanDirectory(constants.DATA_DIR)
397
  _CleanDirectory(constants.CRYPTO_KEYS_DIR)
398
  JobQueuePurge()
399

    
400
  if modify_ssh_setup:
401
    try:
402
      priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
403

    
404
      utils.RemoveAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
405

    
406
      utils.RemoveFile(priv_key)
407
      utils.RemoveFile(pub_key)
408
    except errors.OpExecError:
409
      logging.exception("Error while processing ssh files")
410

    
411
  try:
412
    utils.RemoveFile(constants.CONFD_HMAC_KEY)
413
    utils.RemoveFile(constants.RAPI_CERT_FILE)
414
    utils.RemoveFile(constants.NODED_CERT_FILE)
415
  except: # pylint: disable-msg=W0702
416
    logging.exception("Error while removing cluster secrets")
417

    
418
  result = utils.RunCmd([constants.DAEMON_UTIL, "stop", constants.CONFD])
419
  if result.failed:
420
    logging.error("Command %s failed with exitcode %s and error %s",
421
                  result.cmd, result.exit_code, result.output)
422

    
423
  # Raise a custom exception (handled in ganeti-noded)
424
  raise errors.QuitGanetiException(True, 'Shutdown scheduled')
425

    
426

    
427
def GetNodeInfo(vgname, hypervisor_type):
428
  """Gives back a hash with different information about the node.
429

430
  @type vgname: C{string}
431
  @param vgname: the name of the volume group to ask for disk space information
432
  @type hypervisor_type: C{str}
433
  @param hypervisor_type: the name of the hypervisor to ask for
434
      memory information
435
  @rtype: C{dict}
436
  @return: dictionary with the following keys:
437
      - vg_size is the size of the configured volume group in MiB
438
      - vg_free is the free size of the volume group in MiB
439
      - memory_dom0 is the memory allocated for domain0 in MiB
440
      - memory_free is the currently available (free) ram in MiB
441
      - memory_total is the total number of ram in MiB
442

443
  """
444
  outputarray = {}
445
  vginfo = _GetVGInfo(vgname)
446
  outputarray['vg_size'] = vginfo['vg_size']
447
  outputarray['vg_free'] = vginfo['vg_free']
448

    
449
  hyper = hypervisor.GetHypervisor(hypervisor_type)
450
  hyp_info = hyper.GetNodeInfo()
451
  if hyp_info is not None:
452
    outputarray.update(hyp_info)
453

    
454
  outputarray["bootid"] = utils.ReadFile(_BOOT_ID_PATH, size=128).rstrip("\n")
455

    
456
  return outputarray
457

    
458

    
459
def VerifyNode(what, cluster_name):
460
  """Verify the status of the local node.
461

462
  Based on the input L{what} parameter, various checks are done on the
463
  local node.
464

465
  If the I{filelist} key is present, this list of
466
  files is checksummed and the file/checksum pairs are returned.
467

468
  If the I{nodelist} key is present, we check that we have
469
  connectivity via ssh with the target nodes (and check the hostname
470
  report).
471

472
  If the I{node-net-test} key is present, we check that we have
473
  connectivity to the given nodes via both primary IP and, if
474
  applicable, secondary IPs.
475

476
  @type what: C{dict}
477
  @param what: a dictionary of things to check:
478
      - filelist: list of files for which to compute checksums
479
      - nodelist: list of nodes we should check ssh communication with
480
      - node-net-test: list of nodes we should check node daemon port
481
        connectivity with
482
      - hypervisor: list with hypervisors to run the verify for
483
  @rtype: dict
484
  @return: a dictionary with the same keys as the input dict, and
485
      values representing the result of the checks
486

487
  """
488
  result = {}
489

    
490
  if constants.NV_HYPERVISOR in what:
491
    result[constants.NV_HYPERVISOR] = tmp = {}
492
    for hv_name in what[constants.NV_HYPERVISOR]:
493
      try:
494
        val = hypervisor.GetHypervisor(hv_name).Verify()
495
      except errors.HypervisorError, err:
496
        val = "Error while checking hypervisor: %s" % str(err)
497
      tmp[hv_name] = val
498

    
499
  if constants.NV_FILELIST in what:
500
    result[constants.NV_FILELIST] = utils.FingerprintFiles(
501
      what[constants.NV_FILELIST])
502

    
503
  if constants.NV_NODELIST in what:
504
    result[constants.NV_NODELIST] = tmp = {}
505
    random.shuffle(what[constants.NV_NODELIST])
506
    for node in what[constants.NV_NODELIST]:
507
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
508
      if not success:
509
        tmp[node] = message
510

    
511
  if constants.NV_NODENETTEST in what:
512
    result[constants.NV_NODENETTEST] = tmp = {}
513
    my_name = utils.HostInfo().name
514
    my_pip = my_sip = None
515
    for name, pip, sip in what[constants.NV_NODENETTEST]:
516
      if name == my_name:
517
        my_pip = pip
518
        my_sip = sip
519
        break
520
    if not my_pip:
521
      tmp[my_name] = ("Can't find my own primary/secondary IP"
522
                      " in the node list")
523
    else:
524
      port = utils.GetDaemonPort(constants.NODED)
525
      for name, pip, sip in what[constants.NV_NODENETTEST]:
526
        fail = []
527
        if not utils.TcpPing(pip, port, source=my_pip):
528
          fail.append("primary")
529
        if sip != pip:
530
          if not utils.TcpPing(sip, port, source=my_sip):
531
            fail.append("secondary")
532
        if fail:
533
          tmp[name] = ("failure using the %s interface(s)" %
534
                       " and ".join(fail))
535

    
536
  if constants.NV_LVLIST in what:
537
    try:
538
      val = GetVolumeList(what[constants.NV_LVLIST])
539
    except RPCFail, err:
540
      val = str(err)
541
    result[constants.NV_LVLIST] = val
542

    
543
  if constants.NV_INSTANCELIST in what:
544
    # GetInstanceList can fail
545
    try:
546
      val = GetInstanceList(what[constants.NV_INSTANCELIST])
547
    except RPCFail, err:
548
      val = str(err)
549
    result[constants.NV_INSTANCELIST] = val
550

    
551
  if constants.NV_VGLIST in what:
552
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
553

    
554
  if constants.NV_PVLIST in what:
555
    result[constants.NV_PVLIST] = \
556
      bdev.LogicalVolume.GetPVInfo(what[constants.NV_PVLIST],
557
                                   filter_allocatable=False)
558

    
559
  if constants.NV_VERSION in what:
560
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
561
                                    constants.RELEASE_VERSION)
562

    
563
  if constants.NV_HVINFO in what:
564
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
565
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
566

    
567
  if constants.NV_DRBDLIST in what:
568
    try:
569
      used_minors = bdev.DRBD8.GetUsedDevs().keys()
570
    except errors.BlockDeviceError, err:
571
      logging.warning("Can't get used minors list", exc_info=True)
572
      used_minors = str(err)
573
    result[constants.NV_DRBDLIST] = used_minors
574

    
575
  if constants.NV_NODESETUP in what:
576
    result[constants.NV_NODESETUP] = tmpr = []
577
    if not os.path.isdir("/sys/block") or not os.path.isdir("/sys/class/net"):
578
      tmpr.append("The sysfs filesytem doesn't seem to be mounted"
579
                  " under /sys, missing required directories /sys/block"
580
                  " and /sys/class/net")
581
    if (not os.path.isdir("/proc/sys") or
582
        not os.path.isfile("/proc/sysrq-trigger")):
583
      tmpr.append("The procfs filesystem doesn't seem to be mounted"
584
                  " under /proc, missing required directory /proc/sys and"
585
                  " the file /proc/sysrq-trigger")
586

    
587
  if constants.NV_TIME in what:
588
    result[constants.NV_TIME] = utils.SplitTime(time.time())
589

    
590
  return result
591

    
592

    
593
def GetVolumeList(vg_name):
594
  """Compute list of logical volumes and their size.
595

596
  @type vg_name: str
597
  @param vg_name: the volume group whose LVs we should list
598
  @rtype: dict
599
  @return:
600
      dictionary of all partions (key) with value being a tuple of
601
      their size (in MiB), inactive and online status::
602

603
        {'test1': ('20.06', True, True)}
604

605
      in case of errors, a string is returned with the error
606
      details.
607

608
  """
609
  lvs = {}
610
  sep = '|'
611
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
612
                         "--separator=%s" % sep,
613
                         "-olv_name,lv_size,lv_attr", vg_name])
614
  if result.failed:
615
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
616

    
617
  valid_line_re = re.compile("^ *([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
618
  for line in result.stdout.splitlines():
619
    line = line.strip()
620
    match = valid_line_re.match(line)
621
    if not match:
622
      logging.error("Invalid line returned from lvs output: '%s'", line)
623
      continue
624
    name, size, attr = match.groups()
625
    inactive = attr[4] == '-'
626
    online = attr[5] == 'o'
627
    virtual = attr[0] == 'v'
628
    if virtual:
629
      # we don't want to report such volumes as existing, since they
630
      # don't really hold data
631
      continue
632
    lvs[name] = (size, inactive, online)
633

    
634
  return lvs
635

    
636

    
637
def ListVolumeGroups():
638
  """List the volume groups and their size.
639

640
  @rtype: dict
641
  @return: dictionary with keys volume name and values the
642
      size of the volume
643

644
  """
645
  return utils.ListVolumeGroups()
646

    
647

    
648
def NodeVolumes():
649
  """List all volumes on this node.
650

651
  @rtype: list
652
  @return:
653
    A list of dictionaries, each having four keys:
654
      - name: the logical volume name,
655
      - size: the size of the logical volume
656
      - dev: the physical device on which the LV lives
657
      - vg: the volume group to which it belongs
658

659
    In case of errors, we return an empty list and log the
660
    error.
661

662
    Note that since a logical volume can live on multiple physical
663
    volumes, the resulting list might include a logical volume
664
    multiple times.
665

666
  """
667
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
668
                         "--separator=|",
669
                         "--options=lv_name,lv_size,devices,vg_name"])
670
  if result.failed:
671
    _Fail("Failed to list logical volumes, lvs output: %s",
672
          result.output)
673

    
674
  def parse_dev(dev):
675
    return dev.split('(')[0]
676

    
677
  def handle_dev(dev):
678
    return [parse_dev(x) for x in dev.split(",")]
679

    
680
  def map_line(line):
681
    line = [v.strip() for v in line]
682
    return [{'name': line[0], 'size': line[1],
683
             'dev': dev, 'vg': line[3]} for dev in handle_dev(line[2])]
684

    
685
  all_devs = []
686
  for line in result.stdout.splitlines():
687
    if line.count('|') >= 3:
688
      all_devs.extend(map_line(line.split('|')))
689
    else:
690
      logging.warning("Strange line in the output from lvs: '%s'", line)
691
  return all_devs
692

    
693

    
694
def BridgesExist(bridges_list):
695
  """Check if a list of bridges exist on the current node.
696

697
  @rtype: boolean
698
  @return: C{True} if all of them exist, C{False} otherwise
699

700
  """
701
  missing = []
702
  for bridge in bridges_list:
703
    if not utils.BridgeExists(bridge):
704
      missing.append(bridge)
705

    
706
  if missing:
707
    _Fail("Missing bridges %s", utils.CommaJoin(missing))
708

    
709

    
710
def GetInstanceList(hypervisor_list):
711
  """Provides a list of instances.
712

713
  @type hypervisor_list: list
714
  @param hypervisor_list: the list of hypervisors to query information
715

716
  @rtype: list
717
  @return: a list of all running instances on the current node
718
    - instance1.example.com
719
    - instance2.example.com
720

721
  """
722
  results = []
723
  for hname in hypervisor_list:
724
    try:
725
      names = hypervisor.GetHypervisor(hname).ListInstances()
726
      results.extend(names)
727
    except errors.HypervisorError, err:
728
      _Fail("Error enumerating instances (hypervisor %s): %s",
729
            hname, err, exc=True)
730

    
731
  return results
732

    
733

    
734
def GetInstanceInfo(instance, hname):
735
  """Gives back the information about an instance as a dictionary.
736

737
  @type instance: string
738
  @param instance: the instance name
739
  @type hname: string
740
  @param hname: the hypervisor type of the instance
741

742
  @rtype: dict
743
  @return: dictionary with the following keys:
744
      - memory: memory size of instance (int)
745
      - state: xen state of instance (string)
746
      - time: cpu time of instance (float)
747

748
  """
749
  output = {}
750

    
751
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
752
  if iinfo is not None:
753
    output['memory'] = iinfo[2]
754
    output['state'] = iinfo[4]
755
    output['time'] = iinfo[5]
756

    
757
  return output
758

    
759

    
760
def GetInstanceMigratable(instance):
761
  """Gives whether an instance can be migrated.
762

763
  @type instance: L{objects.Instance}
764
  @param instance: object representing the instance to be checked.
765

766
  @rtype: tuple
767
  @return: tuple of (result, description) where:
768
      - result: whether the instance can be migrated or not
769
      - description: a description of the issue, if relevant
770

771
  """
772
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
773
  iname = instance.name
774
  if iname not in hyper.ListInstances():
775
    _Fail("Instance %s is not running", iname)
776

    
777
  for idx in range(len(instance.disks)):
778
    link_name = _GetBlockDevSymlinkPath(iname, idx)
779
    if not os.path.islink(link_name):
780
      _Fail("Instance %s was not restarted since ganeti 1.2.5", iname)
781

    
782

    
783
def GetAllInstancesInfo(hypervisor_list):
784
  """Gather data about all instances.
785

786
  This is the equivalent of L{GetInstanceInfo}, except that it
787
  computes data for all instances at once, thus being faster if one
788
  needs data about more than one instance.
789

790
  @type hypervisor_list: list
791
  @param hypervisor_list: list of hypervisors to query for instance data
792

793
  @rtype: dict
794
  @return: dictionary of instance: data, with data having the following keys:
795
      - memory: memory size of instance (int)
796
      - state: xen state of instance (string)
797
      - time: cpu time of instance (float)
798
      - vcpus: the number of vcpus
799

800
  """
801
  output = {}
802

    
803
  for hname in hypervisor_list:
804
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
805
    if iinfo:
806
      for name, _, memory, vcpus, state, times in iinfo:
807
        value = {
808
          'memory': memory,
809
          'vcpus': vcpus,
810
          'state': state,
811
          'time': times,
812
          }
813
        if name in output:
814
          # we only check static parameters, like memory and vcpus,
815
          # and not state and time which can change between the
816
          # invocations of the different hypervisors
817
          for key in 'memory', 'vcpus':
818
            if value[key] != output[name][key]:
819
              _Fail("Instance %s is running twice"
820
                    " with different parameters", name)
821
        output[name] = value
822

    
823
  return output
824

    
825

    
826
def _InstanceLogName(kind, os_name, instance):
827
  """Compute the OS log filename for a given instance and operation.
828

829
  The instance name and os name are passed in as strings since not all
830
  operations have these as part of an instance object.
831

832
  @type kind: string
833
  @param kind: the operation type (e.g. add, import, etc.)
834
  @type os_name: string
835
  @param os_name: the os name
836
  @type instance: string
837
  @param instance: the name of the instance being imported/added/etc.
838

839
  """
840
  # TODO: Use tempfile.mkstemp to create unique filename
841
  base = ("%s-%s-%s-%s.log" %
842
          (kind, os_name, instance, utils.TimestampForFilename()))
843
  return utils.PathJoin(constants.LOG_OS_DIR, base)
844

    
845

    
846
def InstanceOsAdd(instance, reinstall, debug):
847
  """Add an OS to an instance.
848

849
  @type instance: L{objects.Instance}
850
  @param instance: Instance whose OS is to be installed
851
  @type reinstall: boolean
852
  @param reinstall: whether this is an instance reinstall
853
  @type debug: integer
854
  @param debug: debug level, passed to the OS scripts
855
  @rtype: None
856

857
  """
858
  inst_os = OSFromDisk(instance.os)
859

    
860
  create_env = OSEnvironment(instance, inst_os, debug)
861
  if reinstall:
862
    create_env['INSTANCE_REINSTALL'] = "1"
863

    
864
  logfile = _InstanceLogName("add", instance.os, instance.name)
865

    
866
  result = utils.RunCmd([inst_os.create_script], env=create_env,
867
                        cwd=inst_os.path, output=logfile,)
868
  if result.failed:
869
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
870
                  " output: %s", result.cmd, result.fail_reason, logfile,
871
                  result.output)
872
    lines = [utils.SafeEncode(val)
873
             for val in utils.TailFile(logfile, lines=20)]
874
    _Fail("OS create script failed (%s), last lines in the"
875
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
876

    
877

    
878
def RunRenameInstance(instance, old_name, debug):
879
  """Run the OS rename script for an instance.
880

881
  @type instance: L{objects.Instance}
882
  @param instance: Instance whose OS is to be installed
883
  @type old_name: string
884
  @param old_name: previous instance name
885
  @type debug: integer
886
  @param debug: debug level, passed to the OS scripts
887
  @rtype: boolean
888
  @return: the success of the operation
889

890
  """
891
  inst_os = OSFromDisk(instance.os)
892

    
893
  rename_env = OSEnvironment(instance, inst_os, debug)
894
  rename_env['OLD_INSTANCE_NAME'] = old_name
895

    
896
  logfile = _InstanceLogName("rename", instance.os,
897
                             "%s-%s" % (old_name, instance.name))
898

    
899
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
900
                        cwd=inst_os.path, output=logfile)
901

    
902
  if result.failed:
903
    logging.error("os create command '%s' returned error: %s output: %s",
904
                  result.cmd, result.fail_reason, result.output)
905
    lines = [utils.SafeEncode(val)
906
             for val in utils.TailFile(logfile, lines=20)]
907
    _Fail("OS rename script failed (%s), last lines in the"
908
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
909

    
910

    
911
def _GetVGInfo(vg_name):
912
  """Get information about the volume group.
913

914
  @type vg_name: str
915
  @param vg_name: the volume group which we query
916
  @rtype: dict
917
  @return:
918
    A dictionary with the following keys:
919
      - C{vg_size} is the total size of the volume group in MiB
920
      - C{vg_free} is the free size of the volume group in MiB
921
      - C{pv_count} are the number of physical disks in that VG
922

923
    If an error occurs during gathering of data, we return the same dict
924
    with keys all set to None.
925

926
  """
927
  retdic = dict.fromkeys(["vg_size", "vg_free", "pv_count"])
928

    
929
  retval = utils.RunCmd(["vgs", "-ovg_size,vg_free,pv_count", "--noheadings",
930
                         "--nosuffix", "--units=m", "--separator=:", vg_name])
931

    
932
  if retval.failed:
933
    logging.error("volume group %s not present", vg_name)
934
    return retdic
935
  valarr = retval.stdout.strip().rstrip(':').split(':')
936
  if len(valarr) == 3:
937
    try:
938
      retdic = {
939
        "vg_size": int(round(float(valarr[0]), 0)),
940
        "vg_free": int(round(float(valarr[1]), 0)),
941
        "pv_count": int(valarr[2]),
942
        }
943
    except (TypeError, ValueError), err:
944
      logging.exception("Fail to parse vgs output: %s", err)
945
  else:
946
    logging.error("vgs output has the wrong number of fields (expected"
947
                  " three): %s", str(valarr))
948
  return retdic
949

    
950

    
951
def _GetBlockDevSymlinkPath(instance_name, idx):
952
  return utils.PathJoin(constants.DISK_LINKS_DIR,
953
                        "%s:%d" % (instance_name, idx))
954

    
955

    
956
def _SymlinkBlockDev(instance_name, device_path, idx):
957
  """Set up symlinks to a instance's block device.
958

959
  This is an auxiliary function run when an instance is start (on the primary
960
  node) or when an instance is migrated (on the target node).
961

962

963
  @param instance_name: the name of the target instance
964
  @param device_path: path of the physical block device, on the node
965
  @param idx: the disk index
966
  @return: absolute path to the disk's symlink
967

968
  """
969
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
970
  try:
971
    os.symlink(device_path, link_name)
972
  except OSError, err:
973
    if err.errno == errno.EEXIST:
974
      if (not os.path.islink(link_name) or
975
          os.readlink(link_name) != device_path):
976
        os.remove(link_name)
977
        os.symlink(device_path, link_name)
978
    else:
979
      raise
980

    
981
  return link_name
982

    
983

    
984
def _RemoveBlockDevLinks(instance_name, disks):
985
  """Remove the block device symlinks belonging to the given instance.
986

987
  """
988
  for idx, _ in enumerate(disks):
989
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
990
    if os.path.islink(link_name):
991
      try:
992
        os.remove(link_name)
993
      except OSError:
994
        logging.exception("Can't remove symlink '%s'", link_name)
995

    
996

    
997
def _GatherAndLinkBlockDevs(instance):
998
  """Set up an instance's block device(s).
999

1000
  This is run on the primary node at instance startup. The block
1001
  devices must be already assembled.
1002

1003
  @type instance: L{objects.Instance}
1004
  @param instance: the instance whose disks we shoul assemble
1005
  @rtype: list
1006
  @return: list of (disk_object, device_path)
1007

1008
  """
1009
  block_devices = []
1010
  for idx, disk in enumerate(instance.disks):
1011
    device = _RecursiveFindBD(disk)
1012
    if device is None:
1013
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
1014
                                    str(disk))
1015
    device.Open()
1016
    try:
1017
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
1018
    except OSError, e:
1019
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
1020
                                    e.strerror)
1021

    
1022
    block_devices.append((disk, link_name))
1023

    
1024
  return block_devices
1025

    
1026

    
1027
def StartInstance(instance):
1028
  """Start an instance.
1029

1030
  @type instance: L{objects.Instance}
1031
  @param instance: the instance object
1032
  @rtype: None
1033

1034
  """
1035
  running_instances = GetInstanceList([instance.hypervisor])
1036

    
1037
  if instance.name in running_instances:
1038
    logging.info("Instance %s already running, not starting", instance.name)
1039
    return
1040

    
1041
  try:
1042
    block_devices = _GatherAndLinkBlockDevs(instance)
1043
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
1044
    hyper.StartInstance(instance, block_devices)
1045
  except errors.BlockDeviceError, err:
1046
    _Fail("Block device error: %s", err, exc=True)
1047
  except errors.HypervisorError, err:
1048
    _RemoveBlockDevLinks(instance.name, instance.disks)
1049
    _Fail("Hypervisor error: %s", err, exc=True)
1050

    
1051

    
1052
def InstanceShutdown(instance, timeout):
1053
  """Shut an instance down.
1054

1055
  @note: this functions uses polling with a hardcoded timeout.
1056

1057
  @type instance: L{objects.Instance}
1058
  @param instance: the instance object
1059
  @type timeout: integer
1060
  @param timeout: maximum timeout for soft shutdown
1061
  @rtype: None
1062

1063
  """
1064
  hv_name = instance.hypervisor
1065
  hyper = hypervisor.GetHypervisor(hv_name)
1066
  iname = instance.name
1067

    
1068
  if instance.name not in hyper.ListInstances():
1069
    logging.info("Instance %s not running, doing nothing", iname)
1070
    return
1071

    
1072
  class _TryShutdown:
1073
    def __init__(self):
1074
      self.tried_once = False
1075

    
1076
    def __call__(self):
1077
      if iname not in hyper.ListInstances():
1078
        return
1079

    
1080
      try:
1081
        hyper.StopInstance(instance, retry=self.tried_once)
1082
      except errors.HypervisorError, err:
1083
        if iname not in hyper.ListInstances():
1084
          # if the instance is no longer existing, consider this a
1085
          # success and go to cleanup
1086
          return
1087

    
1088
        _Fail("Failed to stop instance %s: %s", iname, err)
1089

    
1090
      self.tried_once = True
1091

    
1092
      raise utils.RetryAgain()
1093

    
1094
  try:
1095
    utils.Retry(_TryShutdown(), 5, timeout)
1096
  except utils.RetryTimeout:
1097
    # the shutdown did not succeed
1098
    logging.error("Shutdown of '%s' unsuccessful, forcing", iname)
1099

    
1100
    try:
1101
      hyper.StopInstance(instance, force=True)
1102
    except errors.HypervisorError, err:
1103
      if iname in hyper.ListInstances():
1104
        # only raise an error if the instance still exists, otherwise
1105
        # the error could simply be "instance ... unknown"!
1106
        _Fail("Failed to force stop instance %s: %s", iname, err)
1107

    
1108
    time.sleep(1)
1109

    
1110
    if iname in hyper.ListInstances():
1111
      _Fail("Could not shutdown instance %s even by destroy", iname)
1112

    
1113
  try:
1114
    hyper.CleanupInstance(instance.name)
1115
  except errors.HypervisorError, err:
1116
    logging.warning("Failed to execute post-shutdown cleanup step: %s", err)
1117

    
1118
  _RemoveBlockDevLinks(iname, instance.disks)
1119

    
1120

    
1121
def InstanceReboot(instance, reboot_type, shutdown_timeout):
1122
  """Reboot an instance.
1123

1124
  @type instance: L{objects.Instance}
1125
  @param instance: the instance object to reboot
1126
  @type reboot_type: str
1127
  @param reboot_type: the type of reboot, one the following
1128
    constants:
1129
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1130
        instance OS, do not recreate the VM
1131
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1132
        restart the VM (at the hypervisor level)
1133
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1134
        not accepted here, since that mode is handled differently, in
1135
        cmdlib, and translates into full stop and start of the
1136
        instance (instead of a call_instance_reboot RPC)
1137
  @type shutdown_timeout: integer
1138
  @param shutdown_timeout: maximum timeout for soft shutdown
1139
  @rtype: None
1140

1141
  """
1142
  running_instances = GetInstanceList([instance.hypervisor])
1143

    
1144
  if instance.name not in running_instances:
1145
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1146

    
1147
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1148
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1149
    try:
1150
      hyper.RebootInstance(instance)
1151
    except errors.HypervisorError, err:
1152
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1153
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1154
    try:
1155
      InstanceShutdown(instance, shutdown_timeout)
1156
      return StartInstance(instance)
1157
    except errors.HypervisorError, err:
1158
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1159
  else:
1160
    _Fail("Invalid reboot_type received: %s", reboot_type)
1161

    
1162

    
1163
def MigrationInfo(instance):
1164
  """Gather information about an instance to be migrated.
1165

1166
  @type instance: L{objects.Instance}
1167
  @param instance: the instance definition
1168

1169
  """
1170
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1171
  try:
1172
    info = hyper.MigrationInfo(instance)
1173
  except errors.HypervisorError, err:
1174
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1175
  return info
1176

    
1177

    
1178
def AcceptInstance(instance, info, target):
1179
  """Prepare the node to accept an instance.
1180

1181
  @type instance: L{objects.Instance}
1182
  @param instance: the instance definition
1183
  @type info: string/data (opaque)
1184
  @param info: migration information, from the source node
1185
  @type target: string
1186
  @param target: target host (usually ip), on this node
1187

1188
  """
1189
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1190
  try:
1191
    hyper.AcceptInstance(instance, info, target)
1192
  except errors.HypervisorError, err:
1193
    _Fail("Failed to accept instance: %s", err, exc=True)
1194

    
1195

    
1196
def FinalizeMigration(instance, info, success):
1197
  """Finalize any preparation to accept an instance.
1198

1199
  @type instance: L{objects.Instance}
1200
  @param instance: the instance definition
1201
  @type info: string/data (opaque)
1202
  @param info: migration information, from the source node
1203
  @type success: boolean
1204
  @param success: whether the migration was a success or a failure
1205

1206
  """
1207
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1208
  try:
1209
    hyper.FinalizeMigration(instance, info, success)
1210
  except errors.HypervisorError, err:
1211
    _Fail("Failed to finalize migration: %s", err, exc=True)
1212

    
1213

    
1214
def MigrateInstance(instance, target, live):
1215
  """Migrates an instance to another node.
1216

1217
  @type instance: L{objects.Instance}
1218
  @param instance: the instance definition
1219
  @type target: string
1220
  @param target: the target node name
1221
  @type live: boolean
1222
  @param live: whether the migration should be done live or not (the
1223
      interpretation of this parameter is left to the hypervisor)
1224
  @rtype: tuple
1225
  @return: a tuple of (success, msg) where:
1226
      - succes is a boolean denoting the success/failure of the operation
1227
      - msg is a string with details in case of failure
1228

1229
  """
1230
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1231

    
1232
  try:
1233
    hyper.MigrateInstance(instance, target, live)
1234
  except errors.HypervisorError, err:
1235
    _Fail("Failed to migrate instance: %s", err, exc=True)
1236

    
1237

    
1238
def BlockdevCreate(disk, size, owner, on_primary, info):
1239
  """Creates a block device for an instance.
1240

1241
  @type disk: L{objects.Disk}
1242
  @param disk: the object describing the disk we should create
1243
  @type size: int
1244
  @param size: the size of the physical underlying device, in MiB
1245
  @type owner: str
1246
  @param owner: the name of the instance for which disk is created,
1247
      used for device cache data
1248
  @type on_primary: boolean
1249
  @param on_primary:  indicates if it is the primary node or not
1250
  @type info: string
1251
  @param info: string that will be sent to the physical device
1252
      creation, used for example to set (LVM) tags on LVs
1253

1254
  @return: the new unique_id of the device (this can sometime be
1255
      computed only after creation), or None. On secondary nodes,
1256
      it's not required to return anything.
1257

1258
  """
1259
  # TODO: remove the obsolete 'size' argument
1260
  # pylint: disable-msg=W0613
1261
  clist = []
1262
  if disk.children:
1263
    for child in disk.children:
1264
      try:
1265
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1266
      except errors.BlockDeviceError, err:
1267
        _Fail("Can't assemble device %s: %s", child, err)
1268
      if on_primary or disk.AssembleOnSecondary():
1269
        # we need the children open in case the device itself has to
1270
        # be assembled
1271
        try:
1272
          # pylint: disable-msg=E1103
1273
          crdev.Open()
1274
        except errors.BlockDeviceError, err:
1275
          _Fail("Can't make child '%s' read-write: %s", child, err)
1276
      clist.append(crdev)
1277

    
1278
  try:
1279
    device = bdev.Create(disk.dev_type, disk.physical_id, clist, disk.size)
1280
  except errors.BlockDeviceError, err:
1281
    _Fail("Can't create block device: %s", err)
1282

    
1283
  if on_primary or disk.AssembleOnSecondary():
1284
    try:
1285
      device.Assemble()
1286
    except errors.BlockDeviceError, err:
1287
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1288
    device.SetSyncSpeed(constants.SYNC_SPEED)
1289
    if on_primary or disk.OpenOnSecondary():
1290
      try:
1291
        device.Open(force=True)
1292
      except errors.BlockDeviceError, err:
1293
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1294
    DevCacheManager.UpdateCache(device.dev_path, owner,
1295
                                on_primary, disk.iv_name)
1296

    
1297
  device.SetInfo(info)
1298

    
1299
  return device.unique_id
1300

    
1301

    
1302
def BlockdevRemove(disk):
1303
  """Remove a block device.
1304

1305
  @note: This is intended to be called recursively.
1306

1307
  @type disk: L{objects.Disk}
1308
  @param disk: the disk object we should remove
1309
  @rtype: boolean
1310
  @return: the success of the operation
1311

1312
  """
1313
  msgs = []
1314
  try:
1315
    rdev = _RecursiveFindBD(disk)
1316
  except errors.BlockDeviceError, err:
1317
    # probably can't attach
1318
    logging.info("Can't attach to device %s in remove", disk)
1319
    rdev = None
1320
  if rdev is not None:
1321
    r_path = rdev.dev_path
1322
    try:
1323
      rdev.Remove()
1324
    except errors.BlockDeviceError, err:
1325
      msgs.append(str(err))
1326
    if not msgs:
1327
      DevCacheManager.RemoveCache(r_path)
1328

    
1329
  if disk.children:
1330
    for child in disk.children:
1331
      try:
1332
        BlockdevRemove(child)
1333
      except RPCFail, err:
1334
        msgs.append(str(err))
1335

    
1336
  if msgs:
1337
    _Fail("; ".join(msgs))
1338

    
1339

    
1340
def _RecursiveAssembleBD(disk, owner, as_primary):
1341
  """Activate a block device for an instance.
1342

1343
  This is run on the primary and secondary nodes for an instance.
1344

1345
  @note: this function is called recursively.
1346

1347
  @type disk: L{objects.Disk}
1348
  @param disk: the disk we try to assemble
1349
  @type owner: str
1350
  @param owner: the name of the instance which owns the disk
1351
  @type as_primary: boolean
1352
  @param as_primary: if we should make the block device
1353
      read/write
1354

1355
  @return: the assembled device or None (in case no device
1356
      was assembled)
1357
  @raise errors.BlockDeviceError: in case there is an error
1358
      during the activation of the children or the device
1359
      itself
1360

1361
  """
1362
  children = []
1363
  if disk.children:
1364
    mcn = disk.ChildrenNeeded()
1365
    if mcn == -1:
1366
      mcn = 0 # max number of Nones allowed
1367
    else:
1368
      mcn = len(disk.children) - mcn # max number of Nones
1369
    for chld_disk in disk.children:
1370
      try:
1371
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1372
      except errors.BlockDeviceError, err:
1373
        if children.count(None) >= mcn:
1374
          raise
1375
        cdev = None
1376
        logging.error("Error in child activation (but continuing): %s",
1377
                      str(err))
1378
      children.append(cdev)
1379

    
1380
  if as_primary or disk.AssembleOnSecondary():
1381
    r_dev = bdev.Assemble(disk.dev_type, disk.physical_id, children, disk.size)
1382
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
1383
    result = r_dev
1384
    if as_primary or disk.OpenOnSecondary():
1385
      r_dev.Open()
1386
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1387
                                as_primary, disk.iv_name)
1388

    
1389
  else:
1390
    result = True
1391
  return result
1392

    
1393

    
1394
def BlockdevAssemble(disk, owner, as_primary):
1395
  """Activate a block device for an instance.
1396

1397
  This is a wrapper over _RecursiveAssembleBD.
1398

1399
  @rtype: str or boolean
1400
  @return: a C{/dev/...} path for primary nodes, and
1401
      C{True} for secondary nodes
1402

1403
  """
1404
  try:
1405
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1406
    if isinstance(result, bdev.BlockDev):
1407
      # pylint: disable-msg=E1103
1408
      result = result.dev_path
1409
  except errors.BlockDeviceError, err:
1410
    _Fail("Error while assembling disk: %s", err, exc=True)
1411

    
1412
  return result
1413

    
1414

    
1415
def BlockdevShutdown(disk):
1416
  """Shut down a block device.
1417

1418
  First, if the device is assembled (Attach() is successful), then
1419
  the device is shutdown. Then the children of the device are
1420
  shutdown.
1421

1422
  This function is called recursively. Note that we don't cache the
1423
  children or such, as oppossed to assemble, shutdown of different
1424
  devices doesn't require that the upper device was active.
1425

1426
  @type disk: L{objects.Disk}
1427
  @param disk: the description of the disk we should
1428
      shutdown
1429
  @rtype: None
1430

1431
  """
1432
  msgs = []
1433
  r_dev = _RecursiveFindBD(disk)
1434
  if r_dev is not None:
1435
    r_path = r_dev.dev_path
1436
    try:
1437
      r_dev.Shutdown()
1438
      DevCacheManager.RemoveCache(r_path)
1439
    except errors.BlockDeviceError, err:
1440
      msgs.append(str(err))
1441

    
1442
  if disk.children:
1443
    for child in disk.children:
1444
      try:
1445
        BlockdevShutdown(child)
1446
      except RPCFail, err:
1447
        msgs.append(str(err))
1448

    
1449
  if msgs:
1450
    _Fail("; ".join(msgs))
1451

    
1452

    
1453
def BlockdevAddchildren(parent_cdev, new_cdevs):
1454
  """Extend a mirrored block device.
1455

1456
  @type parent_cdev: L{objects.Disk}
1457
  @param parent_cdev: the disk to which we should add children
1458
  @type new_cdevs: list of L{objects.Disk}
1459
  @param new_cdevs: the list of children which we should add
1460
  @rtype: None
1461

1462
  """
1463
  parent_bdev = _RecursiveFindBD(parent_cdev)
1464
  if parent_bdev is None:
1465
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
1466
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
1467
  if new_bdevs.count(None) > 0:
1468
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
1469
  parent_bdev.AddChildren(new_bdevs)
1470

    
1471

    
1472
def BlockdevRemovechildren(parent_cdev, new_cdevs):
1473
  """Shrink a mirrored block device.
1474

1475
  @type parent_cdev: L{objects.Disk}
1476
  @param parent_cdev: the disk from which we should remove children
1477
  @type new_cdevs: list of L{objects.Disk}
1478
  @param new_cdevs: the list of children which we should remove
1479
  @rtype: None
1480

1481
  """
1482
  parent_bdev = _RecursiveFindBD(parent_cdev)
1483
  if parent_bdev is None:
1484
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
1485
  devs = []
1486
  for disk in new_cdevs:
1487
    rpath = disk.StaticDevPath()
1488
    if rpath is None:
1489
      bd = _RecursiveFindBD(disk)
1490
      if bd is None:
1491
        _Fail("Can't find device %s while removing children", disk)
1492
      else:
1493
        devs.append(bd.dev_path)
1494
    else:
1495
      if not utils.IsNormAbsPath(rpath):
1496
        _Fail("Strange path returned from StaticDevPath: '%s'", rpath)
1497
      devs.append(rpath)
1498
  parent_bdev.RemoveChildren(devs)
1499

    
1500

    
1501
def BlockdevGetmirrorstatus(disks):
1502
  """Get the mirroring status of a list of devices.
1503

1504
  @type disks: list of L{objects.Disk}
1505
  @param disks: the list of disks which we should query
1506
  @rtype: disk
1507
  @return:
1508
      a list of (mirror_done, estimated_time) tuples, which
1509
      are the result of L{bdev.BlockDev.CombinedSyncStatus}
1510
  @raise errors.BlockDeviceError: if any of the disks cannot be
1511
      found
1512

1513
  """
1514
  stats = []
1515
  for dsk in disks:
1516
    rbd = _RecursiveFindBD(dsk)
1517
    if rbd is None:
1518
      _Fail("Can't find device %s", dsk)
1519

    
1520
    stats.append(rbd.CombinedSyncStatus())
1521

    
1522
  return stats
1523

    
1524

    
1525
def _RecursiveFindBD(disk):
1526
  """Check if a device is activated.
1527

1528
  If so, return information about the real device.
1529

1530
  @type disk: L{objects.Disk}
1531
  @param disk: the disk object we need to find
1532

1533
  @return: None if the device can't be found,
1534
      otherwise the device instance
1535

1536
  """
1537
  children = []
1538
  if disk.children:
1539
    for chdisk in disk.children:
1540
      children.append(_RecursiveFindBD(chdisk))
1541

    
1542
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children, disk.size)
1543

    
1544

    
1545
def _OpenRealBD(disk):
1546
  """Opens the underlying block device of a disk.
1547

1548
  @type disk: L{objects.Disk}
1549
  @param disk: the disk object we want to open
1550

1551
  """
1552
  real_disk = _RecursiveFindBD(disk)
1553
  if real_disk is None:
1554
    _Fail("Block device '%s' is not set up", disk)
1555

    
1556
  real_disk.Open()
1557

    
1558
  return real_disk
1559

    
1560

    
1561
def BlockdevFind(disk):
1562
  """Check if a device is activated.
1563

1564
  If it is, return information about the real device.
1565

1566
  @type disk: L{objects.Disk}
1567
  @param disk: the disk to find
1568
  @rtype: None or objects.BlockDevStatus
1569
  @return: None if the disk cannot be found, otherwise a the current
1570
           information
1571

1572
  """
1573
  try:
1574
    rbd = _RecursiveFindBD(disk)
1575
  except errors.BlockDeviceError, err:
1576
    _Fail("Failed to find device: %s", err, exc=True)
1577

    
1578
  if rbd is None:
1579
    return None
1580

    
1581
  return rbd.GetSyncStatus()
1582

    
1583

    
1584
def BlockdevGetsize(disks):
1585
  """Computes the size of the given disks.
1586

1587
  If a disk is not found, returns None instead.
1588

1589
  @type disks: list of L{objects.Disk}
1590
  @param disks: the list of disk to compute the size for
1591
  @rtype: list
1592
  @return: list with elements None if the disk cannot be found,
1593
      otherwise the size
1594

1595
  """
1596
  result = []
1597
  for cf in disks:
1598
    try:
1599
      rbd = _RecursiveFindBD(cf)
1600
    except errors.BlockDeviceError:
1601
      result.append(None)
1602
      continue
1603
    if rbd is None:
1604
      result.append(None)
1605
    else:
1606
      result.append(rbd.GetActualSize())
1607
  return result
1608

    
1609

    
1610
def BlockdevExport(disk, dest_node, dest_path, cluster_name):
1611
  """Export a block device to a remote node.
1612

1613
  @type disk: L{objects.Disk}
1614
  @param disk: the description of the disk to export
1615
  @type dest_node: str
1616
  @param dest_node: the destination node to export to
1617
  @type dest_path: str
1618
  @param dest_path: the destination path on the target node
1619
  @type cluster_name: str
1620
  @param cluster_name: the cluster name, needed for SSH hostalias
1621
  @rtype: None
1622

1623
  """
1624
  real_disk = _OpenRealBD(disk)
1625

    
1626
  # the block size on the read dd is 1MiB to match our units
1627
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
1628
                               "dd if=%s bs=1048576 count=%s",
1629
                               real_disk.dev_path, str(disk.size))
1630

    
1631
  # we set here a smaller block size as, due to ssh buffering, more
1632
  # than 64-128k will mostly ignored; we use nocreat to fail if the
1633
  # device is not already there or we pass a wrong path; we use
1634
  # notrunc to no attempt truncate on an LV device; we use oflag=dsync
1635
  # to not buffer too much memory; this means that at best, we flush
1636
  # every 64k, which will not be very fast
1637
  destcmd = utils.BuildShellCmd("dd of=%s conv=nocreat,notrunc bs=65536"
1638
                                " oflag=dsync", dest_path)
1639

    
1640
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1641
                                                   constants.GANETI_RUNAS,
1642
                                                   destcmd)
1643

    
1644
  # all commands have been checked, so we're safe to combine them
1645
  command = '|'.join([expcmd, utils.ShellQuoteArgs(remotecmd)])
1646

    
1647
  result = utils.RunCmd(["bash", "-c", command])
1648

    
1649
  if result.failed:
1650
    _Fail("Disk copy command '%s' returned error: %s"
1651
          " output: %s", command, result.fail_reason, result.output)
1652

    
1653

    
1654
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1655
  """Write a file to the filesystem.
1656

1657
  This allows the master to overwrite(!) a file. It will only perform
1658
  the operation if the file belongs to a list of configuration files.
1659

1660
  @type file_name: str
1661
  @param file_name: the target file name
1662
  @type data: str
1663
  @param data: the new contents of the file
1664
  @type mode: int
1665
  @param mode: the mode to give the file (can be None)
1666
  @type uid: int
1667
  @param uid: the owner of the file (can be -1 for default)
1668
  @type gid: int
1669
  @param gid: the group of the file (can be -1 for default)
1670
  @type atime: float
1671
  @param atime: the atime to set on the file (can be None)
1672
  @type mtime: float
1673
  @param mtime: the mtime to set on the file (can be None)
1674
  @rtype: None
1675

1676
  """
1677
  if not os.path.isabs(file_name):
1678
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1679

    
1680
  if file_name not in _ALLOWED_UPLOAD_FILES:
1681
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1682
          file_name)
1683

    
1684
  raw_data = _Decompress(data)
1685

    
1686
  utils.WriteFile(file_name, data=raw_data, mode=mode, uid=uid, gid=gid,
1687
                  atime=atime, mtime=mtime)
1688

    
1689

    
1690
def WriteSsconfFiles(values):
1691
  """Update all ssconf files.
1692

1693
  Wrapper around the SimpleStore.WriteFiles.
1694

1695
  """
1696
  ssconf.SimpleStore().WriteFiles(values)
1697

    
1698

    
1699
def _ErrnoOrStr(err):
1700
  """Format an EnvironmentError exception.
1701

1702
  If the L{err} argument has an errno attribute, it will be looked up
1703
  and converted into a textual C{E...} description. Otherwise the
1704
  string representation of the error will be returned.
1705

1706
  @type err: L{EnvironmentError}
1707
  @param err: the exception to format
1708

1709
  """
1710
  if hasattr(err, 'errno'):
1711
    detail = errno.errorcode[err.errno]
1712
  else:
1713
    detail = str(err)
1714
  return detail
1715

    
1716

    
1717
def _OSOndiskAPIVersion(os_dir):
1718
  """Compute and return the API version of a given OS.
1719

1720
  This function will try to read the API version of the OS residing in
1721
  the 'os_dir' directory.
1722

1723
  @type os_dir: str
1724
  @param os_dir: the directory in which we should look for the OS
1725
  @rtype: tuple
1726
  @return: tuple (status, data) with status denoting the validity and
1727
      data holding either the vaid versions or an error message
1728

1729
  """
1730
  api_file = utils.PathJoin(os_dir, constants.OS_API_FILE)
1731

    
1732
  try:
1733
    st = os.stat(api_file)
1734
  except EnvironmentError, err:
1735
    return False, ("Required file '%s' not found under path %s: %s" %
1736
                   (constants.OS_API_FILE, os_dir, _ErrnoOrStr(err)))
1737

    
1738
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1739
    return False, ("File '%s' in %s is not a regular file" %
1740
                   (constants.OS_API_FILE, os_dir))
1741

    
1742
  try:
1743
    api_versions = utils.ReadFile(api_file).splitlines()
1744
  except EnvironmentError, err:
1745
    return False, ("Error while reading the API version file at %s: %s" %
1746
                   (api_file, _ErrnoOrStr(err)))
1747

    
1748
  try:
1749
    api_versions = [int(version.strip()) for version in api_versions]
1750
  except (TypeError, ValueError), err:
1751
    return False, ("API version(s) can't be converted to integer: %s" %
1752
                   str(err))
1753

    
1754
  return True, api_versions
1755

    
1756

    
1757
def DiagnoseOS(top_dirs=None):
1758
  """Compute the validity for all OSes.
1759

1760
  @type top_dirs: list
1761
  @param top_dirs: the list of directories in which to
1762
      search (if not given defaults to
1763
      L{constants.OS_SEARCH_PATH})
1764
  @rtype: list of L{objects.OS}
1765
  @return: a list of tuples (name, path, status, diagnose, variants)
1766
      for all (potential) OSes under all search paths, where:
1767
          - name is the (potential) OS name
1768
          - path is the full path to the OS
1769
          - status True/False is the validity of the OS
1770
          - diagnose is the error message for an invalid OS, otherwise empty
1771
          - variants is a list of supported OS variants, if any
1772

1773
  """
1774
  if top_dirs is None:
1775
    top_dirs = constants.OS_SEARCH_PATH
1776

    
1777
  result = []
1778
  for dir_name in top_dirs:
1779
    if os.path.isdir(dir_name):
1780
      try:
1781
        f_names = utils.ListVisibleFiles(dir_name)
1782
      except EnvironmentError, err:
1783
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
1784
        break
1785
      for name in f_names:
1786
        os_path = utils.PathJoin(dir_name, name)
1787
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
1788
        if status:
1789
          diagnose = ""
1790
          variants = os_inst.supported_variants
1791
        else:
1792
          diagnose = os_inst
1793
          variants = []
1794
        result.append((name, os_path, status, diagnose, variants))
1795

    
1796
  return result
1797

    
1798

    
1799
def _TryOSFromDisk(name, base_dir=None):
1800
  """Create an OS instance from disk.
1801

1802
  This function will return an OS instance if the given name is a
1803
  valid OS name.
1804

1805
  @type base_dir: string
1806
  @keyword base_dir: Base directory containing OS installations.
1807
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1808
  @rtype: tuple
1809
  @return: success and either the OS instance if we find a valid one,
1810
      or error message
1811

1812
  """
1813
  if base_dir is None:
1814
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1815
  else:
1816
    os_dir = utils.FindFile(name, [base_dir], os.path.isdir)
1817

    
1818
  if os_dir is None:
1819
    return False, "Directory for OS %s not found in search path" % name
1820

    
1821
  status, api_versions = _OSOndiskAPIVersion(os_dir)
1822
  if not status:
1823
    # push the error up
1824
    return status, api_versions
1825

    
1826
  if not constants.OS_API_VERSIONS.intersection(api_versions):
1827
    return False, ("API version mismatch for path '%s': found %s, want %s." %
1828
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
1829

    
1830
  # OS Files dictionary, we will populate it with the absolute path names
1831
  os_files = dict.fromkeys(constants.OS_SCRIPTS)
1832

    
1833
  if max(api_versions) >= constants.OS_API_V15:
1834
    os_files[constants.OS_VARIANTS_FILE] = ''
1835

    
1836
  for filename in os_files:
1837
    os_files[filename] = utils.PathJoin(os_dir, filename)
1838

    
1839
    try:
1840
      st = os.stat(os_files[filename])
1841
    except EnvironmentError, err:
1842
      return False, ("File '%s' under path '%s' is missing (%s)" %
1843
                     (filename, os_dir, _ErrnoOrStr(err)))
1844

    
1845
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1846
      return False, ("File '%s' under path '%s' is not a regular file" %
1847
                     (filename, os_dir))
1848

    
1849
    if filename in constants.OS_SCRIPTS:
1850
      if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1851
        return False, ("File '%s' under path '%s' is not executable" %
1852
                       (filename, os_dir))
1853

    
1854
  variants = None
1855
  if constants.OS_VARIANTS_FILE in os_files:
1856
    variants_file = os_files[constants.OS_VARIANTS_FILE]
1857
    try:
1858
      variants = utils.ReadFile(variants_file).splitlines()
1859
    except EnvironmentError, err:
1860
      return False, ("Error while reading the OS variants file at %s: %s" %
1861
                     (variants_file, _ErrnoOrStr(err)))
1862
    if not variants:
1863
      return False, ("No supported os variant found")
1864

    
1865
  os_obj = objects.OS(name=name, path=os_dir,
1866
                      create_script=os_files[constants.OS_SCRIPT_CREATE],
1867
                      export_script=os_files[constants.OS_SCRIPT_EXPORT],
1868
                      import_script=os_files[constants.OS_SCRIPT_IMPORT],
1869
                      rename_script=os_files[constants.OS_SCRIPT_RENAME],
1870
                      supported_variants=variants,
1871
                      api_versions=api_versions)
1872
  return True, os_obj
1873

    
1874

    
1875
def OSFromDisk(name, base_dir=None):
1876
  """Create an OS instance from disk.
1877

1878
  This function will return an OS instance if the given name is a
1879
  valid OS name. Otherwise, it will raise an appropriate
1880
  L{RPCFail} exception, detailing why this is not a valid OS.
1881

1882
  This is just a wrapper over L{_TryOSFromDisk}, which doesn't raise
1883
  an exception but returns true/false status data.
1884

1885
  @type base_dir: string
1886
  @keyword base_dir: Base directory containing OS installations.
1887
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1888
  @rtype: L{objects.OS}
1889
  @return: the OS instance if we find a valid one
1890
  @raise RPCFail: if we don't find a valid OS
1891

1892
  """
1893
  name_only = name.split("+", 1)[0]
1894
  status, payload = _TryOSFromDisk(name_only, base_dir)
1895

    
1896
  if not status:
1897
    _Fail(payload)
1898

    
1899
  return payload
1900

    
1901

    
1902
def OSEnvironment(instance, inst_os, debug=0):
1903
  """Calculate the environment for an os script.
1904

1905
  @type instance: L{objects.Instance}
1906
  @param instance: target instance for the os script run
1907
  @type inst_os: L{objects.OS}
1908
  @param inst_os: operating system for which the environment is being built
1909
  @type debug: integer
1910
  @param debug: debug level (0 or 1, for OS Api 10)
1911
  @rtype: dict
1912
  @return: dict of environment variables
1913
  @raise errors.BlockDeviceError: if the block device
1914
      cannot be found
1915

1916
  """
1917
  result = {}
1918
  api_version = \
1919
    max(constants.OS_API_VERSIONS.intersection(inst_os.api_versions))
1920
  result['OS_API_VERSION'] = '%d' % api_version
1921
  result['INSTANCE_NAME'] = instance.name
1922
  result['INSTANCE_OS'] = instance.os
1923
  result['HYPERVISOR'] = instance.hypervisor
1924
  result['DISK_COUNT'] = '%d' % len(instance.disks)
1925
  result['NIC_COUNT'] = '%d' % len(instance.nics)
1926
  result['DEBUG_LEVEL'] = '%d' % debug
1927
  if api_version >= constants.OS_API_V15:
1928
    try:
1929
      variant = instance.os.split('+', 1)[1]
1930
    except IndexError:
1931
      variant = inst_os.supported_variants[0]
1932
    result['OS_VARIANT'] = variant
1933
  for idx, disk in enumerate(instance.disks):
1934
    real_disk = _OpenRealBD(disk)
1935
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
1936
    result['DISK_%d_ACCESS' % idx] = disk.mode
1937
    if constants.HV_DISK_TYPE in instance.hvparams:
1938
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
1939
        instance.hvparams[constants.HV_DISK_TYPE]
1940
    if disk.dev_type in constants.LDS_BLOCK:
1941
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
1942
    elif disk.dev_type == constants.LD_FILE:
1943
      result['DISK_%d_BACKEND_TYPE' % idx] = \
1944
        'file:%s' % disk.physical_id[0]
1945
  for idx, nic in enumerate(instance.nics):
1946
    result['NIC_%d_MAC' % idx] = nic.mac
1947
    if nic.ip:
1948
      result['NIC_%d_IP' % idx] = nic.ip
1949
    result['NIC_%d_MODE' % idx] = nic.nicparams[constants.NIC_MODE]
1950
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
1951
      result['NIC_%d_BRIDGE' % idx] = nic.nicparams[constants.NIC_LINK]
1952
    if nic.nicparams[constants.NIC_LINK]:
1953
      result['NIC_%d_LINK' % idx] = nic.nicparams[constants.NIC_LINK]
1954
    if constants.HV_NIC_TYPE in instance.hvparams:
1955
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
1956
        instance.hvparams[constants.HV_NIC_TYPE]
1957

    
1958
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
1959
    for key, value in source.items():
1960
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
1961

    
1962
  return result
1963

    
1964

    
1965
def BlockdevGrow(disk, amount):
1966
  """Grow a stack of block devices.
1967

1968
  This function is called recursively, with the childrens being the
1969
  first ones to resize.
1970

1971
  @type disk: L{objects.Disk}
1972
  @param disk: the disk to be grown
1973
  @rtype: (status, result)
1974
  @return: a tuple with the status of the operation
1975
      (True/False), and the errors message if status
1976
      is False
1977

1978
  """
1979
  r_dev = _RecursiveFindBD(disk)
1980
  if r_dev is None:
1981
    _Fail("Cannot find block device %s", disk)
1982

    
1983
  try:
1984
    r_dev.Grow(amount)
1985
  except errors.BlockDeviceError, err:
1986
    _Fail("Failed to grow block device: %s", err, exc=True)
1987

    
1988

    
1989
def BlockdevSnapshot(disk):
1990
  """Create a snapshot copy of a block device.
1991

1992
  This function is called recursively, and the snapshot is actually created
1993
  just for the leaf lvm backend device.
1994

1995
  @type disk: L{objects.Disk}
1996
  @param disk: the disk to be snapshotted
1997
  @rtype: string
1998
  @return: snapshot disk path
1999

2000
  """
2001
  if disk.dev_type == constants.LD_DRBD8:
2002
    if not disk.children:
2003
      _Fail("DRBD device '%s' without backing storage cannot be snapshotted",
2004
            disk.unique_id)
2005
    return BlockdevSnapshot(disk.children[0])
2006
  elif disk.dev_type == constants.LD_LV:
2007
    r_dev = _RecursiveFindBD(disk)
2008
    if r_dev is not None:
2009
      # FIXME: choose a saner value for the snapshot size
2010
      # let's stay on the safe side and ask for the full size, for now
2011
      return r_dev.Snapshot(disk.size)
2012
    else:
2013
      _Fail("Cannot find block device %s", disk)
2014
  else:
2015
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
2016
          disk.unique_id, disk.dev_type)
2017

    
2018

    
2019
def FinalizeExport(instance, snap_disks):
2020
  """Write out the export configuration information.
2021

2022
  @type instance: L{objects.Instance}
2023
  @param instance: the instance which we export, used for
2024
      saving configuration
2025
  @type snap_disks: list of L{objects.Disk}
2026
  @param snap_disks: list of snapshot block devices, which
2027
      will be used to get the actual name of the dump file
2028

2029
  @rtype: None
2030

2031
  """
2032
  destdir = utils.PathJoin(constants.EXPORT_DIR, instance.name + ".new")
2033
  finaldestdir = utils.PathJoin(constants.EXPORT_DIR, instance.name)
2034

    
2035
  config = objects.SerializableConfigParser()
2036

    
2037
  config.add_section(constants.INISECT_EXP)
2038
  config.set(constants.INISECT_EXP, 'version', '0')
2039
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
2040
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
2041
  config.set(constants.INISECT_EXP, 'os', instance.os)
2042
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
2043

    
2044
  config.add_section(constants.INISECT_INS)
2045
  config.set(constants.INISECT_INS, 'name', instance.name)
2046
  config.set(constants.INISECT_INS, 'memory', '%d' %
2047
             instance.beparams[constants.BE_MEMORY])
2048
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
2049
             instance.beparams[constants.BE_VCPUS])
2050
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
2051
  config.set(constants.INISECT_INS, 'hypervisor', instance.hypervisor)
2052

    
2053
  nic_total = 0
2054
  for nic_count, nic in enumerate(instance.nics):
2055
    nic_total += 1
2056
    config.set(constants.INISECT_INS, 'nic%d_mac' %
2057
               nic_count, '%s' % nic.mac)
2058
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
2059
    for param in constants.NICS_PARAMETER_TYPES:
2060
      config.set(constants.INISECT_INS, 'nic%d_%s' % (nic_count, param),
2061
                 '%s' % nic.nicparams.get(param, None))
2062
  # TODO: redundant: on load can read nics until it doesn't exist
2063
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_total)
2064

    
2065
  disk_total = 0
2066
  for disk_count, disk in enumerate(snap_disks):
2067
    if disk:
2068
      disk_total += 1
2069
      config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
2070
                 ('%s' % disk.iv_name))
2071
      config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
2072
                 ('%s' % disk.physical_id[1]))
2073
      config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
2074
                 ('%d' % disk.size))
2075

    
2076
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_total)
2077

    
2078
  # New-style hypervisor/backend parameters
2079

    
2080
  config.add_section(constants.INISECT_HYP)
2081
  for name, value in instance.hvparams.items():
2082
    if name not in constants.HVC_GLOBALS:
2083
      config.set(constants.INISECT_HYP, name, str(value))
2084

    
2085
  config.add_section(constants.INISECT_BEP)
2086
  for name, value in instance.beparams.items():
2087
    config.set(constants.INISECT_BEP, name, str(value))
2088

    
2089
  utils.WriteFile(utils.PathJoin(destdir, constants.EXPORT_CONF_FILE),
2090
                  data=config.Dumps())
2091
  shutil.rmtree(finaldestdir, ignore_errors=True)
2092
  shutil.move(destdir, finaldestdir)
2093

    
2094

    
2095
def ExportInfo(dest):
2096
  """Get export configuration information.
2097

2098
  @type dest: str
2099
  @param dest: directory containing the export
2100

2101
  @rtype: L{objects.SerializableConfigParser}
2102
  @return: a serializable config file containing the
2103
      export info
2104

2105
  """
2106
  cff = utils.PathJoin(dest, constants.EXPORT_CONF_FILE)
2107

    
2108
  config = objects.SerializableConfigParser()
2109
  config.read(cff)
2110

    
2111
  if (not config.has_section(constants.INISECT_EXP) or
2112
      not config.has_section(constants.INISECT_INS)):
2113
    _Fail("Export info file doesn't have the required fields")
2114

    
2115
  return config.Dumps()
2116

    
2117

    
2118
def ListExports():
2119
  """Return a list of exports currently available on this machine.
2120

2121
  @rtype: list
2122
  @return: list of the exports
2123

2124
  """
2125
  if os.path.isdir(constants.EXPORT_DIR):
2126
    return utils.ListVisibleFiles(constants.EXPORT_DIR)
2127
  else:
2128
    _Fail("No exports directory")
2129

    
2130

    
2131
def RemoveExport(export):
2132
  """Remove an existing export from the node.
2133

2134
  @type export: str
2135
  @param export: the name of the export to remove
2136
  @rtype: None
2137

2138
  """
2139
  target = utils.PathJoin(constants.EXPORT_DIR, export)
2140

    
2141
  try:
2142
    shutil.rmtree(target)
2143
  except EnvironmentError, err:
2144
    _Fail("Error while removing the export: %s", err, exc=True)
2145

    
2146

    
2147
def BlockdevRename(devlist):
2148
  """Rename a list of block devices.
2149

2150
  @type devlist: list of tuples
2151
  @param devlist: list of tuples of the form  (disk,
2152
      new_logical_id, new_physical_id); disk is an
2153
      L{objects.Disk} object describing the current disk,
2154
      and new logical_id/physical_id is the name we
2155
      rename it to
2156
  @rtype: boolean
2157
  @return: True if all renames succeeded, False otherwise
2158

2159
  """
2160
  msgs = []
2161
  result = True
2162
  for disk, unique_id in devlist:
2163
    dev = _RecursiveFindBD(disk)
2164
    if dev is None:
2165
      msgs.append("Can't find device %s in rename" % str(disk))
2166
      result = False
2167
      continue
2168
    try:
2169
      old_rpath = dev.dev_path
2170
      dev.Rename(unique_id)
2171
      new_rpath = dev.dev_path
2172
      if old_rpath != new_rpath:
2173
        DevCacheManager.RemoveCache(old_rpath)
2174
        # FIXME: we should add the new cache information here, like:
2175
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2176
        # but we don't have the owner here - maybe parse from existing
2177
        # cache? for now, we only lose lvm data when we rename, which
2178
        # is less critical than DRBD or MD
2179
    except errors.BlockDeviceError, err:
2180
      msgs.append("Can't rename device '%s' to '%s': %s" %
2181
                  (dev, unique_id, err))
2182
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2183
      result = False
2184
  if not result:
2185
    _Fail("; ".join(msgs))
2186

    
2187

    
2188
def _TransformFileStorageDir(file_storage_dir):
2189
  """Checks whether given file_storage_dir is valid.
2190

2191
  Checks wheter the given file_storage_dir is within the cluster-wide
2192
  default file_storage_dir stored in SimpleStore. Only paths under that
2193
  directory are allowed.
2194

2195
  @type file_storage_dir: str
2196
  @param file_storage_dir: the path to check
2197

2198
  @return: the normalized path if valid, None otherwise
2199

2200
  """
2201
  if not constants.ENABLE_FILE_STORAGE:
2202
    _Fail("File storage disabled at configure time")
2203
  cfg = _GetConfig()
2204
  file_storage_dir = os.path.normpath(file_storage_dir)
2205
  base_file_storage_dir = cfg.GetFileStorageDir()
2206
  if (os.path.commonprefix([file_storage_dir, base_file_storage_dir]) !=
2207
      base_file_storage_dir):
2208
    _Fail("File storage directory '%s' is not under base file"
2209
          " storage directory '%s'", file_storage_dir, base_file_storage_dir)
2210
  return file_storage_dir
2211

    
2212

    
2213
def CreateFileStorageDir(file_storage_dir):
2214
  """Create file storage directory.
2215

2216
  @type file_storage_dir: str
2217
  @param file_storage_dir: directory to create
2218

2219
  @rtype: tuple
2220
  @return: tuple with first element a boolean indicating wheter dir
2221
      creation was successful or not
2222

2223
  """
2224
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2225
  if os.path.exists(file_storage_dir):
2226
    if not os.path.isdir(file_storage_dir):
2227
      _Fail("Specified storage dir '%s' is not a directory",
2228
            file_storage_dir)
2229
  else:
2230
    try:
2231
      os.makedirs(file_storage_dir, 0750)
2232
    except OSError, err:
2233
      _Fail("Cannot create file storage directory '%s': %s",
2234
            file_storage_dir, err, exc=True)
2235

    
2236

    
2237
def RemoveFileStorageDir(file_storage_dir):
2238
  """Remove file storage directory.
2239

2240
  Remove it only if it's empty. If not log an error and return.
2241

2242
  @type file_storage_dir: str
2243
  @param file_storage_dir: the directory we should cleanup
2244
  @rtype: tuple (success,)
2245
  @return: tuple of one element, C{success}, denoting
2246
      whether the operation was successful
2247

2248
  """
2249
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2250
  if os.path.exists(file_storage_dir):
2251
    if not os.path.isdir(file_storage_dir):
2252
      _Fail("Specified Storage directory '%s' is not a directory",
2253
            file_storage_dir)
2254
    # deletes dir only if empty, otherwise we want to fail the rpc call
2255
    try:
2256
      os.rmdir(file_storage_dir)
2257
    except OSError, err:
2258
      _Fail("Cannot remove file storage directory '%s': %s",
2259
            file_storage_dir, err)
2260

    
2261

    
2262
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2263
  """Rename the file storage directory.
2264

2265
  @type old_file_storage_dir: str
2266
  @param old_file_storage_dir: the current path
2267
  @type new_file_storage_dir: str
2268
  @param new_file_storage_dir: the name we should rename to
2269
  @rtype: tuple (success,)
2270
  @return: tuple of one element, C{success}, denoting
2271
      whether the operation was successful
2272

2273
  """
2274
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2275
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2276
  if not os.path.exists(new_file_storage_dir):
2277
    if os.path.isdir(old_file_storage_dir):
2278
      try:
2279
        os.rename(old_file_storage_dir, new_file_storage_dir)
2280
      except OSError, err:
2281
        _Fail("Cannot rename '%s' to '%s': %s",
2282
              old_file_storage_dir, new_file_storage_dir, err)
2283
    else:
2284
      _Fail("Specified storage dir '%s' is not a directory",
2285
            old_file_storage_dir)
2286
  else:
2287
    if os.path.exists(old_file_storage_dir):
2288
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2289
            old_file_storage_dir, new_file_storage_dir)
2290

    
2291

    
2292
def _EnsureJobQueueFile(file_name):
2293
  """Checks whether the given filename is in the queue directory.
2294

2295
  @type file_name: str
2296
  @param file_name: the file name we should check
2297
  @rtype: None
2298
  @raises RPCFail: if the file is not valid
2299

2300
  """
2301
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2302
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2303

    
2304
  if not result:
2305
    _Fail("Passed job queue file '%s' does not belong to"
2306
          " the queue directory '%s'", file_name, queue_dir)
2307

    
2308

    
2309
def JobQueueUpdate(file_name, content):
2310
  """Updates a file in the queue directory.
2311

2312
  This is just a wrapper over L{utils.WriteFile}, with proper
2313
  checking.
2314

2315
  @type file_name: str
2316
  @param file_name: the job file name
2317
  @type content: str
2318
  @param content: the new job contents
2319
  @rtype: boolean
2320
  @return: the success of the operation
2321

2322
  """
2323
  _EnsureJobQueueFile(file_name)
2324

    
2325
  # Write and replace the file atomically
2326
  utils.WriteFile(file_name, data=_Decompress(content))
2327

    
2328

    
2329
def JobQueueRename(old, new):
2330
  """Renames a job queue file.
2331

2332
  This is just a wrapper over os.rename with proper checking.
2333

2334
  @type old: str
2335
  @param old: the old (actual) file name
2336
  @type new: str
2337
  @param new: the desired file name
2338
  @rtype: tuple
2339
  @return: the success of the operation and payload
2340

2341
  """
2342
  _EnsureJobQueueFile(old)
2343
  _EnsureJobQueueFile(new)
2344

    
2345
  utils.RenameFile(old, new, mkdir=True)
2346

    
2347

    
2348
def JobQueueSetDrainFlag(drain_flag):
2349
  """Set the drain flag for the queue.
2350

2351
  This will set or unset the queue drain flag.
2352

2353
  @type drain_flag: boolean
2354
  @param drain_flag: if True, will set the drain flag, otherwise reset it.
2355
  @rtype: truple
2356
  @return: always True, None
2357
  @warning: the function always returns True
2358

2359
  """
2360
  if drain_flag:
2361
    utils.WriteFile(constants.JOB_QUEUE_DRAIN_FILE, data="", close=True)
2362
  else:
2363
    utils.RemoveFile(constants.JOB_QUEUE_DRAIN_FILE)
2364

    
2365

    
2366
def BlockdevClose(instance_name, disks):
2367
  """Closes the given block devices.
2368

2369
  This means they will be switched to secondary mode (in case of
2370
  DRBD).
2371

2372
  @param instance_name: if the argument is not empty, the symlinks
2373
      of this instance will be removed
2374
  @type disks: list of L{objects.Disk}
2375
  @param disks: the list of disks to be closed
2376
  @rtype: tuple (success, message)
2377
  @return: a tuple of success and message, where success
2378
      indicates the succes of the operation, and message
2379
      which will contain the error details in case we
2380
      failed
2381

2382
  """
2383
  bdevs = []
2384
  for cf in disks:
2385
    rd = _RecursiveFindBD(cf)
2386
    if rd is None:
2387
      _Fail("Can't find device %s", cf)
2388
    bdevs.append(rd)
2389

    
2390
  msg = []
2391
  for rd in bdevs:
2392
    try:
2393
      rd.Close()
2394
    except errors.BlockDeviceError, err:
2395
      msg.append(str(err))
2396
  if msg:
2397
    _Fail("Can't make devices secondary: %s", ",".join(msg))
2398
  else:
2399
    if instance_name:
2400
      _RemoveBlockDevLinks(instance_name, disks)
2401

    
2402

    
2403
def ValidateHVParams(hvname, hvparams):
2404
  """Validates the given hypervisor parameters.
2405

2406
  @type hvname: string
2407
  @param hvname: the hypervisor name
2408
  @type hvparams: dict
2409
  @param hvparams: the hypervisor parameters to be validated
2410
  @rtype: None
2411

2412
  """
2413
  try:
2414
    hv_type = hypervisor.GetHypervisor(hvname)
2415
    hv_type.ValidateParameters(hvparams)
2416
  except errors.HypervisorError, err:
2417
    _Fail(str(err), log=False)
2418

    
2419

    
2420
def DemoteFromMC():
2421
  """Demotes the current node from master candidate role.
2422

2423
  """
2424
  # try to ensure we're not the master by mistake
2425
  master, myself = ssconf.GetMasterAndMyself()
2426
  if master == myself:
2427
    _Fail("ssconf status shows I'm the master node, will not demote")
2428

    
2429
  result = utils.RunCmd([constants.DAEMON_UTIL, "check", constants.MASTERD])
2430
  if not result.failed:
2431
    _Fail("The master daemon is running, will not demote")
2432

    
2433
  try:
2434
    if os.path.isfile(constants.CLUSTER_CONF_FILE):
2435
      utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2436
  except EnvironmentError, err:
2437
    if err.errno != errno.ENOENT:
2438
      _Fail("Error while backing up cluster file: %s", err, exc=True)
2439

    
2440
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2441

    
2442

    
2443
def _GetX509Filenames(cryptodir, name):
2444
  """Returns the full paths for the private key and certificate.
2445

2446
  """
2447
  return (utils.PathJoin(cryptodir, name),
2448
          utils.PathJoin(cryptodir, name, _X509_KEY_FILE),
2449
          utils.PathJoin(cryptodir, name, _X509_CERT_FILE))
2450

    
2451

    
2452
def CreateX509Certificate(validity, cryptodir=constants.CRYPTO_KEYS_DIR):
2453
  """Creates a new X509 certificate for SSL/TLS.
2454

2455
  @type validity: int
2456
  @param validity: Validity in seconds
2457
  @rtype: tuple; (string, string)
2458
  @return: Certificate name and public part
2459

2460
  """
2461
  (key_pem, cert_pem) = \
2462
    utils.GenerateSelfSignedX509Cert(utils.HostInfo.SysName(),
2463
                                     min(validity, _MAX_SSL_CERT_VALIDITY))
2464

    
2465
  cert_dir = tempfile.mkdtemp(dir=cryptodir,
2466
                              prefix="x509-%s-" % utils.TimestampForFilename())
2467
  try:
2468
    name = os.path.basename(cert_dir)
2469
    assert len(name) > 5
2470

    
2471
    (_, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
2472

    
2473
    utils.WriteFile(key_file, mode=0400, data=key_pem)
2474
    utils.WriteFile(cert_file, mode=0400, data=cert_pem)
2475

    
2476
    # Never return private key as it shouldn't leave the node
2477
    return (name, cert_pem)
2478
  except Exception:
2479
    shutil.rmtree(cert_dir, ignore_errors=True)
2480
    raise
2481

    
2482

    
2483
def RemoveX509Certificate(name, cryptodir=constants.CRYPTO_KEYS_DIR):
2484
  """Removes a X509 certificate.
2485

2486
  @type name: string
2487
  @param name: Certificate name
2488

2489
  """
2490
  (cert_dir, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
2491

    
2492
  utils.RemoveFile(key_file)
2493
  utils.RemoveFile(cert_file)
2494

    
2495
  try:
2496
    os.rmdir(cert_dir)
2497
  except EnvironmentError, err:
2498
    _Fail("Cannot remove certificate directory '%s': %s",
2499
          cert_dir, err)
2500

    
2501

    
2502
def _GetImportExportIoCommand(instance, mode, ieio, ieargs):
2503
  """Returns the command for the requested input/output.
2504

2505
  @type instance: L{objects.Instance}
2506
  @param instance: The instance object
2507
  @param mode: Import/export mode
2508
  @param ieio: Input/output type
2509
  @param ieargs: Input/output arguments
2510

2511
  """
2512
  assert mode in (constants.IEM_IMPORT, constants.IEM_EXPORT)
2513

    
2514
  env = None
2515
  prefix = None
2516
  suffix = None
2517

    
2518
  if ieio == constants.IEIO_FILE:
2519
    (filename, ) = ieargs
2520

    
2521
    if not utils.IsNormAbsPath(filename):
2522
      _Fail("Path '%s' is not normalized or absolute", filename)
2523

    
2524
    directory = os.path.normpath(os.path.dirname(filename))
2525

    
2526
    if (os.path.commonprefix([constants.EXPORT_DIR, directory]) !=
2527
        constants.EXPORT_DIR):
2528
      _Fail("File '%s' is not under exports directory '%s'",
2529
            filename, constants.EXPORT_DIR)
2530

    
2531
    # Create directory
2532
    utils.Makedirs(directory, mode=0750)
2533

    
2534
    quoted_filename = utils.ShellQuote(filename)
2535

    
2536
    if mode == constants.IEM_IMPORT:
2537
      suffix = "> %s" % quoted_filename
2538
    elif mode == constants.IEM_EXPORT:
2539
      suffix = "< %s" % quoted_filename
2540

    
2541
  elif ieio == constants.IEIO_RAW_DISK:
2542
    (disk, ) = ieargs
2543

    
2544
    real_disk = _OpenRealBD(disk)
2545

    
2546
    if mode == constants.IEM_IMPORT:
2547
      # we set here a smaller block size as, due to transport buffering, more
2548
      # than 64-128k will mostly ignored; we use nocreat to fail if the device
2549
      # is not already there or we pass a wrong path; we use notrunc to no
2550
      # attempt truncate on an LV device; we use oflag=dsync to not buffer too
2551
      # much memory; this means that at best, we flush every 64k, which will
2552
      # not be very fast
2553
      suffix = utils.BuildShellCmd(("| dd of=%s conv=nocreat,notrunc"
2554
                                    " bs=%s oflag=dsync"),
2555
                                    real_disk.dev_path,
2556
                                    str(64 * 1024))
2557

    
2558
    elif mode == constants.IEM_EXPORT:
2559
      # the block size on the read dd is 1MiB to match our units
2560
      prefix = utils.BuildShellCmd("dd if=%s bs=%s count=%s |",
2561
                                   real_disk.dev_path,
2562
                                   str(1024 * 1024), # 1 MB
2563
                                   str(disk.size))
2564

    
2565
  elif ieio == constants.IEIO_SCRIPT:
2566
    (disk, disk_index, ) = ieargs
2567

    
2568
    assert isinstance(disk_index, (int, long))
2569

    
2570
    real_disk = _OpenRealBD(disk)
2571

    
2572
    inst_os = OSFromDisk(instance.os)
2573
    env = OSEnvironment(instance, inst_os)
2574

    
2575
    if mode == constants.IEM_IMPORT:
2576
      env["IMPORT_DEVICE"] = env["DISK_%d_PATH" % disk_index]
2577
      env["IMPORT_INDEX"] = str(disk_index)
2578
      script = inst_os.import_script
2579

    
2580
    elif mode == constants.IEM_EXPORT:
2581
      env["EXPORT_DEVICE"] = real_disk.dev_path
2582
      env["EXPORT_INDEX"] = str(disk_index)
2583
      script = inst_os.export_script
2584

    
2585
    # TODO: Pass special environment only to script
2586
    script_cmd = utils.BuildShellCmd("( cd %s && %s; )", inst_os.path, script)
2587

    
2588
    if mode == constants.IEM_IMPORT:
2589
      suffix = "| %s" % script_cmd
2590

    
2591
    elif mode == constants.IEM_EXPORT:
2592
      prefix = "%s |" % script_cmd
2593

    
2594
  else:
2595
    _Fail("Invalid %s I/O mode %r", mode, ieio)
2596

    
2597
  return (env, prefix, suffix)
2598

    
2599

    
2600
def _CreateImportExportStatusDir(prefix):
2601
  """Creates status directory for import/export.
2602

2603
  """
2604
  return tempfile.mkdtemp(dir=constants.IMPORT_EXPORT_DIR,
2605
                          prefix=("%s-%s-" %
2606
                                  (prefix, utils.TimestampForFilename())))
2607

    
2608

    
2609
def StartImportExportDaemon(mode, key_name, ca, host, port, instance,
2610
                            ieio, ieioargs):
2611
  """Starts an import or export daemon.
2612

2613
  @param mode: Import/output mode
2614
  @type key_name: string
2615
  @param key_name: RSA key name (None to use cluster certificate)
2616
  @type ca: string:
2617
  @param ca: Remote CA in PEM format (None to use cluster certificate)
2618
  @type host: string
2619
  @param host: Remote host for export (None for import)
2620
  @type port: int
2621
  @param port: Remote port for export (None for import)
2622
  @type instance: L{objects.Instance}
2623
  @param instance: Instance object
2624
  @param ieio: Input/output type
2625
  @param ieioargs: Input/output arguments
2626

2627
  """
2628
  if mode == constants.IEM_IMPORT:
2629
    prefix = "import"
2630

    
2631
    if not (host is None and port is None):
2632
      _Fail("Can not specify host or port on import")
2633

    
2634
  elif mode == constants.IEM_EXPORT:
2635
    prefix = "export"
2636

    
2637
    if host is None or port is None:
2638
      _Fail("Host and port must be specified for an export")
2639

    
2640
  else:
2641
    _Fail("Invalid mode %r", mode)
2642

    
2643
  if (key_name is None) ^ (ca is None):
2644
    _Fail("Cluster certificate can only be used for both key and CA")
2645

    
2646
  (cmd_env, cmd_prefix, cmd_suffix) = \
2647
    _GetImportExportIoCommand(instance, mode, ieio, ieioargs)
2648

    
2649
  if key_name is None:
2650
    # Use server.pem
2651
    key_path = constants.NODED_CERT_FILE
2652
    cert_path = constants.NODED_CERT_FILE
2653
    assert ca is None
2654
  else:
2655
    (_, key_path, cert_path) = _GetX509Filenames(constants.CRYPTO_KEYS_DIR,
2656
                                                 key_name)
2657
    assert ca is not None
2658

    
2659
  for i in [key_path, cert_path]:
2660
    if not os.path.exists(i):
2661
      _Fail("File '%s' does not exist" % i)
2662

    
2663
  status_dir = _CreateImportExportStatusDir(prefix)
2664
  try:
2665
    status_file = utils.PathJoin(status_dir, _IES_STATUS_FILE)
2666
    pid_file = utils.PathJoin(status_dir, _IES_PID_FILE)
2667
    ca_file = utils.PathJoin(status_dir, _IES_CA_FILE)
2668

    
2669
    if ca is None:
2670
      # Use server.pem
2671
      ca = utils.ReadFile(constants.NODED_CERT_FILE)
2672

    
2673
    utils.WriteFile(ca_file, data=ca, mode=0400)
2674

    
2675
    cmd = [
2676
      constants.IMPORT_EXPORT_DAEMON,
2677
      status_file, mode,
2678
      "--key=%s" % key_path,
2679
      "--cert=%s" % cert_path,
2680
      "--ca=%s" % ca_file,
2681
      ]
2682

    
2683
    if host:
2684
      cmd.append("--host=%s" % host)
2685

    
2686
    if port:
2687
      cmd.append("--port=%s" % port)
2688

    
2689
    if cmd_prefix:
2690
      cmd.append("--cmd-prefix=%s" % cmd_prefix)
2691

    
2692
    if cmd_suffix:
2693
      cmd.append("--cmd-suffix=%s" % cmd_suffix)
2694

    
2695
    logfile = _InstanceLogName(prefix, instance.os, instance.name)
2696

    
2697
    # TODO: Once _InstanceLogName uses tempfile.mkstemp, StartDaemon has
2698
    # support for receiving a file descriptor for output
2699
    utils.StartDaemon(cmd, env=cmd_env, pidfile=pid_file,
2700
                      output=logfile)
2701

    
2702
    # The import/export name is simply the status directory name
2703
    return os.path.basename(status_dir)
2704

    
2705
  except Exception:
2706
    shutil.rmtree(status_dir, ignore_errors=True)
2707
    raise
2708

    
2709

    
2710
def GetImportExportStatus(names):
2711
  """Returns import/export daemon status.
2712

2713
  @type names: sequence
2714
  @param names: List of names
2715
  @rtype: List of dicts
2716
  @return: Returns a list of the state of each named import/export or None if a
2717
           status couldn't be read
2718

2719
  """
2720
  result = []
2721

    
2722
  for name in names:
2723
    status_file = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name,
2724
                                 _IES_STATUS_FILE)
2725

    
2726
    try:
2727
      data = utils.ReadFile(status_file)
2728
    except EnvironmentError, err:
2729
      if err.errno != errno.ENOENT:
2730
        raise
2731
      data = None
2732

    
2733
    if not data:
2734
      result.append(None)
2735
      continue
2736

    
2737
    result.append(serializer.LoadJson(data))
2738

    
2739
  return result
2740

    
2741

    
2742
def AbortImportExport(name):
2743
  """Sends SIGTERM to a running import/export daemon.
2744

2745
  """
2746
  logging.info("Abort import/export %s", name)
2747

    
2748
  status_dir = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name)
2749
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
2750

    
2751
  if pid:
2752
    logging.info("Import/export %s is running with PID %s, sending SIGTERM",
2753
                 name, pid)
2754
    os.kill(pid, signal.SIGTERM)
2755

    
2756

    
2757
def CleanupImportExport(name):
2758
  """Cleanup after an import or export.
2759

2760
  If the import/export daemon is still running it's killed. Afterwards the
2761
  whole status directory is removed.
2762

2763
  """
2764
  logging.info("Finalizing import/export %s", name)
2765

    
2766
  status_dir = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name)
2767

    
2768
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
2769

    
2770
  if pid:
2771
    logging.info("Import/export %s is still running with PID %s",
2772
                 name, pid)
2773
    utils.KillProcess(pid, waitpid=False)
2774

    
2775
  shutil.rmtree(status_dir, ignore_errors=True)
2776

    
2777

    
2778
def _FindDisks(nodes_ip, disks):
2779
  """Sets the physical ID on disks and returns the block devices.
2780

2781
  """
2782
  # set the correct physical ID
2783
  my_name = utils.HostInfo().name
2784
  for cf in disks:
2785
    cf.SetPhysicalID(my_name, nodes_ip)
2786

    
2787
  bdevs = []
2788

    
2789
  for cf in disks:
2790
    rd = _RecursiveFindBD(cf)
2791
    if rd is None:
2792
      _Fail("Can't find device %s", cf)
2793
    bdevs.append(rd)
2794
  return bdevs
2795

    
2796

    
2797
def DrbdDisconnectNet(nodes_ip, disks):
2798
  """Disconnects the network on a list of drbd devices.
2799

2800
  """
2801
  bdevs = _FindDisks(nodes_ip, disks)
2802

    
2803
  # disconnect disks
2804
  for rd in bdevs:
2805
    try:
2806
      rd.DisconnectNet()
2807
    except errors.BlockDeviceError, err:
2808
      _Fail("Can't change network configuration to standalone mode: %s",
2809
            err, exc=True)
2810

    
2811

    
2812
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
2813
  """Attaches the network on a list of drbd devices.
2814

2815
  """
2816
  bdevs = _FindDisks(nodes_ip, disks)
2817

    
2818
  if multimaster:
2819
    for idx, rd in enumerate(bdevs):
2820
      try:
2821
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
2822
      except EnvironmentError, err:
2823
        _Fail("Can't create symlink: %s", err)
2824
  # reconnect disks, switch to new master configuration and if
2825
  # needed primary mode
2826
  for rd in bdevs:
2827
    try:
2828
      rd.AttachNet(multimaster)
2829
    except errors.BlockDeviceError, err:
2830
      _Fail("Can't change network configuration: %s", err)
2831

    
2832
  # wait until the disks are connected; we need to retry the re-attach
2833
  # if the device becomes standalone, as this might happen if the one
2834
  # node disconnects and reconnects in a different mode before the
2835
  # other node reconnects; in this case, one or both of the nodes will
2836
  # decide it has wrong configuration and switch to standalone
2837

    
2838
  def _Attach():
2839
    all_connected = True
2840

    
2841
    for rd in bdevs:
2842
      stats = rd.GetProcStatus()
2843

    
2844
      all_connected = (all_connected and
2845
                       (stats.is_connected or stats.is_in_resync))
2846

    
2847
      if stats.is_standalone:
2848
        # peer had different config info and this node became
2849
        # standalone, even though this should not happen with the
2850
        # new staged way of changing disk configs
2851
        try:
2852
          rd.AttachNet(multimaster)
2853
        except errors.BlockDeviceError, err:
2854
          _Fail("Can't change network configuration: %s", err)
2855

    
2856
    if not all_connected:
2857
      raise utils.RetryAgain()
2858

    
2859
  try:
2860
    # Start with a delay of 100 miliseconds and go up to 5 seconds
2861
    utils.Retry(_Attach, (0.1, 1.5, 5.0), 2 * 60)
2862
  except utils.RetryTimeout:
2863
    _Fail("Timeout in disk reconnecting")
2864

    
2865
  if multimaster:
2866
    # change to primary mode
2867
    for rd in bdevs:
2868
      try:
2869
        rd.Open()
2870
      except errors.BlockDeviceError, err:
2871
        _Fail("Can't change to primary mode: %s", err)
2872

    
2873

    
2874
def DrbdWaitSync(nodes_ip, disks):
2875
  """Wait until DRBDs have synchronized.
2876

2877
  """
2878
  def _helper(rd):
2879
    stats = rd.GetProcStatus()
2880
    if not (stats.is_connected or stats.is_in_resync):
2881
      raise utils.RetryAgain()
2882
    return stats
2883

    
2884
  bdevs = _FindDisks(nodes_ip, disks)
2885

    
2886
  min_resync = 100
2887
  alldone = True
2888
  for rd in bdevs:
2889
    try:
2890
      # poll each second for 15 seconds
2891
      stats = utils.Retry(_helper, 1, 15, args=[rd])
2892
    except utils.RetryTimeout:
2893
      stats = rd.GetProcStatus()
2894
      # last check
2895
      if not (stats.is_connected or stats.is_in_resync):
2896
        _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
2897
    alldone = alldone and (not stats.is_in_resync)
2898
    if stats.sync_percent is not None:
2899
      min_resync = min(min_resync, stats.sync_percent)
2900

    
2901
  return (alldone, min_resync)
2902

    
2903

    
2904
def PowercycleNode(hypervisor_type):
2905
  """Hard-powercycle the node.
2906

2907
  Because we need to return first, and schedule the powercycle in the
2908
  background, we won't be able to report failures nicely.
2909

2910
  """
2911
  hyper = hypervisor.GetHypervisor(hypervisor_type)
2912
  try:
2913
    pid = os.fork()
2914
  except OSError:
2915
    # if we can't fork, we'll pretend that we're in the child process
2916
    pid = 0
2917
  if pid > 0:
2918
    return "Reboot scheduled in 5 seconds"
2919
  time.sleep(5)
2920
  hyper.PowercycleNode()
2921

    
2922

    
2923
class HooksRunner(object):
2924
  """Hook runner.
2925

2926
  This class is instantiated on the node side (ganeti-noded) and not
2927
  on the master side.
2928

2929
  """
2930
  def __init__(self, hooks_base_dir=None):
2931
    """Constructor for hooks runner.
2932

2933
    @type hooks_base_dir: str or None
2934
    @param hooks_base_dir: if not None, this overrides the
2935
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
2936

2937
    """
2938
    if hooks_base_dir is None:
2939
      hooks_base_dir = constants.HOOKS_BASE_DIR
2940
    # yeah, _BASE_DIR is not valid for attributes, we use it like a
2941
    # constant
2942
    self._BASE_DIR = hooks_base_dir # pylint: disable-msg=C0103
2943

    
2944
  def RunHooks(self, hpath, phase, env):
2945
    """Run the scripts in the hooks directory.
2946

2947
    @type hpath: str
2948
    @param hpath: the path to the hooks directory which
2949
        holds the scripts
2950
    @type phase: str
2951
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
2952
        L{constants.HOOKS_PHASE_POST}
2953
    @type env: dict
2954
    @param env: dictionary with the environment for the hook
2955
    @rtype: list
2956
    @return: list of 3-element tuples:
2957
      - script path
2958
      - script result, either L{constants.HKR_SUCCESS} or
2959
        L{constants.HKR_FAIL}
2960
      - output of the script
2961

2962
    @raise errors.ProgrammerError: for invalid input
2963
        parameters
2964

2965
    """
2966
    if phase == constants.HOOKS_PHASE_PRE:
2967
      suffix = "pre"
2968
    elif phase == constants.HOOKS_PHASE_POST:
2969
      suffix = "post"
2970
    else:
2971
      _Fail("Unknown hooks phase '%s'", phase)
2972

    
2973

    
2974
    subdir = "%s-%s.d" % (hpath, suffix)
2975
    dir_name = utils.PathJoin(self._BASE_DIR, subdir)
2976

    
2977
    results = []
2978

    
2979
    if not os.path.isdir(dir_name):
2980
      # for non-existing/non-dirs, we simply exit instead of logging a
2981
      # warning at every operation
2982
      return results
2983

    
2984
    runparts_results = utils.RunParts(dir_name, env=env, reset_env=True)
2985

    
2986
    for (relname, relstatus, runresult)  in runparts_results:
2987
      if relstatus == constants.RUNPARTS_SKIP:
2988
        rrval = constants.HKR_SKIP
2989
        output = ""
2990
      elif relstatus == constants.RUNPARTS_ERR:
2991
        rrval = constants.HKR_FAIL
2992
        output = "Hook script execution error: %s" % runresult
2993
      elif relstatus == constants.RUNPARTS_RUN:
2994
        if runresult.failed:
2995
          rrval = constants.HKR_FAIL
2996
        else:
2997
          rrval = constants.HKR_SUCCESS
2998
        output = utils.SafeEncode(runresult.output.strip())
2999
      results.append(("%s/%s" % (subdir, relname), rrval, output))
3000

    
3001
    return results
3002

    
3003

    
3004
class IAllocatorRunner(object):
3005
  """IAllocator runner.
3006

3007
  This class is instantiated on the node side (ganeti-noded) and not on
3008
  the master side.
3009

3010
  """
3011
  @staticmethod
3012
  def Run(name, idata):
3013
    """Run an iallocator script.
3014

3015
    @type name: str
3016
    @param name: the iallocator script name
3017
    @type idata: str
3018
    @param idata: the allocator input data
3019

3020
    @rtype: tuple
3021
    @return: two element tuple of:
3022
       - status
3023
       - either error message or stdout of allocator (for success)
3024

3025
    """
3026
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
3027
                                  os.path.isfile)
3028
    if alloc_script is None:
3029
      _Fail("iallocator module '%s' not found in the search path", name)
3030

    
3031
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
3032
    try:
3033
      os.write(fd, idata)
3034
      os.close(fd)
3035
      result = utils.RunCmd([alloc_script, fin_name])
3036
      if result.failed:
3037
        _Fail("iallocator module '%s' failed: %s, output '%s'",
3038
              name, result.fail_reason, result.output)
3039
    finally:
3040
      os.unlink(fin_name)
3041

    
3042
    return result.stdout
3043

    
3044

    
3045
class DevCacheManager(object):
3046
  """Simple class for managing a cache of block device information.
3047

3048
  """
3049
  _DEV_PREFIX = "/dev/"
3050
  _ROOT_DIR = constants.BDEV_CACHE_DIR
3051

    
3052
  @classmethod
3053
  def _ConvertPath(cls, dev_path):
3054
    """Converts a /dev/name path to the cache file name.
3055

3056
    This replaces slashes with underscores and strips the /dev
3057
    prefix. It then returns the full path to the cache file.
3058

3059
    @type dev_path: str
3060
    @param dev_path: the C{/dev/} path name
3061
    @rtype: str
3062
    @return: the converted path name
3063

3064
    """
3065
    if dev_path.startswith(cls._DEV_PREFIX):
3066
      dev_path = dev_path[len(cls._DEV_PREFIX):]
3067
    dev_path = dev_path.replace("/", "_")
3068
    fpath = utils.PathJoin(cls._ROOT_DIR, "bdev_%s" % dev_path)
3069
    return fpath
3070

    
3071
  @classmethod
3072
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
3073
    """Updates the cache information for a given device.
3074

3075
    @type dev_path: str
3076
    @param dev_path: the pathname of the device
3077
    @type owner: str
3078
    @param owner: the owner (instance name) of the device
3079
    @type on_primary: bool
3080
    @param on_primary: whether this is the primary
3081
        node nor not
3082
    @type iv_name: str
3083
    @param iv_name: the instance-visible name of the
3084
        device, as in objects.Disk.iv_name
3085

3086
    @rtype: None
3087

3088
    """
3089
    if dev_path is None:
3090
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
3091
      return
3092
    fpath = cls._ConvertPath(dev_path)
3093
    if on_primary:
3094
      state = "primary"
3095
    else:
3096
      state = "secondary"
3097
    if iv_name is None:
3098
      iv_name = "not_visible"
3099
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
3100
    try:
3101
      utils.WriteFile(fpath, data=fdata)
3102
    except EnvironmentError, err:
3103
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
3104

    
3105
  @classmethod
3106
  def RemoveCache(cls, dev_path):
3107
    """Remove data for a dev_path.
3108

3109
    This is just a wrapper over L{utils.RemoveFile} with a converted
3110
    path name and logging.
3111

3112
    @type dev_path: str
3113
    @param dev_path: the pathname of the device
3114

3115
    @rtype: None
3116

3117
    """
3118
    if dev_path is None:
3119
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
3120
      return
3121
    fpath = cls._ConvertPath(dev_path)
3122
    try:
3123
      utils.RemoveFile(fpath)
3124
    except EnvironmentError, err:
3125
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)