Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ 2dc1237c

History | View | Annotate | Download (98.7 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2010 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
from ganeti import netutils
62

    
63

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

    
78

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

82
  Its argument is the error message.
83

84
  """
85

    
86

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

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

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

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

    
109

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

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

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

    
119

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

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

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

    
132

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

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

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

    
152

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

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

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

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

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

    
182

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

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

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

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

    
204
  return frozenset(allowed_files)
205

    
206

    
207
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
208

    
209

    
210
def JobQueuePurge():
211
  """Removes job queue files and archived jobs.
212

213
  @rtype: tuple
214
  @return: True, None
215

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

    
220

    
221
def GetMasterInfo():
222
  """Returns master information.
223

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

227
  @rtype: tuple
228
  @return: master_netdev, master_ip, master_name, primary_ip_family
229
  @raise RPCFail: in case of errors
230

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

    
242

    
243
def StartMaster(start_daemons, no_voting):
244
  """Activate local node as master node.
245

246
  The function will either try activate the IP address of the master
247
  (unless someone else has it) or also start the master daemons, based
248
  on the start_daemons parameter.
249

250
  @type start_daemons: boolean
251
  @param start_daemons: whether to start the master daemons
252
      (ganeti-masterd and ganeti-rapi), or (if false) activate the
253
      master ip
254
  @type no_voting: boolean
255
  @param no_voting: whether to start ganeti-masterd without a node vote
256
      (if start_daemons is True), but still non-interactively
257
  @rtype: None
258

259
  """
260
  # GetMasterInfo will raise an exception if not able to return data
261
  master_netdev, master_ip, _, family = GetMasterInfo()
262

    
263
  err_msgs = []
264
  # either start the master and rapi daemons
265
  if start_daemons:
266
    if no_voting:
267
      masterd_args = "--no-voting --yes-do-it"
268
    else:
269
      masterd_args = ""
270

    
271
    env = {
272
      "EXTRA_MASTERD_ARGS": masterd_args,
273
      }
274

    
275
    result = utils.RunCmd([constants.DAEMON_UTIL, "start-master"], env=env)
276
    if result.failed:
277
      msg = "Can't start Ganeti master: %s" % result.output
278
      logging.error(msg)
279
      err_msgs.append(msg)
280
  # or activate the IP
281
  else:
282
    if netutils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
283
      if netutils.IPAddress.Own(master_ip):
284
        # we already have the ip:
285
        logging.debug("Master IP already configured, doing nothing")
286
      else:
287
        msg = "Someone else has the master ip, not activating"
288
        logging.error(msg)
289
        err_msgs.append(msg)
290
    else:
291
      ipcls = netutils.IP4Address
292
      if family == netutils.IP6Address.family:
293
        ipcls = netutils.IP6Address
294

    
295
      result = utils.RunCmd(["ip", "address", "add",
296
                             "%s/%d" % (master_ip, ipcls.iplen),
297
                             "dev", master_netdev, "label",
298
                             "%s:0" % master_netdev])
299
      if result.failed:
300
        msg = "Can't activate master IP: %s" % result.output
301
        logging.error(msg)
302
        err_msgs.append(msg)
303

    
304
      # we ignore the exit code of the following cmds
305
      if ipcls == netutils.IP4Address:
306
        utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev, "-s",
307
                      master_ip, master_ip])
308
      elif ipcls == netutils.IP6Address:
309
        try:
310
          utils.RunCmd(["ndisc6", "-q", "-r 3", master_ip, master_netdev])
311
        except errors.OpExecError:
312
          # TODO: Better error reporting
313
          logging.warning("Can't execute ndisc6, please install if missing")
314

    
315
  if err_msgs:
316
    _Fail("; ".join(err_msgs))
317

    
318

    
319
def StopMaster(stop_daemons):
320
  """Deactivate this node as master.
321

322
  The function will always try to deactivate the IP address of the
323
  master. It will also stop the master daemons depending on the
324
  stop_daemons parameter.
325

326
  @type stop_daemons: boolean
327
  @param stop_daemons: whether to also stop the master daemons
328
      (ganeti-masterd and ganeti-rapi)
329
  @rtype: None
330

331
  """
332
  # TODO: log and report back to the caller the error failures; we
333
  # need to decide in which case we fail the RPC for this
334

    
335
  # GetMasterInfo will raise an exception if not able to return data
336
  master_netdev, master_ip, _, family = GetMasterInfo()
337

    
338
  ipcls = netutils.IP4Address
339
  if family == netutils.IP6Address.family:
340
    ipcls = netutils.IP6Address
341

    
342
  result = utils.RunCmd(["ip", "address", "del",
343
                         "%s/%d" % (master_ip, ipcls.iplen),
344
                         "dev", master_netdev])
345
  if result.failed:
346
    logging.error("Can't remove the master IP, error: %s", result.output)
347
    # but otherwise ignore the failure
348

    
349
  if stop_daemons:
350
    result = utils.RunCmd([constants.DAEMON_UTIL, "stop-master"])
351
    if result.failed:
352
      logging.error("Could not stop Ganeti master, command %s had exitcode %s"
353
                    " and error %s",
354
                    result.cmd, result.exit_code, result.output)
355

    
356

    
357
def EtcHostsModify(mode, host, ip):
358
  """Modify a host entry in /etc/hosts.
359

360
  @param mode: The mode to operate. Either add or remove entry
361
  @param host: The host to operate on
362
  @param ip: The ip associated with the entry
363

364
  """
365
  if mode == constants.ETC_HOSTS_ADD:
366
    if not ip:
367
      RPCFail("Mode 'add' needs 'ip' parameter, but parameter not"
368
              " present")
369
    utils.AddHostToEtcHosts(host, ip)
370
  elif mode == constants.ETC_HOSTS_REMOVE:
371
    if ip:
372
      RPCFail("Mode 'remove' does not allow 'ip' parameter, but"
373
              " parameter is present")
374
    utils.RemoveHostFromEtcHosts(host)
375
  else:
376
    RPCFail("Mode not supported")
377

    
378

    
379
def LeaveCluster(modify_ssh_setup):
380
  """Cleans up and remove the current node.
381

382
  This function cleans up and prepares the current node to be removed
383
  from the cluster.
384

385
  If processing is successful, then it raises an
386
  L{errors.QuitGanetiException} which is used as a special case to
387
  shutdown the node daemon.
388

389
  @param modify_ssh_setup: boolean
390

391
  """
392
  _CleanDirectory(constants.DATA_DIR)
393
  _CleanDirectory(constants.CRYPTO_KEYS_DIR)
394
  JobQueuePurge()
395

    
396
  if modify_ssh_setup:
397
    try:
398
      priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
399

    
400
      utils.RemoveAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
401

    
402
      utils.RemoveFile(priv_key)
403
      utils.RemoveFile(pub_key)
404
    except errors.OpExecError:
405
      logging.exception("Error while processing ssh files")
406

    
407
  try:
408
    utils.RemoveFile(constants.CONFD_HMAC_KEY)
409
    utils.RemoveFile(constants.RAPI_CERT_FILE)
410
    utils.RemoveFile(constants.NODED_CERT_FILE)
411
  except: # pylint: disable-msg=W0702
412
    logging.exception("Error while removing cluster secrets")
413

    
414
  result = utils.RunCmd([constants.DAEMON_UTIL, "stop", constants.CONFD])
415
  if result.failed:
416
    logging.error("Command %s failed with exitcode %s and error %s",
417
                  result.cmd, result.exit_code, result.output)
418

    
419
  # Raise a custom exception (handled in ganeti-noded)
420
  raise errors.QuitGanetiException(True, 'Shutdown scheduled')
421

    
422

    
423
def GetNodeInfo(vgname, hypervisor_type):
424
  """Gives back a hash with different information about the node.
425

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

439
  """
440
  outputarray = {}
441
  vginfo = _GetVGInfo(vgname)
442
  outputarray['vg_size'] = vginfo['vg_size']
443
  outputarray['vg_free'] = vginfo['vg_free']
444

    
445
  hyper = hypervisor.GetHypervisor(hypervisor_type)
446
  hyp_info = hyper.GetNodeInfo()
447
  if hyp_info is not None:
448
    outputarray.update(hyp_info)
449

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

    
452
  return outputarray
453

    
454

    
455
def VerifyNode(what, cluster_name):
456
  """Verify the status of the local node.
457

458
  Based on the input L{what} parameter, various checks are done on the
459
  local node.
460

461
  If the I{filelist} key is present, this list of
462
  files is checksummed and the file/checksum pairs are returned.
463

464
  If the I{nodelist} key is present, we check that we have
465
  connectivity via ssh with the target nodes (and check the hostname
466
  report).
467

468
  If the I{node-net-test} key is present, we check that we have
469
  connectivity to the given nodes via both primary IP and, if
470
  applicable, secondary IPs.
471

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

483
  """
484
  result = {}
485
  my_name = netutils.Hostname.GetSysName()
486
  port = netutils.GetDaemonPort(constants.NODED)
487

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

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

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

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

    
532
  if constants.NV_MASTERIP in what:
533
    # FIXME: add checks on incoming data structures (here and in the
534
    # rest of the function)
535
    master_name, master_ip = what[constants.NV_MASTERIP]
536
    if master_name == my_name:
537
      source = constants.IP4_ADDRESS_LOCALHOST
538
    else:
539
      source = None
540
    result[constants.NV_MASTERIP] = netutils.TcpPing(master_ip, port,
541
                                                  source=source)
542

    
543
  if constants.NV_LVLIST in what:
544
    try:
545
      val = GetVolumeList(what[constants.NV_LVLIST])
546
    except RPCFail, err:
547
      val = str(err)
548
    result[constants.NV_LVLIST] = val
549

    
550
  if constants.NV_INSTANCELIST in what:
551
    # GetInstanceList can fail
552
    try:
553
      val = GetInstanceList(what[constants.NV_INSTANCELIST])
554
    except RPCFail, err:
555
      val = str(err)
556
    result[constants.NV_INSTANCELIST] = val
557

    
558
  if constants.NV_VGLIST in what:
559
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
560

    
561
  if constants.NV_PVLIST in what:
562
    result[constants.NV_PVLIST] = \
563
      bdev.LogicalVolume.GetPVInfo(what[constants.NV_PVLIST],
564
                                   filter_allocatable=False)
565

    
566
  if constants.NV_VERSION in what:
567
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
568
                                    constants.RELEASE_VERSION)
569

    
570
  if constants.NV_HVINFO in what:
571
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
572
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
573

    
574
  if constants.NV_DRBDLIST in what:
575
    try:
576
      used_minors = bdev.DRBD8.GetUsedDevs().keys()
577
    except errors.BlockDeviceError, err:
578
      logging.warning("Can't get used minors list", exc_info=True)
579
      used_minors = str(err)
580
    result[constants.NV_DRBDLIST] = used_minors
581

    
582
  if constants.NV_DRBDHELPER in what:
583
    status = True
584
    try:
585
      payload = bdev.BaseDRBD.GetUsermodeHelper()
586
    except errors.BlockDeviceError, err:
587
      logging.error("Can't get DRBD usermode helper: %s", str(err))
588
      status = False
589
      payload = str(err)
590
    result[constants.NV_DRBDHELPER] = (status, payload)
591

    
592
  if constants.NV_NODESETUP in what:
593
    result[constants.NV_NODESETUP] = tmpr = []
594
    if not os.path.isdir("/sys/block") or not os.path.isdir("/sys/class/net"):
595
      tmpr.append("The sysfs filesytem doesn't seem to be mounted"
596
                  " under /sys, missing required directories /sys/block"
597
                  " and /sys/class/net")
598
    if (not os.path.isdir("/proc/sys") or
599
        not os.path.isfile("/proc/sysrq-trigger")):
600
      tmpr.append("The procfs filesystem doesn't seem to be mounted"
601
                  " under /proc, missing required directory /proc/sys and"
602
                  " the file /proc/sysrq-trigger")
603

    
604
  if constants.NV_TIME in what:
605
    result[constants.NV_TIME] = utils.SplitTime(time.time())
606

    
607
  if constants.NV_OSLIST in what:
608
    result[constants.NV_OSLIST] = DiagnoseOS()
609

    
610
  return result
611

    
612

    
613
def GetVolumeList(vg_name):
614
  """Compute list of logical volumes and their size.
615

616
  @type vg_name: str
617
  @param vg_name: the volume group whose LVs we should list
618
  @rtype: dict
619
  @return:
620
      dictionary of all partions (key) with value being a tuple of
621
      their size (in MiB), inactive and online status::
622

623
        {'test1': ('20.06', True, True)}
624

625
      in case of errors, a string is returned with the error
626
      details.
627

628
  """
629
  lvs = {}
630
  sep = '|'
631
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
632
                         "--separator=%s" % sep,
633
                         "-olv_name,lv_size,lv_attr", vg_name])
634
  if result.failed:
635
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
636

    
637
  valid_line_re = re.compile("^ *([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
638
  for line in result.stdout.splitlines():
639
    line = line.strip()
640
    match = valid_line_re.match(line)
641
    if not match:
642
      logging.error("Invalid line returned from lvs output: '%s'", line)
643
      continue
644
    name, size, attr = match.groups()
645
    inactive = attr[4] == '-'
646
    online = attr[5] == 'o'
647
    virtual = attr[0] == 'v'
648
    if virtual:
649
      # we don't want to report such volumes as existing, since they
650
      # don't really hold data
651
      continue
652
    lvs[name] = (size, inactive, online)
653

    
654
  return lvs
655

    
656

    
657
def ListVolumeGroups():
658
  """List the volume groups and their size.
659

660
  @rtype: dict
661
  @return: dictionary with keys volume name and values the
662
      size of the volume
663

664
  """
665
  return utils.ListVolumeGroups()
666

    
667

    
668
def NodeVolumes():
669
  """List all volumes on this node.
670

671
  @rtype: list
672
  @return:
673
    A list of dictionaries, each having four keys:
674
      - name: the logical volume name,
675
      - size: the size of the logical volume
676
      - dev: the physical device on which the LV lives
677
      - vg: the volume group to which it belongs
678

679
    In case of errors, we return an empty list and log the
680
    error.
681

682
    Note that since a logical volume can live on multiple physical
683
    volumes, the resulting list might include a logical volume
684
    multiple times.
685

686
  """
687
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
688
                         "--separator=|",
689
                         "--options=lv_name,lv_size,devices,vg_name"])
690
  if result.failed:
691
    _Fail("Failed to list logical volumes, lvs output: %s",
692
          result.output)
693

    
694
  def parse_dev(dev):
695
    return dev.split('(')[0]
696

    
697
  def handle_dev(dev):
698
    return [parse_dev(x) for x in dev.split(",")]
699

    
700
  def map_line(line):
701
    line = [v.strip() for v in line]
702
    return [{'name': line[0], 'size': line[1],
703
             'dev': dev, 'vg': line[3]} for dev in handle_dev(line[2])]
704

    
705
  all_devs = []
706
  for line in result.stdout.splitlines():
707
    if line.count('|') >= 3:
708
      all_devs.extend(map_line(line.split('|')))
709
    else:
710
      logging.warning("Strange line in the output from lvs: '%s'", line)
711
  return all_devs
712

    
713

    
714
def BridgesExist(bridges_list):
715
  """Check if a list of bridges exist on the current node.
716

717
  @rtype: boolean
718
  @return: C{True} if all of them exist, C{False} otherwise
719

720
  """
721
  missing = []
722
  for bridge in bridges_list:
723
    if not utils.BridgeExists(bridge):
724
      missing.append(bridge)
725

    
726
  if missing:
727
    _Fail("Missing bridges %s", utils.CommaJoin(missing))
728

    
729

    
730
def GetInstanceList(hypervisor_list):
731
  """Provides a list of instances.
732

733
  @type hypervisor_list: list
734
  @param hypervisor_list: the list of hypervisors to query information
735

736
  @rtype: list
737
  @return: a list of all running instances on the current node
738
    - instance1.example.com
739
    - instance2.example.com
740

741
  """
742
  results = []
743
  for hname in hypervisor_list:
744
    try:
745
      names = hypervisor.GetHypervisor(hname).ListInstances()
746
      results.extend(names)
747
    except errors.HypervisorError, err:
748
      _Fail("Error enumerating instances (hypervisor %s): %s",
749
            hname, err, exc=True)
750

    
751
  return results
752

    
753

    
754
def GetInstanceInfo(instance, hname):
755
  """Gives back the information about an instance as a dictionary.
756

757
  @type instance: string
758
  @param instance: the instance name
759
  @type hname: string
760
  @param hname: the hypervisor type of the instance
761

762
  @rtype: dict
763
  @return: dictionary with the following keys:
764
      - memory: memory size of instance (int)
765
      - state: xen state of instance (string)
766
      - time: cpu time of instance (float)
767

768
  """
769
  output = {}
770

    
771
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
772
  if iinfo is not None:
773
    output['memory'] = iinfo[2]
774
    output['state'] = iinfo[4]
775
    output['time'] = iinfo[5]
776

    
777
  return output
778

    
779

    
780
def GetInstanceMigratable(instance):
781
  """Gives whether an instance can be migrated.
782

783
  @type instance: L{objects.Instance}
784
  @param instance: object representing the instance to be checked.
785

786
  @rtype: tuple
787
  @return: tuple of (result, description) where:
788
      - result: whether the instance can be migrated or not
789
      - description: a description of the issue, if relevant
790

791
  """
792
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
793
  iname = instance.name
794
  if iname not in hyper.ListInstances():
795
    _Fail("Instance %s is not running", iname)
796

    
797
  for idx in range(len(instance.disks)):
798
    link_name = _GetBlockDevSymlinkPath(iname, idx)
799
    if not os.path.islink(link_name):
800
      logging.warning("Instance %s is missing symlink %s for disk %d",
801
                      iname, link_name, idx)
802

    
803

    
804
def GetAllInstancesInfo(hypervisor_list):
805
  """Gather data about all instances.
806

807
  This is the equivalent of L{GetInstanceInfo}, except that it
808
  computes data for all instances at once, thus being faster if one
809
  needs data about more than one instance.
810

811
  @type hypervisor_list: list
812
  @param hypervisor_list: list of hypervisors to query for instance data
813

814
  @rtype: dict
815
  @return: dictionary of instance: data, with data having the following keys:
816
      - memory: memory size of instance (int)
817
      - state: xen state of instance (string)
818
      - time: cpu time of instance (float)
819
      - vcpus: the number of vcpus
820

821
  """
822
  output = {}
823

    
824
  for hname in hypervisor_list:
825
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
826
    if iinfo:
827
      for name, _, memory, vcpus, state, times in iinfo:
828
        value = {
829
          'memory': memory,
830
          'vcpus': vcpus,
831
          'state': state,
832
          'time': times,
833
          }
834
        if name in output:
835
          # we only check static parameters, like memory and vcpus,
836
          # and not state and time which can change between the
837
          # invocations of the different hypervisors
838
          for key in 'memory', 'vcpus':
839
            if value[key] != output[name][key]:
840
              _Fail("Instance %s is running twice"
841
                    " with different parameters", name)
842
        output[name] = value
843

    
844
  return output
845

    
846

    
847
def _InstanceLogName(kind, os_name, instance):
848
  """Compute the OS log filename for a given instance and operation.
849

850
  The instance name and os name are passed in as strings since not all
851
  operations have these as part of an instance object.
852

853
  @type kind: string
854
  @param kind: the operation type (e.g. add, import, etc.)
855
  @type os_name: string
856
  @param os_name: the os name
857
  @type instance: string
858
  @param instance: the name of the instance being imported/added/etc.
859

860
  """
861
  # TODO: Use tempfile.mkstemp to create unique filename
862
  base = ("%s-%s-%s-%s.log" %
863
          (kind, os_name, instance, utils.TimestampForFilename()))
864
  return utils.PathJoin(constants.LOG_OS_DIR, base)
865

    
866

    
867
def InstanceOsAdd(instance, reinstall, debug):
868
  """Add an OS to an instance.
869

870
  @type instance: L{objects.Instance}
871
  @param instance: Instance whose OS is to be installed
872
  @type reinstall: boolean
873
  @param reinstall: whether this is an instance reinstall
874
  @type debug: integer
875
  @param debug: debug level, passed to the OS scripts
876
  @rtype: None
877

878
  """
879
  inst_os = OSFromDisk(instance.os)
880

    
881
  create_env = OSEnvironment(instance, inst_os, debug)
882
  if reinstall:
883
    create_env['INSTANCE_REINSTALL'] = "1"
884

    
885
  logfile = _InstanceLogName("add", instance.os, instance.name)
886

    
887
  result = utils.RunCmd([inst_os.create_script], env=create_env,
888
                        cwd=inst_os.path, output=logfile,)
889
  if result.failed:
890
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
891
                  " output: %s", result.cmd, result.fail_reason, logfile,
892
                  result.output)
893
    lines = [utils.SafeEncode(val)
894
             for val in utils.TailFile(logfile, lines=20)]
895
    _Fail("OS create script failed (%s), last lines in the"
896
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
897

    
898

    
899
def RunRenameInstance(instance, old_name, debug):
900
  """Run the OS rename script for an instance.
901

902
  @type instance: L{objects.Instance}
903
  @param instance: Instance whose OS is to be installed
904
  @type old_name: string
905
  @param old_name: previous instance name
906
  @type debug: integer
907
  @param debug: debug level, passed to the OS scripts
908
  @rtype: boolean
909
  @return: the success of the operation
910

911
  """
912
  inst_os = OSFromDisk(instance.os)
913

    
914
  rename_env = OSEnvironment(instance, inst_os, debug)
915
  rename_env['OLD_INSTANCE_NAME'] = old_name
916

    
917
  logfile = _InstanceLogName("rename", instance.os,
918
                             "%s-%s" % (old_name, instance.name))
919

    
920
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
921
                        cwd=inst_os.path, output=logfile)
922

    
923
  if result.failed:
924
    logging.error("os create command '%s' returned error: %s output: %s",
925
                  result.cmd, result.fail_reason, result.output)
926
    lines = [utils.SafeEncode(val)
927
             for val in utils.TailFile(logfile, lines=20)]
928
    _Fail("OS rename script failed (%s), last lines in the"
929
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
930

    
931

    
932
def _GetVGInfo(vg_name):
933
  """Get information about the volume group.
934

935
  @type vg_name: str
936
  @param vg_name: the volume group which we query
937
  @rtype: dict
938
  @return:
939
    A dictionary with the following keys:
940
      - C{vg_size} is the total size of the volume group in MiB
941
      - C{vg_free} is the free size of the volume group in MiB
942
      - C{pv_count} are the number of physical disks in that VG
943

944
    If an error occurs during gathering of data, we return the same dict
945
    with keys all set to None.
946

947
  """
948
  retdic = dict.fromkeys(["vg_size", "vg_free", "pv_count"])
949

    
950
  retval = utils.RunCmd(["vgs", "-ovg_size,vg_free,pv_count", "--noheadings",
951
                         "--nosuffix", "--units=m", "--separator=:", vg_name])
952

    
953
  if retval.failed:
954
    logging.error("volume group %s not present", vg_name)
955
    return retdic
956
  valarr = retval.stdout.strip().rstrip(':').split(':')
957
  if len(valarr) == 3:
958
    try:
959
      retdic = {
960
        "vg_size": int(round(float(valarr[0]), 0)),
961
        "vg_free": int(round(float(valarr[1]), 0)),
962
        "pv_count": int(valarr[2]),
963
        }
964
    except (TypeError, ValueError), err:
965
      logging.exception("Fail to parse vgs output: %s", err)
966
  else:
967
    logging.error("vgs output has the wrong number of fields (expected"
968
                  " three): %s", str(valarr))
969
  return retdic
970

    
971

    
972
def _GetBlockDevSymlinkPath(instance_name, idx):
973
  return utils.PathJoin(constants.DISK_LINKS_DIR,
974
                        "%s:%d" % (instance_name, idx))
975

    
976

    
977
def _SymlinkBlockDev(instance_name, device_path, idx):
978
  """Set up symlinks to a instance's block device.
979

980
  This is an auxiliary function run when an instance is start (on the primary
981
  node) or when an instance is migrated (on the target node).
982

983

984
  @param instance_name: the name of the target instance
985
  @param device_path: path of the physical block device, on the node
986
  @param idx: the disk index
987
  @return: absolute path to the disk's symlink
988

989
  """
990
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
991
  try:
992
    os.symlink(device_path, link_name)
993
  except OSError, err:
994
    if err.errno == errno.EEXIST:
995
      if (not os.path.islink(link_name) or
996
          os.readlink(link_name) != device_path):
997
        os.remove(link_name)
998
        os.symlink(device_path, link_name)
999
    else:
1000
      raise
1001

    
1002
  return link_name
1003

    
1004

    
1005
def _RemoveBlockDevLinks(instance_name, disks):
1006
  """Remove the block device symlinks belonging to the given instance.
1007

1008
  """
1009
  for idx, _ in enumerate(disks):
1010
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1011
    if os.path.islink(link_name):
1012
      try:
1013
        os.remove(link_name)
1014
      except OSError:
1015
        logging.exception("Can't remove symlink '%s'", link_name)
1016

    
1017

    
1018
def _GatherAndLinkBlockDevs(instance):
1019
  """Set up an instance's block device(s).
1020

1021
  This is run on the primary node at instance startup. The block
1022
  devices must be already assembled.
1023

1024
  @type instance: L{objects.Instance}
1025
  @param instance: the instance whose disks we shoul assemble
1026
  @rtype: list
1027
  @return: list of (disk_object, device_path)
1028

1029
  """
1030
  block_devices = []
1031
  for idx, disk in enumerate(instance.disks):
1032
    device = _RecursiveFindBD(disk)
1033
    if device is None:
1034
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
1035
                                    str(disk))
1036
    device.Open()
1037
    try:
1038
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
1039
    except OSError, e:
1040
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
1041
                                    e.strerror)
1042

    
1043
    block_devices.append((disk, link_name))
1044

    
1045
  return block_devices
1046

    
1047

    
1048
def StartInstance(instance):
1049
  """Start an instance.
1050

1051
  @type instance: L{objects.Instance}
1052
  @param instance: the instance object
1053
  @rtype: None
1054

1055
  """
1056
  running_instances = GetInstanceList([instance.hypervisor])
1057

    
1058
  if instance.name in running_instances:
1059
    logging.info("Instance %s already running, not starting", instance.name)
1060
    return
1061

    
1062
  try:
1063
    block_devices = _GatherAndLinkBlockDevs(instance)
1064
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
1065
    hyper.StartInstance(instance, block_devices)
1066
  except errors.BlockDeviceError, err:
1067
    _Fail("Block device error: %s", err, exc=True)
1068
  except errors.HypervisorError, err:
1069
    _RemoveBlockDevLinks(instance.name, instance.disks)
1070
    _Fail("Hypervisor error: %s", err, exc=True)
1071

    
1072

    
1073
def InstanceShutdown(instance, timeout):
1074
  """Shut an instance down.
1075

1076
  @note: this functions uses polling with a hardcoded timeout.
1077

1078
  @type instance: L{objects.Instance}
1079
  @param instance: the instance object
1080
  @type timeout: integer
1081
  @param timeout: maximum timeout for soft shutdown
1082
  @rtype: None
1083

1084
  """
1085
  hv_name = instance.hypervisor
1086
  hyper = hypervisor.GetHypervisor(hv_name)
1087
  iname = instance.name
1088

    
1089
  if instance.name not in hyper.ListInstances():
1090
    logging.info("Instance %s not running, doing nothing", iname)
1091
    return
1092

    
1093
  class _TryShutdown:
1094
    def __init__(self):
1095
      self.tried_once = False
1096

    
1097
    def __call__(self):
1098
      if iname not in hyper.ListInstances():
1099
        return
1100

    
1101
      try:
1102
        hyper.StopInstance(instance, retry=self.tried_once)
1103
      except errors.HypervisorError, err:
1104
        if iname not in hyper.ListInstances():
1105
          # if the instance is no longer existing, consider this a
1106
          # success and go to cleanup
1107
          return
1108

    
1109
        _Fail("Failed to stop instance %s: %s", iname, err)
1110

    
1111
      self.tried_once = True
1112

    
1113
      raise utils.RetryAgain()
1114

    
1115
  try:
1116
    utils.Retry(_TryShutdown(), 5, timeout)
1117
  except utils.RetryTimeout:
1118
    # the shutdown did not succeed
1119
    logging.error("Shutdown of '%s' unsuccessful, forcing", iname)
1120

    
1121
    try:
1122
      hyper.StopInstance(instance, force=True)
1123
    except errors.HypervisorError, err:
1124
      if iname in hyper.ListInstances():
1125
        # only raise an error if the instance still exists, otherwise
1126
        # the error could simply be "instance ... unknown"!
1127
        _Fail("Failed to force stop instance %s: %s", iname, err)
1128

    
1129
    time.sleep(1)
1130

    
1131
    if iname in hyper.ListInstances():
1132
      _Fail("Could not shutdown instance %s even by destroy", iname)
1133

    
1134
  try:
1135
    hyper.CleanupInstance(instance.name)
1136
  except errors.HypervisorError, err:
1137
    logging.warning("Failed to execute post-shutdown cleanup step: %s", err)
1138

    
1139
  _RemoveBlockDevLinks(iname, instance.disks)
1140

    
1141

    
1142
def InstanceReboot(instance, reboot_type, shutdown_timeout):
1143
  """Reboot an instance.
1144

1145
  @type instance: L{objects.Instance}
1146
  @param instance: the instance object to reboot
1147
  @type reboot_type: str
1148
  @param reboot_type: the type of reboot, one the following
1149
    constants:
1150
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1151
        instance OS, do not recreate the VM
1152
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1153
        restart the VM (at the hypervisor level)
1154
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1155
        not accepted here, since that mode is handled differently, in
1156
        cmdlib, and translates into full stop and start of the
1157
        instance (instead of a call_instance_reboot RPC)
1158
  @type shutdown_timeout: integer
1159
  @param shutdown_timeout: maximum timeout for soft shutdown
1160
  @rtype: None
1161

1162
  """
1163
  running_instances = GetInstanceList([instance.hypervisor])
1164

    
1165
  if instance.name not in running_instances:
1166
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1167

    
1168
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1169
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1170
    try:
1171
      hyper.RebootInstance(instance)
1172
    except errors.HypervisorError, err:
1173
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1174
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1175
    try:
1176
      InstanceShutdown(instance, shutdown_timeout)
1177
      return StartInstance(instance)
1178
    except errors.HypervisorError, err:
1179
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1180
  else:
1181
    _Fail("Invalid reboot_type received: %s", reboot_type)
1182

    
1183

    
1184
def MigrationInfo(instance):
1185
  """Gather information about an instance to be migrated.
1186

1187
  @type instance: L{objects.Instance}
1188
  @param instance: the instance definition
1189

1190
  """
1191
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1192
  try:
1193
    info = hyper.MigrationInfo(instance)
1194
  except errors.HypervisorError, err:
1195
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1196
  return info
1197

    
1198

    
1199
def AcceptInstance(instance, info, target):
1200
  """Prepare the node to accept an instance.
1201

1202
  @type instance: L{objects.Instance}
1203
  @param instance: the instance definition
1204
  @type info: string/data (opaque)
1205
  @param info: migration information, from the source node
1206
  @type target: string
1207
  @param target: target host (usually ip), on this node
1208

1209
  """
1210
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1211
  try:
1212
    hyper.AcceptInstance(instance, info, target)
1213
  except errors.HypervisorError, err:
1214
    _Fail("Failed to accept instance: %s", err, exc=True)
1215

    
1216

    
1217
def FinalizeMigration(instance, info, success):
1218
  """Finalize any preparation to accept an instance.
1219

1220
  @type instance: L{objects.Instance}
1221
  @param instance: the instance definition
1222
  @type info: string/data (opaque)
1223
  @param info: migration information, from the source node
1224
  @type success: boolean
1225
  @param success: whether the migration was a success or a failure
1226

1227
  """
1228
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1229
  try:
1230
    hyper.FinalizeMigration(instance, info, success)
1231
  except errors.HypervisorError, err:
1232
    _Fail("Failed to finalize migration: %s", err, exc=True)
1233

    
1234

    
1235
def MigrateInstance(instance, target, live):
1236
  """Migrates an instance to another node.
1237

1238
  @type instance: L{objects.Instance}
1239
  @param instance: the instance definition
1240
  @type target: string
1241
  @param target: the target node name
1242
  @type live: boolean
1243
  @param live: whether the migration should be done live or not (the
1244
      interpretation of this parameter is left to the hypervisor)
1245
  @rtype: tuple
1246
  @return: a tuple of (success, msg) where:
1247
      - succes is a boolean denoting the success/failure of the operation
1248
      - msg is a string with details in case of failure
1249

1250
  """
1251
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1252

    
1253
  try:
1254
    hyper.MigrateInstance(instance, target, live)
1255
  except errors.HypervisorError, err:
1256
    _Fail("Failed to migrate instance: %s", err, exc=True)
1257

    
1258

    
1259
def BlockdevCreate(disk, size, owner, on_primary, info):
1260
  """Creates a block device for an instance.
1261

1262
  @type disk: L{objects.Disk}
1263
  @param disk: the object describing the disk we should create
1264
  @type size: int
1265
  @param size: the size of the physical underlying device, in MiB
1266
  @type owner: str
1267
  @param owner: the name of the instance for which disk is created,
1268
      used for device cache data
1269
  @type on_primary: boolean
1270
  @param on_primary:  indicates if it is the primary node or not
1271
  @type info: string
1272
  @param info: string that will be sent to the physical device
1273
      creation, used for example to set (LVM) tags on LVs
1274

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

1279
  """
1280
  # TODO: remove the obsolete 'size' argument
1281
  # pylint: disable-msg=W0613
1282
  clist = []
1283
  if disk.children:
1284
    for child in disk.children:
1285
      try:
1286
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1287
      except errors.BlockDeviceError, err:
1288
        _Fail("Can't assemble device %s: %s", child, err)
1289
      if on_primary or disk.AssembleOnSecondary():
1290
        # we need the children open in case the device itself has to
1291
        # be assembled
1292
        try:
1293
          # pylint: disable-msg=E1103
1294
          crdev.Open()
1295
        except errors.BlockDeviceError, err:
1296
          _Fail("Can't make child '%s' read-write: %s", child, err)
1297
      clist.append(crdev)
1298

    
1299
  try:
1300
    device = bdev.Create(disk.dev_type, disk.physical_id, clist, disk.size)
1301
  except errors.BlockDeviceError, err:
1302
    _Fail("Can't create block device: %s", err)
1303

    
1304
  if on_primary or disk.AssembleOnSecondary():
1305
    try:
1306
      device.Assemble()
1307
    except errors.BlockDeviceError, err:
1308
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1309
    device.SetSyncSpeed(constants.SYNC_SPEED)
1310
    if on_primary or disk.OpenOnSecondary():
1311
      try:
1312
        device.Open(force=True)
1313
      except errors.BlockDeviceError, err:
1314
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1315
    DevCacheManager.UpdateCache(device.dev_path, owner,
1316
                                on_primary, disk.iv_name)
1317

    
1318
  device.SetInfo(info)
1319

    
1320
  return device.unique_id
1321

    
1322

    
1323
def BlockdevRemove(disk):
1324
  """Remove a block device.
1325

1326
  @note: This is intended to be called recursively.
1327

1328
  @type disk: L{objects.Disk}
1329
  @param disk: the disk object we should remove
1330
  @rtype: boolean
1331
  @return: the success of the operation
1332

1333
  """
1334
  msgs = []
1335
  try:
1336
    rdev = _RecursiveFindBD(disk)
1337
  except errors.BlockDeviceError, err:
1338
    # probably can't attach
1339
    logging.info("Can't attach to device %s in remove", disk)
1340
    rdev = None
1341
  if rdev is not None:
1342
    r_path = rdev.dev_path
1343
    try:
1344
      rdev.Remove()
1345
    except errors.BlockDeviceError, err:
1346
      msgs.append(str(err))
1347
    if not msgs:
1348
      DevCacheManager.RemoveCache(r_path)
1349

    
1350
  if disk.children:
1351
    for child in disk.children:
1352
      try:
1353
        BlockdevRemove(child)
1354
      except RPCFail, err:
1355
        msgs.append(str(err))
1356

    
1357
  if msgs:
1358
    _Fail("; ".join(msgs))
1359

    
1360

    
1361
def _RecursiveAssembleBD(disk, owner, as_primary):
1362
  """Activate a block device for an instance.
1363

1364
  This is run on the primary and secondary nodes for an instance.
1365

1366
  @note: this function is called recursively.
1367

1368
  @type disk: L{objects.Disk}
1369
  @param disk: the disk we try to assemble
1370
  @type owner: str
1371
  @param owner: the name of the instance which owns the disk
1372
  @type as_primary: boolean
1373
  @param as_primary: if we should make the block device
1374
      read/write
1375

1376
  @return: the assembled device or None (in case no device
1377
      was assembled)
1378
  @raise errors.BlockDeviceError: in case there is an error
1379
      during the activation of the children or the device
1380
      itself
1381

1382
  """
1383
  children = []
1384
  if disk.children:
1385
    mcn = disk.ChildrenNeeded()
1386
    if mcn == -1:
1387
      mcn = 0 # max number of Nones allowed
1388
    else:
1389
      mcn = len(disk.children) - mcn # max number of Nones
1390
    for chld_disk in disk.children:
1391
      try:
1392
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1393
      except errors.BlockDeviceError, err:
1394
        if children.count(None) >= mcn:
1395
          raise
1396
        cdev = None
1397
        logging.error("Error in child activation (but continuing): %s",
1398
                      str(err))
1399
      children.append(cdev)
1400

    
1401
  if as_primary or disk.AssembleOnSecondary():
1402
    r_dev = bdev.Assemble(disk.dev_type, disk.physical_id, children, disk.size)
1403
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
1404
    result = r_dev
1405
    if as_primary or disk.OpenOnSecondary():
1406
      r_dev.Open()
1407
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1408
                                as_primary, disk.iv_name)
1409

    
1410
  else:
1411
    result = True
1412
  return result
1413

    
1414

    
1415
def BlockdevAssemble(disk, owner, as_primary):
1416
  """Activate a block device for an instance.
1417

1418
  This is a wrapper over _RecursiveAssembleBD.
1419

1420
  @rtype: str or boolean
1421
  @return: a C{/dev/...} path for primary nodes, and
1422
      C{True} for secondary nodes
1423

1424
  """
1425
  try:
1426
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1427
    if isinstance(result, bdev.BlockDev):
1428
      # pylint: disable-msg=E1103
1429
      result = result.dev_path
1430
  except errors.BlockDeviceError, err:
1431
    _Fail("Error while assembling disk: %s", err, exc=True)
1432

    
1433
  return result
1434

    
1435

    
1436
def BlockdevShutdown(disk):
1437
  """Shut down a block device.
1438

1439
  First, if the device is assembled (Attach() is successful), then
1440
  the device is shutdown. Then the children of the device are
1441
  shutdown.
1442

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

1447
  @type disk: L{objects.Disk}
1448
  @param disk: the description of the disk we should
1449
      shutdown
1450
  @rtype: None
1451

1452
  """
1453
  msgs = []
1454
  r_dev = _RecursiveFindBD(disk)
1455
  if r_dev is not None:
1456
    r_path = r_dev.dev_path
1457
    try:
1458
      r_dev.Shutdown()
1459
      DevCacheManager.RemoveCache(r_path)
1460
    except errors.BlockDeviceError, err:
1461
      msgs.append(str(err))
1462

    
1463
  if disk.children:
1464
    for child in disk.children:
1465
      try:
1466
        BlockdevShutdown(child)
1467
      except RPCFail, err:
1468
        msgs.append(str(err))
1469

    
1470
  if msgs:
1471
    _Fail("; ".join(msgs))
1472

    
1473

    
1474
def BlockdevAddchildren(parent_cdev, new_cdevs):
1475
  """Extend a mirrored block device.
1476

1477
  @type parent_cdev: L{objects.Disk}
1478
  @param parent_cdev: the disk to which we should add children
1479
  @type new_cdevs: list of L{objects.Disk}
1480
  @param new_cdevs: the list of children which we should add
1481
  @rtype: None
1482

1483
  """
1484
  parent_bdev = _RecursiveFindBD(parent_cdev)
1485
  if parent_bdev is None:
1486
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
1487
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
1488
  if new_bdevs.count(None) > 0:
1489
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
1490
  parent_bdev.AddChildren(new_bdevs)
1491

    
1492

    
1493
def BlockdevRemovechildren(parent_cdev, new_cdevs):
1494
  """Shrink a mirrored block device.
1495

1496
  @type parent_cdev: L{objects.Disk}
1497
  @param parent_cdev: the disk from which we should remove children
1498
  @type new_cdevs: list of L{objects.Disk}
1499
  @param new_cdevs: the list of children which we should remove
1500
  @rtype: None
1501

1502
  """
1503
  parent_bdev = _RecursiveFindBD(parent_cdev)
1504
  if parent_bdev is None:
1505
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
1506
  devs = []
1507
  for disk in new_cdevs:
1508
    rpath = disk.StaticDevPath()
1509
    if rpath is None:
1510
      bd = _RecursiveFindBD(disk)
1511
      if bd is None:
1512
        _Fail("Can't find device %s while removing children", disk)
1513
      else:
1514
        devs.append(bd.dev_path)
1515
    else:
1516
      if not utils.IsNormAbsPath(rpath):
1517
        _Fail("Strange path returned from StaticDevPath: '%s'", rpath)
1518
      devs.append(rpath)
1519
  parent_bdev.RemoveChildren(devs)
1520

    
1521

    
1522
def BlockdevGetmirrorstatus(disks):
1523
  """Get the mirroring status of a list of devices.
1524

1525
  @type disks: list of L{objects.Disk}
1526
  @param disks: the list of disks which we should query
1527
  @rtype: disk
1528
  @return:
1529
      a list of (mirror_done, estimated_time) tuples, which
1530
      are the result of L{bdev.BlockDev.CombinedSyncStatus}
1531
  @raise errors.BlockDeviceError: if any of the disks cannot be
1532
      found
1533

1534
  """
1535
  stats = []
1536
  for dsk in disks:
1537
    rbd = _RecursiveFindBD(dsk)
1538
    if rbd is None:
1539
      _Fail("Can't find device %s", dsk)
1540

    
1541
    stats.append(rbd.CombinedSyncStatus())
1542

    
1543
  return stats
1544

    
1545

    
1546
def _RecursiveFindBD(disk):
1547
  """Check if a device is activated.
1548

1549
  If so, return information about the real device.
1550

1551
  @type disk: L{objects.Disk}
1552
  @param disk: the disk object we need to find
1553

1554
  @return: None if the device can't be found,
1555
      otherwise the device instance
1556

1557
  """
1558
  children = []
1559
  if disk.children:
1560
    for chdisk in disk.children:
1561
      children.append(_RecursiveFindBD(chdisk))
1562

    
1563
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children, disk.size)
1564

    
1565

    
1566
def _OpenRealBD(disk):
1567
  """Opens the underlying block device of a disk.
1568

1569
  @type disk: L{objects.Disk}
1570
  @param disk: the disk object we want to open
1571

1572
  """
1573
  real_disk = _RecursiveFindBD(disk)
1574
  if real_disk is None:
1575
    _Fail("Block device '%s' is not set up", disk)
1576

    
1577
  real_disk.Open()
1578

    
1579
  return real_disk
1580

    
1581

    
1582
def BlockdevFind(disk):
1583
  """Check if a device is activated.
1584

1585
  If it is, return information about the real device.
1586

1587
  @type disk: L{objects.Disk}
1588
  @param disk: the disk to find
1589
  @rtype: None or objects.BlockDevStatus
1590
  @return: None if the disk cannot be found, otherwise a the current
1591
           information
1592

1593
  """
1594
  try:
1595
    rbd = _RecursiveFindBD(disk)
1596
  except errors.BlockDeviceError, err:
1597
    _Fail("Failed to find device: %s", err, exc=True)
1598

    
1599
  if rbd is None:
1600
    return None
1601

    
1602
  return rbd.GetSyncStatus()
1603

    
1604

    
1605
def BlockdevGetsize(disks):
1606
  """Computes the size of the given disks.
1607

1608
  If a disk is not found, returns None instead.
1609

1610
  @type disks: list of L{objects.Disk}
1611
  @param disks: the list of disk to compute the size for
1612
  @rtype: list
1613
  @return: list with elements None if the disk cannot be found,
1614
      otherwise the size
1615

1616
  """
1617
  result = []
1618
  for cf in disks:
1619
    try:
1620
      rbd = _RecursiveFindBD(cf)
1621
    except errors.BlockDeviceError:
1622
      result.append(None)
1623
      continue
1624
    if rbd is None:
1625
      result.append(None)
1626
    else:
1627
      result.append(rbd.GetActualSize())
1628
  return result
1629

    
1630

    
1631
def BlockdevExport(disk, dest_node, dest_path, cluster_name):
1632
  """Export a block device to a remote node.
1633

1634
  @type disk: L{objects.Disk}
1635
  @param disk: the description of the disk to export
1636
  @type dest_node: str
1637
  @param dest_node: the destination node to export to
1638
  @type dest_path: str
1639
  @param dest_path: the destination path on the target node
1640
  @type cluster_name: str
1641
  @param cluster_name: the cluster name, needed for SSH hostalias
1642
  @rtype: None
1643

1644
  """
1645
  real_disk = _OpenRealBD(disk)
1646

    
1647
  # the block size on the read dd is 1MiB to match our units
1648
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
1649
                               "dd if=%s bs=1048576 count=%s",
1650
                               real_disk.dev_path, str(disk.size))
1651

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

    
1661
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1662
                                                   constants.GANETI_RUNAS,
1663
                                                   destcmd)
1664

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

    
1668
  result = utils.RunCmd(["bash", "-c", command])
1669

    
1670
  if result.failed:
1671
    _Fail("Disk copy command '%s' returned error: %s"
1672
          " output: %s", command, result.fail_reason, result.output)
1673

    
1674

    
1675
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1676
  """Write a file to the filesystem.
1677

1678
  This allows the master to overwrite(!) a file. It will only perform
1679
  the operation if the file belongs to a list of configuration files.
1680

1681
  @type file_name: str
1682
  @param file_name: the target file name
1683
  @type data: str
1684
  @param data: the new contents of the file
1685
  @type mode: int
1686
  @param mode: the mode to give the file (can be None)
1687
  @type uid: int
1688
  @param uid: the owner of the file (can be -1 for default)
1689
  @type gid: int
1690
  @param gid: the group of the file (can be -1 for default)
1691
  @type atime: float
1692
  @param atime: the atime to set on the file (can be None)
1693
  @type mtime: float
1694
  @param mtime: the mtime to set on the file (can be None)
1695
  @rtype: None
1696

1697
  """
1698
  if not os.path.isabs(file_name):
1699
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1700

    
1701
  if file_name not in _ALLOWED_UPLOAD_FILES:
1702
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1703
          file_name)
1704

    
1705
  raw_data = _Decompress(data)
1706

    
1707
  utils.WriteFile(file_name, data=raw_data, mode=mode, uid=uid, gid=gid,
1708
                  atime=atime, mtime=mtime)
1709

    
1710

    
1711
def WriteSsconfFiles(values):
1712
  """Update all ssconf files.
1713

1714
  Wrapper around the SimpleStore.WriteFiles.
1715

1716
  """
1717
  ssconf.SimpleStore().WriteFiles(values)
1718

    
1719

    
1720
def _ErrnoOrStr(err):
1721
  """Format an EnvironmentError exception.
1722

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

1727
  @type err: L{EnvironmentError}
1728
  @param err: the exception to format
1729

1730
  """
1731
  if hasattr(err, 'errno'):
1732
    detail = errno.errorcode[err.errno]
1733
  else:
1734
    detail = str(err)
1735
  return detail
1736

    
1737

    
1738
def _OSOndiskAPIVersion(os_dir):
1739
  """Compute and return the API version of a given OS.
1740

1741
  This function will try to read the API version of the OS residing in
1742
  the 'os_dir' directory.
1743

1744
  @type os_dir: str
1745
  @param os_dir: the directory in which we should look for the OS
1746
  @rtype: tuple
1747
  @return: tuple (status, data) with status denoting the validity and
1748
      data holding either the vaid versions or an error message
1749

1750
  """
1751
  api_file = utils.PathJoin(os_dir, constants.OS_API_FILE)
1752

    
1753
  try:
1754
    st = os.stat(api_file)
1755
  except EnvironmentError, err:
1756
    return False, ("Required file '%s' not found under path %s: %s" %
1757
                   (constants.OS_API_FILE, os_dir, _ErrnoOrStr(err)))
1758

    
1759
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1760
    return False, ("File '%s' in %s is not a regular file" %
1761
                   (constants.OS_API_FILE, os_dir))
1762

    
1763
  try:
1764
    api_versions = utils.ReadFile(api_file).splitlines()
1765
  except EnvironmentError, err:
1766
    return False, ("Error while reading the API version file at %s: %s" %
1767
                   (api_file, _ErrnoOrStr(err)))
1768

    
1769
  try:
1770
    api_versions = [int(version.strip()) for version in api_versions]
1771
  except (TypeError, ValueError), err:
1772
    return False, ("API version(s) can't be converted to integer: %s" %
1773
                   str(err))
1774

    
1775
  return True, api_versions
1776

    
1777

    
1778
def DiagnoseOS(top_dirs=None):
1779
  """Compute the validity for all OSes.
1780

1781
  @type top_dirs: list
1782
  @param top_dirs: the list of directories in which to
1783
      search (if not given defaults to
1784
      L{constants.OS_SEARCH_PATH})
1785
  @rtype: list of L{objects.OS}
1786
  @return: a list of tuples (name, path, status, diagnose, variants,
1787
      parameters, api_version) for all (potential) OSes under all
1788
      search paths, where:
1789
          - name is the (potential) OS name
1790
          - path is the full path to the OS
1791
          - status True/False is the validity of the OS
1792
          - diagnose is the error message for an invalid OS, otherwise empty
1793
          - variants is a list of supported OS variants, if any
1794
          - parameters is a list of (name, help) parameters, if any
1795
          - api_version is a list of support OS API versions
1796

1797
  """
1798
  if top_dirs is None:
1799
    top_dirs = constants.OS_SEARCH_PATH
1800

    
1801
  result = []
1802
  for dir_name in top_dirs:
1803
    if os.path.isdir(dir_name):
1804
      try:
1805
        f_names = utils.ListVisibleFiles(dir_name)
1806
      except EnvironmentError, err:
1807
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
1808
        break
1809
      for name in f_names:
1810
        os_path = utils.PathJoin(dir_name, name)
1811
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
1812
        if status:
1813
          diagnose = ""
1814
          variants = os_inst.supported_variants
1815
          parameters = os_inst.supported_parameters
1816
          api_versions = os_inst.api_versions
1817
        else:
1818
          diagnose = os_inst
1819
          variants = parameters = api_versions = []
1820
        result.append((name, os_path, status, diagnose, variants,
1821
                       parameters, api_versions))
1822

    
1823
  return result
1824

    
1825

    
1826
def _TryOSFromDisk(name, base_dir=None):
1827
  """Create an OS instance from disk.
1828

1829
  This function will return an OS instance if the given name is a
1830
  valid OS name.
1831

1832
  @type base_dir: string
1833
  @keyword base_dir: Base directory containing OS installations.
1834
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1835
  @rtype: tuple
1836
  @return: success and either the OS instance if we find a valid one,
1837
      or error message
1838

1839
  """
1840
  if base_dir is None:
1841
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1842
  else:
1843
    os_dir = utils.FindFile(name, [base_dir], os.path.isdir)
1844

    
1845
  if os_dir is None:
1846
    return False, "Directory for OS %s not found in search path" % name
1847

    
1848
  status, api_versions = _OSOndiskAPIVersion(os_dir)
1849
  if not status:
1850
    # push the error up
1851
    return status, api_versions
1852

    
1853
  if not constants.OS_API_VERSIONS.intersection(api_versions):
1854
    return False, ("API version mismatch for path '%s': found %s, want %s." %
1855
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
1856

    
1857
  # OS Files dictionary, we will populate it with the absolute path names
1858
  os_files = dict.fromkeys(constants.OS_SCRIPTS)
1859

    
1860
  if max(api_versions) >= constants.OS_API_V15:
1861
    os_files[constants.OS_VARIANTS_FILE] = ''
1862

    
1863
  if max(api_versions) >= constants.OS_API_V20:
1864
    os_files[constants.OS_PARAMETERS_FILE] = ''
1865
  else:
1866
    del os_files[constants.OS_SCRIPT_VERIFY]
1867

    
1868
  for filename in os_files:
1869
    os_files[filename] = utils.PathJoin(os_dir, filename)
1870

    
1871
    try:
1872
      st = os.stat(os_files[filename])
1873
    except EnvironmentError, err:
1874
      return False, ("File '%s' under path '%s' is missing (%s)" %
1875
                     (filename, os_dir, _ErrnoOrStr(err)))
1876

    
1877
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1878
      return False, ("File '%s' under path '%s' is not a regular file" %
1879
                     (filename, os_dir))
1880

    
1881
    if filename in constants.OS_SCRIPTS:
1882
      if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1883
        return False, ("File '%s' under path '%s' is not executable" %
1884
                       (filename, os_dir))
1885

    
1886
  variants = []
1887
  if constants.OS_VARIANTS_FILE in os_files:
1888
    variants_file = os_files[constants.OS_VARIANTS_FILE]
1889
    try:
1890
      variants = utils.ReadFile(variants_file).splitlines()
1891
    except EnvironmentError, err:
1892
      return False, ("Error while reading the OS variants file at %s: %s" %
1893
                     (variants_file, _ErrnoOrStr(err)))
1894
    if not variants:
1895
      return False, ("No supported os variant found")
1896

    
1897
  parameters = []
1898
  if constants.OS_PARAMETERS_FILE in os_files:
1899
    parameters_file = os_files[constants.OS_PARAMETERS_FILE]
1900
    try:
1901
      parameters = utils.ReadFile(parameters_file).splitlines()
1902
    except EnvironmentError, err:
1903
      return False, ("Error while reading the OS parameters file at %s: %s" %
1904
                     (parameters_file, _ErrnoOrStr(err)))
1905
    parameters = [v.split(None, 1) for v in parameters]
1906

    
1907
  os_obj = objects.OS(name=name, path=os_dir,
1908
                      create_script=os_files[constants.OS_SCRIPT_CREATE],
1909
                      export_script=os_files[constants.OS_SCRIPT_EXPORT],
1910
                      import_script=os_files[constants.OS_SCRIPT_IMPORT],
1911
                      rename_script=os_files[constants.OS_SCRIPT_RENAME],
1912
                      verify_script=os_files.get(constants.OS_SCRIPT_VERIFY,
1913
                                                 None),
1914
                      supported_variants=variants,
1915
                      supported_parameters=parameters,
1916
                      api_versions=api_versions)
1917
  return True, os_obj
1918

    
1919

    
1920
def OSFromDisk(name, base_dir=None):
1921
  """Create an OS instance from disk.
1922

1923
  This function will return an OS instance if the given name is a
1924
  valid OS name. Otherwise, it will raise an appropriate
1925
  L{RPCFail} exception, detailing why this is not a valid OS.
1926

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

1930
  @type base_dir: string
1931
  @keyword base_dir: Base directory containing OS installations.
1932
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1933
  @rtype: L{objects.OS}
1934
  @return: the OS instance if we find a valid one
1935
  @raise RPCFail: if we don't find a valid OS
1936

1937
  """
1938
  name_only = name.split("+", 1)[0]
1939
  status, payload = _TryOSFromDisk(name_only, base_dir)
1940

    
1941
  if not status:
1942
    _Fail(payload)
1943

    
1944
  return payload
1945

    
1946

    
1947
def OSCoreEnv(inst_os, os_params, debug=0):
1948
  """Calculate the basic environment for an os script.
1949

1950
  @type inst_os: L{objects.OS}
1951
  @param inst_os: operating system for which the environment is being built
1952
  @type os_params: dict
1953
  @param os_params: the OS parameters
1954
  @type debug: integer
1955
  @param debug: debug level (0 or 1, for OS Api 10)
1956
  @rtype: dict
1957
  @return: dict of environment variables
1958
  @raise errors.BlockDeviceError: if the block device
1959
      cannot be found
1960

1961
  """
1962
  result = {}
1963
  api_version = \
1964
    max(constants.OS_API_VERSIONS.intersection(inst_os.api_versions))
1965
  result['OS_API_VERSION'] = '%d' % api_version
1966
  result['OS_NAME'] = inst_os.name
1967
  result['DEBUG_LEVEL'] = '%d' % debug
1968

    
1969
  # OS variants
1970
  if api_version >= constants.OS_API_V15:
1971
    try:
1972
      variant = inst_os.name.split('+', 1)[1]
1973
    except IndexError:
1974
      variant = inst_os.supported_variants[0]
1975
    result['OS_VARIANT'] = variant
1976

    
1977
  # OS params
1978
  for pname, pvalue in os_params.items():
1979
    result['OSP_%s' % pname.upper()] = pvalue
1980

    
1981
  return result
1982

    
1983

    
1984
def OSEnvironment(instance, inst_os, debug=0):
1985
  """Calculate the environment for an os script.
1986

1987
  @type instance: L{objects.Instance}
1988
  @param instance: target instance for the os script run
1989
  @type inst_os: L{objects.OS}
1990
  @param inst_os: operating system for which the environment is being built
1991
  @type debug: integer
1992
  @param debug: debug level (0 or 1, for OS Api 10)
1993
  @rtype: dict
1994
  @return: dict of environment variables
1995
  @raise errors.BlockDeviceError: if the block device
1996
      cannot be found
1997

1998
  """
1999
  result = OSCoreEnv(inst_os, instance.osparams, debug=debug)
2000

    
2001
  result['INSTANCE_NAME'] = instance.name
2002
  result['INSTANCE_OS'] = instance.os
2003
  result['HYPERVISOR'] = instance.hypervisor
2004
  result['DISK_COUNT'] = '%d' % len(instance.disks)
2005
  result['NIC_COUNT'] = '%d' % len(instance.nics)
2006

    
2007
  # Disks
2008
  for idx, disk in enumerate(instance.disks):
2009
    real_disk = _OpenRealBD(disk)
2010
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
2011
    result['DISK_%d_ACCESS' % idx] = disk.mode
2012
    if constants.HV_DISK_TYPE in instance.hvparams:
2013
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
2014
        instance.hvparams[constants.HV_DISK_TYPE]
2015
    if disk.dev_type in constants.LDS_BLOCK:
2016
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
2017
    elif disk.dev_type == constants.LD_FILE:
2018
      result['DISK_%d_BACKEND_TYPE' % idx] = \
2019
        'file:%s' % disk.physical_id[0]
2020

    
2021
  # NICs
2022
  for idx, nic in enumerate(instance.nics):
2023
    result['NIC_%d_MAC' % idx] = nic.mac
2024
    if nic.ip:
2025
      result['NIC_%d_IP' % idx] = nic.ip
2026
    result['NIC_%d_MODE' % idx] = nic.nicparams[constants.NIC_MODE]
2027
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
2028
      result['NIC_%d_BRIDGE' % idx] = nic.nicparams[constants.NIC_LINK]
2029
    if nic.nicparams[constants.NIC_LINK]:
2030
      result['NIC_%d_LINK' % idx] = nic.nicparams[constants.NIC_LINK]
2031
    if constants.HV_NIC_TYPE in instance.hvparams:
2032
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
2033
        instance.hvparams[constants.HV_NIC_TYPE]
2034

    
2035
  # HV/BE params
2036
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
2037
    for key, value in source.items():
2038
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
2039

    
2040
  return result
2041

    
2042

    
2043
def BlockdevGrow(disk, amount):
2044
  """Grow a stack of block devices.
2045

2046
  This function is called recursively, with the childrens being the
2047
  first ones to resize.
2048

2049
  @type disk: L{objects.Disk}
2050
  @param disk: the disk to be grown
2051
  @rtype: (status, result)
2052
  @return: a tuple with the status of the operation
2053
      (True/False), and the errors message if status
2054
      is False
2055

2056
  """
2057
  r_dev = _RecursiveFindBD(disk)
2058
  if r_dev is None:
2059
    _Fail("Cannot find block device %s", disk)
2060

    
2061
  try:
2062
    r_dev.Grow(amount)
2063
  except errors.BlockDeviceError, err:
2064
    _Fail("Failed to grow block device: %s", err, exc=True)
2065

    
2066

    
2067
def BlockdevSnapshot(disk):
2068
  """Create a snapshot copy of a block device.
2069

2070
  This function is called recursively, and the snapshot is actually created
2071
  just for the leaf lvm backend device.
2072

2073
  @type disk: L{objects.Disk}
2074
  @param disk: the disk to be snapshotted
2075
  @rtype: string
2076
  @return: snapshot disk path
2077

2078
  """
2079
  if disk.dev_type == constants.LD_DRBD8:
2080
    if not disk.children:
2081
      _Fail("DRBD device '%s' without backing storage cannot be snapshotted",
2082
            disk.unique_id)
2083
    return BlockdevSnapshot(disk.children[0])
2084
  elif disk.dev_type == constants.LD_LV:
2085
    r_dev = _RecursiveFindBD(disk)
2086
    if r_dev is not None:
2087
      # FIXME: choose a saner value for the snapshot size
2088
      # let's stay on the safe side and ask for the full size, for now
2089
      return r_dev.Snapshot(disk.size)
2090
    else:
2091
      _Fail("Cannot find block device %s", disk)
2092
  else:
2093
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
2094
          disk.unique_id, disk.dev_type)
2095

    
2096

    
2097
def FinalizeExport(instance, snap_disks):
2098
  """Write out the export configuration information.
2099

2100
  @type instance: L{objects.Instance}
2101
  @param instance: the instance which we export, used for
2102
      saving configuration
2103
  @type snap_disks: list of L{objects.Disk}
2104
  @param snap_disks: list of snapshot block devices, which
2105
      will be used to get the actual name of the dump file
2106

2107
  @rtype: None
2108

2109
  """
2110
  destdir = utils.PathJoin(constants.EXPORT_DIR, instance.name + ".new")
2111
  finaldestdir = utils.PathJoin(constants.EXPORT_DIR, instance.name)
2112

    
2113
  config = objects.SerializableConfigParser()
2114

    
2115
  config.add_section(constants.INISECT_EXP)
2116
  config.set(constants.INISECT_EXP, 'version', '0')
2117
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
2118
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
2119
  config.set(constants.INISECT_EXP, 'os', instance.os)
2120
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
2121

    
2122
  config.add_section(constants.INISECT_INS)
2123
  config.set(constants.INISECT_INS, 'name', instance.name)
2124
  config.set(constants.INISECT_INS, 'memory', '%d' %
2125
             instance.beparams[constants.BE_MEMORY])
2126
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
2127
             instance.beparams[constants.BE_VCPUS])
2128
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
2129
  config.set(constants.INISECT_INS, 'hypervisor', instance.hypervisor)
2130

    
2131
  nic_total = 0
2132
  for nic_count, nic in enumerate(instance.nics):
2133
    nic_total += 1
2134
    config.set(constants.INISECT_INS, 'nic%d_mac' %
2135
               nic_count, '%s' % nic.mac)
2136
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
2137
    for param in constants.NICS_PARAMETER_TYPES:
2138
      config.set(constants.INISECT_INS, 'nic%d_%s' % (nic_count, param),
2139
                 '%s' % nic.nicparams.get(param, None))
2140
  # TODO: redundant: on load can read nics until it doesn't exist
2141
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_total)
2142

    
2143
  disk_total = 0
2144
  for disk_count, disk in enumerate(snap_disks):
2145
    if disk:
2146
      disk_total += 1
2147
      config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
2148
                 ('%s' % disk.iv_name))
2149
      config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
2150
                 ('%s' % disk.physical_id[1]))
2151
      config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
2152
                 ('%d' % disk.size))
2153

    
2154
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_total)
2155

    
2156
  # New-style hypervisor/backend parameters
2157

    
2158
  config.add_section(constants.INISECT_HYP)
2159
  for name, value in instance.hvparams.items():
2160
    if name not in constants.HVC_GLOBALS:
2161
      config.set(constants.INISECT_HYP, name, str(value))
2162

    
2163
  config.add_section(constants.INISECT_BEP)
2164
  for name, value in instance.beparams.items():
2165
    config.set(constants.INISECT_BEP, name, str(value))
2166

    
2167
  config.add_section(constants.INISECT_OSP)
2168
  for name, value in instance.osparams.items():
2169
    config.set(constants.INISECT_OSP, name, str(value))
2170

    
2171
  utils.WriteFile(utils.PathJoin(destdir, constants.EXPORT_CONF_FILE),
2172
                  data=config.Dumps())
2173
  shutil.rmtree(finaldestdir, ignore_errors=True)
2174
  shutil.move(destdir, finaldestdir)
2175

    
2176

    
2177
def ExportInfo(dest):
2178
  """Get export configuration information.
2179

2180
  @type dest: str
2181
  @param dest: directory containing the export
2182

2183
  @rtype: L{objects.SerializableConfigParser}
2184
  @return: a serializable config file containing the
2185
      export info
2186

2187
  """
2188
  cff = utils.PathJoin(dest, constants.EXPORT_CONF_FILE)
2189

    
2190
  config = objects.SerializableConfigParser()
2191
  config.read(cff)
2192

    
2193
  if (not config.has_section(constants.INISECT_EXP) or
2194
      not config.has_section(constants.INISECT_INS)):
2195
    _Fail("Export info file doesn't have the required fields")
2196

    
2197
  return config.Dumps()
2198

    
2199

    
2200
def ListExports():
2201
  """Return a list of exports currently available on this machine.
2202

2203
  @rtype: list
2204
  @return: list of the exports
2205

2206
  """
2207
  if os.path.isdir(constants.EXPORT_DIR):
2208
    return sorted(utils.ListVisibleFiles(constants.EXPORT_DIR))
2209
  else:
2210
    _Fail("No exports directory")
2211

    
2212

    
2213
def RemoveExport(export):
2214
  """Remove an existing export from the node.
2215

2216
  @type export: str
2217
  @param export: the name of the export to remove
2218
  @rtype: None
2219

2220
  """
2221
  target = utils.PathJoin(constants.EXPORT_DIR, export)
2222

    
2223
  try:
2224
    shutil.rmtree(target)
2225
  except EnvironmentError, err:
2226
    _Fail("Error while removing the export: %s", err, exc=True)
2227

    
2228

    
2229
def BlockdevRename(devlist):
2230
  """Rename a list of block devices.
2231

2232
  @type devlist: list of tuples
2233
  @param devlist: list of tuples of the form  (disk,
2234
      new_logical_id, new_physical_id); disk is an
2235
      L{objects.Disk} object describing the current disk,
2236
      and new logical_id/physical_id is the name we
2237
      rename it to
2238
  @rtype: boolean
2239
  @return: True if all renames succeeded, False otherwise
2240

2241
  """
2242
  msgs = []
2243
  result = True
2244
  for disk, unique_id in devlist:
2245
    dev = _RecursiveFindBD(disk)
2246
    if dev is None:
2247
      msgs.append("Can't find device %s in rename" % str(disk))
2248
      result = False
2249
      continue
2250
    try:
2251
      old_rpath = dev.dev_path
2252
      dev.Rename(unique_id)
2253
      new_rpath = dev.dev_path
2254
      if old_rpath != new_rpath:
2255
        DevCacheManager.RemoveCache(old_rpath)
2256
        # FIXME: we should add the new cache information here, like:
2257
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2258
        # but we don't have the owner here - maybe parse from existing
2259
        # cache? for now, we only lose lvm data when we rename, which
2260
        # is less critical than DRBD or MD
2261
    except errors.BlockDeviceError, err:
2262
      msgs.append("Can't rename device '%s' to '%s': %s" %
2263
                  (dev, unique_id, err))
2264
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2265
      result = False
2266
  if not result:
2267
    _Fail("; ".join(msgs))
2268

    
2269

    
2270
def _TransformFileStorageDir(file_storage_dir):
2271
  """Checks whether given file_storage_dir is valid.
2272

2273
  Checks wheter the given file_storage_dir is within the cluster-wide
2274
  default file_storage_dir stored in SimpleStore. Only paths under that
2275
  directory are allowed.
2276

2277
  @type file_storage_dir: str
2278
  @param file_storage_dir: the path to check
2279

2280
  @return: the normalized path if valid, None otherwise
2281

2282
  """
2283
  if not constants.ENABLE_FILE_STORAGE:
2284
    _Fail("File storage disabled at configure time")
2285
  cfg = _GetConfig()
2286
  file_storage_dir = os.path.normpath(file_storage_dir)
2287
  base_file_storage_dir = cfg.GetFileStorageDir()
2288
  if (os.path.commonprefix([file_storage_dir, base_file_storage_dir]) !=
2289
      base_file_storage_dir):
2290
    _Fail("File storage directory '%s' is not under base file"
2291
          " storage directory '%s'", file_storage_dir, base_file_storage_dir)
2292
  return file_storage_dir
2293

    
2294

    
2295
def CreateFileStorageDir(file_storage_dir):
2296
  """Create file storage directory.
2297

2298
  @type file_storage_dir: str
2299
  @param file_storage_dir: directory to create
2300

2301
  @rtype: tuple
2302
  @return: tuple with first element a boolean indicating wheter dir
2303
      creation was successful or not
2304

2305
  """
2306
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2307
  if os.path.exists(file_storage_dir):
2308
    if not os.path.isdir(file_storage_dir):
2309
      _Fail("Specified storage dir '%s' is not a directory",
2310
            file_storage_dir)
2311
  else:
2312
    try:
2313
      os.makedirs(file_storage_dir, 0750)
2314
    except OSError, err:
2315
      _Fail("Cannot create file storage directory '%s': %s",
2316
            file_storage_dir, err, exc=True)
2317

    
2318

    
2319
def RemoveFileStorageDir(file_storage_dir):
2320
  """Remove file storage directory.
2321

2322
  Remove it only if it's empty. If not log an error and return.
2323

2324
  @type file_storage_dir: str
2325
  @param file_storage_dir: the directory we should cleanup
2326
  @rtype: tuple (success,)
2327
  @return: tuple of one element, C{success}, denoting
2328
      whether the operation was successful
2329

2330
  """
2331
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2332
  if os.path.exists(file_storage_dir):
2333
    if not os.path.isdir(file_storage_dir):
2334
      _Fail("Specified Storage directory '%s' is not a directory",
2335
            file_storage_dir)
2336
    # deletes dir only if empty, otherwise we want to fail the rpc call
2337
    try:
2338
      os.rmdir(file_storage_dir)
2339
    except OSError, err:
2340
      _Fail("Cannot remove file storage directory '%s': %s",
2341
            file_storage_dir, err)
2342

    
2343

    
2344
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2345
  """Rename the file storage directory.
2346

2347
  @type old_file_storage_dir: str
2348
  @param old_file_storage_dir: the current path
2349
  @type new_file_storage_dir: str
2350
  @param new_file_storage_dir: the name we should rename to
2351
  @rtype: tuple (success,)
2352
  @return: tuple of one element, C{success}, denoting
2353
      whether the operation was successful
2354

2355
  """
2356
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2357
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2358
  if not os.path.exists(new_file_storage_dir):
2359
    if os.path.isdir(old_file_storage_dir):
2360
      try:
2361
        os.rename(old_file_storage_dir, new_file_storage_dir)
2362
      except OSError, err:
2363
        _Fail("Cannot rename '%s' to '%s': %s",
2364
              old_file_storage_dir, new_file_storage_dir, err)
2365
    else:
2366
      _Fail("Specified storage dir '%s' is not a directory",
2367
            old_file_storage_dir)
2368
  else:
2369
    if os.path.exists(old_file_storage_dir):
2370
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2371
            old_file_storage_dir, new_file_storage_dir)
2372

    
2373

    
2374
def _EnsureJobQueueFile(file_name):
2375
  """Checks whether the given filename is in the queue directory.
2376

2377
  @type file_name: str
2378
  @param file_name: the file name we should check
2379
  @rtype: None
2380
  @raises RPCFail: if the file is not valid
2381

2382
  """
2383
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2384
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2385

    
2386
  if not result:
2387
    _Fail("Passed job queue file '%s' does not belong to"
2388
          " the queue directory '%s'", file_name, queue_dir)
2389

    
2390

    
2391
def JobQueueUpdate(file_name, content):
2392
  """Updates a file in the queue directory.
2393

2394
  This is just a wrapper over L{utils.WriteFile}, with proper
2395
  checking.
2396

2397
  @type file_name: str
2398
  @param file_name: the job file name
2399
  @type content: str
2400
  @param content: the new job contents
2401
  @rtype: boolean
2402
  @return: the success of the operation
2403

2404
  """
2405
  _EnsureJobQueueFile(file_name)
2406

    
2407
  # Write and replace the file atomically
2408
  utils.WriteFile(file_name, data=_Decompress(content))
2409

    
2410

    
2411
def JobQueueRename(old, new):
2412
  """Renames a job queue file.
2413

2414
  This is just a wrapper over os.rename with proper checking.
2415

2416
  @type old: str
2417
  @param old: the old (actual) file name
2418
  @type new: str
2419
  @param new: the desired file name
2420
  @rtype: tuple
2421
  @return: the success of the operation and payload
2422

2423
  """
2424
  _EnsureJobQueueFile(old)
2425
  _EnsureJobQueueFile(new)
2426

    
2427
  utils.RenameFile(old, new, mkdir=True)
2428

    
2429

    
2430
def BlockdevClose(instance_name, disks):
2431
  """Closes the given block devices.
2432

2433
  This means they will be switched to secondary mode (in case of
2434
  DRBD).
2435

2436
  @param instance_name: if the argument is not empty, the symlinks
2437
      of this instance will be removed
2438
  @type disks: list of L{objects.Disk}
2439
  @param disks: the list of disks to be closed
2440
  @rtype: tuple (success, message)
2441
  @return: a tuple of success and message, where success
2442
      indicates the succes of the operation, and message
2443
      which will contain the error details in case we
2444
      failed
2445

2446
  """
2447
  bdevs = []
2448
  for cf in disks:
2449
    rd = _RecursiveFindBD(cf)
2450
    if rd is None:
2451
      _Fail("Can't find device %s", cf)
2452
    bdevs.append(rd)
2453

    
2454
  msg = []
2455
  for rd in bdevs:
2456
    try:
2457
      rd.Close()
2458
    except errors.BlockDeviceError, err:
2459
      msg.append(str(err))
2460
  if msg:
2461
    _Fail("Can't make devices secondary: %s", ",".join(msg))
2462
  else:
2463
    if instance_name:
2464
      _RemoveBlockDevLinks(instance_name, disks)
2465

    
2466

    
2467
def ValidateHVParams(hvname, hvparams):
2468
  """Validates the given hypervisor parameters.
2469

2470
  @type hvname: string
2471
  @param hvname: the hypervisor name
2472
  @type hvparams: dict
2473
  @param hvparams: the hypervisor parameters to be validated
2474
  @rtype: None
2475

2476
  """
2477
  try:
2478
    hv_type = hypervisor.GetHypervisor(hvname)
2479
    hv_type.ValidateParameters(hvparams)
2480
  except errors.HypervisorError, err:
2481
    _Fail(str(err), log=False)
2482

    
2483

    
2484
def _CheckOSPList(os_obj, parameters):
2485
  """Check whether a list of parameters is supported by the OS.
2486

2487
  @type os_obj: L{objects.OS}
2488
  @param os_obj: OS object to check
2489
  @type parameters: list
2490
  @param parameters: the list of parameters to check
2491

2492
  """
2493
  supported = [v[0] for v in os_obj.supported_parameters]
2494
  delta = frozenset(parameters).difference(supported)
2495
  if delta:
2496
    _Fail("The following parameters are not supported"
2497
          " by the OS %s: %s" % (os_obj.name, utils.CommaJoin(delta)))
2498

    
2499

    
2500
def ValidateOS(required, osname, checks, osparams):
2501
  """Validate the given OS' parameters.
2502

2503
  @type required: boolean
2504
  @param required: whether absence of the OS should translate into
2505
      failure or not
2506
  @type osname: string
2507
  @param osname: the OS to be validated
2508
  @type checks: list
2509
  @param checks: list of the checks to run (currently only 'parameters')
2510
  @type osparams: dict
2511
  @param osparams: dictionary with OS parameters
2512
  @rtype: boolean
2513
  @return: True if the validation passed, or False if the OS was not
2514
      found and L{required} was false
2515

2516
  """
2517
  if not constants.OS_VALIDATE_CALLS.issuperset(checks):
2518
    _Fail("Unknown checks required for OS %s: %s", osname,
2519
          set(checks).difference(constants.OS_VALIDATE_CALLS))
2520

    
2521
  name_only = osname.split("+", 1)[0]
2522
  status, tbv = _TryOSFromDisk(name_only, None)
2523

    
2524
  if not status:
2525
    if required:
2526
      _Fail(tbv)
2527
    else:
2528
      return False
2529

    
2530
  if max(tbv.api_versions) < constants.OS_API_V20:
2531
    return True
2532

    
2533
  if constants.OS_VALIDATE_PARAMETERS in checks:
2534
    _CheckOSPList(tbv, osparams.keys())
2535

    
2536
  validate_env = OSCoreEnv(tbv, osparams)
2537
  result = utils.RunCmd([tbv.verify_script] + checks, env=validate_env,
2538
                        cwd=tbv.path)
2539
  if result.failed:
2540
    logging.error("os validate command '%s' returned error: %s output: %s",
2541
                  result.cmd, result.fail_reason, result.output)
2542
    _Fail("OS validation script failed (%s), output: %s",
2543
          result.fail_reason, result.output, log=False)
2544

    
2545
  return True
2546

    
2547

    
2548
def DemoteFromMC():
2549
  """Demotes the current node from master candidate role.
2550

2551
  """
2552
  # try to ensure we're not the master by mistake
2553
  master, myself = ssconf.GetMasterAndMyself()
2554
  if master == myself:
2555
    _Fail("ssconf status shows I'm the master node, will not demote")
2556

    
2557
  result = utils.RunCmd([constants.DAEMON_UTIL, "check", constants.MASTERD])
2558
  if not result.failed:
2559
    _Fail("The master daemon is running, will not demote")
2560

    
2561
  try:
2562
    if os.path.isfile(constants.CLUSTER_CONF_FILE):
2563
      utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2564
  except EnvironmentError, err:
2565
    if err.errno != errno.ENOENT:
2566
      _Fail("Error while backing up cluster file: %s", err, exc=True)
2567

    
2568
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2569

    
2570

    
2571
def _GetX509Filenames(cryptodir, name):
2572
  """Returns the full paths for the private key and certificate.
2573

2574
  """
2575
  return (utils.PathJoin(cryptodir, name),
2576
          utils.PathJoin(cryptodir, name, _X509_KEY_FILE),
2577
          utils.PathJoin(cryptodir, name, _X509_CERT_FILE))
2578

    
2579

    
2580
def CreateX509Certificate(validity, cryptodir=constants.CRYPTO_KEYS_DIR):
2581
  """Creates a new X509 certificate for SSL/TLS.
2582

2583
  @type validity: int
2584
  @param validity: Validity in seconds
2585
  @rtype: tuple; (string, string)
2586
  @return: Certificate name and public part
2587

2588
  """
2589
  (key_pem, cert_pem) = \
2590
    utils.GenerateSelfSignedX509Cert(netutils.Hostname.GetSysName(),
2591
                                     min(validity, _MAX_SSL_CERT_VALIDITY))
2592

    
2593
  cert_dir = tempfile.mkdtemp(dir=cryptodir,
2594
                              prefix="x509-%s-" % utils.TimestampForFilename())
2595
  try:
2596
    name = os.path.basename(cert_dir)
2597
    assert len(name) > 5
2598

    
2599
    (_, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
2600

    
2601
    utils.WriteFile(key_file, mode=0400, data=key_pem)
2602
    utils.WriteFile(cert_file, mode=0400, data=cert_pem)
2603

    
2604
    # Never return private key as it shouldn't leave the node
2605
    return (name, cert_pem)
2606
  except Exception:
2607
    shutil.rmtree(cert_dir, ignore_errors=True)
2608
    raise
2609

    
2610

    
2611
def RemoveX509Certificate(name, cryptodir=constants.CRYPTO_KEYS_DIR):
2612
  """Removes a X509 certificate.
2613

2614
  @type name: string
2615
  @param name: Certificate name
2616

2617
  """
2618
  (cert_dir, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
2619

    
2620
  utils.RemoveFile(key_file)
2621
  utils.RemoveFile(cert_file)
2622

    
2623
  try:
2624
    os.rmdir(cert_dir)
2625
  except EnvironmentError, err:
2626
    _Fail("Cannot remove certificate directory '%s': %s",
2627
          cert_dir, err)
2628

    
2629

    
2630
def _GetImportExportIoCommand(instance, mode, ieio, ieargs):
2631
  """Returns the command for the requested input/output.
2632

2633
  @type instance: L{objects.Instance}
2634
  @param instance: The instance object
2635
  @param mode: Import/export mode
2636
  @param ieio: Input/output type
2637
  @param ieargs: Input/output arguments
2638

2639
  """
2640
  assert mode in (constants.IEM_IMPORT, constants.IEM_EXPORT)
2641

    
2642
  env = None
2643
  prefix = None
2644
  suffix = None
2645
  exp_size = None
2646

    
2647
  if ieio == constants.IEIO_FILE:
2648
    (filename, ) = ieargs
2649

    
2650
    if not utils.IsNormAbsPath(filename):
2651
      _Fail("Path '%s' is not normalized or absolute", filename)
2652

    
2653
    directory = os.path.normpath(os.path.dirname(filename))
2654

    
2655
    if (os.path.commonprefix([constants.EXPORT_DIR, directory]) !=
2656
        constants.EXPORT_DIR):
2657
      _Fail("File '%s' is not under exports directory '%s'",
2658
            filename, constants.EXPORT_DIR)
2659

    
2660
    # Create directory
2661
    utils.Makedirs(directory, mode=0750)
2662

    
2663
    quoted_filename = utils.ShellQuote(filename)
2664

    
2665
    if mode == constants.IEM_IMPORT:
2666
      suffix = "> %s" % quoted_filename
2667
    elif mode == constants.IEM_EXPORT:
2668
      suffix = "< %s" % quoted_filename
2669

    
2670
      # Retrieve file size
2671
      try:
2672
        st = os.stat(filename)
2673
      except EnvironmentError, err:
2674
        logging.error("Can't stat(2) %s: %s", filename, err)
2675
      else:
2676
        exp_size = utils.BytesToMebibyte(st.st_size)
2677

    
2678
  elif ieio == constants.IEIO_RAW_DISK:
2679
    (disk, ) = ieargs
2680

    
2681
    real_disk = _OpenRealBD(disk)
2682

    
2683
    if mode == constants.IEM_IMPORT:
2684
      # we set here a smaller block size as, due to transport buffering, more
2685
      # than 64-128k will mostly ignored; we use nocreat to fail if the device
2686
      # is not already there or we pass a wrong path; we use notrunc to no
2687
      # attempt truncate on an LV device; we use oflag=dsync to not buffer too
2688
      # much memory; this means that at best, we flush every 64k, which will
2689
      # not be very fast
2690
      suffix = utils.BuildShellCmd(("| dd of=%s conv=nocreat,notrunc"
2691
                                    " bs=%s oflag=dsync"),
2692
                                    real_disk.dev_path,
2693
                                    str(64 * 1024))
2694

    
2695
    elif mode == constants.IEM_EXPORT:
2696
      # the block size on the read dd is 1MiB to match our units
2697
      prefix = utils.BuildShellCmd("dd if=%s bs=%s count=%s |",
2698
                                   real_disk.dev_path,
2699
                                   str(1024 * 1024), # 1 MB
2700
                                   str(disk.size))
2701
      exp_size = disk.size
2702

    
2703
  elif ieio == constants.IEIO_SCRIPT:
2704
    (disk, disk_index, ) = ieargs
2705

    
2706
    assert isinstance(disk_index, (int, long))
2707

    
2708
    real_disk = _OpenRealBD(disk)
2709

    
2710
    inst_os = OSFromDisk(instance.os)
2711
    env = OSEnvironment(instance, inst_os)
2712

    
2713
    if mode == constants.IEM_IMPORT:
2714
      env["IMPORT_DEVICE"] = env["DISK_%d_PATH" % disk_index]
2715
      env["IMPORT_INDEX"] = str(disk_index)
2716
      script = inst_os.import_script
2717

    
2718
    elif mode == constants.IEM_EXPORT:
2719
      env["EXPORT_DEVICE"] = real_disk.dev_path
2720
      env["EXPORT_INDEX"] = str(disk_index)
2721
      script = inst_os.export_script
2722

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

    
2726
    if mode == constants.IEM_IMPORT:
2727
      suffix = "| %s" % script_cmd
2728

    
2729
    elif mode == constants.IEM_EXPORT:
2730
      prefix = "%s |" % script_cmd
2731

    
2732
    # Let script predict size
2733
    exp_size = constants.IE_CUSTOM_SIZE
2734

    
2735
  else:
2736
    _Fail("Invalid %s I/O mode %r", mode, ieio)
2737

    
2738
  return (env, prefix, suffix, exp_size)
2739

    
2740

    
2741
def _CreateImportExportStatusDir(prefix):
2742
  """Creates status directory for import/export.
2743

2744
  """
2745
  return tempfile.mkdtemp(dir=constants.IMPORT_EXPORT_DIR,
2746
                          prefix=("%s-%s-" %
2747
                                  (prefix, utils.TimestampForFilename())))
2748

    
2749

    
2750
def StartImportExportDaemon(mode, opts, host, port, instance, ieio, ieioargs):
2751
  """Starts an import or export daemon.
2752

2753
  @param mode: Import/output mode
2754
  @type opts: L{objects.ImportExportOptions}
2755
  @param opts: Daemon options
2756
  @type host: string
2757
  @param host: Remote host for export (None for import)
2758
  @type port: int
2759
  @param port: Remote port for export (None for import)
2760
  @type instance: L{objects.Instance}
2761
  @param instance: Instance object
2762
  @param ieio: Input/output type
2763
  @param ieioargs: Input/output arguments
2764

2765
  """
2766
  if mode == constants.IEM_IMPORT:
2767
    prefix = "import"
2768

    
2769
    if not (host is None and port is None):
2770
      _Fail("Can not specify host or port on import")
2771

    
2772
  elif mode == constants.IEM_EXPORT:
2773
    prefix = "export"
2774

    
2775
    if host is None or port is None:
2776
      _Fail("Host and port must be specified for an export")
2777

    
2778
  else:
2779
    _Fail("Invalid mode %r", mode)
2780

    
2781
  if (opts.key_name is None) ^ (opts.ca_pem is None):
2782
    _Fail("Cluster certificate can only be used for both key and CA")
2783

    
2784
  (cmd_env, cmd_prefix, cmd_suffix, exp_size) = \
2785
    _GetImportExportIoCommand(instance, mode, ieio, ieioargs)
2786

    
2787
  if opts.key_name is None:
2788
    # Use server.pem
2789
    key_path = constants.NODED_CERT_FILE
2790
    cert_path = constants.NODED_CERT_FILE
2791
    assert opts.ca_pem is None
2792
  else:
2793
    (_, key_path, cert_path) = _GetX509Filenames(constants.CRYPTO_KEYS_DIR,
2794
                                                 opts.key_name)
2795
    assert opts.ca_pem is not None
2796

    
2797
  for i in [key_path, cert_path]:
2798
    if not os.path.exists(i):
2799
      _Fail("File '%s' does not exist" % i)
2800

    
2801
  status_dir = _CreateImportExportStatusDir(prefix)
2802
  try:
2803
    status_file = utils.PathJoin(status_dir, _IES_STATUS_FILE)
2804
    pid_file = utils.PathJoin(status_dir, _IES_PID_FILE)
2805
    ca_file = utils.PathJoin(status_dir, _IES_CA_FILE)
2806

    
2807
    if opts.ca_pem is None:
2808
      # Use server.pem
2809
      ca = utils.ReadFile(constants.NODED_CERT_FILE)
2810
    else:
2811
      ca = opts.ca_pem
2812

    
2813
    # Write CA file
2814
    utils.WriteFile(ca_file, data=ca, mode=0400)
2815

    
2816
    cmd = [
2817
      constants.IMPORT_EXPORT_DAEMON,
2818
      status_file, mode,
2819
      "--key=%s" % key_path,
2820
      "--cert=%s" % cert_path,
2821
      "--ca=%s" % ca_file,
2822
      ]
2823

    
2824
    if host:
2825
      cmd.append("--host=%s" % host)
2826

    
2827
    if port:
2828
      cmd.append("--port=%s" % port)
2829

    
2830
    if opts.compress:
2831
      cmd.append("--compress=%s" % opts.compress)
2832

    
2833
    if opts.magic:
2834
      cmd.append("--magic=%s" % opts.magic)
2835

    
2836
    if exp_size is not None:
2837
      cmd.append("--expected-size=%s" % exp_size)
2838

    
2839
    if cmd_prefix:
2840
      cmd.append("--cmd-prefix=%s" % cmd_prefix)
2841

    
2842
    if cmd_suffix:
2843
      cmd.append("--cmd-suffix=%s" % cmd_suffix)
2844

    
2845
    logfile = _InstanceLogName(prefix, instance.os, instance.name)
2846

    
2847
    # TODO: Once _InstanceLogName uses tempfile.mkstemp, StartDaemon has
2848
    # support for receiving a file descriptor for output
2849
    utils.StartDaemon(cmd, env=cmd_env, pidfile=pid_file,
2850
                      output=logfile)
2851

    
2852
    # The import/export name is simply the status directory name
2853
    return os.path.basename(status_dir)
2854

    
2855
  except Exception:
2856
    shutil.rmtree(status_dir, ignore_errors=True)
2857
    raise
2858

    
2859

    
2860
def GetImportExportStatus(names):
2861
  """Returns import/export daemon status.
2862

2863
  @type names: sequence
2864
  @param names: List of names
2865
  @rtype: List of dicts
2866
  @return: Returns a list of the state of each named import/export or None if a
2867
           status couldn't be read
2868

2869
  """
2870
  result = []
2871

    
2872
  for name in names:
2873
    status_file = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name,
2874
                                 _IES_STATUS_FILE)
2875

    
2876
    try:
2877
      data = utils.ReadFile(status_file)
2878
    except EnvironmentError, err:
2879
      if err.errno != errno.ENOENT:
2880
        raise
2881
      data = None
2882

    
2883
    if not data:
2884
      result.append(None)
2885
      continue
2886

    
2887
    result.append(serializer.LoadJson(data))
2888

    
2889
  return result
2890

    
2891

    
2892
def AbortImportExport(name):
2893
  """Sends SIGTERM to a running import/export daemon.
2894

2895
  """
2896
  logging.info("Abort import/export %s", name)
2897

    
2898
  status_dir = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name)
2899
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
2900

    
2901
  if pid:
2902
    logging.info("Import/export %s is running with PID %s, sending SIGTERM",
2903
                 name, pid)
2904
    utils.IgnoreProcessNotFound(os.kill, pid, signal.SIGTERM)
2905

    
2906

    
2907
def CleanupImportExport(name):
2908
  """Cleanup after an import or export.
2909

2910
  If the import/export daemon is still running it's killed. Afterwards the
2911
  whole status directory is removed.
2912

2913
  """
2914
  logging.info("Finalizing import/export %s", name)
2915

    
2916
  status_dir = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name)
2917

    
2918
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
2919

    
2920
  if pid:
2921
    logging.info("Import/export %s is still running with PID %s",
2922
                 name, pid)
2923
    utils.KillProcess(pid, waitpid=False)
2924

    
2925
  shutil.rmtree(status_dir, ignore_errors=True)
2926

    
2927

    
2928
def _FindDisks(nodes_ip, disks):
2929
  """Sets the physical ID on disks and returns the block devices.
2930

2931
  """
2932
  # set the correct physical ID
2933
  my_name = netutils.Hostname.GetSysName()
2934
  for cf in disks:
2935
    cf.SetPhysicalID(my_name, nodes_ip)
2936

    
2937
  bdevs = []
2938

    
2939
  for cf in disks:
2940
    rd = _RecursiveFindBD(cf)
2941
    if rd is None:
2942
      _Fail("Can't find device %s", cf)
2943
    bdevs.append(rd)
2944
  return bdevs
2945

    
2946

    
2947
def DrbdDisconnectNet(nodes_ip, disks):
2948
  """Disconnects the network on a list of drbd devices.
2949

2950
  """
2951
  bdevs = _FindDisks(nodes_ip, disks)
2952

    
2953
  # disconnect disks
2954
  for rd in bdevs:
2955
    try:
2956
      rd.DisconnectNet()
2957
    except errors.BlockDeviceError, err:
2958
      _Fail("Can't change network configuration to standalone mode: %s",
2959
            err, exc=True)
2960

    
2961

    
2962
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
2963
  """Attaches the network on a list of drbd devices.
2964

2965
  """
2966
  bdevs = _FindDisks(nodes_ip, disks)
2967

    
2968
  if multimaster:
2969
    for idx, rd in enumerate(bdevs):
2970
      try:
2971
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
2972
      except EnvironmentError, err:
2973
        _Fail("Can't create symlink: %s", err)
2974
  # reconnect disks, switch to new master configuration and if
2975
  # needed primary mode
2976
  for rd in bdevs:
2977
    try:
2978
      rd.AttachNet(multimaster)
2979
    except errors.BlockDeviceError, err:
2980
      _Fail("Can't change network configuration: %s", err)
2981

    
2982
  # wait until the disks are connected; we need to retry the re-attach
2983
  # if the device becomes standalone, as this might happen if the one
2984
  # node disconnects and reconnects in a different mode before the
2985
  # other node reconnects; in this case, one or both of the nodes will
2986
  # decide it has wrong configuration and switch to standalone
2987

    
2988
  def _Attach():
2989
    all_connected = True
2990

    
2991
    for rd in bdevs:
2992
      stats = rd.GetProcStatus()
2993

    
2994
      all_connected = (all_connected and
2995
                       (stats.is_connected or stats.is_in_resync))
2996

    
2997
      if stats.is_standalone:
2998
        # peer had different config info and this node became
2999
        # standalone, even though this should not happen with the
3000
        # new staged way of changing disk configs
3001
        try:
3002
          rd.AttachNet(multimaster)
3003
        except errors.BlockDeviceError, err:
3004
          _Fail("Can't change network configuration: %s", err)
3005

    
3006
    if not all_connected:
3007
      raise utils.RetryAgain()
3008

    
3009
  try:
3010
    # Start with a delay of 100 miliseconds and go up to 5 seconds
3011
    utils.Retry(_Attach, (0.1, 1.5, 5.0), 2 * 60)
3012
  except utils.RetryTimeout:
3013
    _Fail("Timeout in disk reconnecting")
3014

    
3015
  if multimaster:
3016
    # change to primary mode
3017
    for rd in bdevs:
3018
      try:
3019
        rd.Open()
3020
      except errors.BlockDeviceError, err:
3021
        _Fail("Can't change to primary mode: %s", err)
3022

    
3023

    
3024
def DrbdWaitSync(nodes_ip, disks):
3025
  """Wait until DRBDs have synchronized.
3026

3027
  """
3028
  def _helper(rd):
3029
    stats = rd.GetProcStatus()
3030
    if not (stats.is_connected or stats.is_in_resync):
3031
      raise utils.RetryAgain()
3032
    return stats
3033

    
3034
  bdevs = _FindDisks(nodes_ip, disks)
3035

    
3036
  min_resync = 100
3037
  alldone = True
3038
  for rd in bdevs:
3039
    try:
3040
      # poll each second for 15 seconds
3041
      stats = utils.Retry(_helper, 1, 15, args=[rd])
3042
    except utils.RetryTimeout:
3043
      stats = rd.GetProcStatus()
3044
      # last check
3045
      if not (stats.is_connected or stats.is_in_resync):
3046
        _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
3047
    alldone = alldone and (not stats.is_in_resync)
3048
    if stats.sync_percent is not None:
3049
      min_resync = min(min_resync, stats.sync_percent)
3050

    
3051
  return (alldone, min_resync)
3052

    
3053

    
3054
def GetDrbdUsermodeHelper():
3055
  """Returns DRBD usermode helper currently configured.
3056

3057
  """
3058
  try:
3059
    return bdev.BaseDRBD.GetUsermodeHelper()
3060
  except errors.BlockDeviceError, err:
3061
    _Fail(str(err))
3062

    
3063

    
3064
def PowercycleNode(hypervisor_type):
3065
  """Hard-powercycle the node.
3066

3067
  Because we need to return first, and schedule the powercycle in the
3068
  background, we won't be able to report failures nicely.
3069

3070
  """
3071
  hyper = hypervisor.GetHypervisor(hypervisor_type)
3072
  try:
3073
    pid = os.fork()
3074
  except OSError:
3075
    # if we can't fork, we'll pretend that we're in the child process
3076
    pid = 0
3077
  if pid > 0:
3078
    return "Reboot scheduled in 5 seconds"
3079
  # ensure the child is running on ram
3080
  try:
3081
    utils.Mlockall()
3082
  except Exception: # pylint: disable-msg=W0703
3083
    pass
3084
  time.sleep(5)
3085
  hyper.PowercycleNode()
3086

    
3087

    
3088
class HooksRunner(object):
3089
  """Hook runner.
3090

3091
  This class is instantiated on the node side (ganeti-noded) and not
3092
  on the master side.
3093

3094
  """
3095
  def __init__(self, hooks_base_dir=None):
3096
    """Constructor for hooks runner.
3097

3098
    @type hooks_base_dir: str or None
3099
    @param hooks_base_dir: if not None, this overrides the
3100
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
3101

3102
    """
3103
    if hooks_base_dir is None:
3104
      hooks_base_dir = constants.HOOKS_BASE_DIR
3105
    # yeah, _BASE_DIR is not valid for attributes, we use it like a
3106
    # constant
3107
    self._BASE_DIR = hooks_base_dir # pylint: disable-msg=C0103
3108

    
3109
  def RunHooks(self, hpath, phase, env):
3110
    """Run the scripts in the hooks directory.
3111

3112
    @type hpath: str
3113
    @param hpath: the path to the hooks directory which
3114
        holds the scripts
3115
    @type phase: str
3116
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
3117
        L{constants.HOOKS_PHASE_POST}
3118
    @type env: dict
3119
    @param env: dictionary with the environment for the hook
3120
    @rtype: list
3121
    @return: list of 3-element tuples:
3122
      - script path
3123
      - script result, either L{constants.HKR_SUCCESS} or
3124
        L{constants.HKR_FAIL}
3125
      - output of the script
3126

3127
    @raise errors.ProgrammerError: for invalid input
3128
        parameters
3129

3130
    """
3131
    if phase == constants.HOOKS_PHASE_PRE:
3132
      suffix = "pre"
3133
    elif phase == constants.HOOKS_PHASE_POST:
3134
      suffix = "post"
3135
    else:
3136
      _Fail("Unknown hooks phase '%s'", phase)
3137

    
3138

    
3139
    subdir = "%s-%s.d" % (hpath, suffix)
3140
    dir_name = utils.PathJoin(self._BASE_DIR, subdir)
3141

    
3142
    results = []
3143

    
3144
    if not os.path.isdir(dir_name):
3145
      # for non-existing/non-dirs, we simply exit instead of logging a
3146
      # warning at every operation
3147
      return results
3148

    
3149
    runparts_results = utils.RunParts(dir_name, env=env, reset_env=True)
3150

    
3151
    for (relname, relstatus, runresult)  in runparts_results:
3152
      if relstatus == constants.RUNPARTS_SKIP:
3153
        rrval = constants.HKR_SKIP
3154
        output = ""
3155
      elif relstatus == constants.RUNPARTS_ERR:
3156
        rrval = constants.HKR_FAIL
3157
        output = "Hook script execution error: %s" % runresult
3158
      elif relstatus == constants.RUNPARTS_RUN:
3159
        if runresult.failed:
3160
          rrval = constants.HKR_FAIL
3161
        else:
3162
          rrval = constants.HKR_SUCCESS
3163
        output = utils.SafeEncode(runresult.output.strip())
3164
      results.append(("%s/%s" % (subdir, relname), rrval, output))
3165

    
3166
    return results
3167

    
3168

    
3169
class IAllocatorRunner(object):
3170
  """IAllocator runner.
3171

3172
  This class is instantiated on the node side (ganeti-noded) and not on
3173
  the master side.
3174

3175
  """
3176
  @staticmethod
3177
  def Run(name, idata):
3178
    """Run an iallocator script.
3179

3180
    @type name: str
3181
    @param name: the iallocator script name
3182
    @type idata: str
3183
    @param idata: the allocator input data
3184

3185
    @rtype: tuple
3186
    @return: two element tuple of:
3187
       - status
3188
       - either error message or stdout of allocator (for success)
3189

3190
    """
3191
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
3192
                                  os.path.isfile)
3193
    if alloc_script is None:
3194
      _Fail("iallocator module '%s' not found in the search path", name)
3195

    
3196
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
3197
    try:
3198
      os.write(fd, idata)
3199
      os.close(fd)
3200
      result = utils.RunCmd([alloc_script, fin_name])
3201
      if result.failed:
3202
        _Fail("iallocator module '%s' failed: %s, output '%s'",
3203
              name, result.fail_reason, result.output)
3204
    finally:
3205
      os.unlink(fin_name)
3206

    
3207
    return result.stdout
3208

    
3209

    
3210
class DevCacheManager(object):
3211
  """Simple class for managing a cache of block device information.
3212

3213
  """
3214
  _DEV_PREFIX = "/dev/"
3215
  _ROOT_DIR = constants.BDEV_CACHE_DIR
3216

    
3217
  @classmethod
3218
  def _ConvertPath(cls, dev_path):
3219
    """Converts a /dev/name path to the cache file name.
3220

3221
    This replaces slashes with underscores and strips the /dev
3222
    prefix. It then returns the full path to the cache file.
3223

3224
    @type dev_path: str
3225
    @param dev_path: the C{/dev/} path name
3226
    @rtype: str
3227
    @return: the converted path name
3228

3229
    """
3230
    if dev_path.startswith(cls._DEV_PREFIX):
3231
      dev_path = dev_path[len(cls._DEV_PREFIX):]
3232
    dev_path = dev_path.replace("/", "_")
3233
    fpath = utils.PathJoin(cls._ROOT_DIR, "bdev_%s" % dev_path)
3234
    return fpath
3235

    
3236
  @classmethod
3237
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
3238
    """Updates the cache information for a given device.
3239

3240
    @type dev_path: str
3241
    @param dev_path: the pathname of the device
3242
    @type owner: str
3243
    @param owner: the owner (instance name) of the device
3244
    @type on_primary: bool
3245
    @param on_primary: whether this is the primary
3246
        node nor not
3247
    @type iv_name: str
3248
    @param iv_name: the instance-visible name of the
3249
        device, as in objects.Disk.iv_name
3250

3251
    @rtype: None
3252

3253
    """
3254
    if dev_path is None:
3255
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
3256
      return
3257
    fpath = cls._ConvertPath(dev_path)
3258
    if on_primary:
3259
      state = "primary"
3260
    else:
3261
      state = "secondary"
3262
    if iv_name is None:
3263
      iv_name = "not_visible"
3264
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
3265
    try:
3266
      utils.WriteFile(fpath, data=fdata)
3267
    except EnvironmentError, err:
3268
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
3269

    
3270
  @classmethod
3271
  def RemoveCache(cls, dev_path):
3272
    """Remove data for a dev_path.
3273

3274
    This is just a wrapper over L{utils.RemoveFile} with a converted
3275
    path name and logging.
3276

3277
    @type dev_path: str
3278
    @param dev_path: the pathname of the device
3279

3280
    @rtype: None
3281

3282
    """
3283
    if dev_path is None:
3284
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
3285
      return
3286
    fpath = cls._ConvertPath(dev_path)
3287
    try:
3288
      utils.RemoveFile(fpath)
3289
    except EnvironmentError, err:
3290
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)