Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ 858f3d18

History | View | Annotate | Download (83 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 BlockdevExport(disk, dest_node, dest_path, cluster_name):
1463
  """Export a block device to a remote node.
1464

1465
  @type disk: L{objects.Disk}
1466
  @param disk: the description of the disk to export
1467
  @type dest_node: str
1468
  @param dest_node: the destination node to export to
1469
  @type dest_path: str
1470
  @param dest_path: the destination path on the target node
1471
  @type cluster_name: str
1472
  @param cluster_name: the cluster name, needed for SSH hostalias
1473
  @rtype: None
1474

1475
  """
1476
  real_disk = _RecursiveFindBD(disk)
1477
  if real_disk is None:
1478
    _Fail("Block device '%s' is not set up", disk)
1479

    
1480
  real_disk.Open()
1481

    
1482
  # the block size on the read dd is 1MiB to match our units
1483
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
1484
                               "dd if=%s bs=1048576 count=%s",
1485
                               real_disk.dev_path, str(disk.size))
1486

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

    
1496
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1497
                                                   constants.GANETI_RUNAS,
1498
                                                   destcmd)
1499

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

    
1503
  result = utils.RunCmd(["bash", "-c", command])
1504

    
1505
  if result.failed:
1506
    _Fail("Disk copy command '%s' returned error: %s"
1507
          " output: %s", command, result.fail_reason, result.output)
1508

    
1509

    
1510
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1511
  """Write a file to the filesystem.
1512

1513
  This allows the master to overwrite(!) a file. It will only perform
1514
  the operation if the file belongs to a list of configuration files.
1515

1516
  @type file_name: str
1517
  @param file_name: the target file name
1518
  @type data: str
1519
  @param data: the new contents of the file
1520
  @type mode: int
1521
  @param mode: the mode to give the file (can be None)
1522
  @type uid: int
1523
  @param uid: the owner of the file (can be -1 for default)
1524
  @type gid: int
1525
  @param gid: the group of the file (can be -1 for default)
1526
  @type atime: float
1527
  @param atime: the atime to set on the file (can be None)
1528
  @type mtime: float
1529
  @param mtime: the mtime to set on the file (can be None)
1530
  @rtype: None
1531

1532
  """
1533
  if not os.path.isabs(file_name):
1534
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1535

    
1536
  if file_name not in _ALLOWED_UPLOAD_FILES:
1537
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1538
          file_name)
1539

    
1540
  raw_data = _Decompress(data)
1541

    
1542
  utils.WriteFile(file_name, data=raw_data, mode=mode, uid=uid, gid=gid,
1543
                  atime=atime, mtime=mtime)
1544

    
1545

    
1546
def WriteSsconfFiles(values):
1547
  """Update all ssconf files.
1548

1549
  Wrapper around the SimpleStore.WriteFiles.
1550

1551
  """
1552
  ssconf.SimpleStore().WriteFiles(values)
1553

    
1554

    
1555
def _ErrnoOrStr(err):
1556
  """Format an EnvironmentError exception.
1557

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

1562
  @type err: L{EnvironmentError}
1563
  @param err: the exception to format
1564

1565
  """
1566
  if hasattr(err, 'errno'):
1567
    detail = errno.errorcode[err.errno]
1568
  else:
1569
    detail = str(err)
1570
  return detail
1571

    
1572

    
1573
def _OSOndiskAPIVersion(name, os_dir):
1574
  """Compute and return the API version of a given OS.
1575

1576
  This function will try to read the API version of the OS given by
1577
  the 'name' parameter and residing in the 'os_dir' directory.
1578

1579
  @type name: str
1580
  @param name: the OS name we should look for
1581
  @type os_dir: str
1582
  @param os_dir: the directory inwhich we should look for the OS
1583
  @rtype: tuple
1584
  @return: tuple (status, data) with status denoting the validity and
1585
      data holding either the vaid versions or an error message
1586

1587
  """
1588
  api_file = os.path.sep.join([os_dir, "ganeti_api_version"])
1589

    
1590
  try:
1591
    st = os.stat(api_file)
1592
  except EnvironmentError, err:
1593
    return False, ("Required file 'ganeti_api_version' file not"
1594
                   " found under path %s: %s" % (os_dir, _ErrnoOrStr(err)))
1595

    
1596
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1597
    return False, ("File 'ganeti_api_version' file at %s is not"
1598
                   " a regular file" % os_dir)
1599

    
1600
  try:
1601
    api_versions = utils.ReadFile(api_file).splitlines()
1602
  except EnvironmentError, err:
1603
    return False, ("Error while reading the API version file at %s: %s" %
1604
                   (api_file, _ErrnoOrStr(err)))
1605

    
1606
  try:
1607
    api_versions = [int(version.strip()) for version in api_versions]
1608
  except (TypeError, ValueError), err:
1609
    return False, ("API version(s) can't be converted to integer: %s" %
1610
                   str(err))
1611

    
1612
  return True, api_versions
1613

    
1614

    
1615
def DiagnoseOS(top_dirs=None):
1616
  """Compute the validity for all OSes.
1617

1618
  @type top_dirs: list
1619
  @param top_dirs: the list of directories in which to
1620
      search (if not given defaults to
1621
      L{constants.OS_SEARCH_PATH})
1622
  @rtype: list of L{objects.OS}
1623
  @return: a list of tuples (name, path, status, diagnose)
1624
      for all (potential) OSes under all search paths, where:
1625
          - name is the (potential) OS name
1626
          - path is the full path to the OS
1627
          - status True/False is the validity of the OS
1628
          - diagnose is the error message for an invalid OS, otherwise empty
1629

1630
  """
1631
  if top_dirs is None:
1632
    top_dirs = constants.OS_SEARCH_PATH
1633

    
1634
  result = []
1635
  for dir_name in top_dirs:
1636
    if os.path.isdir(dir_name):
1637
      try:
1638
        f_names = utils.ListVisibleFiles(dir_name)
1639
      except EnvironmentError, err:
1640
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
1641
        break
1642
      for name in f_names:
1643
        os_path = os.path.sep.join([dir_name, name])
1644
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
1645
        if status:
1646
          diagnose = ""
1647
        else:
1648
          diagnose = os_inst
1649
        result.append((name, os_path, status, diagnose))
1650

    
1651
  return result
1652

    
1653

    
1654
def _TryOSFromDisk(name, base_dir=None):
1655
  """Create an OS instance from disk.
1656

1657
  This function will return an OS instance if the given name is a
1658
  valid OS name.
1659

1660
  @type base_dir: string
1661
  @keyword base_dir: Base directory containing OS installations.
1662
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1663
  @rtype: tuple
1664
  @return: success and either the OS instance if we find a valid one,
1665
      or error message
1666

1667
  """
1668
  if base_dir is None:
1669
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1670
    if os_dir is None:
1671
      return False, "Directory for OS %s not found in search path" % name
1672
  else:
1673
    os_dir = os.path.sep.join([base_dir, name])
1674

    
1675
  status, api_versions = _OSOndiskAPIVersion(name, os_dir)
1676
  if not status:
1677
    # push the error up
1678
    return status, api_versions
1679

    
1680
  if not constants.OS_API_VERSIONS.intersection(api_versions):
1681
    return False, ("API version mismatch for path '%s': found %s, want %s." %
1682
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
1683

    
1684
  # OS Scripts dictionary, we will populate it with the actual script names
1685
  os_scripts = dict.fromkeys(constants.OS_SCRIPTS)
1686

    
1687
  for script in os_scripts:
1688
    os_scripts[script] = os.path.sep.join([os_dir, script])
1689

    
1690
    try:
1691
      st = os.stat(os_scripts[script])
1692
    except EnvironmentError, err:
1693
      return False, ("Script '%s' under path '%s' is missing (%s)" %
1694
                     (script, os_dir, _ErrnoOrStr(err)))
1695

    
1696
    if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1697
      return False, ("Script '%s' under path '%s' is not executable" %
1698
                     (script, os_dir))
1699

    
1700
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1701
      return False, ("Script '%s' under path '%s' is not a regular file" %
1702
                     (script, os_dir))
1703

    
1704
  os_obj = objects.OS(name=name, path=os_dir,
1705
                      create_script=os_scripts[constants.OS_SCRIPT_CREATE],
1706
                      export_script=os_scripts[constants.OS_SCRIPT_EXPORT],
1707
                      import_script=os_scripts[constants.OS_SCRIPT_IMPORT],
1708
                      rename_script=os_scripts[constants.OS_SCRIPT_RENAME],
1709
                      api_versions=api_versions)
1710
  return True, os_obj
1711

    
1712

    
1713
def OSFromDisk(name, base_dir=None):
1714
  """Create an OS instance from disk.
1715

1716
  This function will return an OS instance if the given name is a
1717
  valid OS name. Otherwise, it will raise an appropriate
1718
  L{RPCFail} exception, detailing why this is not a valid OS.
1719

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

1723
  @type base_dir: string
1724
  @keyword base_dir: Base directory containing OS installations.
1725
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1726
  @rtype: L{objects.OS}
1727
  @return: the OS instance if we find a valid one
1728
  @raise RPCFail: if we don't find a valid OS
1729

1730
  """
1731
  status, payload = _TryOSFromDisk(name, base_dir)
1732

    
1733
  if not status:
1734
    _Fail(payload)
1735

    
1736
  return payload
1737

    
1738

    
1739
def OSEnvironment(instance, os, debug=0):
1740
  """Calculate the environment for an os script.
1741

1742
  @type instance: L{objects.Instance}
1743
  @param instance: target instance for the os script run
1744
  @type os: L{objects.OS}
1745
  @param os: operating system for which the environment is being built
1746
  @type debug: integer
1747
  @param debug: debug level (0 or 1, for OS Api 10)
1748
  @rtype: dict
1749
  @return: dict of environment variables
1750
  @raise errors.BlockDeviceError: if the block device
1751
      cannot be found
1752

1753
  """
1754
  result = {}
1755
  api_version = max(constants.OS_API_VERSIONS.intersection(os.api_versions))
1756
  result['OS_API_VERSION'] = '%d' % api_version
1757
  result['INSTANCE_NAME'] = instance.name
1758
  result['INSTANCE_OS'] = instance.os
1759
  result['HYPERVISOR'] = instance.hypervisor
1760
  result['DISK_COUNT'] = '%d' % len(instance.disks)
1761
  result['NIC_COUNT'] = '%d' % len(instance.nics)
1762
  result['DEBUG_LEVEL'] = '%d' % debug
1763
  for idx, disk in enumerate(instance.disks):
1764
    real_disk = _RecursiveFindBD(disk)
1765
    if real_disk is None:
1766
      raise errors.BlockDeviceError("Block device '%s' is not set up" %
1767
                                    str(disk))
1768
    real_disk.Open()
1769
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
1770
    result['DISK_%d_ACCESS' % idx] = disk.mode
1771
    if constants.HV_DISK_TYPE in instance.hvparams:
1772
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
1773
        instance.hvparams[constants.HV_DISK_TYPE]
1774
    if disk.dev_type in constants.LDS_BLOCK:
1775
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
1776
    elif disk.dev_type == constants.LD_FILE:
1777
      result['DISK_%d_BACKEND_TYPE' % idx] = \
1778
        'file:%s' % disk.physical_id[0]
1779
  for idx, nic in enumerate(instance.nics):
1780
    result['NIC_%d_MAC' % idx] = nic.mac
1781
    if nic.ip:
1782
      result['NIC_%d_IP' % idx] = nic.ip
1783
    result['NIC_%d_MODE' % idx] = nic.nicparams[constants.NIC_MODE]
1784
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
1785
      result['NIC_%d_BRIDGE' % idx] = nic.nicparams[constants.NIC_LINK]
1786
    if nic.nicparams[constants.NIC_LINK]:
1787
      result['NIC_%d_LINK' % idx] = nic.nicparams[constants.NIC_LINK]
1788
    if constants.HV_NIC_TYPE in instance.hvparams:
1789
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
1790
        instance.hvparams[constants.HV_NIC_TYPE]
1791

    
1792
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
1793
    for key, value in source.items():
1794
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
1795

    
1796
  return result
1797

    
1798
def BlockdevGrow(disk, amount):
1799
  """Grow a stack of block devices.
1800

1801
  This function is called recursively, with the childrens being the
1802
  first ones to resize.
1803

1804
  @type disk: L{objects.Disk}
1805
  @param disk: the disk to be grown
1806
  @rtype: (status, result)
1807
  @return: a tuple with the status of the operation
1808
      (True/False), and the errors message if status
1809
      is False
1810

1811
  """
1812
  r_dev = _RecursiveFindBD(disk)
1813
  if r_dev is None:
1814
    _Fail("Cannot find block device %s", disk)
1815

    
1816
  try:
1817
    r_dev.Grow(amount)
1818
  except errors.BlockDeviceError, err:
1819
    _Fail("Failed to grow block device: %s", err, exc=True)
1820

    
1821

    
1822
def BlockdevSnapshot(disk):
1823
  """Create a snapshot copy of a block device.
1824

1825
  This function is called recursively, and the snapshot is actually created
1826
  just for the leaf lvm backend device.
1827

1828
  @type disk: L{objects.Disk}
1829
  @param disk: the disk to be snapshotted
1830
  @rtype: string
1831
  @return: snapshot disk path
1832

1833
  """
1834
  if disk.children:
1835
    if len(disk.children) == 1:
1836
      # only one child, let's recurse on it
1837
      return BlockdevSnapshot(disk.children[0])
1838
    else:
1839
      # more than one child, choose one that matches
1840
      for child in disk.children:
1841
        if child.size == disk.size:
1842
          # return implies breaking the loop
1843
          return BlockdevSnapshot(child)
1844
  elif disk.dev_type == constants.LD_LV:
1845
    r_dev = _RecursiveFindBD(disk)
1846
    if r_dev is not None:
1847
      # let's stay on the safe side and ask for the full size, for now
1848
      return r_dev.Snapshot(disk.size)
1849
    else:
1850
      _Fail("Cannot find block device %s", disk)
1851
  else:
1852
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
1853
          disk.unique_id, disk.dev_type)
1854

    
1855

    
1856
def ExportSnapshot(disk, dest_node, instance, cluster_name, idx):
1857
  """Export a block device snapshot to a remote node.
1858

1859
  @type disk: L{objects.Disk}
1860
  @param disk: the description of the disk to export
1861
  @type dest_node: str
1862
  @param dest_node: the destination node to export to
1863
  @type instance: L{objects.Instance}
1864
  @param instance: the instance object to whom the disk belongs
1865
  @type cluster_name: str
1866
  @param cluster_name: the cluster name, needed for SSH hostalias
1867
  @type idx: int
1868
  @param idx: the index of the disk in the instance's disk list,
1869
      used to export to the OS scripts environment
1870
  @rtype: None
1871

1872
  """
1873
  inst_os = OSFromDisk(instance.os)
1874
  export_env = OSEnvironment(instance, inst_os)
1875

    
1876
  export_script = inst_os.export_script
1877

    
1878
  logfile = "%s/exp-%s-%s-%s.log" % (constants.LOG_OS_DIR, inst_os.name,
1879
                                     instance.name, int(time.time()))
1880
  if not os.path.exists(constants.LOG_OS_DIR):
1881
    os.mkdir(constants.LOG_OS_DIR, 0750)
1882
  real_disk = _RecursiveFindBD(disk)
1883
  if real_disk is None:
1884
    _Fail("Block device '%s' is not set up", disk)
1885

    
1886
  real_disk.Open()
1887

    
1888
  export_env['EXPORT_DEVICE'] = real_disk.dev_path
1889
  export_env['EXPORT_INDEX'] = str(idx)
1890

    
1891
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1892
  destfile = disk.physical_id[1]
1893

    
1894
  # the target command is built out of three individual commands,
1895
  # which are joined by pipes; we check each individual command for
1896
  # valid parameters
1897
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; cd %s; %s 2>%s",
1898
                               inst_os.path, export_script, logfile)
1899

    
1900
  comprcmd = "gzip"
1901

    
1902
  destcmd = utils.BuildShellCmd("mkdir -p %s && cat > %s/%s",
1903
                                destdir, destdir, destfile)
1904
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1905
                                                   constants.GANETI_RUNAS,
1906
                                                   destcmd)
1907

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

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

    
1913
  if result.failed:
1914
    _Fail("OS snapshot export command '%s' returned error: %s"
1915
          " output: %s", command, result.fail_reason, result.output)
1916

    
1917

    
1918
def FinalizeExport(instance, snap_disks):
1919
  """Write out the export configuration information.
1920

1921
  @type instance: L{objects.Instance}
1922
  @param instance: the instance which we export, used for
1923
      saving configuration
1924
  @type snap_disks: list of L{objects.Disk}
1925
  @param snap_disks: list of snapshot block devices, which
1926
      will be used to get the actual name of the dump file
1927

1928
  @rtype: None
1929

1930
  """
1931
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1932
  finaldestdir = os.path.join(constants.EXPORT_DIR, instance.name)
1933

    
1934
  config = objects.SerializableConfigParser()
1935

    
1936
  config.add_section(constants.INISECT_EXP)
1937
  config.set(constants.INISECT_EXP, 'version', '0')
1938
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
1939
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
1940
  config.set(constants.INISECT_EXP, 'os', instance.os)
1941
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
1942

    
1943
  config.add_section(constants.INISECT_INS)
1944
  config.set(constants.INISECT_INS, 'name', instance.name)
1945
  config.set(constants.INISECT_INS, 'memory', '%d' %
1946
             instance.beparams[constants.BE_MEMORY])
1947
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
1948
             instance.beparams[constants.BE_VCPUS])
1949
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
1950

    
1951
  nic_total = 0
1952
  for nic_count, nic in enumerate(instance.nics):
1953
    nic_total += 1
1954
    config.set(constants.INISECT_INS, 'nic%d_mac' %
1955
               nic_count, '%s' % nic.mac)
1956
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
1957
    config.set(constants.INISECT_INS, 'nic%d_bridge' % nic_count,
1958
               '%s' % nic.bridge)
1959
  # TODO: redundant: on load can read nics until it doesn't exist
1960
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_total)
1961

    
1962
  disk_total = 0
1963
  for disk_count, disk in enumerate(snap_disks):
1964
    if disk:
1965
      disk_total += 1
1966
      config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
1967
                 ('%s' % disk.iv_name))
1968
      config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
1969
                 ('%s' % disk.physical_id[1]))
1970
      config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
1971
                 ('%d' % disk.size))
1972

    
1973
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_total)
1974

    
1975
  utils.WriteFile(os.path.join(destdir, constants.EXPORT_CONF_FILE),
1976
                  data=config.Dumps())
1977
  shutil.rmtree(finaldestdir, True)
1978
  shutil.move(destdir, finaldestdir)
1979

    
1980

    
1981
def ExportInfo(dest):
1982
  """Get export configuration information.
1983

1984
  @type dest: str
1985
  @param dest: directory containing the export
1986

1987
  @rtype: L{objects.SerializableConfigParser}
1988
  @return: a serializable config file containing the
1989
      export info
1990

1991
  """
1992
  cff = os.path.join(dest, constants.EXPORT_CONF_FILE)
1993

    
1994
  config = objects.SerializableConfigParser()
1995
  config.read(cff)
1996

    
1997
  if (not config.has_section(constants.INISECT_EXP) or
1998
      not config.has_section(constants.INISECT_INS)):
1999
    _Fail("Export info file doesn't have the required fields")
2000

    
2001
  return config.Dumps()
2002

    
2003

    
2004
def ImportOSIntoInstance(instance, src_node, src_images, cluster_name):
2005
  """Import an os image into an instance.
2006

2007
  @type instance: L{objects.Instance}
2008
  @param instance: instance to import the disks into
2009
  @type src_node: string
2010
  @param src_node: source node for the disk images
2011
  @type src_images: list of string
2012
  @param src_images: absolute paths of the disk images
2013
  @rtype: list of boolean
2014
  @return: each boolean represent the success of importing the n-th disk
2015

2016
  """
2017
  inst_os = OSFromDisk(instance.os)
2018
  import_env = OSEnvironment(instance, inst_os)
2019
  import_script = inst_os.import_script
2020

    
2021
  logfile = "%s/import-%s-%s-%s.log" % (constants.LOG_OS_DIR, instance.os,
2022
                                        instance.name, int(time.time()))
2023
  if not os.path.exists(constants.LOG_OS_DIR):
2024
    os.mkdir(constants.LOG_OS_DIR, 0750)
2025

    
2026
  comprcmd = "gunzip"
2027
  impcmd = utils.BuildShellCmd("(cd %s; %s >%s 2>&1)", inst_os.path,
2028
                               import_script, logfile)
2029

    
2030
  final_result = []
2031
  for idx, image in enumerate(src_images):
2032
    if image:
2033
      destcmd = utils.BuildShellCmd('cat %s', image)
2034
      remotecmd = _GetSshRunner(cluster_name).BuildCmd(src_node,
2035
                                                       constants.GANETI_RUNAS,
2036
                                                       destcmd)
2037
      command = '|'.join([utils.ShellQuoteArgs(remotecmd), comprcmd, impcmd])
2038
      import_env['IMPORT_DEVICE'] = import_env['DISK_%d_PATH' % idx]
2039
      import_env['IMPORT_INDEX'] = str(idx)
2040
      result = utils.RunCmd(command, env=import_env)
2041
      if result.failed:
2042
        logging.error("Disk import command '%s' returned error: %s"
2043
                      " output: %s", command, result.fail_reason,
2044
                      result.output)
2045
        final_result.append("error importing disk %d: %s, %s" %
2046
                            (idx, result.fail_reason, result.output[-100]))
2047

    
2048
  if final_result:
2049
    _Fail("; ".join(final_result), log=False)
2050

    
2051

    
2052
def ListExports():
2053
  """Return a list of exports currently available on this machine.
2054

2055
  @rtype: list
2056
  @return: list of the exports
2057

2058
  """
2059
  if os.path.isdir(constants.EXPORT_DIR):
2060
    return utils.ListVisibleFiles(constants.EXPORT_DIR)
2061
  else:
2062
    _Fail("No exports directory")
2063

    
2064

    
2065
def RemoveExport(export):
2066
  """Remove an existing export from the node.
2067

2068
  @type export: str
2069
  @param export: the name of the export to remove
2070
  @rtype: None
2071

2072
  """
2073
  target = os.path.join(constants.EXPORT_DIR, export)
2074

    
2075
  try:
2076
    shutil.rmtree(target)
2077
  except EnvironmentError, err:
2078
    _Fail("Error while removing the export: %s", err, exc=True)
2079

    
2080

    
2081
def BlockdevRename(devlist):
2082
  """Rename a list of block devices.
2083

2084
  @type devlist: list of tuples
2085
  @param devlist: list of tuples of the form  (disk,
2086
      new_logical_id, new_physical_id); disk is an
2087
      L{objects.Disk} object describing the current disk,
2088
      and new logical_id/physical_id is the name we
2089
      rename it to
2090
  @rtype: boolean
2091
  @return: True if all renames succeeded, False otherwise
2092

2093
  """
2094
  msgs = []
2095
  result = True
2096
  for disk, unique_id in devlist:
2097
    dev = _RecursiveFindBD(disk)
2098
    if dev is None:
2099
      msgs.append("Can't find device %s in rename" % str(disk))
2100
      result = False
2101
      continue
2102
    try:
2103
      old_rpath = dev.dev_path
2104
      dev.Rename(unique_id)
2105
      new_rpath = dev.dev_path
2106
      if old_rpath != new_rpath:
2107
        DevCacheManager.RemoveCache(old_rpath)
2108
        # FIXME: we should add the new cache information here, like:
2109
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2110
        # but we don't have the owner here - maybe parse from existing
2111
        # cache? for now, we only lose lvm data when we rename, which
2112
        # is less critical than DRBD or MD
2113
    except errors.BlockDeviceError, err:
2114
      msgs.append("Can't rename device '%s' to '%s': %s" %
2115
                  (dev, unique_id, err))
2116
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2117
      result = False
2118
  if not result:
2119
    _Fail("; ".join(msgs))
2120

    
2121

    
2122
def _TransformFileStorageDir(file_storage_dir):
2123
  """Checks whether given file_storage_dir is valid.
2124

2125
  Checks wheter the given file_storage_dir is within the cluster-wide
2126
  default file_storage_dir stored in SimpleStore. Only paths under that
2127
  directory are allowed.
2128

2129
  @type file_storage_dir: str
2130
  @param file_storage_dir: the path to check
2131

2132
  @return: the normalized path if valid, None otherwise
2133

2134
  """
2135
  cfg = _GetConfig()
2136
  file_storage_dir = os.path.normpath(file_storage_dir)
2137
  base_file_storage_dir = cfg.GetFileStorageDir()
2138
  if (not os.path.commonprefix([file_storage_dir, base_file_storage_dir]) ==
2139
      base_file_storage_dir):
2140
    _Fail("File storage directory '%s' is not under base file"
2141
          " storage directory '%s'", file_storage_dir, base_file_storage_dir)
2142
  return file_storage_dir
2143

    
2144

    
2145
def CreateFileStorageDir(file_storage_dir):
2146
  """Create file storage directory.
2147

2148
  @type file_storage_dir: str
2149
  @param file_storage_dir: directory to create
2150

2151
  @rtype: tuple
2152
  @return: tuple with first element a boolean indicating wheter dir
2153
      creation was successful or not
2154

2155
  """
2156
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2157
  if os.path.exists(file_storage_dir):
2158
    if not os.path.isdir(file_storage_dir):
2159
      _Fail("Specified storage dir '%s' is not a directory",
2160
            file_storage_dir)
2161
  else:
2162
    try:
2163
      os.makedirs(file_storage_dir, 0750)
2164
    except OSError, err:
2165
      _Fail("Cannot create file storage directory '%s': %s",
2166
            file_storage_dir, err, exc=True)
2167

    
2168

    
2169
def RemoveFileStorageDir(file_storage_dir):
2170
  """Remove file storage directory.
2171

2172
  Remove it only if it's empty. If not log an error and return.
2173

2174
  @type file_storage_dir: str
2175
  @param file_storage_dir: the directory we should cleanup
2176
  @rtype: tuple (success,)
2177
  @return: tuple of one element, C{success}, denoting
2178
      whether the operation was successful
2179

2180
  """
2181
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2182
  if os.path.exists(file_storage_dir):
2183
    if not os.path.isdir(file_storage_dir):
2184
      _Fail("Specified Storage directory '%s' is not a directory",
2185
            file_storage_dir)
2186
    # deletes dir only if empty, otherwise we want to fail the rpc call
2187
    try:
2188
      os.rmdir(file_storage_dir)
2189
    except OSError, err:
2190
      _Fail("Cannot remove file storage directory '%s': %s",
2191
            file_storage_dir, err)
2192

    
2193

    
2194
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2195
  """Rename the file storage directory.
2196

2197
  @type old_file_storage_dir: str
2198
  @param old_file_storage_dir: the current path
2199
  @type new_file_storage_dir: str
2200
  @param new_file_storage_dir: the name we should rename to
2201
  @rtype: tuple (success,)
2202
  @return: tuple of one element, C{success}, denoting
2203
      whether the operation was successful
2204

2205
  """
2206
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2207
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2208
  if not os.path.exists(new_file_storage_dir):
2209
    if os.path.isdir(old_file_storage_dir):
2210
      try:
2211
        os.rename(old_file_storage_dir, new_file_storage_dir)
2212
      except OSError, err:
2213
        _Fail("Cannot rename '%s' to '%s': %s",
2214
              old_file_storage_dir, new_file_storage_dir, err)
2215
    else:
2216
      _Fail("Specified storage dir '%s' is not a directory",
2217
            old_file_storage_dir)
2218
  else:
2219
    if os.path.exists(old_file_storage_dir):
2220
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2221
            old_file_storage_dir, new_file_storage_dir)
2222

    
2223

    
2224
def _EnsureJobQueueFile(file_name):
2225
  """Checks whether the given filename is in the queue directory.
2226

2227
  @type file_name: str
2228
  @param file_name: the file name we should check
2229
  @rtype: None
2230
  @raises RPCFail: if the file is not valid
2231

2232
  """
2233
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2234
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2235

    
2236
  if not result:
2237
    _Fail("Passed job queue file '%s' does not belong to"
2238
          " the queue directory '%s'", file_name, queue_dir)
2239

    
2240

    
2241
def JobQueueUpdate(file_name, content):
2242
  """Updates a file in the queue directory.
2243

2244
  This is just a wrapper over L{utils.WriteFile}, with proper
2245
  checking.
2246

2247
  @type file_name: str
2248
  @param file_name: the job file name
2249
  @type content: str
2250
  @param content: the new job contents
2251
  @rtype: boolean
2252
  @return: the success of the operation
2253

2254
  """
2255
  _EnsureJobQueueFile(file_name)
2256

    
2257
  # Write and replace the file atomically
2258
  utils.WriteFile(file_name, data=_Decompress(content))
2259

    
2260

    
2261
def JobQueueRename(old, new):
2262
  """Renames a job queue file.
2263

2264
  This is just a wrapper over os.rename with proper checking.
2265

2266
  @type old: str
2267
  @param old: the old (actual) file name
2268
  @type new: str
2269
  @param new: the desired file name
2270
  @rtype: tuple
2271
  @return: the success of the operation and payload
2272

2273
  """
2274
  _EnsureJobQueueFile(old)
2275
  _EnsureJobQueueFile(new)
2276

    
2277
  utils.RenameFile(old, new, mkdir=True)
2278

    
2279

    
2280
def JobQueueSetDrainFlag(drain_flag):
2281
  """Set the drain flag for the queue.
2282

2283
  This will set or unset the queue drain flag.
2284

2285
  @type drain_flag: boolean
2286
  @param drain_flag: if True, will set the drain flag, otherwise reset it.
2287
  @rtype: truple
2288
  @return: always True, None
2289
  @warning: the function always returns True
2290

2291
  """
2292
  if drain_flag:
2293
    utils.WriteFile(constants.JOB_QUEUE_DRAIN_FILE, data="", close=True)
2294
  else:
2295
    utils.RemoveFile(constants.JOB_QUEUE_DRAIN_FILE)
2296

    
2297

    
2298
def BlockdevClose(instance_name, disks):
2299
  """Closes the given block devices.
2300

2301
  This means they will be switched to secondary mode (in case of
2302
  DRBD).
2303

2304
  @param instance_name: if the argument is not empty, the symlinks
2305
      of this instance will be removed
2306
  @type disks: list of L{objects.Disk}
2307
  @param disks: the list of disks to be closed
2308
  @rtype: tuple (success, message)
2309
  @return: a tuple of success and message, where success
2310
      indicates the succes of the operation, and message
2311
      which will contain the error details in case we
2312
      failed
2313

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

    
2322
  msg = []
2323
  for rd in bdevs:
2324
    try:
2325
      rd.Close()
2326
    except errors.BlockDeviceError, err:
2327
      msg.append(str(err))
2328
  if msg:
2329
    _Fail("Can't make devices secondary: %s", ",".join(msg))
2330
  else:
2331
    if instance_name:
2332
      _RemoveBlockDevLinks(instance_name, disks)
2333

    
2334

    
2335
def ValidateHVParams(hvname, hvparams):
2336
  """Validates the given hypervisor parameters.
2337

2338
  @type hvname: string
2339
  @param hvname: the hypervisor name
2340
  @type hvparams: dict
2341
  @param hvparams: the hypervisor parameters to be validated
2342
  @rtype: None
2343

2344
  """
2345
  try:
2346
    hv_type = hypervisor.GetHypervisor(hvname)
2347
    hv_type.ValidateParameters(hvparams)
2348
  except errors.HypervisorError, err:
2349
    _Fail(str(err), log=False)
2350

    
2351

    
2352
def DemoteFromMC():
2353
  """Demotes the current node from master candidate role.
2354

2355
  """
2356
  # try to ensure we're not the master by mistake
2357
  master, myself = ssconf.GetMasterAndMyself()
2358
  if master == myself:
2359
    _Fail("ssconf status shows I'm the master node, will not demote")
2360
  pid_file = utils.DaemonPidFileName(constants.MASTERD)
2361
  if utils.IsProcessAlive(utils.ReadPidFile(pid_file)):
2362
    _Fail("The master daemon is running, will not demote")
2363
  try:
2364
    if os.path.isfile(constants.CLUSTER_CONF_FILE):
2365
      utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2366
  except EnvironmentError, err:
2367
    if err.errno != errno.ENOENT:
2368
      _Fail("Error while backing up cluster file: %s", err, exc=True)
2369
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2370

    
2371

    
2372
def _FindDisks(nodes_ip, disks):
2373
  """Sets the physical ID on disks and returns the block devices.
2374

2375
  """
2376
  # set the correct physical ID
2377
  my_name = utils.HostInfo().name
2378
  for cf in disks:
2379
    cf.SetPhysicalID(my_name, nodes_ip)
2380

    
2381
  bdevs = []
2382

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

    
2390

    
2391
def DrbdDisconnectNet(nodes_ip, disks):
2392
  """Disconnects the network on a list of drbd devices.
2393

2394
  """
2395
  bdevs = _FindDisks(nodes_ip, disks)
2396

    
2397
  # disconnect disks
2398
  for rd in bdevs:
2399
    try:
2400
      rd.DisconnectNet()
2401
    except errors.BlockDeviceError, err:
2402
      _Fail("Can't change network configuration to standalone mode: %s",
2403
            err, exc=True)
2404

    
2405

    
2406
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
2407
  """Attaches the network on a list of drbd devices.
2408

2409
  """
2410
  bdevs = _FindDisks(nodes_ip, disks)
2411

    
2412
  if multimaster:
2413
    for idx, rd in enumerate(bdevs):
2414
      try:
2415
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
2416
      except EnvironmentError, err:
2417
        _Fail("Can't create symlink: %s", err)
2418
  # reconnect disks, switch to new master configuration and if
2419
  # needed primary mode
2420
  for rd in bdevs:
2421
    try:
2422
      rd.AttachNet(multimaster)
2423
    except errors.BlockDeviceError, err:
2424
      _Fail("Can't change network configuration: %s", err)
2425
  # wait until the disks are connected; we need to retry the re-attach
2426
  # if the device becomes standalone, as this might happen if the one
2427
  # node disconnects and reconnects in a different mode before the
2428
  # other node reconnects; in this case, one or both of the nodes will
2429
  # decide it has wrong configuration and switch to standalone
2430
  RECONNECT_TIMEOUT = 2 * 60
2431
  sleep_time = 0.100 # start with 100 miliseconds
2432
  timeout_limit = time.time() + RECONNECT_TIMEOUT
2433
  while time.time() < timeout_limit:
2434
    all_connected = True
2435
    for rd in bdevs:
2436
      stats = rd.GetProcStatus()
2437
      if not (stats.is_connected or stats.is_in_resync):
2438
        all_connected = False
2439
      if stats.is_standalone:
2440
        # peer had different config info and this node became
2441
        # standalone, even though this should not happen with the
2442
        # new staged way of changing disk configs
2443
        try:
2444
          rd.AttachNet(multimaster)
2445
        except errors.BlockDeviceError, err:
2446
          _Fail("Can't change network configuration: %s", err)
2447
    if all_connected:
2448
      break
2449
    time.sleep(sleep_time)
2450
    sleep_time = min(5, sleep_time * 1.5)
2451
  if not all_connected:
2452
    _Fail("Timeout in disk reconnecting")
2453
  if multimaster:
2454
    # change to primary mode
2455
    for rd in bdevs:
2456
      try:
2457
        rd.Open()
2458
      except errors.BlockDeviceError, err:
2459
        _Fail("Can't change to primary mode: %s", err)
2460

    
2461

    
2462
def DrbdWaitSync(nodes_ip, disks):
2463
  """Wait until DRBDs have synchronized.
2464

2465
  """
2466
  bdevs = _FindDisks(nodes_ip, disks)
2467

    
2468
  min_resync = 100
2469
  alldone = True
2470
  for rd in bdevs:
2471
    stats = rd.GetProcStatus()
2472
    if not (stats.is_connected or stats.is_in_resync):
2473
      _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
2474
    alldone = alldone and (not stats.is_in_resync)
2475
    if stats.sync_percent is not None:
2476
      min_resync = min(min_resync, stats.sync_percent)
2477

    
2478
  return (alldone, min_resync)
2479

    
2480

    
2481
def PowercycleNode(hypervisor_type):
2482
  """Hard-powercycle the node.
2483

2484
  Because we need to return first, and schedule the powercycle in the
2485
  background, we won't be able to report failures nicely.
2486

2487
  """
2488
  hyper = hypervisor.GetHypervisor(hypervisor_type)
2489
  try:
2490
    pid = os.fork()
2491
  except OSError:
2492
    # if we can't fork, we'll pretend that we're in the child process
2493
    pid = 0
2494
  if pid > 0:
2495
    return "Reboot scheduled in 5 seconds"
2496
  time.sleep(5)
2497
  hyper.PowercycleNode()
2498

    
2499

    
2500
class HooksRunner(object):
2501
  """Hook runner.
2502

2503
  This class is instantiated on the node side (ganeti-noded) and not
2504
  on the master side.
2505

2506
  """
2507
  RE_MASK = re.compile("^[a-zA-Z0-9_-]+$")
2508

    
2509
  def __init__(self, hooks_base_dir=None):
2510
    """Constructor for hooks runner.
2511

2512
    @type hooks_base_dir: str or None
2513
    @param hooks_base_dir: if not None, this overrides the
2514
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
2515

2516
    """
2517
    if hooks_base_dir is None:
2518
      hooks_base_dir = constants.HOOKS_BASE_DIR
2519
    self._BASE_DIR = hooks_base_dir
2520

    
2521
  @staticmethod
2522
  def ExecHook(script, env):
2523
    """Exec one hook script.
2524

2525
    @type script: str
2526
    @param script: the full path to the script
2527
    @type env: dict
2528
    @param env: the environment with which to exec the script
2529
    @rtype: tuple (success, message)
2530
    @return: a tuple of success and message, where success
2531
        indicates the succes of the operation, and message
2532
        which will contain the error details in case we
2533
        failed
2534

2535
    """
2536
    # exec the process using subprocess and log the output
2537
    fdstdin = None
2538
    try:
2539
      fdstdin = open("/dev/null", "r")
2540
      child = subprocess.Popen([script], stdin=fdstdin, stdout=subprocess.PIPE,
2541
                               stderr=subprocess.STDOUT, close_fds=True,
2542
                               shell=False, cwd="/", env=env)
2543
      output = ""
2544
      try:
2545
        output = child.stdout.read(4096)
2546
        child.stdout.close()
2547
      except EnvironmentError, err:
2548
        output += "Hook script error: %s" % str(err)
2549

    
2550
      while True:
2551
        try:
2552
          result = child.wait()
2553
          break
2554
        except EnvironmentError, err:
2555
          if err.errno == errno.EINTR:
2556
            continue
2557
          raise
2558
    finally:
2559
      # try not to leak fds
2560
      for fd in (fdstdin, ):
2561
        if fd is not None:
2562
          try:
2563
            fd.close()
2564
          except EnvironmentError, err:
2565
            # just log the error
2566
            #logging.exception("Error while closing fd %s", fd)
2567
            pass
2568

    
2569
    return result == 0, utils.SafeEncode(output.strip())
2570

    
2571
  def RunHooks(self, hpath, phase, env):
2572
    """Run the scripts in the hooks directory.
2573

2574
    @type hpath: str
2575
    @param hpath: the path to the hooks directory which
2576
        holds the scripts
2577
    @type phase: str
2578
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
2579
        L{constants.HOOKS_PHASE_POST}
2580
    @type env: dict
2581
    @param env: dictionary with the environment for the hook
2582
    @rtype: list
2583
    @return: list of 3-element tuples:
2584
      - script path
2585
      - script result, either L{constants.HKR_SUCCESS} or
2586
        L{constants.HKR_FAIL}
2587
      - output of the script
2588

2589
    @raise errors.ProgrammerError: for invalid input
2590
        parameters
2591

2592
    """
2593
    if phase == constants.HOOKS_PHASE_PRE:
2594
      suffix = "pre"
2595
    elif phase == constants.HOOKS_PHASE_POST:
2596
      suffix = "post"
2597
    else:
2598
      _Fail("Unknown hooks phase '%s'", phase)
2599

    
2600
    rr = []
2601

    
2602
    subdir = "%s-%s.d" % (hpath, suffix)
2603
    dir_name = "%s/%s" % (self._BASE_DIR, subdir)
2604
    try:
2605
      dir_contents = utils.ListVisibleFiles(dir_name)
2606
    except OSError:
2607
      # FIXME: must log output in case of failures
2608
      return rr
2609

    
2610
    # we use the standard python sort order,
2611
    # so 00name is the recommended naming scheme
2612
    dir_contents.sort()
2613
    for relname in dir_contents:
2614
      fname = os.path.join(dir_name, relname)
2615
      if not (os.path.isfile(fname) and os.access(fname, os.X_OK) and
2616
          self.RE_MASK.match(relname) is not None):
2617
        rrval = constants.HKR_SKIP
2618
        output = ""
2619
      else:
2620
        result, output = self.ExecHook(fname, env)
2621
        if not result:
2622
          rrval = constants.HKR_FAIL
2623
        else:
2624
          rrval = constants.HKR_SUCCESS
2625
      rr.append(("%s/%s" % (subdir, relname), rrval, output))
2626

    
2627
    return rr
2628

    
2629

    
2630
class IAllocatorRunner(object):
2631
  """IAllocator runner.
2632

2633
  This class is instantiated on the node side (ganeti-noded) and not on
2634
  the master side.
2635

2636
  """
2637
  def Run(self, name, idata):
2638
    """Run an iallocator script.
2639

2640
    @type name: str
2641
    @param name: the iallocator script name
2642
    @type idata: str
2643
    @param idata: the allocator input data
2644

2645
    @rtype: tuple
2646
    @return: two element tuple of:
2647
       - status
2648
       - either error message or stdout of allocator (for success)
2649

2650
    """
2651
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
2652
                                  os.path.isfile)
2653
    if alloc_script is None:
2654
      _Fail("iallocator module '%s' not found in the search path", name)
2655

    
2656
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
2657
    try:
2658
      os.write(fd, idata)
2659
      os.close(fd)
2660
      result = utils.RunCmd([alloc_script, fin_name])
2661
      if result.failed:
2662
        _Fail("iallocator module '%s' failed: %s, output '%s'",
2663
              name, result.fail_reason, result.output)
2664
    finally:
2665
      os.unlink(fin_name)
2666

    
2667
    return result.stdout
2668

    
2669

    
2670
class DevCacheManager(object):
2671
  """Simple class for managing a cache of block device information.
2672

2673
  """
2674
  _DEV_PREFIX = "/dev/"
2675
  _ROOT_DIR = constants.BDEV_CACHE_DIR
2676

    
2677
  @classmethod
2678
  def _ConvertPath(cls, dev_path):
2679
    """Converts a /dev/name path to the cache file name.
2680

2681
    This replaces slashes with underscores and strips the /dev
2682
    prefix. It then returns the full path to the cache file.
2683

2684
    @type dev_path: str
2685
    @param dev_path: the C{/dev/} path name
2686
    @rtype: str
2687
    @return: the converted path name
2688

2689
    """
2690
    if dev_path.startswith(cls._DEV_PREFIX):
2691
      dev_path = dev_path[len(cls._DEV_PREFIX):]
2692
    dev_path = dev_path.replace("/", "_")
2693
    fpath = "%s/bdev_%s" % (cls._ROOT_DIR, dev_path)
2694
    return fpath
2695

    
2696
  @classmethod
2697
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
2698
    """Updates the cache information for a given device.
2699

2700
    @type dev_path: str
2701
    @param dev_path: the pathname of the device
2702
    @type owner: str
2703
    @param owner: the owner (instance name) of the device
2704
    @type on_primary: bool
2705
    @param on_primary: whether this is the primary
2706
        node nor not
2707
    @type iv_name: str
2708
    @param iv_name: the instance-visible name of the
2709
        device, as in objects.Disk.iv_name
2710

2711
    @rtype: None
2712

2713
    """
2714
    if dev_path is None:
2715
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
2716
      return
2717
    fpath = cls._ConvertPath(dev_path)
2718
    if on_primary:
2719
      state = "primary"
2720
    else:
2721
      state = "secondary"
2722
    if iv_name is None:
2723
      iv_name = "not_visible"
2724
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
2725
    try:
2726
      utils.WriteFile(fpath, data=fdata)
2727
    except EnvironmentError, err:
2728
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
2729

    
2730
  @classmethod
2731
  def RemoveCache(cls, dev_path):
2732
    """Remove data for a dev_path.
2733

2734
    This is just a wrapper over L{utils.RemoveFile} with a converted
2735
    path name and logging.
2736

2737
    @type dev_path: str
2738
    @param dev_path: the pathname of the device
2739

2740
    @rtype: None
2741

2742
    """
2743
    if dev_path is None:
2744
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
2745
      return
2746
    fpath = cls._ConvertPath(dev_path)
2747
    try:
2748
      utils.RemoveFile(fpath)
2749
    except EnvironmentError, err:
2750
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)