Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ 690e509d

History | View | Annotate | Download (138.1 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 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=E1103,C0302
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
# C0302: This module has become too big and should be split up
38

    
39

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

    
54
from ganeti import errors
55
from ganeti import utils
56
from ganeti import ssh
57
from ganeti import hypervisor
58
from ganeti import constants
59
from ganeti.storage import bdev
60
from ganeti.storage import drbd
61
from ganeti.storage import filestorage
62
from ganeti import objects
63
from ganeti import ssconf
64
from ganeti import serializer
65
from ganeti import netutils
66
from ganeti import runtime
67
from ganeti import compat
68
from ganeti import pathutils
69
from ganeti import vcluster
70
from ganeti import ht
71
from ganeti.storage.base import BlockDev
72
from ganeti.storage.drbd import DRBD8
73
from ganeti import hooksmaster
74

    
75

    
76
_BOOT_ID_PATH = "/proc/sys/kernel/random/boot_id"
77
_ALLOWED_CLEAN_DIRS = compat.UniqueFrozenset([
78
  pathutils.DATA_DIR,
79
  pathutils.JOB_QUEUE_ARCHIVE_DIR,
80
  pathutils.QUEUE_DIR,
81
  pathutils.CRYPTO_KEYS_DIR,
82
  ])
83
_MAX_SSL_CERT_VALIDITY = 7 * 24 * 60 * 60
84
_X509_KEY_FILE = "key"
85
_X509_CERT_FILE = "cert"
86
_IES_STATUS_FILE = "status"
87
_IES_PID_FILE = "pid"
88
_IES_CA_FILE = "ca"
89

    
90
#: Valid LVS output line regex
91
_LVSLINE_REGEX = re.compile(r"^ *([^|]+)\|([^|]+)\|([0-9.]+)\|([^|]{6,})\|?$")
92

    
93
# Actions for the master setup script
94
_MASTER_START = "start"
95
_MASTER_STOP = "stop"
96

    
97
#: Maximum file permissions for restricted command directory and executables
98
_RCMD_MAX_MODE = (stat.S_IRWXU |
99
                  stat.S_IRGRP | stat.S_IXGRP |
100
                  stat.S_IROTH | stat.S_IXOTH)
101

    
102
#: Delay before returning an error for restricted commands
103
_RCMD_INVALID_DELAY = 10
104

    
105
#: How long to wait to acquire lock for restricted commands (shorter than
106
#: L{_RCMD_INVALID_DELAY}) to reduce blockage of noded forks when many
107
#: command requests arrive
108
_RCMD_LOCK_TIMEOUT = _RCMD_INVALID_DELAY * 0.8
109

    
110

    
111
class RPCFail(Exception):
112
  """Class denoting RPC failure.
113

114
  Its argument is the error message.
115

116
  """
117

    
118

    
119
def _GetInstReasonFilename(instance_name):
120
  """Path of the file containing the reason of the instance status change.
121

122
  @type instance_name: string
123
  @param instance_name: The name of the instance
124
  @rtype: string
125
  @return: The path of the file
126

127
  """
128
  return utils.PathJoin(pathutils.INSTANCE_REASON_DIR, instance_name)
129

    
130

    
131
def _StoreInstReasonTrail(instance_name, trail):
132
  """Serialize a reason trail related to an instance change of state to file.
133

134
  The exact location of the file depends on the name of the instance and on
135
  the configuration of the Ganeti cluster defined at deploy time.
136

137
  @type instance_name: string
138
  @param instance_name: The name of the instance
139
  @rtype: None
140

141
  """
142
  json = serializer.DumpJson(trail)
143
  filename = _GetInstReasonFilename(instance_name)
144
  utils.WriteFile(filename, data=json)
145

    
146

    
147
def _Fail(msg, *args, **kwargs):
148
  """Log an error and the raise an RPCFail exception.
149

150
  This exception is then handled specially in the ganeti daemon and
151
  turned into a 'failed' return type. As such, this function is a
152
  useful shortcut for logging the error and returning it to the master
153
  daemon.
154

155
  @type msg: string
156
  @param msg: the text of the exception
157
  @raise RPCFail
158

159
  """
160
  if args:
161
    msg = msg % args
162
  if "log" not in kwargs or kwargs["log"]: # if we should log this error
163
    if "exc" in kwargs and kwargs["exc"]:
164
      logging.exception(msg)
165
    else:
166
      logging.error(msg)
167
  raise RPCFail(msg)
168

    
169

    
170
def _GetConfig():
171
  """Simple wrapper to return a SimpleStore.
172

173
  @rtype: L{ssconf.SimpleStore}
174
  @return: a SimpleStore instance
175

176
  """
177
  return ssconf.SimpleStore()
178

    
179

    
180
def _GetSshRunner(cluster_name):
181
  """Simple wrapper to return an SshRunner.
182

183
  @type cluster_name: str
184
  @param cluster_name: the cluster name, which is needed
185
      by the SshRunner constructor
186
  @rtype: L{ssh.SshRunner}
187
  @return: an SshRunner instance
188

189
  """
190
  return ssh.SshRunner(cluster_name)
191

    
192

    
193
def _Decompress(data):
194
  """Unpacks data compressed by the RPC client.
195

196
  @type data: list or tuple
197
  @param data: Data sent by RPC client
198
  @rtype: str
199
  @return: Decompressed data
200

201
  """
202
  assert isinstance(data, (list, tuple))
203
  assert len(data) == 2
204
  (encoding, content) = data
205
  if encoding == constants.RPC_ENCODING_NONE:
206
    return content
207
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
208
    return zlib.decompress(base64.b64decode(content))
209
  else:
210
    raise AssertionError("Unknown data encoding")
211

    
212

    
213
def _CleanDirectory(path, exclude=None):
214
  """Removes all regular files in a directory.
215

216
  @type path: str
217
  @param path: the directory to clean
218
  @type exclude: list
219
  @param exclude: list of files to be excluded, defaults
220
      to the empty list
221

222
  """
223
  if path not in _ALLOWED_CLEAN_DIRS:
224
    _Fail("Path passed to _CleanDirectory not in allowed clean targets: '%s'",
225
          path)
226

    
227
  if not os.path.isdir(path):
228
    return
229
  if exclude is None:
230
    exclude = []
231
  else:
232
    # Normalize excluded paths
233
    exclude = [os.path.normpath(i) for i in exclude]
234

    
235
  for rel_name in utils.ListVisibleFiles(path):
236
    full_name = utils.PathJoin(path, rel_name)
237
    if full_name in exclude:
238
      continue
239
    if os.path.isfile(full_name) and not os.path.islink(full_name):
240
      utils.RemoveFile(full_name)
241

    
242

    
243
def _BuildUploadFileList():
244
  """Build the list of allowed upload files.
245

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

248
  """
249
  allowed_files = set([
250
    pathutils.CLUSTER_CONF_FILE,
251
    pathutils.ETC_HOSTS,
252
    pathutils.SSH_KNOWN_HOSTS_FILE,
253
    pathutils.VNC_PASSWORD_FILE,
254
    pathutils.RAPI_CERT_FILE,
255
    pathutils.SPICE_CERT_FILE,
256
    pathutils.SPICE_CACERT_FILE,
257
    pathutils.RAPI_USERS_FILE,
258
    pathutils.CONFD_HMAC_KEY,
259
    pathutils.CLUSTER_DOMAIN_SECRET_FILE,
260
    ])
261

    
262
  for hv_name in constants.HYPER_TYPES:
263
    hv_class = hypervisor.GetHypervisorClass(hv_name)
264
    allowed_files.update(hv_class.GetAncillaryFiles()[0])
265

    
266
  assert pathutils.FILE_STORAGE_PATHS_FILE not in allowed_files, \
267
    "Allowed file storage paths should never be uploaded via RPC"
268

    
269
  return frozenset(allowed_files)
270

    
271

    
272
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
273

    
274

    
275
def JobQueuePurge():
276
  """Removes job queue files and archived jobs.
277

278
  @rtype: tuple
279
  @return: True, None
280

281
  """
282
  _CleanDirectory(pathutils.QUEUE_DIR, exclude=[pathutils.JOB_QUEUE_LOCK_FILE])
283
  _CleanDirectory(pathutils.JOB_QUEUE_ARCHIVE_DIR)
284

    
285

    
286
def GetMasterInfo():
287
  """Returns master information.
288

289
  This is an utility function to compute master information, either
290
  for consumption here or from the node daemon.
291

292
  @rtype: tuple
293
  @return: master_netdev, master_ip, master_name, primary_ip_family,
294
    master_netmask
295
  @raise RPCFail: in case of errors
296

297
  """
298
  try:
299
    cfg = _GetConfig()
300
    master_netdev = cfg.GetMasterNetdev()
301
    master_ip = cfg.GetMasterIP()
302
    master_netmask = cfg.GetMasterNetmask()
303
    master_node = cfg.GetMasterNode()
304
    primary_ip_family = cfg.GetPrimaryIPFamily()
305
  except errors.ConfigurationError, err:
306
    _Fail("Cluster configuration incomplete: %s", err, exc=True)
307
  return (master_netdev, master_ip, master_node, primary_ip_family,
308
          master_netmask)
309

    
310

    
311
def RunLocalHooks(hook_opcode, hooks_path, env_builder_fn):
312
  """Decorator that runs hooks before and after the decorated function.
313

314
  @type hook_opcode: string
315
  @param hook_opcode: opcode of the hook
316
  @type hooks_path: string
317
  @param hooks_path: path of the hooks
318
  @type env_builder_fn: function
319
  @param env_builder_fn: function that returns a dictionary containing the
320
    environment variables for the hooks. Will get all the parameters of the
321
    decorated function.
322
  @raise RPCFail: in case of pre-hook failure
323

324
  """
325
  def decorator(fn):
326
    def wrapper(*args, **kwargs):
327
      _, myself = ssconf.GetMasterAndMyself()
328
      nodes = ([myself], [myself])  # these hooks run locally
329

    
330
      env_fn = compat.partial(env_builder_fn, *args, **kwargs)
331

    
332
      cfg = _GetConfig()
333
      hr = HooksRunner()
334
      hm = hooksmaster.HooksMaster(hook_opcode, hooks_path, nodes,
335
                                   hr.RunLocalHooks, None, env_fn,
336
                                   logging.warning, cfg.GetClusterName(),
337
                                   cfg.GetMasterNode())
338
      hm.RunPhase(constants.HOOKS_PHASE_PRE)
339
      result = fn(*args, **kwargs)
340
      hm.RunPhase(constants.HOOKS_PHASE_POST)
341

    
342
      return result
343
    return wrapper
344
  return decorator
345

    
346

    
347
def _BuildMasterIpEnv(master_params, use_external_mip_script=None):
348
  """Builds environment variables for master IP hooks.
349

350
  @type master_params: L{objects.MasterNetworkParameters}
351
  @param master_params: network parameters of the master
352
  @type use_external_mip_script: boolean
353
  @param use_external_mip_script: whether to use an external master IP
354
    address setup script (unused, but necessary per the implementation of the
355
    _RunLocalHooks decorator)
356

357
  """
358
  # pylint: disable=W0613
359
  ver = netutils.IPAddress.GetVersionFromAddressFamily(master_params.ip_family)
360
  env = {
361
    "MASTER_NETDEV": master_params.netdev,
362
    "MASTER_IP": master_params.ip,
363
    "MASTER_NETMASK": str(master_params.netmask),
364
    "CLUSTER_IP_VERSION": str(ver),
365
  }
366

    
367
  return env
368

    
369

    
370
def _RunMasterSetupScript(master_params, action, use_external_mip_script):
371
  """Execute the master IP address setup script.
372

373
  @type master_params: L{objects.MasterNetworkParameters}
374
  @param master_params: network parameters of the master
375
  @type action: string
376
  @param action: action to pass to the script. Must be one of
377
    L{backend._MASTER_START} or L{backend._MASTER_STOP}
378
  @type use_external_mip_script: boolean
379
  @param use_external_mip_script: whether to use an external master IP
380
    address setup script
381
  @raise backend.RPCFail: if there are errors during the execution of the
382
    script
383

384
  """
385
  env = _BuildMasterIpEnv(master_params)
386

    
387
  if use_external_mip_script:
388
    setup_script = pathutils.EXTERNAL_MASTER_SETUP_SCRIPT
389
  else:
390
    setup_script = pathutils.DEFAULT_MASTER_SETUP_SCRIPT
391

    
392
  result = utils.RunCmd([setup_script, action], env=env, reset_env=True)
393

    
394
  if result.failed:
395
    _Fail("Failed to %s the master IP. Script return value: %s, output: '%s'" %
396
          (action, result.exit_code, result.output), log=True)
397

    
398

    
399
@RunLocalHooks(constants.FAKE_OP_MASTER_TURNUP, "master-ip-turnup",
400
               _BuildMasterIpEnv)
401
def ActivateMasterIp(master_params, use_external_mip_script):
402
  """Activate the IP address of the master daemon.
403

404
  @type master_params: L{objects.MasterNetworkParameters}
405
  @param master_params: network parameters of the master
406
  @type use_external_mip_script: boolean
407
  @param use_external_mip_script: whether to use an external master IP
408
    address setup script
409
  @raise RPCFail: in case of errors during the IP startup
410

411
  """
412
  _RunMasterSetupScript(master_params, _MASTER_START,
413
                        use_external_mip_script)
414

    
415

    
416
def StartMasterDaemons(no_voting):
417
  """Activate local node as master node.
418

419
  The function will start the master daemons (ganeti-masterd and ganeti-rapi).
420

421
  @type no_voting: boolean
422
  @param no_voting: whether to start ganeti-masterd without a node vote
423
      but still non-interactively
424
  @rtype: None
425

426
  """
427

    
428
  if no_voting:
429
    masterd_args = "--no-voting --yes-do-it"
430
  else:
431
    masterd_args = ""
432

    
433
  env = {
434
    "EXTRA_MASTERD_ARGS": masterd_args,
435
    }
436

    
437
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "start-master"], env=env)
438
  if result.failed:
439
    msg = "Can't start Ganeti master: %s" % result.output
440
    logging.error(msg)
441
    _Fail(msg)
442

    
443

    
444
@RunLocalHooks(constants.FAKE_OP_MASTER_TURNDOWN, "master-ip-turndown",
445
               _BuildMasterIpEnv)
446
def DeactivateMasterIp(master_params, use_external_mip_script):
447
  """Deactivate the master IP on this node.
448

449
  @type master_params: L{objects.MasterNetworkParameters}
450
  @param master_params: network parameters of the master
451
  @type use_external_mip_script: boolean
452
  @param use_external_mip_script: whether to use an external master IP
453
    address setup script
454
  @raise RPCFail: in case of errors during the IP turndown
455

456
  """
457
  _RunMasterSetupScript(master_params, _MASTER_STOP,
458
                        use_external_mip_script)
459

    
460

    
461
def StopMasterDaemons():
462
  """Stop the master daemons on this node.
463

464
  Stop the master daemons (ganeti-masterd and ganeti-rapi) on this node.
465

466
  @rtype: None
467

468
  """
469
  # TODO: log and report back to the caller the error failures; we
470
  # need to decide in which case we fail the RPC for this
471

    
472
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "stop-master"])
473
  if result.failed:
474
    logging.error("Could not stop Ganeti master, command %s had exitcode %s"
475
                  " and error %s",
476
                  result.cmd, result.exit_code, result.output)
477

    
478

    
479
def ChangeMasterNetmask(old_netmask, netmask, master_ip, master_netdev):
480
  """Change the netmask of the master IP.
481

482
  @param old_netmask: the old value of the netmask
483
  @param netmask: the new value of the netmask
484
  @param master_ip: the master IP
485
  @param master_netdev: the master network device
486

487
  """
488
  if old_netmask == netmask:
489
    return
490

    
491
  if not netutils.IPAddress.Own(master_ip):
492
    _Fail("The master IP address is not up, not attempting to change its"
493
          " netmask")
494

    
495
  result = utils.RunCmd([constants.IP_COMMAND_PATH, "address", "add",
496
                         "%s/%s" % (master_ip, netmask),
497
                         "dev", master_netdev, "label",
498
                         "%s:0" % master_netdev])
499
  if result.failed:
500
    _Fail("Could not set the new netmask on the master IP address")
501

    
502
  result = utils.RunCmd([constants.IP_COMMAND_PATH, "address", "del",
503
                         "%s/%s" % (master_ip, old_netmask),
504
                         "dev", master_netdev, "label",
505
                         "%s:0" % master_netdev])
506
  if result.failed:
507
    _Fail("Could not bring down the master IP address with the old netmask")
508

    
509

    
510
def EtcHostsModify(mode, host, ip):
511
  """Modify a host entry in /etc/hosts.
512

513
  @param mode: The mode to operate. Either add or remove entry
514
  @param host: The host to operate on
515
  @param ip: The ip associated with the entry
516

517
  """
518
  if mode == constants.ETC_HOSTS_ADD:
519
    if not ip:
520
      RPCFail("Mode 'add' needs 'ip' parameter, but parameter not"
521
              " present")
522
    utils.AddHostToEtcHosts(host, ip)
523
  elif mode == constants.ETC_HOSTS_REMOVE:
524
    if ip:
525
      RPCFail("Mode 'remove' does not allow 'ip' parameter, but"
526
              " parameter is present")
527
    utils.RemoveHostFromEtcHosts(host)
528
  else:
529
    RPCFail("Mode not supported")
530

    
531

    
532
def LeaveCluster(modify_ssh_setup):
533
  """Cleans up and remove the current node.
534

535
  This function cleans up and prepares the current node to be removed
536
  from the cluster.
537

538
  If processing is successful, then it raises an
539
  L{errors.QuitGanetiException} which is used as a special case to
540
  shutdown the node daemon.
541

542
  @param modify_ssh_setup: boolean
543

544
  """
545
  _CleanDirectory(pathutils.DATA_DIR)
546
  _CleanDirectory(pathutils.CRYPTO_KEYS_DIR)
547
  JobQueuePurge()
548

    
549
  if modify_ssh_setup:
550
    try:
551
      priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.SSH_LOGIN_USER)
552

    
553
      utils.RemoveAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
554

    
555
      utils.RemoveFile(priv_key)
556
      utils.RemoveFile(pub_key)
557
    except errors.OpExecError:
558
      logging.exception("Error while processing ssh files")
559

    
560
  try:
561
    utils.RemoveFile(pathutils.CONFD_HMAC_KEY)
562
    utils.RemoveFile(pathutils.RAPI_CERT_FILE)
563
    utils.RemoveFile(pathutils.SPICE_CERT_FILE)
564
    utils.RemoveFile(pathutils.SPICE_CACERT_FILE)
565
    utils.RemoveFile(pathutils.NODED_CERT_FILE)
566
  except: # pylint: disable=W0702
567
    logging.exception("Error while removing cluster secrets")
568

    
569
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "stop", constants.CONFD])
570
  if result.failed:
571
    logging.error("Command %s failed with exitcode %s and error %s",
572
                  result.cmd, result.exit_code, result.output)
573

    
574
  # Raise a custom exception (handled in ganeti-noded)
575
  raise errors.QuitGanetiException(True, "Shutdown scheduled")
576

    
577

    
578
def _CheckStorageParams(params, num_params):
579
  """Performs sanity checks for storage parameters.
580

581
  @type params: list
582
  @param params: list of storage parameters
583
  @type num_params: int
584
  @param num_params: expected number of parameters
585

586
  """
587
  if params is None:
588
    raise errors.ProgrammerError("No storage parameters for storage"
589
                                 " reporting is provided.")
590
  if not isinstance(params, list):
591
    raise errors.ProgrammerError("The storage parameters are not of type"
592
                                 " list: '%s'" % params)
593
  if not len(params) == num_params:
594
    raise errors.ProgrammerError("Did not receive the expected number of"
595
                                 "storage parameters: expected %s,"
596
                                 " received '%s'" % (num_params, len(params)))
597

    
598

    
599
def _CheckLvmStorageParams(params):
600
  """Performs sanity check for the 'exclusive storage' flag.
601

602
  @see: C{_CheckStorageParams}
603

604
  """
605
  _CheckStorageParams(params, 1)
606
  excl_stor = params[0]
607
  if not isinstance(params[0], bool):
608
    raise errors.ProgrammerError("Exclusive storage parameter is not"
609
                                 " boolean: '%s'." % excl_stor)
610
  return excl_stor
611

    
612

    
613
def _GetLvmVgSpaceInfo(name, params):
614
  """Wrapper around C{_GetVgInfo} which checks the storage parameters.
615

616
  @type name: string
617
  @param name: name of the volume group
618
  @type params: list
619
  @param params: list of storage parameters, which in this case should be
620
    containing only one for exclusive storage
621

622
  """
623
  excl_stor = _CheckLvmStorageParams(params)
624
  return _GetVgInfo(name, excl_stor)
625

    
626

    
627
def _GetVgInfo(
628
    name, excl_stor, info_fn=bdev.LogicalVolume.GetVGInfo):
629
  """Retrieves information about a LVM volume group.
630

631
  """
632
  # TODO: GetVGInfo supports returning information for multiple VGs at once
633
  vginfo = info_fn([name], excl_stor)
634
  if vginfo:
635
    vg_free = int(round(vginfo[0][0], 0))
636
    vg_size = int(round(vginfo[0][1], 0))
637
  else:
638
    vg_free = None
639
    vg_size = None
640

    
641
  return {
642
    "type": constants.ST_LVM_VG,
643
    "name": name,
644
    "storage_free": vg_free,
645
    "storage_size": vg_size,
646
    }
647

    
648

    
649
def _GetLvmPvSpaceInfo(name, params):
650
  """Wrapper around C{_GetVgSpindlesInfo} with sanity checks.
651

652
  @see: C{_GetLvmVgSpaceInfo}
653

654
  """
655
  excl_stor = _CheckLvmStorageParams(params)
656
  return _GetVgSpindlesInfo(name, excl_stor)
657

    
658

    
659
def _GetVgSpindlesInfo(
660
    name, excl_stor, info_fn=bdev.LogicalVolume.GetVgSpindlesInfo):
661
  """Retrieves information about spindles in an LVM volume group.
662

663
  @type name: string
664
  @param name: VG name
665
  @type excl_stor: bool
666
  @param excl_stor: exclusive storage
667
  @rtype: dict
668
  @return: dictionary whose keys are "name", "vg_free", "vg_size" for VG name,
669
      free spindles, total spindles respectively
670

671
  """
672
  if excl_stor:
673
    (vg_free, vg_size) = info_fn(name)
674
  else:
675
    vg_free = 0
676
    vg_size = 0
677
  return {
678
    "type": constants.ST_LVM_PV,
679
    "name": name,
680
    "storage_free": vg_free,
681
    "storage_size": vg_size,
682
    }
683

    
684

    
685
def _GetHvInfo(name, hvparams, get_hv_fn=hypervisor.GetHypervisor):
686
  """Retrieves node information from a hypervisor.
687

688
  The information returned depends on the hypervisor. Common items:
689

690
    - vg_size is the size of the configured volume group in MiB
691
    - vg_free is the free size of the volume group in MiB
692
    - memory_dom0 is the memory allocated for domain0 in MiB
693
    - memory_free is the currently available (free) ram in MiB
694
    - memory_total is the total number of ram in MiB
695
    - hv_version: the hypervisor version, if available
696

697
  @type hvparams: dict of string
698
  @param hvparams: the hypervisor's hvparams
699

700
  """
701
  return get_hv_fn(name).GetNodeInfo(hvparams=hvparams)
702

    
703

    
704
def _GetHvInfoAll(hv_specs, get_hv_fn=hypervisor.GetHypervisor):
705
  """Retrieves node information for all hypervisors.
706

707
  See C{_GetHvInfo} for information on the output.
708

709
  @type hv_specs: list of pairs (string, dict of strings)
710
  @param hv_specs: list of pairs of a hypervisor's name and its hvparams
711

712
  """
713
  if hv_specs is None:
714
    return None
715

    
716
  result = []
717
  for hvname, hvparams in hv_specs:
718
    result.append(_GetHvInfo(hvname, hvparams, get_hv_fn))
719
  return result
720

    
721

    
722
def _GetNamedNodeInfo(names, fn):
723
  """Calls C{fn} for all names in C{names} and returns a dictionary.
724

725
  @rtype: None or dict
726

727
  """
728
  if names is None:
729
    return None
730
  else:
731
    return map(fn, names)
732

    
733

    
734
def GetNodeInfo(storage_units, hv_specs):
735
  """Gives back a hash with different information about the node.
736

737
  @type storage_units: list of tuples (string, string, list)
738
  @param storage_units: List of tuples (storage unit, identifier, parameters) to
739
    ask for disk space information. In case of lvm-vg, the identifier is
740
    the VG name. The parameters can contain additional, storage-type-specific
741
    parameters, for example exclusive storage for lvm storage.
742
  @type hv_specs: list of pairs (string, dict of strings)
743
  @param hv_specs: list of pairs of a hypervisor's name and its hvparams
744
  @rtype: tuple; (string, None/dict, None/dict)
745
  @return: Tuple containing boot ID, volume group information and hypervisor
746
    information
747

748
  """
749
  bootid = utils.ReadFile(_BOOT_ID_PATH, size=128).rstrip("\n")
750
  storage_info = _GetNamedNodeInfo(
751
    storage_units,
752
    (lambda (storage_type, storage_key, storage_params):
753
        _ApplyStorageInfoFunction(storage_type, storage_key, storage_params)))
754
  hv_info = _GetHvInfoAll(hv_specs)
755
  return (bootid, storage_info, hv_info)
756

    
757

    
758
def _GetFileStorageSpaceInfo(path, params):
759
  """Wrapper around filestorage.GetSpaceInfo.
760

761
  The purpose of this wrapper is to call filestorage.GetFileStorageSpaceInfo
762
  and ignore the *args parameter to not leak it into the filestorage
763
  module's code.
764

765
  @see: C{filestorage.GetFileStorageSpaceInfo} for description of the
766
    parameters.
767

768
  """
769
  _CheckStorageParams(params, 0)
770
  return filestorage.GetFileStorageSpaceInfo(path)
771

    
772

    
773
# FIXME: implement storage reporting for all missing storage types.
774
_STORAGE_TYPE_INFO_FN = {
775
  constants.ST_BLOCK: None,
776
  constants.ST_DISKLESS: None,
777
  constants.ST_EXT: None,
778
  constants.ST_FILE: _GetFileStorageSpaceInfo,
779
  constants.ST_LVM_PV: _GetLvmPvSpaceInfo,
780
  constants.ST_LVM_VG: _GetLvmVgSpaceInfo,
781
  constants.ST_RADOS: None,
782
}
783

    
784

    
785
def _ApplyStorageInfoFunction(storage_type, storage_key, *args):
786
  """Looks up and applies the correct function to calculate free and total
787
  storage for the given storage type.
788

789
  @type storage_type: string
790
  @param storage_type: the storage type for which the storage shall be reported.
791
  @type storage_key: string
792
  @param storage_key: identifier of a storage unit, e.g. the volume group name
793
    of an LVM storage unit
794
  @type args: any
795
  @param args: various parameters that can be used for storage reporting. These
796
    parameters and their semantics vary from storage type to storage type and
797
    are just propagated in this function.
798
  @return: the results of the application of the storage space function (see
799
    _STORAGE_TYPE_INFO_FN) if storage space reporting is implemented for that
800
    storage type
801
  @raises NotImplementedError: for storage types who don't support space
802
    reporting yet
803
  """
804
  fn = _STORAGE_TYPE_INFO_FN[storage_type]
805
  if fn is not None:
806
    return fn(storage_key, *args)
807
  else:
808
    raise NotImplementedError
809

    
810

    
811
def _CheckExclusivePvs(pvi_list):
812
  """Check that PVs are not shared among LVs
813

814
  @type pvi_list: list of L{objects.LvmPvInfo} objects
815
  @param pvi_list: information about the PVs
816

817
  @rtype: list of tuples (string, list of strings)
818
  @return: offending volumes, as tuples: (pv_name, [lv1_name, lv2_name...])
819

820
  """
821
  res = []
822
  for pvi in pvi_list:
823
    if len(pvi.lv_list) > 1:
824
      res.append((pvi.name, pvi.lv_list))
825
  return res
826

    
827

    
828
def _VerifyHypervisors(what, vm_capable, result, all_hvparams,
829
                       get_hv_fn=hypervisor.GetHypervisor):
830
  """Verifies the hypervisor. Appends the results to the 'results' list.
831

832
  @type what: C{dict}
833
  @param what: a dictionary of things to check
834
  @type vm_capable: boolean
835
  @param vm_capable: whether or not this node is vm capable
836
  @type result: dict
837
  @param result: dictionary of verification results; results of the
838
    verifications in this function will be added here
839
  @type all_hvparams: dict of dict of string
840
  @param all_hvparams: dictionary mapping hypervisor names to hvparams
841
  @type get_hv_fn: function
842
  @param get_hv_fn: function to retrieve the hypervisor, to improve testability
843

844
  """
845
  if not vm_capable:
846
    return
847

    
848
  if constants.NV_HYPERVISOR in what:
849
    result[constants.NV_HYPERVISOR] = {}
850
    for hv_name in what[constants.NV_HYPERVISOR]:
851
      hvparams = all_hvparams[hv_name]
852
      try:
853
        val = get_hv_fn(hv_name).Verify(hvparams=hvparams)
854
      except errors.HypervisorError, err:
855
        val = "Error while checking hypervisor: %s" % str(err)
856
      result[constants.NV_HYPERVISOR][hv_name] = val
857

    
858

    
859
def _VerifyHvparams(what, vm_capable, result,
860
                    get_hv_fn=hypervisor.GetHypervisor):
861
  """Verifies the hvparams. Appends the results to the 'results' list.
862

863
  @type what: C{dict}
864
  @param what: a dictionary of things to check
865
  @type vm_capable: boolean
866
  @param vm_capable: whether or not this node is vm capable
867
  @type result: dict
868
  @param result: dictionary of verification results; results of the
869
    verifications in this function will be added here
870
  @type get_hv_fn: function
871
  @param get_hv_fn: function to retrieve the hypervisor, to improve testability
872

873
  """
874
  if not vm_capable:
875
    return
876

    
877
  if constants.NV_HVPARAMS in what:
878
    result[constants.NV_HVPARAMS] = []
879
    for source, hv_name, hvparms in what[constants.NV_HVPARAMS]:
880
      try:
881
        logging.info("Validating hv %s, %s", hv_name, hvparms)
882
        get_hv_fn(hv_name).ValidateParameters(hvparms)
883
      except errors.HypervisorError, err:
884
        result[constants.NV_HVPARAMS].append((source, hv_name, str(err)))
885

    
886

    
887
def _VerifyInstanceList(what, vm_capable, result, all_hvparams):
888
  """Verifies the instance list.
889

890
  @type what: C{dict}
891
  @param what: a dictionary of things to check
892
  @type vm_capable: boolean
893
  @param vm_capable: whether or not this node is vm capable
894
  @type result: dict
895
  @param result: dictionary of verification results; results of the
896
    verifications in this function will be added here
897
  @type all_hvparams: dict of dict of string
898
  @param all_hvparams: dictionary mapping hypervisor names to hvparams
899

900
  """
901
  if constants.NV_INSTANCELIST in what and vm_capable:
902
    # GetInstanceList can fail
903
    try:
904
      val = GetInstanceList(what[constants.NV_INSTANCELIST],
905
                            all_hvparams=all_hvparams)
906
    except RPCFail, err:
907
      val = str(err)
908
    result[constants.NV_INSTANCELIST] = val
909

    
910

    
911
def _VerifyNodeInfo(what, vm_capable, result, all_hvparams):
912
  """Verifies the node info.
913

914
  @type what: C{dict}
915
  @param what: a dictionary of things to check
916
  @type vm_capable: boolean
917
  @param vm_capable: whether or not this node is vm capable
918
  @type result: dict
919
  @param result: dictionary of verification results; results of the
920
    verifications in this function will be added here
921
  @type all_hvparams: dict of dict of string
922
  @param all_hvparams: dictionary mapping hypervisor names to hvparams
923

924
  """
925
  if constants.NV_HVINFO in what and vm_capable:
926
    hvname = what[constants.NV_HVINFO]
927
    hyper = hypervisor.GetHypervisor(hvname)
928
    hvparams = all_hvparams[hvname]
929
    result[constants.NV_HVINFO] = hyper.GetNodeInfo(hvparams=hvparams)
930

    
931

    
932
def VerifyNode(what, cluster_name, all_hvparams):
933
  """Verify the status of the local node.
934

935
  Based on the input L{what} parameter, various checks are done on the
936
  local node.
937

938
  If the I{filelist} key is present, this list of
939
  files is checksummed and the file/checksum pairs are returned.
940

941
  If the I{nodelist} key is present, we check that we have
942
  connectivity via ssh with the target nodes (and check the hostname
943
  report).
944

945
  If the I{node-net-test} key is present, we check that we have
946
  connectivity to the given nodes via both primary IP and, if
947
  applicable, secondary IPs.
948

949
  @type what: C{dict}
950
  @param what: a dictionary of things to check:
951
      - filelist: list of files for which to compute checksums
952
      - nodelist: list of nodes we should check ssh communication with
953
      - node-net-test: list of nodes we should check node daemon port
954
        connectivity with
955
      - hypervisor: list with hypervisors to run the verify for
956
  @type cluster_name: string
957
  @param cluster_name: the cluster's name
958
  @type all_hvparams: dict of dict of strings
959
  @param all_hvparams: a dictionary mapping hypervisor names to hvparams
960
  @rtype: dict
961
  @return: a dictionary with the same keys as the input dict, and
962
      values representing the result of the checks
963

964
  """
965
  result = {}
966
  my_name = netutils.Hostname.GetSysName()
967
  port = netutils.GetDaemonPort(constants.NODED)
968
  vm_capable = my_name not in what.get(constants.NV_VMNODES, [])
969

    
970
  _VerifyHypervisors(what, vm_capable, result, all_hvparams)
971
  _VerifyHvparams(what, vm_capable, result)
972

    
973
  if constants.NV_FILELIST in what:
974
    fingerprints = utils.FingerprintFiles(map(vcluster.LocalizeVirtualPath,
975
                                              what[constants.NV_FILELIST]))
976
    result[constants.NV_FILELIST] = \
977
      dict((vcluster.MakeVirtualPath(key), value)
978
           for (key, value) in fingerprints.items())
979

    
980
  if constants.NV_NODELIST in what:
981
    (nodes, bynode) = what[constants.NV_NODELIST]
982

    
983
    # Add nodes from other groups (different for each node)
984
    try:
985
      nodes.extend(bynode[my_name])
986
    except KeyError:
987
      pass
988

    
989
    # Use a random order
990
    random.shuffle(nodes)
991

    
992
    # Try to contact all nodes
993
    val = {}
994
    for node in nodes:
995
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
996
      if not success:
997
        val[node] = message
998

    
999
    result[constants.NV_NODELIST] = val
1000

    
1001
  if constants.NV_NODENETTEST in what:
1002
    result[constants.NV_NODENETTEST] = tmp = {}
1003
    my_pip = my_sip = None
1004
    for name, pip, sip in what[constants.NV_NODENETTEST]:
1005
      if name == my_name:
1006
        my_pip = pip
1007
        my_sip = sip
1008
        break
1009
    if not my_pip:
1010
      tmp[my_name] = ("Can't find my own primary/secondary IP"
1011
                      " in the node list")
1012
    else:
1013
      for name, pip, sip in what[constants.NV_NODENETTEST]:
1014
        fail = []
1015
        if not netutils.TcpPing(pip, port, source=my_pip):
1016
          fail.append("primary")
1017
        if sip != pip:
1018
          if not netutils.TcpPing(sip, port, source=my_sip):
1019
            fail.append("secondary")
1020
        if fail:
1021
          tmp[name] = ("failure using the %s interface(s)" %
1022
                       " and ".join(fail))
1023

    
1024
  if constants.NV_MASTERIP in what:
1025
    # FIXME: add checks on incoming data structures (here and in the
1026
    # rest of the function)
1027
    master_name, master_ip = what[constants.NV_MASTERIP]
1028
    if master_name == my_name:
1029
      source = constants.IP4_ADDRESS_LOCALHOST
1030
    else:
1031
      source = None
1032
    result[constants.NV_MASTERIP] = netutils.TcpPing(master_ip, port,
1033
                                                     source=source)
1034

    
1035
  if constants.NV_USERSCRIPTS in what:
1036
    result[constants.NV_USERSCRIPTS] = \
1037
      [script for script in what[constants.NV_USERSCRIPTS]
1038
       if not utils.IsExecutable(script)]
1039

    
1040
  if constants.NV_OOB_PATHS in what:
1041
    result[constants.NV_OOB_PATHS] = tmp = []
1042
    for path in what[constants.NV_OOB_PATHS]:
1043
      try:
1044
        st = os.stat(path)
1045
      except OSError, err:
1046
        tmp.append("error stating out of band helper: %s" % err)
1047
      else:
1048
        if stat.S_ISREG(st.st_mode):
1049
          if stat.S_IMODE(st.st_mode) & stat.S_IXUSR:
1050
            tmp.append(None)
1051
          else:
1052
            tmp.append("out of band helper %s is not executable" % path)
1053
        else:
1054
          tmp.append("out of band helper %s is not a file" % path)
1055

    
1056
  if constants.NV_LVLIST in what and vm_capable:
1057
    try:
1058
      val = GetVolumeList(utils.ListVolumeGroups().keys())
1059
    except RPCFail, err:
1060
      val = str(err)
1061
    result[constants.NV_LVLIST] = val
1062

    
1063
  _VerifyInstanceList(what, vm_capable, result, all_hvparams)
1064

    
1065
  if constants.NV_VGLIST in what and vm_capable:
1066
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
1067

    
1068
  if constants.NV_PVLIST in what and vm_capable:
1069
    check_exclusive_pvs = constants.NV_EXCLUSIVEPVS in what
1070
    val = bdev.LogicalVolume.GetPVInfo(what[constants.NV_PVLIST],
1071
                                       filter_allocatable=False,
1072
                                       include_lvs=check_exclusive_pvs)
1073
    if check_exclusive_pvs:
1074
      result[constants.NV_EXCLUSIVEPVS] = _CheckExclusivePvs(val)
1075
      for pvi in val:
1076
        # Avoid sending useless data on the wire
1077
        pvi.lv_list = []
1078
    result[constants.NV_PVLIST] = map(objects.LvmPvInfo.ToDict, val)
1079

    
1080
  if constants.NV_VERSION in what:
1081
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
1082
                                    constants.RELEASE_VERSION)
1083

    
1084
  _VerifyNodeInfo(what, vm_capable, result, all_hvparams)
1085

    
1086
  if constants.NV_DRBDVERSION in what and vm_capable:
1087
    try:
1088
      drbd_version = DRBD8.GetProcInfo().GetVersionString()
1089
    except errors.BlockDeviceError, err:
1090
      logging.warning("Can't get DRBD version", exc_info=True)
1091
      drbd_version = str(err)
1092
    result[constants.NV_DRBDVERSION] = drbd_version
1093

    
1094
  if constants.NV_DRBDLIST in what and vm_capable:
1095
    try:
1096
      used_minors = drbd.DRBD8.GetUsedDevs()
1097
    except errors.BlockDeviceError, err:
1098
      logging.warning("Can't get used minors list", exc_info=True)
1099
      used_minors = str(err)
1100
    result[constants.NV_DRBDLIST] = used_minors
1101

    
1102
  if constants.NV_DRBDHELPER in what and vm_capable:
1103
    status = True
1104
    try:
1105
      payload = drbd.DRBD8.GetUsermodeHelper()
1106
    except errors.BlockDeviceError, err:
1107
      logging.error("Can't get DRBD usermode helper: %s", str(err))
1108
      status = False
1109
      payload = str(err)
1110
    result[constants.NV_DRBDHELPER] = (status, payload)
1111

    
1112
  if constants.NV_NODESETUP in what:
1113
    result[constants.NV_NODESETUP] = tmpr = []
1114
    if not os.path.isdir("/sys/block") or not os.path.isdir("/sys/class/net"):
1115
      tmpr.append("The sysfs filesytem doesn't seem to be mounted"
1116
                  " under /sys, missing required directories /sys/block"
1117
                  " and /sys/class/net")
1118
    if (not os.path.isdir("/proc/sys") or
1119
        not os.path.isfile("/proc/sysrq-trigger")):
1120
      tmpr.append("The procfs filesystem doesn't seem to be mounted"
1121
                  " under /proc, missing required directory /proc/sys and"
1122
                  " the file /proc/sysrq-trigger")
1123

    
1124
  if constants.NV_TIME in what:
1125
    result[constants.NV_TIME] = utils.SplitTime(time.time())
1126

    
1127
  if constants.NV_OSLIST in what and vm_capable:
1128
    result[constants.NV_OSLIST] = DiagnoseOS()
1129

    
1130
  if constants.NV_BRIDGES in what and vm_capable:
1131
    result[constants.NV_BRIDGES] = [bridge
1132
                                    for bridge in what[constants.NV_BRIDGES]
1133
                                    if not utils.BridgeExists(bridge)]
1134

    
1135
  if what.get(constants.NV_ACCEPTED_STORAGE_PATHS) == my_name:
1136
    result[constants.NV_ACCEPTED_STORAGE_PATHS] = \
1137
        filestorage.ComputeWrongFileStoragePaths()
1138

    
1139
  if what.get(constants.NV_FILE_STORAGE_PATH):
1140
    pathresult = filestorage.CheckFileStoragePath(
1141
        what[constants.NV_FILE_STORAGE_PATH])
1142
    if pathresult:
1143
      result[constants.NV_FILE_STORAGE_PATH] = pathresult
1144

    
1145
  if what.get(constants.NV_SHARED_FILE_STORAGE_PATH):
1146
    pathresult = filestorage.CheckFileStoragePath(
1147
        what[constants.NV_SHARED_FILE_STORAGE_PATH])
1148
    if pathresult:
1149
      result[constants.NV_SHARED_FILE_STORAGE_PATH] = pathresult
1150

    
1151
  return result
1152

    
1153

    
1154
def GetBlockDevSizes(devices):
1155
  """Return the size of the given block devices
1156

1157
  @type devices: list
1158
  @param devices: list of block device nodes to query
1159
  @rtype: dict
1160
  @return:
1161
    dictionary of all block devices under /dev (key). The value is their
1162
    size in MiB.
1163

1164
    {'/dev/disk/by-uuid/123456-12321231-312312-312': 124}
1165

1166
  """
1167
  DEV_PREFIX = "/dev/"
1168
  blockdevs = {}
1169

    
1170
  for devpath in devices:
1171
    if not utils.IsBelowDir(DEV_PREFIX, devpath):
1172
      continue
1173

    
1174
    try:
1175
      st = os.stat(devpath)
1176
    except EnvironmentError, err:
1177
      logging.warning("Error stat()'ing device %s: %s", devpath, str(err))
1178
      continue
1179

    
1180
    if stat.S_ISBLK(st.st_mode):
1181
      result = utils.RunCmd(["blockdev", "--getsize64", devpath])
1182
      if result.failed:
1183
        # We don't want to fail, just do not list this device as available
1184
        logging.warning("Cannot get size for block device %s", devpath)
1185
        continue
1186

    
1187
      size = int(result.stdout) / (1024 * 1024)
1188
      blockdevs[devpath] = size
1189
  return blockdevs
1190

    
1191

    
1192
def GetVolumeList(vg_names):
1193
  """Compute list of logical volumes and their size.
1194

1195
  @type vg_names: list
1196
  @param vg_names: the volume groups whose LVs we should list, or
1197
      empty for all volume groups
1198
  @rtype: dict
1199
  @return:
1200
      dictionary of all partions (key) with value being a tuple of
1201
      their size (in MiB), inactive and online status::
1202

1203
        {'xenvg/test1': ('20.06', True, True)}
1204

1205
      in case of errors, a string is returned with the error
1206
      details.
1207

1208
  """
1209
  lvs = {}
1210
  sep = "|"
1211
  if not vg_names:
1212
    vg_names = []
1213
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
1214
                         "--separator=%s" % sep,
1215
                         "-ovg_name,lv_name,lv_size,lv_attr"] + vg_names)
1216
  if result.failed:
1217
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
1218

    
1219
  for line in result.stdout.splitlines():
1220
    line = line.strip()
1221
    match = _LVSLINE_REGEX.match(line)
1222
    if not match:
1223
      logging.error("Invalid line returned from lvs output: '%s'", line)
1224
      continue
1225
    vg_name, name, size, attr = match.groups()
1226
    inactive = attr[4] == "-"
1227
    online = attr[5] == "o"
1228
    virtual = attr[0] == "v"
1229
    if virtual:
1230
      # we don't want to report such volumes as existing, since they
1231
      # don't really hold data
1232
      continue
1233
    lvs[vg_name + "/" + name] = (size, inactive, online)
1234

    
1235
  return lvs
1236

    
1237

    
1238
def ListVolumeGroups():
1239
  """List the volume groups and their size.
1240

1241
  @rtype: dict
1242
  @return: dictionary with keys volume name and values the
1243
      size of the volume
1244

1245
  """
1246
  return utils.ListVolumeGroups()
1247

    
1248

    
1249
def NodeVolumes():
1250
  """List all volumes on this node.
1251

1252
  @rtype: list
1253
  @return:
1254
    A list of dictionaries, each having four keys:
1255
      - name: the logical volume name,
1256
      - size: the size of the logical volume
1257
      - dev: the physical device on which the LV lives
1258
      - vg: the volume group to which it belongs
1259

1260
    In case of errors, we return an empty list and log the
1261
    error.
1262

1263
    Note that since a logical volume can live on multiple physical
1264
    volumes, the resulting list might include a logical volume
1265
    multiple times.
1266

1267
  """
1268
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
1269
                         "--separator=|",
1270
                         "--options=lv_name,lv_size,devices,vg_name"])
1271
  if result.failed:
1272
    _Fail("Failed to list logical volumes, lvs output: %s",
1273
          result.output)
1274

    
1275
  def parse_dev(dev):
1276
    return dev.split("(")[0]
1277

    
1278
  def handle_dev(dev):
1279
    return [parse_dev(x) for x in dev.split(",")]
1280

    
1281
  def map_line(line):
1282
    line = [v.strip() for v in line]
1283
    return [{"name": line[0], "size": line[1],
1284
             "dev": dev, "vg": line[3]} for dev in handle_dev(line[2])]
1285

    
1286
  all_devs = []
1287
  for line in result.stdout.splitlines():
1288
    if line.count("|") >= 3:
1289
      all_devs.extend(map_line(line.split("|")))
1290
    else:
1291
      logging.warning("Strange line in the output from lvs: '%s'", line)
1292
  return all_devs
1293

    
1294

    
1295
def BridgesExist(bridges_list):
1296
  """Check if a list of bridges exist on the current node.
1297

1298
  @rtype: boolean
1299
  @return: C{True} if all of them exist, C{False} otherwise
1300

1301
  """
1302
  missing = []
1303
  for bridge in bridges_list:
1304
    if not utils.BridgeExists(bridge):
1305
      missing.append(bridge)
1306

    
1307
  if missing:
1308
    _Fail("Missing bridges %s", utils.CommaJoin(missing))
1309

    
1310

    
1311
def GetInstanceListForHypervisor(hname, hvparams=None,
1312
                                 get_hv_fn=hypervisor.GetHypervisor):
1313
  """Provides a list of instances of the given hypervisor.
1314

1315
  @type hname: string
1316
  @param hname: name of the hypervisor
1317
  @type hvparams: dict of strings
1318
  @param hvparams: hypervisor parameters for the given hypervisor
1319
  @type get_hv_fn: function
1320
  @param get_hv_fn: function that returns a hypervisor for the given hypervisor
1321
    name; optional parameter to increase testability
1322

1323
  @rtype: list
1324
  @return: a list of all running instances on the current node
1325
    - instance1.example.com
1326
    - instance2.example.com
1327

1328
  """
1329
  results = []
1330
  try:
1331
    hv = get_hv_fn(hname)
1332
    names = hv.ListInstances(hvparams=hvparams)
1333
    results.extend(names)
1334
  except errors.HypervisorError, err:
1335
    _Fail("Error enumerating instances (hypervisor %s): %s",
1336
          hname, err, exc=True)
1337
  return results
1338

    
1339

    
1340
def GetInstanceList(hypervisor_list, all_hvparams=None,
1341
                    get_hv_fn=hypervisor.GetHypervisor):
1342
  """Provides a list of instances.
1343

1344
  @type hypervisor_list: list
1345
  @param hypervisor_list: the list of hypervisors to query information
1346
  @type all_hvparams: dict of dict of strings
1347
  @param all_hvparams: a dictionary mapping hypervisor types to respective
1348
    cluster-wide hypervisor parameters
1349
  @type get_hv_fn: function
1350
  @param get_hv_fn: function that returns a hypervisor for the given hypervisor
1351
    name; optional parameter to increase testability
1352

1353
  @rtype: list
1354
  @return: a list of all running instances on the current node
1355
    - instance1.example.com
1356
    - instance2.example.com
1357

1358
  """
1359
  results = []
1360
  for hname in hypervisor_list:
1361
    hvparams = all_hvparams[hname]
1362
    results.extend(GetInstanceListForHypervisor(hname, hvparams=hvparams,
1363
                                                get_hv_fn=get_hv_fn))
1364
  return results
1365

    
1366

    
1367
def GetInstanceInfo(instance, hname, hvparams=None):
1368
  """Gives back the information about an instance as a dictionary.
1369

1370
  @type instance: string
1371
  @param instance: the instance name
1372
  @type hname: string
1373
  @param hname: the hypervisor type of the instance
1374
  @type hvparams: dict of strings
1375
  @param hvparams: the instance's hvparams
1376

1377
  @rtype: dict
1378
  @return: dictionary with the following keys:
1379
      - memory: memory size of instance (int)
1380
      - state: xen state of instance (string)
1381
      - time: cpu time of instance (float)
1382
      - vcpus: the number of vcpus (int)
1383

1384
  """
1385
  output = {}
1386

    
1387
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance,
1388
                                                          hvparams=hvparams)
1389
  if iinfo is not None:
1390
    output["memory"] = iinfo[2]
1391
    output["vcpus"] = iinfo[3]
1392
    output["state"] = iinfo[4]
1393
    output["time"] = iinfo[5]
1394

    
1395
  return output
1396

    
1397

    
1398
def GetInstanceMigratable(instance):
1399
  """Computes whether an instance can be migrated.
1400

1401
  @type instance: L{objects.Instance}
1402
  @param instance: object representing the instance to be checked.
1403

1404
  @rtype: tuple
1405
  @return: tuple of (result, description) where:
1406
      - result: whether the instance can be migrated or not
1407
      - description: a description of the issue, if relevant
1408

1409
  """
1410
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1411
  iname = instance.name
1412
  if iname not in hyper.ListInstances(instance.hvparams):
1413
    _Fail("Instance %s is not running", iname)
1414

    
1415
  for idx in range(len(instance.disks)):
1416
    link_name = _GetBlockDevSymlinkPath(iname, idx)
1417
    if not os.path.islink(link_name):
1418
      logging.warning("Instance %s is missing symlink %s for disk %d",
1419
                      iname, link_name, idx)
1420

    
1421

    
1422
def GetAllInstancesInfo(hypervisor_list, all_hvparams):
1423
  """Gather data about all instances.
1424

1425
  This is the equivalent of L{GetInstanceInfo}, except that it
1426
  computes data for all instances at once, thus being faster if one
1427
  needs data about more than one instance.
1428

1429
  @type hypervisor_list: list
1430
  @param hypervisor_list: list of hypervisors to query for instance data
1431
  @type all_hvparams: dict of dict of strings
1432
  @param all_hvparams: mapping of hypervisor names to hvparams
1433

1434
  @rtype: dict
1435
  @return: dictionary of instance: data, with data having the following keys:
1436
      - memory: memory size of instance (int)
1437
      - state: xen state of instance (string)
1438
      - time: cpu time of instance (float)
1439
      - vcpus: the number of vcpus
1440

1441
  """
1442
  output = {}
1443

    
1444
  for hname in hypervisor_list:
1445
    hvparams = all_hvparams[hname]
1446
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo(hvparams)
1447
    if iinfo:
1448
      for name, _, memory, vcpus, state, times in iinfo:
1449
        value = {
1450
          "memory": memory,
1451
          "vcpus": vcpus,
1452
          "state": state,
1453
          "time": times,
1454
          }
1455
        if name in output:
1456
          # we only check static parameters, like memory and vcpus,
1457
          # and not state and time which can change between the
1458
          # invocations of the different hypervisors
1459
          for key in "memory", "vcpus":
1460
            if value[key] != output[name][key]:
1461
              _Fail("Instance %s is running twice"
1462
                    " with different parameters", name)
1463
        output[name] = value
1464

    
1465
  return output
1466

    
1467

    
1468
def _InstanceLogName(kind, os_name, instance, component):
1469
  """Compute the OS log filename for a given instance and operation.
1470

1471
  The instance name and os name are passed in as strings since not all
1472
  operations have these as part of an instance object.
1473

1474
  @type kind: string
1475
  @param kind: the operation type (e.g. add, import, etc.)
1476
  @type os_name: string
1477
  @param os_name: the os name
1478
  @type instance: string
1479
  @param instance: the name of the instance being imported/added/etc.
1480
  @type component: string or None
1481
  @param component: the name of the component of the instance being
1482
      transferred
1483

1484
  """
1485
  # TODO: Use tempfile.mkstemp to create unique filename
1486
  if component:
1487
    assert "/" not in component
1488
    c_msg = "-%s" % component
1489
  else:
1490
    c_msg = ""
1491
  base = ("%s-%s-%s%s-%s.log" %
1492
          (kind, os_name, instance, c_msg, utils.TimestampForFilename()))
1493
  return utils.PathJoin(pathutils.LOG_OS_DIR, base)
1494

    
1495

    
1496
def InstanceOsAdd(instance, reinstall, debug):
1497
  """Add an OS to an instance.
1498

1499
  @type instance: L{objects.Instance}
1500
  @param instance: Instance whose OS is to be installed
1501
  @type reinstall: boolean
1502
  @param reinstall: whether this is an instance reinstall
1503
  @type debug: integer
1504
  @param debug: debug level, passed to the OS scripts
1505
  @rtype: None
1506

1507
  """
1508
  inst_os = OSFromDisk(instance.os)
1509

    
1510
  create_env = OSEnvironment(instance, inst_os, debug)
1511
  if reinstall:
1512
    create_env["INSTANCE_REINSTALL"] = "1"
1513

    
1514
  logfile = _InstanceLogName("add", instance.os, instance.name, None)
1515

    
1516
  result = utils.RunCmd([inst_os.create_script], env=create_env,
1517
                        cwd=inst_os.path, output=logfile, reset_env=True)
1518
  if result.failed:
1519
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
1520
                  " output: %s", result.cmd, result.fail_reason, logfile,
1521
                  result.output)
1522
    lines = [utils.SafeEncode(val)
1523
             for val in utils.TailFile(logfile, lines=20)]
1524
    _Fail("OS create script failed (%s), last lines in the"
1525
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
1526

    
1527

    
1528
def RunRenameInstance(instance, old_name, debug):
1529
  """Run the OS rename script for an instance.
1530

1531
  @type instance: L{objects.Instance}
1532
  @param instance: Instance whose OS is to be installed
1533
  @type old_name: string
1534
  @param old_name: previous instance name
1535
  @type debug: integer
1536
  @param debug: debug level, passed to the OS scripts
1537
  @rtype: boolean
1538
  @return: the success of the operation
1539

1540
  """
1541
  inst_os = OSFromDisk(instance.os)
1542

    
1543
  rename_env = OSEnvironment(instance, inst_os, debug)
1544
  rename_env["OLD_INSTANCE_NAME"] = old_name
1545

    
1546
  logfile = _InstanceLogName("rename", instance.os,
1547
                             "%s-%s" % (old_name, instance.name), None)
1548

    
1549
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
1550
                        cwd=inst_os.path, output=logfile, reset_env=True)
1551

    
1552
  if result.failed:
1553
    logging.error("os create command '%s' returned error: %s output: %s",
1554
                  result.cmd, result.fail_reason, result.output)
1555
    lines = [utils.SafeEncode(val)
1556
             for val in utils.TailFile(logfile, lines=20)]
1557
    _Fail("OS rename script failed (%s), last lines in the"
1558
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
1559

    
1560

    
1561
def _GetBlockDevSymlinkPath(instance_name, idx, _dir=None):
1562
  """Returns symlink path for block device.
1563

1564
  """
1565
  if _dir is None:
1566
    _dir = pathutils.DISK_LINKS_DIR
1567

    
1568
  return utils.PathJoin(_dir,
1569
                        ("%s%s%s" %
1570
                         (instance_name, constants.DISK_SEPARATOR, idx)))
1571

    
1572

    
1573
def _SymlinkBlockDev(instance_name, device_path, idx):
1574
  """Set up symlinks to a instance's block device.
1575

1576
  This is an auxiliary function run when an instance is start (on the primary
1577
  node) or when an instance is migrated (on the target node).
1578

1579

1580
  @param instance_name: the name of the target instance
1581
  @param device_path: path of the physical block device, on the node
1582
  @param idx: the disk index
1583
  @return: absolute path to the disk's symlink
1584

1585
  """
1586
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1587
  try:
1588
    os.symlink(device_path, link_name)
1589
  except OSError, err:
1590
    if err.errno == errno.EEXIST:
1591
      if (not os.path.islink(link_name) or
1592
          os.readlink(link_name) != device_path):
1593
        os.remove(link_name)
1594
        os.symlink(device_path, link_name)
1595
    else:
1596
      raise
1597

    
1598
  return link_name
1599

    
1600

    
1601
def _RemoveBlockDevLinks(instance_name, disks):
1602
  """Remove the block device symlinks belonging to the given instance.
1603

1604
  """
1605
  for idx, _ in enumerate(disks):
1606
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1607
    if os.path.islink(link_name):
1608
      try:
1609
        os.remove(link_name)
1610
      except OSError:
1611
        logging.exception("Can't remove symlink '%s'", link_name)
1612

    
1613

    
1614
def _GatherAndLinkBlockDevs(instance):
1615
  """Set up an instance's block device(s).
1616

1617
  This is run on the primary node at instance startup. The block
1618
  devices must be already assembled.
1619

1620
  @type instance: L{objects.Instance}
1621
  @param instance: the instance whose disks we should assemble
1622
  @rtype: list
1623
  @return: list of (disk_object, device_path)
1624

1625
  """
1626
  block_devices = []
1627
  for idx, disk in enumerate(instance.disks):
1628
    device = _RecursiveFindBD(disk)
1629
    if device is None:
1630
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
1631
                                    str(disk))
1632
    device.Open()
1633
    try:
1634
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
1635
    except OSError, e:
1636
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
1637
                                    e.strerror)
1638

    
1639
    block_devices.append((disk, link_name))
1640

    
1641
  return block_devices
1642

    
1643

    
1644
def StartInstance(instance, startup_paused, reason, store_reason=True):
1645
  """Start an instance.
1646

1647
  @type instance: L{objects.Instance}
1648
  @param instance: the instance object
1649
  @type startup_paused: bool
1650
  @param instance: pause instance at startup?
1651
  @type reason: list of reasons
1652
  @param reason: the reason trail for this startup
1653
  @type store_reason: boolean
1654
  @param store_reason: whether to store the shutdown reason trail on file
1655
  @rtype: None
1656

1657
  """
1658
  running_instances = GetInstanceListForHypervisor(instance.hypervisor,
1659
                                                   instance.hvparams)
1660

    
1661
  if instance.name in running_instances:
1662
    logging.info("Instance %s already running, not starting", instance.name)
1663
    return
1664

    
1665
  try:
1666
    block_devices = _GatherAndLinkBlockDevs(instance)
1667
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
1668
    hyper.StartInstance(instance, block_devices, startup_paused)
1669
    if store_reason:
1670
      _StoreInstReasonTrail(instance.name, reason)
1671
  except errors.BlockDeviceError, err:
1672
    _Fail("Block device error: %s", err, exc=True)
1673
  except errors.HypervisorError, err:
1674
    _RemoveBlockDevLinks(instance.name, instance.disks)
1675
    _Fail("Hypervisor error: %s", err, exc=True)
1676

    
1677

    
1678
def InstanceShutdown(instance, timeout, reason, store_reason=True):
1679
  """Shut an instance down.
1680

1681
  @note: this functions uses polling with a hardcoded timeout.
1682

1683
  @type instance: L{objects.Instance}
1684
  @param instance: the instance object
1685
  @type timeout: integer
1686
  @param timeout: maximum timeout for soft shutdown
1687
  @type reason: list of reasons
1688
  @param reason: the reason trail for this shutdown
1689
  @type store_reason: boolean
1690
  @param store_reason: whether to store the shutdown reason trail on file
1691
  @rtype: None
1692

1693
  """
1694
  hv_name = instance.hypervisor
1695
  hyper = hypervisor.GetHypervisor(hv_name)
1696
  iname = instance.name
1697

    
1698
  if instance.name not in hyper.ListInstances(instance.hvparams):
1699
    logging.info("Instance %s not running, doing nothing", iname)
1700
    return
1701

    
1702
  class _TryShutdown:
1703
    def __init__(self):
1704
      self.tried_once = False
1705

    
1706
    def __call__(self):
1707
      if iname not in hyper.ListInstances(instance.hvparams):
1708
        return
1709

    
1710
      try:
1711
        hyper.StopInstance(instance, retry=self.tried_once)
1712
        if store_reason:
1713
          _StoreInstReasonTrail(instance.name, reason)
1714
      except errors.HypervisorError, err:
1715
        if iname not in hyper.ListInstances(instance.hvparams):
1716
          # if the instance is no longer existing, consider this a
1717
          # success and go to cleanup
1718
          return
1719

    
1720
        _Fail("Failed to stop instance %s: %s", iname, err)
1721

    
1722
      self.tried_once = True
1723

    
1724
      raise utils.RetryAgain()
1725

    
1726
  try:
1727
    utils.Retry(_TryShutdown(), 5, timeout)
1728
  except utils.RetryTimeout:
1729
    # the shutdown did not succeed
1730
    logging.error("Shutdown of '%s' unsuccessful, forcing", iname)
1731

    
1732
    try:
1733
      hyper.StopInstance(instance, force=True)
1734
    except errors.HypervisorError, err:
1735
      if iname in hyper.ListInstances(instance.hvparams):
1736
        # only raise an error if the instance still exists, otherwise
1737
        # the error could simply be "instance ... unknown"!
1738
        _Fail("Failed to force stop instance %s: %s", iname, err)
1739

    
1740
    time.sleep(1)
1741

    
1742
    if iname in hyper.ListInstances(instance.hvparams):
1743
      _Fail("Could not shutdown instance %s even by destroy", iname)
1744

    
1745
  try:
1746
    hyper.CleanupInstance(instance.name)
1747
  except errors.HypervisorError, err:
1748
    logging.warning("Failed to execute post-shutdown cleanup step: %s", err)
1749

    
1750
  _RemoveBlockDevLinks(iname, instance.disks)
1751

    
1752

    
1753
def InstanceReboot(instance, reboot_type, shutdown_timeout, reason):
1754
  """Reboot an instance.
1755

1756
  @type instance: L{objects.Instance}
1757
  @param instance: the instance object to reboot
1758
  @type reboot_type: str
1759
  @param reboot_type: the type of reboot, one the following
1760
    constants:
1761
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1762
        instance OS, do not recreate the VM
1763
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1764
        restart the VM (at the hypervisor level)
1765
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1766
        not accepted here, since that mode is handled differently, in
1767
        cmdlib, and translates into full stop and start of the
1768
        instance (instead of a call_instance_reboot RPC)
1769
  @type shutdown_timeout: integer
1770
  @param shutdown_timeout: maximum timeout for soft shutdown
1771
  @type reason: list of reasons
1772
  @param reason: the reason trail for this reboot
1773
  @rtype: None
1774

1775
  """
1776
  running_instances = GetInstanceListForHypervisor(instance.hypervisor,
1777
                                                   instance.hvparams)
1778

    
1779
  if instance.name not in running_instances:
1780
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1781

    
1782
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1783
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1784
    try:
1785
      hyper.RebootInstance(instance)
1786
    except errors.HypervisorError, err:
1787
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1788
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1789
    try:
1790
      InstanceShutdown(instance, shutdown_timeout, reason, store_reason=False)
1791
      result = StartInstance(instance, False, reason, store_reason=False)
1792
      _StoreInstReasonTrail(instance.name, reason)
1793
      return result
1794
    except errors.HypervisorError, err:
1795
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1796
  else:
1797
    _Fail("Invalid reboot_type received: %s", reboot_type)
1798

    
1799

    
1800
def InstanceBalloonMemory(instance, memory):
1801
  """Resize an instance's memory.
1802

1803
  @type instance: L{objects.Instance}
1804
  @param instance: the instance object
1805
  @type memory: int
1806
  @param memory: new memory amount in MB
1807
  @rtype: None
1808

1809
  """
1810
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1811
  running = hyper.ListInstances(instance.hvparams)
1812
  if instance.name not in running:
1813
    logging.info("Instance %s is not running, cannot balloon", instance.name)
1814
    return
1815
  try:
1816
    hyper.BalloonInstanceMemory(instance, memory)
1817
  except errors.HypervisorError, err:
1818
    _Fail("Failed to balloon instance memory: %s", err, exc=True)
1819

    
1820

    
1821
def MigrationInfo(instance):
1822
  """Gather information about an instance to be migrated.
1823

1824
  @type instance: L{objects.Instance}
1825
  @param instance: the instance definition
1826

1827
  """
1828
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1829
  try:
1830
    info = hyper.MigrationInfo(instance)
1831
  except errors.HypervisorError, err:
1832
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1833
  return info
1834

    
1835

    
1836
def AcceptInstance(instance, info, target):
1837
  """Prepare the node to accept an instance.
1838

1839
  @type instance: L{objects.Instance}
1840
  @param instance: the instance definition
1841
  @type info: string/data (opaque)
1842
  @param info: migration information, from the source node
1843
  @type target: string
1844
  @param target: target host (usually ip), on this node
1845

1846
  """
1847
  # TODO: why is this required only for DTS_EXT_MIRROR?
1848
  if instance.disk_template in constants.DTS_EXT_MIRROR:
1849
    # Create the symlinks, as the disks are not active
1850
    # in any way
1851
    try:
1852
      _GatherAndLinkBlockDevs(instance)
1853
    except errors.BlockDeviceError, err:
1854
      _Fail("Block device error: %s", err, exc=True)
1855

    
1856
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1857
  try:
1858
    hyper.AcceptInstance(instance, info, target)
1859
  except errors.HypervisorError, err:
1860
    if instance.disk_template in constants.DTS_EXT_MIRROR:
1861
      _RemoveBlockDevLinks(instance.name, instance.disks)
1862
    _Fail("Failed to accept instance: %s", err, exc=True)
1863

    
1864

    
1865
def FinalizeMigrationDst(instance, info, success):
1866
  """Finalize any preparation to accept an instance.
1867

1868
  @type instance: L{objects.Instance}
1869
  @param instance: the instance definition
1870
  @type info: string/data (opaque)
1871
  @param info: migration information, from the source node
1872
  @type success: boolean
1873
  @param success: whether the migration was a success or a failure
1874

1875
  """
1876
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1877
  try:
1878
    hyper.FinalizeMigrationDst(instance, info, success)
1879
  except errors.HypervisorError, err:
1880
    _Fail("Failed to finalize migration on the target node: %s", err, exc=True)
1881

    
1882

    
1883
def MigrateInstance(cluster_name, instance, target, live):
1884
  """Migrates an instance to another node.
1885

1886
  @type cluster_name: string
1887
  @param cluster_name: name of the cluster
1888
  @type instance: L{objects.Instance}
1889
  @param instance: the instance definition
1890
  @type target: string
1891
  @param target: the target node name
1892
  @type live: boolean
1893
  @param live: whether the migration should be done live or not (the
1894
      interpretation of this parameter is left to the hypervisor)
1895
  @raise RPCFail: if migration fails for some reason
1896

1897
  """
1898
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1899

    
1900
  try:
1901
    hyper.MigrateInstance(cluster_name, instance, target, live)
1902
  except errors.HypervisorError, err:
1903
    _Fail("Failed to migrate instance: %s", err, exc=True)
1904

    
1905

    
1906
def FinalizeMigrationSource(instance, success, live):
1907
  """Finalize the instance migration on the source node.
1908

1909
  @type instance: L{objects.Instance}
1910
  @param instance: the instance definition of the migrated instance
1911
  @type success: bool
1912
  @param success: whether the migration succeeded or not
1913
  @type live: bool
1914
  @param live: whether the user requested a live migration or not
1915
  @raise RPCFail: If the execution fails for some reason
1916

1917
  """
1918
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1919

    
1920
  try:
1921
    hyper.FinalizeMigrationSource(instance, success, live)
1922
  except Exception, err:  # pylint: disable=W0703
1923
    _Fail("Failed to finalize the migration on the source node: %s", err,
1924
          exc=True)
1925

    
1926

    
1927
def GetMigrationStatus(instance):
1928
  """Get the migration status
1929

1930
  @type instance: L{objects.Instance}
1931
  @param instance: the instance that is being migrated
1932
  @rtype: L{objects.MigrationStatus}
1933
  @return: the status of the current migration (one of
1934
           L{constants.HV_MIGRATION_VALID_STATUSES}), plus any additional
1935
           progress info that can be retrieved from the hypervisor
1936
  @raise RPCFail: If the migration status cannot be retrieved
1937

1938
  """
1939
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1940
  try:
1941
    return hyper.GetMigrationStatus(instance)
1942
  except Exception, err:  # pylint: disable=W0703
1943
    _Fail("Failed to get migration status: %s", err, exc=True)
1944

    
1945

    
1946
def BlockdevCreate(disk, size, owner, on_primary, info, excl_stor):
1947
  """Creates a block device for an instance.
1948

1949
  @type disk: L{objects.Disk}
1950
  @param disk: the object describing the disk we should create
1951
  @type size: int
1952
  @param size: the size of the physical underlying device, in MiB
1953
  @type owner: str
1954
  @param owner: the name of the instance for which disk is created,
1955
      used for device cache data
1956
  @type on_primary: boolean
1957
  @param on_primary:  indicates if it is the primary node or not
1958
  @type info: string
1959
  @param info: string that will be sent to the physical device
1960
      creation, used for example to set (LVM) tags on LVs
1961
  @type excl_stor: boolean
1962
  @param excl_stor: Whether exclusive_storage is active
1963

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

1968
  """
1969
  # TODO: remove the obsolete "size" argument
1970
  # pylint: disable=W0613
1971
  clist = []
1972
  if disk.children:
1973
    for child in disk.children:
1974
      try:
1975
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1976
      except errors.BlockDeviceError, err:
1977
        _Fail("Can't assemble device %s: %s", child, err)
1978
      if on_primary or disk.AssembleOnSecondary():
1979
        # we need the children open in case the device itself has to
1980
        # be assembled
1981
        try:
1982
          # pylint: disable=E1103
1983
          crdev.Open()
1984
        except errors.BlockDeviceError, err:
1985
          _Fail("Can't make child '%s' read-write: %s", child, err)
1986
      clist.append(crdev)
1987

    
1988
  try:
1989
    device = bdev.Create(disk, clist, excl_stor)
1990
  except errors.BlockDeviceError, err:
1991
    _Fail("Can't create block device: %s", err)
1992

    
1993
  if on_primary or disk.AssembleOnSecondary():
1994
    try:
1995
      device.Assemble()
1996
    except errors.BlockDeviceError, err:
1997
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1998
    if on_primary or disk.OpenOnSecondary():
1999
      try:
2000
        device.Open(force=True)
2001
      except errors.BlockDeviceError, err:
2002
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
2003
    DevCacheManager.UpdateCache(device.dev_path, owner,
2004
                                on_primary, disk.iv_name)
2005

    
2006
  device.SetInfo(info)
2007

    
2008
  return device.unique_id
2009

    
2010

    
2011
def _WipeDevice(path, offset, size):
2012
  """This function actually wipes the device.
2013

2014
  @param path: The path to the device to wipe
2015
  @param offset: The offset in MiB in the file
2016
  @param size: The size in MiB to write
2017

2018
  """
2019
  # Internal sizes are always in Mebibytes; if the following "dd" command
2020
  # should use a different block size the offset and size given to this
2021
  # function must be adjusted accordingly before being passed to "dd".
2022
  block_size = 1024 * 1024
2023

    
2024
  cmd = [constants.DD_CMD, "if=/dev/zero", "seek=%d" % offset,
2025
         "bs=%s" % block_size, "oflag=direct", "of=%s" % path,
2026
         "count=%d" % size]
2027
  result = utils.RunCmd(cmd)
2028

    
2029
  if result.failed:
2030
    _Fail("Wipe command '%s' exited with error: %s; output: %s", result.cmd,
2031
          result.fail_reason, result.output)
2032

    
2033

    
2034
def BlockdevWipe(disk, offset, size):
2035
  """Wipes a block device.
2036

2037
  @type disk: L{objects.Disk}
2038
  @param disk: the disk object we want to wipe
2039
  @type offset: int
2040
  @param offset: The offset in MiB in the file
2041
  @type size: int
2042
  @param size: The size in MiB to write
2043

2044
  """
2045
  try:
2046
    rdev = _RecursiveFindBD(disk)
2047
  except errors.BlockDeviceError:
2048
    rdev = None
2049

    
2050
  if not rdev:
2051
    _Fail("Cannot execute wipe for device %s: device not found", disk.iv_name)
2052

    
2053
  # Do cross verify some of the parameters
2054
  if offset < 0:
2055
    _Fail("Negative offset")
2056
  if size < 0:
2057
    _Fail("Negative size")
2058
  if offset > rdev.size:
2059
    _Fail("Offset is bigger than device size")
2060
  if (offset + size) > rdev.size:
2061
    _Fail("The provided offset and size to wipe is bigger than device size")
2062

    
2063
  _WipeDevice(rdev.dev_path, offset, size)
2064

    
2065

    
2066
def BlockdevPauseResumeSync(disks, pause):
2067
  """Pause or resume the sync of the block device.
2068

2069
  @type disks: list of L{objects.Disk}
2070
  @param disks: the disks object we want to pause/resume
2071
  @type pause: bool
2072
  @param pause: Wheater to pause or resume
2073

2074
  """
2075
  success = []
2076
  for disk in disks:
2077
    try:
2078
      rdev = _RecursiveFindBD(disk)
2079
    except errors.BlockDeviceError:
2080
      rdev = None
2081

    
2082
    if not rdev:
2083
      success.append((False, ("Cannot change sync for device %s:"
2084
                              " device not found" % disk.iv_name)))
2085
      continue
2086

    
2087
    result = rdev.PauseResumeSync(pause)
2088

    
2089
    if result:
2090
      success.append((result, None))
2091
    else:
2092
      if pause:
2093
        msg = "Pause"
2094
      else:
2095
        msg = "Resume"
2096
      success.append((result, "%s for device %s failed" % (msg, disk.iv_name)))
2097

    
2098
  return success
2099

    
2100

    
2101
def BlockdevRemove(disk):
2102
  """Remove a block device.
2103

2104
  @note: This is intended to be called recursively.
2105

2106
  @type disk: L{objects.Disk}
2107
  @param disk: the disk object we should remove
2108
  @rtype: boolean
2109
  @return: the success of the operation
2110

2111
  """
2112
  msgs = []
2113
  try:
2114
    rdev = _RecursiveFindBD(disk)
2115
  except errors.BlockDeviceError, err:
2116
    # probably can't attach
2117
    logging.info("Can't attach to device %s in remove", disk)
2118
    rdev = None
2119
  if rdev is not None:
2120
    r_path = rdev.dev_path
2121
    try:
2122
      rdev.Remove()
2123
    except errors.BlockDeviceError, err:
2124
      msgs.append(str(err))
2125
    if not msgs:
2126
      DevCacheManager.RemoveCache(r_path)
2127

    
2128
  if disk.children:
2129
    for child in disk.children:
2130
      try:
2131
        BlockdevRemove(child)
2132
      except RPCFail, err:
2133
        msgs.append(str(err))
2134

    
2135
  if msgs:
2136
    _Fail("; ".join(msgs))
2137

    
2138

    
2139
def _RecursiveAssembleBD(disk, owner, as_primary):
2140
  """Activate a block device for an instance.
2141

2142
  This is run on the primary and secondary nodes for an instance.
2143

2144
  @note: this function is called recursively.
2145

2146
  @type disk: L{objects.Disk}
2147
  @param disk: the disk we try to assemble
2148
  @type owner: str
2149
  @param owner: the name of the instance which owns the disk
2150
  @type as_primary: boolean
2151
  @param as_primary: if we should make the block device
2152
      read/write
2153

2154
  @return: the assembled device or None (in case no device
2155
      was assembled)
2156
  @raise errors.BlockDeviceError: in case there is an error
2157
      during the activation of the children or the device
2158
      itself
2159

2160
  """
2161
  children = []
2162
  if disk.children:
2163
    mcn = disk.ChildrenNeeded()
2164
    if mcn == -1:
2165
      mcn = 0 # max number of Nones allowed
2166
    else:
2167
      mcn = len(disk.children) - mcn # max number of Nones
2168
    for chld_disk in disk.children:
2169
      try:
2170
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
2171
      except errors.BlockDeviceError, err:
2172
        if children.count(None) >= mcn:
2173
          raise
2174
        cdev = None
2175
        logging.error("Error in child activation (but continuing): %s",
2176
                      str(err))
2177
      children.append(cdev)
2178

    
2179
  if as_primary or disk.AssembleOnSecondary():
2180
    r_dev = bdev.Assemble(disk, children)
2181
    result = r_dev
2182
    if as_primary or disk.OpenOnSecondary():
2183
      r_dev.Open()
2184
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
2185
                                as_primary, disk.iv_name)
2186

    
2187
  else:
2188
    result = True
2189
  return result
2190

    
2191

    
2192
def BlockdevAssemble(disk, owner, as_primary, idx):
2193
  """Activate a block device for an instance.
2194

2195
  This is a wrapper over _RecursiveAssembleBD.
2196

2197
  @rtype: str or boolean
2198
  @return: a C{/dev/...} path for primary nodes, and
2199
      C{True} for secondary nodes
2200

2201
  """
2202
  try:
2203
    result = _RecursiveAssembleBD(disk, owner, as_primary)
2204
    if isinstance(result, BlockDev):
2205
      # pylint: disable=E1103
2206
      result = result.dev_path
2207
      if as_primary:
2208
        _SymlinkBlockDev(owner, result, idx)
2209
  except errors.BlockDeviceError, err:
2210
    _Fail("Error while assembling disk: %s", err, exc=True)
2211
  except OSError, err:
2212
    _Fail("Error while symlinking disk: %s", err, exc=True)
2213

    
2214
  return result
2215

    
2216

    
2217
def BlockdevShutdown(disk):
2218
  """Shut down a block device.
2219

2220
  First, if the device is assembled (Attach() is successful), then
2221
  the device is shutdown. Then the children of the device are
2222
  shutdown.
2223

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

2228
  @type disk: L{objects.Disk}
2229
  @param disk: the description of the disk we should
2230
      shutdown
2231
  @rtype: None
2232

2233
  """
2234
  msgs = []
2235
  r_dev = _RecursiveFindBD(disk)
2236
  if r_dev is not None:
2237
    r_path = r_dev.dev_path
2238
    try:
2239
      r_dev.Shutdown()
2240
      DevCacheManager.RemoveCache(r_path)
2241
    except errors.BlockDeviceError, err:
2242
      msgs.append(str(err))
2243

    
2244
  if disk.children:
2245
    for child in disk.children:
2246
      try:
2247
        BlockdevShutdown(child)
2248
      except RPCFail, err:
2249
        msgs.append(str(err))
2250

    
2251
  if msgs:
2252
    _Fail("; ".join(msgs))
2253

    
2254

    
2255
def BlockdevAddchildren(parent_cdev, new_cdevs):
2256
  """Extend a mirrored block device.
2257

2258
  @type parent_cdev: L{objects.Disk}
2259
  @param parent_cdev: the disk to which we should add children
2260
  @type new_cdevs: list of L{objects.Disk}
2261
  @param new_cdevs: the list of children which we should add
2262
  @rtype: None
2263

2264
  """
2265
  parent_bdev = _RecursiveFindBD(parent_cdev)
2266
  if parent_bdev is None:
2267
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
2268
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
2269
  if new_bdevs.count(None) > 0:
2270
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
2271
  parent_bdev.AddChildren(new_bdevs)
2272

    
2273

    
2274
def BlockdevRemovechildren(parent_cdev, new_cdevs):
2275
  """Shrink a mirrored block device.
2276

2277
  @type parent_cdev: L{objects.Disk}
2278
  @param parent_cdev: the disk from which we should remove children
2279
  @type new_cdevs: list of L{objects.Disk}
2280
  @param new_cdevs: the list of children which we should remove
2281
  @rtype: None
2282

2283
  """
2284
  parent_bdev = _RecursiveFindBD(parent_cdev)
2285
  if parent_bdev is None:
2286
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
2287
  devs = []
2288
  for disk in new_cdevs:
2289
    rpath = disk.StaticDevPath()
2290
    if rpath is None:
2291
      bd = _RecursiveFindBD(disk)
2292
      if bd is None:
2293
        _Fail("Can't find device %s while removing children", disk)
2294
      else:
2295
        devs.append(bd.dev_path)
2296
    else:
2297
      if not utils.IsNormAbsPath(rpath):
2298
        _Fail("Strange path returned from StaticDevPath: '%s'", rpath)
2299
      devs.append(rpath)
2300
  parent_bdev.RemoveChildren(devs)
2301

    
2302

    
2303
def BlockdevGetmirrorstatus(disks):
2304
  """Get the mirroring status of a list of devices.
2305

2306
  @type disks: list of L{objects.Disk}
2307
  @param disks: the list of disks which we should query
2308
  @rtype: disk
2309
  @return: List of L{objects.BlockDevStatus}, one for each disk
2310
  @raise errors.BlockDeviceError: if any of the disks cannot be
2311
      found
2312

2313
  """
2314
  stats = []
2315
  for dsk in disks:
2316
    rbd = _RecursiveFindBD(dsk)
2317
    if rbd is None:
2318
      _Fail("Can't find device %s", dsk)
2319

    
2320
    stats.append(rbd.CombinedSyncStatus())
2321

    
2322
  return stats
2323

    
2324

    
2325
def BlockdevGetmirrorstatusMulti(disks):
2326
  """Get the mirroring status of a list of devices.
2327

2328
  @type disks: list of L{objects.Disk}
2329
  @param disks: the list of disks which we should query
2330
  @rtype: disk
2331
  @return: List of tuples, (bool, status), one for each disk; bool denotes
2332
    success/failure, status is L{objects.BlockDevStatus} on success, string
2333
    otherwise
2334

2335
  """
2336
  result = []
2337
  for disk in disks:
2338
    try:
2339
      rbd = _RecursiveFindBD(disk)
2340
      if rbd is None:
2341
        result.append((False, "Can't find device %s" % disk))
2342
        continue
2343

    
2344
      status = rbd.CombinedSyncStatus()
2345
    except errors.BlockDeviceError, err:
2346
      logging.exception("Error while getting disk status")
2347
      result.append((False, str(err)))
2348
    else:
2349
      result.append((True, status))
2350

    
2351
  assert len(disks) == len(result)
2352

    
2353
  return result
2354

    
2355

    
2356
def _RecursiveFindBD(disk):
2357
  """Check if a device is activated.
2358

2359
  If so, return information about the real device.
2360

2361
  @type disk: L{objects.Disk}
2362
  @param disk: the disk object we need to find
2363

2364
  @return: None if the device can't be found,
2365
      otherwise the device instance
2366

2367
  """
2368
  children = []
2369
  if disk.children:
2370
    for chdisk in disk.children:
2371
      children.append(_RecursiveFindBD(chdisk))
2372

    
2373
  return bdev.FindDevice(disk, children)
2374

    
2375

    
2376
def _OpenRealBD(disk):
2377
  """Opens the underlying block device of a disk.
2378

2379
  @type disk: L{objects.Disk}
2380
  @param disk: the disk object we want to open
2381

2382
  """
2383
  real_disk = _RecursiveFindBD(disk)
2384
  if real_disk is None:
2385
    _Fail("Block device '%s' is not set up", disk)
2386

    
2387
  real_disk.Open()
2388

    
2389
  return real_disk
2390

    
2391

    
2392
def BlockdevFind(disk):
2393
  """Check if a device is activated.
2394

2395
  If it is, return information about the real device.
2396

2397
  @type disk: L{objects.Disk}
2398
  @param disk: the disk to find
2399
  @rtype: None or objects.BlockDevStatus
2400
  @return: None if the disk cannot be found, otherwise a the current
2401
           information
2402

2403
  """
2404
  try:
2405
    rbd = _RecursiveFindBD(disk)
2406
  except errors.BlockDeviceError, err:
2407
    _Fail("Failed to find device: %s", err, exc=True)
2408

    
2409
  if rbd is None:
2410
    return None
2411

    
2412
  return rbd.GetSyncStatus()
2413

    
2414

    
2415
def BlockdevGetdimensions(disks):
2416
  """Computes the size of the given disks.
2417

2418
  If a disk is not found, returns None instead.
2419

2420
  @type disks: list of L{objects.Disk}
2421
  @param disks: the list of disk to compute the size for
2422
  @rtype: list
2423
  @return: list with elements None if the disk cannot be found,
2424
      otherwise the pair (size, spindles), where spindles is None if the
2425
      device doesn't support that
2426

2427
  """
2428
  result = []
2429
  for cf in disks:
2430
    try:
2431
      rbd = _RecursiveFindBD(cf)
2432
    except errors.BlockDeviceError:
2433
      result.append(None)
2434
      continue
2435
    if rbd is None:
2436
      result.append(None)
2437
    else:
2438
      result.append(rbd.GetActualDimensions())
2439
  return result
2440

    
2441

    
2442
def BlockdevExport(disk, dest_node_ip, dest_path, cluster_name):
2443
  """Export a block device to a remote node.
2444

2445
  @type disk: L{objects.Disk}
2446
  @param disk: the description of the disk to export
2447
  @type dest_node_ip: str
2448
  @param dest_node_ip: the destination node IP to export to
2449
  @type dest_path: str
2450
  @param dest_path: the destination path on the target node
2451
  @type cluster_name: str
2452
  @param cluster_name: the cluster name, needed for SSH hostalias
2453
  @rtype: None
2454

2455
  """
2456
  real_disk = _OpenRealBD(disk)
2457

    
2458
  # the block size on the read dd is 1MiB to match our units
2459
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
2460
                               "dd if=%s bs=1048576 count=%s",
2461
                               real_disk.dev_path, str(disk.size))
2462

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

    
2472
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node_ip,
2473
                                                   constants.SSH_LOGIN_USER,
2474
                                                   destcmd)
2475

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

    
2479
  result = utils.RunCmd(["bash", "-c", command])
2480

    
2481
  if result.failed:
2482
    _Fail("Disk copy command '%s' returned error: %s"
2483
          " output: %s", command, result.fail_reason, result.output)
2484

    
2485

    
2486
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
2487
  """Write a file to the filesystem.
2488

2489
  This allows the master to overwrite(!) a file. It will only perform
2490
  the operation if the file belongs to a list of configuration files.
2491

2492
  @type file_name: str
2493
  @param file_name: the target file name
2494
  @type data: str
2495
  @param data: the new contents of the file
2496
  @type mode: int
2497
  @param mode: the mode to give the file (can be None)
2498
  @type uid: string
2499
  @param uid: the owner of the file
2500
  @type gid: string
2501
  @param gid: the group of the file
2502
  @type atime: float
2503
  @param atime: the atime to set on the file (can be None)
2504
  @type mtime: float
2505
  @param mtime: the mtime to set on the file (can be None)
2506
  @rtype: None
2507

2508
  """
2509
  file_name = vcluster.LocalizeVirtualPath(file_name)
2510

    
2511
  if not os.path.isabs(file_name):
2512
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
2513

    
2514
  if file_name not in _ALLOWED_UPLOAD_FILES:
2515
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
2516
          file_name)
2517

    
2518
  raw_data = _Decompress(data)
2519

    
2520
  if not (isinstance(uid, basestring) and isinstance(gid, basestring)):
2521
    _Fail("Invalid username/groupname type")
2522

    
2523
  getents = runtime.GetEnts()
2524
  uid = getents.LookupUser(uid)
2525
  gid = getents.LookupGroup(gid)
2526

    
2527
  utils.SafeWriteFile(file_name, None,
2528
                      data=raw_data, mode=mode, uid=uid, gid=gid,
2529
                      atime=atime, mtime=mtime)
2530

    
2531

    
2532
def RunOob(oob_program, command, node, timeout):
2533
  """Executes oob_program with given command on given node.
2534

2535
  @param oob_program: The path to the executable oob_program
2536
  @param command: The command to invoke on oob_program
2537
  @param node: The node given as an argument to the program
2538
  @param timeout: Timeout after which we kill the oob program
2539

2540
  @return: stdout
2541
  @raise RPCFail: If execution fails for some reason
2542

2543
  """
2544
  result = utils.RunCmd([oob_program, command, node], timeout=timeout)
2545

    
2546
  if result.failed:
2547
    _Fail("'%s' failed with reason '%s'; output: %s", result.cmd,
2548
          result.fail_reason, result.output)
2549

    
2550
  return result.stdout
2551

    
2552

    
2553
def _OSOndiskAPIVersion(os_dir):
2554
  """Compute and return the API version of a given OS.
2555

2556
  This function will try to read the API version of the OS residing in
2557
  the 'os_dir' directory.
2558

2559
  @type os_dir: str
2560
  @param os_dir: the directory in which we should look for the OS
2561
  @rtype: tuple
2562
  @return: tuple (status, data) with status denoting the validity and
2563
      data holding either the vaid versions or an error message
2564

2565
  """
2566
  api_file = utils.PathJoin(os_dir, constants.OS_API_FILE)
2567

    
2568
  try:
2569
    st = os.stat(api_file)
2570
  except EnvironmentError, err:
2571
    return False, ("Required file '%s' not found under path %s: %s" %
2572
                   (constants.OS_API_FILE, os_dir, utils.ErrnoOrStr(err)))
2573

    
2574
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
2575
    return False, ("File '%s' in %s is not a regular file" %
2576
                   (constants.OS_API_FILE, os_dir))
2577

    
2578
  try:
2579
    api_versions = utils.ReadFile(api_file).splitlines()
2580
  except EnvironmentError, err:
2581
    return False, ("Error while reading the API version file at %s: %s" %
2582
                   (api_file, utils.ErrnoOrStr(err)))
2583

    
2584
  try:
2585
    api_versions = [int(version.strip()) for version in api_versions]
2586
  except (TypeError, ValueError), err:
2587
    return False, ("API version(s) can't be converted to integer: %s" %
2588
                   str(err))
2589

    
2590
  return True, api_versions
2591

    
2592

    
2593
def DiagnoseOS(top_dirs=None):
2594
  """Compute the validity for all OSes.
2595

2596
  @type top_dirs: list
2597
  @param top_dirs: the list of directories in which to
2598
      search (if not given defaults to
2599
      L{pathutils.OS_SEARCH_PATH})
2600
  @rtype: list of L{objects.OS}
2601
  @return: a list of tuples (name, path, status, diagnose, variants,
2602
      parameters, api_version) for all (potential) OSes under all
2603
      search paths, where:
2604
          - name is the (potential) OS name
2605
          - path is the full path to the OS
2606
          - status True/False is the validity of the OS
2607
          - diagnose is the error message for an invalid OS, otherwise empty
2608
          - variants is a list of supported OS variants, if any
2609
          - parameters is a list of (name, help) parameters, if any
2610
          - api_version is a list of support OS API versions
2611

2612
  """
2613
  if top_dirs is None:
2614
    top_dirs = pathutils.OS_SEARCH_PATH
2615

    
2616
  result = []
2617
  for dir_name in top_dirs:
2618
    if os.path.isdir(dir_name):
2619
      try:
2620
        f_names = utils.ListVisibleFiles(dir_name)
2621
      except EnvironmentError, err:
2622
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
2623
        break
2624
      for name in f_names:
2625
        os_path = utils.PathJoin(dir_name, name)
2626
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
2627
        if status:
2628
          diagnose = ""
2629
          variants = os_inst.supported_variants
2630
          parameters = os_inst.supported_parameters
2631
          api_versions = os_inst.api_versions
2632
        else:
2633
          diagnose = os_inst
2634
          variants = parameters = api_versions = []
2635
        result.append((name, os_path, status, diagnose, variants,
2636
                       parameters, api_versions))
2637

    
2638
  return result
2639

    
2640

    
2641
def _TryOSFromDisk(name, base_dir=None):
2642
  """Create an OS instance from disk.
2643

2644
  This function will return an OS instance if the given name is a
2645
  valid OS name.
2646

2647
  @type base_dir: string
2648
  @keyword base_dir: Base directory containing OS installations.
2649
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
2650
  @rtype: tuple
2651
  @return: success and either the OS instance if we find a valid one,
2652
      or error message
2653

2654
  """
2655
  if base_dir is None:
2656
    os_dir = utils.FindFile(name, pathutils.OS_SEARCH_PATH, os.path.isdir)
2657
  else:
2658
    os_dir = utils.FindFile(name, [base_dir], os.path.isdir)
2659

    
2660
  if os_dir is None:
2661
    return False, "Directory for OS %s not found in search path" % name
2662

    
2663
  status, api_versions = _OSOndiskAPIVersion(os_dir)
2664
  if not status:
2665
    # push the error up
2666
    return status, api_versions
2667

    
2668
  if not constants.OS_API_VERSIONS.intersection(api_versions):
2669
    return False, ("API version mismatch for path '%s': found %s, want %s." %
2670
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
2671

    
2672
  # OS Files dictionary, we will populate it with the absolute path
2673
  # names; if the value is True, then it is a required file, otherwise
2674
  # an optional one
2675
  os_files = dict.fromkeys(constants.OS_SCRIPTS, True)
2676

    
2677
  if max(api_versions) >= constants.OS_API_V15:
2678
    os_files[constants.OS_VARIANTS_FILE] = False
2679

    
2680
  if max(api_versions) >= constants.OS_API_V20:
2681
    os_files[constants.OS_PARAMETERS_FILE] = True
2682
  else:
2683
    del os_files[constants.OS_SCRIPT_VERIFY]
2684

    
2685
  for (filename, required) in os_files.items():
2686
    os_files[filename] = utils.PathJoin(os_dir, filename)
2687

    
2688
    try:
2689
      st = os.stat(os_files[filename])
2690
    except EnvironmentError, err:
2691
      if err.errno == errno.ENOENT and not required:
2692
        del os_files[filename]
2693
        continue
2694
      return False, ("File '%s' under path '%s' is missing (%s)" %
2695
                     (filename, os_dir, utils.ErrnoOrStr(err)))
2696

    
2697
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
2698
      return False, ("File '%s' under path '%s' is not a regular file" %
2699
                     (filename, os_dir))
2700

    
2701
    if filename in constants.OS_SCRIPTS:
2702
      if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
2703
        return False, ("File '%s' under path '%s' is not executable" %
2704
                       (filename, os_dir))
2705

    
2706
  variants = []
2707
  if constants.OS_VARIANTS_FILE in os_files:
2708
    variants_file = os_files[constants.OS_VARIANTS_FILE]
2709
    try:
2710
      variants = \
2711
        utils.FilterEmptyLinesAndComments(utils.ReadFile(variants_file))
2712
    except EnvironmentError, err:
2713
      # we accept missing files, but not other errors
2714
      if err.errno != errno.ENOENT:
2715
        return False, ("Error while reading the OS variants file at %s: %s" %
2716
                       (variants_file, utils.ErrnoOrStr(err)))
2717

    
2718
  parameters = []
2719
  if constants.OS_PARAMETERS_FILE in os_files:
2720
    parameters_file = os_files[constants.OS_PARAMETERS_FILE]
2721
    try:
2722
      parameters = utils.ReadFile(parameters_file).splitlines()
2723
    except EnvironmentError, err:
2724
      return False, ("Error while reading the OS parameters file at %s: %s" %
2725
                     (parameters_file, utils.ErrnoOrStr(err)))
2726
    parameters = [v.split(None, 1) for v in parameters]
2727

    
2728
  os_obj = objects.OS(name=name, path=os_dir,
2729
                      create_script=os_files[constants.OS_SCRIPT_CREATE],
2730
                      export_script=os_files[constants.OS_SCRIPT_EXPORT],
2731
                      import_script=os_files[constants.OS_SCRIPT_IMPORT],
2732
                      rename_script=os_files[constants.OS_SCRIPT_RENAME],
2733
                      verify_script=os_files.get(constants.OS_SCRIPT_VERIFY,
2734
                                                 None),
2735
                      supported_variants=variants,
2736
                      supported_parameters=parameters,
2737
                      api_versions=api_versions)
2738
  return True, os_obj
2739

    
2740

    
2741
def OSFromDisk(name, base_dir=None):
2742
  """Create an OS instance from disk.
2743

2744
  This function will return an OS instance if the given name is a
2745
  valid OS name. Otherwise, it will raise an appropriate
2746
  L{RPCFail} exception, detailing why this is not a valid OS.
2747

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

2751
  @type base_dir: string
2752
  @keyword base_dir: Base directory containing OS installations.
2753
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
2754
  @rtype: L{objects.OS}
2755
  @return: the OS instance if we find a valid one
2756
  @raise RPCFail: if we don't find a valid OS
2757

2758
  """
2759
  name_only = objects.OS.GetName(name)
2760
  status, payload = _TryOSFromDisk(name_only, base_dir)
2761

    
2762
  if not status:
2763
    _Fail(payload)
2764

    
2765
  return payload
2766

    
2767

    
2768
def OSCoreEnv(os_name, inst_os, os_params, debug=0):
2769
  """Calculate the basic environment for an os script.
2770

2771
  @type os_name: str
2772
  @param os_name: full operating system name (including variant)
2773
  @type inst_os: L{objects.OS}
2774
  @param inst_os: operating system for which the environment is being built
2775
  @type os_params: dict
2776
  @param os_params: the OS parameters
2777
  @type debug: integer
2778
  @param debug: debug level (0 or 1, for OS Api 10)
2779
  @rtype: dict
2780
  @return: dict of environment variables
2781
  @raise errors.BlockDeviceError: if the block device
2782
      cannot be found
2783

2784
  """
2785
  result = {}
2786
  api_version = \
2787
    max(constants.OS_API_VERSIONS.intersection(inst_os.api_versions))
2788
  result["OS_API_VERSION"] = "%d" % api_version
2789
  result["OS_NAME"] = inst_os.name
2790
  result["DEBUG_LEVEL"] = "%d" % debug
2791

    
2792
  # OS variants
2793
  if api_version >= constants.OS_API_V15 and inst_os.supported_variants:
2794
    variant = objects.OS.GetVariant(os_name)
2795
    if not variant:
2796
      variant = inst_os.supported_variants[0]
2797
  else:
2798
    variant = ""
2799
  result["OS_VARIANT"] = variant
2800

    
2801
  # OS params
2802
  for pname, pvalue in os_params.items():
2803
    result["OSP_%s" % pname.upper()] = pvalue
2804

    
2805
  # Set a default path otherwise programs called by OS scripts (or
2806
  # even hooks called from OS scripts) might break, and we don't want
2807
  # to have each script require setting a PATH variable
2808
  result["PATH"] = constants.HOOKS_PATH
2809

    
2810
  return result
2811

    
2812

    
2813
def OSEnvironment(instance, inst_os, debug=0):
2814
  """Calculate the environment for an os script.
2815

2816
  @type instance: L{objects.Instance}
2817
  @param instance: target instance for the os script run
2818
  @type inst_os: L{objects.OS}
2819
  @param inst_os: operating system for which the environment is being built
2820
  @type debug: integer
2821
  @param debug: debug level (0 or 1, for OS Api 10)
2822
  @rtype: dict
2823
  @return: dict of environment variables
2824
  @raise errors.BlockDeviceError: if the block device
2825
      cannot be found
2826

2827
  """
2828
  result = OSCoreEnv(instance.os, inst_os, instance.osparams, debug=debug)
2829

    
2830
  for attr in ["name", "os", "uuid", "ctime", "mtime", "primary_node"]:
2831
    result["INSTANCE_%s" % attr.upper()] = str(getattr(instance, attr))
2832

    
2833
  result["HYPERVISOR"] = instance.hypervisor
2834
  result["DISK_COUNT"] = "%d" % len(instance.disks)
2835
  result["NIC_COUNT"] = "%d" % len(instance.nics)
2836
  result["INSTANCE_SECONDARY_NODES"] = \
2837
      ("%s" % " ".join(instance.secondary_nodes))
2838

    
2839
  # Disks
2840
  for idx, disk in enumerate(instance.disks):
2841
    real_disk = _OpenRealBD(disk)
2842
    result["DISK_%d_PATH" % idx] = real_disk.dev_path
2843
    result["DISK_%d_ACCESS" % idx] = disk.mode
2844
    result["DISK_%d_UUID" % idx] = disk.uuid
2845
    if disk.name:
2846
      result["DISK_%d_NAME" % idx] = disk.name
2847
    if constants.HV_DISK_TYPE in instance.hvparams:
2848
      result["DISK_%d_FRONTEND_TYPE" % idx] = \
2849
        instance.hvparams[constants.HV_DISK_TYPE]
2850
    if disk.dev_type in constants.DTS_BLOCK:
2851
      result["DISK_%d_BACKEND_TYPE" % idx] = "block"
2852
    elif disk.dev_type in [constants.DT_FILE, constants.DT_SHARED_FILE]:
2853
      result["DISK_%d_BACKEND_TYPE" % idx] = \
2854
        "file:%s" % disk.logical_id[0]
2855

    
2856
  # NICs
2857
  for idx, nic in enumerate(instance.nics):
2858
    result["NIC_%d_MAC" % idx] = nic.mac
2859
    result["NIC_%d_UUID" % idx] = nic.uuid
2860
    if nic.name:
2861
      result["NIC_%d_NAME" % idx] = nic.name
2862
    if nic.ip:
2863
      result["NIC_%d_IP" % idx] = nic.ip
2864
    result["NIC_%d_MODE" % idx] = nic.nicparams[constants.NIC_MODE]
2865
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
2866
      result["NIC_%d_BRIDGE" % idx] = nic.nicparams[constants.NIC_LINK]
2867
    if nic.nicparams[constants.NIC_LINK]:
2868
      result["NIC_%d_LINK" % idx] = nic.nicparams[constants.NIC_LINK]
2869
    if nic.netinfo:
2870
      nobj = objects.Network.FromDict(nic.netinfo)
2871
      result.update(nobj.HooksDict("NIC_%d_" % idx))
2872
    if constants.HV_NIC_TYPE in instance.hvparams:
2873
      result["NIC_%d_FRONTEND_TYPE" % idx] = \
2874
        instance.hvparams[constants.HV_NIC_TYPE]
2875

    
2876
  # HV/BE params
2877
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
2878
    for key, value in source.items():
2879
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
2880

    
2881
  return result
2882

    
2883

    
2884
def DiagnoseExtStorage(top_dirs=None):
2885
  """Compute the validity for all ExtStorage Providers.
2886

2887
  @type top_dirs: list
2888
  @param top_dirs: the list of directories in which to
2889
      search (if not given defaults to
2890
      L{pathutils.ES_SEARCH_PATH})
2891
  @rtype: list of L{objects.ExtStorage}
2892
  @return: a list of tuples (name, path, status, diagnose, parameters)
2893
      for all (potential) ExtStorage Providers under all
2894
      search paths, where:
2895
          - name is the (potential) ExtStorage Provider
2896
          - path is the full path to the ExtStorage Provider
2897
          - status True/False is the validity of the ExtStorage Provider
2898
          - diagnose is the error message for an invalid ExtStorage Provider,
2899
            otherwise empty
2900
          - parameters is a list of (name, help) parameters, if any
2901

2902
  """
2903
  if top_dirs is None:
2904
    top_dirs = pathutils.ES_SEARCH_PATH
2905

    
2906
  result = []
2907
  for dir_name in top_dirs:
2908
    if os.path.isdir(dir_name):
2909
      try:
2910
        f_names = utils.ListVisibleFiles(dir_name)
2911
      except EnvironmentError, err:
2912
        logging.exception("Can't list the ExtStorage directory %s: %s",
2913
                          dir_name, err)
2914
        break
2915
      for name in f_names:
2916
        es_path = utils.PathJoin(dir_name, name)
2917
        status, es_inst = bdev.ExtStorageFromDisk(name, base_dir=dir_name)
2918
        if status:
2919
          diagnose = ""
2920
          parameters = es_inst.supported_parameters
2921
        else:
2922
          diagnose = es_inst
2923
          parameters = []
2924
        result.append((name, es_path, status, diagnose, parameters))
2925

    
2926
  return result
2927

    
2928

    
2929
def BlockdevGrow(disk, amount, dryrun, backingstore, excl_stor):
2930
  """Grow a stack of block devices.
2931

2932
  This function is called recursively, with the childrens being the
2933
  first ones to resize.
2934

2935
  @type disk: L{objects.Disk}
2936
  @param disk: the disk to be grown
2937
  @type amount: integer
2938
  @param amount: the amount (in mebibytes) to grow with
2939
  @type dryrun: boolean
2940
  @param dryrun: whether to execute the operation in simulation mode
2941
      only, without actually increasing the size
2942
  @param backingstore: whether to execute the operation on backing storage
2943
      only, or on "logical" storage only; e.g. DRBD is logical storage,
2944
      whereas LVM, file, RBD are backing storage
2945
  @rtype: (status, result)
2946
  @type excl_stor: boolean
2947
  @param excl_stor: Whether exclusive_storage is active
2948
  @return: a tuple with the status of the operation (True/False), and
2949
      the errors message if status is False
2950

2951
  """
2952
  r_dev = _RecursiveFindBD(disk)
2953
  if r_dev is None:
2954
    _Fail("Cannot find block device %s", disk)
2955

    
2956
  try:
2957
    r_dev.Grow(amount, dryrun, backingstore, excl_stor)
2958
  except errors.BlockDeviceError, err:
2959
    _Fail("Failed to grow block device: %s", err, exc=True)
2960

    
2961

    
2962
def BlockdevSnapshot(disk):
2963
  """Create a snapshot copy of a block device.
2964

2965
  This function is called recursively, and the snapshot is actually created
2966
  just for the leaf lvm backend device.
2967

2968
  @type disk: L{objects.Disk}
2969
  @param disk: the disk to be snapshotted
2970
  @rtype: string
2971
  @return: snapshot disk ID as (vg, lv)
2972

2973
  """
2974
  if disk.dev_type == constants.DT_DRBD8:
2975
    if not disk.children:
2976
      _Fail("DRBD device '%s' without backing storage cannot be snapshotted",
2977
            disk.unique_id)
2978
    return BlockdevSnapshot(disk.children[0])
2979
  elif disk.dev_type == constants.DT_PLAIN:
2980
    r_dev = _RecursiveFindBD(disk)
2981
    if r_dev is not None:
2982
      # FIXME: choose a saner value for the snapshot size
2983
      # let's stay on the safe side and ask for the full size, for now
2984
      return r_dev.Snapshot(disk.size)
2985
    else:
2986
      _Fail("Cannot find block device %s", disk)
2987
  else:
2988
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
2989
          disk.unique_id, disk.dev_type)
2990

    
2991

    
2992
def BlockdevSetInfo(disk, info):
2993
  """Sets 'metadata' information on block devices.
2994

2995
  This function sets 'info' metadata on block devices. Initial
2996
  information is set at device creation; this function should be used
2997
  for example after renames.
2998

2999
  @type disk: L{objects.Disk}
3000
  @param disk: the disk to be grown
3001
  @type info: string
3002
  @param info: new 'info' metadata
3003
  @rtype: (status, result)
3004
  @return: a tuple with the status of the operation (True/False), and
3005
      the errors message if status is False
3006

3007
  """
3008
  r_dev = _RecursiveFindBD(disk)
3009
  if r_dev is None:
3010
    _Fail("Cannot find block device %s", disk)
3011

    
3012
  try:
3013
    r_dev.SetInfo(info)
3014
  except errors.BlockDeviceError, err:
3015
    _Fail("Failed to set information on block device: %s", err, exc=True)
3016

    
3017

    
3018
def FinalizeExport(instance, snap_disks):
3019
  """Write out the export configuration information.
3020

3021
  @type instance: L{objects.Instance}
3022
  @param instance: the instance which we export, used for
3023
      saving configuration
3024
  @type snap_disks: list of L{objects.Disk}
3025
  @param snap_disks: list of snapshot block devices, which
3026
      will be used to get the actual name of the dump file
3027

3028
  @rtype: None
3029

3030
  """
3031
  destdir = utils.PathJoin(pathutils.EXPORT_DIR, instance.name + ".new")
3032
  finaldestdir = utils.PathJoin(pathutils.EXPORT_DIR, instance.name)
3033

    
3034
  config = objects.SerializableConfigParser()
3035

    
3036
  config.add_section(constants.INISECT_EXP)
3037
  config.set(constants.INISECT_EXP, "version", "0")
3038
  config.set(constants.INISECT_EXP, "timestamp", "%d" % int(time.time()))
3039
  config.set(constants.INISECT_EXP, "source", instance.primary_node)
3040
  config.set(constants.INISECT_EXP, "os", instance.os)
3041
  config.set(constants.INISECT_EXP, "compression", "none")
3042

    
3043
  config.add_section(constants.INISECT_INS)
3044
  config.set(constants.INISECT_INS, "name", instance.name)
3045
  config.set(constants.INISECT_INS, "maxmem", "%d" %
3046
             instance.beparams[constants.BE_MAXMEM])
3047
  config.set(constants.INISECT_INS, "minmem", "%d" %
3048
             instance.beparams[constants.BE_MINMEM])
3049
  # "memory" is deprecated, but useful for exporting to old ganeti versions
3050
  config.set(constants.INISECT_INS, "memory", "%d" %
3051
             instance.beparams[constants.BE_MAXMEM])
3052
  config.set(constants.INISECT_INS, "vcpus", "%d" %
3053
             instance.beparams[constants.BE_VCPUS])
3054
  config.set(constants.INISECT_INS, "disk_template", instance.disk_template)
3055
  config.set(constants.INISECT_INS, "hypervisor", instance.hypervisor)
3056
  config.set(constants.INISECT_INS, "tags", " ".join(instance.GetTags()))
3057

    
3058
  nic_total = 0
3059
  for nic_count, nic in enumerate(instance.nics):
3060
    nic_total += 1
3061
    config.set(constants.INISECT_INS, "nic%d_mac" %
3062
               nic_count, "%s" % nic.mac)
3063
    config.set(constants.INISECT_INS, "nic%d_ip" % nic_count, "%s" % nic.ip)
3064
    config.set(constants.INISECT_INS, "nic%d_network" % nic_count,
3065
               "%s" % nic.network)
3066
    for param in constants.NICS_PARAMETER_TYPES:
3067
      config.set(constants.INISECT_INS, "nic%d_%s" % (nic_count, param),
3068
                 "%s" % nic.nicparams.get(param, None))
3069
  # TODO: redundant: on load can read nics until it doesn't exist
3070
  config.set(constants.INISECT_INS, "nic_count", "%d" % nic_total)
3071

    
3072
  disk_total = 0
3073
  for disk_count, disk in enumerate(snap_disks):
3074
    if disk:
3075
      disk_total += 1
3076
      config.set(constants.INISECT_INS, "disk%d_ivname" % disk_count,
3077
                 ("%s" % disk.iv_name))
3078
      config.set(constants.INISECT_INS, "disk%d_dump" % disk_count,
3079
                 ("%s" % disk.logical_id[1]))
3080
      config.set(constants.INISECT_INS, "disk%d_size" % disk_count,
3081
                 ("%d" % disk.size))
3082

    
3083
  config.set(constants.INISECT_INS, "disk_count", "%d" % disk_total)
3084

    
3085
  # New-style hypervisor/backend parameters
3086

    
3087
  config.add_section(constants.INISECT_HYP)
3088
  for name, value in instance.hvparams.items():
3089
    if name not in constants.HVC_GLOBALS:
3090
      config.set(constants.INISECT_HYP, name, str(value))
3091

    
3092
  config.add_section(constants.INISECT_BEP)
3093
  for name, value in instance.beparams.items():
3094
    config.set(constants.INISECT_BEP, name, str(value))
3095

    
3096
  config.add_section(constants.INISECT_OSP)
3097
  for name, value in instance.osparams.items():
3098
    config.set(constants.INISECT_OSP, name, str(value))
3099

    
3100
  utils.WriteFile(utils.PathJoin(destdir, constants.EXPORT_CONF_FILE),
3101
                  data=config.Dumps())
3102
  shutil.rmtree(finaldestdir, ignore_errors=True)
3103
  shutil.move(destdir, finaldestdir)
3104

    
3105

    
3106
def ExportInfo(dest):
3107
  """Get export configuration information.
3108

3109
  @type dest: str
3110
  @param dest: directory containing the export
3111

3112
  @rtype: L{objects.SerializableConfigParser}
3113
  @return: a serializable config file containing the
3114
      export info
3115

3116
  """
3117
  cff = utils.PathJoin(dest, constants.EXPORT_CONF_FILE)
3118

    
3119
  config = objects.SerializableConfigParser()
3120
  config.read(cff)
3121

    
3122
  if (not config.has_section(constants.INISECT_EXP) or
3123
      not config.has_section(constants.INISECT_INS)):
3124
    _Fail("Export info file doesn't have the required fields")
3125

    
3126
  return config.Dumps()
3127

    
3128

    
3129
def ListExports():
3130
  """Return a list of exports currently available on this machine.
3131

3132
  @rtype: list
3133
  @return: list of the exports
3134

3135
  """
3136
  if os.path.isdir(pathutils.EXPORT_DIR):
3137
    return sorted(utils.ListVisibleFiles(pathutils.EXPORT_DIR))
3138
  else:
3139
    _Fail("No exports directory")
3140

    
3141

    
3142
def RemoveExport(export):
3143
  """Remove an existing export from the node.
3144

3145
  @type export: str
3146
  @param export: the name of the export to remove
3147
  @rtype: None
3148

3149
  """
3150
  target = utils.PathJoin(pathutils.EXPORT_DIR, export)
3151

    
3152
  try:
3153
    shutil.rmtree(target)
3154
  except EnvironmentError, err:
3155
    _Fail("Error while removing the export: %s", err, exc=True)
3156

    
3157

    
3158
def BlockdevRename(devlist):
3159
  """Rename a list of block devices.
3160

3161
  @type devlist: list of tuples
3162
  @param devlist: list of tuples of the form  (disk, new_unique_id); disk is
3163
      an L{objects.Disk} object describing the current disk, and new
3164
      unique_id is the name we rename it to
3165
  @rtype: boolean
3166
  @return: True if all renames succeeded, False otherwise
3167

3168
  """
3169
  msgs = []
3170
  result = True
3171
  for disk, unique_id in devlist:
3172
    dev = _RecursiveFindBD(disk)
3173
    if dev is None:
3174
      msgs.append("Can't find device %s in rename" % str(disk))
3175
      result = False
3176
      continue
3177
    try:
3178
      old_rpath = dev.dev_path
3179
      dev.Rename(unique_id)
3180
      new_rpath = dev.dev_path
3181
      if old_rpath != new_rpath:
3182
        DevCacheManager.RemoveCache(old_rpath)
3183
        # FIXME: we should add the new cache information here, like:
3184
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
3185
        # but we don't have the owner here - maybe parse from existing
3186
        # cache? for now, we only lose lvm data when we rename, which
3187
        # is less critical than DRBD or MD
3188
    except errors.BlockDeviceError, err:
3189
      msgs.append("Can't rename device '%s' to '%s': %s" %
3190
                  (dev, unique_id, err))
3191
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
3192
      result = False
3193
  if not result:
3194
    _Fail("; ".join(msgs))
3195

    
3196

    
3197
def _TransformFileStorageDir(fs_dir):
3198
  """Checks whether given file_storage_dir is valid.
3199

3200
  Checks wheter the given fs_dir is within the cluster-wide default
3201
  file_storage_dir or the shared_file_storage_dir, which are stored in
3202
  SimpleStore. Only paths under those directories are allowed.
3203

3204
  @type fs_dir: str
3205
  @param fs_dir: the path to check
3206

3207
  @return: the normalized path if valid, None otherwise
3208

3209
  """
3210
  filestorage.CheckFileStoragePath(fs_dir)
3211

    
3212
  return os.path.normpath(fs_dir)
3213

    
3214

    
3215
def CreateFileStorageDir(file_storage_dir):
3216
  """Create file storage directory.
3217

3218
  @type file_storage_dir: str
3219
  @param file_storage_dir: directory to create
3220

3221
  @rtype: tuple
3222
  @return: tuple with first element a boolean indicating wheter dir
3223
      creation was successful or not
3224

3225
  """
3226
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
3227
  if os.path.exists(file_storage_dir):
3228
    if not os.path.isdir(file_storage_dir):
3229
      _Fail("Specified storage dir '%s' is not a directory",
3230
            file_storage_dir)
3231
  else:
3232
    try:
3233
      os.makedirs(file_storage_dir, 0750)
3234
    except OSError, err:
3235
      _Fail("Cannot create file storage directory '%s': %s",
3236
            file_storage_dir, err, exc=True)
3237

    
3238

    
3239
def RemoveFileStorageDir(file_storage_dir):
3240
  """Remove file storage directory.
3241

3242
  Remove it only if it's empty. If not log an error and return.
3243

3244
  @type file_storage_dir: str
3245
  @param file_storage_dir: the directory we should cleanup
3246
  @rtype: tuple (success,)
3247
  @return: tuple of one element, C{success}, denoting
3248
      whether the operation was successful
3249

3250
  """
3251
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
3252
  if os.path.exists(file_storage_dir):
3253
    if not os.path.isdir(file_storage_dir):
3254
      _Fail("Specified Storage directory '%s' is not a directory",
3255
            file_storage_dir)
3256
    # deletes dir only if empty, otherwise we want to fail the rpc call
3257
    try:
3258
      os.rmdir(file_storage_dir)
3259
    except OSError, err:
3260
      _Fail("Cannot remove file storage directory '%s': %s",
3261
            file_storage_dir, err)
3262

    
3263

    
3264
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
3265
  """Rename the file storage directory.
3266

3267
  @type old_file_storage_dir: str
3268
  @param old_file_storage_dir: the current path
3269
  @type new_file_storage_dir: str
3270
  @param new_file_storage_dir: the name we should rename to
3271
  @rtype: tuple (success,)
3272
  @return: tuple of one element, C{success}, denoting
3273
      whether the operation was successful
3274

3275
  """
3276
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
3277
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
3278
  if not os.path.exists(new_file_storage_dir):
3279
    if os.path.isdir(old_file_storage_dir):
3280
      try:
3281
        os.rename(old_file_storage_dir, new_file_storage_dir)
3282
      except OSError, err:
3283
        _Fail("Cannot rename '%s' to '%s': %s",
3284
              old_file_storage_dir, new_file_storage_dir, err)
3285
    else:
3286
      _Fail("Specified storage dir '%s' is not a directory",
3287
            old_file_storage_dir)
3288
  else:
3289
    if os.path.exists(old_file_storage_dir):
3290
      _Fail("Cannot rename '%s' to '%s': both locations exist",
3291
            old_file_storage_dir, new_file_storage_dir)
3292

    
3293

    
3294
def _EnsureJobQueueFile(file_name):
3295
  """Checks whether the given filename is in the queue directory.
3296

3297
  @type file_name: str
3298
  @param file_name: the file name we should check
3299
  @rtype: None
3300
  @raises RPCFail: if the file is not valid
3301

3302
  """
3303
  if not utils.IsBelowDir(pathutils.QUEUE_DIR, file_name):
3304
    _Fail("Passed job queue file '%s' does not belong to"
3305
          " the queue directory '%s'", file_name, pathutils.QUEUE_DIR)
3306

    
3307

    
3308
def JobQueueUpdate(file_name, content):
3309
  """Updates a file in the queue directory.
3310

3311
  This is just a wrapper over L{utils.io.WriteFile}, with proper
3312
  checking.
3313

3314
  @type file_name: str
3315
  @param file_name: the job file name
3316
  @type content: str
3317
  @param content: the new job contents
3318
  @rtype: boolean
3319
  @return: the success of the operation
3320

3321
  """
3322
  file_name = vcluster.LocalizeVirtualPath(file_name)
3323

    
3324
  _EnsureJobQueueFile(file_name)
3325
  getents = runtime.GetEnts()
3326

    
3327
  # Write and replace the file atomically
3328
  utils.WriteFile(file_name, data=_Decompress(content), uid=getents.masterd_uid,
3329
                  gid=getents.daemons_gid, mode=constants.JOB_QUEUE_FILES_PERMS)
3330

    
3331

    
3332
def JobQueueRename(old, new):
3333
  """Renames a job queue file.
3334

3335
  This is just a wrapper over os.rename with proper checking.
3336

3337
  @type old: str
3338
  @param old: the old (actual) file name
3339
  @type new: str
3340
  @param new: the desired file name
3341
  @rtype: tuple
3342
  @return: the success of the operation and payload
3343

3344
  """
3345
  old = vcluster.LocalizeVirtualPath(old)
3346
  new = vcluster.LocalizeVirtualPath(new)
3347

    
3348
  _EnsureJobQueueFile(old)
3349
  _EnsureJobQueueFile(new)
3350

    
3351
  getents = runtime.GetEnts()
3352

    
3353
  utils.RenameFile(old, new, mkdir=True, mkdir_mode=0750,
3354
                   dir_uid=getents.masterd_uid, dir_gid=getents.daemons_gid)
3355

    
3356

    
3357
def BlockdevClose(instance_name, disks):
3358
  """Closes the given block devices.
3359

3360
  This means they will be switched to secondary mode (in case of
3361
  DRBD).
3362

3363
  @param instance_name: if the argument is not empty, the symlinks
3364
      of this instance will be removed
3365
  @type disks: list of L{objects.Disk}
3366
  @param disks: the list of disks to be closed
3367
  @rtype: tuple (success, message)
3368
  @return: a tuple of success and message, where success
3369
      indicates the succes of the operation, and message
3370
      which will contain the error details in case we
3371
      failed
3372

3373
  """
3374
  bdevs = []
3375
  for cf in disks:
3376
    rd = _RecursiveFindBD(cf)
3377
    if rd is None:
3378
      _Fail("Can't find device %s", cf)
3379
    bdevs.append(rd)
3380

    
3381
  msg = []
3382
  for rd in bdevs:
3383
    try:
3384
      rd.Close()
3385
    except errors.BlockDeviceError, err:
3386
      msg.append(str(err))
3387
  if msg:
3388
    _Fail("Can't make devices secondary: %s", ",".join(msg))
3389
  else:
3390
    if instance_name:
3391
      _RemoveBlockDevLinks(instance_name, disks)
3392

    
3393

    
3394
def ValidateHVParams(hvname, hvparams):
3395
  """Validates the given hypervisor parameters.
3396

3397
  @type hvname: string
3398
  @param hvname: the hypervisor name
3399
  @type hvparams: dict
3400
  @param hvparams: the hypervisor parameters to be validated
3401
  @rtype: None
3402

3403
  """
3404
  try:
3405
    hv_type = hypervisor.GetHypervisor(hvname)
3406
    hv_type.ValidateParameters(hvparams)
3407
  except errors.HypervisorError, err:
3408
    _Fail(str(err), log=False)
3409

    
3410

    
3411
def _CheckOSPList(os_obj, parameters):
3412
  """Check whether a list of parameters is supported by the OS.
3413

3414
  @type os_obj: L{objects.OS}
3415
  @param os_obj: OS object to check
3416
  @type parameters: list
3417
  @param parameters: the list of parameters to check
3418

3419
  """
3420
  supported = [v[0] for v in os_obj.supported_parameters]
3421
  delta = frozenset(parameters).difference(supported)
3422
  if delta:
3423
    _Fail("The following parameters are not supported"
3424
          " by the OS %s: %s" % (os_obj.name, utils.CommaJoin(delta)))
3425

    
3426

    
3427
def ValidateOS(required, osname, checks, osparams):
3428
  """Validate the given OS' parameters.
3429

3430
  @type required: boolean
3431
  @param required: whether absence of the OS should translate into
3432
      failure or not
3433
  @type osname: string
3434
  @param osname: the OS to be validated
3435
  @type checks: list
3436
  @param checks: list of the checks to run (currently only 'parameters')
3437
  @type osparams: dict
3438
  @param osparams: dictionary with OS parameters
3439
  @rtype: boolean
3440
  @return: True if the validation passed, or False if the OS was not
3441
      found and L{required} was false
3442

3443
  """
3444
  if not constants.OS_VALIDATE_CALLS.issuperset(checks):
3445
    _Fail("Unknown checks required for OS %s: %s", osname,
3446
          set(checks).difference(constants.OS_VALIDATE_CALLS))
3447

    
3448
  name_only = objects.OS.GetName(osname)
3449
  status, tbv = _TryOSFromDisk(name_only, None)
3450

    
3451
  if not status:
3452
    if required:
3453
      _Fail(tbv)
3454
    else:
3455
      return False
3456

    
3457
  if max(tbv.api_versions) < constants.OS_API_V20:
3458
    return True
3459

    
3460
  if constants.OS_VALIDATE_PARAMETERS in checks:
3461
    _CheckOSPList(tbv, osparams.keys())
3462

    
3463
  validate_env = OSCoreEnv(osname, tbv, osparams)
3464
  result = utils.RunCmd([tbv.verify_script] + checks, env=validate_env,
3465
                        cwd=tbv.path, reset_env=True)
3466
  if result.failed:
3467
    logging.error("os validate command '%s' returned error: %s output: %s",
3468
                  result.cmd, result.fail_reason, result.output)
3469
    _Fail("OS validation script failed (%s), output: %s",
3470
          result.fail_reason, result.output, log=False)
3471

    
3472
  return True
3473

    
3474

    
3475
def DemoteFromMC():
3476
  """Demotes the current node from master candidate role.
3477

3478
  """
3479
  # try to ensure we're not the master by mistake
3480
  master, myself = ssconf.GetMasterAndMyself()
3481
  if master == myself:
3482
    _Fail("ssconf status shows I'm the master node, will not demote")
3483

    
3484
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "check", constants.MASTERD])
3485
  if not result.failed:
3486
    _Fail("The master daemon is running, will not demote")
3487

    
3488
  try:
3489
    if os.path.isfile(pathutils.CLUSTER_CONF_FILE):
3490
      utils.CreateBackup(pathutils.CLUSTER_CONF_FILE)
3491
  except EnvironmentError, err:
3492
    if err.errno != errno.ENOENT:
3493
      _Fail("Error while backing up cluster file: %s", err, exc=True)
3494

    
3495
  utils.RemoveFile(pathutils.CLUSTER_CONF_FILE)
3496

    
3497

    
3498
def _GetX509Filenames(cryptodir, name):
3499
  """Returns the full paths for the private key and certificate.
3500

3501
  """
3502
  return (utils.PathJoin(cryptodir, name),
3503
          utils.PathJoin(cryptodir, name, _X509_KEY_FILE),
3504
          utils.PathJoin(cryptodir, name, _X509_CERT_FILE))
3505

    
3506

    
3507
def CreateX509Certificate(validity, cryptodir=pathutils.CRYPTO_KEYS_DIR):
3508
  """Creates a new X509 certificate for SSL/TLS.
3509

3510
  @type validity: int
3511
  @param validity: Validity in seconds
3512
  @rtype: tuple; (string, string)
3513
  @return: Certificate name and public part
3514

3515
  """
3516
  (key_pem, cert_pem) = \
3517
    utils.GenerateSelfSignedX509Cert(netutils.Hostname.GetSysName(),
3518
                                     min(validity, _MAX_SSL_CERT_VALIDITY))
3519

    
3520
  cert_dir = tempfile.mkdtemp(dir=cryptodir,
3521
                              prefix="x509-%s-" % utils.TimestampForFilename())
3522
  try:
3523
    name = os.path.basename(cert_dir)
3524
    assert len(name) > 5
3525

    
3526
    (_, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
3527

    
3528
    utils.WriteFile(key_file, mode=0400, data=key_pem)
3529
    utils.WriteFile(cert_file, mode=0400, data=cert_pem)
3530

    
3531
    # Never return private key as it shouldn't leave the node
3532
    return (name, cert_pem)
3533
  except Exception:
3534
    shutil.rmtree(cert_dir, ignore_errors=True)
3535
    raise
3536

    
3537

    
3538
def RemoveX509Certificate(name, cryptodir=pathutils.CRYPTO_KEYS_DIR):
3539
  """Removes a X509 certificate.
3540

3541
  @type name: string
3542
  @param name: Certificate name
3543

3544
  """
3545
  (cert_dir, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
3546

    
3547
  utils.RemoveFile(key_file)
3548
  utils.RemoveFile(cert_file)
3549

    
3550
  try:
3551
    os.rmdir(cert_dir)
3552
  except EnvironmentError, err:
3553
    _Fail("Cannot remove certificate directory '%s': %s",
3554
          cert_dir, err)
3555

    
3556

    
3557
def _GetImportExportIoCommand(instance, mode, ieio, ieargs):
3558
  """Returns the command for the requested input/output.
3559

3560
  @type instance: L{objects.Instance}
3561
  @param instance: The instance object
3562
  @param mode: Import/export mode
3563
  @param ieio: Input/output type
3564
  @param ieargs: Input/output arguments
3565

3566
  """
3567
  assert mode in (constants.IEM_IMPORT, constants.IEM_EXPORT)
3568

    
3569
  env = None
3570
  prefix = None
3571
  suffix = None
3572
  exp_size = None
3573

    
3574
  if ieio == constants.IEIO_FILE:
3575
    (filename, ) = ieargs
3576

    
3577
    if not utils.IsNormAbsPath(filename):
3578
      _Fail("Path '%s' is not normalized or absolute", filename)
3579

    
3580
    real_filename = os.path.realpath(filename)
3581
    directory = os.path.dirname(real_filename)
3582

    
3583
    if not utils.IsBelowDir(pathutils.EXPORT_DIR, real_filename):
3584
      _Fail("File '%s' is not under exports directory '%s': %s",
3585
            filename, pathutils.EXPORT_DIR, real_filename)
3586

    
3587
    # Create directory
3588
    utils.Makedirs(directory, mode=0750)
3589

    
3590
    quoted_filename = utils.ShellQuote(filename)
3591

    
3592
    if mode == constants.IEM_IMPORT:
3593
      suffix = "> %s" % quoted_filename
3594
    elif mode == constants.IEM_EXPORT:
3595
      suffix = "< %s" % quoted_filename
3596

    
3597
      # Retrieve file size
3598
      try:
3599
        st = os.stat(filename)
3600
      except EnvironmentError, err:
3601
        logging.error("Can't stat(2) %s: %s", filename, err)
3602
      else:
3603
        exp_size = utils.BytesToMebibyte(st.st_size)
3604

    
3605
  elif ieio == constants.IEIO_RAW_DISK:
3606
    (disk, ) = ieargs
3607

    
3608
    real_disk = _OpenRealBD(disk)
3609

    
3610
    if mode == constants.IEM_IMPORT:
3611
      # we set here a smaller block size as, due to transport buffering, more
3612
      # than 64-128k will mostly ignored; we use nocreat to fail if the device
3613
      # is not already there or we pass a wrong path; we use notrunc to no
3614
      # attempt truncate on an LV device; we use oflag=dsync to not buffer too
3615
      # much memory; this means that at best, we flush every 64k, which will
3616
      # not be very fast
3617
      suffix = utils.BuildShellCmd(("| dd of=%s conv=nocreat,notrunc"
3618
                                    " bs=%s oflag=dsync"),
3619
                                    real_disk.dev_path,
3620
                                    str(64 * 1024))
3621

    
3622
    elif mode == constants.IEM_EXPORT:
3623
      # the block size on the read dd is 1MiB to match our units
3624
      prefix = utils.BuildShellCmd("dd if=%s bs=%s count=%s |",
3625
                                   real_disk.dev_path,
3626
                                   str(1024 * 1024), # 1 MB
3627
                                   str(disk.size))
3628
      exp_size = disk.size
3629

    
3630
  elif ieio == constants.IEIO_SCRIPT:
3631
    (disk, disk_index, ) = ieargs
3632

    
3633
    assert isinstance(disk_index, (int, long))
3634

    
3635
    inst_os = OSFromDisk(instance.os)
3636
    env = OSEnvironment(instance, inst_os)
3637

    
3638
    if mode == constants.IEM_IMPORT:
3639
      env["IMPORT_DEVICE"] = env["DISK_%d_PATH" % disk_index]
3640
      env["IMPORT_INDEX"] = str(disk_index)
3641
      script = inst_os.import_script
3642

    
3643
    elif mode == constants.IEM_EXPORT:
3644
      real_disk = _OpenRealBD(disk)
3645
      env["EXPORT_DEVICE"] = real_disk.dev_path
3646
      env["EXPORT_INDEX"] = str(disk_index)
3647
      script = inst_os.export_script
3648

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

    
3652
    if mode == constants.IEM_IMPORT:
3653
      suffix = "| %s" % script_cmd
3654

    
3655
    elif mode == constants.IEM_EXPORT:
3656
      prefix = "%s |" % script_cmd
3657

    
3658
    # Let script predict size
3659
    exp_size = constants.IE_CUSTOM_SIZE
3660

    
3661
  else:
3662
    _Fail("Invalid %s I/O mode %r", mode, ieio)
3663

    
3664
  return (env, prefix, suffix, exp_size)
3665

    
3666

    
3667
def _CreateImportExportStatusDir(prefix):
3668
  """Creates status directory for import/export.
3669

3670
  """
3671
  return tempfile.mkdtemp(dir=pathutils.IMPORT_EXPORT_DIR,
3672
                          prefix=("%s-%s-" %
3673
                                  (prefix, utils.TimestampForFilename())))
3674

    
3675

    
3676
def StartImportExportDaemon(mode, opts, host, port, instance, component,
3677
                            ieio, ieioargs):
3678
  """Starts an import or export daemon.
3679

3680
  @param mode: Import/output mode
3681
  @type opts: L{objects.ImportExportOptions}
3682
  @param opts: Daemon options
3683
  @type host: string
3684
  @param host: Remote host for export (None for import)
3685
  @type port: int
3686
  @param port: Remote port for export (None for import)
3687
  @type instance: L{objects.Instance}
3688
  @param instance: Instance object
3689
  @type component: string
3690
  @param component: which part of the instance is transferred now,
3691
      e.g. 'disk/0'
3692
  @param ieio: Input/output type
3693
  @param ieioargs: Input/output arguments
3694

3695
  """
3696
  if mode == constants.IEM_IMPORT:
3697
    prefix = "import"
3698

    
3699
    if not (host is None and port is None):
3700
      _Fail("Can not specify host or port on import")
3701

    
3702
  elif mode == constants.IEM_EXPORT:
3703
    prefix = "export"
3704

    
3705
    if host is None or port is None:
3706
      _Fail("Host and port must be specified for an export")
3707

    
3708
  else:
3709
    _Fail("Invalid mode %r", mode)
3710

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

    
3714
  (cmd_env, cmd_prefix, cmd_suffix, exp_size) = \
3715
    _GetImportExportIoCommand(instance, mode, ieio, ieioargs)
3716

    
3717
  if opts.key_name is None:
3718
    # Use server.pem
3719
    key_path = pathutils.NODED_CERT_FILE
3720
    cert_path = pathutils.NODED_CERT_FILE
3721
    assert opts.ca_pem is None
3722
  else:
3723
    (_, key_path, cert_path) = _GetX509Filenames(pathutils.CRYPTO_KEYS_DIR,
3724
                                                 opts.key_name)
3725
    assert opts.ca_pem is not None
3726

    
3727
  for i in [key_path, cert_path]:
3728
    if not os.path.exists(i):
3729
      _Fail("File '%s' does not exist" % i)
3730

    
3731
  status_dir = _CreateImportExportStatusDir("%s-%s" % (prefix, component))
3732
  try:
3733
    status_file = utils.PathJoin(status_dir, _IES_STATUS_FILE)
3734
    pid_file = utils.PathJoin(status_dir, _IES_PID_FILE)
3735
    ca_file = utils.PathJoin(status_dir, _IES_CA_FILE)
3736

    
3737
    if opts.ca_pem is None:
3738
      # Use server.pem
3739
      ca = utils.ReadFile(pathutils.NODED_CERT_FILE)
3740
    else:
3741
      ca = opts.ca_pem
3742

    
3743
    # Write CA file
3744
    utils.WriteFile(ca_file, data=ca, mode=0400)
3745

    
3746
    cmd = [
3747
      pathutils.IMPORT_EXPORT_DAEMON,
3748
      status_file, mode,
3749
      "--key=%s" % key_path,
3750
      "--cert=%s" % cert_path,
3751
      "--ca=%s" % ca_file,
3752
      ]
3753

    
3754
    if host:
3755
      cmd.append("--host=%s" % host)
3756

    
3757
    if port:
3758
      cmd.append("--port=%s" % port)
3759

    
3760
    if opts.ipv6:
3761
      cmd.append("--ipv6")
3762
    else:
3763
      cmd.append("--ipv4")
3764

    
3765
    if opts.compress:
3766
      cmd.append("--compress=%s" % opts.compress)
3767

    
3768
    if opts.magic:
3769
      cmd.append("--magic=%s" % opts.magic)
3770

    
3771
    if exp_size is not None:
3772
      cmd.append("--expected-size=%s" % exp_size)
3773

    
3774
    if cmd_prefix:
3775
      cmd.append("--cmd-prefix=%s" % cmd_prefix)
3776

    
3777
    if cmd_suffix:
3778
      cmd.append("--cmd-suffix=%s" % cmd_suffix)
3779

    
3780
    if mode == constants.IEM_EXPORT:
3781
      # Retry connection a few times when connecting to remote peer
3782
      cmd.append("--connect-retries=%s" % constants.RIE_CONNECT_RETRIES)
3783
      cmd.append("--connect-timeout=%s" % constants.RIE_CONNECT_ATTEMPT_TIMEOUT)
3784
    elif opts.connect_timeout is not None:
3785
      assert mode == constants.IEM_IMPORT
3786
      # Overall timeout for establishing connection while listening
3787
      cmd.append("--connect-timeout=%s" % opts.connect_timeout)
3788

    
3789
    logfile = _InstanceLogName(prefix, instance.os, instance.name, component)
3790

    
3791
    # TODO: Once _InstanceLogName uses tempfile.mkstemp, StartDaemon has
3792
    # support for receiving a file descriptor for output
3793
    utils.StartDaemon(cmd, env=cmd_env, pidfile=pid_file,
3794
                      output=logfile)
3795

    
3796
    # The import/export name is simply the status directory name
3797
    return os.path.basename(status_dir)
3798

    
3799
  except Exception:
3800
    shutil.rmtree(status_dir, ignore_errors=True)
3801
    raise
3802

    
3803

    
3804
def GetImportExportStatus(names):
3805
  """Returns import/export daemon status.
3806

3807
  @type names: sequence
3808
  @param names: List of names
3809
  @rtype: List of dicts
3810
  @return: Returns a list of the state of each named import/export or None if a
3811
           status couldn't be read
3812

3813
  """
3814
  result = []
3815

    
3816
  for name in names:
3817
    status_file = utils.PathJoin(pathutils.IMPORT_EXPORT_DIR, name,
3818
                                 _IES_STATUS_FILE)
3819

    
3820
    try:
3821
      data = utils.ReadFile(status_file)
3822
    except EnvironmentError, err:
3823
      if err.errno != errno.ENOENT:
3824
        raise
3825
      data = None
3826

    
3827
    if not data:
3828
      result.append(None)
3829
      continue
3830

    
3831
    result.append(serializer.LoadJson(data))
3832

    
3833
  return result
3834

    
3835

    
3836
def AbortImportExport(name):
3837
  """Sends SIGTERM to a running import/export daemon.
3838

3839
  """
3840
  logging.info("Abort import/export %s", name)
3841

    
3842
  status_dir = utils.PathJoin(pathutils.IMPORT_EXPORT_DIR, name)
3843
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
3844

    
3845
  if pid:
3846
    logging.info("Import/export %s is running with PID %s, sending SIGTERM",
3847
                 name, pid)
3848
    utils.IgnoreProcessNotFound(os.kill, pid, signal.SIGTERM)
3849

    
3850

    
3851
def CleanupImportExport(name):
3852
  """Cleanup after an import or export.
3853

3854
  If the import/export daemon is still running it's killed. Afterwards the
3855
  whole status directory is removed.
3856

3857
  """
3858
  logging.info("Finalizing import/export %s", name)
3859

    
3860
  status_dir = utils.PathJoin(pathutils.IMPORT_EXPORT_DIR, name)
3861

    
3862
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
3863

    
3864
  if pid:
3865
    logging.info("Import/export %s is still running with PID %s",
3866
                 name, pid)
3867
    utils.KillProcess(pid, waitpid=False)
3868

    
3869
  shutil.rmtree(status_dir, ignore_errors=True)
3870

    
3871

    
3872
def _FindDisks(disks):
3873
  """Finds attached L{BlockDev}s for the given disks.
3874

3875
  @type disks: list of L{objects.Disk}
3876
  @param disks: the disk objects we need to find
3877

3878
  @return: list of L{BlockDev} objects or C{None} if a given disk
3879
           was not found or was no attached.
3880

3881
  """
3882
  bdevs = []
3883

    
3884
  for disk in disks:
3885
    rd = _RecursiveFindBD(disk)
3886
    if rd is None:
3887
      _Fail("Can't find device %s", disk)
3888
    bdevs.append(rd)
3889
  return bdevs
3890

    
3891

    
3892
def DrbdDisconnectNet(disks):
3893
  """Disconnects the network on a list of drbd devices.
3894

3895
  """
3896
  bdevs = _FindDisks(disks)
3897

    
3898
  # disconnect disks
3899
  for rd in bdevs:
3900
    try:
3901
      rd.DisconnectNet()
3902
    except errors.BlockDeviceError, err:
3903
      _Fail("Can't change network configuration to standalone mode: %s",
3904
            err, exc=True)
3905

    
3906

    
3907
def DrbdAttachNet(disks, instance_name, multimaster):
3908
  """Attaches the network on a list of drbd devices.
3909

3910
  """
3911
  bdevs = _FindDisks(disks)
3912

    
3913
  if multimaster:
3914
    for idx, rd in enumerate(bdevs):
3915
      try:
3916
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
3917
      except EnvironmentError, err:
3918
        _Fail("Can't create symlink: %s", err)
3919
  # reconnect disks, switch to new master configuration and if
3920
  # needed primary mode
3921
  for rd in bdevs:
3922
    try:
3923
      rd.AttachNet(multimaster)
3924
    except errors.BlockDeviceError, err:
3925
      _Fail("Can't change network configuration: %s", err)
3926

    
3927
  # wait until the disks are connected; we need to retry the re-attach
3928
  # if the device becomes standalone, as this might happen if the one
3929
  # node disconnects and reconnects in a different mode before the
3930
  # other node reconnects; in this case, one or both of the nodes will
3931
  # decide it has wrong configuration and switch to standalone
3932

    
3933
  def _Attach():
3934
    all_connected = True
3935

    
3936
    for rd in bdevs:
3937
      stats = rd.GetProcStatus()
3938

    
3939
      all_connected = (all_connected and
3940
                       (stats.is_connected or stats.is_in_resync))
3941

    
3942
      if stats.is_standalone:
3943
        # peer had different config info and this node became
3944
        # standalone, even though this should not happen with the
3945
        # new staged way of changing disk configs
3946
        try:
3947
          rd.AttachNet(multimaster)
3948
        except errors.BlockDeviceError, err:
3949
          _Fail("Can't change network configuration: %s", err)
3950

    
3951
    if not all_connected:
3952
      raise utils.RetryAgain()
3953

    
3954
  try:
3955
    # Start with a delay of 100 miliseconds and go up to 5 seconds
3956
    utils.Retry(_Attach, (0.1, 1.5, 5.0), 2 * 60)
3957
  except utils.RetryTimeout:
3958
    _Fail("Timeout in disk reconnecting")
3959

    
3960
  if multimaster:
3961
    # change to primary mode
3962
    for rd in bdevs:
3963
      try:
3964
        rd.Open()
3965
      except errors.BlockDeviceError, err:
3966
        _Fail("Can't change to primary mode: %s", err)
3967

    
3968

    
3969
def DrbdWaitSync(disks):
3970
  """Wait until DRBDs have synchronized.
3971

3972
  """
3973
  def _helper(rd):
3974
    stats = rd.GetProcStatus()
3975
    if not (stats.is_connected or stats.is_in_resync):
3976
      raise utils.RetryAgain()
3977
    return stats
3978

    
3979
  bdevs = _FindDisks(disks)
3980

    
3981
  min_resync = 100
3982
  alldone = True
3983
  for rd in bdevs:
3984
    try:
3985
      # poll each second for 15 seconds
3986
      stats = utils.Retry(_helper, 1, 15, args=[rd])
3987
    except utils.RetryTimeout:
3988
      stats = rd.GetProcStatus()
3989
      # last check
3990
      if not (stats.is_connected or stats.is_in_resync):
3991
        _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
3992
    alldone = alldone and (not stats.is_in_resync)
3993
    if stats.sync_percent is not None:
3994
      min_resync = min(min_resync, stats.sync_percent)
3995

    
3996
  return (alldone, min_resync)
3997

    
3998

    
3999
def DrbdNeedsActivation(disks):
4000
  """Checks which of the passed disks needs activation and returns their UUIDs.
4001

4002
  """
4003
  faulty_disks = []
4004

    
4005
  for disk in disks:
4006
    rd = _RecursiveFindBD(disk)
4007
    if rd is None:
4008
      faulty_disks.append(disk)
4009
      continue
4010

    
4011
    stats = rd.GetProcStatus()
4012
    if stats.is_standalone or stats.is_diskless:
4013
      faulty_disks.append(disk)
4014

    
4015
  return [disk.uuid for disk in faulty_disks]
4016

    
4017

    
4018
def GetDrbdUsermodeHelper():
4019
  """Returns DRBD usermode helper currently configured.
4020

4021
  """
4022
  try:
4023
    return drbd.DRBD8.GetUsermodeHelper()
4024
  except errors.BlockDeviceError, err:
4025
    _Fail(str(err))
4026

    
4027

    
4028
def PowercycleNode(hypervisor_type, hvparams=None):
4029
  """Hard-powercycle the node.
4030

4031
  Because we need to return first, and schedule the powercycle in the
4032
  background, we won't be able to report failures nicely.
4033

4034
  """
4035
  hyper = hypervisor.GetHypervisor(hypervisor_type)
4036
  try:
4037
    pid = os.fork()
4038
  except OSError:
4039
    # if we can't fork, we'll pretend that we're in the child process
4040
    pid = 0
4041
  if pid > 0:
4042
    return "Reboot scheduled in 5 seconds"
4043
  # ensure the child is running on ram
4044
  try:
4045
    utils.Mlockall()
4046
  except Exception: # pylint: disable=W0703
4047
    pass
4048
  time.sleep(5)
4049
  hyper.PowercycleNode(hvparams=hvparams)
4050

    
4051

    
4052
def _VerifyRestrictedCmdName(cmd):
4053
  """Verifies a restricted command name.
4054

4055
  @type cmd: string
4056
  @param cmd: Command name
4057
  @rtype: tuple; (boolean, string or None)
4058
  @return: The tuple's first element is the status; if C{False}, the second
4059
    element is an error message string, otherwise it's C{None}
4060

4061
  """
4062
  if not cmd.strip():
4063
    return (False, "Missing command name")
4064

    
4065
  if os.path.basename(cmd) != cmd:
4066
    return (False, "Invalid command name")
4067

    
4068
  if not constants.EXT_PLUGIN_MASK.match(cmd):
4069
    return (False, "Command name contains forbidden characters")
4070

    
4071
  return (True, None)
4072

    
4073

    
4074
def _CommonRestrictedCmdCheck(path, owner):
4075
  """Common checks for restricted command file system directories and files.
4076

4077
  @type path: string
4078
  @param path: Path to check
4079
  @param owner: C{None} or tuple containing UID and GID
4080
  @rtype: tuple; (boolean, string or C{os.stat} result)
4081
  @return: The tuple's first element is the status; if C{False}, the second
4082
    element is an error message string, otherwise it's the result of C{os.stat}
4083

4084
  """
4085
  if owner is None:
4086
    # Default to root as owner
4087
    owner = (0, 0)
4088

    
4089
  try:
4090
    st = os.stat(path)
4091
  except EnvironmentError, err:
4092
    return (False, "Can't stat(2) '%s': %s" % (path, err))
4093

    
4094
  if stat.S_IMODE(st.st_mode) & (~_RCMD_MAX_MODE):
4095
    return (False, "Permissions on '%s' are too permissive" % path)
4096

    
4097
  if (st.st_uid, st.st_gid) != owner:
4098
    (owner_uid, owner_gid) = owner
4099
    return (False, "'%s' is not owned by %s:%s" % (path, owner_uid, owner_gid))
4100

    
4101
  return (True, st)
4102

    
4103

    
4104
def _VerifyRestrictedCmdDirectory(path, _owner=None):
4105
  """Verifies restricted command directory.
4106

4107
  @type path: string
4108
  @param path: Path to check
4109
  @rtype: tuple; (boolean, string or None)
4110
  @return: The tuple's first element is the status; if C{False}, the second
4111
    element is an error message string, otherwise it's C{None}
4112

4113
  """
4114
  (status, value) = _CommonRestrictedCmdCheck(path, _owner)
4115

    
4116
  if not status:
4117
    return (False, value)
4118

    
4119
  if not stat.S_ISDIR(value.st_mode):
4120
    return (False, "Path '%s' is not a directory" % path)
4121

    
4122
  return (True, None)
4123

    
4124

    
4125
def _VerifyRestrictedCmd(path, cmd, _owner=None):
4126
  """Verifies a whole restricted command and returns its executable filename.
4127

4128
  @type path: string
4129
  @param path: Directory containing restricted commands
4130
  @type cmd: string
4131
  @param cmd: Command name
4132
  @rtype: tuple; (boolean, string)
4133
  @return: The tuple's first element is the status; if C{False}, the second
4134
    element is an error message string, otherwise the second element is the
4135
    absolute path to the executable
4136

4137
  """
4138
  executable = utils.PathJoin(path, cmd)
4139

    
4140
  (status, msg) = _CommonRestrictedCmdCheck(executable, _owner)
4141

    
4142
  if not status:
4143
    return (False, msg)
4144

    
4145
  if not utils.IsExecutable(executable):
4146
    return (False, "access(2) thinks '%s' can't be executed" % executable)
4147

    
4148
  return (True, executable)
4149

    
4150

    
4151
def _PrepareRestrictedCmd(path, cmd,
4152
                          _verify_dir=_VerifyRestrictedCmdDirectory,
4153
                          _verify_name=_VerifyRestrictedCmdName,
4154
                          _verify_cmd=_VerifyRestrictedCmd):
4155
  """Performs a number of tests on a restricted command.
4156

4157
  @type path: string
4158
  @param path: Directory containing restricted commands
4159
  @type cmd: string
4160
  @param cmd: Command name
4161
  @return: Same as L{_VerifyRestrictedCmd}
4162

4163
  """
4164
  # Verify the directory first
4165
  (status, msg) = _verify_dir(path)
4166
  if status:
4167
    # Check command if everything was alright
4168
    (status, msg) = _verify_name(cmd)
4169

    
4170
  if not status:
4171
    return (False, msg)
4172

    
4173
  # Check actual executable
4174
  return _verify_cmd(path, cmd)
4175

    
4176

    
4177
def RunRestrictedCmd(cmd,
4178
                     _lock_timeout=_RCMD_LOCK_TIMEOUT,
4179
                     _lock_file=pathutils.RESTRICTED_COMMANDS_LOCK_FILE,
4180
                     _path=pathutils.RESTRICTED_COMMANDS_DIR,
4181
                     _sleep_fn=time.sleep,
4182
                     _prepare_fn=_PrepareRestrictedCmd,
4183
                     _runcmd_fn=utils.RunCmd,
4184
                     _enabled=constants.ENABLE_RESTRICTED_COMMANDS):
4185
  """Executes a restricted command after performing strict tests.
4186

4187
  @type cmd: string
4188
  @param cmd: Command name
4189
  @rtype: string
4190
  @return: Command output
4191
  @raise RPCFail: In case of an error
4192

4193
  """
4194
  logging.info("Preparing to run restricted command '%s'", cmd)
4195

    
4196
  if not _enabled:
4197
    _Fail("Restricted commands disabled at configure time")
4198

    
4199
  lock = None
4200
  try:
4201
    cmdresult = None
4202
    try:
4203
      lock = utils.FileLock.Open(_lock_file)
4204
      lock.Exclusive(blocking=True, timeout=_lock_timeout)
4205

    
4206
      (status, value) = _prepare_fn(_path, cmd)
4207

    
4208
      if status:
4209
        cmdresult = _runcmd_fn([value], env={}, reset_env=True,
4210
                               postfork_fn=lambda _: lock.Unlock())
4211
      else:
4212
        logging.error(value)
4213
    except Exception: # pylint: disable=W0703
4214
      # Keep original error in log
4215
      logging.exception("Caught exception")
4216

    
4217
    if cmdresult is None:
4218
      logging.info("Sleeping for %0.1f seconds before returning",
4219
                   _RCMD_INVALID_DELAY)
4220
      _sleep_fn(_RCMD_INVALID_DELAY)
4221

    
4222
      # Do not include original error message in returned error
4223
      _Fail("Executing command '%s' failed" % cmd)
4224
    elif cmdresult.failed or cmdresult.fail_reason:
4225
      _Fail("Restricted command '%s' failed: %s; output: %s",
4226
            cmd, cmdresult.fail_reason, cmdresult.output)
4227
    else:
4228
      return cmdresult.output
4229
  finally:
4230
    if lock is not None:
4231
      # Release lock at last
4232
      lock.Close()
4233
      lock = None
4234

    
4235

    
4236
def SetWatcherPause(until, _filename=pathutils.WATCHER_PAUSEFILE):
4237
  """Creates or removes the watcher pause file.
4238

4239
  @type until: None or number
4240
  @param until: Unix timestamp saying until when the watcher shouldn't run
4241

4242
  """
4243
  if until is None:
4244
    logging.info("Received request to no longer pause watcher")
4245
    utils.RemoveFile(_filename)
4246
  else:
4247
    logging.info("Received request to pause watcher until %s", until)
4248

    
4249
    if not ht.TNumber(until):
4250
      _Fail("Duration must be numeric")
4251

    
4252
    utils.WriteFile(_filename, data="%d\n" % (until, ), mode=0644)
4253

    
4254

    
4255
def ConfigureOVS(ovs_name, ovs_link):
4256
  """Creates a OpenvSwitch on the node.
4257

4258
  This function sets up a OpenvSwitch on the node with given name nad
4259
  connects it via a given eth device.
4260

4261
  @type ovs_name: string
4262
  @param ovs_name: Name of the OpenvSwitch to create.
4263
  @type ovs_link: None or string
4264
  @param ovs_link: Ethernet device for outside connection (can be missing)
4265

4266
  """
4267
  # Initialize the OpenvSwitch
4268
  result = utils.RunCmd(["ovs-vsctl", "add-br", ovs_name])
4269
  if result.failed:
4270
    _Fail("Failed to create openvswitch %s. Script return value: %s, output:"
4271
          " '%s'" % result.exit_code, result.output, log=True)
4272

    
4273
  # And connect it to a physical interface, if given
4274
  if ovs_link:
4275
    result = utils.RunCmd(["ovs-vsctl", "add-port", ovs_name, ovs_link])
4276
    if result.failed:
4277
      _Fail("Failed to connect openvswitch to  interface %s. Script return"
4278
            " value: %s, output: '%s'" % ovs_link, result.exit_code,
4279
            result.output, log=True)
4280

    
4281

    
4282
class HooksRunner(object):
4283
  """Hook runner.
4284

4285
  This class is instantiated on the node side (ganeti-noded) and not
4286
  on the master side.
4287

4288
  """
4289
  def __init__(self, hooks_base_dir=None):
4290
    """Constructor for hooks runner.
4291

4292
    @type hooks_base_dir: str or None
4293
    @param hooks_base_dir: if not None, this overrides the
4294
        L{pathutils.HOOKS_BASE_DIR} (useful for unittests)
4295

4296
    """
4297
    if hooks_base_dir is None:
4298
      hooks_base_dir = pathutils.HOOKS_BASE_DIR
4299
    # yeah, _BASE_DIR is not valid for attributes, we use it like a
4300
    # constant
4301
    self._BASE_DIR = hooks_base_dir # pylint: disable=C0103
4302

    
4303
  def RunLocalHooks(self, node_list, hpath, phase, env):
4304
    """Check that the hooks will be run only locally and then run them.
4305

4306
    """
4307
    assert len(node_list) == 1
4308
    node = node_list[0]
4309
    _, myself = ssconf.GetMasterAndMyself()
4310
    assert node == myself
4311

    
4312
    results = self.RunHooks(hpath, phase, env)
4313

    
4314
    # Return values in the form expected by HooksMaster
4315
    return {node: (None, False, results)}
4316

    
4317
  def RunHooks(self, hpath, phase, env):
4318
    """Run the scripts in the hooks directory.
4319

4320
    @type hpath: str
4321
    @param hpath: the path to the hooks directory which
4322
        holds the scripts
4323
    @type phase: str
4324
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
4325
        L{constants.HOOKS_PHASE_POST}
4326
    @type env: dict
4327
    @param env: dictionary with the environment for the hook
4328
    @rtype: list
4329
    @return: list of 3-element tuples:
4330
      - script path
4331
      - script result, either L{constants.HKR_SUCCESS} or
4332
        L{constants.HKR_FAIL}
4333
      - output of the script
4334

4335
    @raise errors.ProgrammerError: for invalid input
4336
        parameters
4337

4338
    """
4339
    if phase == constants.HOOKS_PHASE_PRE:
4340
      suffix = "pre"
4341
    elif phase == constants.HOOKS_PHASE_POST:
4342
      suffix = "post"
4343
    else:
4344
      _Fail("Unknown hooks phase '%s'", phase)
4345

    
4346
    subdir = "%s-%s.d" % (hpath, suffix)
4347
    dir_name = utils.PathJoin(self._BASE_DIR, subdir)
4348

    
4349
    results = []
4350

    
4351
    if not os.path.isdir(dir_name):
4352
      # for non-existing/non-dirs, we simply exit instead of logging a
4353
      # warning at every operation
4354
      return results
4355

    
4356
    runparts_results = utils.RunParts(dir_name, env=env, reset_env=True)
4357

    
4358
    for (relname, relstatus, runresult) in runparts_results:
4359
      if relstatus == constants.RUNPARTS_SKIP:
4360
        rrval = constants.HKR_SKIP
4361
        output = ""
4362
      elif relstatus == constants.RUNPARTS_ERR:
4363
        rrval = constants.HKR_FAIL
4364
        output = "Hook script execution error: %s" % runresult
4365
      elif relstatus == constants.RUNPARTS_RUN:
4366
        if runresult.failed:
4367
          rrval = constants.HKR_FAIL
4368
        else:
4369
          rrval = constants.HKR_SUCCESS
4370
        output = utils.SafeEncode(runresult.output.strip())
4371
      results.append(("%s/%s" % (subdir, relname), rrval, output))
4372

    
4373
    return results
4374

    
4375

    
4376
class IAllocatorRunner(object):
4377
  """IAllocator runner.
4378

4379
  This class is instantiated on the node side (ganeti-noded) and not on
4380
  the master side.
4381

4382
  """
4383
  @staticmethod
4384
  def Run(name, idata):
4385
    """Run an iallocator script.
4386

4387
    @type name: str
4388
    @param name: the iallocator script name
4389
    @type idata: str
4390
    @param idata: the allocator input data
4391

4392
    @rtype: tuple
4393
    @return: two element tuple of:
4394
       - status
4395
       - either error message or stdout of allocator (for success)
4396

4397
    """
4398
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
4399
                                  os.path.isfile)
4400
    if alloc_script is None:
4401
      _Fail("iallocator module '%s' not found in the search path", name)
4402

    
4403
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
4404
    try:
4405
      os.write(fd, idata)
4406
      os.close(fd)
4407
      result = utils.RunCmd([alloc_script, fin_name])
4408
      if result.failed:
4409
        _Fail("iallocator module '%s' failed: %s, output '%s'",
4410
              name, result.fail_reason, result.output)
4411
    finally:
4412
      os.unlink(fin_name)
4413

    
4414
    return result.stdout
4415

    
4416

    
4417
class DevCacheManager(object):
4418
  """Simple class for managing a cache of block device information.
4419

4420
  """
4421
  _DEV_PREFIX = "/dev/"
4422
  _ROOT_DIR = pathutils.BDEV_CACHE_DIR
4423

    
4424
  @classmethod
4425
  def _ConvertPath(cls, dev_path):
4426
    """Converts a /dev/name path to the cache file name.
4427

4428
    This replaces slashes with underscores and strips the /dev
4429
    prefix. It then returns the full path to the cache file.
4430

4431
    @type dev_path: str
4432
    @param dev_path: the C{/dev/} path name
4433
    @rtype: str
4434
    @return: the converted path name
4435

4436
    """
4437
    if dev_path.startswith(cls._DEV_PREFIX):
4438
      dev_path = dev_path[len(cls._DEV_PREFIX):]
4439
    dev_path = dev_path.replace("/", "_")
4440
    fpath = utils.PathJoin(cls._ROOT_DIR, "bdev_%s" % dev_path)
4441
    return fpath
4442

    
4443
  @classmethod
4444
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
4445
    """Updates the cache information for a given device.
4446

4447
    @type dev_path: str
4448
    @param dev_path: the pathname of the device
4449
    @type owner: str
4450
    @param owner: the owner (instance name) of the device
4451
    @type on_primary: bool
4452
    @param on_primary: whether this is the primary
4453
        node nor not
4454
    @type iv_name: str
4455
    @param iv_name: the instance-visible name of the
4456
        device, as in objects.Disk.iv_name
4457

4458
    @rtype: None
4459

4460
    """
4461
    if dev_path is None:
4462
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
4463
      return
4464
    fpath = cls._ConvertPath(dev_path)
4465
    if on_primary:
4466
      state = "primary"
4467
    else:
4468
      state = "secondary"
4469
    if iv_name is None:
4470
      iv_name = "not_visible"
4471
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
4472
    try:
4473
      utils.WriteFile(fpath, data=fdata)
4474
    except EnvironmentError, err:
4475
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
4476

    
4477
  @classmethod
4478
  def RemoveCache(cls, dev_path):
4479
    """Remove data for a dev_path.
4480

4481
    This is just a wrapper over L{utils.io.RemoveFile} with a converted
4482
    path name and logging.
4483

4484
    @type dev_path: str
4485
    @param dev_path: the pathname of the device
4486

4487
    @rtype: None
4488

4489
    """
4490
    if dev_path is None:
4491
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
4492
      return
4493
    fpath = cls._ConvertPath(dev_path)
4494
    try:
4495
      utils.RemoveFile(fpath)
4496
    except EnvironmentError, err:
4497
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)