Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ d8260842

History | View | Annotate | Download (81.2 kB)

1
#
2
#
3

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

    
21

    
22
"""Functions used by the node daemon
23

24
@var _ALLOWED_UPLOAD_FILES: denotes which files are accepted in
25
     the L{UploadFile} function
26

27
"""
28

    
29

    
30
import os
31
import os.path
32
import shutil
33
import time
34
import stat
35
import errno
36
import re
37
import subprocess
38
import random
39
import logging
40
import tempfile
41
import zlib
42
import base64
43

    
44
from ganeti import errors
45
from ganeti import utils
46
from ganeti import ssh
47
from ganeti import hypervisor
48
from ganeti import constants
49
from ganeti import bdev
50
from ganeti import objects
51
from ganeti import ssconf
52

    
53

    
54
class RPCFail(Exception):
55
  """Class denoting RPC failure.
56

57
  Its argument is the error message.
58

59
  """
60

    
61
def _Fail(msg, *args, **kwargs):
62
  """Log an error and the raise an RPCFail exception.
63

64
  This exception is then handled specially in the ganeti daemon and
65
  turned into a 'failed' return type. As such, this function is a
66
  useful shortcut for logging the error and returning it to the master
67
  daemon.
68

69
  @type msg: string
70
  @param msg: the text of the exception
71
  @raise RPCFail
72

73
  """
74
  if args:
75
    msg = msg % args
76
  if "log" not in kwargs or kwargs["log"]: # if we should log this error
77
    if "exc" in kwargs and kwargs["exc"]:
78
      logging.exception(msg)
79
    else:
80
      logging.error(msg)
81
  raise RPCFail(msg)
82

    
83

    
84
def _GetConfig():
85
  """Simple wrapper to return a SimpleStore.
86

87
  @rtype: L{ssconf.SimpleStore}
88
  @return: a SimpleStore instance
89

90
  """
91
  return ssconf.SimpleStore()
92

    
93

    
94
def _GetSshRunner(cluster_name):
95
  """Simple wrapper to return an SshRunner.
96

97
  @type cluster_name: str
98
  @param cluster_name: the cluster name, which is needed
99
      by the SshRunner constructor
100
  @rtype: L{ssh.SshRunner}
101
  @return: an SshRunner instance
102

103
  """
104
  return ssh.SshRunner(cluster_name)
105

    
106

    
107
def _Decompress(data):
108
  """Unpacks data compressed by the RPC client.
109

110
  @type data: list or tuple
111
  @param data: Data sent by RPC client
112
  @rtype: str
113
  @return: Decompressed data
114

115
  """
116
  assert isinstance(data, (list, tuple))
117
  assert len(data) == 2
118
  (encoding, content) = data
119
  if encoding == constants.RPC_ENCODING_NONE:
120
    return content
121
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
122
    return zlib.decompress(base64.b64decode(content))
123
  else:
124
    raise AssertionError("Unknown data encoding")
125

    
126

    
127
def _CleanDirectory(path, exclude=None):
128
  """Removes all regular files in a directory.
129

130
  @type path: str
131
  @param path: the directory to clean
132
  @type exclude: list
133
  @param exclude: list of files to be excluded, defaults
134
      to the empty list
135

136
  """
137
  if not os.path.isdir(path):
138
    return
139
  if exclude is None:
140
    exclude = []
141
  else:
142
    # Normalize excluded paths
143
    exclude = [os.path.normpath(i) for i in exclude]
144

    
145
  for rel_name in utils.ListVisibleFiles(path):
146
    full_name = os.path.normpath(os.path.join(path, rel_name))
147
    if full_name in exclude:
148
      continue
149
    if os.path.isfile(full_name) and not os.path.islink(full_name):
150
      utils.RemoveFile(full_name)
151

    
152

    
153
def _BuildUploadFileList():
154
  """Build the list of allowed upload files.
155

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

158
  """
159
  allowed_files = set([
160
    constants.CLUSTER_CONF_FILE,
161
    constants.ETC_HOSTS,
162
    constants.SSH_KNOWN_HOSTS_FILE,
163
    constants.VNC_PASSWORD_FILE,
164
    constants.RAPI_CERT_FILE,
165
    constants.RAPI_USERS_FILE,
166
    constants.HMAC_CLUSTER_KEY,
167
    ])
168

    
169
  for hv_name in constants.HYPER_TYPES:
170
    hv_class = hypervisor.GetHypervisorClass(hv_name)
171
    allowed_files.update(hv_class.GetAncillaryFiles())
172

    
173
  return frozenset(allowed_files)
174

    
175

    
176
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
177

    
178

    
179
def JobQueuePurge():
180
  """Removes job queue files and archived jobs.
181

182
  @rtype: tuple
183
  @return: True, None
184

185
  """
186
  _CleanDirectory(constants.QUEUE_DIR, exclude=[constants.JOB_QUEUE_LOCK_FILE])
187
  _CleanDirectory(constants.JOB_QUEUE_ARCHIVE_DIR)
188

    
189

    
190
def GetMasterInfo():
191
  """Returns master information.
192

193
  This is an utility function to compute master information, either
194
  for consumption here or from the node daemon.
195

196
  @rtype: tuple
197
  @return: master_netdev, master_ip, master_name
198
  @raise RPCFail: in case of errors
199

200
  """
201
  try:
202
    cfg = _GetConfig()
203
    master_netdev = cfg.GetMasterNetdev()
204
    master_ip = cfg.GetMasterIP()
205
    master_node = cfg.GetMasterNode()
206
  except errors.ConfigurationError, err:
207
    _Fail("Cluster configuration incomplete: %s", err, exc=True)
208
  return (master_netdev, master_ip, master_node)
209

    
210

    
211
def StartMaster(start_daemons, no_voting):
212
  """Activate local node as master node.
213

214
  The function will always try activate the IP address of the master
215
  (unless someone else has it). It will also start the master daemons,
216
  based on the start_daemons parameter.
217

218
  @type start_daemons: boolean
219
  @param start_daemons: whether to also start the master
220
      daemons (ganeti-masterd and ganeti-rapi)
221
  @type no_voting: boolean
222
  @param no_voting: whether to start ganeti-masterd without a node vote
223
      (if start_daemons is True), but still non-interactively
224
  @rtype: None
225

226
  """
227
  # GetMasterInfo will raise an exception if not able to return data
228
  master_netdev, master_ip, _ = GetMasterInfo()
229

    
230
  err_msgs = []
231
  if utils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
232
    if utils.OwnIpAddress(master_ip):
233
      # we already have the ip:
234
      logging.debug("Master IP already configured, doing nothing")
235
    else:
236
      msg = "Someone else has the master ip, not activating"
237
      logging.error(msg)
238
      err_msgs.append(msg)
239
  else:
240
    result = utils.RunCmd(["ip", "address", "add", "%s/32" % master_ip,
241
                           "dev", master_netdev, "label",
242
                           "%s:0" % master_netdev])
243
    if result.failed:
244
      msg = "Can't activate master IP: %s" % result.output
245
      logging.error(msg)
246
      err_msgs.append(msg)
247

    
248
    result = utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev,
249
                           "-s", master_ip, master_ip])
250
    # we'll ignore the exit code of arping
251

    
252
  # and now start the master and rapi daemons
253
  if start_daemons:
254
    daemons_params = {
255
        'ganeti-masterd': [],
256
        'ganeti-rapi': [],
257
        }
258
    if no_voting:
259
      daemons_params['ganeti-masterd'].append('--no-voting')
260
      daemons_params['ganeti-masterd'].append('--yes-do-it')
261
    for daemon in daemons_params:
262
      cmd = [daemon]
263
      cmd.extend(daemons_params[daemon])
264
      result = utils.RunCmd(cmd)
265
      if result.failed:
266
        msg = "Can't start daemon %s: %s" % (daemon, result.output)
267
        logging.error(msg)
268
        err_msgs.append(msg)
269

    
270
  if err_msgs:
271
    _Fail("; ".join(err_msgs))
272

    
273

    
274
def StopMaster(stop_daemons):
275
  """Deactivate this node as master.
276

277
  The function will always try to deactivate the IP address of the
278
  master. It will also stop the master daemons depending on the
279
  stop_daemons parameter.
280

281
  @type stop_daemons: boolean
282
  @param stop_daemons: whether to also stop the master daemons
283
      (ganeti-masterd and ganeti-rapi)
284
  @rtype: None
285

286
  """
287
  # TODO: log and report back to the caller the error failures; we
288
  # need to decide in which case we fail the RPC for this
289

    
290
  # GetMasterInfo will raise an exception if not able to return data
291
  master_netdev, master_ip, _ = GetMasterInfo()
292

    
293
  result = utils.RunCmd(["ip", "address", "del", "%s/32" % master_ip,
294
                         "dev", master_netdev])
295
  if result.failed:
296
    logging.error("Can't remove the master IP, error: %s", result.output)
297
    # but otherwise ignore the failure
298

    
299
  if stop_daemons:
300
    # stop/kill the rapi and the master daemon
301
    for daemon in constants.RAPI, constants.MASTERD:
302
      utils.KillProcess(utils.ReadPidFile(utils.DaemonPidFileName(daemon)))
303

    
304

    
305
def AddNode(dsa, dsapub, rsa, rsapub, sshkey, sshpub):
306
  """Joins this node to the cluster.
307

308
  This does the following:
309
      - updates the hostkeys of the machine (rsa and dsa)
310
      - adds the ssh private key to the user
311
      - adds the ssh public key to the users' authorized_keys file
312

313
  @type dsa: str
314
  @param dsa: the DSA private key to write
315
  @type dsapub: str
316
  @param dsapub: the DSA public key to write
317
  @type rsa: str
318
  @param rsa: the RSA private key to write
319
  @type rsapub: str
320
  @param rsapub: the RSA public key to write
321
  @type sshkey: str
322
  @param sshkey: the SSH private key to write
323
  @type sshpub: str
324
  @param sshpub: the SSH public key to write
325
  @rtype: boolean
326
  @return: the success of the operation
327

328
  """
329
  sshd_keys =  [(constants.SSH_HOST_RSA_PRIV, rsa, 0600),
330
                (constants.SSH_HOST_RSA_PUB, rsapub, 0644),
331
                (constants.SSH_HOST_DSA_PRIV, dsa, 0600),
332
                (constants.SSH_HOST_DSA_PUB, dsapub, 0644)]
333
  for name, content, mode in sshd_keys:
334
    utils.WriteFile(name, data=content, mode=mode)
335

    
336
  try:
337
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS,
338
                                                    mkdir=True)
339
  except errors.OpExecError, err:
340
    _Fail("Error while processing user ssh files: %s", err, exc=True)
341

    
342
  for name, content in [(priv_key, sshkey), (pub_key, sshpub)]:
343
    utils.WriteFile(name, data=content, mode=0600)
344

    
345
  utils.AddAuthorizedKey(auth_keys, sshpub)
346

    
347
  utils.RunCmd([constants.SSH_INITD_SCRIPT, "restart"])
348

    
349

    
350
def LeaveCluster():
351
  """Cleans up and remove the current node.
352

353
  This function cleans up and prepares the current node to be removed
354
  from the cluster.
355

356
  If processing is successful, then it raises an
357
  L{errors.QuitGanetiException} which is used as a special case to
358
  shutdown the node daemon.
359

360
  """
361
  _CleanDirectory(constants.DATA_DIR)
362
  JobQueuePurge()
363

    
364
  try:
365
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
366

    
367
    f = open(pub_key, 'r')
368
    try:
369
      utils.RemoveAuthorizedKey(auth_keys, f.read(8192))
370
    finally:
371
      f.close()
372

    
373
    utils.RemoveFile(priv_key)
374
    utils.RemoveFile(pub_key)
375
  except errors.OpExecError:
376
    logging.exception("Error while processing ssh files")
377

    
378
  # Raise a custom exception (handled in ganeti-noded)
379
  raise errors.QuitGanetiException(True, 'Shutdown scheduled')
380

    
381

    
382
def GetNodeInfo(vgname, hypervisor_type):
383
  """Gives back a hash with different information about the node.
384

385
  @type vgname: C{string}
386
  @param vgname: the name of the volume group to ask for disk space information
387
  @type hypervisor_type: C{str}
388
  @param hypervisor_type: the name of the hypervisor to ask for
389
      memory information
390
  @rtype: C{dict}
391
  @return: dictionary with the following keys:
392
      - vg_size is the size of the configured volume group in MiB
393
      - vg_free is the free size of the volume group in MiB
394
      - memory_dom0 is the memory allocated for domain0 in MiB
395
      - memory_free is the currently available (free) ram in MiB
396
      - memory_total is the total number of ram in MiB
397

398
  """
399
  outputarray = {}
400
  vginfo = _GetVGInfo(vgname)
401
  outputarray['vg_size'] = vginfo['vg_size']
402
  outputarray['vg_free'] = vginfo['vg_free']
403

    
404
  hyper = hypervisor.GetHypervisor(hypervisor_type)
405
  hyp_info = hyper.GetNodeInfo()
406
  if hyp_info is not None:
407
    outputarray.update(hyp_info)
408

    
409
  f = open("/proc/sys/kernel/random/boot_id", 'r')
410
  try:
411
    outputarray["bootid"] = f.read(128).rstrip("\n")
412
  finally:
413
    f.close()
414

    
415
  return outputarray
416

    
417

    
418
def VerifyNode(what, cluster_name):
419
  """Verify the status of the local node.
420

421
  Based on the input L{what} parameter, various checks are done on the
422
  local node.
423

424
  If the I{filelist} key is present, this list of
425
  files is checksummed and the file/checksum pairs are returned.
426

427
  If the I{nodelist} key is present, we check that we have
428
  connectivity via ssh with the target nodes (and check the hostname
429
  report).
430

431
  If the I{node-net-test} key is present, we check that we have
432
  connectivity to the given nodes via both primary IP and, if
433
  applicable, secondary IPs.
434

435
  @type what: C{dict}
436
  @param what: a dictionary of things to check:
437
      - filelist: list of files for which to compute checksums
438
      - nodelist: list of nodes we should check ssh communication with
439
      - node-net-test: list of nodes we should check node daemon port
440
        connectivity with
441
      - hypervisor: list with hypervisors to run the verify for
442
  @rtype: dict
443
  @return: a dictionary with the same keys as the input dict, and
444
      values representing the result of the checks
445

446
  """
447
  result = {}
448

    
449
  if constants.NV_HYPERVISOR in what:
450
    result[constants.NV_HYPERVISOR] = tmp = {}
451
    for hv_name in what[constants.NV_HYPERVISOR]:
452
      tmp[hv_name] = hypervisor.GetHypervisor(hv_name).Verify()
453

    
454
  if constants.NV_FILELIST in what:
455
    result[constants.NV_FILELIST] = utils.FingerprintFiles(
456
      what[constants.NV_FILELIST])
457

    
458
  if constants.NV_NODELIST in what:
459
    result[constants.NV_NODELIST] = tmp = {}
460
    random.shuffle(what[constants.NV_NODELIST])
461
    for node in what[constants.NV_NODELIST]:
462
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
463
      if not success:
464
        tmp[node] = message
465

    
466
  if constants.NV_NODENETTEST in what:
467
    result[constants.NV_NODENETTEST] = tmp = {}
468
    my_name = utils.HostInfo().name
469
    my_pip = my_sip = None
470
    for name, pip, sip in what[constants.NV_NODENETTEST]:
471
      if name == my_name:
472
        my_pip = pip
473
        my_sip = sip
474
        break
475
    if not my_pip:
476
      tmp[my_name] = ("Can't find my own primary/secondary IP"
477
                      " in the node list")
478
    else:
479
      port = utils.GetDaemonPort(constants.NODED)
480
      for name, pip, sip in what[constants.NV_NODENETTEST]:
481
        fail = []
482
        if not utils.TcpPing(pip, port, source=my_pip):
483
          fail.append("primary")
484
        if sip != pip:
485
          if not utils.TcpPing(sip, port, source=my_sip):
486
            fail.append("secondary")
487
        if fail:
488
          tmp[name] = ("failure using the %s interface(s)" %
489
                       " and ".join(fail))
490

    
491
  if constants.NV_LVLIST in what:
492
    result[constants.NV_LVLIST] = GetVolumeList(what[constants.NV_LVLIST])
493

    
494
  if constants.NV_INSTANCELIST in what:
495
    result[constants.NV_INSTANCELIST] = GetInstanceList(
496
      what[constants.NV_INSTANCELIST])
497

    
498
  if constants.NV_VGLIST in what:
499
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
500

    
501
  if constants.NV_VERSION in what:
502
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
503
                                    constants.RELEASE_VERSION)
504

    
505
  if constants.NV_HVINFO in what:
506
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
507
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
508

    
509
  if constants.NV_DRBDLIST in what:
510
    try:
511
      used_minors = bdev.DRBD8.GetUsedDevs().keys()
512
    except errors.BlockDeviceError, err:
513
      logging.warning("Can't get used minors list", exc_info=True)
514
      used_minors = str(err)
515
    result[constants.NV_DRBDLIST] = used_minors
516

    
517
  return result
518

    
519

    
520
def GetVolumeList(vg_name):
521
  """Compute list of logical volumes and their size.
522

523
  @type vg_name: str
524
  @param vg_name: the volume group whose LVs we should list
525
  @rtype: dict
526
  @return:
527
      dictionary of all partions (key) with value being a tuple of
528
      their size (in MiB), inactive and online status::
529

530
        {'test1': ('20.06', True, True)}
531

532
      in case of errors, a string is returned with the error
533
      details.
534

535
  """
536
  lvs = {}
537
  sep = '|'
538
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
539
                         "--separator=%s" % sep,
540
                         "-olv_name,lv_size,lv_attr", vg_name])
541
  if result.failed:
542
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
543

    
544
  valid_line_re = re.compile("^ *([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
545
  for line in result.stdout.splitlines():
546
    line = line.strip()
547
    match = valid_line_re.match(line)
548
    if not match:
549
      logging.error("Invalid line returned from lvs output: '%s'", line)
550
      continue
551
    name, size, attr = match.groups()
552
    inactive = attr[4] == '-'
553
    online = attr[5] == 'o'
554
    lvs[name] = (size, inactive, online)
555

    
556
  return lvs
557

    
558

    
559
def ListVolumeGroups():
560
  """List the volume groups and their size.
561

562
  @rtype: dict
563
  @return: dictionary with keys volume name and values the
564
      size of the volume
565

566
  """
567
  return utils.ListVolumeGroups()
568

    
569

    
570
def NodeVolumes():
571
  """List all volumes on this node.
572

573
  @rtype: list
574
  @return:
575
    A list of dictionaries, each having four keys:
576
      - name: the logical volume name,
577
      - size: the size of the logical volume
578
      - dev: the physical device on which the LV lives
579
      - vg: the volume group to which it belongs
580

581
    In case of errors, we return an empty list and log the
582
    error.
583

584
    Note that since a logical volume can live on multiple physical
585
    volumes, the resulting list might include a logical volume
586
    multiple times.
587

588
  """
589
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
590
                         "--separator=|",
591
                         "--options=lv_name,lv_size,devices,vg_name"])
592
  if result.failed:
593
    _Fail("Failed to list logical volumes, lvs output: %s",
594
          result.output)
595

    
596
  def parse_dev(dev):
597
    if '(' in dev:
598
      return dev.split('(')[0]
599
    else:
600
      return dev
601

    
602
  def map_line(line):
603
    return {
604
      'name': line[0].strip(),
605
      'size': line[1].strip(),
606
      'dev': parse_dev(line[2].strip()),
607
      'vg': line[3].strip(),
608
    }
609

    
610
  return [map_line(line.split('|')) for line in result.stdout.splitlines()
611
          if line.count('|') >= 3]
612

    
613

    
614
def BridgesExist(bridges_list):
615
  """Check if a list of bridges exist on the current node.
616

617
  @rtype: boolean
618
  @return: C{True} if all of them exist, C{False} otherwise
619

620
  """
621
  missing = []
622
  for bridge in bridges_list:
623
    if not utils.BridgeExists(bridge):
624
      missing.append(bridge)
625

    
626
  if missing:
627
    _Fail("Missing bridges %s", ", ".join(missing))
628

    
629

    
630
def GetInstanceList(hypervisor_list):
631
  """Provides a list of instances.
632

633
  @type hypervisor_list: list
634
  @param hypervisor_list: the list of hypervisors to query information
635

636
  @rtype: list
637
  @return: a list of all running instances on the current node
638
    - instance1.example.com
639
    - instance2.example.com
640

641
  """
642
  results = []
643
  for hname in hypervisor_list:
644
    try:
645
      names = hypervisor.GetHypervisor(hname).ListInstances()
646
      results.extend(names)
647
    except errors.HypervisorError, err:
648
      _Fail("Error enumerating instances (hypervisor %s): %s",
649
            hname, err, exc=True)
650

    
651
  return results
652

    
653

    
654
def GetInstanceInfo(instance, hname):
655
  """Gives back the information about an instance as a dictionary.
656

657
  @type instance: string
658
  @param instance: the instance name
659
  @type hname: string
660
  @param hname: the hypervisor type of the instance
661

662
  @rtype: dict
663
  @return: dictionary with the following keys:
664
      - memory: memory size of instance (int)
665
      - state: xen state of instance (string)
666
      - time: cpu time of instance (float)
667

668
  """
669
  output = {}
670

    
671
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
672
  if iinfo is not None:
673
    output['memory'] = iinfo[2]
674
    output['state'] = iinfo[4]
675
    output['time'] = iinfo[5]
676

    
677
  return output
678

    
679

    
680
def GetInstanceMigratable(instance):
681
  """Gives whether an instance can be migrated.
682

683
  @type instance: L{objects.Instance}
684
  @param instance: object representing the instance to be checked.
685

686
  @rtype: tuple
687
  @return: tuple of (result, description) where:
688
      - result: whether the instance can be migrated or not
689
      - description: a description of the issue, if relevant
690

691
  """
692
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
693
  iname = instance.name
694
  if iname not in hyper.ListInstances():
695
    _Fail("Instance %s is not running", iname)
696

    
697
  for idx in range(len(instance.disks)):
698
    link_name = _GetBlockDevSymlinkPath(iname, idx)
699
    if not os.path.islink(link_name):
700
      _Fail("Instance %s was not restarted since ganeti 1.2.5", iname)
701

    
702

    
703
def GetAllInstancesInfo(hypervisor_list):
704
  """Gather data about all instances.
705

706
  This is the equivalent of L{GetInstanceInfo}, except that it
707
  computes data for all instances at once, thus being faster if one
708
  needs data about more than one instance.
709

710
  @type hypervisor_list: list
711
  @param hypervisor_list: list of hypervisors to query for instance data
712

713
  @rtype: dict
714
  @return: dictionary of instance: data, with data having the following keys:
715
      - memory: memory size of instance (int)
716
      - state: xen state of instance (string)
717
      - time: cpu time of instance (float)
718
      - vcpus: the number of vcpus
719

720
  """
721
  output = {}
722

    
723
  for hname in hypervisor_list:
724
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
725
    if iinfo:
726
      for name, _, memory, vcpus, state, times in iinfo:
727
        value = {
728
          'memory': memory,
729
          'vcpus': vcpus,
730
          'state': state,
731
          'time': times,
732
          }
733
        if name in output:
734
          # we only check static parameters, like memory and vcpus,
735
          # and not state and time which can change between the
736
          # invocations of the different hypervisors
737
          for key in 'memory', 'vcpus':
738
            if value[key] != output[name][key]:
739
              _Fail("Instance %s is running twice"
740
                    " with different parameters", name)
741
        output[name] = value
742

    
743
  return output
744

    
745

    
746
def InstanceOsAdd(instance, reinstall):
747
  """Add an OS to an instance.
748

749
  @type instance: L{objects.Instance}
750
  @param instance: Instance whose OS is to be installed
751
  @type reinstall: boolean
752
  @param reinstall: whether this is an instance reinstall
753
  @rtype: None
754

755
  """
756
  inst_os = OSFromDisk(instance.os)
757

    
758
  create_env = OSEnvironment(instance, inst_os)
759
  if reinstall:
760
    create_env['INSTANCE_REINSTALL'] = "1"
761

    
762
  logfile = "%s/add-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
763
                                     instance.name, int(time.time()))
764

    
765
  result = utils.RunCmd([inst_os.create_script], env=create_env,
766
                        cwd=inst_os.path, output=logfile,)
767
  if result.failed:
768
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
769
                  " output: %s", result.cmd, result.fail_reason, logfile,
770
                  result.output)
771
    lines = [utils.SafeEncode(val)
772
             for val in utils.TailFile(logfile, lines=20)]
773
    _Fail("OS create script failed (%s), last lines in the"
774
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
775

    
776

    
777
def RunRenameInstance(instance, old_name):
778
  """Run the OS rename script for an instance.
779

780
  @type instance: L{objects.Instance}
781
  @param instance: Instance whose OS is to be installed
782
  @type old_name: string
783
  @param old_name: previous instance name
784
  @rtype: boolean
785
  @return: the success of the operation
786

787
  """
788
  inst_os = OSFromDisk(instance.os)
789

    
790
  rename_env = OSEnvironment(instance, inst_os)
791
  rename_env['OLD_INSTANCE_NAME'] = old_name
792

    
793
  logfile = "%s/rename-%s-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
794
                                           old_name,
795
                                           instance.name, int(time.time()))
796

    
797
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
798
                        cwd=inst_os.path, output=logfile)
799

    
800
  if result.failed:
801
    logging.error("os create command '%s' returned error: %s output: %s",
802
                  result.cmd, result.fail_reason, result.output)
803
    lines = [utils.SafeEncode(val)
804
             for val in utils.TailFile(logfile, lines=20)]
805
    _Fail("OS rename script failed (%s), last lines in the"
806
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
807

    
808

    
809
def _GetVGInfo(vg_name):
810
  """Get information about the volume group.
811

812
  @type vg_name: str
813
  @param vg_name: the volume group which we query
814
  @rtype: dict
815
  @return:
816
    A dictionary with the following keys:
817
      - C{vg_size} is the total size of the volume group in MiB
818
      - C{vg_free} is the free size of the volume group in MiB
819
      - C{pv_count} are the number of physical disks in that VG
820

821
    If an error occurs during gathering of data, we return the same dict
822
    with keys all set to None.
823

824
  """
825
  retdic = dict.fromkeys(["vg_size", "vg_free", "pv_count"])
826

    
827
  retval = utils.RunCmd(["vgs", "-ovg_size,vg_free,pv_count", "--noheadings",
828
                         "--nosuffix", "--units=m", "--separator=:", vg_name])
829

    
830
  if retval.failed:
831
    logging.error("volume group %s not present", vg_name)
832
    return retdic
833
  valarr = retval.stdout.strip().rstrip(':').split(':')
834
  if len(valarr) == 3:
835
    try:
836
      retdic = {
837
        "vg_size": int(round(float(valarr[0]), 0)),
838
        "vg_free": int(round(float(valarr[1]), 0)),
839
        "pv_count": int(valarr[2]),
840
        }
841
    except ValueError, err:
842
      logging.exception("Fail to parse vgs output: %s", err)
843
  else:
844
    logging.error("vgs output has the wrong number of fields (expected"
845
                  " three): %s", str(valarr))
846
  return retdic
847

    
848

    
849
def _GetBlockDevSymlinkPath(instance_name, idx):
850
  return os.path.join(constants.DISK_LINKS_DIR,
851
                      "%s:%d" % (instance_name, idx))
852

    
853

    
854
def _SymlinkBlockDev(instance_name, device_path, idx):
855
  """Set up symlinks to a instance's block device.
856

857
  This is an auxiliary function run when an instance is start (on the primary
858
  node) or when an instance is migrated (on the target node).
859

860

861
  @param instance_name: the name of the target instance
862
  @param device_path: path of the physical block device, on the node
863
  @param idx: the disk index
864
  @return: absolute path to the disk's symlink
865

866
  """
867
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
868
  try:
869
    os.symlink(device_path, link_name)
870
  except OSError, err:
871
    if err.errno == errno.EEXIST:
872
      if (not os.path.islink(link_name) or
873
          os.readlink(link_name) != device_path):
874
        os.remove(link_name)
875
        os.symlink(device_path, link_name)
876
    else:
877
      raise
878

    
879
  return link_name
880

    
881

    
882
def _RemoveBlockDevLinks(instance_name, disks):
883
  """Remove the block device symlinks belonging to the given instance.
884

885
  """
886
  for idx, _ in enumerate(disks):
887
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
888
    if os.path.islink(link_name):
889
      try:
890
        os.remove(link_name)
891
      except OSError:
892
        logging.exception("Can't remove symlink '%s'", link_name)
893

    
894

    
895
def _GatherAndLinkBlockDevs(instance):
896
  """Set up an instance's block device(s).
897

898
  This is run on the primary node at instance startup. The block
899
  devices must be already assembled.
900

901
  @type instance: L{objects.Instance}
902
  @param instance: the instance whose disks we shoul assemble
903
  @rtype: list
904
  @return: list of (disk_object, device_path)
905

906
  """
907
  block_devices = []
908
  for idx, disk in enumerate(instance.disks):
909
    device = _RecursiveFindBD(disk)
910
    if device is None:
911
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
912
                                    str(disk))
913
    device.Open()
914
    try:
915
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
916
    except OSError, e:
917
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
918
                                    e.strerror)
919

    
920
    block_devices.append((disk, link_name))
921

    
922
  return block_devices
923

    
924

    
925
def StartInstance(instance):
926
  """Start an instance.
927

928
  @type instance: L{objects.Instance}
929
  @param instance: the instance object
930
  @rtype: None
931

932
  """
933
  running_instances = GetInstanceList([instance.hypervisor])
934

    
935
  if instance.name in running_instances:
936
    logging.info("Instance %s already running, not starting", instance.name)
937
    return
938

    
939
  try:
940
    block_devices = _GatherAndLinkBlockDevs(instance)
941
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
942
    hyper.StartInstance(instance, block_devices)
943
  except errors.BlockDeviceError, err:
944
    _Fail("Block device error: %s", err, exc=True)
945
  except errors.HypervisorError, err:
946
    _RemoveBlockDevLinks(instance.name, instance.disks)
947
    _Fail("Hypervisor error: %s", err, exc=True)
948

    
949

    
950
def InstanceShutdown(instance):
951
  """Shut an instance down.
952

953
  @note: this functions uses polling with a hardcoded timeout.
954

955
  @type instance: L{objects.Instance}
956
  @param instance: the instance object
957
  @rtype: None
958

959
  """
960
  hv_name = instance.hypervisor
961
  running_instances = GetInstanceList([hv_name])
962
  iname = instance.name
963

    
964
  if iname not in running_instances:
965
    logging.info("Instance %s not running, doing nothing", iname)
966
    return
967

    
968
  hyper = hypervisor.GetHypervisor(hv_name)
969
  try:
970
    hyper.StopInstance(instance)
971
  except errors.HypervisorError, err:
972
    _Fail("Failed to stop instance %s: %s", iname, err)
973

    
974
  # test every 10secs for 2min
975

    
976
  time.sleep(1)
977
  for _ in range(11):
978
    if instance.name not in GetInstanceList([hv_name]):
979
      break
980
    time.sleep(10)
981
  else:
982
    # the shutdown did not succeed
983
    logging.error("Shutdown of '%s' unsuccessful, using destroy", iname)
984

    
985
    try:
986
      hyper.StopInstance(instance, force=True)
987
    except errors.HypervisorError, err:
988
      _Fail("Failed to force stop instance %s: %s", iname, err)
989

    
990
    time.sleep(1)
991
    if instance.name in GetInstanceList([hv_name]):
992
      _Fail("Could not shutdown instance %s even by destroy", iname)
993

    
994
  _RemoveBlockDevLinks(iname, instance.disks)
995

    
996

    
997
def InstanceReboot(instance, reboot_type):
998
  """Reboot an instance.
999

1000
  @type instance: L{objects.Instance}
1001
  @param instance: the instance object to reboot
1002
  @type reboot_type: str
1003
  @param reboot_type: the type of reboot, one the following
1004
    constants:
1005
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1006
        instance OS, do not recreate the VM
1007
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1008
        restart the VM (at the hypervisor level)
1009
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1010
        not accepted here, since that mode is handled differently, in
1011
        cmdlib, and translates into full stop and start of the
1012
        instance (instead of a call_instance_reboot RPC)
1013
  @rtype: None
1014

1015
  """
1016
  running_instances = GetInstanceList([instance.hypervisor])
1017

    
1018
  if instance.name not in running_instances:
1019
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1020

    
1021
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1022
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1023
    try:
1024
      hyper.RebootInstance(instance)
1025
    except errors.HypervisorError, err:
1026
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1027
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1028
    try:
1029
      InstanceShutdown(instance)
1030
      return StartInstance(instance)
1031
    except errors.HypervisorError, err:
1032
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1033
  else:
1034
    _Fail("Invalid reboot_type received: %s", reboot_type)
1035

    
1036

    
1037
def MigrationInfo(instance):
1038
  """Gather information about an instance to be migrated.
1039

1040
  @type instance: L{objects.Instance}
1041
  @param instance: the instance definition
1042

1043
  """
1044
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1045
  try:
1046
    info = hyper.MigrationInfo(instance)
1047
  except errors.HypervisorError, err:
1048
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1049
  return info
1050

    
1051

    
1052
def AcceptInstance(instance, info, target):
1053
  """Prepare the node to accept an instance.
1054

1055
  @type instance: L{objects.Instance}
1056
  @param instance: the instance definition
1057
  @type info: string/data (opaque)
1058
  @param info: migration information, from the source node
1059
  @type target: string
1060
  @param target: target host (usually ip), on this node
1061

1062
  """
1063
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1064
  try:
1065
    hyper.AcceptInstance(instance, info, target)
1066
  except errors.HypervisorError, err:
1067
    _Fail("Failed to accept instance: %s", err, exc=True)
1068

    
1069

    
1070
def FinalizeMigration(instance, info, success):
1071
  """Finalize any preparation to accept an instance.
1072

1073
  @type instance: L{objects.Instance}
1074
  @param instance: the instance definition
1075
  @type info: string/data (opaque)
1076
  @param info: migration information, from the source node
1077
  @type success: boolean
1078
  @param success: whether the migration was a success or a failure
1079

1080
  """
1081
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1082
  try:
1083
    hyper.FinalizeMigration(instance, info, success)
1084
  except errors.HypervisorError, err:
1085
    _Fail("Failed to finalize migration: %s", err, exc=True)
1086

    
1087

    
1088
def MigrateInstance(instance, target, live):
1089
  """Migrates an instance to another node.
1090

1091
  @type instance: L{objects.Instance}
1092
  @param instance: the instance definition
1093
  @type target: string
1094
  @param target: the target node name
1095
  @type live: boolean
1096
  @param live: whether the migration should be done live or not (the
1097
      interpretation of this parameter is left to the hypervisor)
1098
  @rtype: tuple
1099
  @return: a tuple of (success, msg) where:
1100
      - succes is a boolean denoting the success/failure of the operation
1101
      - msg is a string with details in case of failure
1102

1103
  """
1104
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1105

    
1106
  try:
1107
    hyper.MigrateInstance(instance.name, target, live)
1108
  except errors.HypervisorError, err:
1109
    _Fail("Failed to migrate instance: %s", err, exc=True)
1110

    
1111

    
1112
def BlockdevCreate(disk, size, owner, on_primary, info):
1113
  """Creates a block device for an instance.
1114

1115
  @type disk: L{objects.Disk}
1116
  @param disk: the object describing the disk we should create
1117
  @type size: int
1118
  @param size: the size of the physical underlying device, in MiB
1119
  @type owner: str
1120
  @param owner: the name of the instance for which disk is created,
1121
      used for device cache data
1122
  @type on_primary: boolean
1123
  @param on_primary:  indicates if it is the primary node or not
1124
  @type info: string
1125
  @param info: string that will be sent to the physical device
1126
      creation, used for example to set (LVM) tags on LVs
1127

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

1132
  """
1133
  clist = []
1134
  if disk.children:
1135
    for child in disk.children:
1136
      try:
1137
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1138
      except errors.BlockDeviceError, err:
1139
        _Fail("Can't assemble device %s: %s", child, err)
1140
      if on_primary or disk.AssembleOnSecondary():
1141
        # we need the children open in case the device itself has to
1142
        # be assembled
1143
        try:
1144
          crdev.Open()
1145
        except errors.BlockDeviceError, err:
1146
          _Fail("Can't make child '%s' read-write: %s", child, err)
1147
      clist.append(crdev)
1148

    
1149
  try:
1150
    device = bdev.Create(disk.dev_type, disk.physical_id, clist, disk.size)
1151
  except errors.BlockDeviceError, err:
1152
    _Fail("Can't create block device: %s", err)
1153

    
1154
  if on_primary or disk.AssembleOnSecondary():
1155
    try:
1156
      device.Assemble()
1157
    except errors.BlockDeviceError, err:
1158
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1159
    device.SetSyncSpeed(constants.SYNC_SPEED)
1160
    if on_primary or disk.OpenOnSecondary():
1161
      try:
1162
        device.Open(force=True)
1163
      except errors.BlockDeviceError, err:
1164
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1165
    DevCacheManager.UpdateCache(device.dev_path, owner,
1166
                                on_primary, disk.iv_name)
1167

    
1168
  device.SetInfo(info)
1169

    
1170
  return device.unique_id
1171

    
1172

    
1173
def BlockdevRemove(disk):
1174
  """Remove a block device.
1175

1176
  @note: This is intended to be called recursively.
1177

1178
  @type disk: L{objects.Disk}
1179
  @param disk: the disk object we should remove
1180
  @rtype: boolean
1181
  @return: the success of the operation
1182

1183
  """
1184
  msgs = []
1185
  try:
1186
    rdev = _RecursiveFindBD(disk)
1187
  except errors.BlockDeviceError, err:
1188
    # probably can't attach
1189
    logging.info("Can't attach to device %s in remove", disk)
1190
    rdev = None
1191
  if rdev is not None:
1192
    r_path = rdev.dev_path
1193
    try:
1194
      rdev.Remove()
1195
    except errors.BlockDeviceError, err:
1196
      msgs.append(str(err))
1197
    if not msgs:
1198
      DevCacheManager.RemoveCache(r_path)
1199

    
1200
  if disk.children:
1201
    for child in disk.children:
1202
      try:
1203
        BlockdevRemove(child)
1204
      except RPCFail, err:
1205
        msgs.append(str(err))
1206

    
1207
  if msgs:
1208
    _Fail("; ".join(msgs))
1209

    
1210

    
1211
def _RecursiveAssembleBD(disk, owner, as_primary):
1212
  """Activate a block device for an instance.
1213

1214
  This is run on the primary and secondary nodes for an instance.
1215

1216
  @note: this function is called recursively.
1217

1218
  @type disk: L{objects.Disk}
1219
  @param disk: the disk we try to assemble
1220
  @type owner: str
1221
  @param owner: the name of the instance which owns the disk
1222
  @type as_primary: boolean
1223
  @param as_primary: if we should make the block device
1224
      read/write
1225

1226
  @return: the assembled device or None (in case no device
1227
      was assembled)
1228
  @raise errors.BlockDeviceError: in case there is an error
1229
      during the activation of the children or the device
1230
      itself
1231

1232
  """
1233
  children = []
1234
  if disk.children:
1235
    mcn = disk.ChildrenNeeded()
1236
    if mcn == -1:
1237
      mcn = 0 # max number of Nones allowed
1238
    else:
1239
      mcn = len(disk.children) - mcn # max number of Nones
1240
    for chld_disk in disk.children:
1241
      try:
1242
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1243
      except errors.BlockDeviceError, err:
1244
        if children.count(None) >= mcn:
1245
          raise
1246
        cdev = None
1247
        logging.error("Error in child activation (but continuing): %s",
1248
                      str(err))
1249
      children.append(cdev)
1250

    
1251
  if as_primary or disk.AssembleOnSecondary():
1252
    r_dev = bdev.Assemble(disk.dev_type, disk.physical_id, children, disk.size)
1253
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
1254
    result = r_dev
1255
    if as_primary or disk.OpenOnSecondary():
1256
      r_dev.Open()
1257
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1258
                                as_primary, disk.iv_name)
1259

    
1260
  else:
1261
    result = True
1262
  return result
1263

    
1264

    
1265
def BlockdevAssemble(disk, owner, as_primary):
1266
  """Activate a block device for an instance.
1267

1268
  This is a wrapper over _RecursiveAssembleBD.
1269

1270
  @rtype: str or boolean
1271
  @return: a C{/dev/...} path for primary nodes, and
1272
      C{True} for secondary nodes
1273

1274
  """
1275
  try:
1276
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1277
    if isinstance(result, bdev.BlockDev):
1278
      result = result.dev_path
1279
  except errors.BlockDeviceError, err:
1280
    _Fail("Error while assembling disk: %s", err, exc=True)
1281

    
1282
  return result
1283

    
1284

    
1285
def BlockdevShutdown(disk):
1286
  """Shut down a block device.
1287

1288
  First, if the device is assembled (Attach() is successful), then
1289
  the device is shutdown. Then the children of the device are
1290
  shutdown.
1291

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

1296
  @type disk: L{objects.Disk}
1297
  @param disk: the description of the disk we should
1298
      shutdown
1299
  @rtype: None
1300

1301
  """
1302
  msgs = []
1303
  r_dev = _RecursiveFindBD(disk)
1304
  if r_dev is not None:
1305
    r_path = r_dev.dev_path
1306
    try:
1307
      r_dev.Shutdown()
1308
      DevCacheManager.RemoveCache(r_path)
1309
    except errors.BlockDeviceError, err:
1310
      msgs.append(str(err))
1311

    
1312
  if disk.children:
1313
    for child in disk.children:
1314
      try:
1315
        BlockdevShutdown(child)
1316
      except RPCFail, err:
1317
        msgs.append(str(err))
1318

    
1319
  if msgs:
1320
    _Fail("; ".join(msgs))
1321

    
1322

    
1323
def BlockdevAddchildren(parent_cdev, new_cdevs):
1324
  """Extend a mirrored block device.
1325

1326
  @type parent_cdev: L{objects.Disk}
1327
  @param parent_cdev: the disk to which we should add children
1328
  @type new_cdevs: list of L{objects.Disk}
1329
  @param new_cdevs: the list of children which we should add
1330
  @rtype: None
1331

1332
  """
1333
  parent_bdev = _RecursiveFindBD(parent_cdev)
1334
  if parent_bdev is None:
1335
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
1336
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
1337
  if new_bdevs.count(None) > 0:
1338
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
1339
  parent_bdev.AddChildren(new_bdevs)
1340

    
1341

    
1342
def BlockdevRemovechildren(parent_cdev, new_cdevs):
1343
  """Shrink a mirrored block device.
1344

1345
  @type parent_cdev: L{objects.Disk}
1346
  @param parent_cdev: the disk from which we should remove children
1347
  @type new_cdevs: list of L{objects.Disk}
1348
  @param new_cdevs: the list of children which we should remove
1349
  @rtype: None
1350

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

    
1368

    
1369
def BlockdevGetmirrorstatus(disks):
1370
  """Get the mirroring status of a list of devices.
1371

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

1381
  """
1382
  stats = []
1383
  for dsk in disks:
1384
    rbd = _RecursiveFindBD(dsk)
1385
    if rbd is None:
1386
      _Fail("Can't find device %s", dsk)
1387

    
1388
    stats.append(rbd.CombinedSyncStatus())
1389

    
1390
  return stats
1391

    
1392

    
1393
def _RecursiveFindBD(disk):
1394
  """Check if a device is activated.
1395

1396
  If so, return information about the real device.
1397

1398
  @type disk: L{objects.Disk}
1399
  @param disk: the disk object we need to find
1400

1401
  @return: None if the device can't be found,
1402
      otherwise the device instance
1403

1404
  """
1405
  children = []
1406
  if disk.children:
1407
    for chdisk in disk.children:
1408
      children.append(_RecursiveFindBD(chdisk))
1409

    
1410
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children, disk.size)
1411

    
1412

    
1413
def BlockdevFind(disk):
1414
  """Check if a device is activated.
1415

1416
  If it is, return information about the real device.
1417

1418
  @type disk: L{objects.Disk}
1419
  @param disk: the disk to find
1420
  @rtype: None or objects.BlockDevStatus
1421
  @return: None if the disk cannot be found, otherwise a the current
1422
           information
1423

1424
  """
1425
  try:
1426
    rbd = _RecursiveFindBD(disk)
1427
  except errors.BlockDeviceError, err:
1428
    _Fail("Failed to find device: %s", err, exc=True)
1429

    
1430
  if rbd is None:
1431
    return None
1432

    
1433
  return rbd.GetSyncStatus()
1434

    
1435

    
1436
def BlockdevGetsize(disks):
1437
  """Computes the size of the given disks.
1438

1439
  If a disk is not found, returns None instead.
1440

1441
  @type disks: list of L{objects.Disk}
1442
  @param disks: the list of disk to compute the size for
1443
  @rtype: list
1444
  @return: list with elements None if the disk cannot be found,
1445
      otherwise the size
1446

1447
  """
1448
  result = []
1449
  for cf in disks:
1450
    try:
1451
      rbd = _RecursiveFindBD(cf)
1452
    except errors.BlockDeviceError, err:
1453
      result.append(None)
1454
      continue
1455
    if rbd is None:
1456
      result.append(None)
1457
    else:
1458
      result.append(rbd.GetActualSize())
1459
  return result
1460

    
1461

    
1462
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1463
  """Write a file to the filesystem.
1464

1465
  This allows the master to overwrite(!) a file. It will only perform
1466
  the operation if the file belongs to a list of configuration files.
1467

1468
  @type file_name: str
1469
  @param file_name: the target file name
1470
  @type data: str
1471
  @param data: the new contents of the file
1472
  @type mode: int
1473
  @param mode: the mode to give the file (can be None)
1474
  @type uid: int
1475
  @param uid: the owner of the file (can be -1 for default)
1476
  @type gid: int
1477
  @param gid: the group of the file (can be -1 for default)
1478
  @type atime: float
1479
  @param atime: the atime to set on the file (can be None)
1480
  @type mtime: float
1481
  @param mtime: the mtime to set on the file (can be None)
1482
  @rtype: None
1483

1484
  """
1485
  if not os.path.isabs(file_name):
1486
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1487

    
1488
  if file_name not in _ALLOWED_UPLOAD_FILES:
1489
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1490
          file_name)
1491

    
1492
  raw_data = _Decompress(data)
1493

    
1494
  utils.WriteFile(file_name, data=raw_data, mode=mode, uid=uid, gid=gid,
1495
                  atime=atime, mtime=mtime)
1496

    
1497

    
1498
def WriteSsconfFiles(values):
1499
  """Update all ssconf files.
1500

1501
  Wrapper around the SimpleStore.WriteFiles.
1502

1503
  """
1504
  ssconf.SimpleStore().WriteFiles(values)
1505

    
1506

    
1507
def _ErrnoOrStr(err):
1508
  """Format an EnvironmentError exception.
1509

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

1514
  @type err: L{EnvironmentError}
1515
  @param err: the exception to format
1516

1517
  """
1518
  if hasattr(err, 'errno'):
1519
    detail = errno.errorcode[err.errno]
1520
  else:
1521
    detail = str(err)
1522
  return detail
1523

    
1524

    
1525
def _OSOndiskAPIVersion(name, os_dir):
1526
  """Compute and return the API version of a given OS.
1527

1528
  This function will try to read the API version of the OS given by
1529
  the 'name' parameter and residing in the 'os_dir' directory.
1530

1531
  @type name: str
1532
  @param name: the OS name we should look for
1533
  @type os_dir: str
1534
  @param os_dir: the directory inwhich we should look for the OS
1535
  @rtype: tuple
1536
  @return: tuple (status, data) with status denoting the validity and
1537
      data holding either the vaid versions or an error message
1538

1539
  """
1540
  api_file = os.path.sep.join([os_dir, "ganeti_api_version"])
1541

    
1542
  try:
1543
    st = os.stat(api_file)
1544
  except EnvironmentError, err:
1545
    return False, ("Required file 'ganeti_api_version' file not"
1546
                   " found under path %s: %s" % (os_dir, _ErrnoOrStr(err)))
1547

    
1548
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1549
    return False, ("File 'ganeti_api_version' file at %s is not"
1550
                   " a regular file" % os_dir)
1551

    
1552
  try:
1553
    api_versions = utils.ReadFile(api_file).splitlines()
1554
  except EnvironmentError, err:
1555
    return False, ("Error while reading the API version file at %s: %s" %
1556
                   (api_file, _ErrnoOrStr(err)))
1557

    
1558
  try:
1559
    api_versions = [int(version.strip()) for version in api_versions]
1560
  except (TypeError, ValueError), err:
1561
    return False, ("API version(s) can't be converted to integer: %s" %
1562
                   str(err))
1563

    
1564
  return True, api_versions
1565

    
1566

    
1567
def DiagnoseOS(top_dirs=None):
1568
  """Compute the validity for all OSes.
1569

1570
  @type top_dirs: list
1571
  @param top_dirs: the list of directories in which to
1572
      search (if not given defaults to
1573
      L{constants.OS_SEARCH_PATH})
1574
  @rtype: list of L{objects.OS}
1575
  @return: a list of tuples (name, path, status, diagnose)
1576
      for all (potential) OSes under all search paths, where:
1577
          - name is the (potential) OS name
1578
          - path is the full path to the OS
1579
          - status True/False is the validity of the OS
1580
          - diagnose is the error message for an invalid OS, otherwise empty
1581

1582
  """
1583
  if top_dirs is None:
1584
    top_dirs = constants.OS_SEARCH_PATH
1585

    
1586
  result = []
1587
  for dir_name in top_dirs:
1588
    if os.path.isdir(dir_name):
1589
      try:
1590
        f_names = utils.ListVisibleFiles(dir_name)
1591
      except EnvironmentError, err:
1592
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
1593
        break
1594
      for name in f_names:
1595
        os_path = os.path.sep.join([dir_name, name])
1596
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
1597
        if status:
1598
          diagnose = ""
1599
        else:
1600
          diagnose = os_inst
1601
        result.append((name, os_path, status, diagnose))
1602

    
1603
  return result
1604

    
1605

    
1606
def _TryOSFromDisk(name, base_dir=None):
1607
  """Create an OS instance from disk.
1608

1609
  This function will return an OS instance if the given name is a
1610
  valid OS name.
1611

1612
  @type base_dir: string
1613
  @keyword base_dir: Base directory containing OS installations.
1614
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1615
  @rtype: tuple
1616
  @return: success and either the OS instance if we find a valid one,
1617
      or error message
1618

1619
  """
1620
  if base_dir is None:
1621
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1622
    if os_dir is None:
1623
      return False, "Directory for OS %s not found in search path" % name
1624
  else:
1625
    os_dir = os.path.sep.join([base_dir, name])
1626

    
1627
  status, api_versions = _OSOndiskAPIVersion(name, os_dir)
1628
  if not status:
1629
    # push the error up
1630
    return status, api_versions
1631

    
1632
  if not constants.OS_API_VERSIONS.intersection(api_versions):
1633
    return False, ("API version mismatch for path '%s': found %s, want %s." %
1634
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
1635

    
1636
  # OS Scripts dictionary, we will populate it with the actual script names
1637
  os_scripts = dict.fromkeys(constants.OS_SCRIPTS)
1638

    
1639
  for script in os_scripts:
1640
    os_scripts[script] = os.path.sep.join([os_dir, script])
1641

    
1642
    try:
1643
      st = os.stat(os_scripts[script])
1644
    except EnvironmentError, err:
1645
      return False, ("Script '%s' under path '%s' is missing (%s)" %
1646
                     (script, os_dir, _ErrnoOrStr(err)))
1647

    
1648
    if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1649
      return False, ("Script '%s' under path '%s' is not executable" %
1650
                     (script, os_dir))
1651

    
1652
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1653
      return False, ("Script '%s' under path '%s' is not a regular file" %
1654
                     (script, os_dir))
1655

    
1656
  os_obj = objects.OS(name=name, path=os_dir,
1657
                      create_script=os_scripts[constants.OS_SCRIPT_CREATE],
1658
                      export_script=os_scripts[constants.OS_SCRIPT_EXPORT],
1659
                      import_script=os_scripts[constants.OS_SCRIPT_IMPORT],
1660
                      rename_script=os_scripts[constants.OS_SCRIPT_RENAME],
1661
                      api_versions=api_versions)
1662
  return True, os_obj
1663

    
1664

    
1665
def OSFromDisk(name, base_dir=None):
1666
  """Create an OS instance from disk.
1667

1668
  This function will return an OS instance if the given name is a
1669
  valid OS name. Otherwise, it will raise an appropriate
1670
  L{RPCFail} exception, detailing why this is not a valid OS.
1671

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

1675
  @type base_dir: string
1676
  @keyword base_dir: Base directory containing OS installations.
1677
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1678
  @rtype: L{objects.OS}
1679
  @return: the OS instance if we find a valid one
1680
  @raise RPCFail: if we don't find a valid OS
1681

1682
  """
1683
  status, payload = _TryOSFromDisk(name, base_dir)
1684

    
1685
  if not status:
1686
    _Fail(payload)
1687

    
1688
  return payload
1689

    
1690

    
1691
def OSEnvironment(instance, os, debug=0):
1692
  """Calculate the environment for an os script.
1693

1694
  @type instance: L{objects.Instance}
1695
  @param instance: target instance for the os script run
1696
  @type os: L{objects.OS}
1697
  @param os: operating system for which the environment is being built
1698
  @type debug: integer
1699
  @param debug: debug level (0 or 1, for OS Api 10)
1700
  @rtype: dict
1701
  @return: dict of environment variables
1702
  @raise errors.BlockDeviceError: if the block device
1703
      cannot be found
1704

1705
  """
1706
  result = {}
1707
  api_version = max(constants.OS_API_VERSIONS.intersection(os.api_versions))
1708
  result['OS_API_VERSION'] = '%d' % api_version
1709
  result['INSTANCE_NAME'] = instance.name
1710
  result['INSTANCE_OS'] = instance.os
1711
  result['HYPERVISOR'] = instance.hypervisor
1712
  result['DISK_COUNT'] = '%d' % len(instance.disks)
1713
  result['NIC_COUNT'] = '%d' % len(instance.nics)
1714
  result['DEBUG_LEVEL'] = '%d' % debug
1715
  for idx, disk in enumerate(instance.disks):
1716
    real_disk = _RecursiveFindBD(disk)
1717
    if real_disk is None:
1718
      raise errors.BlockDeviceError("Block device '%s' is not set up" %
1719
                                    str(disk))
1720
    real_disk.Open()
1721
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
1722
    result['DISK_%d_ACCESS' % idx] = disk.mode
1723
    if constants.HV_DISK_TYPE in instance.hvparams:
1724
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
1725
        instance.hvparams[constants.HV_DISK_TYPE]
1726
    if disk.dev_type in constants.LDS_BLOCK:
1727
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
1728
    elif disk.dev_type == constants.LD_FILE:
1729
      result['DISK_%d_BACKEND_TYPE' % idx] = \
1730
        'file:%s' % disk.physical_id[0]
1731
  for idx, nic in enumerate(instance.nics):
1732
    result['NIC_%d_MAC' % idx] = nic.mac
1733
    if nic.ip:
1734
      result['NIC_%d_IP' % idx] = nic.ip
1735
    result['NIC_%d_MODE' % idx] = nic.nicparams[constants.NIC_MODE]
1736
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
1737
      result['NIC_%d_BRIDGE' % idx] = nic.nicparams[constants.NIC_LINK]
1738
    if nic.nicparams[constants.NIC_LINK]:
1739
      result['NIC_%d_LINK' % idx] = nic.nicparams[constants.NIC_LINK]
1740
    if constants.HV_NIC_TYPE in instance.hvparams:
1741
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
1742
        instance.hvparams[constants.HV_NIC_TYPE]
1743

    
1744
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
1745
    for key, value in source.items():
1746
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
1747

    
1748
  return result
1749

    
1750
def BlockdevGrow(disk, amount):
1751
  """Grow a stack of block devices.
1752

1753
  This function is called recursively, with the childrens being the
1754
  first ones to resize.
1755

1756
  @type disk: L{objects.Disk}
1757
  @param disk: the disk to be grown
1758
  @rtype: (status, result)
1759
  @return: a tuple with the status of the operation
1760
      (True/False), and the errors message if status
1761
      is False
1762

1763
  """
1764
  r_dev = _RecursiveFindBD(disk)
1765
  if r_dev is None:
1766
    _Fail("Cannot find block device %s", disk)
1767

    
1768
  try:
1769
    r_dev.Grow(amount)
1770
  except errors.BlockDeviceError, err:
1771
    _Fail("Failed to grow block device: %s", err, exc=True)
1772

    
1773

    
1774
def BlockdevSnapshot(disk):
1775
  """Create a snapshot copy of a block device.
1776

1777
  This function is called recursively, and the snapshot is actually created
1778
  just for the leaf lvm backend device.
1779

1780
  @type disk: L{objects.Disk}
1781
  @param disk: the disk to be snapshotted
1782
  @rtype: string
1783
  @return: snapshot disk path
1784

1785
  """
1786
  if disk.children:
1787
    if len(disk.children) == 1:
1788
      # only one child, let's recurse on it
1789
      return BlockdevSnapshot(disk.children[0])
1790
    else:
1791
      # more than one child, choose one that matches
1792
      for child in disk.children:
1793
        if child.size == disk.size:
1794
          # return implies breaking the loop
1795
          return BlockdevSnapshot(child)
1796
  elif disk.dev_type == constants.LD_LV:
1797
    r_dev = _RecursiveFindBD(disk)
1798
    if r_dev is not None:
1799
      # let's stay on the safe side and ask for the full size, for now
1800
      return r_dev.Snapshot(disk.size)
1801
    else:
1802
      _Fail("Cannot find block device %s", disk)
1803
  else:
1804
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
1805
          disk.unique_id, disk.dev_type)
1806

    
1807

    
1808
def ExportSnapshot(disk, dest_node, instance, cluster_name, idx):
1809
  """Export a block device snapshot to a remote node.
1810

1811
  @type disk: L{objects.Disk}
1812
  @param disk: the description of the disk to export
1813
  @type dest_node: str
1814
  @param dest_node: the destination node to export to
1815
  @type instance: L{objects.Instance}
1816
  @param instance: the instance object to whom the disk belongs
1817
  @type cluster_name: str
1818
  @param cluster_name: the cluster name, needed for SSH hostalias
1819
  @type idx: int
1820
  @param idx: the index of the disk in the instance's disk list,
1821
      used to export to the OS scripts environment
1822
  @rtype: None
1823

1824
  """
1825
  inst_os = OSFromDisk(instance.os)
1826
  export_env = OSEnvironment(instance, inst_os)
1827

    
1828
  export_script = inst_os.export_script
1829

    
1830
  logfile = "%s/exp-%s-%s-%s.log" % (constants.LOG_OS_DIR, inst_os.name,
1831
                                     instance.name, int(time.time()))
1832
  if not os.path.exists(constants.LOG_OS_DIR):
1833
    os.mkdir(constants.LOG_OS_DIR, 0750)
1834
  real_disk = _RecursiveFindBD(disk)
1835
  if real_disk is None:
1836
    _Fail("Block device '%s' is not set up", disk)
1837

    
1838
  real_disk.Open()
1839

    
1840
  export_env['EXPORT_DEVICE'] = real_disk.dev_path
1841
  export_env['EXPORT_INDEX'] = str(idx)
1842

    
1843
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1844
  destfile = disk.physical_id[1]
1845

    
1846
  # the target command is built out of three individual commands,
1847
  # which are joined by pipes; we check each individual command for
1848
  # valid parameters
1849
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; cd %s; %s 2>%s",
1850
                               inst_os.path, export_script, logfile)
1851

    
1852
  comprcmd = "gzip"
1853

    
1854
  destcmd = utils.BuildShellCmd("mkdir -p %s && cat > %s/%s",
1855
                                destdir, destdir, destfile)
1856
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1857
                                                   constants.GANETI_RUNAS,
1858
                                                   destcmd)
1859

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

    
1863
  result = utils.RunCmd(["bash", "-c", command], env=export_env)
1864

    
1865
  if result.failed:
1866
    _Fail("OS snapshot export command '%s' returned error: %s"
1867
          " output: %s", command, result.fail_reason, result.output)
1868

    
1869

    
1870
def FinalizeExport(instance, snap_disks):
1871
  """Write out the export configuration information.
1872

1873
  @type instance: L{objects.Instance}
1874
  @param instance: the instance which we export, used for
1875
      saving configuration
1876
  @type snap_disks: list of L{objects.Disk}
1877
  @param snap_disks: list of snapshot block devices, which
1878
      will be used to get the actual name of the dump file
1879

1880
  @rtype: None
1881

1882
  """
1883
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1884
  finaldestdir = os.path.join(constants.EXPORT_DIR, instance.name)
1885

    
1886
  config = objects.SerializableConfigParser()
1887

    
1888
  config.add_section(constants.INISECT_EXP)
1889
  config.set(constants.INISECT_EXP, 'version', '0')
1890
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
1891
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
1892
  config.set(constants.INISECT_EXP, 'os', instance.os)
1893
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
1894

    
1895
  config.add_section(constants.INISECT_INS)
1896
  config.set(constants.INISECT_INS, 'name', instance.name)
1897
  config.set(constants.INISECT_INS, 'memory', '%d' %
1898
             instance.beparams[constants.BE_MEMORY])
1899
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
1900
             instance.beparams[constants.BE_VCPUS])
1901
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
1902

    
1903
  nic_total = 0
1904
  for nic_count, nic in enumerate(instance.nics):
1905
    nic_total += 1
1906
    config.set(constants.INISECT_INS, 'nic%d_mac' %
1907
               nic_count, '%s' % nic.mac)
1908
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
1909
    config.set(constants.INISECT_INS, 'nic%d_bridge' % nic_count,
1910
               '%s' % nic.bridge)
1911
  # TODO: redundant: on load can read nics until it doesn't exist
1912
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_total)
1913

    
1914
  disk_total = 0
1915
  for disk_count, disk in enumerate(snap_disks):
1916
    if disk:
1917
      disk_total += 1
1918
      config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
1919
                 ('%s' % disk.iv_name))
1920
      config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
1921
                 ('%s' % disk.physical_id[1]))
1922
      config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
1923
                 ('%d' % disk.size))
1924

    
1925
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_total)
1926

    
1927
  utils.WriteFile(os.path.join(destdir, constants.EXPORT_CONF_FILE),
1928
                  data=config.Dumps())
1929
  shutil.rmtree(finaldestdir, True)
1930
  shutil.move(destdir, finaldestdir)
1931

    
1932

    
1933
def ExportInfo(dest):
1934
  """Get export configuration information.
1935

1936
  @type dest: str
1937
  @param dest: directory containing the export
1938

1939
  @rtype: L{objects.SerializableConfigParser}
1940
  @return: a serializable config file containing the
1941
      export info
1942

1943
  """
1944
  cff = os.path.join(dest, constants.EXPORT_CONF_FILE)
1945

    
1946
  config = objects.SerializableConfigParser()
1947
  config.read(cff)
1948

    
1949
  if (not config.has_section(constants.INISECT_EXP) or
1950
      not config.has_section(constants.INISECT_INS)):
1951
    _Fail("Export info file doesn't have the required fields")
1952

    
1953
  return config.Dumps()
1954

    
1955

    
1956
def ImportOSIntoInstance(instance, src_node, src_images, cluster_name):
1957
  """Import an os image into an instance.
1958

1959
  @type instance: L{objects.Instance}
1960
  @param instance: instance to import the disks into
1961
  @type src_node: string
1962
  @param src_node: source node for the disk images
1963
  @type src_images: list of string
1964
  @param src_images: absolute paths of the disk images
1965
  @rtype: list of boolean
1966
  @return: each boolean represent the success of importing the n-th disk
1967

1968
  """
1969
  inst_os = OSFromDisk(instance.os)
1970
  import_env = OSEnvironment(instance, inst_os)
1971
  import_script = inst_os.import_script
1972

    
1973
  logfile = "%s/import-%s-%s-%s.log" % (constants.LOG_OS_DIR, instance.os,
1974
                                        instance.name, int(time.time()))
1975
  if not os.path.exists(constants.LOG_OS_DIR):
1976
    os.mkdir(constants.LOG_OS_DIR, 0750)
1977

    
1978
  comprcmd = "gunzip"
1979
  impcmd = utils.BuildShellCmd("(cd %s; %s >%s 2>&1)", inst_os.path,
1980
                               import_script, logfile)
1981

    
1982
  final_result = []
1983
  for idx, image in enumerate(src_images):
1984
    if image:
1985
      destcmd = utils.BuildShellCmd('cat %s', image)
1986
      remotecmd = _GetSshRunner(cluster_name).BuildCmd(src_node,
1987
                                                       constants.GANETI_RUNAS,
1988
                                                       destcmd)
1989
      command = '|'.join([utils.ShellQuoteArgs(remotecmd), comprcmd, impcmd])
1990
      import_env['IMPORT_DEVICE'] = import_env['DISK_%d_PATH' % idx]
1991
      import_env['IMPORT_INDEX'] = str(idx)
1992
      result = utils.RunCmd(command, env=import_env)
1993
      if result.failed:
1994
        logging.error("Disk import command '%s' returned error: %s"
1995
                      " output: %s", command, result.fail_reason,
1996
                      result.output)
1997
        final_result.append("error importing disk %d: %s, %s" %
1998
                            (idx, result.fail_reason, result.output[-100]))
1999

    
2000
  if final_result:
2001
    _Fail("; ".join(final_result), log=False)
2002

    
2003

    
2004
def ListExports():
2005
  """Return a list of exports currently available on this machine.
2006

2007
  @rtype: list
2008
  @return: list of the exports
2009

2010
  """
2011
  if os.path.isdir(constants.EXPORT_DIR):
2012
    return utils.ListVisibleFiles(constants.EXPORT_DIR)
2013
  else:
2014
    _Fail("No exports directory")
2015

    
2016

    
2017
def RemoveExport(export):
2018
  """Remove an existing export from the node.
2019

2020
  @type export: str
2021
  @param export: the name of the export to remove
2022
  @rtype: None
2023

2024
  """
2025
  target = os.path.join(constants.EXPORT_DIR, export)
2026

    
2027
  try:
2028
    shutil.rmtree(target)
2029
  except EnvironmentError, err:
2030
    _Fail("Error while removing the export: %s", err, exc=True)
2031

    
2032

    
2033
def BlockdevRename(devlist):
2034
  """Rename a list of block devices.
2035

2036
  @type devlist: list of tuples
2037
  @param devlist: list of tuples of the form  (disk,
2038
      new_logical_id, new_physical_id); disk is an
2039
      L{objects.Disk} object describing the current disk,
2040
      and new logical_id/physical_id is the name we
2041
      rename it to
2042
  @rtype: boolean
2043
  @return: True if all renames succeeded, False otherwise
2044

2045
  """
2046
  msgs = []
2047
  result = True
2048
  for disk, unique_id in devlist:
2049
    dev = _RecursiveFindBD(disk)
2050
    if dev is None:
2051
      msgs.append("Can't find device %s in rename" % str(disk))
2052
      result = False
2053
      continue
2054
    try:
2055
      old_rpath = dev.dev_path
2056
      dev.Rename(unique_id)
2057
      new_rpath = dev.dev_path
2058
      if old_rpath != new_rpath:
2059
        DevCacheManager.RemoveCache(old_rpath)
2060
        # FIXME: we should add the new cache information here, like:
2061
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2062
        # but we don't have the owner here - maybe parse from existing
2063
        # cache? for now, we only lose lvm data when we rename, which
2064
        # is less critical than DRBD or MD
2065
    except errors.BlockDeviceError, err:
2066
      msgs.append("Can't rename device '%s' to '%s': %s" %
2067
                  (dev, unique_id, err))
2068
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2069
      result = False
2070
  if not result:
2071
    _Fail("; ".join(msgs))
2072

    
2073

    
2074
def _TransformFileStorageDir(file_storage_dir):
2075
  """Checks whether given file_storage_dir is valid.
2076

2077
  Checks wheter the given file_storage_dir is within the cluster-wide
2078
  default file_storage_dir stored in SimpleStore. Only paths under that
2079
  directory are allowed.
2080

2081
  @type file_storage_dir: str
2082
  @param file_storage_dir: the path to check
2083

2084
  @return: the normalized path if valid, None otherwise
2085

2086
  """
2087
  cfg = _GetConfig()
2088
  file_storage_dir = os.path.normpath(file_storage_dir)
2089
  base_file_storage_dir = cfg.GetFileStorageDir()
2090
  if (not os.path.commonprefix([file_storage_dir, base_file_storage_dir]) ==
2091
      base_file_storage_dir):
2092
    _Fail("File storage directory '%s' is not under base file"
2093
          " storage directory '%s'", file_storage_dir, base_file_storage_dir)
2094
  return file_storage_dir
2095

    
2096

    
2097
def CreateFileStorageDir(file_storage_dir):
2098
  """Create file storage directory.
2099

2100
  @type file_storage_dir: str
2101
  @param file_storage_dir: directory to create
2102

2103
  @rtype: tuple
2104
  @return: tuple with first element a boolean indicating wheter dir
2105
      creation was successful or not
2106

2107
  """
2108
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2109
  if os.path.exists(file_storage_dir):
2110
    if not os.path.isdir(file_storage_dir):
2111
      _Fail("Specified storage dir '%s' is not a directory",
2112
            file_storage_dir)
2113
  else:
2114
    try:
2115
      os.makedirs(file_storage_dir, 0750)
2116
    except OSError, err:
2117
      _Fail("Cannot create file storage directory '%s': %s",
2118
            file_storage_dir, err, exc=True)
2119

    
2120

    
2121
def RemoveFileStorageDir(file_storage_dir):
2122
  """Remove file storage directory.
2123

2124
  Remove it only if it's empty. If not log an error and return.
2125

2126
  @type file_storage_dir: str
2127
  @param file_storage_dir: the directory we should cleanup
2128
  @rtype: tuple (success,)
2129
  @return: tuple of one element, C{success}, denoting
2130
      whether the operation was successful
2131

2132
  """
2133
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2134
  if os.path.exists(file_storage_dir):
2135
    if not os.path.isdir(file_storage_dir):
2136
      _Fail("Specified Storage directory '%s' is not a directory",
2137
            file_storage_dir)
2138
    # deletes dir only if empty, otherwise we want to fail the rpc call
2139
    try:
2140
      os.rmdir(file_storage_dir)
2141
    except OSError, err:
2142
      _Fail("Cannot remove file storage directory '%s': %s",
2143
            file_storage_dir, err)
2144

    
2145

    
2146
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2147
  """Rename the file storage directory.
2148

2149
  @type old_file_storage_dir: str
2150
  @param old_file_storage_dir: the current path
2151
  @type new_file_storage_dir: str
2152
  @param new_file_storage_dir: the name we should rename to
2153
  @rtype: tuple (success,)
2154
  @return: tuple of one element, C{success}, denoting
2155
      whether the operation was successful
2156

2157
  """
2158
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2159
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2160
  if not os.path.exists(new_file_storage_dir):
2161
    if os.path.isdir(old_file_storage_dir):
2162
      try:
2163
        os.rename(old_file_storage_dir, new_file_storage_dir)
2164
      except OSError, err:
2165
        _Fail("Cannot rename '%s' to '%s': %s",
2166
              old_file_storage_dir, new_file_storage_dir, err)
2167
    else:
2168
      _Fail("Specified storage dir '%s' is not a directory",
2169
            old_file_storage_dir)
2170
  else:
2171
    if os.path.exists(old_file_storage_dir):
2172
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2173
            old_file_storage_dir, new_file_storage_dir)
2174

    
2175

    
2176
def _EnsureJobQueueFile(file_name):
2177
  """Checks whether the given filename is in the queue directory.
2178

2179
  @type file_name: str
2180
  @param file_name: the file name we should check
2181
  @rtype: None
2182
  @raises RPCFail: if the file is not valid
2183

2184
  """
2185
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2186
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2187

    
2188
  if not result:
2189
    _Fail("Passed job queue file '%s' does not belong to"
2190
          " the queue directory '%s'", file_name, queue_dir)
2191

    
2192

    
2193
def JobQueueUpdate(file_name, content):
2194
  """Updates a file in the queue directory.
2195

2196
  This is just a wrapper over L{utils.WriteFile}, with proper
2197
  checking.
2198

2199
  @type file_name: str
2200
  @param file_name: the job file name
2201
  @type content: str
2202
  @param content: the new job contents
2203
  @rtype: boolean
2204
  @return: the success of the operation
2205

2206
  """
2207
  _EnsureJobQueueFile(file_name)
2208

    
2209
  # Write and replace the file atomically
2210
  utils.WriteFile(file_name, data=_Decompress(content))
2211

    
2212

    
2213
def JobQueueRename(old, new):
2214
  """Renames a job queue file.
2215

2216
  This is just a wrapper over os.rename with proper checking.
2217

2218
  @type old: str
2219
  @param old: the old (actual) file name
2220
  @type new: str
2221
  @param new: the desired file name
2222
  @rtype: tuple
2223
  @return: the success of the operation and payload
2224

2225
  """
2226
  _EnsureJobQueueFile(old)
2227
  _EnsureJobQueueFile(new)
2228

    
2229
  utils.RenameFile(old, new, mkdir=True)
2230

    
2231

    
2232
def JobQueueSetDrainFlag(drain_flag):
2233
  """Set the drain flag for the queue.
2234

2235
  This will set or unset the queue drain flag.
2236

2237
  @type drain_flag: boolean
2238
  @param drain_flag: if True, will set the drain flag, otherwise reset it.
2239
  @rtype: truple
2240
  @return: always True, None
2241
  @warning: the function always returns True
2242

2243
  """
2244
  if drain_flag:
2245
    utils.WriteFile(constants.JOB_QUEUE_DRAIN_FILE, data="", close=True)
2246
  else:
2247
    utils.RemoveFile(constants.JOB_QUEUE_DRAIN_FILE)
2248

    
2249

    
2250
def BlockdevClose(instance_name, disks):
2251
  """Closes the given block devices.
2252

2253
  This means they will be switched to secondary mode (in case of
2254
  DRBD).
2255

2256
  @param instance_name: if the argument is not empty, the symlinks
2257
      of this instance will be removed
2258
  @type disks: list of L{objects.Disk}
2259
  @param disks: the list of disks to be closed
2260
  @rtype: tuple (success, message)
2261
  @return: a tuple of success and message, where success
2262
      indicates the succes of the operation, and message
2263
      which will contain the error details in case we
2264
      failed
2265

2266
  """
2267
  bdevs = []
2268
  for cf in disks:
2269
    rd = _RecursiveFindBD(cf)
2270
    if rd is None:
2271
      _Fail("Can't find device %s", cf)
2272
    bdevs.append(rd)
2273

    
2274
  msg = []
2275
  for rd in bdevs:
2276
    try:
2277
      rd.Close()
2278
    except errors.BlockDeviceError, err:
2279
      msg.append(str(err))
2280
  if msg:
2281
    _Fail("Can't make devices secondary: %s", ",".join(msg))
2282
  else:
2283
    if instance_name:
2284
      _RemoveBlockDevLinks(instance_name, disks)
2285

    
2286

    
2287
def ValidateHVParams(hvname, hvparams):
2288
  """Validates the given hypervisor parameters.
2289

2290
  @type hvname: string
2291
  @param hvname: the hypervisor name
2292
  @type hvparams: dict
2293
  @param hvparams: the hypervisor parameters to be validated
2294
  @rtype: None
2295

2296
  """
2297
  try:
2298
    hv_type = hypervisor.GetHypervisor(hvname)
2299
    hv_type.ValidateParameters(hvparams)
2300
  except errors.HypervisorError, err:
2301
    _Fail(str(err), log=False)
2302

    
2303

    
2304
def DemoteFromMC():
2305
  """Demotes the current node from master candidate role.
2306

2307
  """
2308
  # try to ensure we're not the master by mistake
2309
  master, myself = ssconf.GetMasterAndMyself()
2310
  if master == myself:
2311
    _Fail("ssconf status shows I'm the master node, will not demote")
2312
  pid_file = utils.DaemonPidFileName(constants.MASTERD)
2313
  if utils.IsProcessAlive(utils.ReadPidFile(pid_file)):
2314
    _Fail("The master daemon is running, will not demote")
2315
  try:
2316
    if os.path.isfile(constants.CLUSTER_CONF_FILE):
2317
      utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2318
  except EnvironmentError, err:
2319
    if err.errno != errno.ENOENT:
2320
      _Fail("Error while backing up cluster file: %s", err, exc=True)
2321
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2322

    
2323

    
2324
def _FindDisks(nodes_ip, disks):
2325
  """Sets the physical ID on disks and returns the block devices.
2326

2327
  """
2328
  # set the correct physical ID
2329
  my_name = utils.HostInfo().name
2330
  for cf in disks:
2331
    cf.SetPhysicalID(my_name, nodes_ip)
2332

    
2333
  bdevs = []
2334

    
2335
  for cf in disks:
2336
    rd = _RecursiveFindBD(cf)
2337
    if rd is None:
2338
      _Fail("Can't find device %s", cf)
2339
    bdevs.append(rd)
2340
  return bdevs
2341

    
2342

    
2343
def DrbdDisconnectNet(nodes_ip, disks):
2344
  """Disconnects the network on a list of drbd devices.
2345

2346
  """
2347
  bdevs = _FindDisks(nodes_ip, disks)
2348

    
2349
  # disconnect disks
2350
  for rd in bdevs:
2351
    try:
2352
      rd.DisconnectNet()
2353
    except errors.BlockDeviceError, err:
2354
      _Fail("Can't change network configuration to standalone mode: %s",
2355
            err, exc=True)
2356

    
2357

    
2358
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
2359
  """Attaches the network on a list of drbd devices.
2360

2361
  """
2362
  bdevs = _FindDisks(nodes_ip, disks)
2363

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

    
2413

    
2414
def DrbdWaitSync(nodes_ip, disks):
2415
  """Wait until DRBDs have synchronized.
2416

2417
  """
2418
  bdevs = _FindDisks(nodes_ip, disks)
2419

    
2420
  min_resync = 100
2421
  alldone = True
2422
  for rd in bdevs:
2423
    stats = rd.GetProcStatus()
2424
    if not (stats.is_connected or stats.is_in_resync):
2425
      _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
2426
    alldone = alldone and (not stats.is_in_resync)
2427
    if stats.sync_percent is not None:
2428
      min_resync = min(min_resync, stats.sync_percent)
2429

    
2430
  return (alldone, min_resync)
2431

    
2432

    
2433
def PowercycleNode(hypervisor_type):
2434
  """Hard-powercycle the node.
2435

2436
  Because we need to return first, and schedule the powercycle in the
2437
  background, we won't be able to report failures nicely.
2438

2439
  """
2440
  hyper = hypervisor.GetHypervisor(hypervisor_type)
2441
  try:
2442
    pid = os.fork()
2443
  except OSError:
2444
    # if we can't fork, we'll pretend that we're in the child process
2445
    pid = 0
2446
  if pid > 0:
2447
    return "Reboot scheduled in 5 seconds"
2448
  time.sleep(5)
2449
  hyper.PowercycleNode()
2450

    
2451

    
2452
class HooksRunner(object):
2453
  """Hook runner.
2454

2455
  This class is instantiated on the node side (ganeti-noded) and not
2456
  on the master side.
2457

2458
  """
2459
  RE_MASK = re.compile("^[a-zA-Z0-9_-]+$")
2460

    
2461
  def __init__(self, hooks_base_dir=None):
2462
    """Constructor for hooks runner.
2463

2464
    @type hooks_base_dir: str or None
2465
    @param hooks_base_dir: if not None, this overrides the
2466
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
2467

2468
    """
2469
    if hooks_base_dir is None:
2470
      hooks_base_dir = constants.HOOKS_BASE_DIR
2471
    self._BASE_DIR = hooks_base_dir
2472

    
2473
  @staticmethod
2474
  def ExecHook(script, env):
2475
    """Exec one hook script.
2476

2477
    @type script: str
2478
    @param script: the full path to the script
2479
    @type env: dict
2480
    @param env: the environment with which to exec the script
2481
    @rtype: tuple (success, message)
2482
    @return: a tuple of success and message, where success
2483
        indicates the succes of the operation, and message
2484
        which will contain the error details in case we
2485
        failed
2486

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

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

    
2521
    return result == 0, utils.SafeEncode(output.strip())
2522

    
2523
  def RunHooks(self, hpath, phase, env):
2524
    """Run the scripts in the hooks directory.
2525

2526
    @type hpath: str
2527
    @param hpath: the path to the hooks directory which
2528
        holds the scripts
2529
    @type phase: str
2530
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
2531
        L{constants.HOOKS_PHASE_POST}
2532
    @type env: dict
2533
    @param env: dictionary with the environment for the hook
2534
    @rtype: list
2535
    @return: list of 3-element tuples:
2536
      - script path
2537
      - script result, either L{constants.HKR_SUCCESS} or
2538
        L{constants.HKR_FAIL}
2539
      - output of the script
2540

2541
    @raise errors.ProgrammerError: for invalid input
2542
        parameters
2543

2544
    """
2545
    if phase == constants.HOOKS_PHASE_PRE:
2546
      suffix = "pre"
2547
    elif phase == constants.HOOKS_PHASE_POST:
2548
      suffix = "post"
2549
    else:
2550
      _Fail("Unknown hooks phase '%s'", phase)
2551

    
2552
    rr = []
2553

    
2554
    subdir = "%s-%s.d" % (hpath, suffix)
2555
    dir_name = "%s/%s" % (self._BASE_DIR, subdir)
2556
    try:
2557
      dir_contents = utils.ListVisibleFiles(dir_name)
2558
    except OSError:
2559
      # FIXME: must log output in case of failures
2560
      return rr
2561

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

    
2579
    return rr
2580

    
2581

    
2582
class IAllocatorRunner(object):
2583
  """IAllocator runner.
2584

2585
  This class is instantiated on the node side (ganeti-noded) and not on
2586
  the master side.
2587

2588
  """
2589
  def Run(self, name, idata):
2590
    """Run an iallocator script.
2591

2592
    @type name: str
2593
    @param name: the iallocator script name
2594
    @type idata: str
2595
    @param idata: the allocator input data
2596

2597
    @rtype: tuple
2598
    @return: two element tuple of:
2599
       - status
2600
       - either error message or stdout of allocator (for success)
2601

2602
    """
2603
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
2604
                                  os.path.isfile)
2605
    if alloc_script is None:
2606
      _Fail("iallocator module '%s' not found in the search path", name)
2607

    
2608
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
2609
    try:
2610
      os.write(fd, idata)
2611
      os.close(fd)
2612
      result = utils.RunCmd([alloc_script, fin_name])
2613
      if result.failed:
2614
        _Fail("iallocator module '%s' failed: %s, output '%s'",
2615
              name, result.fail_reason, result.output)
2616
    finally:
2617
      os.unlink(fin_name)
2618

    
2619
    return result.stdout
2620

    
2621

    
2622
class DevCacheManager(object):
2623
  """Simple class for managing a cache of block device information.
2624

2625
  """
2626
  _DEV_PREFIX = "/dev/"
2627
  _ROOT_DIR = constants.BDEV_CACHE_DIR
2628

    
2629
  @classmethod
2630
  def _ConvertPath(cls, dev_path):
2631
    """Converts a /dev/name path to the cache file name.
2632

2633
    This replaces slashes with underscores and strips the /dev
2634
    prefix. It then returns the full path to the cache file.
2635

2636
    @type dev_path: str
2637
    @param dev_path: the C{/dev/} path name
2638
    @rtype: str
2639
    @return: the converted path name
2640

2641
    """
2642
    if dev_path.startswith(cls._DEV_PREFIX):
2643
      dev_path = dev_path[len(cls._DEV_PREFIX):]
2644
    dev_path = dev_path.replace("/", "_")
2645
    fpath = "%s/bdev_%s" % (cls._ROOT_DIR, dev_path)
2646
    return fpath
2647

    
2648
  @classmethod
2649
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
2650
    """Updates the cache information for a given device.
2651

2652
    @type dev_path: str
2653
    @param dev_path: the pathname of the device
2654
    @type owner: str
2655
    @param owner: the owner (instance name) of the device
2656
    @type on_primary: bool
2657
    @param on_primary: whether this is the primary
2658
        node nor not
2659
    @type iv_name: str
2660
    @param iv_name: the instance-visible name of the
2661
        device, as in objects.Disk.iv_name
2662

2663
    @rtype: None
2664

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

    
2682
  @classmethod
2683
  def RemoveCache(cls, dev_path):
2684
    """Remove data for a dev_path.
2685

2686
    This is just a wrapper over L{utils.RemoveFile} with a converted
2687
    path name and logging.
2688

2689
    @type dev_path: str
2690
    @param dev_path: the pathname of the device
2691

2692
    @rtype: None
2693

2694
    """
2695
    if dev_path is None:
2696
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
2697
      return
2698
    fpath = cls._ConvertPath(dev_path)
2699
    try:
2700
      utils.RemoveFile(fpath)
2701
    except EnvironmentError, err:
2702
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)