Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ b2b8bcce

History | View | Annotate | Download (81 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Functions used by the node daemon"""
23

    
24

    
25
import os
26
import os.path
27
import shutil
28
import time
29
import stat
30
import errno
31
import re
32
import subprocess
33
import random
34
import logging
35
import tempfile
36
import zlib
37
import base64
38

    
39
from ganeti import errors
40
from ganeti import utils
41
from ganeti import ssh
42
from ganeti import hypervisor
43
from ganeti import constants
44
from ganeti import bdev
45
from ganeti import objects
46
from ganeti import ssconf
47

    
48

    
49
class RPCFail(Exception):
50
  """Class denoting RPC failure.
51

52
  Its argument is the error message.
53

54
  """
55

    
56
def _Fail(msg, *args, **kwargs):
57
  """Log an error and the raise an RPCFail exception.
58

59
  This exception is then handled specially in the ganeti daemon and
60
  turned into a 'failed' return type. As such, this function is a
61
  useful shortcut for logging the error and returning it to the master
62
  daemon.
63

64
  @type msg: string
65
  @param msg: the text of the exception
66
  @raise RPCFail
67

68
  """
69
  if args:
70
    msg = msg % args
71
  if "exc" in kwargs and kwargs["exc"]:
72
    logging.exception(msg)
73
  else:
74
    logging.error(msg)
75
  raise RPCFail(msg)
76

    
77

    
78
def _GetConfig():
79
  """Simple wrapper to return a SimpleStore.
80

81
  @rtype: L{ssconf.SimpleStore}
82
  @return: a SimpleStore instance
83

84
  """
85
  return ssconf.SimpleStore()
86

    
87

    
88
def _GetSshRunner(cluster_name):
89
  """Simple wrapper to return an SshRunner.
90

91
  @type cluster_name: str
92
  @param cluster_name: the cluster name, which is needed
93
      by the SshRunner constructor
94
  @rtype: L{ssh.SshRunner}
95
  @return: an SshRunner instance
96

97
  """
98
  return ssh.SshRunner(cluster_name)
99

    
100

    
101
def _Decompress(data):
102
  """Unpacks data compressed by the RPC client.
103

104
  @type data: list or tuple
105
  @param data: Data sent by RPC client
106
  @rtype: str
107
  @return: Decompressed data
108

109
  """
110
  assert isinstance(data, (list, tuple))
111
  assert len(data) == 2
112
  (encoding, content) = data
113
  if encoding == constants.RPC_ENCODING_NONE:
114
    return content
115
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
116
    return zlib.decompress(base64.b64decode(content))
117
  else:
118
    raise AssertionError("Unknown data encoding")
119

    
120

    
121
def _CleanDirectory(path, exclude=None):
122
  """Removes all regular files in a directory.
123

124
  @type path: str
125
  @param path: the directory to clean
126
  @type exclude: list
127
  @param exclude: list of files to be excluded, defaults
128
      to the empty list
129

130
  """
131
  if not os.path.isdir(path):
132
    return
133
  if exclude is None:
134
    exclude = []
135
  else:
136
    # Normalize excluded paths
137
    exclude = [os.path.normpath(i) for i in exclude]
138

    
139
  for rel_name in utils.ListVisibleFiles(path):
140
    full_name = os.path.normpath(os.path.join(path, rel_name))
141
    if full_name in exclude:
142
      continue
143
    if os.path.isfile(full_name) and not os.path.islink(full_name):
144
      utils.RemoveFile(full_name)
145

    
146

    
147
def JobQueuePurge():
148
  """Removes job queue files and archived jobs.
149

150
  @rtype: None
151

152
  """
153
  _CleanDirectory(constants.QUEUE_DIR, exclude=[constants.JOB_QUEUE_LOCK_FILE])
154
  _CleanDirectory(constants.JOB_QUEUE_ARCHIVE_DIR)
155

    
156

    
157
def GetMasterInfo():
158
  """Returns master information.
159

160
  This is an utility function to compute master information, either
161
  for consumption here or from the node daemon.
162

163
  @rtype: tuple
164
  @return: True, (master_netdev, master_ip, master_name) in case of success
165
  @raise RPCFail: in case of errors
166

167
  """
168
  try:
169
    cfg = _GetConfig()
170
    master_netdev = cfg.GetMasterNetdev()
171
    master_ip = cfg.GetMasterIP()
172
    master_node = cfg.GetMasterNode()
173
  except errors.ConfigurationError, err:
174
    _Fail("Cluster configuration incomplete", exc=True)
175
  return True, (master_netdev, master_ip, master_node)
176

    
177

    
178
def StartMaster(start_daemons):
179
  """Activate local node as master node.
180

181
  The function will always try activate the IP address of the master
182
  (unless someone else has it). It will also start the master daemons,
183
  based on the start_daemons parameter.
184

185
  @type start_daemons: boolean
186
  @param start_daemons: whther to also start the master
187
      daemons (ganeti-masterd and ganeti-rapi)
188
  @rtype: None
189

190
  """
191
  # GetMasterInfo will raise an exception if not able to return data
192
  master_netdev, master_ip, _ = GetMasterInfo()[1]
193

    
194
  payload = []
195
  if utils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
196
    if utils.OwnIpAddress(master_ip):
197
      # we already have the ip:
198
      logging.debug("Master IP already configured, doing nothing")
199
    else:
200
      msg = "Someone else has the master ip, not activating"
201
      logging.error(msg)
202
      payload.append(msg)
203
  else:
204
    result = utils.RunCmd(["ip", "address", "add", "%s/32" % master_ip,
205
                           "dev", master_netdev, "label",
206
                           "%s:0" % master_netdev])
207
    if result.failed:
208
      msg = "Can't activate master IP: %s" % result.output
209
      logging.error(msg)
210
      payload.append(msg)
211

    
212
    result = utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev,
213
                           "-s", master_ip, master_ip])
214
    # we'll ignore the exit code of arping
215

    
216
  # and now start the master and rapi daemons
217
  if start_daemons:
218
    for daemon in 'ganeti-masterd', 'ganeti-rapi':
219
      result = utils.RunCmd([daemon])
220
      if result.failed:
221
        msg = "Can't start daemon %s: %s" % (daemon, result.output)
222
        logging.error(msg)
223
        payload.append(msg)
224

    
225
  return not payload, "; ".join(payload)
226

    
227

    
228
def StopMaster(stop_daemons):
229
  """Deactivate this node as master.
230

231
  The function will always try to deactivate the IP address of the
232
  master. It will also stop the master daemons depending on the
233
  stop_daemons parameter.
234

235
  @type stop_daemons: boolean
236
  @param stop_daemons: whether to also stop the master daemons
237
      (ganeti-masterd and ganeti-rapi)
238
  @rtype: None
239

240
  """
241
  # TODO: log and report back to the caller the error failures; we
242
  # need to decide in which case we fail the RPC for this
243

    
244
  # GetMasterInfo will raise an exception if not able to return data
245
  master_netdev, master_ip, _ = GetMasterInfo()[1]
246

    
247
  result = utils.RunCmd(["ip", "address", "del", "%s/32" % master_ip,
248
                         "dev", master_netdev])
249
  if result.failed:
250
    logging.error("Can't remove the master IP, error: %s", result.output)
251
    # but otherwise ignore the failure
252

    
253
  if stop_daemons:
254
    # stop/kill the rapi and the master daemon
255
    for daemon in constants.RAPI_PID, constants.MASTERD_PID:
256
      utils.KillProcess(utils.ReadPidFile(utils.DaemonPidFileName(daemon)))
257

    
258
  return True, None
259

    
260

    
261
def AddNode(dsa, dsapub, rsa, rsapub, sshkey, sshpub):
262
  """Joins this node to the cluster.
263

264
  This does the following:
265
      - updates the hostkeys of the machine (rsa and dsa)
266
      - adds the ssh private key to the user
267
      - adds the ssh public key to the users' authorized_keys file
268

269
  @type dsa: str
270
  @param dsa: the DSA private key to write
271
  @type dsapub: str
272
  @param dsapub: the DSA public key to write
273
  @type rsa: str
274
  @param rsa: the RSA private key to write
275
  @type rsapub: str
276
  @param rsapub: the RSA public key to write
277
  @type sshkey: str
278
  @param sshkey: the SSH private key to write
279
  @type sshpub: str
280
  @param sshpub: the SSH public key to write
281
  @rtype: boolean
282
  @return: the success of the operation
283

284
  """
285
  sshd_keys =  [(constants.SSH_HOST_RSA_PRIV, rsa, 0600),
286
                (constants.SSH_HOST_RSA_PUB, rsapub, 0644),
287
                (constants.SSH_HOST_DSA_PRIV, dsa, 0600),
288
                (constants.SSH_HOST_DSA_PUB, dsapub, 0644)]
289
  for name, content, mode in sshd_keys:
290
    utils.WriteFile(name, data=content, mode=mode)
291

    
292
  try:
293
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS,
294
                                                    mkdir=True)
295
  except errors.OpExecError, err:
296
    _Fail("Error while processing user ssh files: %s", err, exc=True)
297

    
298
  for name, content in [(priv_key, sshkey), (pub_key, sshpub)]:
299
    utils.WriteFile(name, data=content, mode=0600)
300

    
301
  utils.AddAuthorizedKey(auth_keys, sshpub)
302

    
303
  utils.RunCmd([constants.SSH_INITD_SCRIPT, "restart"])
304

    
305
  return (True, "Node added successfully")
306

    
307

    
308
def LeaveCluster():
309
  """Cleans up and remove the current node.
310

311
  This function cleans up and prepares the current node to be removed
312
  from the cluster.
313

314
  If processing is successful, then it raises an
315
  L{errors.QuitGanetiException} which is used as a special case to
316
  shutdown the node daemon.
317

318
  """
319
  _CleanDirectory(constants.DATA_DIR)
320
  JobQueuePurge()
321

    
322
  try:
323
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
324

    
325
    f = open(pub_key, 'r')
326
    try:
327
      utils.RemoveAuthorizedKey(auth_keys, f.read(8192))
328
    finally:
329
      f.close()
330

    
331
    utils.RemoveFile(priv_key)
332
    utils.RemoveFile(pub_key)
333
  except errors.OpExecError:
334
    logging.exception("Error while processing ssh files")
335

    
336
  # Raise a custom exception (handled in ganeti-noded)
337
  raise errors.QuitGanetiException(True, 'Shutdown scheduled')
338

    
339

    
340
def GetNodeInfo(vgname, hypervisor_type):
341
  """Gives back a hash with different informations about the node.
342

343
  @type vgname: C{string}
344
  @param vgname: the name of the volume group to ask for disk space information
345
  @type hypervisor_type: C{str}
346
  @param hypervisor_type: the name of the hypervisor to ask for
347
      memory information
348
  @rtype: C{dict}
349
  @return: dictionary with the following keys:
350
      - vg_size is the size of the configured volume group in MiB
351
      - vg_free is the free size of the volume group in MiB
352
      - memory_dom0 is the memory allocated for domain0 in MiB
353
      - memory_free is the currently available (free) ram in MiB
354
      - memory_total is the total number of ram in MiB
355

356
  """
357
  outputarray = {}
358
  vginfo = _GetVGInfo(vgname)
359
  outputarray['vg_size'] = vginfo['vg_size']
360
  outputarray['vg_free'] = vginfo['vg_free']
361

    
362
  hyper = hypervisor.GetHypervisor(hypervisor_type)
363
  hyp_info = hyper.GetNodeInfo()
364
  if hyp_info is not None:
365
    outputarray.update(hyp_info)
366

    
367
  f = open("/proc/sys/kernel/random/boot_id", 'r')
368
  try:
369
    outputarray["bootid"] = f.read(128).rstrip("\n")
370
  finally:
371
    f.close()
372

    
373
  return True, outputarray
374

    
375

    
376
def VerifyNode(what, cluster_name):
377
  """Verify the status of the local node.
378

379
  Based on the input L{what} parameter, various checks are done on the
380
  local node.
381

382
  If the I{filelist} key is present, this list of
383
  files is checksummed and the file/checksum pairs are returned.
384

385
  If the I{nodelist} key is present, we check that we have
386
  connectivity via ssh with the target nodes (and check the hostname
387
  report).
388

389
  If the I{node-net-test} key is present, we check that we have
390
  connectivity to the given nodes via both primary IP and, if
391
  applicable, secondary IPs.
392

393
  @type what: C{dict}
394
  @param what: a dictionary of things to check:
395
      - filelist: list of files for which to compute checksums
396
      - nodelist: list of nodes we should check ssh communication with
397
      - node-net-test: list of nodes we should check node daemon port
398
        connectivity with
399
      - hypervisor: list with hypervisors to run the verify for
400
  @rtype: dict
401
  @return: a dictionary with the same keys as the input dict, and
402
      values representing the result of the checks
403

404
  """
405
  result = {}
406

    
407
  if constants.NV_HYPERVISOR in what:
408
    result[constants.NV_HYPERVISOR] = tmp = {}
409
    for hv_name in what[constants.NV_HYPERVISOR]:
410
      tmp[hv_name] = hypervisor.GetHypervisor(hv_name).Verify()
411

    
412
  if constants.NV_FILELIST in what:
413
    result[constants.NV_FILELIST] = utils.FingerprintFiles(
414
      what[constants.NV_FILELIST])
415

    
416
  if constants.NV_NODELIST in what:
417
    result[constants.NV_NODELIST] = tmp = {}
418
    random.shuffle(what[constants.NV_NODELIST])
419
    for node in what[constants.NV_NODELIST]:
420
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
421
      if not success:
422
        tmp[node] = message
423

    
424
  if constants.NV_NODENETTEST in what:
425
    result[constants.NV_NODENETTEST] = tmp = {}
426
    my_name = utils.HostInfo().name
427
    my_pip = my_sip = None
428
    for name, pip, sip in what[constants.NV_NODENETTEST]:
429
      if name == my_name:
430
        my_pip = pip
431
        my_sip = sip
432
        break
433
    if not my_pip:
434
      tmp[my_name] = ("Can't find my own primary/secondary IP"
435
                      " in the node list")
436
    else:
437
      port = utils.GetNodeDaemonPort()
438
      for name, pip, sip in what[constants.NV_NODENETTEST]:
439
        fail = []
440
        if not utils.TcpPing(pip, port, source=my_pip):
441
          fail.append("primary")
442
        if sip != pip:
443
          if not utils.TcpPing(sip, port, source=my_sip):
444
            fail.append("secondary")
445
        if fail:
446
          tmp[name] = ("failure using the %s interface(s)" %
447
                       " and ".join(fail))
448

    
449
  if constants.NV_LVLIST in what:
450
    result[constants.NV_LVLIST] = GetVolumeList(what[constants.NV_LVLIST])
451

    
452
  if constants.NV_INSTANCELIST in what:
453
    result[constants.NV_INSTANCELIST] = GetInstanceList(
454
      what[constants.NV_INSTANCELIST])
455

    
456
  if constants.NV_VGLIST in what:
457
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
458

    
459
  if constants.NV_VERSION in what:
460
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
461
                                    constants.RELEASE_VERSION)
462

    
463
  if constants.NV_HVINFO in what:
464
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
465
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
466

    
467
  if constants.NV_DRBDLIST in what:
468
    try:
469
      used_minors = bdev.DRBD8.GetUsedDevs().keys()
470
    except errors.BlockDeviceError, err:
471
      logging.warning("Can't get used minors list", exc_info=True)
472
      used_minors = str(err)
473
    result[constants.NV_DRBDLIST] = used_minors
474

    
475
  return True, result
476

    
477

    
478
def GetVolumeList(vg_name):
479
  """Compute list of logical volumes and their size.
480

481
  @type vg_name: str
482
  @param vg_name: the volume group whose LVs we should list
483
  @rtype: dict
484
  @return:
485
      dictionary of all partions (key) with value being a tuple of
486
      their size (in MiB), inactive and online status::
487

488
        {'test1': ('20.06', True, True)}
489

490
      in case of errors, a string is returned with the error
491
      details.
492

493
  """
494
  lvs = {}
495
  sep = '|'
496
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
497
                         "--separator=%s" % sep,
498
                         "-olv_name,lv_size,lv_attr", vg_name])
499
  if result.failed:
500
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
501

    
502
  valid_line_re = re.compile("^ *([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
503
  for line in result.stdout.splitlines():
504
    line = line.strip()
505
    match = valid_line_re.match(line)
506
    if not match:
507
      logging.error("Invalid line returned from lvs output: '%s'", line)
508
      continue
509
    name, size, attr = match.groups()
510
    inactive = attr[4] == '-'
511
    online = attr[5] == 'o'
512
    lvs[name] = (size, inactive, online)
513

    
514
  return lvs
515

    
516

    
517
def ListVolumeGroups():
518
  """List the volume groups and their size.
519

520
  @rtype: dict
521
  @return: dictionary with keys volume name and values the
522
      size of the volume
523

524
  """
525
  return True, utils.ListVolumeGroups()
526

    
527

    
528
def NodeVolumes():
529
  """List all volumes on this node.
530

531
  @rtype: list
532
  @return:
533
    A list of dictionaries, each having four keys:
534
      - name: the logical volume name,
535
      - size: the size of the logical volume
536
      - dev: the physical device on which the LV lives
537
      - vg: the volume group to which it belongs
538

539
    In case of errors, we return an empty list and log the
540
    error.
541

542
    Note that since a logical volume can live on multiple physical
543
    volumes, the resulting list might include a logical volume
544
    multiple times.
545

546
  """
547
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
548
                         "--separator=|",
549
                         "--options=lv_name,lv_size,devices,vg_name"])
550
  if result.failed:
551
    _Fail("Failed to list logical volumes, lvs output: %s",
552
          result.output)
553

    
554
  def parse_dev(dev):
555
    if '(' in dev:
556
      return dev.split('(')[0]
557
    else:
558
      return dev
559

    
560
  def map_line(line):
561
    return {
562
      'name': line[0].strip(),
563
      'size': line[1].strip(),
564
      'dev': parse_dev(line[2].strip()),
565
      'vg': line[3].strip(),
566
    }
567

    
568
  return True, [map_line(line.split('|'))
569
                for line in result.stdout.splitlines()
570
                if line.count('|') >= 3]
571

    
572

    
573
def BridgesExist(bridges_list):
574
  """Check if a list of bridges exist on the current node.
575

576
  @rtype: boolean
577
  @return: C{True} if all of them exist, C{False} otherwise
578

579
  """
580
  missing = []
581
  for bridge in bridges_list:
582
    if not utils.BridgeExists(bridge):
583
      missing.append(bridge)
584

    
585
  if missing:
586
    return False, "Missing bridges %s" % (", ".join(missing),)
587

    
588
  return True, None
589

    
590

    
591
def GetInstanceList(hypervisor_list):
592
  """Provides a list of instances.
593

594
  @type hypervisor_list: list
595
  @param hypervisor_list: the list of hypervisors to query information
596

597
  @rtype: list
598
  @return: a list of all running instances on the current node
599
    - instance1.example.com
600
    - instance2.example.com
601

602
  """
603
  results = []
604
  for hname in hypervisor_list:
605
    try:
606
      names = hypervisor.GetHypervisor(hname).ListInstances()
607
      results.extend(names)
608
    except errors.HypervisorError, err:
609
      _Fail("Error enumerating instances (hypervisor %s): %s",
610
            hname, err, exc=True)
611

    
612
  return results
613

    
614

    
615
def GetInstanceInfo(instance, hname):
616
  """Gives back the informations about an instance as a dictionary.
617

618
  @type instance: string
619
  @param instance: the instance name
620
  @type hname: string
621
  @param hname: the hypervisor type of the instance
622

623
  @rtype: dict
624
  @return: dictionary with the following keys:
625
      - memory: memory size of instance (int)
626
      - state: xen state of instance (string)
627
      - time: cpu time of instance (float)
628

629
  """
630
  output = {}
631

    
632
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
633
  if iinfo is not None:
634
    output['memory'] = iinfo[2]
635
    output['state'] = iinfo[4]
636
    output['time'] = iinfo[5]
637

    
638
  return True, output
639

    
640

    
641
def GetInstanceMigratable(instance):
642
  """Gives whether an instance can be migrated.
643

644
  @type instance: L{objects.Instance}
645
  @param instance: object representing the instance to be checked.
646

647
  @rtype: tuple
648
  @return: tuple of (result, description) where:
649
      - result: whether the instance can be migrated or not
650
      - description: a description of the issue, if relevant
651

652
  """
653
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
654
  if instance.name not in hyper.ListInstances():
655
    return (False, 'not running')
656

    
657
  for idx in range(len(instance.disks)):
658
    link_name = _GetBlockDevSymlinkPath(instance.name, idx)
659
    if not os.path.islink(link_name):
660
      return (False, 'not restarted since ganeti 1.2.5')
661

    
662
  return (True, '')
663

    
664

    
665
def GetAllInstancesInfo(hypervisor_list):
666
  """Gather data about all instances.
667

668
  This is the equivalent of L{GetInstanceInfo}, except that it
669
  computes data for all instances at once, thus being faster if one
670
  needs data about more than one instance.
671

672
  @type hypervisor_list: list
673
  @param hypervisor_list: list of hypervisors to query for instance data
674

675
  @rtype: dict
676
  @return: dictionary of instance: data, with data having the following keys:
677
      - memory: memory size of instance (int)
678
      - state: xen state of instance (string)
679
      - time: cpu time of instance (float)
680
      - vcpus: the number of vcpus
681

682
  """
683
  output = {}
684

    
685
  for hname in hypervisor_list:
686
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
687
    if iinfo:
688
      for name, inst_id, memory, vcpus, state, times in iinfo:
689
        value = {
690
          'memory': memory,
691
          'vcpus': vcpus,
692
          'state': state,
693
          'time': times,
694
          }
695
        if name in output:
696
          # we only check static parameters, like memory and vcpus,
697
          # and not state and time which can change between the
698
          # invocations of the different hypervisors
699
          for key in 'memory', 'vcpus':
700
            if value[key] != output[name][key]:
701
              _Fail("Instance %s is running twice"
702
                    " with different parameters", name)
703
        output[name] = value
704

    
705
  return True, output
706

    
707

    
708
def InstanceOsAdd(instance, reinstall):
709
  """Add an OS to an instance.
710

711
  @type instance: L{objects.Instance}
712
  @param instance: Instance whose OS is to be installed
713
  @type reinstall: boolean
714
  @param reinstall: whether this is an instance reinstall
715
  @rtype: boolean
716
  @return: the success of the operation
717

718
  """
719
  try:
720
    inst_os = OSFromDisk(instance.os)
721
  except errors.InvalidOS, err:
722
    os_name, os_dir, os_err = err.args
723
    if os_dir is None:
724
      return (False, "Can't find OS '%s': %s" % (os_name, os_err))
725
    else:
726
      return (False, "Error parsing OS '%s' in directory %s: %s" %
727
              (os_name, os_dir, os_err))
728

    
729
  create_env = OSEnvironment(instance)
730
  if reinstall:
731
    create_env['INSTANCE_REINSTALL'] = "1"
732

    
733
  logfile = "%s/add-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
734
                                     instance.name, int(time.time()))
735

    
736
  result = utils.RunCmd([inst_os.create_script], env=create_env,
737
                        cwd=inst_os.path, output=logfile,)
738
  if result.failed:
739
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
740
                  " output: %s", result.cmd, result.fail_reason, logfile,
741
                  result.output)
742
    lines = [utils.SafeEncode(val)
743
             for val in utils.TailFile(logfile, lines=20)]
744
    return (False, "OS create script failed (%s), last lines in the"
745
            " log file:\n%s" % (result.fail_reason, "\n".join(lines)))
746

    
747
  return (True, "Successfully installed")
748

    
749

    
750
def RunRenameInstance(instance, old_name):
751
  """Run the OS rename script for an instance.
752

753
  @type instance: L{objects.Instance}
754
  @param instance: Instance whose OS is to be installed
755
  @type old_name: string
756
  @param old_name: previous instance name
757
  @rtype: boolean
758
  @return: the success of the operation
759

760
  """
761
  inst_os = OSFromDisk(instance.os)
762

    
763
  rename_env = OSEnvironment(instance)
764
  rename_env['OLD_INSTANCE_NAME'] = old_name
765

    
766
  logfile = "%s/rename-%s-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
767
                                           old_name,
768
                                           instance.name, int(time.time()))
769

    
770
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
771
                        cwd=inst_os.path, output=logfile)
772

    
773
  if result.failed:
774
    logging.error("os create command '%s' returned error: %s output: %s",
775
                  result.cmd, result.fail_reason, result.output)
776
    lines = [utils.SafeEncode(val)
777
             for val in utils.TailFile(logfile, lines=20)]
778
    return (False, "OS rename script failed (%s), last lines in the"
779
            " log file:\n%s" % (result.fail_reason, "\n".join(lines)))
780

    
781
  return (True, "Rename successful")
782

    
783

    
784
def _GetVGInfo(vg_name):
785
  """Get informations about the volume group.
786

787
  @type vg_name: str
788
  @param vg_name: the volume group which we query
789
  @rtype: dict
790
  @return:
791
    A dictionary with the following keys:
792
      - C{vg_size} is the total size of the volume group in MiB
793
      - C{vg_free} is the free size of the volume group in MiB
794
      - C{pv_count} are the number of physical disks in that VG
795

796
    If an error occurs during gathering of data, we return the same dict
797
    with keys all set to None.
798

799
  """
800
  retdic = dict.fromkeys(["vg_size", "vg_free", "pv_count"])
801

    
802
  retval = utils.RunCmd(["vgs", "-ovg_size,vg_free,pv_count", "--noheadings",
803
                         "--nosuffix", "--units=m", "--separator=:", vg_name])
804

    
805
  if retval.failed:
806
    logging.error("volume group %s not present", vg_name)
807
    return retdic
808
  valarr = retval.stdout.strip().rstrip(':').split(':')
809
  if len(valarr) == 3:
810
    try:
811
      retdic = {
812
        "vg_size": int(round(float(valarr[0]), 0)),
813
        "vg_free": int(round(float(valarr[1]), 0)),
814
        "pv_count": int(valarr[2]),
815
        }
816
    except ValueError, err:
817
      logging.exception("Fail to parse vgs output")
818
  else:
819
    logging.error("vgs output has the wrong number of fields (expected"
820
                  " three): %s", str(valarr))
821
  return retdic
822

    
823

    
824
def _GetBlockDevSymlinkPath(instance_name, idx):
825
  return os.path.join(constants.DISK_LINKS_DIR,
826
                      "%s:%d" % (instance_name, idx))
827

    
828

    
829
def _SymlinkBlockDev(instance_name, device_path, idx):
830
  """Set up symlinks to a instance's block device.
831

832
  This is an auxiliary function run when an instance is start (on the primary
833
  node) or when an instance is migrated (on the target node).
834

835

836
  @param instance_name: the name of the target instance
837
  @param device_path: path of the physical block device, on the node
838
  @param idx: the disk index
839
  @return: absolute path to the disk's symlink
840

841
  """
842
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
843
  try:
844
    os.symlink(device_path, link_name)
845
  except OSError, err:
846
    if err.errno == errno.EEXIST:
847
      if (not os.path.islink(link_name) or
848
          os.readlink(link_name) != device_path):
849
        os.remove(link_name)
850
        os.symlink(device_path, link_name)
851
    else:
852
      raise
853

    
854
  return link_name
855

    
856

    
857
def _RemoveBlockDevLinks(instance_name, disks):
858
  """Remove the block device symlinks belonging to the given instance.
859

860
  """
861
  for idx, disk in enumerate(disks):
862
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
863
    if os.path.islink(link_name):
864
      try:
865
        os.remove(link_name)
866
      except OSError:
867
        logging.exception("Can't remove symlink '%s'", link_name)
868

    
869

    
870
def _GatherAndLinkBlockDevs(instance):
871
  """Set up an instance's block device(s).
872

873
  This is run on the primary node at instance startup. The block
874
  devices must be already assembled.
875

876
  @type instance: L{objects.Instance}
877
  @param instance: the instance whose disks we shoul assemble
878
  @rtype: list
879
  @return: list of (disk_object, device_path)
880

881
  """
882
  block_devices = []
883
  for idx, disk in enumerate(instance.disks):
884
    device = _RecursiveFindBD(disk)
885
    if device is None:
886
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
887
                                    str(disk))
888
    device.Open()
889
    try:
890
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
891
    except OSError, e:
892
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
893
                                    e.strerror)
894

    
895
    block_devices.append((disk, link_name))
896

    
897
  return block_devices
898

    
899

    
900
def StartInstance(instance):
901
  """Start an instance.
902

903
  @type instance: L{objects.Instance}
904
  @param instance: the instance object
905
  @rtype: boolean
906
  @return: whether the startup was successful or not
907

908
  """
909
  running_instances = GetInstanceList([instance.hypervisor])
910

    
911
  if instance.name in running_instances:
912
    return (True, "Already running")
913

    
914
  try:
915
    block_devices = _GatherAndLinkBlockDevs(instance)
916
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
917
    hyper.StartInstance(instance, block_devices)
918
  except errors.BlockDeviceError, err:
919
    _Fail("Block device error: %s", err, exc=True)
920
  except errors.HypervisorError, err:
921
    _RemoveBlockDevLinks(instance.name, instance.disks)
922
    _Fail("Hypervisor error: %s", err, exc=True)
923

    
924
  return (True, "Instance started successfully")
925

    
926

    
927
def InstanceShutdown(instance):
928
  """Shut an instance down.
929

930
  @note: this functions uses polling with a hardcoded timeout.
931

932
  @type instance: L{objects.Instance}
933
  @param instance: the instance object
934
  @rtype: boolean
935
  @return: whether the startup was successful or not
936

937
  """
938
  hv_name = instance.hypervisor
939
  running_instances = GetInstanceList([hv_name])
940

    
941
  if instance.name not in running_instances:
942
    return (True, "Instance already stopped")
943

    
944
  hyper = hypervisor.GetHypervisor(hv_name)
945
  try:
946
    hyper.StopInstance(instance)
947
  except errors.HypervisorError, err:
948
    _Fail("Failed to stop instance %s: %s", instance.name, err)
949

    
950
  # test every 10secs for 2min
951

    
952
  time.sleep(1)
953
  for dummy in range(11):
954
    if instance.name not in GetInstanceList([hv_name]):
955
      break
956
    time.sleep(10)
957
  else:
958
    # the shutdown did not succeed
959
    logging.error("Shutdown of '%s' unsuccessful, using destroy",
960
                  instance.name)
961

    
962
    try:
963
      hyper.StopInstance(instance, force=True)
964
    except errors.HypervisorError, err:
965
      _Fail("Failed to force stop instance %s: %s", instance.name, err)
966

    
967
    time.sleep(1)
968
    if instance.name in GetInstanceList([hv_name]):
969
      _Fail("Could not shutdown instance %s even by destroy", instance.name)
970

    
971
  _RemoveBlockDevLinks(instance.name, instance.disks)
972

    
973
  return (True, "Instance has been shutdown successfully")
974

    
975

    
976
def InstanceReboot(instance, reboot_type):
977
  """Reboot an instance.
978

979
  @type instance: L{objects.Instance}
980
  @param instance: the instance object to reboot
981
  @type reboot_type: str
982
  @param reboot_type: the type of reboot, one the following
983
    constants:
984
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
985
        instance OS, do not recreate the VM
986
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
987
        restart the VM (at the hypervisor level)
988
      - the other reboot type (L{constants.INSTANCE_REBOOT_HARD})
989
        is not accepted here, since that mode is handled
990
        differently
991
  @rtype: boolean
992
  @return: the success of the operation
993

994
  """
995
  running_instances = GetInstanceList([instance.hypervisor])
996

    
997
  if instance.name not in running_instances:
998
    _Fail("Cannot reboot instance %s that is not running", instance.name)
999

    
1000
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1001
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1002
    try:
1003
      hyper.RebootInstance(instance)
1004
    except errors.HypervisorError, err:
1005
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1006
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1007
    try:
1008
      stop_result = InstanceShutdown(instance)
1009
      if not stop_result[0]:
1010
        return stop_result
1011
      return StartInstance(instance)
1012
    except errors.HypervisorError, err:
1013
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1014
  else:
1015
    _Fail("Invalid reboot_type received: %s", reboot_type)
1016

    
1017
  return (True, "Reboot successful")
1018

    
1019

    
1020
def MigrationInfo(instance):
1021
  """Gather information about an instance to be migrated.
1022

1023
  @type instance: L{objects.Instance}
1024
  @param instance: the instance definition
1025

1026
  """
1027
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1028
  try:
1029
    info = hyper.MigrationInfo(instance)
1030
  except errors.HypervisorError, err:
1031
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1032
  return (True, info)
1033

    
1034

    
1035
def AcceptInstance(instance, info, target):
1036
  """Prepare the node to accept an instance.
1037

1038
  @type instance: L{objects.Instance}
1039
  @param instance: the instance definition
1040
  @type info: string/data (opaque)
1041
  @param info: migration information, from the source node
1042
  @type target: string
1043
  @param target: target host (usually ip), on this node
1044

1045
  """
1046
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1047
  try:
1048
    hyper.AcceptInstance(instance, info, target)
1049
  except errors.HypervisorError, err:
1050
    _Fail("Failed to accept instance: %s", err, exc=True)
1051
  return (True, "Accept successfull")
1052

    
1053

    
1054
def FinalizeMigration(instance, info, success):
1055
  """Finalize any preparation to accept an instance.
1056

1057
  @type instance: L{objects.Instance}
1058
  @param instance: the instance definition
1059
  @type info: string/data (opaque)
1060
  @param info: migration information, from the source node
1061
  @type success: boolean
1062
  @param success: whether the migration was a success or a failure
1063

1064
  """
1065
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1066
  try:
1067
    hyper.FinalizeMigration(instance, info, success)
1068
  except errors.HypervisorError, err:
1069
    _Fail("Failed to finalize migration: %s", err, exc=True)
1070
  return (True, "Migration Finalized")
1071

    
1072

    
1073
def MigrateInstance(instance, target, live):
1074
  """Migrates an instance to another node.
1075

1076
  @type instance: L{objects.Instance}
1077
  @param instance: the instance definition
1078
  @type target: string
1079
  @param target: the target node name
1080
  @type live: boolean
1081
  @param live: whether the migration should be done live or not (the
1082
      interpretation of this parameter is left to the hypervisor)
1083
  @rtype: tuple
1084
  @return: a tuple of (success, msg) where:
1085
      - succes is a boolean denoting the success/failure of the operation
1086
      - msg is a string with details in case of failure
1087

1088
  """
1089
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1090

    
1091
  try:
1092
    hyper.MigrateInstance(instance.name, target, live)
1093
  except errors.HypervisorError, err:
1094
    _Fail("Failed to migrate instance: %s", err, exc=True)
1095
  return (True, "Migration successfull")
1096

    
1097

    
1098
def BlockdevCreate(disk, size, owner, on_primary, info):
1099
  """Creates a block device for an instance.
1100

1101
  @type disk: L{objects.Disk}
1102
  @param disk: the object describing the disk we should create
1103
  @type size: int
1104
  @param size: the size of the physical underlying device, in MiB
1105
  @type owner: str
1106
  @param owner: the name of the instance for which disk is created,
1107
      used for device cache data
1108
  @type on_primary: boolean
1109
  @param on_primary:  indicates if it is the primary node or not
1110
  @type info: string
1111
  @param info: string that will be sent to the physical device
1112
      creation, used for example to set (LVM) tags on LVs
1113

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

1118
  """
1119
  clist = []
1120
  if disk.children:
1121
    for child in disk.children:
1122
      try:
1123
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1124
      except errors.BlockDeviceError, err:
1125
        _Fail("Can't assemble device %s: %s", child, err)
1126
      if on_primary or disk.AssembleOnSecondary():
1127
        # we need the children open in case the device itself has to
1128
        # be assembled
1129
        try:
1130
          crdev.Open()
1131
        except errors.BlockDeviceError, err:
1132
          _Fail("Can't make child '%s' read-write: %s", child, err)
1133
      clist.append(crdev)
1134

    
1135
  try:
1136
    device = bdev.Create(disk.dev_type, disk.physical_id, clist, size)
1137
  except errors.BlockDeviceError, err:
1138
    _Fail("Can't create block device: %s", err)
1139

    
1140
  if on_primary or disk.AssembleOnSecondary():
1141
    try:
1142
      device.Assemble()
1143
    except errors.BlockDeviceError, err:
1144
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1145
    device.SetSyncSpeed(constants.SYNC_SPEED)
1146
    if on_primary or disk.OpenOnSecondary():
1147
      try:
1148
        device.Open(force=True)
1149
      except errors.BlockDeviceError, err:
1150
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1151
    DevCacheManager.UpdateCache(device.dev_path, owner,
1152
                                on_primary, disk.iv_name)
1153

    
1154
  device.SetInfo(info)
1155

    
1156
  physical_id = device.unique_id
1157
  return True, physical_id
1158

    
1159

    
1160
def BlockdevRemove(disk):
1161
  """Remove a block device.
1162

1163
  @note: This is intended to be called recursively.
1164

1165
  @type disk: L{objects.Disk}
1166
  @param disk: the disk object we should remove
1167
  @rtype: boolean
1168
  @return: the success of the operation
1169

1170
  """
1171
  msgs = []
1172
  result = True
1173
  try:
1174
    rdev = _RecursiveFindBD(disk)
1175
  except errors.BlockDeviceError, err:
1176
    # probably can't attach
1177
    logging.info("Can't attach to device %s in remove", disk)
1178
    rdev = None
1179
  if rdev is not None:
1180
    r_path = rdev.dev_path
1181
    try:
1182
      rdev.Remove()
1183
    except errors.BlockDeviceError, err:
1184
      msgs.append(str(err))
1185
      result = False
1186
    if result:
1187
      DevCacheManager.RemoveCache(r_path)
1188

    
1189
  if disk.children:
1190
    for child in disk.children:
1191
      c_status, c_msg = BlockdevRemove(child)
1192
      result = result and c_status
1193
      if c_msg: # not an empty message
1194
        msgs.append(c_msg)
1195

    
1196
  return (result, "; ".join(msgs))
1197

    
1198

    
1199
def _RecursiveAssembleBD(disk, owner, as_primary):
1200
  """Activate a block device for an instance.
1201

1202
  This is run on the primary and secondary nodes for an instance.
1203

1204
  @note: this function is called recursively.
1205

1206
  @type disk: L{objects.Disk}
1207
  @param disk: the disk we try to assemble
1208
  @type owner: str
1209
  @param owner: the name of the instance which owns the disk
1210
  @type as_primary: boolean
1211
  @param as_primary: if we should make the block device
1212
      read/write
1213

1214
  @return: the assembled device or None (in case no device
1215
      was assembled)
1216
  @raise errors.BlockDeviceError: in case there is an error
1217
      during the activation of the children or the device
1218
      itself
1219

1220
  """
1221
  children = []
1222
  if disk.children:
1223
    mcn = disk.ChildrenNeeded()
1224
    if mcn == -1:
1225
      mcn = 0 # max number of Nones allowed
1226
    else:
1227
      mcn = len(disk.children) - mcn # max number of Nones
1228
    for chld_disk in disk.children:
1229
      try:
1230
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1231
      except errors.BlockDeviceError, err:
1232
        if children.count(None) >= mcn:
1233
          raise
1234
        cdev = None
1235
        logging.error("Error in child activation (but continuing): %s",
1236
                      str(err))
1237
      children.append(cdev)
1238

    
1239
  if as_primary or disk.AssembleOnSecondary():
1240
    r_dev = bdev.Assemble(disk.dev_type, disk.physical_id, children)
1241
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
1242
    result = r_dev
1243
    if as_primary or disk.OpenOnSecondary():
1244
      r_dev.Open()
1245
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1246
                                as_primary, disk.iv_name)
1247

    
1248
  else:
1249
    result = True
1250
  return result
1251

    
1252

    
1253
def BlockdevAssemble(disk, owner, as_primary):
1254
  """Activate a block device for an instance.
1255

1256
  This is a wrapper over _RecursiveAssembleBD.
1257

1258
  @rtype: str or boolean
1259
  @return: a C{/dev/...} path for primary nodes, and
1260
      C{True} for secondary nodes
1261

1262
  """
1263
  status = True
1264
  result = "no error information"
1265
  try:
1266
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1267
    if isinstance(result, bdev.BlockDev):
1268
      result = result.dev_path
1269
  except errors.BlockDeviceError, err:
1270
    result = "Error while assembling disk: %s" % str(err)
1271
    status = False
1272
  return (status, result)
1273

    
1274

    
1275
def BlockdevShutdown(disk):
1276
  """Shut down a block device.
1277

1278
  First, if the device is assembled (Attach() is successfull), then
1279
  the device is shutdown. Then the children of the device are
1280
  shutdown.
1281

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

1286
  @type disk: L{objects.Disk}
1287
  @param disk: the description of the disk we should
1288
      shutdown
1289
  @rtype: boolean
1290
  @return: the success of the operation
1291

1292
  """
1293
  msgs = []
1294
  result = True
1295
  r_dev = _RecursiveFindBD(disk)
1296
  if r_dev is not None:
1297
    r_path = r_dev.dev_path
1298
    try:
1299
      r_dev.Shutdown()
1300
      DevCacheManager.RemoveCache(r_path)
1301
    except errors.BlockDeviceError, err:
1302
      msgs.append(str(err))
1303
      result = False
1304

    
1305
  if disk.children:
1306
    for child in disk.children:
1307
      c_status, c_msg = BlockdevShutdown(child)
1308
      result = result and c_status
1309
      if c_msg: # not an empty message
1310
        msgs.append(c_msg)
1311

    
1312
  return (result, "; ".join(msgs))
1313

    
1314

    
1315
def BlockdevAddchildren(parent_cdev, new_cdevs):
1316
  """Extend a mirrored block device.
1317

1318
  @type parent_cdev: L{objects.Disk}
1319
  @param parent_cdev: the disk to which we should add children
1320
  @type new_cdevs: list of L{objects.Disk}
1321
  @param new_cdevs: the list of children which we should add
1322
  @rtype: boolean
1323
  @return: the success of the operation
1324

1325
  """
1326
  parent_bdev = _RecursiveFindBD(parent_cdev)
1327
  if parent_bdev is None:
1328
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
1329
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
1330
  if new_bdevs.count(None) > 0:
1331
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
1332
  parent_bdev.AddChildren(new_bdevs)
1333
  return (True, None)
1334

    
1335

    
1336
def BlockdevRemovechildren(parent_cdev, new_cdevs):
1337
  """Shrink a mirrored block device.
1338

1339
  @type parent_cdev: L{objects.Disk}
1340
  @param parent_cdev: the disk from which we should remove children
1341
  @type new_cdevs: list of L{objects.Disk}
1342
  @param new_cdevs: the list of children which we should remove
1343
  @rtype: boolean
1344
  @return: the success of the operation
1345

1346
  """
1347
  parent_bdev = _RecursiveFindBD(parent_cdev)
1348
  if parent_bdev is None:
1349
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
1350
  devs = []
1351
  for disk in new_cdevs:
1352
    rpath = disk.StaticDevPath()
1353
    if rpath is None:
1354
      bd = _RecursiveFindBD(disk)
1355
      if bd is None:
1356
        _Fail("Can't find device %s while removing children", disk)
1357
      else:
1358
        devs.append(bd.dev_path)
1359
    else:
1360
      devs.append(rpath)
1361
  parent_bdev.RemoveChildren(devs)
1362
  return (True, None)
1363

    
1364

    
1365
def BlockdevGetmirrorstatus(disks):
1366
  """Get the mirroring status of a list of devices.
1367

1368
  @type disks: list of L{objects.Disk}
1369
  @param disks: the list of disks which we should query
1370
  @rtype: disk
1371
  @return:
1372
      a list of (mirror_done, estimated_time) tuples, which
1373
      are the result of L{bdev.BlockDev.CombinedSyncStatus}
1374
  @raise errors.BlockDeviceError: if any of the disks cannot be
1375
      found
1376

1377
  """
1378
  stats = []
1379
  for dsk in disks:
1380
    rbd = _RecursiveFindBD(dsk)
1381
    if rbd is None:
1382
      _Fail("Can't find device %s", dsk)
1383
    stats.append(rbd.CombinedSyncStatus())
1384
  return True, stats
1385

    
1386

    
1387
def _RecursiveFindBD(disk):
1388
  """Check if a device is activated.
1389

1390
  If so, return informations about the real device.
1391

1392
  @type disk: L{objects.Disk}
1393
  @param disk: the disk object we need to find
1394

1395
  @return: None if the device can't be found,
1396
      otherwise the device instance
1397

1398
  """
1399
  children = []
1400
  if disk.children:
1401
    for chdisk in disk.children:
1402
      children.append(_RecursiveFindBD(chdisk))
1403

    
1404
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children)
1405

    
1406

    
1407
def BlockdevFind(disk):
1408
  """Check if a device is activated.
1409

1410
  If it is, return informations about the real device.
1411

1412
  @type disk: L{objects.Disk}
1413
  @param disk: the disk to find
1414
  @rtype: None or tuple
1415
  @return: None if the disk cannot be found, otherwise a
1416
      tuple (device_path, major, minor, sync_percent,
1417
      estimated_time, is_degraded)
1418

1419
  """
1420
  try:
1421
    rbd = _RecursiveFindBD(disk)
1422
  except errors.BlockDeviceError, err:
1423
    _Fail("Failed to find device: %s", err, exc=True)
1424
  if rbd is None:
1425
    return (True, None)
1426
  return (True, (rbd.dev_path, rbd.major, rbd.minor) + rbd.GetSyncStatus())
1427

    
1428

    
1429
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1430
  """Write a file to the filesystem.
1431

1432
  This allows the master to overwrite(!) a file. It will only perform
1433
  the operation if the file belongs to a list of configuration files.
1434

1435
  @type file_name: str
1436
  @param file_name: the target file name
1437
  @type data: str
1438
  @param data: the new contents of the file
1439
  @type mode: int
1440
  @param mode: the mode to give the file (can be None)
1441
  @type uid: int
1442
  @param uid: the owner of the file (can be -1 for default)
1443
  @type gid: int
1444
  @param gid: the group of the file (can be -1 for default)
1445
  @type atime: float
1446
  @param atime: the atime to set on the file (can be None)
1447
  @type mtime: float
1448
  @param mtime: the mtime to set on the file (can be None)
1449
  @rtype: boolean
1450
  @return: the success of the operation; errors are logged
1451
      in the node daemon log
1452

1453
  """
1454
  if not os.path.isabs(file_name):
1455
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1456

    
1457
  allowed_files = set([
1458
    constants.CLUSTER_CONF_FILE,
1459
    constants.ETC_HOSTS,
1460
    constants.SSH_KNOWN_HOSTS_FILE,
1461
    constants.VNC_PASSWORD_FILE,
1462
    constants.RAPI_CERT_FILE,
1463
    constants.RAPI_USERS_FILE,
1464
    ])
1465

    
1466
  for hv_name in constants.HYPER_TYPES:
1467
    hv_class = hypervisor.GetHypervisor(hv_name)
1468
    allowed_files.update(hv_class.GetAncillaryFiles())
1469

    
1470
  if file_name not in allowed_files:
1471
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1472
          file_name)
1473

    
1474
  raw_data = _Decompress(data)
1475

    
1476
  utils.WriteFile(file_name, data=raw_data, mode=mode, uid=uid, gid=gid,
1477
                  atime=atime, mtime=mtime)
1478
  return (True, "success")
1479

    
1480

    
1481
def WriteSsconfFiles(values):
1482
  """Update all ssconf files.
1483

1484
  Wrapper around the SimpleStore.WriteFiles.
1485

1486
  """
1487
  ssconf.SimpleStore().WriteFiles(values)
1488
  return True, None
1489

    
1490

    
1491
def _ErrnoOrStr(err):
1492
  """Format an EnvironmentError exception.
1493

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

1498
  @type err: L{EnvironmentError}
1499
  @param err: the exception to format
1500

1501
  """
1502
  if hasattr(err, 'errno'):
1503
    detail = errno.errorcode[err.errno]
1504
  else:
1505
    detail = str(err)
1506
  return detail
1507

    
1508

    
1509
def _OSOndiskVersion(name, os_dir):
1510
  """Compute and return the API version of a given OS.
1511

1512
  This function will try to read the API version of the OS given by
1513
  the 'name' parameter and residing in the 'os_dir' directory.
1514

1515
  @type name: str
1516
  @param name: the OS name we should look for
1517
  @type os_dir: str
1518
  @param os_dir: the directory inwhich we should look for the OS
1519
  @rtype: int or None
1520
  @return:
1521
      Either an integer denoting the version or None in the
1522
      case when this is not a valid OS name.
1523
  @raise errors.InvalidOS: if the OS cannot be found
1524

1525
  """
1526
  api_file = os.path.sep.join([os_dir, "ganeti_api_version"])
1527

    
1528
  try:
1529
    st = os.stat(api_file)
1530
  except EnvironmentError, err:
1531
    raise errors.InvalidOS(name, os_dir, "'ganeti_api_version' file not"
1532
                           " found (%s)" % _ErrnoOrStr(err))
1533

    
1534
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1535
    raise errors.InvalidOS(name, os_dir, "'ganeti_api_version' file is not"
1536
                           " a regular file")
1537

    
1538
  try:
1539
    f = open(api_file)
1540
    try:
1541
      api_versions = f.readlines()
1542
    finally:
1543
      f.close()
1544
  except EnvironmentError, err:
1545
    raise errors.InvalidOS(name, os_dir, "error while reading the"
1546
                           " API version (%s)" % _ErrnoOrStr(err))
1547

    
1548
  api_versions = [version.strip() for version in api_versions]
1549
  try:
1550
    api_versions = [int(version) for version in api_versions]
1551
  except (TypeError, ValueError), err:
1552
    raise errors.InvalidOS(name, os_dir,
1553
                           "API version is not integer (%s)" % str(err))
1554

    
1555
  return api_versions
1556

    
1557

    
1558
def DiagnoseOS(top_dirs=None):
1559
  """Compute the validity for all OSes.
1560

1561
  @type top_dirs: list
1562
  @param top_dirs: the list of directories in which to
1563
      search (if not given defaults to
1564
      L{constants.OS_SEARCH_PATH})
1565
  @rtype: list of L{objects.OS}
1566
  @return: an OS object for each name in all the given
1567
      directories
1568

1569
  """
1570
  if top_dirs is None:
1571
    top_dirs = constants.OS_SEARCH_PATH
1572

    
1573
  result = []
1574
  for dir_name in top_dirs:
1575
    if os.path.isdir(dir_name):
1576
      try:
1577
        f_names = utils.ListVisibleFiles(dir_name)
1578
      except EnvironmentError, err:
1579
        logging.exception("Can't list the OS directory %s", dir_name)
1580
        break
1581
      for name in f_names:
1582
        try:
1583
          os_inst = OSFromDisk(name, base_dir=dir_name)
1584
          result.append(os_inst)
1585
        except errors.InvalidOS, err:
1586
          result.append(objects.OS.FromInvalidOS(err))
1587

    
1588
  return result
1589

    
1590

    
1591
def OSFromDisk(name, base_dir=None):
1592
  """Create an OS instance from disk.
1593

1594
  This function will return an OS instance if the given name is a
1595
  valid OS name. Otherwise, it will raise an appropriate
1596
  L{errors.InvalidOS} exception, detailing why this is not a valid OS.
1597

1598
  @type base_dir: string
1599
  @keyword base_dir: Base directory containing OS installations.
1600
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1601
  @rtype: L{objects.OS}
1602
  @return: the OS instance if we find a valid one
1603
  @raise errors.InvalidOS: if we don't find a valid OS
1604

1605
  """
1606
  if base_dir is None:
1607
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1608
    if os_dir is None:
1609
      raise errors.InvalidOS(name, None, "OS dir not found in search path")
1610
  else:
1611
    os_dir = os.path.sep.join([base_dir, name])
1612

    
1613
  api_versions = _OSOndiskVersion(name, os_dir)
1614

    
1615
  if constants.OS_API_VERSION not in api_versions:
1616
    raise errors.InvalidOS(name, os_dir, "API version mismatch"
1617
                           " (found %s want %s)"
1618
                           % (api_versions, constants.OS_API_VERSION))
1619

    
1620
  # OS Scripts dictionary, we will populate it with the actual script names
1621
  os_scripts = dict.fromkeys(constants.OS_SCRIPTS)
1622

    
1623
  for script in os_scripts:
1624
    os_scripts[script] = os.path.sep.join([os_dir, script])
1625

    
1626
    try:
1627
      st = os.stat(os_scripts[script])
1628
    except EnvironmentError, err:
1629
      raise errors.InvalidOS(name, os_dir, "'%s' script missing (%s)" %
1630
                             (script, _ErrnoOrStr(err)))
1631

    
1632
    if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1633
      raise errors.InvalidOS(name, os_dir, "'%s' script not executable" %
1634
                             script)
1635

    
1636
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1637
      raise errors.InvalidOS(name, os_dir, "'%s' is not a regular file" %
1638
                             script)
1639

    
1640

    
1641
  return objects.OS(name=name, path=os_dir, status=constants.OS_VALID_STATUS,
1642
                    create_script=os_scripts[constants.OS_SCRIPT_CREATE],
1643
                    export_script=os_scripts[constants.OS_SCRIPT_EXPORT],
1644
                    import_script=os_scripts[constants.OS_SCRIPT_IMPORT],
1645
                    rename_script=os_scripts[constants.OS_SCRIPT_RENAME],
1646
                    api_versions=api_versions)
1647

    
1648
def OSEnvironment(instance, debug=0):
1649
  """Calculate the environment for an os script.
1650

1651
  @type instance: L{objects.Instance}
1652
  @param instance: target instance for the os script run
1653
  @type debug: integer
1654
  @param debug: debug level (0 or 1, for OS Api 10)
1655
  @rtype: dict
1656
  @return: dict of environment variables
1657
  @raise errors.BlockDeviceError: if the block device
1658
      cannot be found
1659

1660
  """
1661
  result = {}
1662
  result['OS_API_VERSION'] = '%d' % constants.OS_API_VERSION
1663
  result['INSTANCE_NAME'] = instance.name
1664
  result['INSTANCE_OS'] = instance.os
1665
  result['HYPERVISOR'] = instance.hypervisor
1666
  result['DISK_COUNT'] = '%d' % len(instance.disks)
1667
  result['NIC_COUNT'] = '%d' % len(instance.nics)
1668
  result['DEBUG_LEVEL'] = '%d' % debug
1669
  for idx, disk in enumerate(instance.disks):
1670
    real_disk = _RecursiveFindBD(disk)
1671
    if real_disk is None:
1672
      raise errors.BlockDeviceError("Block device '%s' is not set up" %
1673
                                    str(disk))
1674
    real_disk.Open()
1675
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
1676
    result['DISK_%d_ACCESS' % idx] = disk.mode
1677
    if constants.HV_DISK_TYPE in instance.hvparams:
1678
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
1679
        instance.hvparams[constants.HV_DISK_TYPE]
1680
    if disk.dev_type in constants.LDS_BLOCK:
1681
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
1682
    elif disk.dev_type == constants.LD_FILE:
1683
      result['DISK_%d_BACKEND_TYPE' % idx] = \
1684
        'file:%s' % disk.physical_id[0]
1685
  for idx, nic in enumerate(instance.nics):
1686
    result['NIC_%d_MAC' % idx] = nic.mac
1687
    if nic.ip:
1688
      result['NIC_%d_IP' % idx] = nic.ip
1689
    result['NIC_%d_MODE' % idx] = nic.nicparams[constants.NIC_MODE]
1690
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
1691
      result['NIC_%d_BRIDGE' % idx] = nic.nicparams[constants.NIC_LINK]
1692
    if nic.nicparams[constants.NIC_LINK]:
1693
      result['NIC_%d_LINK' % idx] = nic.nicparams[constants.NIC_LINK]
1694
    if constants.HV_NIC_TYPE in instance.hvparams:
1695
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
1696
        instance.hvparams[constants.HV_NIC_TYPE]
1697

    
1698
  return result
1699

    
1700
def BlockdevGrow(disk, amount):
1701
  """Grow a stack of block devices.
1702

1703
  This function is called recursively, with the childrens being the
1704
  first ones to resize.
1705

1706
  @type disk: L{objects.Disk}
1707
  @param disk: the disk to be grown
1708
  @rtype: (status, result)
1709
  @return: a tuple with the status of the operation
1710
      (True/False), and the errors message if status
1711
      is False
1712

1713
  """
1714
  r_dev = _RecursiveFindBD(disk)
1715
  if r_dev is None:
1716
    return False, "Cannot find block device %s" % (disk,)
1717

    
1718
  try:
1719
    r_dev.Grow(amount)
1720
  except errors.BlockDeviceError, err:
1721
    _Fail("Failed to grow block device: %s", err, exc=True)
1722

    
1723
  return True, None
1724

    
1725

    
1726
def BlockdevSnapshot(disk):
1727
  """Create a snapshot copy of a block device.
1728

1729
  This function is called recursively, and the snapshot is actually created
1730
  just for the leaf lvm backend device.
1731

1732
  @type disk: L{objects.Disk}
1733
  @param disk: the disk to be snapshotted
1734
  @rtype: string
1735
  @return: snapshot disk path
1736

1737
  """
1738
  if disk.children:
1739
    if len(disk.children) == 1:
1740
      # only one child, let's recurse on it
1741
      return BlockdevSnapshot(disk.children[0])
1742
    else:
1743
      # more than one child, choose one that matches
1744
      for child in disk.children:
1745
        if child.size == disk.size:
1746
          # return implies breaking the loop
1747
          return BlockdevSnapshot(child)
1748
  elif disk.dev_type == constants.LD_LV:
1749
    r_dev = _RecursiveFindBD(disk)
1750
    if r_dev is not None:
1751
      # let's stay on the safe side and ask for the full size, for now
1752
      return True, r_dev.Snapshot(disk.size)
1753
    else:
1754
      _Fail("Cannot find block device %s", disk)
1755
  else:
1756
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
1757
          disk.unique_id, disk.dev_type)
1758

    
1759

    
1760
def ExportSnapshot(disk, dest_node, instance, cluster_name, idx):
1761
  """Export a block device snapshot to a remote node.
1762

1763
  @type disk: L{objects.Disk}
1764
  @param disk: the description of the disk to export
1765
  @type dest_node: str
1766
  @param dest_node: the destination node to export to
1767
  @type instance: L{objects.Instance}
1768
  @param instance: the instance object to whom the disk belongs
1769
  @type cluster_name: str
1770
  @param cluster_name: the cluster name, needed for SSH hostalias
1771
  @type idx: int
1772
  @param idx: the index of the disk in the instance's disk list,
1773
      used to export to the OS scripts environment
1774
  @rtype: boolean
1775
  @return: the success of the operation
1776

1777
  """
1778
  export_env = OSEnvironment(instance)
1779

    
1780
  inst_os = OSFromDisk(instance.os)
1781
  export_script = inst_os.export_script
1782

    
1783
  logfile = "%s/exp-%s-%s-%s.log" % (constants.LOG_OS_DIR, inst_os.name,
1784
                                     instance.name, int(time.time()))
1785
  if not os.path.exists(constants.LOG_OS_DIR):
1786
    os.mkdir(constants.LOG_OS_DIR, 0750)
1787
  real_disk = _RecursiveFindBD(disk)
1788
  if real_disk is None:
1789
    _Fail("Block device '%s' is not set up", disk)
1790

    
1791
  real_disk.Open()
1792

    
1793
  export_env['EXPORT_DEVICE'] = real_disk.dev_path
1794
  export_env['EXPORT_INDEX'] = str(idx)
1795

    
1796
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1797
  destfile = disk.physical_id[1]
1798

    
1799
  # the target command is built out of three individual commands,
1800
  # which are joined by pipes; we check each individual command for
1801
  # valid parameters
1802
  expcmd = utils.BuildShellCmd("cd %s; %s 2>%s", inst_os.path,
1803
                               export_script, logfile)
1804

    
1805
  comprcmd = "gzip"
1806

    
1807
  destcmd = utils.BuildShellCmd("mkdir -p %s && cat > %s/%s",
1808
                                destdir, destdir, destfile)
1809
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1810
                                                   constants.GANETI_RUNAS,
1811
                                                   destcmd)
1812

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

    
1816
  result = utils.RunCmd(command, env=export_env)
1817

    
1818
  if result.failed:
1819
    _Fail("OS snapshot export command '%s' returned error: %s"
1820
          " output: %s", command, result.fail_reason, result.output)
1821

    
1822
  return (True, None)
1823

    
1824

    
1825
def FinalizeExport(instance, snap_disks):
1826
  """Write out the export configuration information.
1827

1828
  @type instance: L{objects.Instance}
1829
  @param instance: the instance which we export, used for
1830
      saving configuration
1831
  @type snap_disks: list of L{objects.Disk}
1832
  @param snap_disks: list of snapshot block devices, which
1833
      will be used to get the actual name of the dump file
1834

1835
  @rtype: boolean
1836
  @return: the success of the operation
1837

1838
  """
1839
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1840
  finaldestdir = os.path.join(constants.EXPORT_DIR, instance.name)
1841

    
1842
  config = objects.SerializableConfigParser()
1843

    
1844
  config.add_section(constants.INISECT_EXP)
1845
  config.set(constants.INISECT_EXP, 'version', '0')
1846
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
1847
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
1848
  config.set(constants.INISECT_EXP, 'os', instance.os)
1849
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
1850

    
1851
  config.add_section(constants.INISECT_INS)
1852
  config.set(constants.INISECT_INS, 'name', instance.name)
1853
  config.set(constants.INISECT_INS, 'memory', '%d' %
1854
             instance.beparams[constants.BE_MEMORY])
1855
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
1856
             instance.beparams[constants.BE_VCPUS])
1857
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
1858

    
1859
  nic_total = 0
1860
  for nic_count, nic in enumerate(instance.nics):
1861
    nic_total += 1
1862
    config.set(constants.INISECT_INS, 'nic%d_mac' %
1863
               nic_count, '%s' % nic.mac)
1864
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
1865
    config.set(constants.INISECT_INS, 'nic%d_bridge' % nic_count,
1866
               '%s' % nic.bridge)
1867
  # TODO: redundant: on load can read nics until it doesn't exist
1868
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_total)
1869

    
1870
  disk_total = 0
1871
  for disk_count, disk in enumerate(snap_disks):
1872
    if disk:
1873
      disk_total += 1
1874
      config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
1875
                 ('%s' % disk.iv_name))
1876
      config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
1877
                 ('%s' % disk.physical_id[1]))
1878
      config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
1879
                 ('%d' % disk.size))
1880

    
1881
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_total)
1882

    
1883
  utils.WriteFile(os.path.join(destdir, constants.EXPORT_CONF_FILE),
1884
                  data=config.Dumps())
1885
  shutil.rmtree(finaldestdir, True)
1886
  shutil.move(destdir, finaldestdir)
1887

    
1888
  return True, None
1889

    
1890

    
1891
def ExportInfo(dest):
1892
  """Get export configuration information.
1893

1894
  @type dest: str
1895
  @param dest: directory containing the export
1896

1897
  @rtype: L{objects.SerializableConfigParser}
1898
  @return: a serializable config file containing the
1899
      export info
1900

1901
  """
1902
  cff = os.path.join(dest, constants.EXPORT_CONF_FILE)
1903

    
1904
  config = objects.SerializableConfigParser()
1905
  config.read(cff)
1906

    
1907
  if (not config.has_section(constants.INISECT_EXP) or
1908
      not config.has_section(constants.INISECT_INS)):
1909
    _Fail("Export info file doesn't have the required fields")
1910

    
1911
  return True, config.Dumps()
1912

    
1913

    
1914
def ImportOSIntoInstance(instance, src_node, src_images, cluster_name):
1915
  """Import an os image into an instance.
1916

1917
  @type instance: L{objects.Instance}
1918
  @param instance: instance to import the disks into
1919
  @type src_node: string
1920
  @param src_node: source node for the disk images
1921
  @type src_images: list of string
1922
  @param src_images: absolute paths of the disk images
1923
  @rtype: list of boolean
1924
  @return: each boolean represent the success of importing the n-th disk
1925

1926
  """
1927
  import_env = OSEnvironment(instance)
1928
  inst_os = OSFromDisk(instance.os)
1929
  import_script = inst_os.import_script
1930

    
1931
  logfile = "%s/import-%s-%s-%s.log" % (constants.LOG_OS_DIR, instance.os,
1932
                                        instance.name, int(time.time()))
1933
  if not os.path.exists(constants.LOG_OS_DIR):
1934
    os.mkdir(constants.LOG_OS_DIR, 0750)
1935

    
1936
  comprcmd = "gunzip"
1937
  impcmd = utils.BuildShellCmd("(cd %s; %s >%s 2>&1)", inst_os.path,
1938
                               import_script, logfile)
1939

    
1940
  final_result = []
1941
  for idx, image in enumerate(src_images):
1942
    if image:
1943
      destcmd = utils.BuildShellCmd('cat %s', image)
1944
      remotecmd = _GetSshRunner(cluster_name).BuildCmd(src_node,
1945
                                                       constants.GANETI_RUNAS,
1946
                                                       destcmd)
1947
      command = '|'.join([utils.ShellQuoteArgs(remotecmd), comprcmd, impcmd])
1948
      import_env['IMPORT_DEVICE'] = import_env['DISK_%d_PATH' % idx]
1949
      import_env['IMPORT_INDEX'] = str(idx)
1950
      result = utils.RunCmd(command, env=import_env)
1951
      if result.failed:
1952
        logging.error("Disk import command '%s' returned error: %s"
1953
                      " output: %s", command, result.fail_reason,
1954
                      result.output)
1955
        final_result.append("error importing disk %d: %s, %s" %
1956
                            (idx, result.fail_reason, result.output[-100]))
1957

    
1958
  if final_result:
1959
    return False, "; ".join(final_result)
1960
  return True, None
1961

    
1962

    
1963
def ListExports():
1964
  """Return a list of exports currently available on this machine.
1965

1966
  @rtype: list
1967
  @return: list of the exports
1968

1969
  """
1970
  if os.path.isdir(constants.EXPORT_DIR):
1971
    return True, utils.ListVisibleFiles(constants.EXPORT_DIR)
1972
  else:
1973
    return False, "No exports directory"
1974

    
1975

    
1976
def RemoveExport(export):
1977
  """Remove an existing export from the node.
1978

1979
  @type export: str
1980
  @param export: the name of the export to remove
1981
  @rtype: boolean
1982
  @return: the success of the operation
1983

1984
  """
1985
  target = os.path.join(constants.EXPORT_DIR, export)
1986

    
1987
  try:
1988
    shutil.rmtree(target)
1989
  except EnvironmentError, err:
1990
    _Fail("Error while removing the export: %s", err, exc=True)
1991

    
1992
  return True, None
1993

    
1994

    
1995
def BlockdevRename(devlist):
1996
  """Rename a list of block devices.
1997

1998
  @type devlist: list of tuples
1999
  @param devlist: list of tuples of the form  (disk,
2000
      new_logical_id, new_physical_id); disk is an
2001
      L{objects.Disk} object describing the current disk,
2002
      and new logical_id/physical_id is the name we
2003
      rename it to
2004
  @rtype: boolean
2005
  @return: True if all renames succeeded, False otherwise
2006

2007
  """
2008
  msgs = []
2009
  result = True
2010
  for disk, unique_id in devlist:
2011
    dev = _RecursiveFindBD(disk)
2012
    if dev is None:
2013
      msgs.append("Can't find device %s in rename" % str(disk))
2014
      result = False
2015
      continue
2016
    try:
2017
      old_rpath = dev.dev_path
2018
      dev.Rename(unique_id)
2019
      new_rpath = dev.dev_path
2020
      if old_rpath != new_rpath:
2021
        DevCacheManager.RemoveCache(old_rpath)
2022
        # FIXME: we should add the new cache information here, like:
2023
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2024
        # but we don't have the owner here - maybe parse from existing
2025
        # cache? for now, we only lose lvm data when we rename, which
2026
        # is less critical than DRBD or MD
2027
    except errors.BlockDeviceError, err:
2028
      msgs.append("Can't rename device '%s' to '%s': %s" %
2029
                  (dev, unique_id, err))
2030
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2031
      result = False
2032
  return (result, "; ".join(msgs))
2033

    
2034

    
2035
def _TransformFileStorageDir(file_storage_dir):
2036
  """Checks whether given file_storage_dir is valid.
2037

2038
  Checks wheter the given file_storage_dir is within the cluster-wide
2039
  default file_storage_dir stored in SimpleStore. Only paths under that
2040
  directory are allowed.
2041

2042
  @type file_storage_dir: str
2043
  @param file_storage_dir: the path to check
2044

2045
  @return: the normalized path if valid, None otherwise
2046

2047
  """
2048
  cfg = _GetConfig()
2049
  file_storage_dir = os.path.normpath(file_storage_dir)
2050
  base_file_storage_dir = cfg.GetFileStorageDir()
2051
  if (not os.path.commonprefix([file_storage_dir, base_file_storage_dir]) ==
2052
      base_file_storage_dir):
2053
    _Fail("File storage directory '%s' is not under base file"
2054
          " storage directory '%s'", file_storage_dir, base_file_storage_dir)
2055
  return file_storage_dir
2056

    
2057

    
2058
def CreateFileStorageDir(file_storage_dir):
2059
  """Create file storage directory.
2060

2061
  @type file_storage_dir: str
2062
  @param file_storage_dir: directory to create
2063

2064
  @rtype: tuple
2065
  @return: tuple with first element a boolean indicating wheter dir
2066
      creation was successful or not
2067

2068
  """
2069
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2070
  if os.path.exists(file_storage_dir):
2071
    if not os.path.isdir(file_storage_dir):
2072
      _Fail("Specified storage dir '%s' is not a directory",
2073
            file_storage_dir)
2074
  else:
2075
    try:
2076
      os.makedirs(file_storage_dir, 0750)
2077
    except OSError, err:
2078
      _Fail("Cannot create file storage directory '%s': %s",
2079
            file_storage_dir, err, exc=True)
2080
  return True, None
2081

    
2082

    
2083
def RemoveFileStorageDir(file_storage_dir):
2084
  """Remove file storage directory.
2085

2086
  Remove it only if it's empty. If not log an error and return.
2087

2088
  @type file_storage_dir: str
2089
  @param file_storage_dir: the directory we should cleanup
2090
  @rtype: tuple (success,)
2091
  @return: tuple of one element, C{success}, denoting
2092
      whether the operation was successfull
2093

2094
  """
2095
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2096
  if os.path.exists(file_storage_dir):
2097
    if not os.path.isdir(file_storage_dir):
2098
      _Fail("Specified Storage directory '%s' is not a directory",
2099
            file_storage_dir)
2100
    # deletes dir only if empty, otherwise we want to return False
2101
    try:
2102
      os.rmdir(file_storage_dir)
2103
    except OSError, err:
2104
      _Fail("Cannot remove file storage directory '%s': %s",
2105
            file_storage_dir, err)
2106

    
2107
  return True, None
2108

    
2109

    
2110
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2111
  """Rename the file storage directory.
2112

2113
  @type old_file_storage_dir: str
2114
  @param old_file_storage_dir: the current path
2115
  @type new_file_storage_dir: str
2116
  @param new_file_storage_dir: the name we should rename to
2117
  @rtype: tuple (success,)
2118
  @return: tuple of one element, C{success}, denoting
2119
      whether the operation was successful
2120

2121
  """
2122
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2123
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2124
  if not os.path.exists(new_file_storage_dir):
2125
    if os.path.isdir(old_file_storage_dir):
2126
      try:
2127
        os.rename(old_file_storage_dir, new_file_storage_dir)
2128
      except OSError, err:
2129
        _Fail("Cannot rename '%s' to '%s': %s",
2130
              old_file_storage_dir, new_file_storage_dir, err)
2131
    else:
2132
      _Fail("Specified storage dir '%s' is not a directory",
2133
            old_file_storage_dir)
2134
  else:
2135
    if os.path.exists(old_file_storage_dir):
2136
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2137
            old_file_storage_dir, new_file_storage_dir)
2138
  return True, None
2139

    
2140

    
2141
def _IsJobQueueFile(file_name):
2142
  """Checks whether the given filename is in the queue directory.
2143

2144
  @type file_name: str
2145
  @param file_name: the file name we should check
2146
  @rtype: boolean
2147
  @return: whether the file is under the queue directory
2148

2149
  """
2150
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2151
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2152

    
2153
  if not result:
2154
    logging.error("'%s' is not a file in the queue directory",
2155
                  file_name)
2156

    
2157
  return result
2158

    
2159

    
2160
def JobQueueUpdate(file_name, content):
2161
  """Updates a file in the queue directory.
2162

2163
  This is just a wrapper over L{utils.WriteFile}, with proper
2164
  checking.
2165

2166
  @type file_name: str
2167
  @param file_name: the job file name
2168
  @type content: str
2169
  @param content: the new job contents
2170
  @rtype: boolean
2171
  @return: the success of the operation
2172

2173
  """
2174
  if not _IsJobQueueFile(file_name):
2175
    return False
2176

    
2177
  # Write and replace the file atomically
2178
  utils.WriteFile(file_name, data=_Decompress(content))
2179

    
2180
  return True
2181

    
2182

    
2183
def JobQueueRename(old, new):
2184
  """Renames a job queue file.
2185

2186
  This is just a wrapper over os.rename with proper checking.
2187

2188
  @type old: str
2189
  @param old: the old (actual) file name
2190
  @type new: str
2191
  @param new: the desired file name
2192
  @rtype: boolean
2193
  @return: the success of the operation
2194

2195
  """
2196
  if not (_IsJobQueueFile(old) and _IsJobQueueFile(new)):
2197
    return False
2198

    
2199
  utils.RenameFile(old, new, mkdir=True)
2200

    
2201
  return True
2202

    
2203

    
2204
def JobQueueSetDrainFlag(drain_flag):
2205
  """Set the drain flag for the queue.
2206

2207
  This will set or unset the queue drain flag.
2208

2209
  @type drain_flag: boolean
2210
  @param drain_flag: if True, will set the drain flag, otherwise reset it.
2211
  @rtype: boolean
2212
  @return: always True
2213
  @warning: the function always returns True
2214

2215
  """
2216
  if drain_flag:
2217
    utils.WriteFile(constants.JOB_QUEUE_DRAIN_FILE, data="", close=True)
2218
  else:
2219
    utils.RemoveFile(constants.JOB_QUEUE_DRAIN_FILE)
2220

    
2221
  return True
2222

    
2223

    
2224
def BlockdevClose(instance_name, disks):
2225
  """Closes the given block devices.
2226

2227
  This means they will be switched to secondary mode (in case of
2228
  DRBD).
2229

2230
  @param instance_name: if the argument is not empty, the symlinks
2231
      of this instance will be removed
2232
  @type disks: list of L{objects.Disk}
2233
  @param disks: the list of disks to be closed
2234
  @rtype: tuple (success, message)
2235
  @return: a tuple of success and message, where success
2236
      indicates the succes of the operation, and message
2237
      which will contain the error details in case we
2238
      failed
2239

2240
  """
2241
  bdevs = []
2242
  for cf in disks:
2243
    rd = _RecursiveFindBD(cf)
2244
    if rd is None:
2245
      _Fail("Can't find device %s", cf)
2246
    bdevs.append(rd)
2247

    
2248
  msg = []
2249
  for rd in bdevs:
2250
    try:
2251
      rd.Close()
2252
    except errors.BlockDeviceError, err:
2253
      msg.append(str(err))
2254
  if msg:
2255
    return (False, "Can't make devices secondary: %s" % ",".join(msg))
2256
  else:
2257
    if instance_name:
2258
      _RemoveBlockDevLinks(instance_name, disks)
2259
    return (True, "All devices secondary")
2260

    
2261

    
2262
def ValidateHVParams(hvname, hvparams):
2263
  """Validates the given hypervisor parameters.
2264

2265
  @type hvname: string
2266
  @param hvname: the hypervisor name
2267
  @type hvparams: dict
2268
  @param hvparams: the hypervisor parameters to be validated
2269
  @rtype: tuple (success, message)
2270
  @return: a tuple of success and message, where success
2271
      indicates the succes of the operation, and message
2272
      which will contain the error details in case we
2273
      failed
2274

2275
  """
2276
  try:
2277
    hv_type = hypervisor.GetHypervisor(hvname)
2278
    hv_type.ValidateParameters(hvparams)
2279
    return (True, "Validation passed")
2280
  except errors.HypervisorError, err:
2281
    return (False, str(err))
2282

    
2283

    
2284
def DemoteFromMC():
2285
  """Demotes the current node from master candidate role.
2286

2287
  """
2288
  # try to ensure we're not the master by mistake
2289
  master, myself = ssconf.GetMasterAndMyself()
2290
  if master == myself:
2291
    return (False, "ssconf status shows I'm the master node, will not demote")
2292
  pid_file = utils.DaemonPidFileName(constants.MASTERD_PID)
2293
  if utils.IsProcessAlive(utils.ReadPidFile(pid_file)):
2294
    return (False, "The master daemon is running, will not demote")
2295
  try:
2296
    utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2297
  except EnvironmentError, err:
2298
    if err.errno != errno.ENOENT:
2299
      return (False, "Error while backing up cluster file: %s" % str(err))
2300
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2301
  return (True, "Done")
2302

    
2303

    
2304
def _FindDisks(nodes_ip, disks):
2305
  """Sets the physical ID on disks and returns the block devices.
2306

2307
  """
2308
  # set the correct physical ID
2309
  my_name = utils.HostInfo().name
2310
  for cf in disks:
2311
    cf.SetPhysicalID(my_name, nodes_ip)
2312

    
2313
  bdevs = []
2314

    
2315
  for cf in disks:
2316
    rd = _RecursiveFindBD(cf)
2317
    if rd is None:
2318
      return (False, "Can't find device %s" % cf)
2319
    bdevs.append(rd)
2320
  return (True, bdevs)
2321

    
2322

    
2323
def DrbdDisconnectNet(nodes_ip, disks):
2324
  """Disconnects the network on a list of drbd devices.
2325

2326
  """
2327
  status, bdevs = _FindDisks(nodes_ip, disks)
2328
  if not status:
2329
    return status, bdevs
2330

    
2331
  # disconnect disks
2332
  for rd in bdevs:
2333
    try:
2334
      rd.DisconnectNet()
2335
    except errors.BlockDeviceError, err:
2336
      _Fail("Can't change network configuration to standalone mode: %s",
2337
            err, exc=True)
2338
  return (True, "All disks are now disconnected")
2339

    
2340

    
2341
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
2342
  """Attaches the network on a list of drbd devices.
2343

2344
  """
2345
  status, bdevs = _FindDisks(nodes_ip, disks)
2346
  if not status:
2347
    return status, bdevs
2348

    
2349
  if multimaster:
2350
    for idx, rd in enumerate(bdevs):
2351
      try:
2352
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
2353
      except EnvironmentError, err:
2354
        _Fail("Can't create symlink: %s", err)
2355
  # reconnect disks, switch to new master configuration and if
2356
  # needed primary mode
2357
  for rd in bdevs:
2358
    try:
2359
      rd.AttachNet(multimaster)
2360
    except errors.BlockDeviceError, err:
2361
      _Fail("Can't change network configuration: %s", err)
2362
  # wait until the disks are connected; we need to retry the re-attach
2363
  # if the device becomes standalone, as this might happen if the one
2364
  # node disconnects and reconnects in a different mode before the
2365
  # other node reconnects; in this case, one or both of the nodes will
2366
  # decide it has wrong configuration and switch to standalone
2367
  RECONNECT_TIMEOUT = 2 * 60
2368
  sleep_time = 0.100 # start with 100 miliseconds
2369
  timeout_limit = time.time() + RECONNECT_TIMEOUT
2370
  while time.time() < timeout_limit:
2371
    all_connected = True
2372
    for rd in bdevs:
2373
      stats = rd.GetProcStatus()
2374
      if not (stats.is_connected or stats.is_in_resync):
2375
        all_connected = False
2376
      if stats.is_standalone:
2377
        # peer had different config info and this node became
2378
        # standalone, even though this should not happen with the
2379
        # new staged way of changing disk configs
2380
        try:
2381
          rd.ReAttachNet(multimaster)
2382
        except errors.BlockDeviceError, err:
2383
          _Fail("Can't change network configuration: %s", err)
2384
    if all_connected:
2385
      break
2386
    time.sleep(sleep_time)
2387
    sleep_time = min(5, sleep_time * 1.5)
2388
  if not all_connected:
2389
    return (False, "Timeout in disk reconnecting")
2390
  if multimaster:
2391
    # change to primary mode
2392
    for rd in bdevs:
2393
      try:
2394
        rd.Open()
2395
      except errors.BlockDeviceError, err:
2396
        _Fail("Can't change to primary mode: %s", err)
2397
  if multimaster:
2398
    msg = "multi-master and primary"
2399
  else:
2400
    msg = "single-master"
2401
  return (True, "Disks are now configured as %s" % msg)
2402

    
2403

    
2404
def DrbdWaitSync(nodes_ip, disks):
2405
  """Wait until DRBDs have synchronized.
2406

2407
  """
2408
  status, bdevs = _FindDisks(nodes_ip, disks)
2409
  if not status:
2410
    return status, bdevs
2411

    
2412
  min_resync = 100
2413
  alldone = True
2414
  failure = False
2415
  for rd in bdevs:
2416
    stats = rd.GetProcStatus()
2417
    if not (stats.is_connected or stats.is_in_resync):
2418
      failure = True
2419
      break
2420
    alldone = alldone and (not stats.is_in_resync)
2421
    if stats.sync_percent is not None:
2422
      min_resync = min(min_resync, stats.sync_percent)
2423
  return (not failure, (alldone, min_resync))
2424

    
2425

    
2426
def PowercycleNode(hypervisor_type):
2427
  """Hard-powercycle the node.
2428

2429
  Because we need to return first, and schedule the powercycle in the
2430
  background, we won't be able to report failures nicely.
2431

2432
  """
2433
  hyper = hypervisor.GetHypervisor(hypervisor_type)
2434
  try:
2435
    pid = os.fork()
2436
  except OSError, err:
2437
    # if we can't fork, we'll pretend that we're in the child process
2438
    pid = 0
2439
  if pid > 0:
2440
    return (True, "Reboot scheduled in 5 seconds")
2441
  time.sleep(5)
2442
  hyper.PowercycleNode()
2443

    
2444

    
2445
class HooksRunner(object):
2446
  """Hook runner.
2447

2448
  This class is instantiated on the node side (ganeti-noded) and not
2449
  on the master side.
2450

2451
  """
2452
  RE_MASK = re.compile("^[a-zA-Z0-9_-]+$")
2453

    
2454
  def __init__(self, hooks_base_dir=None):
2455
    """Constructor for hooks runner.
2456

2457
    @type hooks_base_dir: str or None
2458
    @param hooks_base_dir: if not None, this overrides the
2459
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
2460

2461
    """
2462
    if hooks_base_dir is None:
2463
      hooks_base_dir = constants.HOOKS_BASE_DIR
2464
    self._BASE_DIR = hooks_base_dir
2465

    
2466
  @staticmethod
2467
  def ExecHook(script, env):
2468
    """Exec one hook script.
2469

2470
    @type script: str
2471
    @param script: the full path to the script
2472
    @type env: dict
2473
    @param env: the environment with which to exec the script
2474
    @rtype: tuple (success, message)
2475
    @return: a tuple of success and message, where success
2476
        indicates the succes of the operation, and message
2477
        which will contain the error details in case we
2478
        failed
2479

2480
    """
2481
    # exec the process using subprocess and log the output
2482
    fdstdin = None
2483
    try:
2484
      fdstdin = open("/dev/null", "r")
2485
      child = subprocess.Popen([script], stdin=fdstdin, stdout=subprocess.PIPE,
2486
                               stderr=subprocess.STDOUT, close_fds=True,
2487
                               shell=False, cwd="/", env=env)
2488
      output = ""
2489
      try:
2490
        output = child.stdout.read(4096)
2491
        child.stdout.close()
2492
      except EnvironmentError, err:
2493
        output += "Hook script error: %s" % str(err)
2494

    
2495
      while True:
2496
        try:
2497
          result = child.wait()
2498
          break
2499
        except EnvironmentError, err:
2500
          if err.errno == errno.EINTR:
2501
            continue
2502
          raise
2503
    finally:
2504
      # try not to leak fds
2505
      for fd in (fdstdin, ):
2506
        if fd is not None:
2507
          try:
2508
            fd.close()
2509
          except EnvironmentError, err:
2510
            # just log the error
2511
            #logging.exception("Error while closing fd %s", fd)
2512
            pass
2513

    
2514
    return result == 0, utils.SafeEncode(output.strip())
2515

    
2516
  def RunHooks(self, hpath, phase, env):
2517
    """Run the scripts in the hooks directory.
2518

2519
    @type hpath: str
2520
    @param hpath: the path to the hooks directory which
2521
        holds the scripts
2522
    @type phase: str
2523
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
2524
        L{constants.HOOKS_PHASE_POST}
2525
    @type env: dict
2526
    @param env: dictionary with the environment for the hook
2527
    @rtype: list
2528
    @return: list of 3-element tuples:
2529
      - script path
2530
      - script result, either L{constants.HKR_SUCCESS} or
2531
        L{constants.HKR_FAIL}
2532
      - output of the script
2533

2534
    @raise errors.ProgrammerError: for invalid input
2535
        parameters
2536

2537
    """
2538
    if phase == constants.HOOKS_PHASE_PRE:
2539
      suffix = "pre"
2540
    elif phase == constants.HOOKS_PHASE_POST:
2541
      suffix = "post"
2542
    else:
2543
      _Fail("Unknown hooks phase '%s'", phase)
2544

    
2545
    rr = []
2546

    
2547
    subdir = "%s-%s.d" % (hpath, suffix)
2548
    dir_name = "%s/%s" % (self._BASE_DIR, subdir)
2549
    try:
2550
      dir_contents = utils.ListVisibleFiles(dir_name)
2551
    except OSError, err:
2552
      # FIXME: must log output in case of failures
2553
      return True, rr
2554

    
2555
    # we use the standard python sort order,
2556
    # so 00name is the recommended naming scheme
2557
    dir_contents.sort()
2558
    for relname in dir_contents:
2559
      fname = os.path.join(dir_name, relname)
2560
      if not (os.path.isfile(fname) and os.access(fname, os.X_OK) and
2561
          self.RE_MASK.match(relname) is not None):
2562
        rrval = constants.HKR_SKIP
2563
        output = ""
2564
      else:
2565
        result, output = self.ExecHook(fname, env)
2566
        if not result:
2567
          rrval = constants.HKR_FAIL
2568
        else:
2569
          rrval = constants.HKR_SUCCESS
2570
      rr.append(("%s/%s" % (subdir, relname), rrval, output))
2571

    
2572
    return True, rr
2573

    
2574

    
2575
class IAllocatorRunner(object):
2576
  """IAllocator runner.
2577

2578
  This class is instantiated on the node side (ganeti-noded) and not on
2579
  the master side.
2580

2581
  """
2582
  def Run(self, name, idata):
2583
    """Run an iallocator script.
2584

2585
    @type name: str
2586
    @param name: the iallocator script name
2587
    @type idata: str
2588
    @param idata: the allocator input data
2589

2590
    @rtype: tuple
2591
    @return: two element tuple of:
2592
       - status
2593
       - either error message or stdout of allocator (for success)
2594

2595
    """
2596
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
2597
                                  os.path.isfile)
2598
    if alloc_script is None:
2599
      _Fail("iallocator module '%s' not found in the search path", name)
2600

    
2601
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
2602
    try:
2603
      os.write(fd, idata)
2604
      os.close(fd)
2605
      result = utils.RunCmd([alloc_script, fin_name])
2606
      if result.failed:
2607
        _Fail("iallocator module '%s' failed: %s, output '%s'",
2608
              name, result.fail_reason, result.output)
2609
    finally:
2610
      os.unlink(fin_name)
2611

    
2612
    return True, result.stdout
2613

    
2614

    
2615
class DevCacheManager(object):
2616
  """Simple class for managing a cache of block device information.
2617

2618
  """
2619
  _DEV_PREFIX = "/dev/"
2620
  _ROOT_DIR = constants.BDEV_CACHE_DIR
2621

    
2622
  @classmethod
2623
  def _ConvertPath(cls, dev_path):
2624
    """Converts a /dev/name path to the cache file name.
2625

2626
    This replaces slashes with underscores and strips the /dev
2627
    prefix. It then returns the full path to the cache file.
2628

2629
    @type dev_path: str
2630
    @param dev_path: the C{/dev/} path name
2631
    @rtype: str
2632
    @return: the converted path name
2633

2634
    """
2635
    if dev_path.startswith(cls._DEV_PREFIX):
2636
      dev_path = dev_path[len(cls._DEV_PREFIX):]
2637
    dev_path = dev_path.replace("/", "_")
2638
    fpath = "%s/bdev_%s" % (cls._ROOT_DIR, dev_path)
2639
    return fpath
2640

    
2641
  @classmethod
2642
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
2643
    """Updates the cache information for a given device.
2644

2645
    @type dev_path: str
2646
    @param dev_path: the pathname of the device
2647
    @type owner: str
2648
    @param owner: the owner (instance name) of the device
2649
    @type on_primary: bool
2650
    @param on_primary: whether this is the primary
2651
        node nor not
2652
    @type iv_name: str
2653
    @param iv_name: the instance-visible name of the
2654
        device, as in objects.Disk.iv_name
2655

2656
    @rtype: None
2657

2658
    """
2659
    if dev_path is None:
2660
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
2661
      return
2662
    fpath = cls._ConvertPath(dev_path)
2663
    if on_primary:
2664
      state = "primary"
2665
    else:
2666
      state = "secondary"
2667
    if iv_name is None:
2668
      iv_name = "not_visible"
2669
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
2670
    try:
2671
      utils.WriteFile(fpath, data=fdata)
2672
    except EnvironmentError, err:
2673
      logging.exception("Can't update bdev cache for %s", dev_path)
2674

    
2675
  @classmethod
2676
  def RemoveCache(cls, dev_path):
2677
    """Remove data for a dev_path.
2678

2679
    This is just a wrapper over L{utils.RemoveFile} with a converted
2680
    path name and logging.
2681

2682
    @type dev_path: str
2683
    @param dev_path: the pathname of the device
2684

2685
    @rtype: None
2686

2687
    """
2688
    if dev_path is None:
2689
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
2690
      return
2691
    fpath = cls._ConvertPath(dev_path)
2692
    try:
2693
      utils.RemoveFile(fpath)
2694
    except EnvironmentError, err:
2695
      logging.exception("Can't update bdev cache for %s", dev_path)