Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ d0c8c01d

History | View | Annotate | Download (105.9 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 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
import signal
51

    
52
from ganeti import errors
53
from ganeti import utils
54
from ganeti import ssh
55
from ganeti import hypervisor
56
from ganeti import constants
57
from ganeti import bdev
58
from ganeti import objects
59
from ganeti import ssconf
60
from ganeti import serializer
61
from ganeti import netutils
62
from ganeti import runtime
63

    
64

    
65
_BOOT_ID_PATH = "/proc/sys/kernel/random/boot_id"
66
_ALLOWED_CLEAN_DIRS = frozenset([
67
  constants.DATA_DIR,
68
  constants.JOB_QUEUE_ARCHIVE_DIR,
69
  constants.QUEUE_DIR,
70
  constants.CRYPTO_KEYS_DIR,
71
  ])
72
_MAX_SSL_CERT_VALIDITY = 7 * 24 * 60 * 60
73
_X509_KEY_FILE = "key"
74
_X509_CERT_FILE = "cert"
75
_IES_STATUS_FILE = "status"
76
_IES_PID_FILE = "pid"
77
_IES_CA_FILE = "ca"
78

    
79
#: Valid LVS output line regex
80
_LVSLINE_REGEX = re.compile("^ *([^|]+)\|([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
81

    
82

    
83
class RPCFail(Exception):
84
  """Class denoting RPC failure.
85

86
  Its argument is the error message.
87

88
  """
89

    
90

    
91
def _Fail(msg, *args, **kwargs):
92
  """Log an error and the raise an RPCFail exception.
93

94
  This exception is then handled specially in the ganeti daemon and
95
  turned into a 'failed' return type. As such, this function is a
96
  useful shortcut for logging the error and returning it to the master
97
  daemon.
98

99
  @type msg: string
100
  @param msg: the text of the exception
101
  @raise RPCFail
102

103
  """
104
  if args:
105
    msg = msg % args
106
  if "log" not in kwargs or kwargs["log"]: # if we should log this error
107
    if "exc" in kwargs and kwargs["exc"]:
108
      logging.exception(msg)
109
    else:
110
      logging.error(msg)
111
  raise RPCFail(msg)
112

    
113

    
114
def _GetConfig():
115
  """Simple wrapper to return a SimpleStore.
116

117
  @rtype: L{ssconf.SimpleStore}
118
  @return: a SimpleStore instance
119

120
  """
121
  return ssconf.SimpleStore()
122

    
123

    
124
def _GetSshRunner(cluster_name):
125
  """Simple wrapper to return an SshRunner.
126

127
  @type cluster_name: str
128
  @param cluster_name: the cluster name, which is needed
129
      by the SshRunner constructor
130
  @rtype: L{ssh.SshRunner}
131
  @return: an SshRunner instance
132

133
  """
134
  return ssh.SshRunner(cluster_name)
135

    
136

    
137
def _Decompress(data):
138
  """Unpacks data compressed by the RPC client.
139

140
  @type data: list or tuple
141
  @param data: Data sent by RPC client
142
  @rtype: str
143
  @return: Decompressed data
144

145
  """
146
  assert isinstance(data, (list, tuple))
147
  assert len(data) == 2
148
  (encoding, content) = data
149
  if encoding == constants.RPC_ENCODING_NONE:
150
    return content
151
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
152
    return zlib.decompress(base64.b64decode(content))
153
  else:
154
    raise AssertionError("Unknown data encoding")
155

    
156

    
157
def _CleanDirectory(path, exclude=None):
158
  """Removes all regular files in a directory.
159

160
  @type path: str
161
  @param path: the directory to clean
162
  @type exclude: list
163
  @param exclude: list of files to be excluded, defaults
164
      to the empty list
165

166
  """
167
  if path not in _ALLOWED_CLEAN_DIRS:
168
    _Fail("Path passed to _CleanDirectory not in allowed clean targets: '%s'",
169
          path)
170

    
171
  if not os.path.isdir(path):
172
    return
173
  if exclude is None:
174
    exclude = []
175
  else:
176
    # Normalize excluded paths
177
    exclude = [os.path.normpath(i) for i in exclude]
178

    
179
  for rel_name in utils.ListVisibleFiles(path):
180
    full_name = utils.PathJoin(path, rel_name)
181
    if full_name in exclude:
182
      continue
183
    if os.path.isfile(full_name) and not os.path.islink(full_name):
184
      utils.RemoveFile(full_name)
185

    
186

    
187
def _BuildUploadFileList():
188
  """Build the list of allowed upload files.
189

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

192
  """
193
  allowed_files = set([
194
    constants.CLUSTER_CONF_FILE,
195
    constants.ETC_HOSTS,
196
    constants.SSH_KNOWN_HOSTS_FILE,
197
    constants.VNC_PASSWORD_FILE,
198
    constants.RAPI_CERT_FILE,
199
    constants.RAPI_USERS_FILE,
200
    constants.CONFD_HMAC_KEY,
201
    constants.CLUSTER_DOMAIN_SECRET_FILE,
202
    ])
203

    
204
  for hv_name in constants.HYPER_TYPES:
205
    hv_class = hypervisor.GetHypervisorClass(hv_name)
206
    allowed_files.update(hv_class.GetAncillaryFiles())
207

    
208
  return frozenset(allowed_files)
209

    
210

    
211
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
212

    
213

    
214
def JobQueuePurge():
215
  """Removes job queue files and archived jobs.
216

217
  @rtype: tuple
218
  @return: True, None
219

220
  """
221
  _CleanDirectory(constants.QUEUE_DIR, exclude=[constants.JOB_QUEUE_LOCK_FILE])
222
  _CleanDirectory(constants.JOB_QUEUE_ARCHIVE_DIR)
223

    
224

    
225
def GetMasterInfo():
226
  """Returns master information.
227

228
  This is an utility function to compute master information, either
229
  for consumption here or from the node daemon.
230

231
  @rtype: tuple
232
  @return: master_netdev, master_ip, master_name, primary_ip_family
233
  @raise RPCFail: in case of errors
234

235
  """
236
  try:
237
    cfg = _GetConfig()
238
    master_netdev = cfg.GetMasterNetdev()
239
    master_ip = cfg.GetMasterIP()
240
    master_node = cfg.GetMasterNode()
241
    primary_ip_family = cfg.GetPrimaryIPFamily()
242
  except errors.ConfigurationError, err:
243
    _Fail("Cluster configuration incomplete: %s", err, exc=True)
244
  return (master_netdev, master_ip, master_node, primary_ip_family)
245

    
246

    
247
def StartMaster(start_daemons, no_voting):
248
  """Activate local node as master node.
249

250
  The function will either try activate the IP address of the master
251
  (unless someone else has it) or also start the master daemons, based
252
  on the start_daemons parameter.
253

254
  @type start_daemons: boolean
255
  @param start_daemons: whether to start the master daemons
256
      (ganeti-masterd and ganeti-rapi), or (if false) activate the
257
      master ip
258
  @type no_voting: boolean
259
  @param no_voting: whether to start ganeti-masterd without a node vote
260
      (if start_daemons is True), but still non-interactively
261
  @rtype: None
262

263
  """
264
  # GetMasterInfo will raise an exception if not able to return data
265
  master_netdev, master_ip, _, family = GetMasterInfo()
266

    
267
  err_msgs = []
268
  # either start the master and rapi daemons
269
  if start_daemons:
270
    if no_voting:
271
      masterd_args = "--no-voting --yes-do-it"
272
    else:
273
      masterd_args = ""
274

    
275
    env = {
276
      "EXTRA_MASTERD_ARGS": masterd_args,
277
      }
278

    
279
    result = utils.RunCmd([constants.DAEMON_UTIL, "start-master"], env=env)
280
    if result.failed:
281
      msg = "Can't start Ganeti master: %s" % result.output
282
      logging.error(msg)
283
      err_msgs.append(msg)
284
  # or activate the IP
285
  else:
286
    if netutils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
287
      if netutils.IPAddress.Own(master_ip):
288
        # we already have the ip:
289
        logging.debug("Master IP already configured, doing nothing")
290
      else:
291
        msg = "Someone else has the master ip, not activating"
292
        logging.error(msg)
293
        err_msgs.append(msg)
294
    else:
295
      ipcls = netutils.IP4Address
296
      if family == netutils.IP6Address.family:
297
        ipcls = netutils.IP6Address
298

    
299
      result = utils.RunCmd(["ip", "address", "add",
300
                             "%s/%d" % (master_ip, ipcls.iplen),
301
                             "dev", master_netdev, "label",
302
                             "%s:0" % master_netdev])
303
      if result.failed:
304
        msg = "Can't activate master IP: %s" % result.output
305
        logging.error(msg)
306
        err_msgs.append(msg)
307

    
308
      # we ignore the exit code of the following cmds
309
      if ipcls == netutils.IP4Address:
310
        utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev, "-s",
311
                      master_ip, master_ip])
312
      elif ipcls == netutils.IP6Address:
313
        try:
314
          utils.RunCmd(["ndisc6", "-q", "-r 3", master_ip, master_netdev])
315
        except errors.OpExecError:
316
          # TODO: Better error reporting
317
          logging.warning("Can't execute ndisc6, please install if missing")
318

    
319
  if err_msgs:
320
    _Fail("; ".join(err_msgs))
321

    
322

    
323
def StopMaster(stop_daemons):
324
  """Deactivate this node as master.
325

326
  The function will always try to deactivate the IP address of the
327
  master. It will also stop the master daemons depending on the
328
  stop_daemons parameter.
329

330
  @type stop_daemons: boolean
331
  @param stop_daemons: whether to also stop the master daemons
332
      (ganeti-masterd and ganeti-rapi)
333
  @rtype: None
334

335
  """
336
  # TODO: log and report back to the caller the error failures; we
337
  # need to decide in which case we fail the RPC for this
338

    
339
  # GetMasterInfo will raise an exception if not able to return data
340
  master_netdev, master_ip, _, family = GetMasterInfo()
341

    
342
  ipcls = netutils.IP4Address
343
  if family == netutils.IP6Address.family:
344
    ipcls = netutils.IP6Address
345

    
346
  result = utils.RunCmd(["ip", "address", "del",
347
                         "%s/%d" % (master_ip, ipcls.iplen),
348
                         "dev", master_netdev])
349
  if result.failed:
350
    logging.error("Can't remove the master IP, error: %s", result.output)
351
    # but otherwise ignore the failure
352

    
353
  if stop_daemons:
354
    result = utils.RunCmd([constants.DAEMON_UTIL, "stop-master"])
355
    if result.failed:
356
      logging.error("Could not stop Ganeti master, command %s had exitcode %s"
357
                    " and error %s",
358
                    result.cmd, result.exit_code, result.output)
359

    
360

    
361
def EtcHostsModify(mode, host, ip):
362
  """Modify a host entry in /etc/hosts.
363

364
  @param mode: The mode to operate. Either add or remove entry
365
  @param host: The host to operate on
366
  @param ip: The ip associated with the entry
367

368
  """
369
  if mode == constants.ETC_HOSTS_ADD:
370
    if not ip:
371
      RPCFail("Mode 'add' needs 'ip' parameter, but parameter not"
372
              " present")
373
    utils.AddHostToEtcHosts(host, ip)
374
  elif mode == constants.ETC_HOSTS_REMOVE:
375
    if ip:
376
      RPCFail("Mode 'remove' does not allow 'ip' parameter, but"
377
              " parameter is present")
378
    utils.RemoveHostFromEtcHosts(host)
379
  else:
380
    RPCFail("Mode not supported")
381

    
382

    
383
def LeaveCluster(modify_ssh_setup):
384
  """Cleans up and remove the current node.
385

386
  This function cleans up and prepares the current node to be removed
387
  from the cluster.
388

389
  If processing is successful, then it raises an
390
  L{errors.QuitGanetiException} which is used as a special case to
391
  shutdown the node daemon.
392

393
  @param modify_ssh_setup: boolean
394

395
  """
396
  _CleanDirectory(constants.DATA_DIR)
397
  _CleanDirectory(constants.CRYPTO_KEYS_DIR)
398
  JobQueuePurge()
399

    
400
  if modify_ssh_setup:
401
    try:
402
      priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
403

    
404
      utils.RemoveAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
405

    
406
      utils.RemoveFile(priv_key)
407
      utils.RemoveFile(pub_key)
408
    except errors.OpExecError:
409
      logging.exception("Error while processing ssh files")
410

    
411
  try:
412
    utils.RemoveFile(constants.CONFD_HMAC_KEY)
413
    utils.RemoveFile(constants.RAPI_CERT_FILE)
414
    utils.RemoveFile(constants.NODED_CERT_FILE)
415
  except: # pylint: disable-msg=W0702
416
    logging.exception("Error while removing cluster secrets")
417

    
418
  result = utils.RunCmd([constants.DAEMON_UTIL, "stop", constants.CONFD])
419
  if result.failed:
420
    logging.error("Command %s failed with exitcode %s and error %s",
421
                  result.cmd, result.exit_code, result.output)
422

    
423
  # Raise a custom exception (handled in ganeti-noded)
424
  raise errors.QuitGanetiException(True, "Shutdown scheduled")
425

    
426

    
427
def GetNodeInfo(vgname, hypervisor_type):
428
  """Gives back a hash with different information about the node.
429

430
  @type vgname: C{string}
431
  @param vgname: the name of the volume group to ask for disk space information
432
  @type hypervisor_type: C{str}
433
  @param hypervisor_type: the name of the hypervisor to ask for
434
      memory information
435
  @rtype: C{dict}
436
  @return: dictionary with the following keys:
437
      - vg_size is the size of the configured volume group in MiB
438
      - vg_free is the free size of the volume group in MiB
439
      - memory_dom0 is the memory allocated for domain0 in MiB
440
      - memory_free is the currently available (free) ram in MiB
441
      - memory_total is the total number of ram in MiB
442

443
  """
444
  outputarray = {}
445

    
446
  if vgname is not None:
447
    vginfo = bdev.LogicalVolume.GetVGInfo([vgname])
448
    vg_free = vg_size = None
449
    if vginfo:
450
      vg_free = int(round(vginfo[0][0], 0))
451
      vg_size = int(round(vginfo[0][1], 0))
452
    outputarray["vg_size"] = vg_size
453
    outputarray["vg_free"] = vg_free
454

    
455
  if hypervisor_type is not None:
456
    hyper = hypervisor.GetHypervisor(hypervisor_type)
457
    hyp_info = hyper.GetNodeInfo()
458
    if hyp_info is not None:
459
      outputarray.update(hyp_info)
460

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

    
463
  return outputarray
464

    
465

    
466
def VerifyNode(what, cluster_name):
467
  """Verify the status of the local node.
468

469
  Based on the input L{what} parameter, various checks are done on the
470
  local node.
471

472
  If the I{filelist} key is present, this list of
473
  files is checksummed and the file/checksum pairs are returned.
474

475
  If the I{nodelist} key is present, we check that we have
476
  connectivity via ssh with the target nodes (and check the hostname
477
  report).
478

479
  If the I{node-net-test} key is present, we check that we have
480
  connectivity to the given nodes via both primary IP and, if
481
  applicable, secondary IPs.
482

483
  @type what: C{dict}
484
  @param what: a dictionary of things to check:
485
      - filelist: list of files for which to compute checksums
486
      - nodelist: list of nodes we should check ssh communication with
487
      - node-net-test: list of nodes we should check node daemon port
488
        connectivity with
489
      - hypervisor: list with hypervisors to run the verify for
490
  @rtype: dict
491
  @return: a dictionary with the same keys as the input dict, and
492
      values representing the result of the checks
493

494
  """
495
  result = {}
496
  my_name = netutils.Hostname.GetSysName()
497
  port = netutils.GetDaemonPort(constants.NODED)
498
  vm_capable = my_name not in what.get(constants.NV_VMNODES, [])
499

    
500
  if constants.NV_HYPERVISOR in what and vm_capable:
501
    result[constants.NV_HYPERVISOR] = tmp = {}
502
    for hv_name in what[constants.NV_HYPERVISOR]:
503
      try:
504
        val = hypervisor.GetHypervisor(hv_name).Verify()
505
      except errors.HypervisorError, err:
506
        val = "Error while checking hypervisor: %s" % str(err)
507
      tmp[hv_name] = val
508

    
509
  if constants.NV_HVPARAMS in what and vm_capable:
510
    result[constants.NV_HVPARAMS] = tmp = []
511
    for source, hv_name, hvparms in what[constants.NV_HVPARAMS]:
512
      try:
513
        logging.info("Validating hv %s, %s", hv_name, hvparms)
514
        hypervisor.GetHypervisor(hv_name).ValidateParameters(hvparms)
515
      except errors.HypervisorError, err:
516
        tmp.append((source, hv_name, str(err)))
517

    
518
  if constants.NV_FILELIST in what:
519
    result[constants.NV_FILELIST] = utils.FingerprintFiles(
520
      what[constants.NV_FILELIST])
521

    
522
  if constants.NV_NODELIST in what:
523
    result[constants.NV_NODELIST] = tmp = {}
524
    random.shuffle(what[constants.NV_NODELIST])
525
    for node in what[constants.NV_NODELIST]:
526
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
527
      if not success:
528
        tmp[node] = message
529

    
530
  if constants.NV_NODENETTEST in what:
531
    result[constants.NV_NODENETTEST] = tmp = {}
532
    my_pip = my_sip = None
533
    for name, pip, sip in what[constants.NV_NODENETTEST]:
534
      if name == my_name:
535
        my_pip = pip
536
        my_sip = sip
537
        break
538
    if not my_pip:
539
      tmp[my_name] = ("Can't find my own primary/secondary IP"
540
                      " in the node list")
541
    else:
542
      for name, pip, sip in what[constants.NV_NODENETTEST]:
543
        fail = []
544
        if not netutils.TcpPing(pip, port, source=my_pip):
545
          fail.append("primary")
546
        if sip != pip:
547
          if not netutils.TcpPing(sip, port, source=my_sip):
548
            fail.append("secondary")
549
        if fail:
550
          tmp[name] = ("failure using the %s interface(s)" %
551
                       " and ".join(fail))
552

    
553
  if constants.NV_MASTERIP in what:
554
    # FIXME: add checks on incoming data structures (here and in the
555
    # rest of the function)
556
    master_name, master_ip = what[constants.NV_MASTERIP]
557
    if master_name == my_name:
558
      source = constants.IP4_ADDRESS_LOCALHOST
559
    else:
560
      source = None
561
    result[constants.NV_MASTERIP] = netutils.TcpPing(master_ip, port,
562
                                                  source=source)
563

    
564
  if constants.NV_OOB_PATHS in what:
565
    result[constants.NV_OOB_PATHS] = tmp = []
566
    for path in what[constants.NV_OOB_PATHS]:
567
      try:
568
        st = os.stat(path)
569
      except OSError, err:
570
        tmp.append("error stating out of band helper: %s" % err)
571
      else:
572
        if stat.S_ISREG(st.st_mode):
573
          if stat.S_IMODE(st.st_mode) & stat.S_IXUSR:
574
            tmp.append(None)
575
          else:
576
            tmp.append("out of band helper %s is not executable" % path)
577
        else:
578
          tmp.append("out of band helper %s is not a file" % path)
579

    
580
  if constants.NV_LVLIST in what and vm_capable:
581
    try:
582
      val = GetVolumeList(utils.ListVolumeGroups().keys())
583
    except RPCFail, err:
584
      val = str(err)
585
    result[constants.NV_LVLIST] = val
586

    
587
  if constants.NV_INSTANCELIST in what and vm_capable:
588
    # GetInstanceList can fail
589
    try:
590
      val = GetInstanceList(what[constants.NV_INSTANCELIST])
591
    except RPCFail, err:
592
      val = str(err)
593
    result[constants.NV_INSTANCELIST] = val
594

    
595
  if constants.NV_VGLIST in what and vm_capable:
596
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
597

    
598
  if constants.NV_PVLIST in what and vm_capable:
599
    result[constants.NV_PVLIST] = \
600
      bdev.LogicalVolume.GetPVInfo(what[constants.NV_PVLIST],
601
                                   filter_allocatable=False)
602

    
603
  if constants.NV_VERSION in what:
604
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
605
                                    constants.RELEASE_VERSION)
606

    
607
  if constants.NV_HVINFO in what and vm_capable:
608
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
609
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
610

    
611
  if constants.NV_DRBDLIST in what and vm_capable:
612
    try:
613
      used_minors = bdev.DRBD8.GetUsedDevs().keys()
614
    except errors.BlockDeviceError, err:
615
      logging.warning("Can't get used minors list", exc_info=True)
616
      used_minors = str(err)
617
    result[constants.NV_DRBDLIST] = used_minors
618

    
619
  if constants.NV_DRBDHELPER in what and vm_capable:
620
    status = True
621
    try:
622
      payload = bdev.BaseDRBD.GetUsermodeHelper()
623
    except errors.BlockDeviceError, err:
624
      logging.error("Can't get DRBD usermode helper: %s", str(err))
625
      status = False
626
      payload = str(err)
627
    result[constants.NV_DRBDHELPER] = (status, payload)
628

    
629
  if constants.NV_NODESETUP in what:
630
    result[constants.NV_NODESETUP] = tmpr = []
631
    if not os.path.isdir("/sys/block") or not os.path.isdir("/sys/class/net"):
632
      tmpr.append("The sysfs filesytem doesn't seem to be mounted"
633
                  " under /sys, missing required directories /sys/block"
634
                  " and /sys/class/net")
635
    if (not os.path.isdir("/proc/sys") or
636
        not os.path.isfile("/proc/sysrq-trigger")):
637
      tmpr.append("The procfs filesystem doesn't seem to be mounted"
638
                  " under /proc, missing required directory /proc/sys and"
639
                  " the file /proc/sysrq-trigger")
640

    
641
  if constants.NV_TIME in what:
642
    result[constants.NV_TIME] = utils.SplitTime(time.time())
643

    
644
  if constants.NV_OSLIST in what and vm_capable:
645
    result[constants.NV_OSLIST] = DiagnoseOS()
646

    
647
  if constants.NV_BRIDGES in what and vm_capable:
648
    result[constants.NV_BRIDGES] = [bridge
649
                                    for bridge in what[constants.NV_BRIDGES]
650
                                    if not utils.BridgeExists(bridge)]
651
  return result
652

    
653

    
654
def GetBlockDevSizes(devices):
655
  """Return the size of the given block devices
656

657
  @type devices: list
658
  @param devices: list of block device nodes to query
659
  @rtype: dict
660
  @return:
661
    dictionary of all block devices under /dev (key). The value is their
662
    size in MiB.
663

664
    {'/dev/disk/by-uuid/123456-12321231-312312-312': 124}
665

666
  """
667
  DEV_PREFIX = "/dev/"
668
  blockdevs = {}
669

    
670
  for devpath in devices:
671
    if os.path.commonprefix([DEV_PREFIX, devpath]) != DEV_PREFIX:
672
      continue
673

    
674
    try:
675
      st = os.stat(devpath)
676
    except EnvironmentError, err:
677
      logging.warning("Error stat()'ing device %s: %s", devpath, str(err))
678
      continue
679

    
680
    if stat.S_ISBLK(st.st_mode):
681
      result = utils.RunCmd(["blockdev", "--getsize64", devpath])
682
      if result.failed:
683
        # We don't want to fail, just do not list this device as available
684
        logging.warning("Cannot get size for block device %s", devpath)
685
        continue
686

    
687
      size = int(result.stdout) / (1024 * 1024)
688
      blockdevs[devpath] = size
689
  return blockdevs
690

    
691

    
692
def GetVolumeList(vg_names):
693
  """Compute list of logical volumes and their size.
694

695
  @type vg_names: list
696
  @param vg_names: the volume groups whose LVs we should list, or
697
      empty for all volume groups
698
  @rtype: dict
699
  @return:
700
      dictionary of all partions (key) with value being a tuple of
701
      their size (in MiB), inactive and online status::
702

703
        {'xenvg/test1': ('20.06', True, True)}
704

705
      in case of errors, a string is returned with the error
706
      details.
707

708
  """
709
  lvs = {}
710
  sep = "|"
711
  if not vg_names:
712
    vg_names = []
713
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
714
                         "--separator=%s" % sep,
715
                         "-ovg_name,lv_name,lv_size,lv_attr"] + vg_names)
716
  if result.failed:
717
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
718

    
719
  for line in result.stdout.splitlines():
720
    line = line.strip()
721
    match = _LVSLINE_REGEX.match(line)
722
    if not match:
723
      logging.error("Invalid line returned from lvs output: '%s'", line)
724
      continue
725
    vg_name, name, size, attr = match.groups()
726
    inactive = attr[4] == "-"
727
    online = attr[5] == "o"
728
    virtual = attr[0] == "v"
729
    if virtual:
730
      # we don't want to report such volumes as existing, since they
731
      # don't really hold data
732
      continue
733
    lvs[vg_name+"/"+name] = (size, inactive, online)
734

    
735
  return lvs
736

    
737

    
738
def ListVolumeGroups():
739
  """List the volume groups and their size.
740

741
  @rtype: dict
742
  @return: dictionary with keys volume name and values the
743
      size of the volume
744

745
  """
746
  return utils.ListVolumeGroups()
747

    
748

    
749
def NodeVolumes():
750
  """List all volumes on this node.
751

752
  @rtype: list
753
  @return:
754
    A list of dictionaries, each having four keys:
755
      - name: the logical volume name,
756
      - size: the size of the logical volume
757
      - dev: the physical device on which the LV lives
758
      - vg: the volume group to which it belongs
759

760
    In case of errors, we return an empty list and log the
761
    error.
762

763
    Note that since a logical volume can live on multiple physical
764
    volumes, the resulting list might include a logical volume
765
    multiple times.
766

767
  """
768
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
769
                         "--separator=|",
770
                         "--options=lv_name,lv_size,devices,vg_name"])
771
  if result.failed:
772
    _Fail("Failed to list logical volumes, lvs output: %s",
773
          result.output)
774

    
775
  def parse_dev(dev):
776
    return dev.split("(")[0]
777

    
778
  def handle_dev(dev):
779
    return [parse_dev(x) for x in dev.split(",")]
780

    
781
  def map_line(line):
782
    line = [v.strip() for v in line]
783
    return [{"name": line[0], "size": line[1],
784
             "dev": dev, "vg": line[3]} for dev in handle_dev(line[2])]
785

    
786
  all_devs = []
787
  for line in result.stdout.splitlines():
788
    if line.count("|") >= 3:
789
      all_devs.extend(map_line(line.split("|")))
790
    else:
791
      logging.warning("Strange line in the output from lvs: '%s'", line)
792
  return all_devs
793

    
794

    
795
def BridgesExist(bridges_list):
796
  """Check if a list of bridges exist on the current node.
797

798
  @rtype: boolean
799
  @return: C{True} if all of them exist, C{False} otherwise
800

801
  """
802
  missing = []
803
  for bridge in bridges_list:
804
    if not utils.BridgeExists(bridge):
805
      missing.append(bridge)
806

    
807
  if missing:
808
    _Fail("Missing bridges %s", utils.CommaJoin(missing))
809

    
810

    
811
def GetInstanceList(hypervisor_list):
812
  """Provides a list of instances.
813

814
  @type hypervisor_list: list
815
  @param hypervisor_list: the list of hypervisors to query information
816

817
  @rtype: list
818
  @return: a list of all running instances on the current node
819
    - instance1.example.com
820
    - instance2.example.com
821

822
  """
823
  results = []
824
  for hname in hypervisor_list:
825
    try:
826
      names = hypervisor.GetHypervisor(hname).ListInstances()
827
      results.extend(names)
828
    except errors.HypervisorError, err:
829
      _Fail("Error enumerating instances (hypervisor %s): %s",
830
            hname, err, exc=True)
831

    
832
  return results
833

    
834

    
835
def GetInstanceInfo(instance, hname):
836
  """Gives back the information about an instance as a dictionary.
837

838
  @type instance: string
839
  @param instance: the instance name
840
  @type hname: string
841
  @param hname: the hypervisor type of the instance
842

843
  @rtype: dict
844
  @return: dictionary with the following keys:
845
      - memory: memory size of instance (int)
846
      - state: xen state of instance (string)
847
      - time: cpu time of instance (float)
848

849
  """
850
  output = {}
851

    
852
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
853
  if iinfo is not None:
854
    output["memory"] = iinfo[2]
855
    output["state"] = iinfo[4]
856
    output["time"] = iinfo[5]
857

    
858
  return output
859

    
860

    
861
def GetInstanceMigratable(instance):
862
  """Gives whether an instance can be migrated.
863

864
  @type instance: L{objects.Instance}
865
  @param instance: object representing the instance to be checked.
866

867
  @rtype: tuple
868
  @return: tuple of (result, description) where:
869
      - result: whether the instance can be migrated or not
870
      - description: a description of the issue, if relevant
871

872
  """
873
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
874
  iname = instance.name
875
  if iname not in hyper.ListInstances():
876
    _Fail("Instance %s is not running", iname)
877

    
878
  for idx in range(len(instance.disks)):
879
    link_name = _GetBlockDevSymlinkPath(iname, idx)
880
    if not os.path.islink(link_name):
881
      logging.warning("Instance %s is missing symlink %s for disk %d",
882
                      iname, link_name, idx)
883

    
884

    
885
def GetAllInstancesInfo(hypervisor_list):
886
  """Gather data about all instances.
887

888
  This is the equivalent of L{GetInstanceInfo}, except that it
889
  computes data for all instances at once, thus being faster if one
890
  needs data about more than one instance.
891

892
  @type hypervisor_list: list
893
  @param hypervisor_list: list of hypervisors to query for instance data
894

895
  @rtype: dict
896
  @return: dictionary of instance: data, with data having the following keys:
897
      - memory: memory size of instance (int)
898
      - state: xen state of instance (string)
899
      - time: cpu time of instance (float)
900
      - vcpus: the number of vcpus
901

902
  """
903
  output = {}
904

    
905
  for hname in hypervisor_list:
906
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
907
    if iinfo:
908
      for name, _, memory, vcpus, state, times in iinfo:
909
        value = {
910
          "memory": memory,
911
          "vcpus": vcpus,
912
          "state": state,
913
          "time": times,
914
          }
915
        if name in output:
916
          # we only check static parameters, like memory and vcpus,
917
          # and not state and time which can change between the
918
          # invocations of the different hypervisors
919
          for key in "memory", "vcpus":
920
            if value[key] != output[name][key]:
921
              _Fail("Instance %s is running twice"
922
                    " with different parameters", name)
923
        output[name] = value
924

    
925
  return output
926

    
927

    
928
def _InstanceLogName(kind, os_name, instance):
929
  """Compute the OS log filename for a given instance and operation.
930

931
  The instance name and os name are passed in as strings since not all
932
  operations have these as part of an instance object.
933

934
  @type kind: string
935
  @param kind: the operation type (e.g. add, import, etc.)
936
  @type os_name: string
937
  @param os_name: the os name
938
  @type instance: string
939
  @param instance: the name of the instance being imported/added/etc.
940

941
  """
942
  # TODO: Use tempfile.mkstemp to create unique filename
943
  base = ("%s-%s-%s-%s.log" %
944
          (kind, os_name, instance, utils.TimestampForFilename()))
945
  return utils.PathJoin(constants.LOG_OS_DIR, base)
946

    
947

    
948
def InstanceOsAdd(instance, reinstall, debug):
949
  """Add an OS to an instance.
950

951
  @type instance: L{objects.Instance}
952
  @param instance: Instance whose OS is to be installed
953
  @type reinstall: boolean
954
  @param reinstall: whether this is an instance reinstall
955
  @type debug: integer
956
  @param debug: debug level, passed to the OS scripts
957
  @rtype: None
958

959
  """
960
  inst_os = OSFromDisk(instance.os)
961

    
962
  create_env = OSEnvironment(instance, inst_os, debug)
963
  if reinstall:
964
    create_env["INSTANCE_REINSTALL"] = "1"
965

    
966
  logfile = _InstanceLogName("add", instance.os, instance.name)
967

    
968
  result = utils.RunCmd([inst_os.create_script], env=create_env,
969
                        cwd=inst_os.path, output=logfile,)
970
  if result.failed:
971
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
972
                  " output: %s", result.cmd, result.fail_reason, logfile,
973
                  result.output)
974
    lines = [utils.SafeEncode(val)
975
             for val in utils.TailFile(logfile, lines=20)]
976
    _Fail("OS create script failed (%s), last lines in the"
977
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
978

    
979

    
980
def RunRenameInstance(instance, old_name, debug):
981
  """Run the OS rename script for an instance.
982

983
  @type instance: L{objects.Instance}
984
  @param instance: Instance whose OS is to be installed
985
  @type old_name: string
986
  @param old_name: previous instance name
987
  @type debug: integer
988
  @param debug: debug level, passed to the OS scripts
989
  @rtype: boolean
990
  @return: the success of the operation
991

992
  """
993
  inst_os = OSFromDisk(instance.os)
994

    
995
  rename_env = OSEnvironment(instance, inst_os, debug)
996
  rename_env["OLD_INSTANCE_NAME"] = old_name
997

    
998
  logfile = _InstanceLogName("rename", instance.os,
999
                             "%s-%s" % (old_name, instance.name))
1000

    
1001
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
1002
                        cwd=inst_os.path, output=logfile)
1003

    
1004
  if result.failed:
1005
    logging.error("os create command '%s' returned error: %s output: %s",
1006
                  result.cmd, result.fail_reason, result.output)
1007
    lines = [utils.SafeEncode(val)
1008
             for val in utils.TailFile(logfile, lines=20)]
1009
    _Fail("OS rename script failed (%s), last lines in the"
1010
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
1011

    
1012

    
1013
def _GetBlockDevSymlinkPath(instance_name, idx):
1014
  return utils.PathJoin(constants.DISK_LINKS_DIR, "%s%s%d" %
1015
                        (instance_name, constants.DISK_SEPARATOR, idx))
1016

    
1017

    
1018
def _SymlinkBlockDev(instance_name, device_path, idx):
1019
  """Set up symlinks to a instance's block device.
1020

1021
  This is an auxiliary function run when an instance is start (on the primary
1022
  node) or when an instance is migrated (on the target node).
1023

1024

1025
  @param instance_name: the name of the target instance
1026
  @param device_path: path of the physical block device, on the node
1027
  @param idx: the disk index
1028
  @return: absolute path to the disk's symlink
1029

1030
  """
1031
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1032
  try:
1033
    os.symlink(device_path, link_name)
1034
  except OSError, err:
1035
    if err.errno == errno.EEXIST:
1036
      if (not os.path.islink(link_name) or
1037
          os.readlink(link_name) != device_path):
1038
        os.remove(link_name)
1039
        os.symlink(device_path, link_name)
1040
    else:
1041
      raise
1042

    
1043
  return link_name
1044

    
1045

    
1046
def _RemoveBlockDevLinks(instance_name, disks):
1047
  """Remove the block device symlinks belonging to the given instance.
1048

1049
  """
1050
  for idx, _ in enumerate(disks):
1051
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1052
    if os.path.islink(link_name):
1053
      try:
1054
        os.remove(link_name)
1055
      except OSError:
1056
        logging.exception("Can't remove symlink '%s'", link_name)
1057

    
1058

    
1059
def _GatherAndLinkBlockDevs(instance):
1060
  """Set up an instance's block device(s).
1061

1062
  This is run on the primary node at instance startup. The block
1063
  devices must be already assembled.
1064

1065
  @type instance: L{objects.Instance}
1066
  @param instance: the instance whose disks we shoul assemble
1067
  @rtype: list
1068
  @return: list of (disk_object, device_path)
1069

1070
  """
1071
  block_devices = []
1072
  for idx, disk in enumerate(instance.disks):
1073
    device = _RecursiveFindBD(disk)
1074
    if device is None:
1075
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
1076
                                    str(disk))
1077
    device.Open()
1078
    try:
1079
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
1080
    except OSError, e:
1081
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
1082
                                    e.strerror)
1083

    
1084
    block_devices.append((disk, link_name))
1085

    
1086
  return block_devices
1087

    
1088

    
1089
def StartInstance(instance, startup_paused):
1090
  """Start an instance.
1091

1092
  @type instance: L{objects.Instance}
1093
  @param instance: the instance object
1094
  @type startup_paused: bool
1095
  @param instance: pause instance at startup?
1096
  @rtype: None
1097

1098
  """
1099
  running_instances = GetInstanceList([instance.hypervisor])
1100

    
1101
  if instance.name in running_instances:
1102
    logging.info("Instance %s already running, not starting", instance.name)
1103
    return
1104

    
1105
  try:
1106
    block_devices = _GatherAndLinkBlockDevs(instance)
1107
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
1108
    hyper.StartInstance(instance, block_devices, startup_paused)
1109
  except errors.BlockDeviceError, err:
1110
    _Fail("Block device error: %s", err, exc=True)
1111
  except errors.HypervisorError, err:
1112
    _RemoveBlockDevLinks(instance.name, instance.disks)
1113
    _Fail("Hypervisor error: %s", err, exc=True)
1114

    
1115

    
1116
def InstanceShutdown(instance, timeout):
1117
  """Shut an instance down.
1118

1119
  @note: this functions uses polling with a hardcoded timeout.
1120

1121
  @type instance: L{objects.Instance}
1122
  @param instance: the instance object
1123
  @type timeout: integer
1124
  @param timeout: maximum timeout for soft shutdown
1125
  @rtype: None
1126

1127
  """
1128
  hv_name = instance.hypervisor
1129
  hyper = hypervisor.GetHypervisor(hv_name)
1130
  iname = instance.name
1131

    
1132
  if instance.name not in hyper.ListInstances():
1133
    logging.info("Instance %s not running, doing nothing", iname)
1134
    return
1135

    
1136
  class _TryShutdown:
1137
    def __init__(self):
1138
      self.tried_once = False
1139

    
1140
    def __call__(self):
1141
      if iname not in hyper.ListInstances():
1142
        return
1143

    
1144
      try:
1145
        hyper.StopInstance(instance, retry=self.tried_once)
1146
      except errors.HypervisorError, err:
1147
        if iname not in hyper.ListInstances():
1148
          # if the instance is no longer existing, consider this a
1149
          # success and go to cleanup
1150
          return
1151

    
1152
        _Fail("Failed to stop instance %s: %s", iname, err)
1153

    
1154
      self.tried_once = True
1155

    
1156
      raise utils.RetryAgain()
1157

    
1158
  try:
1159
    utils.Retry(_TryShutdown(), 5, timeout)
1160
  except utils.RetryTimeout:
1161
    # the shutdown did not succeed
1162
    logging.error("Shutdown of '%s' unsuccessful, forcing", iname)
1163

    
1164
    try:
1165
      hyper.StopInstance(instance, force=True)
1166
    except errors.HypervisorError, err:
1167
      if iname in hyper.ListInstances():
1168
        # only raise an error if the instance still exists, otherwise
1169
        # the error could simply be "instance ... unknown"!
1170
        _Fail("Failed to force stop instance %s: %s", iname, err)
1171

    
1172
    time.sleep(1)
1173

    
1174
    if iname in hyper.ListInstances():
1175
      _Fail("Could not shutdown instance %s even by destroy", iname)
1176

    
1177
  try:
1178
    hyper.CleanupInstance(instance.name)
1179
  except errors.HypervisorError, err:
1180
    logging.warning("Failed to execute post-shutdown cleanup step: %s", err)
1181

    
1182
  _RemoveBlockDevLinks(iname, instance.disks)
1183

    
1184

    
1185
def InstanceReboot(instance, reboot_type, shutdown_timeout):
1186
  """Reboot an instance.
1187

1188
  @type instance: L{objects.Instance}
1189
  @param instance: the instance object to reboot
1190
  @type reboot_type: str
1191
  @param reboot_type: the type of reboot, one the following
1192
    constants:
1193
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1194
        instance OS, do not recreate the VM
1195
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1196
        restart the VM (at the hypervisor level)
1197
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1198
        not accepted here, since that mode is handled differently, in
1199
        cmdlib, and translates into full stop and start of the
1200
        instance (instead of a call_instance_reboot RPC)
1201
  @type shutdown_timeout: integer
1202
  @param shutdown_timeout: maximum timeout for soft shutdown
1203
  @rtype: None
1204

1205
  """
1206
  running_instances = GetInstanceList([instance.hypervisor])
1207

    
1208
  if instance.name not in running_instances:
1209
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1210

    
1211
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1212
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1213
    try:
1214
      hyper.RebootInstance(instance)
1215
    except errors.HypervisorError, err:
1216
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1217
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1218
    try:
1219
      InstanceShutdown(instance, shutdown_timeout)
1220
      return StartInstance(instance, False)
1221
    except errors.HypervisorError, err:
1222
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1223
  else:
1224
    _Fail("Invalid reboot_type received: %s", reboot_type)
1225

    
1226

    
1227
def MigrationInfo(instance):
1228
  """Gather information about an instance to be migrated.
1229

1230
  @type instance: L{objects.Instance}
1231
  @param instance: the instance definition
1232

1233
  """
1234
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1235
  try:
1236
    info = hyper.MigrationInfo(instance)
1237
  except errors.HypervisorError, err:
1238
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1239
  return info
1240

    
1241

    
1242
def AcceptInstance(instance, info, target):
1243
  """Prepare the node to accept an instance.
1244

1245
  @type instance: L{objects.Instance}
1246
  @param instance: the instance definition
1247
  @type info: string/data (opaque)
1248
  @param info: migration information, from the source node
1249
  @type target: string
1250
  @param target: target host (usually ip), on this node
1251

1252
  """
1253
  # TODO: why is this required only for DTS_EXT_MIRROR?
1254
  if instance.disk_template in constants.DTS_EXT_MIRROR:
1255
    # Create the symlinks, as the disks are not active
1256
    # in any way
1257
    try:
1258
      _GatherAndLinkBlockDevs(instance)
1259
    except errors.BlockDeviceError, err:
1260
      _Fail("Block device error: %s", err, exc=True)
1261

    
1262
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1263
  try:
1264
    hyper.AcceptInstance(instance, info, target)
1265
  except errors.HypervisorError, err:
1266
    if instance.disk_template in constants.DTS_EXT_MIRROR:
1267
      _RemoveBlockDevLinks(instance.name, instance.disks)
1268
    _Fail("Failed to accept instance: %s", err, exc=True)
1269

    
1270

    
1271
def FinalizeMigration(instance, info, success):
1272
  """Finalize any preparation to accept an instance.
1273

1274
  @type instance: L{objects.Instance}
1275
  @param instance: the instance definition
1276
  @type info: string/data (opaque)
1277
  @param info: migration information, from the source node
1278
  @type success: boolean
1279
  @param success: whether the migration was a success or a failure
1280

1281
  """
1282
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1283
  try:
1284
    hyper.FinalizeMigration(instance, info, success)
1285
  except errors.HypervisorError, err:
1286
    _Fail("Failed to finalize migration: %s", err, exc=True)
1287

    
1288

    
1289
def MigrateInstance(instance, target, live):
1290
  """Migrates an instance to another node.
1291

1292
  @type instance: L{objects.Instance}
1293
  @param instance: the instance definition
1294
  @type target: string
1295
  @param target: the target node name
1296
  @type live: boolean
1297
  @param live: whether the migration should be done live or not (the
1298
      interpretation of this parameter is left to the hypervisor)
1299
  @rtype: tuple
1300
  @return: a tuple of (success, msg) where:
1301
      - succes is a boolean denoting the success/failure of the operation
1302
      - msg is a string with details in case of failure
1303

1304
  """
1305
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1306

    
1307
  try:
1308
    hyper.MigrateInstance(instance, target, live)
1309
  except errors.HypervisorError, err:
1310
    _Fail("Failed to migrate instance: %s", err, exc=True)
1311

    
1312

    
1313
def BlockdevCreate(disk, size, owner, on_primary, info):
1314
  """Creates a block device for an instance.
1315

1316
  @type disk: L{objects.Disk}
1317
  @param disk: the object describing the disk we should create
1318
  @type size: int
1319
  @param size: the size of the physical underlying device, in MiB
1320
  @type owner: str
1321
  @param owner: the name of the instance for which disk is created,
1322
      used for device cache data
1323
  @type on_primary: boolean
1324
  @param on_primary:  indicates if it is the primary node or not
1325
  @type info: string
1326
  @param info: string that will be sent to the physical device
1327
      creation, used for example to set (LVM) tags on LVs
1328

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

1333
  """
1334
  # TODO: remove the obsolete "size" argument
1335
  # pylint: disable-msg=W0613
1336
  clist = []
1337
  if disk.children:
1338
    for child in disk.children:
1339
      try:
1340
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1341
      except errors.BlockDeviceError, err:
1342
        _Fail("Can't assemble device %s: %s", child, err)
1343
      if on_primary or disk.AssembleOnSecondary():
1344
        # we need the children open in case the device itself has to
1345
        # be assembled
1346
        try:
1347
          # pylint: disable-msg=E1103
1348
          crdev.Open()
1349
        except errors.BlockDeviceError, err:
1350
          _Fail("Can't make child '%s' read-write: %s", child, err)
1351
      clist.append(crdev)
1352

    
1353
  try:
1354
    device = bdev.Create(disk.dev_type, disk.physical_id, clist, disk.size)
1355
  except errors.BlockDeviceError, err:
1356
    _Fail("Can't create block device: %s", err)
1357

    
1358
  if on_primary or disk.AssembleOnSecondary():
1359
    try:
1360
      device.Assemble()
1361
    except errors.BlockDeviceError, err:
1362
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1363
    device.SetSyncSpeed(constants.SYNC_SPEED)
1364
    if on_primary or disk.OpenOnSecondary():
1365
      try:
1366
        device.Open(force=True)
1367
      except errors.BlockDeviceError, err:
1368
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1369
    DevCacheManager.UpdateCache(device.dev_path, owner,
1370
                                on_primary, disk.iv_name)
1371

    
1372
  device.SetInfo(info)
1373

    
1374
  return device.unique_id
1375

    
1376

    
1377
def _WipeDevice(path, offset, size):
1378
  """This function actually wipes the device.
1379

1380
  @param path: The path to the device to wipe
1381
  @param offset: The offset in MiB in the file
1382
  @param size: The size in MiB to write
1383

1384
  """
1385
  cmd = [constants.DD_CMD, "if=/dev/zero", "seek=%d" % offset,
1386
         "bs=%d" % constants.WIPE_BLOCK_SIZE, "oflag=direct", "of=%s" % path,
1387
         "count=%d" % size]
1388
  result = utils.RunCmd(cmd)
1389

    
1390
  if result.failed:
1391
    _Fail("Wipe command '%s' exited with error: %s; output: %s", result.cmd,
1392
          result.fail_reason, result.output)
1393

    
1394

    
1395
def BlockdevWipe(disk, offset, size):
1396
  """Wipes a block device.
1397

1398
  @type disk: L{objects.Disk}
1399
  @param disk: the disk object we want to wipe
1400
  @type offset: int
1401
  @param offset: The offset in MiB in the file
1402
  @type size: int
1403
  @param size: The size in MiB to write
1404

1405
  """
1406
  try:
1407
    rdev = _RecursiveFindBD(disk)
1408
  except errors.BlockDeviceError:
1409
    rdev = None
1410

    
1411
  if not rdev:
1412
    _Fail("Cannot execute wipe for device %s: device not found", disk.iv_name)
1413

    
1414
  # Do cross verify some of the parameters
1415
  if offset > rdev.size:
1416
    _Fail("Offset is bigger than device size")
1417
  if (offset + size) > rdev.size:
1418
    _Fail("The provided offset and size to wipe is bigger than device size")
1419

    
1420
  _WipeDevice(rdev.dev_path, offset, size)
1421

    
1422

    
1423
def BlockdevPauseResumeSync(disks, pause):
1424
  """Pause or resume the sync of the block device.
1425

1426
  @type disks: list of L{objects.Disk}
1427
  @param disks: the disks object we want to pause/resume
1428
  @type pause: bool
1429
  @param pause: Wheater to pause or resume
1430

1431
  """
1432
  success = []
1433
  for disk in disks:
1434
    try:
1435
      rdev = _RecursiveFindBD(disk)
1436
    except errors.BlockDeviceError:
1437
      rdev = None
1438

    
1439
    if not rdev:
1440
      success.append((False, ("Cannot change sync for device %s:"
1441
                              " device not found" % disk.iv_name)))
1442
      continue
1443

    
1444
    result = rdev.PauseResumeSync(pause)
1445

    
1446
    if result:
1447
      success.append((result, None))
1448
    else:
1449
      if pause:
1450
        msg = "Pause"
1451
      else:
1452
        msg = "Resume"
1453
      success.append((result, "%s for device %s failed" % (msg, disk.iv_name)))
1454

    
1455
  return success
1456

    
1457

    
1458
def BlockdevRemove(disk):
1459
  """Remove a block device.
1460

1461
  @note: This is intended to be called recursively.
1462

1463
  @type disk: L{objects.Disk}
1464
  @param disk: the disk object we should remove
1465
  @rtype: boolean
1466
  @return: the success of the operation
1467

1468
  """
1469
  msgs = []
1470
  try:
1471
    rdev = _RecursiveFindBD(disk)
1472
  except errors.BlockDeviceError, err:
1473
    # probably can't attach
1474
    logging.info("Can't attach to device %s in remove", disk)
1475
    rdev = None
1476
  if rdev is not None:
1477
    r_path = rdev.dev_path
1478
    try:
1479
      rdev.Remove()
1480
    except errors.BlockDeviceError, err:
1481
      msgs.append(str(err))
1482
    if not msgs:
1483
      DevCacheManager.RemoveCache(r_path)
1484

    
1485
  if disk.children:
1486
    for child in disk.children:
1487
      try:
1488
        BlockdevRemove(child)
1489
      except RPCFail, err:
1490
        msgs.append(str(err))
1491

    
1492
  if msgs:
1493
    _Fail("; ".join(msgs))
1494

    
1495

    
1496
def _RecursiveAssembleBD(disk, owner, as_primary):
1497
  """Activate a block device for an instance.
1498

1499
  This is run on the primary and secondary nodes for an instance.
1500

1501
  @note: this function is called recursively.
1502

1503
  @type disk: L{objects.Disk}
1504
  @param disk: the disk we try to assemble
1505
  @type owner: str
1506
  @param owner: the name of the instance which owns the disk
1507
  @type as_primary: boolean
1508
  @param as_primary: if we should make the block device
1509
      read/write
1510

1511
  @return: the assembled device or None (in case no device
1512
      was assembled)
1513
  @raise errors.BlockDeviceError: in case there is an error
1514
      during the activation of the children or the device
1515
      itself
1516

1517
  """
1518
  children = []
1519
  if disk.children:
1520
    mcn = disk.ChildrenNeeded()
1521
    if mcn == -1:
1522
      mcn = 0 # max number of Nones allowed
1523
    else:
1524
      mcn = len(disk.children) - mcn # max number of Nones
1525
    for chld_disk in disk.children:
1526
      try:
1527
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1528
      except errors.BlockDeviceError, err:
1529
        if children.count(None) >= mcn:
1530
          raise
1531
        cdev = None
1532
        logging.error("Error in child activation (but continuing): %s",
1533
                      str(err))
1534
      children.append(cdev)
1535

    
1536
  if as_primary or disk.AssembleOnSecondary():
1537
    r_dev = bdev.Assemble(disk.dev_type, disk.physical_id, children, disk.size)
1538
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
1539
    result = r_dev
1540
    if as_primary or disk.OpenOnSecondary():
1541
      r_dev.Open()
1542
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1543
                                as_primary, disk.iv_name)
1544

    
1545
  else:
1546
    result = True
1547
  return result
1548

    
1549

    
1550
def BlockdevAssemble(disk, owner, as_primary, idx):
1551
  """Activate a block device for an instance.
1552

1553
  This is a wrapper over _RecursiveAssembleBD.
1554

1555
  @rtype: str or boolean
1556
  @return: a C{/dev/...} path for primary nodes, and
1557
      C{True} for secondary nodes
1558

1559
  """
1560
  try:
1561
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1562
    if isinstance(result, bdev.BlockDev):
1563
      # pylint: disable-msg=E1103
1564
      result = result.dev_path
1565
      if as_primary:
1566
        _SymlinkBlockDev(owner, result, idx)
1567
  except errors.BlockDeviceError, err:
1568
    _Fail("Error while assembling disk: %s", err, exc=True)
1569
  except OSError, err:
1570
    _Fail("Error while symlinking disk: %s", err, exc=True)
1571

    
1572
  return result
1573

    
1574

    
1575
def BlockdevShutdown(disk):
1576
  """Shut down a block device.
1577

1578
  First, if the device is assembled (Attach() is successful), then
1579
  the device is shutdown. Then the children of the device are
1580
  shutdown.
1581

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

1586
  @type disk: L{objects.Disk}
1587
  @param disk: the description of the disk we should
1588
      shutdown
1589
  @rtype: None
1590

1591
  """
1592
  msgs = []
1593
  r_dev = _RecursiveFindBD(disk)
1594
  if r_dev is not None:
1595
    r_path = r_dev.dev_path
1596
    try:
1597
      r_dev.Shutdown()
1598
      DevCacheManager.RemoveCache(r_path)
1599
    except errors.BlockDeviceError, err:
1600
      msgs.append(str(err))
1601

    
1602
  if disk.children:
1603
    for child in disk.children:
1604
      try:
1605
        BlockdevShutdown(child)
1606
      except RPCFail, err:
1607
        msgs.append(str(err))
1608

    
1609
  if msgs:
1610
    _Fail("; ".join(msgs))
1611

    
1612

    
1613
def BlockdevAddchildren(parent_cdev, new_cdevs):
1614
  """Extend a mirrored block device.
1615

1616
  @type parent_cdev: L{objects.Disk}
1617
  @param parent_cdev: the disk to which we should add children
1618
  @type new_cdevs: list of L{objects.Disk}
1619
  @param new_cdevs: the list of children which we should add
1620
  @rtype: None
1621

1622
  """
1623
  parent_bdev = _RecursiveFindBD(parent_cdev)
1624
  if parent_bdev is None:
1625
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
1626
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
1627
  if new_bdevs.count(None) > 0:
1628
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
1629
  parent_bdev.AddChildren(new_bdevs)
1630

    
1631

    
1632
def BlockdevRemovechildren(parent_cdev, new_cdevs):
1633
  """Shrink a mirrored block device.
1634

1635
  @type parent_cdev: L{objects.Disk}
1636
  @param parent_cdev: the disk from which we should remove children
1637
  @type new_cdevs: list of L{objects.Disk}
1638
  @param new_cdevs: the list of children which we should remove
1639
  @rtype: None
1640

1641
  """
1642
  parent_bdev = _RecursiveFindBD(parent_cdev)
1643
  if parent_bdev is None:
1644
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
1645
  devs = []
1646
  for disk in new_cdevs:
1647
    rpath = disk.StaticDevPath()
1648
    if rpath is None:
1649
      bd = _RecursiveFindBD(disk)
1650
      if bd is None:
1651
        _Fail("Can't find device %s while removing children", disk)
1652
      else:
1653
        devs.append(bd.dev_path)
1654
    else:
1655
      if not utils.IsNormAbsPath(rpath):
1656
        _Fail("Strange path returned from StaticDevPath: '%s'", rpath)
1657
      devs.append(rpath)
1658
  parent_bdev.RemoveChildren(devs)
1659

    
1660

    
1661
def BlockdevGetmirrorstatus(disks):
1662
  """Get the mirroring status of a list of devices.
1663

1664
  @type disks: list of L{objects.Disk}
1665
  @param disks: the list of disks which we should query
1666
  @rtype: disk
1667
  @return: List of L{objects.BlockDevStatus}, one for each disk
1668
  @raise errors.BlockDeviceError: if any of the disks cannot be
1669
      found
1670

1671
  """
1672
  stats = []
1673
  for dsk in disks:
1674
    rbd = _RecursiveFindBD(dsk)
1675
    if rbd is None:
1676
      _Fail("Can't find device %s", dsk)
1677

    
1678
    stats.append(rbd.CombinedSyncStatus())
1679

    
1680
  return stats
1681

    
1682

    
1683
def BlockdevGetmirrorstatusMulti(disks):
1684
  """Get the mirroring status of a list of devices.
1685

1686
  @type disks: list of L{objects.Disk}
1687
  @param disks: the list of disks which we should query
1688
  @rtype: disk
1689
  @return: List of tuples, (bool, status), one for each disk; bool denotes
1690
    success/failure, status is L{objects.BlockDevStatus} on success, string
1691
    otherwise
1692

1693
  """
1694
  result = []
1695
  for disk in disks:
1696
    try:
1697
      rbd = _RecursiveFindBD(disk)
1698
      if rbd is None:
1699
        result.append((False, "Can't find device %s" % disk))
1700
        continue
1701

    
1702
      status = rbd.CombinedSyncStatus()
1703
    except errors.BlockDeviceError, err:
1704
      logging.exception("Error while getting disk status")
1705
      result.append((False, str(err)))
1706
    else:
1707
      result.append((True, status))
1708

    
1709
  assert len(disks) == len(result)
1710

    
1711
  return result
1712

    
1713

    
1714
def _RecursiveFindBD(disk):
1715
  """Check if a device is activated.
1716

1717
  If so, return information about the real device.
1718

1719
  @type disk: L{objects.Disk}
1720
  @param disk: the disk object we need to find
1721

1722
  @return: None if the device can't be found,
1723
      otherwise the device instance
1724

1725
  """
1726
  children = []
1727
  if disk.children:
1728
    for chdisk in disk.children:
1729
      children.append(_RecursiveFindBD(chdisk))
1730

    
1731
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children, disk.size)
1732

    
1733

    
1734
def _OpenRealBD(disk):
1735
  """Opens the underlying block device of a disk.
1736

1737
  @type disk: L{objects.Disk}
1738
  @param disk: the disk object we want to open
1739

1740
  """
1741
  real_disk = _RecursiveFindBD(disk)
1742
  if real_disk is None:
1743
    _Fail("Block device '%s' is not set up", disk)
1744

    
1745
  real_disk.Open()
1746

    
1747
  return real_disk
1748

    
1749

    
1750
def BlockdevFind(disk):
1751
  """Check if a device is activated.
1752

1753
  If it is, return information about the real device.
1754

1755
  @type disk: L{objects.Disk}
1756
  @param disk: the disk to find
1757
  @rtype: None or objects.BlockDevStatus
1758
  @return: None if the disk cannot be found, otherwise a the current
1759
           information
1760

1761
  """
1762
  try:
1763
    rbd = _RecursiveFindBD(disk)
1764
  except errors.BlockDeviceError, err:
1765
    _Fail("Failed to find device: %s", err, exc=True)
1766

    
1767
  if rbd is None:
1768
    return None
1769

    
1770
  return rbd.GetSyncStatus()
1771

    
1772

    
1773
def BlockdevGetsize(disks):
1774
  """Computes the size of the given disks.
1775

1776
  If a disk is not found, returns None instead.
1777

1778
  @type disks: list of L{objects.Disk}
1779
  @param disks: the list of disk to compute the size for
1780
  @rtype: list
1781
  @return: list with elements None if the disk cannot be found,
1782
      otherwise the size
1783

1784
  """
1785
  result = []
1786
  for cf in disks:
1787
    try:
1788
      rbd = _RecursiveFindBD(cf)
1789
    except errors.BlockDeviceError:
1790
      result.append(None)
1791
      continue
1792
    if rbd is None:
1793
      result.append(None)
1794
    else:
1795
      result.append(rbd.GetActualSize())
1796
  return result
1797

    
1798

    
1799
def BlockdevExport(disk, dest_node, dest_path, cluster_name):
1800
  """Export a block device to a remote node.
1801

1802
  @type disk: L{objects.Disk}
1803
  @param disk: the description of the disk to export
1804
  @type dest_node: str
1805
  @param dest_node: the destination node to export to
1806
  @type dest_path: str
1807
  @param dest_path: the destination path on the target node
1808
  @type cluster_name: str
1809
  @param cluster_name: the cluster name, needed for SSH hostalias
1810
  @rtype: None
1811

1812
  """
1813
  real_disk = _OpenRealBD(disk)
1814

    
1815
  # the block size on the read dd is 1MiB to match our units
1816
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
1817
                               "dd if=%s bs=1048576 count=%s",
1818
                               real_disk.dev_path, str(disk.size))
1819

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

    
1829
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1830
                                                   constants.GANETI_RUNAS,
1831
                                                   destcmd)
1832

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

    
1836
  result = utils.RunCmd(["bash", "-c", command])
1837

    
1838
  if result.failed:
1839
    _Fail("Disk copy command '%s' returned error: %s"
1840
          " output: %s", command, result.fail_reason, result.output)
1841

    
1842

    
1843
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1844
  """Write a file to the filesystem.
1845

1846
  This allows the master to overwrite(!) a file. It will only perform
1847
  the operation if the file belongs to a list of configuration files.
1848

1849
  @type file_name: str
1850
  @param file_name: the target file name
1851
  @type data: str
1852
  @param data: the new contents of the file
1853
  @type mode: int
1854
  @param mode: the mode to give the file (can be None)
1855
  @type uid: string
1856
  @param uid: the owner of the file
1857
  @type gid: string
1858
  @param gid: the group of the file
1859
  @type atime: float
1860
  @param atime: the atime to set on the file (can be None)
1861
  @type mtime: float
1862
  @param mtime: the mtime to set on the file (can be None)
1863
  @rtype: None
1864

1865
  """
1866
  if not os.path.isabs(file_name):
1867
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
1868

    
1869
  if file_name not in _ALLOWED_UPLOAD_FILES:
1870
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
1871
          file_name)
1872

    
1873
  raw_data = _Decompress(data)
1874

    
1875
  if not (isinstance(uid, basestring) and isinstance(gid, basestring)):
1876
    _Fail("Invalid username/groupname type")
1877

    
1878
  getents = runtime.GetEnts()
1879
  uid = getents.LookupUser(uid)
1880
  gid = getents.LookupGroup(gid)
1881

    
1882
  utils.SafeWriteFile(file_name, None,
1883
                      data=raw_data, mode=mode, uid=uid, gid=gid,
1884
                      atime=atime, mtime=mtime)
1885

    
1886

    
1887
def RunOob(oob_program, command, node, timeout):
1888
  """Executes oob_program with given command on given node.
1889

1890
  @param oob_program: The path to the executable oob_program
1891
  @param command: The command to invoke on oob_program
1892
  @param node: The node given as an argument to the program
1893
  @param timeout: Timeout after which we kill the oob program
1894

1895
  @return: stdout
1896
  @raise RPCFail: If execution fails for some reason
1897

1898
  """
1899
  result = utils.RunCmd([oob_program, command, node], timeout=timeout)
1900

    
1901
  if result.failed:
1902
    _Fail("'%s' failed with reason '%s'; output: %s", result.cmd,
1903
          result.fail_reason, result.output)
1904

    
1905
  return result.stdout
1906

    
1907

    
1908
def WriteSsconfFiles(values):
1909
  """Update all ssconf files.
1910

1911
  Wrapper around the SimpleStore.WriteFiles.
1912

1913
  """
1914
  ssconf.SimpleStore().WriteFiles(values)
1915

    
1916

    
1917
def _ErrnoOrStr(err):
1918
  """Format an EnvironmentError exception.
1919

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

1924
  @type err: L{EnvironmentError}
1925
  @param err: the exception to format
1926

1927
  """
1928
  if hasattr(err, "errno"):
1929
    detail = errno.errorcode[err.errno]
1930
  else:
1931
    detail = str(err)
1932
  return detail
1933

    
1934

    
1935
def _OSOndiskAPIVersion(os_dir):
1936
  """Compute and return the API version of a given OS.
1937

1938
  This function will try to read the API version of the OS residing in
1939
  the 'os_dir' directory.
1940

1941
  @type os_dir: str
1942
  @param os_dir: the directory in which we should look for the OS
1943
  @rtype: tuple
1944
  @return: tuple (status, data) with status denoting the validity and
1945
      data holding either the vaid versions or an error message
1946

1947
  """
1948
  api_file = utils.PathJoin(os_dir, constants.OS_API_FILE)
1949

    
1950
  try:
1951
    st = os.stat(api_file)
1952
  except EnvironmentError, err:
1953
    return False, ("Required file '%s' not found under path %s: %s" %
1954
                   (constants.OS_API_FILE, os_dir, _ErrnoOrStr(err)))
1955

    
1956
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1957
    return False, ("File '%s' in %s is not a regular file" %
1958
                   (constants.OS_API_FILE, os_dir))
1959

    
1960
  try:
1961
    api_versions = utils.ReadFile(api_file).splitlines()
1962
  except EnvironmentError, err:
1963
    return False, ("Error while reading the API version file at %s: %s" %
1964
                   (api_file, _ErrnoOrStr(err)))
1965

    
1966
  try:
1967
    api_versions = [int(version.strip()) for version in api_versions]
1968
  except (TypeError, ValueError), err:
1969
    return False, ("API version(s) can't be converted to integer: %s" %
1970
                   str(err))
1971

    
1972
  return True, api_versions
1973

    
1974

    
1975
def DiagnoseOS(top_dirs=None):
1976
  """Compute the validity for all OSes.
1977

1978
  @type top_dirs: list
1979
  @param top_dirs: the list of directories in which to
1980
      search (if not given defaults to
1981
      L{constants.OS_SEARCH_PATH})
1982
  @rtype: list of L{objects.OS}
1983
  @return: a list of tuples (name, path, status, diagnose, variants,
1984
      parameters, api_version) for all (potential) OSes under all
1985
      search paths, where:
1986
          - name is the (potential) OS name
1987
          - path is the full path to the OS
1988
          - status True/False is the validity of the OS
1989
          - diagnose is the error message for an invalid OS, otherwise empty
1990
          - variants is a list of supported OS variants, if any
1991
          - parameters is a list of (name, help) parameters, if any
1992
          - api_version is a list of support OS API versions
1993

1994
  """
1995
  if top_dirs is None:
1996
    top_dirs = constants.OS_SEARCH_PATH
1997

    
1998
  result = []
1999
  for dir_name in top_dirs:
2000
    if os.path.isdir(dir_name):
2001
      try:
2002
        f_names = utils.ListVisibleFiles(dir_name)
2003
      except EnvironmentError, err:
2004
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
2005
        break
2006
      for name in f_names:
2007
        os_path = utils.PathJoin(dir_name, name)
2008
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
2009
        if status:
2010
          diagnose = ""
2011
          variants = os_inst.supported_variants
2012
          parameters = os_inst.supported_parameters
2013
          api_versions = os_inst.api_versions
2014
        else:
2015
          diagnose = os_inst
2016
          variants = parameters = api_versions = []
2017
        result.append((name, os_path, status, diagnose, variants,
2018
                       parameters, api_versions))
2019

    
2020
  return result
2021

    
2022

    
2023
def _TryOSFromDisk(name, base_dir=None):
2024
  """Create an OS instance from disk.
2025

2026
  This function will return an OS instance if the given name is a
2027
  valid OS name.
2028

2029
  @type base_dir: string
2030
  @keyword base_dir: Base directory containing OS installations.
2031
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
2032
  @rtype: tuple
2033
  @return: success and either the OS instance if we find a valid one,
2034
      or error message
2035

2036
  """
2037
  if base_dir is None:
2038
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
2039
  else:
2040
    os_dir = utils.FindFile(name, [base_dir], os.path.isdir)
2041

    
2042
  if os_dir is None:
2043
    return False, "Directory for OS %s not found in search path" % name
2044

    
2045
  status, api_versions = _OSOndiskAPIVersion(os_dir)
2046
  if not status:
2047
    # push the error up
2048
    return status, api_versions
2049

    
2050
  if not constants.OS_API_VERSIONS.intersection(api_versions):
2051
    return False, ("API version mismatch for path '%s': found %s, want %s." %
2052
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
2053

    
2054
  # OS Files dictionary, we will populate it with the absolute path names
2055
  os_files = dict.fromkeys(constants.OS_SCRIPTS)
2056

    
2057
  if max(api_versions) >= constants.OS_API_V15:
2058
    os_files[constants.OS_VARIANTS_FILE] = ""
2059

    
2060
  if max(api_versions) >= constants.OS_API_V20:
2061
    os_files[constants.OS_PARAMETERS_FILE] = ""
2062
  else:
2063
    del os_files[constants.OS_SCRIPT_VERIFY]
2064

    
2065
  for filename in os_files:
2066
    os_files[filename] = utils.PathJoin(os_dir, filename)
2067

    
2068
    try:
2069
      st = os.stat(os_files[filename])
2070
    except EnvironmentError, err:
2071
      return False, ("File '%s' under path '%s' is missing (%s)" %
2072
                     (filename, os_dir, _ErrnoOrStr(err)))
2073

    
2074
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
2075
      return False, ("File '%s' under path '%s' is not a regular file" %
2076
                     (filename, os_dir))
2077

    
2078
    if filename in constants.OS_SCRIPTS:
2079
      if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
2080
        return False, ("File '%s' under path '%s' is not executable" %
2081
                       (filename, os_dir))
2082

    
2083
  variants = []
2084
  if constants.OS_VARIANTS_FILE in os_files:
2085
    variants_file = os_files[constants.OS_VARIANTS_FILE]
2086
    try:
2087
      variants = utils.ReadFile(variants_file).splitlines()
2088
    except EnvironmentError, err:
2089
      return False, ("Error while reading the OS variants file at %s: %s" %
2090
                     (variants_file, _ErrnoOrStr(err)))
2091
    if not variants:
2092
      return False, ("No supported os variant found")
2093

    
2094
  parameters = []
2095
  if constants.OS_PARAMETERS_FILE in os_files:
2096
    parameters_file = os_files[constants.OS_PARAMETERS_FILE]
2097
    try:
2098
      parameters = utils.ReadFile(parameters_file).splitlines()
2099
    except EnvironmentError, err:
2100
      return False, ("Error while reading the OS parameters file at %s: %s" %
2101
                     (parameters_file, _ErrnoOrStr(err)))
2102
    parameters = [v.split(None, 1) for v in parameters]
2103

    
2104
  os_obj = objects.OS(name=name, path=os_dir,
2105
                      create_script=os_files[constants.OS_SCRIPT_CREATE],
2106
                      export_script=os_files[constants.OS_SCRIPT_EXPORT],
2107
                      import_script=os_files[constants.OS_SCRIPT_IMPORT],
2108
                      rename_script=os_files[constants.OS_SCRIPT_RENAME],
2109
                      verify_script=os_files.get(constants.OS_SCRIPT_VERIFY,
2110
                                                 None),
2111
                      supported_variants=variants,
2112
                      supported_parameters=parameters,
2113
                      api_versions=api_versions)
2114
  return True, os_obj
2115

    
2116

    
2117
def OSFromDisk(name, base_dir=None):
2118
  """Create an OS instance from disk.
2119

2120
  This function will return an OS instance if the given name is a
2121
  valid OS name. Otherwise, it will raise an appropriate
2122
  L{RPCFail} exception, detailing why this is not a valid OS.
2123

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

2127
  @type base_dir: string
2128
  @keyword base_dir: Base directory containing OS installations.
2129
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
2130
  @rtype: L{objects.OS}
2131
  @return: the OS instance if we find a valid one
2132
  @raise RPCFail: if we don't find a valid OS
2133

2134
  """
2135
  name_only = objects.OS.GetName(name)
2136
  status, payload = _TryOSFromDisk(name_only, base_dir)
2137

    
2138
  if not status:
2139
    _Fail(payload)
2140

    
2141
  return payload
2142

    
2143

    
2144
def OSCoreEnv(os_name, inst_os, os_params, debug=0):
2145
  """Calculate the basic environment for an os script.
2146

2147
  @type os_name: str
2148
  @param os_name: full operating system name (including variant)
2149
  @type inst_os: L{objects.OS}
2150
  @param inst_os: operating system for which the environment is being built
2151
  @type os_params: dict
2152
  @param os_params: the OS parameters
2153
  @type debug: integer
2154
  @param debug: debug level (0 or 1, for OS Api 10)
2155
  @rtype: dict
2156
  @return: dict of environment variables
2157
  @raise errors.BlockDeviceError: if the block device
2158
      cannot be found
2159

2160
  """
2161
  result = {}
2162
  api_version = \
2163
    max(constants.OS_API_VERSIONS.intersection(inst_os.api_versions))
2164
  result["OS_API_VERSION"] = "%d" % api_version
2165
  result["OS_NAME"] = inst_os.name
2166
  result["DEBUG_LEVEL"] = "%d" % debug
2167

    
2168
  # OS variants
2169
  if api_version >= constants.OS_API_V15:
2170
    variant = objects.OS.GetVariant(os_name)
2171
    if not variant:
2172
      variant = inst_os.supported_variants[0]
2173
    result["OS_VARIANT"] = variant
2174

    
2175
  # OS params
2176
  for pname, pvalue in os_params.items():
2177
    result["OSP_%s" % pname.upper()] = pvalue
2178

    
2179
  return result
2180

    
2181

    
2182
def OSEnvironment(instance, inst_os, debug=0):
2183
  """Calculate the environment for an os script.
2184

2185
  @type instance: L{objects.Instance}
2186
  @param instance: target instance for the os script run
2187
  @type inst_os: L{objects.OS}
2188
  @param inst_os: operating system for which the environment is being built
2189
  @type debug: integer
2190
  @param debug: debug level (0 or 1, for OS Api 10)
2191
  @rtype: dict
2192
  @return: dict of environment variables
2193
  @raise errors.BlockDeviceError: if the block device
2194
      cannot be found
2195

2196
  """
2197
  result = OSCoreEnv(instance.os, inst_os, instance.osparams, debug=debug)
2198

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

    
2202
  result["HYPERVISOR"] = instance.hypervisor
2203
  result["DISK_COUNT"] = "%d" % len(instance.disks)
2204
  result["NIC_COUNT"] = "%d" % len(instance.nics)
2205
  result["INSTANCE_SECONDARY_NODES"] = \
2206
      ("%s" % " ".join(instance.secondary_nodes))
2207

    
2208
  # Disks
2209
  for idx, disk in enumerate(instance.disks):
2210
    real_disk = _OpenRealBD(disk)
2211
    result["DISK_%d_PATH" % idx] = real_disk.dev_path
2212
    result["DISK_%d_ACCESS" % idx] = disk.mode
2213
    if constants.HV_DISK_TYPE in instance.hvparams:
2214
      result["DISK_%d_FRONTEND_TYPE" % idx] = \
2215
        instance.hvparams[constants.HV_DISK_TYPE]
2216
    if disk.dev_type in constants.LDS_BLOCK:
2217
      result["DISK_%d_BACKEND_TYPE" % idx] = "block"
2218
    elif disk.dev_type == constants.LD_FILE:
2219
      result["DISK_%d_BACKEND_TYPE" % idx] = \
2220
        "file:%s" % disk.physical_id[0]
2221

    
2222
  # NICs
2223
  for idx, nic in enumerate(instance.nics):
2224
    result["NIC_%d_MAC" % idx] = nic.mac
2225
    if nic.ip:
2226
      result["NIC_%d_IP" % idx] = nic.ip
2227
    result["NIC_%d_MODE" % idx] = nic.nicparams[constants.NIC_MODE]
2228
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
2229
      result["NIC_%d_BRIDGE" % idx] = nic.nicparams[constants.NIC_LINK]
2230
    if nic.nicparams[constants.NIC_LINK]:
2231
      result["NIC_%d_LINK" % idx] = nic.nicparams[constants.NIC_LINK]
2232
    if constants.HV_NIC_TYPE in instance.hvparams:
2233
      result["NIC_%d_FRONTEND_TYPE" % idx] = \
2234
        instance.hvparams[constants.HV_NIC_TYPE]
2235

    
2236
  # HV/BE params
2237
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
2238
    for key, value in source.items():
2239
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
2240

    
2241
  return result
2242

    
2243

    
2244
def BlockdevGrow(disk, amount, dryrun):
2245
  """Grow a stack of block devices.
2246

2247
  This function is called recursively, with the childrens being the
2248
  first ones to resize.
2249

2250
  @type disk: L{objects.Disk}
2251
  @param disk: the disk to be grown
2252
  @type amount: integer
2253
  @param amount: the amount (in mebibytes) to grow with
2254
  @type dryrun: boolean
2255
  @param dryrun: whether to execute the operation in simulation mode
2256
      only, without actually increasing the size
2257
  @rtype: (status, result)
2258
  @return: a tuple with the status of the operation (True/False), and
2259
      the errors message if status is False
2260

2261
  """
2262
  r_dev = _RecursiveFindBD(disk)
2263
  if r_dev is None:
2264
    _Fail("Cannot find block device %s", disk)
2265

    
2266
  try:
2267
    r_dev.Grow(amount, dryrun)
2268
  except errors.BlockDeviceError, err:
2269
    _Fail("Failed to grow block device: %s", err, exc=True)
2270

    
2271

    
2272
def BlockdevSnapshot(disk):
2273
  """Create a snapshot copy of a block device.
2274

2275
  This function is called recursively, and the snapshot is actually created
2276
  just for the leaf lvm backend device.
2277

2278
  @type disk: L{objects.Disk}
2279
  @param disk: the disk to be snapshotted
2280
  @rtype: string
2281
  @return: snapshot disk ID as (vg, lv)
2282

2283
  """
2284
  if disk.dev_type == constants.LD_DRBD8:
2285
    if not disk.children:
2286
      _Fail("DRBD device '%s' without backing storage cannot be snapshotted",
2287
            disk.unique_id)
2288
    return BlockdevSnapshot(disk.children[0])
2289
  elif disk.dev_type == constants.LD_LV:
2290
    r_dev = _RecursiveFindBD(disk)
2291
    if r_dev is not None:
2292
      # FIXME: choose a saner value for the snapshot size
2293
      # let's stay on the safe side and ask for the full size, for now
2294
      return r_dev.Snapshot(disk.size)
2295
    else:
2296
      _Fail("Cannot find block device %s", disk)
2297
  else:
2298
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
2299
          disk.unique_id, disk.dev_type)
2300

    
2301

    
2302
def FinalizeExport(instance, snap_disks):
2303
  """Write out the export configuration information.
2304

2305
  @type instance: L{objects.Instance}
2306
  @param instance: the instance which we export, used for
2307
      saving configuration
2308
  @type snap_disks: list of L{objects.Disk}
2309
  @param snap_disks: list of snapshot block devices, which
2310
      will be used to get the actual name of the dump file
2311

2312
  @rtype: None
2313

2314
  """
2315
  destdir = utils.PathJoin(constants.EXPORT_DIR, instance.name + ".new")
2316
  finaldestdir = utils.PathJoin(constants.EXPORT_DIR, instance.name)
2317

    
2318
  config = objects.SerializableConfigParser()
2319

    
2320
  config.add_section(constants.INISECT_EXP)
2321
  config.set(constants.INISECT_EXP, "version", "0")
2322
  config.set(constants.INISECT_EXP, "timestamp", "%d" % int(time.time()))
2323
  config.set(constants.INISECT_EXP, "source", instance.primary_node)
2324
  config.set(constants.INISECT_EXP, "os", instance.os)
2325
  config.set(constants.INISECT_EXP, "compression", "none")
2326

    
2327
  config.add_section(constants.INISECT_INS)
2328
  config.set(constants.INISECT_INS, "name", instance.name)
2329
  config.set(constants.INISECT_INS, "memory", "%d" %
2330
             instance.beparams[constants.BE_MEMORY])
2331
  config.set(constants.INISECT_INS, "vcpus", "%d" %
2332
             instance.beparams[constants.BE_VCPUS])
2333
  config.set(constants.INISECT_INS, "disk_template", instance.disk_template)
2334
  config.set(constants.INISECT_INS, "hypervisor", instance.hypervisor)
2335
  config.set(constants.INISECT_INS, "tags", " ".join(instance.GetTags()))
2336

    
2337
  nic_total = 0
2338
  for nic_count, nic in enumerate(instance.nics):
2339
    nic_total += 1
2340
    config.set(constants.INISECT_INS, "nic%d_mac" %
2341
               nic_count, "%s" % nic.mac)
2342
    config.set(constants.INISECT_INS, "nic%d_ip" % nic_count, "%s" % nic.ip)
2343
    for param in constants.NICS_PARAMETER_TYPES:
2344
      config.set(constants.INISECT_INS, "nic%d_%s" % (nic_count, param),
2345
                 "%s" % nic.nicparams.get(param, None))
2346
  # TODO: redundant: on load can read nics until it doesn't exist
2347
  config.set(constants.INISECT_INS, "nic_count" , "%d" % nic_total)
2348

    
2349
  disk_total = 0
2350
  for disk_count, disk in enumerate(snap_disks):
2351
    if disk:
2352
      disk_total += 1
2353
      config.set(constants.INISECT_INS, "disk%d_ivname" % disk_count,
2354
                 ("%s" % disk.iv_name))
2355
      config.set(constants.INISECT_INS, "disk%d_dump" % disk_count,
2356
                 ("%s" % disk.physical_id[1]))
2357
      config.set(constants.INISECT_INS, "disk%d_size" % disk_count,
2358
                 ("%d" % disk.size))
2359

    
2360
  config.set(constants.INISECT_INS, "disk_count" , "%d" % disk_total)
2361

    
2362
  # New-style hypervisor/backend parameters
2363

    
2364
  config.add_section(constants.INISECT_HYP)
2365
  for name, value in instance.hvparams.items():
2366
    if name not in constants.HVC_GLOBALS:
2367
      config.set(constants.INISECT_HYP, name, str(value))
2368

    
2369
  config.add_section(constants.INISECT_BEP)
2370
  for name, value in instance.beparams.items():
2371
    config.set(constants.INISECT_BEP, name, str(value))
2372

    
2373
  config.add_section(constants.INISECT_OSP)
2374
  for name, value in instance.osparams.items():
2375
    config.set(constants.INISECT_OSP, name, str(value))
2376

    
2377
  utils.WriteFile(utils.PathJoin(destdir, constants.EXPORT_CONF_FILE),
2378
                  data=config.Dumps())
2379
  shutil.rmtree(finaldestdir, ignore_errors=True)
2380
  shutil.move(destdir, finaldestdir)
2381

    
2382

    
2383
def ExportInfo(dest):
2384
  """Get export configuration information.
2385

2386
  @type dest: str
2387
  @param dest: directory containing the export
2388

2389
  @rtype: L{objects.SerializableConfigParser}
2390
  @return: a serializable config file containing the
2391
      export info
2392

2393
  """
2394
  cff = utils.PathJoin(dest, constants.EXPORT_CONF_FILE)
2395

    
2396
  config = objects.SerializableConfigParser()
2397
  config.read(cff)
2398

    
2399
  if (not config.has_section(constants.INISECT_EXP) or
2400
      not config.has_section(constants.INISECT_INS)):
2401
    _Fail("Export info file doesn't have the required fields")
2402

    
2403
  return config.Dumps()
2404

    
2405

    
2406
def ListExports():
2407
  """Return a list of exports currently available on this machine.
2408

2409
  @rtype: list
2410
  @return: list of the exports
2411

2412
  """
2413
  if os.path.isdir(constants.EXPORT_DIR):
2414
    return sorted(utils.ListVisibleFiles(constants.EXPORT_DIR))
2415
  else:
2416
    _Fail("No exports directory")
2417

    
2418

    
2419
def RemoveExport(export):
2420
  """Remove an existing export from the node.
2421

2422
  @type export: str
2423
  @param export: the name of the export to remove
2424
  @rtype: None
2425

2426
  """
2427
  target = utils.PathJoin(constants.EXPORT_DIR, export)
2428

    
2429
  try:
2430
    shutil.rmtree(target)
2431
  except EnvironmentError, err:
2432
    _Fail("Error while removing the export: %s", err, exc=True)
2433

    
2434

    
2435
def BlockdevRename(devlist):
2436
  """Rename a list of block devices.
2437

2438
  @type devlist: list of tuples
2439
  @param devlist: list of tuples of the form  (disk,
2440
      new_logical_id, new_physical_id); disk is an
2441
      L{objects.Disk} object describing the current disk,
2442
      and new logical_id/physical_id is the name we
2443
      rename it to
2444
  @rtype: boolean
2445
  @return: True if all renames succeeded, False otherwise
2446

2447
  """
2448
  msgs = []
2449
  result = True
2450
  for disk, unique_id in devlist:
2451
    dev = _RecursiveFindBD(disk)
2452
    if dev is None:
2453
      msgs.append("Can't find device %s in rename" % str(disk))
2454
      result = False
2455
      continue
2456
    try:
2457
      old_rpath = dev.dev_path
2458
      dev.Rename(unique_id)
2459
      new_rpath = dev.dev_path
2460
      if old_rpath != new_rpath:
2461
        DevCacheManager.RemoveCache(old_rpath)
2462
        # FIXME: we should add the new cache information here, like:
2463
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2464
        # but we don't have the owner here - maybe parse from existing
2465
        # cache? for now, we only lose lvm data when we rename, which
2466
        # is less critical than DRBD or MD
2467
    except errors.BlockDeviceError, err:
2468
      msgs.append("Can't rename device '%s' to '%s': %s" %
2469
                  (dev, unique_id, err))
2470
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2471
      result = False
2472
  if not result:
2473
    _Fail("; ".join(msgs))
2474

    
2475

    
2476
def _TransformFileStorageDir(fs_dir):
2477
  """Checks whether given file_storage_dir is valid.
2478

2479
  Checks wheter the given fs_dir is within the cluster-wide default
2480
  file_storage_dir or the shared_file_storage_dir, which are stored in
2481
  SimpleStore. Only paths under those directories are allowed.
2482

2483
  @type fs_dir: str
2484
  @param fs_dir: the path to check
2485

2486
  @return: the normalized path if valid, None otherwise
2487

2488
  """
2489
  if not constants.ENABLE_FILE_STORAGE:
2490
    _Fail("File storage disabled at configure time")
2491
  cfg = _GetConfig()
2492
  fs_dir = os.path.normpath(fs_dir)
2493
  base_fstore = cfg.GetFileStorageDir()
2494
  base_shared = cfg.GetSharedFileStorageDir()
2495
  if ((os.path.commonprefix([fs_dir, base_fstore]) != base_fstore) and
2496
      (os.path.commonprefix([fs_dir, base_shared]) != base_shared)):
2497
    _Fail("File storage directory '%s' is not under base file"
2498
          " storage directory '%s' or shared storage directory '%s'",
2499
          fs_dir, base_fstore, base_shared)
2500
  return fs_dir
2501

    
2502

    
2503
def CreateFileStorageDir(file_storage_dir):
2504
  """Create file storage directory.
2505

2506
  @type file_storage_dir: str
2507
  @param file_storage_dir: directory to create
2508

2509
  @rtype: tuple
2510
  @return: tuple with first element a boolean indicating wheter dir
2511
      creation was successful or not
2512

2513
  """
2514
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2515
  if os.path.exists(file_storage_dir):
2516
    if not os.path.isdir(file_storage_dir):
2517
      _Fail("Specified storage dir '%s' is not a directory",
2518
            file_storage_dir)
2519
  else:
2520
    try:
2521
      os.makedirs(file_storage_dir, 0750)
2522
    except OSError, err:
2523
      _Fail("Cannot create file storage directory '%s': %s",
2524
            file_storage_dir, err, exc=True)
2525

    
2526

    
2527
def RemoveFileStorageDir(file_storage_dir):
2528
  """Remove file storage directory.
2529

2530
  Remove it only if it's empty. If not log an error and return.
2531

2532
  @type file_storage_dir: str
2533
  @param file_storage_dir: the directory we should cleanup
2534
  @rtype: tuple (success,)
2535
  @return: tuple of one element, C{success}, denoting
2536
      whether the operation was successful
2537

2538
  """
2539
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2540
  if os.path.exists(file_storage_dir):
2541
    if not os.path.isdir(file_storage_dir):
2542
      _Fail("Specified Storage directory '%s' is not a directory",
2543
            file_storage_dir)
2544
    # deletes dir only if empty, otherwise we want to fail the rpc call
2545
    try:
2546
      os.rmdir(file_storage_dir)
2547
    except OSError, err:
2548
      _Fail("Cannot remove file storage directory '%s': %s",
2549
            file_storage_dir, err)
2550

    
2551

    
2552
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2553
  """Rename the file storage directory.
2554

2555
  @type old_file_storage_dir: str
2556
  @param old_file_storage_dir: the current path
2557
  @type new_file_storage_dir: str
2558
  @param new_file_storage_dir: the name we should rename to
2559
  @rtype: tuple (success,)
2560
  @return: tuple of one element, C{success}, denoting
2561
      whether the operation was successful
2562

2563
  """
2564
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
2565
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
2566
  if not os.path.exists(new_file_storage_dir):
2567
    if os.path.isdir(old_file_storage_dir):
2568
      try:
2569
        os.rename(old_file_storage_dir, new_file_storage_dir)
2570
      except OSError, err:
2571
        _Fail("Cannot rename '%s' to '%s': %s",
2572
              old_file_storage_dir, new_file_storage_dir, err)
2573
    else:
2574
      _Fail("Specified storage dir '%s' is not a directory",
2575
            old_file_storage_dir)
2576
  else:
2577
    if os.path.exists(old_file_storage_dir):
2578
      _Fail("Cannot rename '%s' to '%s': both locations exist",
2579
            old_file_storage_dir, new_file_storage_dir)
2580

    
2581

    
2582
def _EnsureJobQueueFile(file_name):
2583
  """Checks whether the given filename is in the queue directory.
2584

2585
  @type file_name: str
2586
  @param file_name: the file name we should check
2587
  @rtype: None
2588
  @raises RPCFail: if the file is not valid
2589

2590
  """
2591
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
2592
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
2593

    
2594
  if not result:
2595
    _Fail("Passed job queue file '%s' does not belong to"
2596
          " the queue directory '%s'", file_name, queue_dir)
2597

    
2598

    
2599
def JobQueueUpdate(file_name, content):
2600
  """Updates a file in the queue directory.
2601

2602
  This is just a wrapper over L{utils.io.WriteFile}, with proper
2603
  checking.
2604

2605
  @type file_name: str
2606
  @param file_name: the job file name
2607
  @type content: str
2608
  @param content: the new job contents
2609
  @rtype: boolean
2610
  @return: the success of the operation
2611

2612
  """
2613
  _EnsureJobQueueFile(file_name)
2614
  getents = runtime.GetEnts()
2615

    
2616
  # Write and replace the file atomically
2617
  utils.WriteFile(file_name, data=_Decompress(content), uid=getents.masterd_uid,
2618
                  gid=getents.masterd_gid)
2619

    
2620

    
2621
def JobQueueRename(old, new):
2622
  """Renames a job queue file.
2623

2624
  This is just a wrapper over os.rename with proper checking.
2625

2626
  @type old: str
2627
  @param old: the old (actual) file name
2628
  @type new: str
2629
  @param new: the desired file name
2630
  @rtype: tuple
2631
  @return: the success of the operation and payload
2632

2633
  """
2634
  _EnsureJobQueueFile(old)
2635
  _EnsureJobQueueFile(new)
2636

    
2637
  utils.RenameFile(old, new, mkdir=True)
2638

    
2639

    
2640
def BlockdevClose(instance_name, disks):
2641
  """Closes the given block devices.
2642

2643
  This means they will be switched to secondary mode (in case of
2644
  DRBD).
2645

2646
  @param instance_name: if the argument is not empty, the symlinks
2647
      of this instance will be removed
2648
  @type disks: list of L{objects.Disk}
2649
  @param disks: the list of disks to be closed
2650
  @rtype: tuple (success, message)
2651
  @return: a tuple of success and message, where success
2652
      indicates the succes of the operation, and message
2653
      which will contain the error details in case we
2654
      failed
2655

2656
  """
2657
  bdevs = []
2658
  for cf in disks:
2659
    rd = _RecursiveFindBD(cf)
2660
    if rd is None:
2661
      _Fail("Can't find device %s", cf)
2662
    bdevs.append(rd)
2663

    
2664
  msg = []
2665
  for rd in bdevs:
2666
    try:
2667
      rd.Close()
2668
    except errors.BlockDeviceError, err:
2669
      msg.append(str(err))
2670
  if msg:
2671
    _Fail("Can't make devices secondary: %s", ",".join(msg))
2672
  else:
2673
    if instance_name:
2674
      _RemoveBlockDevLinks(instance_name, disks)
2675

    
2676

    
2677
def ValidateHVParams(hvname, hvparams):
2678
  """Validates the given hypervisor parameters.
2679

2680
  @type hvname: string
2681
  @param hvname: the hypervisor name
2682
  @type hvparams: dict
2683
  @param hvparams: the hypervisor parameters to be validated
2684
  @rtype: None
2685

2686
  """
2687
  try:
2688
    hv_type = hypervisor.GetHypervisor(hvname)
2689
    hv_type.ValidateParameters(hvparams)
2690
  except errors.HypervisorError, err:
2691
    _Fail(str(err), log=False)
2692

    
2693

    
2694
def _CheckOSPList(os_obj, parameters):
2695
  """Check whether a list of parameters is supported by the OS.
2696

2697
  @type os_obj: L{objects.OS}
2698
  @param os_obj: OS object to check
2699
  @type parameters: list
2700
  @param parameters: the list of parameters to check
2701

2702
  """
2703
  supported = [v[0] for v in os_obj.supported_parameters]
2704
  delta = frozenset(parameters).difference(supported)
2705
  if delta:
2706
    _Fail("The following parameters are not supported"
2707
          " by the OS %s: %s" % (os_obj.name, utils.CommaJoin(delta)))
2708

    
2709

    
2710
def ValidateOS(required, osname, checks, osparams):
2711
  """Validate the given OS' parameters.
2712

2713
  @type required: boolean
2714
  @param required: whether absence of the OS should translate into
2715
      failure or not
2716
  @type osname: string
2717
  @param osname: the OS to be validated
2718
  @type checks: list
2719
  @param checks: list of the checks to run (currently only 'parameters')
2720
  @type osparams: dict
2721
  @param osparams: dictionary with OS parameters
2722
  @rtype: boolean
2723
  @return: True if the validation passed, or False if the OS was not
2724
      found and L{required} was false
2725

2726
  """
2727
  if not constants.OS_VALIDATE_CALLS.issuperset(checks):
2728
    _Fail("Unknown checks required for OS %s: %s", osname,
2729
          set(checks).difference(constants.OS_VALIDATE_CALLS))
2730

    
2731
  name_only = objects.OS.GetName(osname)
2732
  status, tbv = _TryOSFromDisk(name_only, None)
2733

    
2734
  if not status:
2735
    if required:
2736
      _Fail(tbv)
2737
    else:
2738
      return False
2739

    
2740
  if max(tbv.api_versions) < constants.OS_API_V20:
2741
    return True
2742

    
2743
  if constants.OS_VALIDATE_PARAMETERS in checks:
2744
    _CheckOSPList(tbv, osparams.keys())
2745

    
2746
  validate_env = OSCoreEnv(osname, tbv, osparams)
2747
  result = utils.RunCmd([tbv.verify_script] + checks, env=validate_env,
2748
                        cwd=tbv.path)
2749
  if result.failed:
2750
    logging.error("os validate command '%s' returned error: %s output: %s",
2751
                  result.cmd, result.fail_reason, result.output)
2752
    _Fail("OS validation script failed (%s), output: %s",
2753
          result.fail_reason, result.output, log=False)
2754

    
2755
  return True
2756

    
2757

    
2758
def DemoteFromMC():
2759
  """Demotes the current node from master candidate role.
2760

2761
  """
2762
  # try to ensure we're not the master by mistake
2763
  master, myself = ssconf.GetMasterAndMyself()
2764
  if master == myself:
2765
    _Fail("ssconf status shows I'm the master node, will not demote")
2766

    
2767
  result = utils.RunCmd([constants.DAEMON_UTIL, "check", constants.MASTERD])
2768
  if not result.failed:
2769
    _Fail("The master daemon is running, will not demote")
2770

    
2771
  try:
2772
    if os.path.isfile(constants.CLUSTER_CONF_FILE):
2773
      utils.CreateBackup(constants.CLUSTER_CONF_FILE)
2774
  except EnvironmentError, err:
2775
    if err.errno != errno.ENOENT:
2776
      _Fail("Error while backing up cluster file: %s", err, exc=True)
2777

    
2778
  utils.RemoveFile(constants.CLUSTER_CONF_FILE)
2779

    
2780

    
2781
def _GetX509Filenames(cryptodir, name):
2782
  """Returns the full paths for the private key and certificate.
2783

2784
  """
2785
  return (utils.PathJoin(cryptodir, name),
2786
          utils.PathJoin(cryptodir, name, _X509_KEY_FILE),
2787
          utils.PathJoin(cryptodir, name, _X509_CERT_FILE))
2788

    
2789

    
2790
def CreateX509Certificate(validity, cryptodir=constants.CRYPTO_KEYS_DIR):
2791
  """Creates a new X509 certificate for SSL/TLS.
2792

2793
  @type validity: int
2794
  @param validity: Validity in seconds
2795
  @rtype: tuple; (string, string)
2796
  @return: Certificate name and public part
2797

2798
  """
2799
  (key_pem, cert_pem) = \
2800
    utils.GenerateSelfSignedX509Cert(netutils.Hostname.GetSysName(),
2801
                                     min(validity, _MAX_SSL_CERT_VALIDITY))
2802

    
2803
  cert_dir = tempfile.mkdtemp(dir=cryptodir,
2804
                              prefix="x509-%s-" % utils.TimestampForFilename())
2805
  try:
2806
    name = os.path.basename(cert_dir)
2807
    assert len(name) > 5
2808

    
2809
    (_, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
2810

    
2811
    utils.WriteFile(key_file, mode=0400, data=key_pem)
2812
    utils.WriteFile(cert_file, mode=0400, data=cert_pem)
2813

    
2814
    # Never return private key as it shouldn't leave the node
2815
    return (name, cert_pem)
2816
  except Exception:
2817
    shutil.rmtree(cert_dir, ignore_errors=True)
2818
    raise
2819

    
2820

    
2821
def RemoveX509Certificate(name, cryptodir=constants.CRYPTO_KEYS_DIR):
2822
  """Removes a X509 certificate.
2823

2824
  @type name: string
2825
  @param name: Certificate name
2826

2827
  """
2828
  (cert_dir, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
2829

    
2830
  utils.RemoveFile(key_file)
2831
  utils.RemoveFile(cert_file)
2832

    
2833
  try:
2834
    os.rmdir(cert_dir)
2835
  except EnvironmentError, err:
2836
    _Fail("Cannot remove certificate directory '%s': %s",
2837
          cert_dir, err)
2838

    
2839

    
2840
def _GetImportExportIoCommand(instance, mode, ieio, ieargs):
2841
  """Returns the command for the requested input/output.
2842

2843
  @type instance: L{objects.Instance}
2844
  @param instance: The instance object
2845
  @param mode: Import/export mode
2846
  @param ieio: Input/output type
2847
  @param ieargs: Input/output arguments
2848

2849
  """
2850
  assert mode in (constants.IEM_IMPORT, constants.IEM_EXPORT)
2851

    
2852
  env = None
2853
  prefix = None
2854
  suffix = None
2855
  exp_size = None
2856

    
2857
  if ieio == constants.IEIO_FILE:
2858
    (filename, ) = ieargs
2859

    
2860
    if not utils.IsNormAbsPath(filename):
2861
      _Fail("Path '%s' is not normalized or absolute", filename)
2862

    
2863
    directory = os.path.normpath(os.path.dirname(filename))
2864

    
2865
    if (os.path.commonprefix([constants.EXPORT_DIR, directory]) !=
2866
        constants.EXPORT_DIR):
2867
      _Fail("File '%s' is not under exports directory '%s'",
2868
            filename, constants.EXPORT_DIR)
2869

    
2870
    # Create directory
2871
    utils.Makedirs(directory, mode=0750)
2872

    
2873
    quoted_filename = utils.ShellQuote(filename)
2874

    
2875
    if mode == constants.IEM_IMPORT:
2876
      suffix = "> %s" % quoted_filename
2877
    elif mode == constants.IEM_EXPORT:
2878
      suffix = "< %s" % quoted_filename
2879

    
2880
      # Retrieve file size
2881
      try:
2882
        st = os.stat(filename)
2883
      except EnvironmentError, err:
2884
        logging.error("Can't stat(2) %s: %s", filename, err)
2885
      else:
2886
        exp_size = utils.BytesToMebibyte(st.st_size)
2887

    
2888
  elif ieio == constants.IEIO_RAW_DISK:
2889
    (disk, ) = ieargs
2890

    
2891
    real_disk = _OpenRealBD(disk)
2892

    
2893
    if mode == constants.IEM_IMPORT:
2894
      # we set here a smaller block size as, due to transport buffering, more
2895
      # than 64-128k will mostly ignored; we use nocreat to fail if the device
2896
      # is not already there or we pass a wrong path; we use notrunc to no
2897
      # attempt truncate on an LV device; we use oflag=dsync to not buffer too
2898
      # much memory; this means that at best, we flush every 64k, which will
2899
      # not be very fast
2900
      suffix = utils.BuildShellCmd(("| dd of=%s conv=nocreat,notrunc"
2901
                                    " bs=%s oflag=dsync"),
2902
                                    real_disk.dev_path,
2903
                                    str(64 * 1024))
2904

    
2905
    elif mode == constants.IEM_EXPORT:
2906
      # the block size on the read dd is 1MiB to match our units
2907
      prefix = utils.BuildShellCmd("dd if=%s bs=%s count=%s |",
2908
                                   real_disk.dev_path,
2909
                                   str(1024 * 1024), # 1 MB
2910
                                   str(disk.size))
2911
      exp_size = disk.size
2912

    
2913
  elif ieio == constants.IEIO_SCRIPT:
2914
    (disk, disk_index, ) = ieargs
2915

    
2916
    assert isinstance(disk_index, (int, long))
2917

    
2918
    real_disk = _OpenRealBD(disk)
2919

    
2920
    inst_os = OSFromDisk(instance.os)
2921
    env = OSEnvironment(instance, inst_os)
2922

    
2923
    if mode == constants.IEM_IMPORT:
2924
      env["IMPORT_DEVICE"] = env["DISK_%d_PATH" % disk_index]
2925
      env["IMPORT_INDEX"] = str(disk_index)
2926
      script = inst_os.import_script
2927

    
2928
    elif mode == constants.IEM_EXPORT:
2929
      env["EXPORT_DEVICE"] = real_disk.dev_path
2930
      env["EXPORT_INDEX"] = str(disk_index)
2931
      script = inst_os.export_script
2932

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

    
2936
    if mode == constants.IEM_IMPORT:
2937
      suffix = "| %s" % script_cmd
2938

    
2939
    elif mode == constants.IEM_EXPORT:
2940
      prefix = "%s |" % script_cmd
2941

    
2942
    # Let script predict size
2943
    exp_size = constants.IE_CUSTOM_SIZE
2944

    
2945
  else:
2946
    _Fail("Invalid %s I/O mode %r", mode, ieio)
2947

    
2948
  return (env, prefix, suffix, exp_size)
2949

    
2950

    
2951
def _CreateImportExportStatusDir(prefix):
2952
  """Creates status directory for import/export.
2953

2954
  """
2955
  return tempfile.mkdtemp(dir=constants.IMPORT_EXPORT_DIR,
2956
                          prefix=("%s-%s-" %
2957
                                  (prefix, utils.TimestampForFilename())))
2958

    
2959

    
2960
def StartImportExportDaemon(mode, opts, host, port, instance, ieio, ieioargs):
2961
  """Starts an import or export daemon.
2962

2963
  @param mode: Import/output mode
2964
  @type opts: L{objects.ImportExportOptions}
2965
  @param opts: Daemon options
2966
  @type host: string
2967
  @param host: Remote host for export (None for import)
2968
  @type port: int
2969
  @param port: Remote port for export (None for import)
2970
  @type instance: L{objects.Instance}
2971
  @param instance: Instance object
2972
  @param ieio: Input/output type
2973
  @param ieioargs: Input/output arguments
2974

2975
  """
2976
  if mode == constants.IEM_IMPORT:
2977
    prefix = "import"
2978

    
2979
    if not (host is None and port is None):
2980
      _Fail("Can not specify host or port on import")
2981

    
2982
  elif mode == constants.IEM_EXPORT:
2983
    prefix = "export"
2984

    
2985
    if host is None or port is None:
2986
      _Fail("Host and port must be specified for an export")
2987

    
2988
  else:
2989
    _Fail("Invalid mode %r", mode)
2990

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

    
2994
  (cmd_env, cmd_prefix, cmd_suffix, exp_size) = \
2995
    _GetImportExportIoCommand(instance, mode, ieio, ieioargs)
2996

    
2997
  if opts.key_name is None:
2998
    # Use server.pem
2999
    key_path = constants.NODED_CERT_FILE
3000
    cert_path = constants.NODED_CERT_FILE
3001
    assert opts.ca_pem is None
3002
  else:
3003
    (_, key_path, cert_path) = _GetX509Filenames(constants.CRYPTO_KEYS_DIR,
3004
                                                 opts.key_name)
3005
    assert opts.ca_pem is not None
3006

    
3007
  for i in [key_path, cert_path]:
3008
    if not os.path.exists(i):
3009
      _Fail("File '%s' does not exist" % i)
3010

    
3011
  status_dir = _CreateImportExportStatusDir(prefix)
3012
  try:
3013
    status_file = utils.PathJoin(status_dir, _IES_STATUS_FILE)
3014
    pid_file = utils.PathJoin(status_dir, _IES_PID_FILE)
3015
    ca_file = utils.PathJoin(status_dir, _IES_CA_FILE)
3016

    
3017
    if opts.ca_pem is None:
3018
      # Use server.pem
3019
      ca = utils.ReadFile(constants.NODED_CERT_FILE)
3020
    else:
3021
      ca = opts.ca_pem
3022

    
3023
    # Write CA file
3024
    utils.WriteFile(ca_file, data=ca, mode=0400)
3025

    
3026
    cmd = [
3027
      constants.IMPORT_EXPORT_DAEMON,
3028
      status_file, mode,
3029
      "--key=%s" % key_path,
3030
      "--cert=%s" % cert_path,
3031
      "--ca=%s" % ca_file,
3032
      ]
3033

    
3034
    if host:
3035
      cmd.append("--host=%s" % host)
3036

    
3037
    if port:
3038
      cmd.append("--port=%s" % port)
3039

    
3040
    if opts.ipv6:
3041
      cmd.append("--ipv6")
3042
    else:
3043
      cmd.append("--ipv4")
3044

    
3045
    if opts.compress:
3046
      cmd.append("--compress=%s" % opts.compress)
3047

    
3048
    if opts.magic:
3049
      cmd.append("--magic=%s" % opts.magic)
3050

    
3051
    if exp_size is not None:
3052
      cmd.append("--expected-size=%s" % exp_size)
3053

    
3054
    if cmd_prefix:
3055
      cmd.append("--cmd-prefix=%s" % cmd_prefix)
3056

    
3057
    if cmd_suffix:
3058
      cmd.append("--cmd-suffix=%s" % cmd_suffix)
3059

    
3060
    if mode == constants.IEM_EXPORT:
3061
      # Retry connection a few times when connecting to remote peer
3062
      cmd.append("--connect-retries=%s" % constants.RIE_CONNECT_RETRIES)
3063
      cmd.append("--connect-timeout=%s" % constants.RIE_CONNECT_ATTEMPT_TIMEOUT)
3064
    elif opts.connect_timeout is not None:
3065
      assert mode == constants.IEM_IMPORT
3066
      # Overall timeout for establishing connection while listening
3067
      cmd.append("--connect-timeout=%s" % opts.connect_timeout)
3068

    
3069
    logfile = _InstanceLogName(prefix, instance.os, instance.name)
3070

    
3071
    # TODO: Once _InstanceLogName uses tempfile.mkstemp, StartDaemon has
3072
    # support for receiving a file descriptor for output
3073
    utils.StartDaemon(cmd, env=cmd_env, pidfile=pid_file,
3074
                      output=logfile)
3075

    
3076
    # The import/export name is simply the status directory name
3077
    return os.path.basename(status_dir)
3078

    
3079
  except Exception:
3080
    shutil.rmtree(status_dir, ignore_errors=True)
3081
    raise
3082

    
3083

    
3084
def GetImportExportStatus(names):
3085
  """Returns import/export daemon status.
3086

3087
  @type names: sequence
3088
  @param names: List of names
3089
  @rtype: List of dicts
3090
  @return: Returns a list of the state of each named import/export or None if a
3091
           status couldn't be read
3092

3093
  """
3094
  result = []
3095

    
3096
  for name in names:
3097
    status_file = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name,
3098
                                 _IES_STATUS_FILE)
3099

    
3100
    try:
3101
      data = utils.ReadFile(status_file)
3102
    except EnvironmentError, err:
3103
      if err.errno != errno.ENOENT:
3104
        raise
3105
      data = None
3106

    
3107
    if not data:
3108
      result.append(None)
3109
      continue
3110

    
3111
    result.append(serializer.LoadJson(data))
3112

    
3113
  return result
3114

    
3115

    
3116
def AbortImportExport(name):
3117
  """Sends SIGTERM to a running import/export daemon.
3118

3119
  """
3120
  logging.info("Abort import/export %s", name)
3121

    
3122
  status_dir = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name)
3123
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
3124

    
3125
  if pid:
3126
    logging.info("Import/export %s is running with PID %s, sending SIGTERM",
3127
                 name, pid)
3128
    utils.IgnoreProcessNotFound(os.kill, pid, signal.SIGTERM)
3129

    
3130

    
3131
def CleanupImportExport(name):
3132
  """Cleanup after an import or export.
3133

3134
  If the import/export daemon is still running it's killed. Afterwards the
3135
  whole status directory is removed.
3136

3137
  """
3138
  logging.info("Finalizing import/export %s", name)
3139

    
3140
  status_dir = utils.PathJoin(constants.IMPORT_EXPORT_DIR, name)
3141

    
3142
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
3143

    
3144
  if pid:
3145
    logging.info("Import/export %s is still running with PID %s",
3146
                 name, pid)
3147
    utils.KillProcess(pid, waitpid=False)
3148

    
3149
  shutil.rmtree(status_dir, ignore_errors=True)
3150

    
3151

    
3152
def _FindDisks(nodes_ip, disks):
3153
  """Sets the physical ID on disks and returns the block devices.
3154

3155
  """
3156
  # set the correct physical ID
3157
  my_name = netutils.Hostname.GetSysName()
3158
  for cf in disks:
3159
    cf.SetPhysicalID(my_name, nodes_ip)
3160

    
3161
  bdevs = []
3162

    
3163
  for cf in disks:
3164
    rd = _RecursiveFindBD(cf)
3165
    if rd is None:
3166
      _Fail("Can't find device %s", cf)
3167
    bdevs.append(rd)
3168
  return bdevs
3169

    
3170

    
3171
def DrbdDisconnectNet(nodes_ip, disks):
3172
  """Disconnects the network on a list of drbd devices.
3173

3174
  """
3175
  bdevs = _FindDisks(nodes_ip, disks)
3176

    
3177
  # disconnect disks
3178
  for rd in bdevs:
3179
    try:
3180
      rd.DisconnectNet()
3181
    except errors.BlockDeviceError, err:
3182
      _Fail("Can't change network configuration to standalone mode: %s",
3183
            err, exc=True)
3184

    
3185

    
3186
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
3187
  """Attaches the network on a list of drbd devices.
3188

3189
  """
3190
  bdevs = _FindDisks(nodes_ip, disks)
3191

    
3192
  if multimaster:
3193
    for idx, rd in enumerate(bdevs):
3194
      try:
3195
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
3196
      except EnvironmentError, err:
3197
        _Fail("Can't create symlink: %s", err)
3198
  # reconnect disks, switch to new master configuration and if
3199
  # needed primary mode
3200
  for rd in bdevs:
3201
    try:
3202
      rd.AttachNet(multimaster)
3203
    except errors.BlockDeviceError, err:
3204
      _Fail("Can't change network configuration: %s", err)
3205

    
3206
  # wait until the disks are connected; we need to retry the re-attach
3207
  # if the device becomes standalone, as this might happen if the one
3208
  # node disconnects and reconnects in a different mode before the
3209
  # other node reconnects; in this case, one or both of the nodes will
3210
  # decide it has wrong configuration and switch to standalone
3211

    
3212
  def _Attach():
3213
    all_connected = True
3214

    
3215
    for rd in bdevs:
3216
      stats = rd.GetProcStatus()
3217

    
3218
      all_connected = (all_connected and
3219
                       (stats.is_connected or stats.is_in_resync))
3220

    
3221
      if stats.is_standalone:
3222
        # peer had different config info and this node became
3223
        # standalone, even though this should not happen with the
3224
        # new staged way of changing disk configs
3225
        try:
3226
          rd.AttachNet(multimaster)
3227
        except errors.BlockDeviceError, err:
3228
          _Fail("Can't change network configuration: %s", err)
3229

    
3230
    if not all_connected:
3231
      raise utils.RetryAgain()
3232

    
3233
  try:
3234
    # Start with a delay of 100 miliseconds and go up to 5 seconds
3235
    utils.Retry(_Attach, (0.1, 1.5, 5.0), 2 * 60)
3236
  except utils.RetryTimeout:
3237
    _Fail("Timeout in disk reconnecting")
3238

    
3239
  if multimaster:
3240
    # change to primary mode
3241
    for rd in bdevs:
3242
      try:
3243
        rd.Open()
3244
      except errors.BlockDeviceError, err:
3245
        _Fail("Can't change to primary mode: %s", err)
3246

    
3247

    
3248
def DrbdWaitSync(nodes_ip, disks):
3249
  """Wait until DRBDs have synchronized.
3250

3251
  """
3252
  def _helper(rd):
3253
    stats = rd.GetProcStatus()
3254
    if not (stats.is_connected or stats.is_in_resync):
3255
      raise utils.RetryAgain()
3256
    return stats
3257

    
3258
  bdevs = _FindDisks(nodes_ip, disks)
3259

    
3260
  min_resync = 100
3261
  alldone = True
3262
  for rd in bdevs:
3263
    try:
3264
      # poll each second for 15 seconds
3265
      stats = utils.Retry(_helper, 1, 15, args=[rd])
3266
    except utils.RetryTimeout:
3267
      stats = rd.GetProcStatus()
3268
      # last check
3269
      if not (stats.is_connected or stats.is_in_resync):
3270
        _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
3271
    alldone = alldone and (not stats.is_in_resync)
3272
    if stats.sync_percent is not None:
3273
      min_resync = min(min_resync, stats.sync_percent)
3274

    
3275
  return (alldone, min_resync)
3276

    
3277

    
3278
def GetDrbdUsermodeHelper():
3279
  """Returns DRBD usermode helper currently configured.
3280

3281
  """
3282
  try:
3283
    return bdev.BaseDRBD.GetUsermodeHelper()
3284
  except errors.BlockDeviceError, err:
3285
    _Fail(str(err))
3286

    
3287

    
3288
def PowercycleNode(hypervisor_type):
3289
  """Hard-powercycle the node.
3290

3291
  Because we need to return first, and schedule the powercycle in the
3292
  background, we won't be able to report failures nicely.
3293

3294
  """
3295
  hyper = hypervisor.GetHypervisor(hypervisor_type)
3296
  try:
3297
    pid = os.fork()
3298
  except OSError:
3299
    # if we can't fork, we'll pretend that we're in the child process
3300
    pid = 0
3301
  if pid > 0:
3302
    return "Reboot scheduled in 5 seconds"
3303
  # ensure the child is running on ram
3304
  try:
3305
    utils.Mlockall()
3306
  except Exception: # pylint: disable-msg=W0703
3307
    pass
3308
  time.sleep(5)
3309
  hyper.PowercycleNode()
3310

    
3311

    
3312
class HooksRunner(object):
3313
  """Hook runner.
3314

3315
  This class is instantiated on the node side (ganeti-noded) and not
3316
  on the master side.
3317

3318
  """
3319
  def __init__(self, hooks_base_dir=None):
3320
    """Constructor for hooks runner.
3321

3322
    @type hooks_base_dir: str or None
3323
    @param hooks_base_dir: if not None, this overrides the
3324
        L{constants.HOOKS_BASE_DIR} (useful for unittests)
3325

3326
    """
3327
    if hooks_base_dir is None:
3328
      hooks_base_dir = constants.HOOKS_BASE_DIR
3329
    # yeah, _BASE_DIR is not valid for attributes, we use it like a
3330
    # constant
3331
    self._BASE_DIR = hooks_base_dir # pylint: disable-msg=C0103
3332

    
3333
  def RunHooks(self, hpath, phase, env):
3334
    """Run the scripts in the hooks directory.
3335

3336
    @type hpath: str
3337
    @param hpath: the path to the hooks directory which
3338
        holds the scripts
3339
    @type phase: str
3340
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
3341
        L{constants.HOOKS_PHASE_POST}
3342
    @type env: dict
3343
    @param env: dictionary with the environment for the hook
3344
    @rtype: list
3345
    @return: list of 3-element tuples:
3346
      - script path
3347
      - script result, either L{constants.HKR_SUCCESS} or
3348
        L{constants.HKR_FAIL}
3349
      - output of the script
3350

3351
    @raise errors.ProgrammerError: for invalid input
3352
        parameters
3353

3354
    """
3355
    if phase == constants.HOOKS_PHASE_PRE:
3356
      suffix = "pre"
3357
    elif phase == constants.HOOKS_PHASE_POST:
3358
      suffix = "post"
3359
    else:
3360
      _Fail("Unknown hooks phase '%s'", phase)
3361

    
3362

    
3363
    subdir = "%s-%s.d" % (hpath, suffix)
3364
    dir_name = utils.PathJoin(self._BASE_DIR, subdir)
3365

    
3366
    results = []
3367

    
3368
    if not os.path.isdir(dir_name):
3369
      # for non-existing/non-dirs, we simply exit instead of logging a
3370
      # warning at every operation
3371
      return results
3372

    
3373
    runparts_results = utils.RunParts(dir_name, env=env, reset_env=True)
3374

    
3375
    for (relname, relstatus, runresult)  in runparts_results:
3376
      if relstatus == constants.RUNPARTS_SKIP:
3377
        rrval = constants.HKR_SKIP
3378
        output = ""
3379
      elif relstatus == constants.RUNPARTS_ERR:
3380
        rrval = constants.HKR_FAIL
3381
        output = "Hook script execution error: %s" % runresult
3382
      elif relstatus == constants.RUNPARTS_RUN:
3383
        if runresult.failed:
3384
          rrval = constants.HKR_FAIL
3385
        else:
3386
          rrval = constants.HKR_SUCCESS
3387
        output = utils.SafeEncode(runresult.output.strip())
3388
      results.append(("%s/%s" % (subdir, relname), rrval, output))
3389

    
3390
    return results
3391

    
3392

    
3393
class IAllocatorRunner(object):
3394
  """IAllocator runner.
3395

3396
  This class is instantiated on the node side (ganeti-noded) and not on
3397
  the master side.
3398

3399
  """
3400
  @staticmethod
3401
  def Run(name, idata):
3402
    """Run an iallocator script.
3403

3404
    @type name: str
3405
    @param name: the iallocator script name
3406
    @type idata: str
3407
    @param idata: the allocator input data
3408

3409
    @rtype: tuple
3410
    @return: two element tuple of:
3411
       - status
3412
       - either error message or stdout of allocator (for success)
3413

3414
    """
3415
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
3416
                                  os.path.isfile)
3417
    if alloc_script is None:
3418
      _Fail("iallocator module '%s' not found in the search path", name)
3419

    
3420
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
3421
    try:
3422
      os.write(fd, idata)
3423
      os.close(fd)
3424
      result = utils.RunCmd([alloc_script, fin_name])
3425
      if result.failed:
3426
        _Fail("iallocator module '%s' failed: %s, output '%s'",
3427
              name, result.fail_reason, result.output)
3428
    finally:
3429
      os.unlink(fin_name)
3430

    
3431
    return result.stdout
3432

    
3433

    
3434
class DevCacheManager(object):
3435
  """Simple class for managing a cache of block device information.
3436

3437
  """
3438
  _DEV_PREFIX = "/dev/"
3439
  _ROOT_DIR = constants.BDEV_CACHE_DIR
3440

    
3441
  @classmethod
3442
  def _ConvertPath(cls, dev_path):
3443
    """Converts a /dev/name path to the cache file name.
3444

3445
    This replaces slashes with underscores and strips the /dev
3446
    prefix. It then returns the full path to the cache file.
3447

3448
    @type dev_path: str
3449
    @param dev_path: the C{/dev/} path name
3450
    @rtype: str
3451
    @return: the converted path name
3452

3453
    """
3454
    if dev_path.startswith(cls._DEV_PREFIX):
3455
      dev_path = dev_path[len(cls._DEV_PREFIX):]
3456
    dev_path = dev_path.replace("/", "_")
3457
    fpath = utils.PathJoin(cls._ROOT_DIR, "bdev_%s" % dev_path)
3458
    return fpath
3459

    
3460
  @classmethod
3461
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
3462
    """Updates the cache information for a given device.
3463

3464
    @type dev_path: str
3465
    @param dev_path: the pathname of the device
3466
    @type owner: str
3467
    @param owner: the owner (instance name) of the device
3468
    @type on_primary: bool
3469
    @param on_primary: whether this is the primary
3470
        node nor not
3471
    @type iv_name: str
3472
    @param iv_name: the instance-visible name of the
3473
        device, as in objects.Disk.iv_name
3474

3475
    @rtype: None
3476

3477
    """
3478
    if dev_path is None:
3479
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
3480
      return
3481
    fpath = cls._ConvertPath(dev_path)
3482
    if on_primary:
3483
      state = "primary"
3484
    else:
3485
      state = "secondary"
3486
    if iv_name is None:
3487
      iv_name = "not_visible"
3488
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
3489
    try:
3490
      utils.WriteFile(fpath, data=fdata)
3491
    except EnvironmentError, err:
3492
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
3493

    
3494
  @classmethod
3495
  def RemoveCache(cls, dev_path):
3496
    """Remove data for a dev_path.
3497

3498
    This is just a wrapper over L{utils.io.RemoveFile} with a converted
3499
    path name and logging.
3500

3501
    @type dev_path: str
3502
    @param dev_path: the pathname of the device
3503

3504
    @rtype: None
3505

3506
    """
3507
    if dev_path is None:
3508
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
3509
      return
3510
    fpath = cls._ConvertPath(dev_path)
3511
    try:
3512
      utils.RemoveFile(fpath)
3513
    except EnvironmentError, err:
3514
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)