Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ c4feafe8

History | View | Annotate | Download (86 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
@var _ALLOWED_CLEAN_DIRS: denotes which directories are accepted
27
     in the L{_CleanDirectory} function
28

29
"""
30

    
31
# pylint: disable-msg=E1103
32

    
33
# E1103: %s %r has no %r member (but some types could not be
34
# inferred), because the _TryOSFromDisk returns either (True, os_obj)
35
# or (False, "string") which confuses pylint
36

    
37

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

    
51
from ganeti import errors
52
from ganeti import utils
53
from ganeti import ssh
54
from ganeti import hypervisor
55
from ganeti import constants
56
from ganeti import bdev
57
from ganeti import objects
58
from ganeti import ssconf
59

    
60

    
61
_BOOT_ID_PATH = "/proc/sys/kernel/random/boot_id"
62
_ALLOWED_CLEAN_DIRS = frozenset([
63
  constants.DATA_DIR,
64
  constants.JOB_QUEUE_ARCHIVE_DIR,
65
  constants.QUEUE_DIR,
66
  ])
67

    
68

    
69
class RPCFail(Exception):
70
  """Class denoting RPC failure.
71

72
  Its argument is the error message.
73

74
  """
75

    
76

    
77
def _Fail(msg, *args, **kwargs):
78
  """Log an error and the raise an RPCFail exception.
79

80
  This exception is then handled specially in the ganeti daemon and
81
  turned into a 'failed' return type. As such, this function is a
82
  useful shortcut for logging the error and returning it to the master
83
  daemon.
84

85
  @type msg: string
86
  @param msg: the text of the exception
87
  @raise RPCFail
88

89
  """
90
  if args:
91
    msg = msg % args
92
  if "log" not in kwargs or kwargs["log"]: # if we should log this error
93
    if "exc" in kwargs and kwargs["exc"]:
94
      logging.exception(msg)
95
    else:
96
      logging.error(msg)
97
  raise RPCFail(msg)
98

    
99

    
100
def _GetConfig():
101
  """Simple wrapper to return a SimpleStore.
102

103
  @rtype: L{ssconf.SimpleStore}
104
  @return: a SimpleStore instance
105

106
  """
107
  return ssconf.SimpleStore()
108

    
109

    
110
def _GetSshRunner(cluster_name):
111
  """Simple wrapper to return an SshRunner.
112

113
  @type cluster_name: str
114
  @param cluster_name: the cluster name, which is needed
115
      by the SshRunner constructor
116
  @rtype: L{ssh.SshRunner}
117
  @return: an SshRunner instance
118

119
  """
120
  return ssh.SshRunner(cluster_name)
121

    
122

    
123
def _Decompress(data):
124
  """Unpacks data compressed by the RPC client.
125

126
  @type data: list or tuple
127
  @param data: Data sent by RPC client
128
  @rtype: str
129
  @return: Decompressed data
130

131
  """
132
  assert isinstance(data, (list, tuple))
133
  assert len(data) == 2
134
  (encoding, content) = data
135
  if encoding == constants.RPC_ENCODING_NONE:
136
    return content
137
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
138
    return zlib.decompress(base64.b64decode(content))
139
  else:
140
    raise AssertionError("Unknown data encoding")
141

    
142

    
143
def _CleanDirectory(path, exclude=None):
144
  """Removes all regular files in a directory.
145

146
  @type path: str
147
  @param path: the directory to clean
148
  @type exclude: list
149
  @param exclude: list of files to be excluded, defaults
150
      to the empty list
151

152
  """
153
  if path not in _ALLOWED_CLEAN_DIRS:
154
    _Fail("Path passed to _CleanDirectory not in allowed clean targets: '%s'",
155
          path)
156

    
157
  if not os.path.isdir(path):
158
    return
159
  if exclude is None:
160
    exclude = []
161
  else:
162
    # Normalize excluded paths
163
    exclude = [os.path.normpath(i) for i in exclude]
164

    
165
  for rel_name in utils.ListVisibleFiles(path):
166
    full_name = utils.PathJoin(path, rel_name)
167
    if full_name in exclude:
168
      continue
169
    if os.path.isfile(full_name) and not os.path.islink(full_name):
170
      utils.RemoveFile(full_name)
171

    
172

    
173
def _BuildUploadFileList():
174
  """Build the list of allowed upload files.
175

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

178
  """
179
  allowed_files = set([
180
    constants.CLUSTER_CONF_FILE,
181
    constants.ETC_HOSTS,
182
    constants.SSH_KNOWN_HOSTS_FILE,
183
    constants.VNC_PASSWORD_FILE,
184
    constants.RAPI_CERT_FILE,
185
    constants.RAPI_USERS_FILE,
186
    constants.HMAC_CLUSTER_KEY,
187
    ])
188

    
189
  for hv_name in constants.HYPER_TYPES:
190
    hv_class = hypervisor.GetHypervisorClass(hv_name)
191
    allowed_files.update(hv_class.GetAncillaryFiles())
192

    
193
  return frozenset(allowed_files)
194

    
195

    
196
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
197

    
198

    
199
def JobQueuePurge():
200
  """Removes job queue files and archived jobs.
201

202
  @rtype: tuple
203
  @return: True, None
204

205
  """
206
  _CleanDirectory(constants.QUEUE_DIR, exclude=[constants.JOB_QUEUE_LOCK_FILE])
207
  _CleanDirectory(constants.JOB_QUEUE_ARCHIVE_DIR)
208

    
209

    
210
def GetMasterInfo():
211
  """Returns master information.
212

213
  This is an utility function to compute master information, either
214
  for consumption here or from the node daemon.
215

216
  @rtype: tuple
217
  @return: master_netdev, master_ip, master_name
218
  @raise RPCFail: in case of errors
219

220
  """
221
  try:
222
    cfg = _GetConfig()
223
    master_netdev = cfg.GetMasterNetdev()
224
    master_ip = cfg.GetMasterIP()
225
    master_node = cfg.GetMasterNode()
226
  except errors.ConfigurationError, err:
227
    _Fail("Cluster configuration incomplete: %s", err, exc=True)
228
  return (master_netdev, master_ip, master_node)
229

    
230

    
231
def StartMaster(start_daemons, no_voting):
232
  """Activate local node as master node.
233

234
  The function will always try activate the IP address of the master
235
  (unless someone else has it). It will also start the master daemons,
236
  based on the start_daemons parameter.
237

238
  @type start_daemons: boolean
239
  @param start_daemons: whether to also start the master
240
      daemons (ganeti-masterd and ganeti-rapi)
241
  @type no_voting: boolean
242
  @param no_voting: whether to start ganeti-masterd without a node vote
243
      (if start_daemons is True), but still non-interactively
244
  @rtype: None
245

246
  """
247
  # GetMasterInfo will raise an exception if not able to return data
248
  master_netdev, master_ip, _ = GetMasterInfo()
249

    
250
  err_msgs = []
251
  if utils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
252
    if utils.OwnIpAddress(master_ip):
253
      # we already have the ip:
254
      logging.debug("Master IP already configured, doing nothing")
255
    else:
256
      msg = "Someone else has the master ip, not activating"
257
      logging.error(msg)
258
      err_msgs.append(msg)
259
  else:
260
    result = utils.RunCmd(["ip", "address", "add", "%s/32" % master_ip,
261
                           "dev", master_netdev, "label",
262
                           "%s:0" % master_netdev])
263
    if result.failed:
264
      msg = "Can't activate master IP: %s" % result.output
265
      logging.error(msg)
266
      err_msgs.append(msg)
267

    
268
    result = utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev,
269
                           "-s", master_ip, master_ip])
270
    # we'll ignore the exit code of arping
271

    
272
  # and now start the master and rapi daemons
273
  if start_daemons:
274
    if no_voting:
275
      masterd_args = "--no-voting --yes-do-it"
276
    else:
277
      masterd_args = ""
278

    
279
    env = {
280
      "EXTRA_MASTERD_ARGS": masterd_args,
281
      }
282

    
283
    result = utils.RunCmd([constants.DAEMON_UTIL, "start-master"], env=env)
284
    if result.failed:
285
      msg = "Can't start Ganeti master: %s" % result.output
286
      logging.error(msg)
287
      err_msgs.append(msg)
288

    
289
  if err_msgs:
290
    _Fail("; ".join(err_msgs))
291

    
292

    
293
def StopMaster(stop_daemons):
294
  """Deactivate this node as master.
295

296
  The function will always try to deactivate the IP address of the
297
  master. It will also stop the master daemons depending on the
298
  stop_daemons parameter.
299

300
  @type stop_daemons: boolean
301
  @param stop_daemons: whether to also stop the master daemons
302
      (ganeti-masterd and ganeti-rapi)
303
  @rtype: None
304

305
  """
306
  # TODO: log and report back to the caller the error failures; we
307
  # need to decide in which case we fail the RPC for this
308

    
309
  # GetMasterInfo will raise an exception if not able to return data
310
  master_netdev, master_ip, _ = GetMasterInfo()
311

    
312
  result = utils.RunCmd(["ip", "address", "del", "%s/32" % master_ip,
313
                         "dev", master_netdev])
314
  if result.failed:
315
    logging.error("Can't remove the master IP, error: %s", result.output)
316
    # but otherwise ignore the failure
317

    
318
  if stop_daemons:
319
    result = utils.RunCmd([constants.DAEMON_UTIL, "stop-master"])
320
    if result.failed:
321
      logging.error("Could not stop Ganeti master, command %s had exitcode %s"
322
                    " and error %s",
323
                    result.cmd, result.exit_code, result.output)
324

    
325

    
326
def AddNode(dsa, dsapub, rsa, rsapub, sshkey, sshpub):
327
  """Joins this node to the cluster.
328

329
  This does the following:
330
      - updates the hostkeys of the machine (rsa and dsa)
331
      - adds the ssh private key to the user
332
      - adds the ssh public key to the users' authorized_keys file
333

334
  @type dsa: str
335
  @param dsa: the DSA private key to write
336
  @type dsapub: str
337
  @param dsapub: the DSA public key to write
338
  @type rsa: str
339
  @param rsa: the RSA private key to write
340
  @type rsapub: str
341
  @param rsapub: the RSA public key to write
342
  @type sshkey: str
343
  @param sshkey: the SSH private key to write
344
  @type sshpub: str
345
  @param sshpub: the SSH public key to write
346
  @rtype: boolean
347
  @return: the success of the operation
348

349
  """
350
  sshd_keys =  [(constants.SSH_HOST_RSA_PRIV, rsa, 0600),
351
                (constants.SSH_HOST_RSA_PUB, rsapub, 0644),
352
                (constants.SSH_HOST_DSA_PRIV, dsa, 0600),
353
                (constants.SSH_HOST_DSA_PUB, dsapub, 0644)]
354
  for name, content, mode in sshd_keys:
355
    utils.WriteFile(name, data=content, mode=mode)
356

    
357
  try:
358
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS,
359
                                                    mkdir=True)
360
  except errors.OpExecError, err:
361
    _Fail("Error while processing user ssh files: %s", err, exc=True)
362

    
363
  for name, content in [(priv_key, sshkey), (pub_key, sshpub)]:
364
    utils.WriteFile(name, data=content, mode=0600)
365

    
366
  utils.AddAuthorizedKey(auth_keys, sshpub)
367

    
368
  result = utils.RunCmd([constants.DAEMON_UTIL, "reload-ssh-keys"])
369
  if result.failed:
370
    _Fail("Unable to reload SSH keys (command %r, exit code %s, output %r)",
371
          result.cmd, result.exit_code, result.output)
372

    
373

    
374
def LeaveCluster(modify_ssh_setup):
375
  """Cleans up and remove the current node.
376

377
  This function cleans up and prepares the current node to be removed
378
  from the cluster.
379

380
  If processing is successful, then it raises an
381
  L{errors.QuitGanetiException} which is used as a special case to
382
  shutdown the node daemon.
383

384
  @param modify_ssh_setup: boolean
385

386
  """
387
  _CleanDirectory(constants.DATA_DIR)
388
  JobQueuePurge()
389

    
390
  if modify_ssh_setup:
391
    try:
392
      priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
393

    
394
      utils.RemoveAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
395

    
396
      utils.RemoveFile(priv_key)
397
      utils.RemoveFile(pub_key)
398
    except errors.OpExecError:
399
      logging.exception("Error while processing ssh files")
400

    
401
  try:
402
    utils.RemoveFile(constants.HMAC_CLUSTER_KEY)
403
    utils.RemoveFile(constants.RAPI_CERT_FILE)
404
    utils.RemoveFile(constants.SSL_CERT_FILE)
405
  except: # pylint: disable-msg=W0702
406
    logging.exception("Error while removing cluster secrets")
407

    
408
  result = utils.RunCmd([constants.DAEMON_UTIL, "stop", constants.CONFD])
409
  if result.failed:
410
    logging.error("Command %s failed with exitcode %s and error %s",
411
                  result.cmd, result.exit_code, result.output)
412

    
413
  # Raise a custom exception (handled in ganeti-noded)
414
  raise errors.QuitGanetiException(True, 'Shutdown scheduled')
415

    
416

    
417
def GetNodeInfo(vgname, hypervisor_type):
418
  """Gives back a hash with different information about the node.
419

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

433
  """
434
  outputarray = {}
435
  vginfo = _GetVGInfo(vgname)
436
  outputarray['vg_size'] = vginfo['vg_size']
437
  outputarray['vg_free'] = vginfo['vg_free']
438

    
439
  hyper = hypervisor.GetHypervisor(hypervisor_type)
440
  hyp_info = hyper.GetNodeInfo()
441
  if hyp_info is not None:
442
    outputarray.update(hyp_info)
443

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

    
446
  return outputarray
447

    
448

    
449
def VerifyNode(what, cluster_name):
450
  """Verify the status of the local node.
451

452
  Based on the input L{what} parameter, various checks are done on the
453
  local node.
454

455
  If the I{filelist} key is present, this list of
456
  files is checksummed and the file/checksum pairs are returned.
457

458
  If the I{nodelist} key is present, we check that we have
459
  connectivity via ssh with the target nodes (and check the hostname
460
  report).
461

462
  If the I{node-net-test} key is present, we check that we have
463
  connectivity to the given nodes via both primary IP and, if
464
  applicable, secondary IPs.
465

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

477
  """
478
  result = {}
479

    
480
  if constants.NV_HYPERVISOR in what:
481
    result[constants.NV_HYPERVISOR] = tmp = {}
482
    for hv_name in what[constants.NV_HYPERVISOR]:
483
      tmp[hv_name] = hypervisor.GetHypervisor(hv_name).Verify()
484

    
485
  if constants.NV_FILELIST in what:
486
    result[constants.NV_FILELIST] = utils.FingerprintFiles(
487
      what[constants.NV_FILELIST])
488

    
489
  if constants.NV_NODELIST in what:
490
    result[constants.NV_NODELIST] = tmp = {}
491
    random.shuffle(what[constants.NV_NODELIST])
492
    for node in what[constants.NV_NODELIST]:
493
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
494
      if not success:
495
        tmp[node] = message
496

    
497
  if constants.NV_NODENETTEST in what:
498
    result[constants.NV_NODENETTEST] = tmp = {}
499
    my_name = utils.HostInfo().name
500
    my_pip = my_sip = None
501
    for name, pip, sip in what[constants.NV_NODENETTEST]:
502
      if name == my_name:
503
        my_pip = pip
504
        my_sip = sip
505
        break
506
    if not my_pip:
507
      tmp[my_name] = ("Can't find my own primary/secondary IP"
508
                      " in the node list")
509
    else:
510
      port = utils.GetDaemonPort(constants.NODED)
511
      for name, pip, sip in what[constants.NV_NODENETTEST]:
512
        fail = []
513
        if not utils.TcpPing(pip, port, source=my_pip):
514
          fail.append("primary")
515
        if sip != pip:
516
          if not utils.TcpPing(sip, port, source=my_sip):
517
            fail.append("secondary")
518
        if fail:
519
          tmp[name] = ("failure using the %s interface(s)" %
520
                       " and ".join(fail))
521

    
522
  if constants.NV_LVLIST in what:
523
    result[constants.NV_LVLIST] = GetVolumeList(what[constants.NV_LVLIST])
524

    
525
  if constants.NV_INSTANCELIST in what:
526
    result[constants.NV_INSTANCELIST] = GetInstanceList(
527
      what[constants.NV_INSTANCELIST])
528

    
529
  if constants.NV_VGLIST in what:
530
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
531

    
532
  if constants.NV_PVLIST in what:
533
    result[constants.NV_PVLIST] = \
534
      bdev.LogicalVolume.GetPVInfo(what[constants.NV_PVLIST],
535
                                   filter_allocatable=False)
536

    
537
  if constants.NV_VERSION in what:
538
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
539
                                    constants.RELEASE_VERSION)
540

    
541
  if constants.NV_HVINFO in what:
542
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
543
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
544

    
545
  if constants.NV_DRBDLIST in what:
546
    try:
547
      used_minors = bdev.DRBD8.GetUsedDevs().keys()
548
    except errors.BlockDeviceError, err:
549
      logging.warning("Can't get used minors list", exc_info=True)
550
      used_minors = str(err)
551
    result[constants.NV_DRBDLIST] = used_minors
552

    
553
  if constants.NV_NODESETUP in what:
554
    result[constants.NV_NODESETUP] = tmpr = []
555
    if not os.path.isdir("/sys/block") or not os.path.isdir("/sys/class/net"):
556
      tmpr.append("The sysfs filesytem doesn't seem to be mounted"
557
                  " under /sys, missing required directories /sys/block"
558
                  " and /sys/class/net")
559
    if (not os.path.isdir("/proc/sys") or
560
        not os.path.isfile("/proc/sysrq-trigger")):
561
      tmpr.append("The procfs filesystem doesn't seem to be mounted"
562
                  " under /proc, missing required directory /proc/sys and"
563
                  " the file /proc/sysrq-trigger")
564

    
565
  if constants.NV_TIME in what:
566
    result[constants.NV_TIME] = utils.SplitTime(time.time())
567

    
568
  return result
569

    
570

    
571
def GetVolumeList(vg_name):
572
  """Compute list of logical volumes and their size.
573

574
  @type vg_name: str
575
  @param vg_name: the volume group whose LVs we should list
576
  @rtype: dict
577
  @return:
578
      dictionary of all partions (key) with value being a tuple of
579
      their size (in MiB), inactive and online status::
580

581
        {'test1': ('20.06', True, True)}
582

583
      in case of errors, a string is returned with the error
584
      details.
585

586
  """
587
  lvs = {}
588
  sep = '|'
589
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
590
                         "--separator=%s" % sep,
591
                         "-olv_name,lv_size,lv_attr", vg_name])
592
  if result.failed:
593
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
594

    
595
  valid_line_re = re.compile("^ *([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
596
  for line in result.stdout.splitlines():
597
    line = line.strip()
598
    match = valid_line_re.match(line)
599
    if not match:
600
      logging.error("Invalid line returned from lvs output: '%s'", line)
601
      continue
602
    name, size, attr = match.groups()
603
    inactive = attr[4] == '-'
604
    online = attr[5] == 'o'
605
    virtual = attr[0] == 'v'
606
    if virtual:
607
      # we don't want to report such volumes as existing, since they
608
      # don't really hold data
609
      continue
610
    lvs[name] = (size, inactive, online)
611

    
612
  return lvs
613

    
614

    
615
def ListVolumeGroups():
616
  """List the volume groups and their size.
617

618
  @rtype: dict
619
  @return: dictionary with keys volume name and values the
620
      size of the volume
621

622
  """
623
  return utils.ListVolumeGroups()
624

    
625

    
626
def NodeVolumes():
627
  """List all volumes on this node.
628

629
  @rtype: list
630
  @return:
631
    A list of dictionaries, each having four keys:
632
      - name: the logical volume name,
633
      - size: the size of the logical volume
634
      - dev: the physical device on which the LV lives
635
      - vg: the volume group to which it belongs
636

637
    In case of errors, we return an empty list and log the
638
    error.
639

640
    Note that since a logical volume can live on multiple physical
641
    volumes, the resulting list might include a logical volume
642
    multiple times.
643

644
  """
645
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
646
                         "--separator=|",
647
                         "--options=lv_name,lv_size,devices,vg_name"])
648
  if result.failed:
649
    _Fail("Failed to list logical volumes, lvs output: %s",
650
          result.output)
651

    
652
  def parse_dev(dev):
653
    if '(' in dev:
654
      return dev.split('(')[0]
655
    else:
656
      return dev
657

    
658
  def map_line(line):
659
    return {
660
      'name': line[0].strip(),
661
      'size': line[1].strip(),
662
      'dev': parse_dev(line[2].strip()),
663
      'vg': line[3].strip(),
664
    }
665

    
666
  return [map_line(line.split('|')) for line in result.stdout.splitlines()
667
          if line.count('|') >= 3]
668

    
669

    
670
def BridgesExist(bridges_list):
671
  """Check if a list of bridges exist on the current node.
672

673
  @rtype: boolean
674
  @return: C{True} if all of them exist, C{False} otherwise
675

676
  """
677
  missing = []
678
  for bridge in bridges_list:
679
    if not utils.BridgeExists(bridge):
680
      missing.append(bridge)
681

    
682
  if missing:
683
    _Fail("Missing bridges %s", utils.CommaJoin(missing))
684

    
685

    
686
def GetInstanceList(hypervisor_list):
687
  """Provides a list of instances.
688

689
  @type hypervisor_list: list
690
  @param hypervisor_list: the list of hypervisors to query information
691

692
  @rtype: list
693
  @return: a list of all running instances on the current node
694
    - instance1.example.com
695
    - instance2.example.com
696

697
  """
698
  results = []
699
  for hname in hypervisor_list:
700
    try:
701
      names = hypervisor.GetHypervisor(hname).ListInstances()
702
      results.extend(names)
703
    except errors.HypervisorError, err:
704
      _Fail("Error enumerating instances (hypervisor %s): %s",
705
            hname, err, exc=True)
706

    
707
  return results
708

    
709

    
710
def GetInstanceInfo(instance, hname):
711
  """Gives back the information about an instance as a dictionary.
712

713
  @type instance: string
714
  @param instance: the instance name
715
  @type hname: string
716
  @param hname: the hypervisor type of the instance
717

718
  @rtype: dict
719
  @return: dictionary with the following keys:
720
      - memory: memory size of instance (int)
721
      - state: xen state of instance (string)
722
      - time: cpu time of instance (float)
723

724
  """
725
  output = {}
726

    
727
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
728
  if iinfo is not None:
729
    output['memory'] = iinfo[2]
730
    output['state'] = iinfo[4]
731
    output['time'] = iinfo[5]
732

    
733
  return output
734

    
735

    
736
def GetInstanceMigratable(instance):
737
  """Gives whether an instance can be migrated.
738

739
  @type instance: L{objects.Instance}
740
  @param instance: object representing the instance to be checked.
741

742
  @rtype: tuple
743
  @return: tuple of (result, description) where:
744
      - result: whether the instance can be migrated or not
745
      - description: a description of the issue, if relevant
746

747
  """
748
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
749
  iname = instance.name
750
  if iname not in hyper.ListInstances():
751
    _Fail("Instance %s is not running", iname)
752

    
753
  for idx in range(len(instance.disks)):
754
    link_name = _GetBlockDevSymlinkPath(iname, idx)
755
    if not os.path.islink(link_name):
756
      _Fail("Instance %s was not restarted since ganeti 1.2.5", iname)
757

    
758

    
759
def GetAllInstancesInfo(hypervisor_list):
760
  """Gather data about all instances.
761

762
  This is the equivalent of L{GetInstanceInfo}, except that it
763
  computes data for all instances at once, thus being faster if one
764
  needs data about more than one instance.
765

766
  @type hypervisor_list: list
767
  @param hypervisor_list: list of hypervisors to query for instance data
768

769
  @rtype: dict
770
  @return: dictionary of instance: data, with data having the following keys:
771
      - memory: memory size of instance (int)
772
      - state: xen state of instance (string)
773
      - time: cpu time of instance (float)
774
      - vcpus: the number of vcpus
775

776
  """
777
  output = {}
778

    
779
  for hname in hypervisor_list:
780
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
781
    if iinfo:
782
      for name, _, memory, vcpus, state, times in iinfo:
783
        value = {
784
          'memory': memory,
785
          'vcpus': vcpus,
786
          'state': state,
787
          'time': times,
788
          }
789
        if name in output:
790
          # we only check static parameters, like memory and vcpus,
791
          # and not state and time which can change between the
792
          # invocations of the different hypervisors
793
          for key in 'memory', 'vcpus':
794
            if value[key] != output[name][key]:
795
              _Fail("Instance %s is running twice"
796
                    " with different parameters", name)
797
        output[name] = value
798

    
799
  return output
800

    
801

    
802
def InstanceOsAdd(instance, reinstall, debug):
803
  """Add an OS to an instance.
804

805
  @type instance: L{objects.Instance}
806
  @param instance: Instance whose OS is to be installed
807
  @type reinstall: boolean
808
  @param reinstall: whether this is an instance reinstall
809
  @type debug: integer
810
  @param debug: debug level, passed to the OS scripts
811
  @rtype: None
812

813
  """
814
  inst_os = OSFromDisk(instance.os)
815

    
816
  create_env = OSEnvironment(instance, inst_os, debug)
817
  if reinstall:
818
    create_env['INSTANCE_REINSTALL'] = "1"
819

    
820
  logfile = "%s/add-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
821
                                     instance.name, int(time.time()))
822

    
823
  result = utils.RunCmd([inst_os.create_script], env=create_env,
824
                        cwd=inst_os.path, output=logfile,)
825
  if result.failed:
826
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
827
                  " output: %s", result.cmd, result.fail_reason, logfile,
828
                  result.output)
829
    lines = [utils.SafeEncode(val)
830
             for val in utils.TailFile(logfile, lines=20)]
831
    _Fail("OS create script failed (%s), last lines in the"
832
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
833

    
834

    
835
def RunRenameInstance(instance, old_name, debug):
836
  """Run the OS rename script for an instance.
837

838
  @type instance: L{objects.Instance}
839
  @param instance: Instance whose OS is to be installed
840
  @type old_name: string
841
  @param old_name: previous instance name
842
  @type debug: integer
843
  @param debug: debug level, passed to the OS scripts
844
  @rtype: boolean
845
  @return: the success of the operation
846

847
  """
848
  inst_os = OSFromDisk(instance.os)
849

    
850
  rename_env = OSEnvironment(instance, inst_os, debug)
851
  rename_env['OLD_INSTANCE_NAME'] = old_name
852

    
853
  logfile = "%s/rename-%s-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
854
                                           old_name,
855
                                           instance.name, int(time.time()))
856

    
857
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
858
                        cwd=inst_os.path, output=logfile)
859

    
860
  if result.failed:
861
    logging.error("os create command '%s' returned error: %s output: %s",
862
                  result.cmd, result.fail_reason, result.output)
863
    lines = [utils.SafeEncode(val)
864
             for val in utils.TailFile(logfile, lines=20)]
865
    _Fail("OS rename script failed (%s), last lines in the"
866
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
867

    
868

    
869
def _GetVGInfo(vg_name):
870
  """Get information about the volume group.
871

872
  @type vg_name: str
873
  @param vg_name: the volume group which we query
874
  @rtype: dict
875
  @return:
876
    A dictionary with the following keys:
877
      - C{vg_size} is the total size of the volume group in MiB
878
      - C{vg_free} is the free size of the volume group in MiB
879
      - C{pv_count} are the number of physical disks in that VG
880

881
    If an error occurs during gathering of data, we return the same dict
882
    with keys all set to None.
883

884
  """
885
  retdic = dict.fromkeys(["vg_size", "vg_free", "pv_count"])
886

    
887
  retval = utils.RunCmd(["vgs", "-ovg_size,vg_free,pv_count", "--noheadings",
888
                         "--nosuffix", "--units=m", "--separator=:", vg_name])
889

    
890
  if retval.failed:
891
    logging.error("volume group %s not present", vg_name)
892
    return retdic
893
  valarr = retval.stdout.strip().rstrip(':').split(':')
894
  if len(valarr) == 3:
895
    try:
896
      retdic = {
897
        "vg_size": int(round(float(valarr[0]), 0)),
898
        "vg_free": int(round(float(valarr[1]), 0)),
899
        "pv_count": int(valarr[2]),
900
        }
901
    except (TypeError, ValueError), err:
902
      logging.exception("Fail to parse vgs output: %s", err)
903
  else:
904
    logging.error("vgs output has the wrong number of fields (expected"
905
                  " three): %s", str(valarr))
906
  return retdic
907

    
908

    
909
def _GetBlockDevSymlinkPath(instance_name, idx):
910
  return utils.PathJoin(constants.DISK_LINKS_DIR,
911
                        "%s:%d" % (instance_name, idx))
912

    
913

    
914
def _SymlinkBlockDev(instance_name, device_path, idx):
915
  """Set up symlinks to a instance's block device.
916

917
  This is an auxiliary function run when an instance is start (on the primary
918
  node) or when an instance is migrated (on the target node).
919

920

921
  @param instance_name: the name of the target instance
922
  @param device_path: path of the physical block device, on the node
923
  @param idx: the disk index
924
  @return: absolute path to the disk's symlink
925

926
  """
927
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
928
  try:
929
    os.symlink(device_path, link_name)
930
  except OSError, err:
931
    if err.errno == errno.EEXIST:
932
      if (not os.path.islink(link_name) or
933
          os.readlink(link_name) != device_path):
934
        os.remove(link_name)
935
        os.symlink(device_path, link_name)
936
    else:
937
      raise
938

    
939
  return link_name
940

    
941

    
942
def _RemoveBlockDevLinks(instance_name, disks):
943
  """Remove the block device symlinks belonging to the given instance.
944

945
  """
946
  for idx, _ in enumerate(disks):
947
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
948
    if os.path.islink(link_name):
949
      try:
950
        os.remove(link_name)
951
      except OSError:
952
        logging.exception("Can't remove symlink '%s'", link_name)
953

    
954

    
955
def _GatherAndLinkBlockDevs(instance):
956
  """Set up an instance's block device(s).
957

958
  This is run on the primary node at instance startup. The block
959
  devices must be already assembled.
960

961
  @type instance: L{objects.Instance}
962
  @param instance: the instance whose disks we shoul assemble
963
  @rtype: list
964
  @return: list of (disk_object, device_path)
965

966
  """
967
  block_devices = []
968
  for idx, disk in enumerate(instance.disks):
969
    device = _RecursiveFindBD(disk)
970
    if device is None:
971
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
972
                                    str(disk))
973
    device.Open()
974
    try:
975
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
976
    except OSError, e:
977
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
978
                                    e.strerror)
979

    
980
    block_devices.append((disk, link_name))
981

    
982
  return block_devices
983

    
984

    
985
def StartInstance(instance):
986
  """Start an instance.
987

988
  @type instance: L{objects.Instance}
989
  @param instance: the instance object
990
  @rtype: None
991

992
  """
993
  running_instances = GetInstanceList([instance.hypervisor])
994

    
995
  if instance.name in running_instances:
996
    logging.info("Instance %s already running, not starting", instance.name)
997
    return
998

    
999
  try:
1000
    block_devices = _GatherAndLinkBlockDevs(instance)
1001
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
1002
    hyper.StartInstance(instance, block_devices)
1003
  except errors.BlockDeviceError, err:
1004
    _Fail("Block device error: %s", err, exc=True)
1005
  except errors.HypervisorError, err:
1006
    _RemoveBlockDevLinks(instance.name, instance.disks)
1007
    _Fail("Hypervisor error: %s", err, exc=True)
1008

    
1009

    
1010
def InstanceShutdown(instance, timeout):
1011
  """Shut an instance down.
1012

1013
  @note: this functions uses polling with a hardcoded timeout.
1014

1015
  @type instance: L{objects.Instance}
1016
  @param instance: the instance object
1017
  @type timeout: integer
1018
  @param timeout: maximum timeout for soft shutdown
1019
  @rtype: None
1020

1021
  """
1022
  hv_name = instance.hypervisor
1023
  hyper = hypervisor.GetHypervisor(hv_name)
1024
  iname = instance.name
1025

    
1026
  if instance.name not in hyper.ListInstances():
1027
    logging.info("Instance %s not running, doing nothing", iname)
1028
    return
1029

    
1030
  class _TryShutdown:
1031
    def __init__(self):
1032
      self.tried_once = False
1033

    
1034
    def __call__(self):
1035
      if iname not in hyper.ListInstances():
1036
        return
1037

    
1038
      try:
1039
        hyper.StopInstance(instance, retry=self.tried_once)
1040
      except errors.HypervisorError, err:
1041
        if iname not in hyper.ListInstances():
1042
          # if the instance is no longer existing, consider this a
1043
          # success and go to cleanup
1044
          return
1045

    
1046
        _Fail("Failed to stop instance %s: %s", iname, err)
1047

    
1048
      self.tried_once = True
1049

    
1050
      raise utils.RetryAgain()
1051

    
1052
  try:
1053
    utils.Retry(_TryShutdown(), 5, timeout)
1054
  except utils.RetryTimeout:
1055
    # the shutdown did not succeed
1056
    logging.error("Shutdown of '%s' unsuccessful, forcing", iname)
1057

    
1058
    try:
1059
      hyper.StopInstance(instance, force=True)
1060
    except errors.HypervisorError, err:
1061
      if iname in hyper.ListInstances():
1062
        # only raise an error if the instance still exists, otherwise
1063
        # the error could simply be "instance ... unknown"!
1064
        _Fail("Failed to force stop instance %s: %s", iname, err)
1065

    
1066
    time.sleep(1)
1067

    
1068
    if iname in hyper.ListInstances():
1069
      _Fail("Could not shutdown instance %s even by destroy", iname)
1070

    
1071
  _RemoveBlockDevLinks(iname, instance.disks)
1072

    
1073

    
1074
def InstanceReboot(instance, reboot_type, shutdown_timeout):
1075
  """Reboot an instance.
1076

1077
  @type instance: L{objects.Instance}
1078
  @param instance: the instance object to reboot
1079
  @type reboot_type: str
1080
  @param reboot_type: the type of reboot, one the following
1081
    constants:
1082
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1083
        instance OS, do not recreate the VM
1084
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1085
        restart the VM (at the hypervisor level)
1086
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1087
        not accepted here, since that mode is handled differently, in
1088
        cmdlib, and translates into full stop and start of the
1089
        instance (instead of a call_instance_reboot RPC)
1090
  @type shutdown_timeout: integer
1091
  @param shutdown_timeout: maximum timeout for soft shutdown
1092
  @rtype: None
1093

1094
  """
1095
  running_instances = GetInstanceList([instance.hypervisor])
1096

    
1097
  if instance.name not in running_instances:
1098
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1099

    
1100
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1101
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1102
    try:
1103
      hyper.RebootInstance(instance)
1104
    except errors.HypervisorError, err:
1105
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1106
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1107
    try:
1108
      InstanceShutdown(instance, shutdown_timeout)
1109
      return StartInstance(instance)
1110
    except errors.HypervisorError, err:
1111
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1112
  else:
1113
    _Fail("Invalid reboot_type received: %s", reboot_type)
1114

    
1115

    
1116
def MigrationInfo(instance):
1117
  """Gather information about an instance to be migrated.
1118

1119
  @type instance: L{objects.Instance}
1120
  @param instance: the instance definition
1121

1122
  """
1123
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1124
  try:
1125
    info = hyper.MigrationInfo(instance)
1126
  except errors.HypervisorError, err:
1127
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1128
  return info
1129

    
1130

    
1131
def AcceptInstance(instance, info, target):
1132
  """Prepare the node to accept an instance.
1133

1134
  @type instance: L{objects.Instance}
1135
  @param instance: the instance definition
1136
  @type info: string/data (opaque)
1137
  @param info: migration information, from the source node
1138
  @type target: string
1139
  @param target: target host (usually ip), on this node
1140

1141
  """
1142
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1143
  try:
1144
    hyper.AcceptInstance(instance, info, target)
1145
  except errors.HypervisorError, err:
1146
    _Fail("Failed to accept instance: %s", err, exc=True)
1147

    
1148

    
1149
def FinalizeMigration(instance, info, success):
1150
  """Finalize any preparation to accept an instance.
1151

1152
  @type instance: L{objects.Instance}
1153
  @param instance: the instance definition
1154
  @type info: string/data (opaque)
1155
  @param info: migration information, from the source node
1156
  @type success: boolean
1157
  @param success: whether the migration was a success or a failure
1158

1159
  """
1160
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1161
  try:
1162
    hyper.FinalizeMigration(instance, info, success)
1163
  except errors.HypervisorError, err:
1164
    _Fail("Failed to finalize migration: %s", err, exc=True)
1165

    
1166

    
1167
def MigrateInstance(instance, target, live):
1168
  """Migrates an instance to another node.
1169

1170
  @type instance: L{objects.Instance}
1171
  @param instance: the instance definition
1172
  @type target: string
1173
  @param target: the target node name
1174
  @type live: boolean
1175
  @param live: whether the migration should be done live or not (the
1176
      interpretation of this parameter is left to the hypervisor)
1177
  @rtype: tuple
1178
  @return: a tuple of (success, msg) where:
1179
      - succes is a boolean denoting the success/failure of the operation
1180
      - msg is a string with details in case of failure
1181

1182
  """
1183
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1184

    
1185
  try:
1186
    hyper.MigrateInstance(instance, target, live)
1187
  except errors.HypervisorError, err:
1188
    _Fail("Failed to migrate instance: %s", err, exc=True)
1189

    
1190

    
1191
def BlockdevCreate(disk, size, owner, on_primary, info):
1192
  """Creates a block device for an instance.
1193

1194
  @type disk: L{objects.Disk}
1195
  @param disk: the object describing the disk we should create
1196
  @type size: int
1197
  @param size: the size of the physical underlying device, in MiB
1198
  @type owner: str
1199
  @param owner: the name of the instance for which disk is created,
1200
      used for device cache data
1201
  @type on_primary: boolean
1202
  @param on_primary:  indicates if it is the primary node or not
1203
  @type info: string
1204
  @param info: string that will be sent to the physical device
1205
      creation, used for example to set (LVM) tags on LVs
1206

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

1211
  """
1212
  # TODO: remove the obsolete 'size' argument
1213
  # pylint: disable-msg=W0613
1214
  clist = []
1215
  if disk.children:
1216
    for child in disk.children:
1217
      try:
1218
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1219
      except errors.BlockDeviceError, err:
1220
        _Fail("Can't assemble device %s: %s", child, err)
1221
      if on_primary or disk.AssembleOnSecondary():
1222
        # we need the children open in case the device itself has to
1223
        # be assembled
1224
        try:
1225
          # pylint: disable-msg=E1103
1226
          crdev.Open()
1227
        except errors.BlockDeviceError, err:
1228
          _Fail("Can't make child '%s' read-write: %s", child, err)
1229
      clist.append(crdev)
1230

    
1231
  try:
1232
    device = bdev.Create(disk.dev_type, disk.physical_id, clist, disk.size)
1233
  except errors.BlockDeviceError, err:
1234
    _Fail("Can't create block device: %s", err)
1235

    
1236
  if on_primary or disk.AssembleOnSecondary():
1237
    try:
1238
      device.Assemble()
1239
    except errors.BlockDeviceError, err:
1240
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1241
    device.SetSyncSpeed(constants.SYNC_SPEED)
1242
    if on_primary or disk.OpenOnSecondary():
1243
      try:
1244
        device.Open(force=True)
1245
      except errors.BlockDeviceError, err:
1246
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1247
    DevCacheManager.UpdateCache(device.dev_path, owner,
1248
                                on_primary, disk.iv_name)
1249

    
1250
  device.SetInfo(info)
1251

    
1252
  return device.unique_id
1253

    
1254

    
1255
def BlockdevRemove(disk):
1256
  """Remove a block device.
1257

1258
  @note: This is intended to be called recursively.
1259

1260
  @type disk: L{objects.Disk}
1261
  @param disk: the disk object we should remove
1262
  @rtype: boolean
1263
  @return: the success of the operation
1264

1265
  """
1266
  msgs = []
1267
  try:
1268
    rdev = _RecursiveFindBD(disk)
1269
  except errors.BlockDeviceError, err:
1270
    # probably can't attach
1271
    logging.info("Can't attach to device %s in remove", disk)
1272
    rdev = None
1273
  if rdev is not None:
1274
    r_path = rdev.dev_path
1275
    try:
1276
      rdev.Remove()
1277
    except errors.BlockDeviceError, err:
1278
      msgs.append(str(err))
1279
    if not msgs:
1280
      DevCacheManager.RemoveCache(r_path)
1281

    
1282
  if disk.children:
1283
    for child in disk.children:
1284
      try:
1285
        BlockdevRemove(child)
1286
      except RPCFail, err:
1287
        msgs.append(str(err))
1288

    
1289
  if msgs:
1290
    _Fail("; ".join(msgs))
1291

    
1292

    
1293
def _RecursiveAssembleBD(disk, owner, as_primary):
1294
  """Activate a block device for an instance.
1295

1296
  This is run on the primary and secondary nodes for an instance.
1297

1298
  @note: this function is called recursively.
1299

1300
  @type disk: L{objects.Disk}
1301
  @param disk: the disk we try to assemble
1302
  @type owner: str
1303
  @param owner: the name of the instance which owns the disk
1304
  @type as_primary: boolean
1305
  @param as_primary: if we should make the block device
1306
      read/write
1307

1308
  @return: the assembled device or None (in case no device
1309
      was assembled)
1310
  @raise errors.BlockDeviceError: in case there is an error
1311
      during the activation of the children or the device
1312
      itself
1313

1314
  """
1315
  children = []
1316
  if disk.children:
1317
    mcn = disk.ChildrenNeeded()
1318
    if mcn == -1:
1319
      mcn = 0 # max number of Nones allowed
1320
    else:
1321
      mcn = len(disk.children) - mcn # max number of Nones
1322
    for chld_disk in disk.children:
1323
      try:
1324
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1325
      except errors.BlockDeviceError, err:
1326
        if children.count(None) >= mcn:
1327
          raise
1328
        cdev = None
1329
        logging.error("Error in child activation (but continuing): %s",
1330
                      str(err))
1331
      children.append(cdev)
1332

    
1333
  if as_primary or disk.AssembleOnSecondary():
1334
    r_dev = bdev.Assemble(disk.dev_type, disk.physical_id, children, disk.size)
1335
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
1336
    result = r_dev
1337
    if as_primary or disk.OpenOnSecondary():
1338
      r_dev.Open()
1339
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1340
                                as_primary, disk.iv_name)
1341

    
1342
  else:
1343
    result = True
1344
  return result
1345

    
1346

    
1347
def BlockdevAssemble(disk, owner, as_primary):
1348
  """Activate a block device for an instance.
1349

1350
  This is a wrapper over _RecursiveAssembleBD.
1351

1352
  @rtype: str or boolean
1353
  @return: a C{/dev/...} path for primary nodes, and
1354
      C{True} for secondary nodes
1355

1356
  """
1357
  try:
1358
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1359
    if isinstance(result, bdev.BlockDev):
1360
      # pylint: disable-msg=E1103
1361
      result = result.dev_path
1362
  except errors.BlockDeviceError, err:
1363
    _Fail("Error while assembling disk: %s", err, exc=True)
1364

    
1365
  return result
1366

    
1367

    
1368
def BlockdevShutdown(disk):
1369
  """Shut down a block device.
1370

1371
  First, if the device is assembled (Attach() is successful), then
1372
  the device is shutdown. Then the children of the device are
1373
  shutdown.
1374

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

1379
  @type disk: L{objects.Disk}
1380
  @param disk: the description of the disk we should
1381
      shutdown
1382
  @rtype: None
1383

1384
  """
1385
  msgs = []
1386
  r_dev = _RecursiveFindBD(disk)
1387
  if r_dev is not None:
1388
    r_path = r_dev.dev_path
1389
    try:
1390
      r_dev.Shutdown()
1391
      DevCacheManager.RemoveCache(r_path)
1392
    except errors.BlockDeviceError, err:
1393
      msgs.append(str(err))
1394

    
1395
  if disk.children:
1396
    for child in disk.children:
1397
      try:
1398
        BlockdevShutdown(child)
1399
      except RPCFail, err:
1400
        msgs.append(str(err))
1401

    
1402
  if msgs:
1403
    _Fail("; ".join(msgs))
1404

    
1405

    
1406
def BlockdevAddchildren(parent_cdev, new_cdevs):
1407
  """Extend a mirrored block device.
1408

1409
  @type parent_cdev: L{objects.Disk}
1410
  @param parent_cdev: the disk to which we should add children
1411
  @type new_cdevs: list of L{objects.Disk}
1412
  @param new_cdevs: the list of children which we should add
1413
  @rtype: None
1414

1415
  """
1416
  parent_bdev = _RecursiveFindBD(parent_cdev)
1417
  if parent_bdev is None:
1418
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
1419
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
1420
  if new_bdevs.count(None) > 0:
1421
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
1422
  parent_bdev.AddChildren(new_bdevs)
1423

    
1424

    
1425
def BlockdevRemovechildren(parent_cdev, new_cdevs):
1426
  """Shrink a mirrored block device.
1427

1428
  @type parent_cdev: L{objects.Disk}
1429
  @param parent_cdev: the disk from which we should remove children
1430
  @type new_cdevs: list of L{objects.Disk}
1431
  @param new_cdevs: the list of children which we should remove
1432
  @rtype: None
1433

1434
  """
1435
  parent_bdev = _RecursiveFindBD(parent_cdev)
1436
  if parent_bdev is None:
1437
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
1438
  devs = []
1439
  for disk in new_cdevs:
1440
    rpath = disk.StaticDevPath()
1441
    if rpath is None:
1442
      bd = _RecursiveFindBD(disk)
1443
      if bd is None:
1444
        _Fail("Can't find device %s while removing children", disk)
1445
      else:
1446
        devs.append(bd.dev_path)
1447
    else:
1448
      devs.append(rpath)
1449
  parent_bdev.RemoveChildren(devs)
1450

    
1451

    
1452
def BlockdevGetmirrorstatus(disks):
1453
  """Get the mirroring status of a list of devices.
1454

1455
  @type disks: list of L{objects.Disk}
1456
  @param disks: the list of disks which we should query
1457
  @rtype: disk
1458
  @return:
1459
      a list of (mirror_done, estimated_time) tuples, which
1460
      are the result of L{bdev.BlockDev.CombinedSyncStatus}
1461
  @raise errors.BlockDeviceError: if any of the disks cannot be
1462
      found
1463

1464
  """
1465
  stats = []
1466
  for dsk in disks:
1467
    rbd = _RecursiveFindBD(dsk)
1468
    if rbd is None:
1469
      _Fail("Can't find device %s", dsk)
1470

    
1471
    stats.append(rbd.CombinedSyncStatus())
1472

    
1473
  return stats
1474

    
1475

    
1476
def _RecursiveFindBD(disk):
1477
  """Check if a device is activated.
1478

1479
  If so, return information about the real device.
1480

1481
  @type disk: L{objects.Disk}
1482
  @param disk: the disk object we need to find
1483

1484
  @return: None if the device can't be found,
1485
      otherwise the device instance
1486

1487
  """
1488
  children = []
1489
  if disk.children:
1490
    for chdisk in disk.children:
1491
      children.append(_RecursiveFindBD(chdisk))
1492

    
1493
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children, disk.size)
1494

    
1495

    
1496
def BlockdevFind(disk):
1497
  """Check if a device is activated.
1498

1499
  If it is, return information about the real device.
1500

1501
  @type disk: L{objects.Disk}
1502
  @param disk: the disk to find
1503
  @rtype: None or objects.BlockDevStatus
1504
  @return: None if the disk cannot be found, otherwise a the current
1505
           information
1506

1507
  """
1508
  try:
1509
    rbd = _RecursiveFindBD(disk)
1510
  except errors.BlockDeviceError, err:
1511
    _Fail("Failed to find device: %s", err, exc=True)
1512

    
1513
  if rbd is None:
1514
    return None
1515

    
1516
  return rbd.GetSyncStatus()
1517

    
1518

    
1519
def BlockdevGetsize(disks):
1520
  """Computes the size of the given disks.
1521

1522
  If a disk is not found, returns None instead.
1523

1524
  @type disks: list of L{objects.Disk}
1525
  @param disks: the list of disk to compute the size for
1526
  @rtype: list
1527
  @return: list with elements None if the disk cannot be found,
1528
      otherwise the size
1529

1530
  """
1531
  result = []
1532
  for cf in disks:
1533
    try:
1534
      rbd = _RecursiveFindBD(cf)
1535
    except errors.BlockDeviceError:
1536
      result.append(None)
1537
      continue
1538
    if rbd is None:
1539
      result.append(None)
1540
    else:
1541
      result.append(rbd.GetActualSize())
1542
  return result
1543

    
1544

    
1545
def BlockdevExport(disk, dest_node, dest_path, cluster_name):
1546
  """Export a block device to a remote node.
1547

1548
  @type disk: L{objects.Disk}
1549
  @param disk: the description of the disk to export
1550
  @type dest_node: str
1551
  @param dest_node: the destination node to export to
1552
  @type dest_path: str
1553
  @param dest_path: the destination path on the target node
1554
  @type cluster_name: str
1555
  @param cluster_name: the cluster name, needed for SSH hostalias
1556
  @rtype: None
1557

1558
  """
1559
  real_disk = _RecursiveFindBD(disk)
1560
  if real_disk is None:
1561
    _Fail("Block device '%s' is not set up", disk)
1562

    
1563
  real_disk.Open()
1564

    
1565
  # the block size on the read dd is 1MiB to match our units
1566
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
1567
                               "dd if=%s bs=1048576 count=%s",
1568
                               real_disk.dev_path, str(disk.size))
1569

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

    
1579
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1580
                                                   constants.GANETI_RUNAS,
1581
                                                   destcmd)
1582

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

    
1586
  result = utils.RunCmd(["bash", "-c", command])
1587

    
1588
  if result.failed:
1589
    _Fail("Disk copy command '%s' returned error: %s"
1590
          " output: %s", command, result.fail_reason, result.output)
1591

    
1592

    
1593
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1594
  """Write a file to the filesystem.
1595

1596
  This allows the master to overwrite(!) a file. It will only perform
1597
  the operation if the file belongs to a list of configuration files.
1598

1599
  @type file_name: str
1600
  @param file_name: the target file name
1601
  @type data: str
1602
  @param data: the new contents of the file
1603
  @type mode: int
1604
  @param mode: the mode to give the file (can be None)
1605
  @type uid: int
1606
  @param uid: the owner of the file (can be -1 for default)
1607
  @type gid: int
1608
  @param gid: the group of the file (can be -1 for default)
1609
  @type atime: float
1610
  @param atime: the atime to set on the file (can be None)
1611
  @type mtime: float
1612
  @param mtime: the mtime to set on the file (can be None)
1613
  @rtype: None
1614

1615
  """
1616
  if not os.path.isabs(file_name):
1617
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1618

    
1619
  if file_name not in _ALLOWED_UPLOAD_FILES:
1620
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1621
          file_name)
1622

    
1623
  raw_data = _Decompress(data)
1624

    
1625
  utils.WriteFile(file_name, data=raw_data, mode=mode, uid=uid, gid=gid,
1626
                  atime=atime, mtime=mtime)
1627

    
1628

    
1629
def WriteSsconfFiles(values):
1630
  """Update all ssconf files.
1631

1632
  Wrapper around the SimpleStore.WriteFiles.
1633

1634
  """
1635
  ssconf.SimpleStore().WriteFiles(values)
1636

    
1637

    
1638
def _ErrnoOrStr(err):
1639
  """Format an EnvironmentError exception.
1640

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

1645
  @type err: L{EnvironmentError}
1646
  @param err: the exception to format
1647

1648
  """
1649
  if hasattr(err, 'errno'):
1650
    detail = errno.errorcode[err.errno]
1651
  else:
1652
    detail = str(err)
1653
  return detail
1654

    
1655

    
1656
def _OSOndiskAPIVersion(os_dir):
1657
  """Compute and return the API version of a given OS.
1658

1659
  This function will try to read the API version of the OS residing in
1660
  the 'os_dir' directory.
1661

1662
  @type os_dir: str
1663
  @param os_dir: the directory in which we should look for the OS
1664
  @rtype: tuple
1665
  @return: tuple (status, data) with status denoting the validity and
1666
      data holding either the vaid versions or an error message
1667

1668
  """
1669
  api_file = os.path.sep.join([os_dir, constants.OS_API_FILE])
1670

    
1671
  try:
1672
    st = os.stat(api_file)
1673
  except EnvironmentError, err:
1674
    return False, ("Required file '%s' not found under path %s: %s" %
1675
                   (constants.OS_API_FILE, os_dir, _ErrnoOrStr(err)))
1676

    
1677
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1678
    return False, ("File '%s' in %s is not a regular file" %
1679
                   (constants.OS_API_FILE, os_dir))
1680

    
1681
  try:
1682
    api_versions = utils.ReadFile(api_file).splitlines()
1683
  except EnvironmentError, err:
1684
    return False, ("Error while reading the API version file at %s: %s" %
1685
                   (api_file, _ErrnoOrStr(err)))
1686

    
1687
  try:
1688
    api_versions = [int(version.strip()) for version in api_versions]
1689
  except (TypeError, ValueError), err:
1690
    return False, ("API version(s) can't be converted to integer: %s" %
1691
                   str(err))
1692

    
1693
  return True, api_versions
1694

    
1695

    
1696
def DiagnoseOS(top_dirs=None):
1697
  """Compute the validity for all OSes.
1698

1699
  @type top_dirs: list
1700
  @param top_dirs: the list of directories in which to
1701
      search (if not given defaults to
1702
      L{constants.OS_SEARCH_PATH})
1703
  @rtype: list of L{objects.OS}
1704
  @return: a list of tuples (name, path, status, diagnose, variants)
1705
      for all (potential) OSes under all search paths, where:
1706
          - name is the (potential) OS name
1707
          - path is the full path to the OS
1708
          - status True/False is the validity of the OS
1709
          - diagnose is the error message for an invalid OS, otherwise empty
1710
          - variants is a list of supported OS variants, if any
1711

1712
  """
1713
  if top_dirs is None:
1714
    top_dirs = constants.OS_SEARCH_PATH
1715

    
1716
  result = []
1717
  for dir_name in top_dirs:
1718
    if os.path.isdir(dir_name):
1719
      try:
1720
        f_names = utils.ListVisibleFiles(dir_name)
1721
      except EnvironmentError, err:
1722
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
1723
        break
1724
      for name in f_names:
1725
        os_path = os.path.sep.join([dir_name, name])
1726
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
1727
        if status:
1728
          diagnose = ""
1729
          variants = os_inst.supported_variants
1730
        else:
1731
          diagnose = os_inst
1732
          variants = []
1733
        result.append((name, os_path, status, diagnose, variants))
1734

    
1735
  return result
1736

    
1737

    
1738
def _TryOSFromDisk(name, base_dir=None):
1739
  """Create an OS instance from disk.
1740

1741
  This function will return an OS instance if the given name is a
1742
  valid OS name.
1743

1744
  @type base_dir: string
1745
  @keyword base_dir: Base directory containing OS installations.
1746
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1747
  @rtype: tuple
1748
  @return: success and either the OS instance if we find a valid one,
1749
      or error message
1750

1751
  """
1752
  if base_dir is None:
1753
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1754
  else:
1755
    os_dir = utils.FindFile(name, [base_dir], os.path.isdir)
1756

    
1757
  if os_dir is None:
1758
    return False, "Directory for OS %s not found in search path" % name
1759

    
1760
  status, api_versions = _OSOndiskAPIVersion(os_dir)
1761
  if not status:
1762
    # push the error up
1763
    return status, api_versions
1764

    
1765
  if not constants.OS_API_VERSIONS.intersection(api_versions):
1766
    return False, ("API version mismatch for path '%s': found %s, want %s." %
1767
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
1768

    
1769
  # OS Files dictionary, we will populate it with the absolute path names
1770
  os_files = dict.fromkeys(constants.OS_SCRIPTS)
1771

    
1772
  if max(api_versions) >= constants.OS_API_V15:
1773
    os_files[constants.OS_VARIANTS_FILE] = ''
1774

    
1775
  for filename in os_files:
1776
    os_files[filename] = os.path.sep.join([os_dir, filename])
1777

    
1778
    try:
1779
      st = os.stat(os_files[filename])
1780
    except EnvironmentError, err:
1781
      return False, ("File '%s' under path '%s' is missing (%s)" %
1782
                     (filename, os_dir, _ErrnoOrStr(err)))
1783

    
1784
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1785
      return False, ("File '%s' under path '%s' is not a regular file" %
1786
                     (filename, os_dir))
1787

    
1788
    if filename in constants.OS_SCRIPTS:
1789
      if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1790
        return False, ("File '%s' under path '%s' is not executable" %
1791
                       (filename, os_dir))
1792

    
1793
  variants = None
1794
  if constants.OS_VARIANTS_FILE in os_files:
1795
    variants_file = os_files[constants.OS_VARIANTS_FILE]
1796
    try:
1797
      variants = utils.ReadFile(variants_file).splitlines()
1798
    except EnvironmentError, err:
1799
      return False, ("Error while reading the OS variants file at %s: %s" %
1800
                     (variants_file, _ErrnoOrStr(err)))
1801
    if not variants:
1802
      return False, ("No supported os variant found")
1803

    
1804
  os_obj = objects.OS(name=name, path=os_dir,
1805
                      create_script=os_files[constants.OS_SCRIPT_CREATE],
1806
                      export_script=os_files[constants.OS_SCRIPT_EXPORT],
1807
                      import_script=os_files[constants.OS_SCRIPT_IMPORT],
1808
                      rename_script=os_files[constants.OS_SCRIPT_RENAME],
1809
                      supported_variants=variants,
1810
                      api_versions=api_versions)
1811
  return True, os_obj
1812

    
1813

    
1814
def OSFromDisk(name, base_dir=None):
1815
  """Create an OS instance from disk.
1816

1817
  This function will return an OS instance if the given name is a
1818
  valid OS name. Otherwise, it will raise an appropriate
1819
  L{RPCFail} exception, detailing why this is not a valid OS.
1820

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

1824
  @type base_dir: string
1825
  @keyword base_dir: Base directory containing OS installations.
1826
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1827
  @rtype: L{objects.OS}
1828
  @return: the OS instance if we find a valid one
1829
  @raise RPCFail: if we don't find a valid OS
1830

1831
  """
1832
  name_only = name.split("+", 1)[0]
1833
  status, payload = _TryOSFromDisk(name_only, base_dir)
1834

    
1835
  if not status:
1836
    _Fail(payload)
1837

    
1838
  return payload
1839

    
1840

    
1841
def OSEnvironment(instance, inst_os, debug=0):
1842
  """Calculate the environment for an os script.
1843

1844
  @type instance: L{objects.Instance}
1845
  @param instance: target instance for the os script run
1846
  @type inst_os: L{objects.OS}
1847
  @param inst_os: operating system for which the environment is being built
1848
  @type debug: integer
1849
  @param debug: debug level (0 or 1, for OS Api 10)
1850
  @rtype: dict
1851
  @return: dict of environment variables
1852
  @raise errors.BlockDeviceError: if the block device
1853
      cannot be found
1854

1855
  """
1856
  result = {}
1857
  api_version = \
1858
    max(constants.OS_API_VERSIONS.intersection(inst_os.api_versions))
1859
  result['OS_API_VERSION'] = '%d' % api_version
1860
  result['INSTANCE_NAME'] = instance.name
1861
  result['INSTANCE_OS'] = instance.os
1862
  result['HYPERVISOR'] = instance.hypervisor
1863
  result['DISK_COUNT'] = '%d' % len(instance.disks)
1864
  result['NIC_COUNT'] = '%d' % len(instance.nics)
1865
  result['DEBUG_LEVEL'] = '%d' % debug
1866
  if api_version >= constants.OS_API_V15:
1867
    try:
1868
      variant = instance.os.split('+', 1)[1]
1869
    except IndexError:
1870
      variant = inst_os.supported_variants[0]
1871
    result['OS_VARIANT'] = variant
1872
  for idx, disk in enumerate(instance.disks):
1873
    real_disk = _RecursiveFindBD(disk)
1874
    if real_disk is None:
1875
      raise errors.BlockDeviceError("Block device '%s' is not set up" %
1876
                                    str(disk))
1877
    real_disk.Open()
1878
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
1879
    result['DISK_%d_ACCESS' % idx] = disk.mode
1880
    if constants.HV_DISK_TYPE in instance.hvparams:
1881
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
1882
        instance.hvparams[constants.HV_DISK_TYPE]
1883
    if disk.dev_type in constants.LDS_BLOCK:
1884
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
1885
    elif disk.dev_type == constants.LD_FILE:
1886
      result['DISK_%d_BACKEND_TYPE' % idx] = \
1887
        'file:%s' % disk.physical_id[0]
1888
  for idx, nic in enumerate(instance.nics):
1889
    result['NIC_%d_MAC' % idx] = nic.mac
1890
    if nic.ip:
1891
      result['NIC_%d_IP' % idx] = nic.ip
1892
    result['NIC_%d_MODE' % idx] = nic.nicparams[constants.NIC_MODE]
1893
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
1894
      result['NIC_%d_BRIDGE' % idx] = nic.nicparams[constants.NIC_LINK]
1895
    if nic.nicparams[constants.NIC_LINK]:
1896
      result['NIC_%d_LINK' % idx] = nic.nicparams[constants.NIC_LINK]
1897
    if constants.HV_NIC_TYPE in instance.hvparams:
1898
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
1899
        instance.hvparams[constants.HV_NIC_TYPE]
1900

    
1901
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
1902
    for key, value in source.items():
1903
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
1904

    
1905
  return result
1906

    
1907
def BlockdevGrow(disk, amount):
1908
  """Grow a stack of block devices.
1909

1910
  This function is called recursively, with the childrens being the
1911
  first ones to resize.
1912

1913
  @type disk: L{objects.Disk}
1914
  @param disk: the disk to be grown
1915
  @rtype: (status, result)
1916
  @return: a tuple with the status of the operation
1917
      (True/False), and the errors message if status
1918
      is False
1919

1920
  """
1921
  r_dev = _RecursiveFindBD(disk)
1922
  if r_dev is None:
1923
    _Fail("Cannot find block device %s", disk)
1924

    
1925
  try:
1926
    r_dev.Grow(amount)
1927
  except errors.BlockDeviceError, err:
1928
    _Fail("Failed to grow block device: %s", err, exc=True)
1929

    
1930

    
1931
def BlockdevSnapshot(disk):
1932
  """Create a snapshot copy of a block device.
1933

1934
  This function is called recursively, and the snapshot is actually created
1935
  just for the leaf lvm backend device.
1936

1937
  @type disk: L{objects.Disk}
1938
  @param disk: the disk to be snapshotted
1939
  @rtype: string
1940
  @return: snapshot disk path
1941

1942
  """
1943
  if disk.dev_type == constants.LD_DRBD8:
1944
    if not disk.children:
1945
      _Fail("DRBD device '%s' without backing storage cannot be snapshotted",
1946
            disk.unique_id)
1947
    return BlockdevSnapshot(disk.children[0])
1948
  elif disk.dev_type == constants.LD_LV:
1949
    r_dev = _RecursiveFindBD(disk)
1950
    if r_dev is not None:
1951
      # FIXME: choose a saner value for the snapshot size
1952
      # let's stay on the safe side and ask for the full size, for now
1953
      return r_dev.Snapshot(disk.size)
1954
    else:
1955
      _Fail("Cannot find block device %s", disk)
1956
  else:
1957
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
1958
          disk.unique_id, disk.dev_type)
1959

    
1960

    
1961
def ExportSnapshot(disk, dest_node, instance, cluster_name, idx, debug):
1962
  """Export a block device snapshot to a remote node.
1963

1964
  @type disk: L{objects.Disk}
1965
  @param disk: the description of the disk to export
1966
  @type dest_node: str
1967
  @param dest_node: the destination node to export to
1968
  @type instance: L{objects.Instance}
1969
  @param instance: the instance object to whom the disk belongs
1970
  @type cluster_name: str
1971
  @param cluster_name: the cluster name, needed for SSH hostalias
1972
  @type idx: int
1973
  @param idx: the index of the disk in the instance's disk list,
1974
      used to export to the OS scripts environment
1975
  @type debug: integer
1976
  @param debug: debug level, passed to the OS scripts
1977
  @rtype: None
1978

1979
  """
1980
  inst_os = OSFromDisk(instance.os)
1981
  export_env = OSEnvironment(instance, inst_os, debug)
1982

    
1983
  export_script = inst_os.export_script
1984

    
1985
  logfile = "%s/exp-%s-%s-%s.log" % (constants.LOG_OS_DIR, inst_os.name,
1986
                                     instance.name, int(time.time()))
1987
  if not os.path.exists(constants.LOG_OS_DIR):
1988
    os.mkdir(constants.LOG_OS_DIR, 0750)
1989
  real_disk = _RecursiveFindBD(disk)
1990
  if real_disk is None:
1991
    _Fail("Block device '%s' is not set up", disk)
1992

    
1993
  real_disk.Open()
1994

    
1995
  export_env['EXPORT_DEVICE'] = real_disk.dev_path
1996
  export_env['EXPORT_INDEX'] = str(idx)
1997

    
1998
  destdir = utils.PathJoin(constants.EXPORT_DIR, instance.name + ".new")
1999
  destfile = disk.physical_id[1]
2000

    
2001
  # the target command is built out of three individual commands,
2002
  # which are joined by pipes; we check each individual command for
2003
  # valid parameters
2004
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; cd %s; %s 2>%s",
2005
                               inst_os.path, export_script, logfile)
2006

    
2007
  comprcmd = "gzip"
2008

    
2009
  destcmd = utils.BuildShellCmd("mkdir -p %s && cat > %s/%s",
2010
                                destdir, destdir, destfile)
2011
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
2012
                                                   constants.GANETI_RUNAS,
2013
                                                   destcmd)
2014

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

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

    
2020
  if result.failed:
2021
    _Fail("OS snapshot export command '%s' returned error: %s"
2022
          " output: %s", command, result.fail_reason, result.output)
2023

    
2024

    
2025
def FinalizeExport(instance, snap_disks):
2026
  """Write out the export configuration information.
2027

2028
  @type instance: L{objects.Instance}
2029
  @param instance: the instance which we export, used for
2030
      saving configuration
2031
  @type snap_disks: list of L{objects.Disk}
2032
  @param snap_disks: list of snapshot block devices, which
2033
      will be used to get the actual name of the dump file
2034

2035
  @rtype: None
2036

2037
  """
2038
  destdir = utils.PathJoin(constants.EXPORT_DIR, instance.name + ".new")
2039
  finaldestdir = utils.PathJoin(constants.EXPORT_DIR, instance.name)
2040

    
2041
  config = objects.SerializableConfigParser()
2042

    
2043
  config.add_section(constants.INISECT_EXP)
2044
  config.set(constants.INISECT_EXP, 'version', '0')
2045
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
2046
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
2047
  config.set(constants.INISECT_EXP, 'os', instance.os)
2048
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
2049

    
2050
  config.add_section(constants.INISECT_INS)
2051
  config.set(constants.INISECT_INS, 'name', instance.name)
2052
  config.set(constants.INISECT_INS, 'memory', '%d' %
2053
             instance.beparams[constants.BE_MEMORY])
2054
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
2055
             instance.beparams[constants.BE_VCPUS])
2056
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
2057

    
2058
  nic_total = 0
2059
  for nic_count, nic in enumerate(instance.nics):
2060
    nic_total += 1
2061
    config.set(constants.INISECT_INS, 'nic%d_mac' %
2062
               nic_count, '%s' % nic.mac)
2063
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
2064
    config.set(constants.INISECT_INS, 'nic%d_bridge' % nic_count,
2065
               '%s' % nic.bridge)
2066
  # TODO: redundant: on load can read nics until it doesn't exist
2067
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_total)
2068

    
2069
  disk_total = 0
2070
  for disk_count, disk in enumerate(snap_disks):
2071
    if disk:
2072
      disk_total += 1
2073
      config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
2074
                 ('%s' % disk.iv_name))
2075
      config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
2076
                 ('%s' % disk.physical_id[1]))
2077
      config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
2078
                 ('%d' % disk.size))
2079

    
2080
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_total)
2081

    
2082
  utils.WriteFile(utils.PathJoin(destdir, constants.EXPORT_CONF_FILE),
2083
                  data=config.Dumps())
2084
  shutil.rmtree(finaldestdir, True)
2085
  shutil.move(destdir, finaldestdir)
2086

    
2087

    
2088
def ExportInfo(dest):
2089
  """Get export configuration information.
2090

2091
  @type dest: str
2092
  @param dest: directory containing the export
2093

2094
  @rtype: L{objects.SerializableConfigParser}
2095
  @return: a serializable config file containing the
2096
      export info
2097

2098
  """
2099
  cff = utils.PathJoin(dest, constants.EXPORT_CONF_FILE)
2100

    
2101
  config = objects.SerializableConfigParser()
2102
  config.read(cff)
2103

    
2104
  if (not config.has_section(constants.INISECT_EXP) or
2105
      not config.has_section(constants.INISECT_INS)):
2106
    _Fail("Export info file doesn't have the required fields")
2107

    
2108
  return config.Dumps()
2109

    
2110

    
2111
def ImportOSIntoInstance(instance, src_node, src_images, cluster_name, debug):
2112
  """Import an os image into an instance.
2113

2114
  @type instance: L{objects.Instance}
2115
  @param instance: instance to import the disks into
2116
  @type src_node: string
2117
  @param src_node: source node for the disk images
2118
  @type src_images: list of string
2119
  @param src_images: absolute paths of the disk images
2120
  @type debug: integer
2121
  @param debug: debug level, passed to the OS scripts
2122
  @rtype: list of boolean
2123
  @return: each boolean represent the success of importing the n-th disk
2124

2125
  """
2126
  inst_os = OSFromDisk(instance.os)
2127
  import_env = OSEnvironment(instance, inst_os, debug)
2128
  import_script = inst_os.import_script
2129

    
2130
  logfile = "%s/import-%s-%s-%s.log" % (constants.LOG_OS_DIR, instance.os,
2131
                                        instance.name, int(time.time()))
2132
  if not os.path.exists(constants.LOG_OS_DIR):
2133
    os.mkdir(constants.LOG_OS_DIR, 0750)
2134

    
2135
  comprcmd = "gunzip"
2136
  impcmd = utils.BuildShellCmd("(cd %s; %s >%s 2>&1)", inst_os.path,
2137
                               import_script, logfile)
2138

    
2139
  final_result = []
2140
  for idx, image in enumerate(src_images):
2141
    if image:
2142
      destcmd = utils.BuildShellCmd('cat %s', image)
2143
      remotecmd = _GetSshRunner(cluster_name).BuildCmd(src_node,
2144
                                                       constants.GANETI_RUNAS,
2145
                                                       destcmd)
2146
      command = '|'.join([utils.ShellQuoteArgs(remotecmd), comprcmd, impcmd])
2147
      import_env['IMPORT_DEVICE'] = import_env['DISK_%d_PATH' % idx]
2148
      import_env['IMPORT_INDEX'] = str(idx)
2149
      result = utils.RunCmd(command, env=import_env)
2150
      if result.failed:
2151
        logging.error("Disk import command '%s' returned error: %s"
2152
                      " output: %s", command, result.fail_reason,
2153
                      result.output)
2154
        final_result.append("error importing disk %d: %s, %s" %
2155
                            (idx, result.fail_reason, result.output[-100]))
2156

    
2157
  if final_result:
2158
    _Fail("; ".join(final_result), log=False)
2159

    
2160

    
2161
def ListExports():
2162
  """Return a list of exports currently available on this machine.
2163

2164
  @rtype: list
2165
  @return: list of the exports
2166

2167
  """
2168
  if os.path.isdir(constants.EXPORT_DIR):
2169
    return utils.ListVisibleFiles(constants.EXPORT_DIR)
2170
  else:
2171
    _Fail("No exports directory")
2172

    
2173

    
2174
def RemoveExport(export):
2175
  """Remove an existing export from the node.
2176

2177
  @type export: str
2178
  @param export: the name of the export to remove
2179
  @rtype: None
2180

2181
  """
2182
  target = utils.PathJoin(constants.EXPORT_DIR, export)
2183

    
2184
  try:
2185
    shutil.rmtree(target)
2186
  except EnvironmentError, err:
2187
    _Fail("Error while removing the export: %s", err, exc=True)
2188

    
2189

    
2190
def BlockdevRename(devlist):
2191
  """Rename a list of block devices.
2192

2193
  @type devlist: list of tuples
2194
  @param devlist: list of tuples of the form  (disk,
2195
      new_logical_id, new_physical_id); disk is an
2196
      L{objects.Disk} object describing the current disk,
2197
      and new logical_id/physical_id is the name we
2198
      rename it to
2199
  @rtype: boolean
2200
  @return: True if all renames succeeded, False otherwise
2201

2202
  """
2203
  msgs = []
2204
  result = True
2205
  for disk, unique_id in devlist:
2206
    dev = _RecursiveFindBD(disk)
2207
    if dev is None:
2208
      msgs.append("Can't find device %s in rename" % str(disk))
2209
      result = False
2210
      continue
2211
    try:
2212
      old_rpath = dev.dev_path
2213
      dev.Rename(unique_id)
2214
      new_rpath = dev.dev_path
2215
      if old_rpath != new_rpath:
2216
        DevCacheManager.RemoveCache(old_rpath)
2217
        # FIXME: we should add the new cache information here, like:
2218
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2219
        # but we don't have the owner here - maybe parse from existing
2220
        # cache? for now, we only lose lvm data when we rename, which
2221
        # is less critical than DRBD or MD
2222
    except errors.BlockDeviceError, err:
2223
      msgs.append("Can't rename device '%s' to '%s': %s" %
2224
                  (dev, unique_id, err))
2225
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2226
      result = False
2227
  if not result:
2228
    _Fail("; ".join(msgs))
2229

    
2230

    
2231
def _TransformFileStorageDir(file_storage_dir):
2232
  """Checks whether given file_storage_dir is valid.
2233

2234
  Checks wheter the given file_storage_dir is within the cluster-wide
2235
  default file_storage_dir stored in SimpleStore. Only paths under that
2236
  directory are allowed.
2237

2238
  @type file_storage_dir: str
2239
  @param file_storage_dir: the path to check
2240

2241
  @return: the normalized path if valid, None otherwise
2242

2243
  """
2244
  cfg = _GetConfig()
2245
  file_storage_dir = os.path.normpath(file_storage_dir)
2246
  base_file_storage_dir = cfg.GetFileStorageDir()
2247
  if (not os.path.commonprefix([file_storage_dir, base_file_storage_dir]) ==
2248
      base_file_storage_dir):
2249
    _Fail("File storage directory '%s' is not under base file"
2250
          " storage directory '%s'", file_storage_dir, base_file_storage_dir)
2251
  return file_storage_dir
2252

    
2253

    
2254
def CreateFileStorageDir(file_storage_dir):
2255
  """Create file storage directory.
2256

2257
  @type file_storage_dir: str
2258
  @param file_storage_dir: directory to create
2259

2260
  @rtype: tuple
2261
  @return: tuple with first element a boolean indicating wheter dir
2262
      creation was successful or not
2263

2264
  """
2265
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2266
  if os.path.exists(file_storage_dir):
2267
    if not os.path.isdir(file_storage_dir):
2268
      _Fail("Specified storage dir '%s' is not a directory",
2269
            file_storage_dir)
2270
  else:
2271
    try:
2272
      os.makedirs(file_storage_dir, 0750)
2273
    except OSError, err:
2274
      _Fail("Cannot create file storage directory '%s': %s",
2275
            file_storage_dir, err, exc=True)
2276

    
2277

    
2278
def RemoveFileStorageDir(file_storage_dir):
2279
  """Remove file storage directory.
2280

2281
  Remove it only if it's empty. If not log an error and return.
2282

2283
  @type file_storage_dir: str
2284
  @param file_storage_dir: the directory we should cleanup
2285
  @rtype: tuple (success,)
2286
  @return: tuple of one element, C{success}, denoting
2287
      whether the operation was successful
2288

2289
  """
2290
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2291
  if os.path.exists(file_storage_dir):
2292
    if not os.path.isdir(file_storage_dir):
2293
      _Fail("Specified Storage directory '%s' is not a directory",
2294
            file_storage_dir)
2295
    # deletes dir only if empty, otherwise we want to fail the rpc call
2296
    try:
2297
      os.rmdir(file_storage_dir)
2298
    except OSError, err:
2299
      _Fail("Cannot remove file storage directory '%s': %s",
2300
            file_storage_dir, err)
2301

    
2302

    
2303
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2304
  """Rename the file storage directory.
2305

2306
  @type old_file_storage_dir: str
2307
  @param old_file_storage_dir: the current path
2308
  @type new_file_storage_dir: str
2309
  @param new_file_storage_dir: the name we should rename to
2310
  @rtype: tuple (success,)
2311
  @return: tuple of one element, C{success}, denoting
2312
      whether the operation was successful
2313

2314
  """
2315
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2316
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2317
  if not os.path.exists(new_file_storage_dir):
2318
    if os.path.isdir(old_file_storage_dir):
2319
      try:
2320
        os.rename(old_file_storage_dir, new_file_storage_dir)
2321
      except OSError, err:
2322
        _Fail("Cannot rename '%s' to '%s': %s",
2323
              old_file_storage_dir, new_file_storage_dir, err)
2324
    else:
2325
      _Fail("Specified storage dir '%s' is not a directory",
2326
            old_file_storage_dir)
2327
  else:
2328
    if os.path.exists(old_file_storage_dir):
2329
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2330
            old_file_storage_dir, new_file_storage_dir)
2331

    
2332

    
2333
def _EnsureJobQueueFile(file_name):
2334
  """Checks whether the given filename is in the queue directory.
2335

2336
  @type file_name: str
2337
  @param file_name: the file name we should check
2338
  @rtype: None
2339
  @raises RPCFail: if the file is not valid
2340

2341
  """
2342
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2343
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2344

    
2345
  if not result:
2346
    _Fail("Passed job queue file '%s' does not belong to"
2347
          " the queue directory '%s'", file_name, queue_dir)
2348

    
2349

    
2350
def JobQueueUpdate(file_name, content):
2351
  """Updates a file in the queue directory.
2352

2353
  This is just a wrapper over L{utils.WriteFile}, with proper
2354
  checking.
2355

2356
  @type file_name: str
2357
  @param file_name: the job file name
2358
  @type content: str
2359
  @param content: the new job contents
2360
  @rtype: boolean
2361
  @return: the success of the operation
2362

2363
  """
2364
  _EnsureJobQueueFile(file_name)
2365

    
2366
  # Write and replace the file atomically
2367
  utils.WriteFile(file_name, data=_Decompress(content))
2368

    
2369

    
2370
def JobQueueRename(old, new):
2371
  """Renames a job queue file.
2372

2373
  This is just a wrapper over os.rename with proper checking.
2374

2375
  @type old: str
2376
  @param old: the old (actual) file name
2377
  @type new: str
2378
  @param new: the desired file name
2379
  @rtype: tuple
2380
  @return: the success of the operation and payload
2381

2382
  """
2383
  _EnsureJobQueueFile(old)
2384
  _EnsureJobQueueFile(new)
2385

    
2386
  utils.RenameFile(old, new, mkdir=True)
2387

    
2388

    
2389
def JobQueueSetDrainFlag(drain_flag):
2390
  """Set the drain flag for the queue.
2391

2392
  This will set or unset the queue drain flag.
2393

2394
  @type drain_flag: boolean
2395
  @param drain_flag: if True, will set the drain flag, otherwise reset it.
2396
  @rtype: truple
2397
  @return: always True, None
2398
  @warning: the function always returns True
2399

2400
  """
2401
  if drain_flag:
2402
    utils.WriteFile(constants.JOB_QUEUE_DRAIN_FILE, data="", close=True)
2403
  else:
2404
    utils.RemoveFile(constants.JOB_QUEUE_DRAIN_FILE)
2405

    
2406

    
2407
def BlockdevClose(instance_name, disks):
2408
  """Closes the given block devices.
2409

2410
  This means they will be switched to secondary mode (in case of
2411
  DRBD).
2412

2413
  @param instance_name: if the argument is not empty, the symlinks
2414
      of this instance will be removed
2415
  @type disks: list of L{objects.Disk}
2416
  @param disks: the list of disks to be closed
2417
  @rtype: tuple (success, message)
2418
  @return: a tuple of success and message, where success
2419
      indicates the succes of the operation, and message
2420
      which will contain the error details in case we
2421
      failed
2422

2423
  """
2424
  bdevs = []
2425
  for cf in disks:
2426
    rd = _RecursiveFindBD(cf)
2427
    if rd is None:
2428
      _Fail("Can't find device %s", cf)
2429
    bdevs.append(rd)
2430

    
2431
  msg = []
2432
  for rd in bdevs:
2433
    try:
2434
      rd.Close()
2435
    except errors.BlockDeviceError, err:
2436
      msg.append(str(err))
2437
  if msg:
2438
    _Fail("Can't make devices secondary: %s", ",".join(msg))
2439
  else:
2440
    if instance_name:
2441
      _RemoveBlockDevLinks(instance_name, disks)
2442

    
2443

    
2444
def ValidateHVParams(hvname, hvparams):
2445
  """Validates the given hypervisor parameters.
2446

2447
  @type hvname: string
2448
  @param hvname: the hypervisor name
2449
  @type hvparams: dict
2450
  @param hvparams: the hypervisor parameters to be validated
2451
  @rtype: None
2452

2453
  """
2454
  try:
2455
    hv_type = hypervisor.GetHypervisor(hvname)
2456
    hv_type.ValidateParameters(hvparams)
2457
  except errors.HypervisorError, err:
2458
    _Fail(str(err), log=False)
2459

    
2460

    
2461
def DemoteFromMC():
2462
  """Demotes the current node from master candidate role.
2463

2464
  """
2465
  # try to ensure we're not the master by mistake
2466
  master, myself = ssconf.GetMasterAndMyself()
2467
  if master == myself:
2468
    _Fail("ssconf status shows I'm the master node, will not demote")
2469

    
2470
  result = utils.RunCmd([constants.DAEMON_UTIL, "check", constants.MASTERD])
2471
  if not result.failed:
2472
    _Fail("The master daemon is running, will not demote")
2473

    
2474
  try:
2475
    if os.path.isfile(constants.CLUSTER_CONF_FILE):
2476
      utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2477
  except EnvironmentError, err:
2478
    if err.errno != errno.ENOENT:
2479
      _Fail("Error while backing up cluster file: %s", err, exc=True)
2480

    
2481
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2482

    
2483

    
2484
def _FindDisks(nodes_ip, disks):
2485
  """Sets the physical ID on disks and returns the block devices.
2486

2487
  """
2488
  # set the correct physical ID
2489
  my_name = utils.HostInfo().name
2490
  for cf in disks:
2491
    cf.SetPhysicalID(my_name, nodes_ip)
2492

    
2493
  bdevs = []
2494

    
2495
  for cf in disks:
2496
    rd = _RecursiveFindBD(cf)
2497
    if rd is None:
2498
      _Fail("Can't find device %s", cf)
2499
    bdevs.append(rd)
2500
  return bdevs
2501

    
2502

    
2503
def DrbdDisconnectNet(nodes_ip, disks):
2504
  """Disconnects the network on a list of drbd devices.
2505

2506
  """
2507
  bdevs = _FindDisks(nodes_ip, disks)
2508

    
2509
  # disconnect disks
2510
  for rd in bdevs:
2511
    try:
2512
      rd.DisconnectNet()
2513
    except errors.BlockDeviceError, err:
2514
      _Fail("Can't change network configuration to standalone mode: %s",
2515
            err, exc=True)
2516

    
2517

    
2518
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
2519
  """Attaches the network on a list of drbd devices.
2520

2521
  """
2522
  bdevs = _FindDisks(nodes_ip, disks)
2523

    
2524
  if multimaster:
2525
    for idx, rd in enumerate(bdevs):
2526
      try:
2527
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
2528
      except EnvironmentError, err:
2529
        _Fail("Can't create symlink: %s", err)
2530
  # reconnect disks, switch to new master configuration and if
2531
  # needed primary mode
2532
  for rd in bdevs:
2533
    try:
2534
      rd.AttachNet(multimaster)
2535
    except errors.BlockDeviceError, err:
2536
      _Fail("Can't change network configuration: %s", err)
2537

    
2538
  # wait until the disks are connected; we need to retry the re-attach
2539
  # if the device becomes standalone, as this might happen if the one
2540
  # node disconnects and reconnects in a different mode before the
2541
  # other node reconnects; in this case, one or both of the nodes will
2542
  # decide it has wrong configuration and switch to standalone
2543

    
2544
  def _Attach():
2545
    all_connected = True
2546

    
2547
    for rd in bdevs:
2548
      stats = rd.GetProcStatus()
2549

    
2550
      all_connected = (all_connected and
2551
                       (stats.is_connected or stats.is_in_resync))
2552

    
2553
      if stats.is_standalone:
2554
        # peer had different config info and this node became
2555
        # standalone, even though this should not happen with the
2556
        # new staged way of changing disk configs
2557
        try:
2558
          rd.AttachNet(multimaster)
2559
        except errors.BlockDeviceError, err:
2560
          _Fail("Can't change network configuration: %s", err)
2561

    
2562
    if not all_connected:
2563
      raise utils.RetryAgain()
2564

    
2565
  try:
2566
    # Start with a delay of 100 miliseconds and go up to 5 seconds
2567
    utils.Retry(_Attach, (0.1, 1.5, 5.0), 2 * 60)
2568
  except utils.RetryTimeout:
2569
    _Fail("Timeout in disk reconnecting")
2570

    
2571
  if multimaster:
2572
    # change to primary mode
2573
    for rd in bdevs:
2574
      try:
2575
        rd.Open()
2576
      except errors.BlockDeviceError, err:
2577
        _Fail("Can't change to primary mode: %s", err)
2578

    
2579

    
2580
def DrbdWaitSync(nodes_ip, disks):
2581
  """Wait until DRBDs have synchronized.
2582

2583
  """
2584
  def _helper(rd):
2585
    stats = rd.GetProcStatus()
2586
    if not (stats.is_connected or stats.is_in_resync):
2587
      raise utils.RetryAgain()
2588
    return stats
2589

    
2590
  bdevs = _FindDisks(nodes_ip, disks)
2591

    
2592
  min_resync = 100
2593
  alldone = True
2594
  for rd in bdevs:
2595
    try:
2596
      # poll each second for 15 seconds
2597
      stats = utils.Retry(_helper, 1, 15, args=[rd])
2598
    except utils.RetryTimeout:
2599
      stats = rd.GetProcStatus()
2600
      # last check
2601
      if not (stats.is_connected or stats.is_in_resync):
2602
        _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
2603
    alldone = alldone and (not stats.is_in_resync)
2604
    if stats.sync_percent is not None:
2605
      min_resync = min(min_resync, stats.sync_percent)
2606

    
2607
  return (alldone, min_resync)
2608

    
2609

    
2610
def PowercycleNode(hypervisor_type):
2611
  """Hard-powercycle the node.
2612

2613
  Because we need to return first, and schedule the powercycle in the
2614
  background, we won't be able to report failures nicely.
2615

2616
  """
2617
  hyper = hypervisor.GetHypervisor(hypervisor_type)
2618
  try:
2619
    pid = os.fork()
2620
  except OSError:
2621
    # if we can't fork, we'll pretend that we're in the child process
2622
    pid = 0
2623
  if pid > 0:
2624
    return "Reboot scheduled in 5 seconds"
2625
  time.sleep(5)
2626
  hyper.PowercycleNode()
2627

    
2628

    
2629
class HooksRunner(object):
2630
  """Hook runner.
2631

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

2635
  """
2636
  def __init__(self, hooks_base_dir=None):
2637
    """Constructor for hooks runner.
2638

2639
    @type hooks_base_dir: str or None
2640
    @param hooks_base_dir: if not None, this overrides the
2641
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
2642

2643
    """
2644
    if hooks_base_dir is None:
2645
      hooks_base_dir = constants.HOOKS_BASE_DIR
2646
    # yeah, _BASE_DIR is not valid for attributes, we use it like a
2647
    # constant
2648
    self._BASE_DIR = hooks_base_dir # pylint: disable-msg=C0103
2649

    
2650
  def RunHooks(self, hpath, phase, env):
2651
    """Run the scripts in the hooks directory.
2652

2653
    @type hpath: str
2654
    @param hpath: the path to the hooks directory which
2655
        holds the scripts
2656
    @type phase: str
2657
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
2658
        L{constants.HOOKS_PHASE_POST}
2659
    @type env: dict
2660
    @param env: dictionary with the environment for the hook
2661
    @rtype: list
2662
    @return: list of 3-element tuples:
2663
      - script path
2664
      - script result, either L{constants.HKR_SUCCESS} or
2665
        L{constants.HKR_FAIL}
2666
      - output of the script
2667

2668
    @raise errors.ProgrammerError: for invalid input
2669
        parameters
2670

2671
    """
2672
    if phase == constants.HOOKS_PHASE_PRE:
2673
      suffix = "pre"
2674
    elif phase == constants.HOOKS_PHASE_POST:
2675
      suffix = "post"
2676
    else:
2677
      _Fail("Unknown hooks phase '%s'", phase)
2678

    
2679

    
2680
    subdir = "%s-%s.d" % (hpath, suffix)
2681
    dir_name = "%s/%s" % (self._BASE_DIR, subdir)
2682
    runparts_results = utils.RunParts(dir_name, env=env, reset_env=True)
2683

    
2684
    results = []
2685
    for (relname, relstatus, runresult)  in runparts_results:
2686
      if relstatus == constants.RUNPARTS_SKIP:
2687
        rrval = constants.HKR_SKIP
2688
        output = ""
2689
      elif relstatus == constants.RUNPARTS_ERR:
2690
        rrval = constants.HKR_FAIL
2691
        output = "Hook script execution error: %s" % runresult
2692
      elif relstatus == constants.RUNPARTS_RUN:
2693
        if runresult.failed:
2694
          rrval = constants.HKR_FAIL
2695
        else:
2696
          rrval = constants.HKR_SUCCESS
2697
        output = utils.SafeEncode(runresult.output.strip())
2698
      results.append(("%s/%s" % (subdir, relname), rrval, output))
2699

    
2700
    return results
2701

    
2702

    
2703
class IAllocatorRunner(object):
2704
  """IAllocator runner.
2705

2706
  This class is instantiated on the node side (ganeti-noded) and not on
2707
  the master side.
2708

2709
  """
2710
  @staticmethod
2711
  def Run(name, idata):
2712
    """Run an iallocator script.
2713

2714
    @type name: str
2715
    @param name: the iallocator script name
2716
    @type idata: str
2717
    @param idata: the allocator input data
2718

2719
    @rtype: tuple
2720
    @return: two element tuple of:
2721
       - status
2722
       - either error message or stdout of allocator (for success)
2723

2724
    """
2725
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
2726
                                  os.path.isfile)
2727
    if alloc_script is None:
2728
      _Fail("iallocator module '%s' not found in the search path", name)
2729

    
2730
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
2731
    try:
2732
      os.write(fd, idata)
2733
      os.close(fd)
2734
      result = utils.RunCmd([alloc_script, fin_name])
2735
      if result.failed:
2736
        _Fail("iallocator module '%s' failed: %s, output '%s'",
2737
              name, result.fail_reason, result.output)
2738
    finally:
2739
      os.unlink(fin_name)
2740

    
2741
    return result.stdout
2742

    
2743

    
2744
class DevCacheManager(object):
2745
  """Simple class for managing a cache of block device information.
2746

2747
  """
2748
  _DEV_PREFIX = "/dev/"
2749
  _ROOT_DIR = constants.BDEV_CACHE_DIR
2750

    
2751
  @classmethod
2752
  def _ConvertPath(cls, dev_path):
2753
    """Converts a /dev/name path to the cache file name.
2754

2755
    This replaces slashes with underscores and strips the /dev
2756
    prefix. It then returns the full path to the cache file.
2757

2758
    @type dev_path: str
2759
    @param dev_path: the C{/dev/} path name
2760
    @rtype: str
2761
    @return: the converted path name
2762

2763
    """
2764
    if dev_path.startswith(cls._DEV_PREFIX):
2765
      dev_path = dev_path[len(cls._DEV_PREFIX):]
2766
    dev_path = dev_path.replace("/", "_")
2767
    fpath = "%s/bdev_%s" % (cls._ROOT_DIR, dev_path)
2768
    return fpath
2769

    
2770
  @classmethod
2771
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
2772
    """Updates the cache information for a given device.
2773

2774
    @type dev_path: str
2775
    @param dev_path: the pathname of the device
2776
    @type owner: str
2777
    @param owner: the owner (instance name) of the device
2778
    @type on_primary: bool
2779
    @param on_primary: whether this is the primary
2780
        node nor not
2781
    @type iv_name: str
2782
    @param iv_name: the instance-visible name of the
2783
        device, as in objects.Disk.iv_name
2784

2785
    @rtype: None
2786

2787
    """
2788
    if dev_path is None:
2789
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
2790
      return
2791
    fpath = cls._ConvertPath(dev_path)
2792
    if on_primary:
2793
      state = "primary"
2794
    else:
2795
      state = "secondary"
2796
    if iv_name is None:
2797
      iv_name = "not_visible"
2798
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
2799
    try:
2800
      utils.WriteFile(fpath, data=fdata)
2801
    except EnvironmentError, err:
2802
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
2803

    
2804
  @classmethod
2805
  def RemoveCache(cls, dev_path):
2806
    """Remove data for a dev_path.
2807

2808
    This is just a wrapper over L{utils.RemoveFile} with a converted
2809
    path name and logging.
2810

2811
    @type dev_path: str
2812
    @param dev_path: the pathname of the device
2813

2814
    @rtype: None
2815

2816
    """
2817
    if dev_path is None:
2818
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
2819
      return
2820
    fpath = cls._ConvertPath(dev_path)
2821
    try:
2822
      utils.RemoveFile(fpath)
2823
    except EnvironmentError, err:
2824
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)