Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 295728df

History | View | Annotate | Download (237.3 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008 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
"""Module implementing the master-side code."""
23

    
24
# pylint: disable-msg=W0613,W0201
25

    
26
import os
27
import os.path
28
import sha
29
import time
30
import tempfile
31
import re
32
import platform
33
import logging
34
import copy
35
import random
36

    
37
from ganeti import ssh
38
from ganeti import utils
39
from ganeti import errors
40
from ganeti import hypervisor
41
from ganeti import locking
42
from ganeti import constants
43
from ganeti import objects
44
from ganeti import opcodes
45
from ganeti import serializer
46
from ganeti import ssconf
47

    
48

    
49
class LogicalUnit(object):
50
  """Logical Unit base class.
51

52
  Subclasses must follow these rules:
53
    - implement ExpandNames
54
    - implement CheckPrereq
55
    - implement Exec
56
    - implement BuildHooksEnv
57
    - redefine HPATH and HTYPE
58
    - optionally redefine their run requirements:
59
        REQ_BGL: the LU needs to hold the Big Ganeti Lock exclusively
60

61
  Note that all commands require root permissions.
62

63
  """
64
  HPATH = None
65
  HTYPE = None
66
  _OP_REQP = []
67
  REQ_BGL = True
68

    
69
  def __init__(self, processor, op, context, rpc):
70
    """Constructor for LogicalUnit.
71

72
    This needs to be overriden in derived classes in order to check op
73
    validity.
74

75
    """
76
    self.proc = processor
77
    self.op = op
78
    self.cfg = context.cfg
79
    self.context = context
80
    self.rpc = rpc
81
    # Dicts used to declare locking needs to mcpu
82
    self.needed_locks = None
83
    self.acquired_locks = {}
84
    self.share_locks = dict(((i, 0) for i in locking.LEVELS))
85
    self.add_locks = {}
86
    self.remove_locks = {}
87
    # Used to force good behavior when calling helper functions
88
    self.recalculate_locks = {}
89
    self.__ssh = None
90
    # logging
91
    self.LogWarning = processor.LogWarning
92
    self.LogInfo = processor.LogInfo
93

    
94
    for attr_name in self._OP_REQP:
95
      attr_val = getattr(op, attr_name, None)
96
      if attr_val is None:
97
        raise errors.OpPrereqError("Required parameter '%s' missing" %
98
                                   attr_name)
99
    self.CheckArguments()
100

    
101
  def __GetSSH(self):
102
    """Returns the SshRunner object
103

104
    """
105
    if not self.__ssh:
106
      self.__ssh = ssh.SshRunner(self.cfg.GetClusterName())
107
    return self.__ssh
108

    
109
  ssh = property(fget=__GetSSH)
110

    
111
  def CheckArguments(self):
112
    """Check syntactic validity for the opcode arguments.
113

114
    This method is for doing a simple syntactic check and ensure
115
    validity of opcode parameters, without any cluster-related
116
    checks. While the same can be accomplished in ExpandNames and/or
117
    CheckPrereq, doing these separate is better because:
118

119
      - ExpandNames is left as as purely a lock-related function
120
      - CheckPrereq is run after we have aquired locks (and possible
121
        waited for them)
122

123
    The function is allowed to change the self.op attribute so that
124
    later methods can no longer worry about missing parameters.
125

126
    """
127
    pass
128

    
129
  def ExpandNames(self):
130
    """Expand names for this LU.
131

132
    This method is called before starting to execute the opcode, and it should
133
    update all the parameters of the opcode to their canonical form (e.g. a
134
    short node name must be fully expanded after this method has successfully
135
    completed). This way locking, hooks, logging, ecc. can work correctly.
136

137
    LUs which implement this method must also populate the self.needed_locks
138
    member, as a dict with lock levels as keys, and a list of needed lock names
139
    as values. Rules:
140

141
      - use an empty dict if you don't need any lock
142
      - if you don't need any lock at a particular level omit that level
143
      - don't put anything for the BGL level
144
      - if you want all locks at a level use locking.ALL_SET as a value
145

146
    If you need to share locks (rather than acquire them exclusively) at one
147
    level you can modify self.share_locks, setting a true value (usually 1) for
148
    that level. By default locks are not shared.
149

150
    Examples::
151

152
      # Acquire all nodes and one instance
153
      self.needed_locks = {
154
        locking.LEVEL_NODE: locking.ALL_SET,
155
        locking.LEVEL_INSTANCE: ['instance1.example.tld'],
156
      }
157
      # Acquire just two nodes
158
      self.needed_locks = {
159
        locking.LEVEL_NODE: ['node1.example.tld', 'node2.example.tld'],
160
      }
161
      # Acquire no locks
162
      self.needed_locks = {} # No, you can't leave it to the default value None
163

164
    """
165
    # The implementation of this method is mandatory only if the new LU is
166
    # concurrent, so that old LUs don't need to be changed all at the same
167
    # time.
168
    if self.REQ_BGL:
169
      self.needed_locks = {} # Exclusive LUs don't need locks.
170
    else:
171
      raise NotImplementedError
172

    
173
  def DeclareLocks(self, level):
174
    """Declare LU locking needs for a level
175

176
    While most LUs can just declare their locking needs at ExpandNames time,
177
    sometimes there's the need to calculate some locks after having acquired
178
    the ones before. This function is called just before acquiring locks at a
179
    particular level, but after acquiring the ones at lower levels, and permits
180
    such calculations. It can be used to modify self.needed_locks, and by
181
    default it does nothing.
182

183
    This function is only called if you have something already set in
184
    self.needed_locks for the level.
185

186
    @param level: Locking level which is going to be locked
187
    @type level: member of ganeti.locking.LEVELS
188

189
    """
190

    
191
  def CheckPrereq(self):
192
    """Check prerequisites for this LU.
193

194
    This method should check that the prerequisites for the execution
195
    of this LU are fulfilled. It can do internode communication, but
196
    it should be idempotent - no cluster or system changes are
197
    allowed.
198

199
    The method should raise errors.OpPrereqError in case something is
200
    not fulfilled. Its return value is ignored.
201

202
    This method should also update all the parameters of the opcode to
203
    their canonical form if it hasn't been done by ExpandNames before.
204

205
    """
206
    raise NotImplementedError
207

    
208
  def Exec(self, feedback_fn):
209
    """Execute the LU.
210

211
    This method should implement the actual work. It should raise
212
    errors.OpExecError for failures that are somewhat dealt with in
213
    code, or expected.
214

215
    """
216
    raise NotImplementedError
217

    
218
  def BuildHooksEnv(self):
219
    """Build hooks environment for this LU.
220

221
    This method should return a three-node tuple consisting of: a dict
222
    containing the environment that will be used for running the
223
    specific hook for this LU, a list of node names on which the hook
224
    should run before the execution, and a list of node names on which
225
    the hook should run after the execution.
226

227
    The keys of the dict must not have 'GANETI_' prefixed as this will
228
    be handled in the hooks runner. Also note additional keys will be
229
    added by the hooks runner. If the LU doesn't define any
230
    environment, an empty dict (and not None) should be returned.
231

232
    No nodes should be returned as an empty list (and not None).
233

234
    Note that if the HPATH for a LU class is None, this function will
235
    not be called.
236

237
    """
238
    raise NotImplementedError
239

    
240
  def HooksCallBack(self, phase, hook_results, feedback_fn, lu_result):
241
    """Notify the LU about the results of its hooks.
242

243
    This method is called every time a hooks phase is executed, and notifies
244
    the Logical Unit about the hooks' result. The LU can then use it to alter
245
    its result based on the hooks.  By default the method does nothing and the
246
    previous result is passed back unchanged but any LU can define it if it
247
    wants to use the local cluster hook-scripts somehow.
248

249
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
250
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
251
    @param hook_results: the results of the multi-node hooks rpc call
252
    @param feedback_fn: function used send feedback back to the caller
253
    @param lu_result: the previous Exec result this LU had, or None
254
        in the PRE phase
255
    @return: the new Exec result, based on the previous result
256
        and hook results
257

258
    """
259
    return lu_result
260

    
261
  def _ExpandAndLockInstance(self):
262
    """Helper function to expand and lock an instance.
263

264
    Many LUs that work on an instance take its name in self.op.instance_name
265
    and need to expand it and then declare the expanded name for locking. This
266
    function does it, and then updates self.op.instance_name to the expanded
267
    name. It also initializes needed_locks as a dict, if this hasn't been done
268
    before.
269

270
    """
271
    if self.needed_locks is None:
272
      self.needed_locks = {}
273
    else:
274
      assert locking.LEVEL_INSTANCE not in self.needed_locks, \
275
        "_ExpandAndLockInstance called with instance-level locks set"
276
    expanded_name = self.cfg.ExpandInstanceName(self.op.instance_name)
277
    if expanded_name is None:
278
      raise errors.OpPrereqError("Instance '%s' not known" %
279
                                  self.op.instance_name)
280
    self.needed_locks[locking.LEVEL_INSTANCE] = expanded_name
281
    self.op.instance_name = expanded_name
282

    
283
  def _LockInstancesNodes(self, primary_only=False):
284
    """Helper function to declare instances' nodes for locking.
285

286
    This function should be called after locking one or more instances to lock
287
    their nodes. Its effect is populating self.needed_locks[locking.LEVEL_NODE]
288
    with all primary or secondary nodes for instances already locked and
289
    present in self.needed_locks[locking.LEVEL_INSTANCE].
290

291
    It should be called from DeclareLocks, and for safety only works if
292
    self.recalculate_locks[locking.LEVEL_NODE] is set.
293

294
    In the future it may grow parameters to just lock some instance's nodes, or
295
    to just lock primaries or secondary nodes, if needed.
296

297
    If should be called in DeclareLocks in a way similar to::
298

299
      if level == locking.LEVEL_NODE:
300
        self._LockInstancesNodes()
301

302
    @type primary_only: boolean
303
    @param primary_only: only lock primary nodes of locked instances
304

305
    """
306
    assert locking.LEVEL_NODE in self.recalculate_locks, \
307
      "_LockInstancesNodes helper function called with no nodes to recalculate"
308

    
309
    # TODO: check if we're really been called with the instance locks held
310

    
311
    # For now we'll replace self.needed_locks[locking.LEVEL_NODE], but in the
312
    # future we might want to have different behaviors depending on the value
313
    # of self.recalculate_locks[locking.LEVEL_NODE]
314
    wanted_nodes = []
315
    for instance_name in self.acquired_locks[locking.LEVEL_INSTANCE]:
316
      instance = self.context.cfg.GetInstanceInfo(instance_name)
317
      wanted_nodes.append(instance.primary_node)
318
      if not primary_only:
319
        wanted_nodes.extend(instance.secondary_nodes)
320

    
321
    if self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_REPLACE:
322
      self.needed_locks[locking.LEVEL_NODE] = wanted_nodes
323
    elif self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_APPEND:
324
      self.needed_locks[locking.LEVEL_NODE].extend(wanted_nodes)
325

    
326
    del self.recalculate_locks[locking.LEVEL_NODE]
327

    
328

    
329
class NoHooksLU(LogicalUnit):
330
  """Simple LU which runs no hooks.
331

332
  This LU is intended as a parent for other LogicalUnits which will
333
  run no hooks, in order to reduce duplicate code.
334

335
  """
336
  HPATH = None
337
  HTYPE = None
338

    
339

    
340
def _GetWantedNodes(lu, nodes):
341
  """Returns list of checked and expanded node names.
342

343
  @type lu: L{LogicalUnit}
344
  @param lu: the logical unit on whose behalf we execute
345
  @type nodes: list
346
  @param nodes: list of node names or None for all nodes
347
  @rtype: list
348
  @return: the list of nodes, sorted
349
  @raise errors.OpProgrammerError: if the nodes parameter is wrong type
350

351
  """
352
  if not isinstance(nodes, list):
353
    raise errors.OpPrereqError("Invalid argument type 'nodes'")
354

    
355
  if not nodes:
356
    raise errors.ProgrammerError("_GetWantedNodes should only be called with a"
357
      " non-empty list of nodes whose name is to be expanded.")
358

    
359
  wanted = []
360
  for name in nodes:
361
    node = lu.cfg.ExpandNodeName(name)
362
    if node is None:
363
      raise errors.OpPrereqError("No such node name '%s'" % name)
364
    wanted.append(node)
365

    
366
  return utils.NiceSort(wanted)
367

    
368

    
369
def _GetWantedInstances(lu, instances):
370
  """Returns list of checked and expanded instance names.
371

372
  @type lu: L{LogicalUnit}
373
  @param lu: the logical unit on whose behalf we execute
374
  @type instances: list
375
  @param instances: list of instance names or None for all instances
376
  @rtype: list
377
  @return: the list of instances, sorted
378
  @raise errors.OpPrereqError: if the instances parameter is wrong type
379
  @raise errors.OpPrereqError: if any of the passed instances is not found
380

381
  """
382
  if not isinstance(instances, list):
383
    raise errors.OpPrereqError("Invalid argument type 'instances'")
384

    
385
  if instances:
386
    wanted = []
387

    
388
    for name in instances:
389
      instance = lu.cfg.ExpandInstanceName(name)
390
      if instance is None:
391
        raise errors.OpPrereqError("No such instance name '%s'" % name)
392
      wanted.append(instance)
393

    
394
  else:
395
    wanted = utils.NiceSort(lu.cfg.GetInstanceList())
396
  return wanted
397

    
398

    
399
def _CheckOutputFields(static, dynamic, selected):
400
  """Checks whether all selected fields are valid.
401

402
  @type static: L{utils.FieldSet}
403
  @param static: static fields set
404
  @type dynamic: L{utils.FieldSet}
405
  @param dynamic: dynamic fields set
406

407
  """
408
  f = utils.FieldSet()
409
  f.Extend(static)
410
  f.Extend(dynamic)
411

    
412
  delta = f.NonMatching(selected)
413
  if delta:
414
    raise errors.OpPrereqError("Unknown output fields selected: %s"
415
                               % ",".join(delta))
416

    
417

    
418
def _CheckBooleanOpField(op, name):
419
  """Validates boolean opcode parameters.
420

421
  This will ensure that an opcode parameter is either a boolean value,
422
  or None (but that it always exists).
423

424
  """
425
  val = getattr(op, name, None)
426
  if not (val is None or isinstance(val, bool)):
427
    raise errors.OpPrereqError("Invalid boolean parameter '%s' (%s)" %
428
                               (name, str(val)))
429
  setattr(op, name, val)
430

    
431

    
432
def _CheckNodeOnline(lu, node):
433
  """Ensure that a given node is online.
434

435
  @param lu: the LU on behalf of which we make the check
436
  @param node: the node to check
437
  @raise errors.OpPrereqError: if the node is offline
438

439
  """
440
  if lu.cfg.GetNodeInfo(node).offline:
441
    raise errors.OpPrereqError("Can't use offline node %s" % node)
442

    
443

    
444
def _CheckNodeNotDrained(lu, node):
445
  """Ensure that a given node is not drained.
446

447
  @param lu: the LU on behalf of which we make the check
448
  @param node: the node to check
449
  @raise errors.OpPrereqError: if the node is drained
450

451
  """
452
  if lu.cfg.GetNodeInfo(node).drained:
453
    raise errors.OpPrereqError("Can't use drained node %s" % node)
454

    
455

    
456
def _BuildInstanceHookEnv(name, primary_node, secondary_nodes, os_type, status,
457
                          memory, vcpus, nics):
458
  """Builds instance related env variables for hooks
459

460
  This builds the hook environment from individual variables.
461

462
  @type name: string
463
  @param name: the name of the instance
464
  @type primary_node: string
465
  @param primary_node: the name of the instance's primary node
466
  @type secondary_nodes: list
467
  @param secondary_nodes: list of secondary nodes as strings
468
  @type os_type: string
469
  @param os_type: the name of the instance's OS
470
  @type status: boolean
471
  @param status: the should_run status of the instance
472
  @type memory: string
473
  @param memory: the memory size of the instance
474
  @type vcpus: string
475
  @param vcpus: the count of VCPUs the instance has
476
  @type nics: list
477
  @param nics: list of tuples (ip, bridge, mac) representing
478
      the NICs the instance  has
479
  @rtype: dict
480
  @return: the hook environment for this instance
481

482
  """
483
  if status:
484
    str_status = "up"
485
  else:
486
    str_status = "down"
487
  env = {
488
    "OP_TARGET": name,
489
    "INSTANCE_NAME": name,
490
    "INSTANCE_PRIMARY": primary_node,
491
    "INSTANCE_SECONDARIES": " ".join(secondary_nodes),
492
    "INSTANCE_OS_TYPE": os_type,
493
    "INSTANCE_STATUS": str_status,
494
    "INSTANCE_MEMORY": memory,
495
    "INSTANCE_VCPUS": vcpus,
496
  }
497

    
498
  if nics:
499
    nic_count = len(nics)
500
    for idx, (ip, bridge, mac) in enumerate(nics):
501
      if ip is None:
502
        ip = ""
503
      env["INSTANCE_NIC%d_IP" % idx] = ip
504
      env["INSTANCE_NIC%d_BRIDGE" % idx] = bridge
505
      env["INSTANCE_NIC%d_HWADDR" % idx] = mac
506
  else:
507
    nic_count = 0
508

    
509
  env["INSTANCE_NIC_COUNT"] = nic_count
510

    
511
  return env
512

    
513

    
514
def _BuildInstanceHookEnvByObject(lu, instance, override=None):
515
  """Builds instance related env variables for hooks from an object.
516

517
  @type lu: L{LogicalUnit}
518
  @param lu: the logical unit on whose behalf we execute
519
  @type instance: L{objects.Instance}
520
  @param instance: the instance for which we should build the
521
      environment
522
  @type override: dict
523
  @param override: dictionary with key/values that will override
524
      our values
525
  @rtype: dict
526
  @return: the hook environment dictionary
527

528
  """
529
  bep = lu.cfg.GetClusterInfo().FillBE(instance)
530
  args = {
531
    'name': instance.name,
532
    'primary_node': instance.primary_node,
533
    'secondary_nodes': instance.secondary_nodes,
534
    'os_type': instance.os,
535
    'status': instance.admin_up,
536
    'memory': bep[constants.BE_MEMORY],
537
    'vcpus': bep[constants.BE_VCPUS],
538
    'nics': [(nic.ip, nic.bridge, nic.mac) for nic in instance.nics],
539
  }
540
  if override:
541
    args.update(override)
542
  return _BuildInstanceHookEnv(**args)
543

    
544

    
545
def _AdjustCandidatePool(lu):
546
  """Adjust the candidate pool after node operations.
547

548
  """
549
  mod_list = lu.cfg.MaintainCandidatePool()
550
  if mod_list:
551
    lu.LogInfo("Promoted nodes to master candidate role: %s",
552
               ", ".join(node.name for node in mod_list))
553
    for name in mod_list:
554
      lu.context.ReaddNode(name)
555
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
556
  if mc_now > mc_max:
557
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
558
               (mc_now, mc_max))
559

    
560

    
561
def _CheckInstanceBridgesExist(lu, instance):
562
  """Check that the brigdes needed by an instance exist.
563

564
  """
565
  # check bridges existance
566
  brlist = [nic.bridge for nic in instance.nics]
567
  result = lu.rpc.call_bridges_exist(instance.primary_node, brlist)
568
  result.Raise()
569
  if not result.data:
570
    raise errors.OpPrereqError("One or more target bridges %s does not"
571
                               " exist on destination node '%s'" %
572
                               (brlist, instance.primary_node))
573

    
574

    
575
class LUDestroyCluster(NoHooksLU):
576
  """Logical unit for destroying the cluster.
577

578
  """
579
  _OP_REQP = []
580

    
581
  def CheckPrereq(self):
582
    """Check prerequisites.
583

584
    This checks whether the cluster is empty.
585

586
    Any errors are signalled by raising errors.OpPrereqError.
587

588
    """
589
    master = self.cfg.GetMasterNode()
590

    
591
    nodelist = self.cfg.GetNodeList()
592
    if len(nodelist) != 1 or nodelist[0] != master:
593
      raise errors.OpPrereqError("There are still %d node(s) in"
594
                                 " this cluster." % (len(nodelist) - 1))
595
    instancelist = self.cfg.GetInstanceList()
596
    if instancelist:
597
      raise errors.OpPrereqError("There are still %d instance(s) in"
598
                                 " this cluster." % len(instancelist))
599

    
600
  def Exec(self, feedback_fn):
601
    """Destroys the cluster.
602

603
    """
604
    master = self.cfg.GetMasterNode()
605
    result = self.rpc.call_node_stop_master(master, False)
606
    result.Raise()
607
    if not result.data:
608
      raise errors.OpExecError("Could not disable the master role")
609
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
610
    utils.CreateBackup(priv_key)
611
    utils.CreateBackup(pub_key)
612
    return master
613

    
614

    
615
class LUVerifyCluster(LogicalUnit):
616
  """Verifies the cluster status.
617

618
  """
619
  HPATH = "cluster-verify"
620
  HTYPE = constants.HTYPE_CLUSTER
621
  _OP_REQP = ["skip_checks"]
622
  REQ_BGL = False
623

    
624
  def ExpandNames(self):
625
    self.needed_locks = {
626
      locking.LEVEL_NODE: locking.ALL_SET,
627
      locking.LEVEL_INSTANCE: locking.ALL_SET,
628
    }
629
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
630

    
631
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
632
                  node_result, feedback_fn, master_files,
633
                  drbd_map):
634
    """Run multiple tests against a node.
635

636
    Test list:
637

638
      - compares ganeti version
639
      - checks vg existance and size > 20G
640
      - checks config file checksum
641
      - checks ssh to other nodes
642

643
    @type nodeinfo: L{objects.Node}
644
    @param nodeinfo: the node to check
645
    @param file_list: required list of files
646
    @param local_cksum: dictionary of local files and their checksums
647
    @param node_result: the results from the node
648
    @param feedback_fn: function used to accumulate results
649
    @param master_files: list of files that only masters should have
650
    @param drbd_map: the useddrbd minors for this node, in
651
        form of minor: (instance, must_exist) which correspond to instances
652
        and their running status
653

654
    """
655
    node = nodeinfo.name
656

    
657
    # main result, node_result should be a non-empty dict
658
    if not node_result or not isinstance(node_result, dict):
659
      feedback_fn("  - ERROR: unable to verify node %s." % (node,))
660
      return True
661

    
662
    # compares ganeti version
663
    local_version = constants.PROTOCOL_VERSION
664
    remote_version = node_result.get('version', None)
665
    if not (remote_version and isinstance(remote_version, (list, tuple)) and
666
            len(remote_version) == 2):
667
      feedback_fn("  - ERROR: connection to %s failed" % (node))
668
      return True
669

    
670
    if local_version != remote_version[0]:
671
      feedback_fn("  - ERROR: incompatible protocol versions: master %s,"
672
                  " node %s %s" % (local_version, node, remote_version[0]))
673
      return True
674

    
675
    # node seems compatible, we can actually try to look into its results
676

    
677
    bad = False
678

    
679
    # full package version
680
    if constants.RELEASE_VERSION != remote_version[1]:
681
      feedback_fn("  - WARNING: software version mismatch: master %s,"
682
                  " node %s %s" %
683
                  (constants.RELEASE_VERSION, node, remote_version[1]))
684

    
685
    # checks vg existence and size > 20G
686

    
687
    vglist = node_result.get(constants.NV_VGLIST, None)
688
    if not vglist:
689
      feedback_fn("  - ERROR: unable to check volume groups on node %s." %
690
                      (node,))
691
      bad = True
692
    else:
693
      vgstatus = utils.CheckVolumeGroupSize(vglist, self.cfg.GetVGName(),
694
                                            constants.MIN_VG_SIZE)
695
      if vgstatus:
696
        feedback_fn("  - ERROR: %s on node %s" % (vgstatus, node))
697
        bad = True
698

    
699
    # checks config file checksum
700

    
701
    remote_cksum = node_result.get(constants.NV_FILELIST, None)
702
    if not isinstance(remote_cksum, dict):
703
      bad = True
704
      feedback_fn("  - ERROR: node hasn't returned file checksum data")
705
    else:
706
      for file_name in file_list:
707
        node_is_mc = nodeinfo.master_candidate
708
        must_have_file = file_name not in master_files
709
        if file_name not in remote_cksum:
710
          if node_is_mc or must_have_file:
711
            bad = True
712
            feedback_fn("  - ERROR: file '%s' missing" % file_name)
713
        elif remote_cksum[file_name] != local_cksum[file_name]:
714
          if node_is_mc or must_have_file:
715
            bad = True
716
            feedback_fn("  - ERROR: file '%s' has wrong checksum" % file_name)
717
          else:
718
            # not candidate and this is not a must-have file
719
            bad = True
720
            feedback_fn("  - ERROR: non master-candidate has old/wrong file"
721
                        " '%s'" % file_name)
722
        else:
723
          # all good, except non-master/non-must have combination
724
          if not node_is_mc and not must_have_file:
725
            feedback_fn("  - ERROR: file '%s' should not exist on non master"
726
                        " candidates" % file_name)
727

    
728
    # checks ssh to any
729

    
730
    if constants.NV_NODELIST not in node_result:
731
      bad = True
732
      feedback_fn("  - ERROR: node hasn't returned node ssh connectivity data")
733
    else:
734
      if node_result[constants.NV_NODELIST]:
735
        bad = True
736
        for node in node_result[constants.NV_NODELIST]:
737
          feedback_fn("  - ERROR: ssh communication with node '%s': %s" %
738
                          (node, node_result[constants.NV_NODELIST][node]))
739

    
740
    if constants.NV_NODENETTEST not in node_result:
741
      bad = True
742
      feedback_fn("  - ERROR: node hasn't returned node tcp connectivity data")
743
    else:
744
      if node_result[constants.NV_NODENETTEST]:
745
        bad = True
746
        nlist = utils.NiceSort(node_result[constants.NV_NODENETTEST].keys())
747
        for node in nlist:
748
          feedback_fn("  - ERROR: tcp communication with node '%s': %s" %
749
                          (node, node_result[constants.NV_NODENETTEST][node]))
750

    
751
    hyp_result = node_result.get(constants.NV_HYPERVISOR, None)
752
    if isinstance(hyp_result, dict):
753
      for hv_name, hv_result in hyp_result.iteritems():
754
        if hv_result is not None:
755
          feedback_fn("  - ERROR: hypervisor %s verify failure: '%s'" %
756
                      (hv_name, hv_result))
757

    
758
    # check used drbd list
759
    used_minors = node_result.get(constants.NV_DRBDLIST, [])
760
    for minor, (iname, must_exist) in drbd_map.items():
761
      if minor not in used_minors and must_exist:
762
        feedback_fn("  - ERROR: drbd minor %d of instance %s is not active" %
763
                    (minor, iname))
764
        bad = True
765
    for minor in used_minors:
766
      if minor not in drbd_map:
767
        feedback_fn("  - ERROR: unallocated drbd minor %d is in use" % minor)
768
        bad = True
769

    
770
    return bad
771

    
772
  def _VerifyInstance(self, instance, instanceconfig, node_vol_is,
773
                      node_instance, feedback_fn, n_offline):
774
    """Verify an instance.
775

776
    This function checks to see if the required block devices are
777
    available on the instance's node.
778

779
    """
780
    bad = False
781

    
782
    node_current = instanceconfig.primary_node
783

    
784
    node_vol_should = {}
785
    instanceconfig.MapLVsByNode(node_vol_should)
786

    
787
    for node in node_vol_should:
788
      if node in n_offline:
789
        # ignore missing volumes on offline nodes
790
        continue
791
      for volume in node_vol_should[node]:
792
        if node not in node_vol_is or volume not in node_vol_is[node]:
793
          feedback_fn("  - ERROR: volume %s missing on node %s" %
794
                          (volume, node))
795
          bad = True
796

    
797
    if instanceconfig.admin_up:
798
      if ((node_current not in node_instance or
799
          not instance in node_instance[node_current]) and
800
          node_current not in n_offline):
801
        feedback_fn("  - ERROR: instance %s not running on node %s" %
802
                        (instance, node_current))
803
        bad = True
804

    
805
    for node in node_instance:
806
      if (not node == node_current):
807
        if instance in node_instance[node]:
808
          feedback_fn("  - ERROR: instance %s should not run on node %s" %
809
                          (instance, node))
810
          bad = True
811

    
812
    return bad
813

    
814
  def _VerifyOrphanVolumes(self, node_vol_should, node_vol_is, feedback_fn):
815
    """Verify if there are any unknown volumes in the cluster.
816

817
    The .os, .swap and backup volumes are ignored. All other volumes are
818
    reported as unknown.
819

820
    """
821
    bad = False
822

    
823
    for node in node_vol_is:
824
      for volume in node_vol_is[node]:
825
        if node not in node_vol_should or volume not in node_vol_should[node]:
826
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
827
                      (volume, node))
828
          bad = True
829
    return bad
830

    
831
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
832
    """Verify the list of running instances.
833

834
    This checks what instances are running but unknown to the cluster.
835

836
    """
837
    bad = False
838
    for node in node_instance:
839
      for runninginstance in node_instance[node]:
840
        if runninginstance not in instancelist:
841
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
842
                          (runninginstance, node))
843
          bad = True
844
    return bad
845

    
846
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
847
    """Verify N+1 Memory Resilience.
848

849
    Check that if one single node dies we can still start all the instances it
850
    was primary for.
851

852
    """
853
    bad = False
854

    
855
    for node, nodeinfo in node_info.iteritems():
856
      # This code checks that every node which is now listed as secondary has
857
      # enough memory to host all instances it is supposed to should a single
858
      # other node in the cluster fail.
859
      # FIXME: not ready for failover to an arbitrary node
860
      # FIXME: does not support file-backed instances
861
      # WARNING: we currently take into account down instances as well as up
862
      # ones, considering that even if they're down someone might want to start
863
      # them even in the event of a node failure.
864
      for prinode, instances in nodeinfo['sinst-by-pnode'].iteritems():
865
        needed_mem = 0
866
        for instance in instances:
867
          bep = self.cfg.GetClusterInfo().FillBE(instance_cfg[instance])
868
          if bep[constants.BE_AUTO_BALANCE]:
869
            needed_mem += bep[constants.BE_MEMORY]
870
        if nodeinfo['mfree'] < needed_mem:
871
          feedback_fn("  - ERROR: not enough memory on node %s to accomodate"
872
                      " failovers should node %s fail" % (node, prinode))
873
          bad = True
874
    return bad
875

    
876
  def CheckPrereq(self):
877
    """Check prerequisites.
878

879
    Transform the list of checks we're going to skip into a set and check that
880
    all its members are valid.
881

882
    """
883
    self.skip_set = frozenset(self.op.skip_checks)
884
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
885
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
886

    
887
  def BuildHooksEnv(self):
888
    """Build hooks env.
889

890
    Cluster-Verify hooks just rone in the post phase and their failure makes
891
    the output be logged in the verify output and the verification to fail.
892

893
    """
894
    all_nodes = self.cfg.GetNodeList()
895
    # TODO: populate the environment with useful information for verify hooks
896
    env = {}
897
    return env, [], all_nodes
898

    
899
  def Exec(self, feedback_fn):
900
    """Verify integrity of cluster, performing various test on nodes.
901

902
    """
903
    bad = False
904
    feedback_fn("* Verifying global settings")
905
    for msg in self.cfg.VerifyConfig():
906
      feedback_fn("  - ERROR: %s" % msg)
907

    
908
    vg_name = self.cfg.GetVGName()
909
    hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
910
    nodelist = utils.NiceSort(self.cfg.GetNodeList())
911
    nodeinfo = [self.cfg.GetNodeInfo(nname) for nname in nodelist]
912
    instancelist = utils.NiceSort(self.cfg.GetInstanceList())
913
    instanceinfo = dict((iname, self.cfg.GetInstanceInfo(iname))
914
                        for iname in instancelist)
915
    i_non_redundant = [] # Non redundant instances
916
    i_non_a_balanced = [] # Non auto-balanced instances
917
    n_offline = [] # List of offline nodes
918
    n_drained = [] # List of nodes being drained
919
    node_volume = {}
920
    node_instance = {}
921
    node_info = {}
922
    instance_cfg = {}
923

    
924
    # FIXME: verify OS list
925
    # do local checksums
926
    master_files = [constants.CLUSTER_CONF_FILE]
927

    
928
    file_names = ssconf.SimpleStore().GetFileList()
929
    file_names.append(constants.SSL_CERT_FILE)
930
    file_names.append(constants.RAPI_CERT_FILE)
931
    file_names.extend(master_files)
932

    
933
    local_checksums = utils.FingerprintFiles(file_names)
934

    
935
    feedback_fn("* Gathering data (%d nodes)" % len(nodelist))
936
    node_verify_param = {
937
      constants.NV_FILELIST: file_names,
938
      constants.NV_NODELIST: [node.name for node in nodeinfo
939
                              if not node.offline],
940
      constants.NV_HYPERVISOR: hypervisors,
941
      constants.NV_NODENETTEST: [(node.name, node.primary_ip,
942
                                  node.secondary_ip) for node in nodeinfo
943
                                 if not node.offline],
944
      constants.NV_LVLIST: vg_name,
945
      constants.NV_INSTANCELIST: hypervisors,
946
      constants.NV_VGLIST: None,
947
      constants.NV_VERSION: None,
948
      constants.NV_HVINFO: self.cfg.GetHypervisorType(),
949
      constants.NV_DRBDLIST: None,
950
      }
951
    all_nvinfo = self.rpc.call_node_verify(nodelist, node_verify_param,
952
                                           self.cfg.GetClusterName())
953

    
954
    cluster = self.cfg.GetClusterInfo()
955
    master_node = self.cfg.GetMasterNode()
956
    all_drbd_map = self.cfg.ComputeDRBDMap()
957

    
958
    for node_i in nodeinfo:
959
      node = node_i.name
960
      nresult = all_nvinfo[node].data
961

    
962
      if node_i.offline:
963
        feedback_fn("* Skipping offline node %s" % (node,))
964
        n_offline.append(node)
965
        continue
966

    
967
      if node == master_node:
968
        ntype = "master"
969
      elif node_i.master_candidate:
970
        ntype = "master candidate"
971
      elif node_i.drained:
972
        ntype = "drained"
973
        n_drained.append(node)
974
      else:
975
        ntype = "regular"
976
      feedback_fn("* Verifying node %s (%s)" % (node, ntype))
977

    
978
      if all_nvinfo[node].failed or not isinstance(nresult, dict):
979
        feedback_fn("  - ERROR: connection to %s failed" % (node,))
980
        bad = True
981
        continue
982

    
983
      node_drbd = {}
984
      for minor, instance in all_drbd_map[node].items():
985
        instance = instanceinfo[instance]
986
        node_drbd[minor] = (instance.name, instance.admin_up)
987
      result = self._VerifyNode(node_i, file_names, local_checksums,
988
                                nresult, feedback_fn, master_files,
989
                                node_drbd)
990
      bad = bad or result
991

    
992
      lvdata = nresult.get(constants.NV_LVLIST, "Missing LV data")
993
      if isinstance(lvdata, basestring):
994
        feedback_fn("  - ERROR: LVM problem on node %s: %s" %
995
                    (node, utils.SafeEncode(lvdata)))
996
        bad = True
997
        node_volume[node] = {}
998
      elif not isinstance(lvdata, dict):
999
        feedback_fn("  - ERROR: connection to %s failed (lvlist)" % (node,))
1000
        bad = True
1001
        continue
1002
      else:
1003
        node_volume[node] = lvdata
1004

    
1005
      # node_instance
1006
      idata = nresult.get(constants.NV_INSTANCELIST, None)
1007
      if not isinstance(idata, list):
1008
        feedback_fn("  - ERROR: connection to %s failed (instancelist)" %
1009
                    (node,))
1010
        bad = True
1011
        continue
1012

    
1013
      node_instance[node] = idata
1014

    
1015
      # node_info
1016
      nodeinfo = nresult.get(constants.NV_HVINFO, None)
1017
      if not isinstance(nodeinfo, dict):
1018
        feedback_fn("  - ERROR: connection to %s failed (hvinfo)" % (node,))
1019
        bad = True
1020
        continue
1021

    
1022
      try:
1023
        node_info[node] = {
1024
          "mfree": int(nodeinfo['memory_free']),
1025
          "dfree": int(nresult[constants.NV_VGLIST][vg_name]),
1026
          "pinst": [],
1027
          "sinst": [],
1028
          # dictionary holding all instances this node is secondary for,
1029
          # grouped by their primary node. Each key is a cluster node, and each
1030
          # value is a list of instances which have the key as primary and the
1031
          # current node as secondary.  this is handy to calculate N+1 memory
1032
          # availability if you can only failover from a primary to its
1033
          # secondary.
1034
          "sinst-by-pnode": {},
1035
        }
1036
      except ValueError:
1037
        feedback_fn("  - ERROR: invalid value returned from node %s" % (node,))
1038
        bad = True
1039
        continue
1040

    
1041
    node_vol_should = {}
1042

    
1043
    for instance in instancelist:
1044
      feedback_fn("* Verifying instance %s" % instance)
1045
      inst_config = instanceinfo[instance]
1046
      result =  self._VerifyInstance(instance, inst_config, node_volume,
1047
                                     node_instance, feedback_fn, n_offline)
1048
      bad = bad or result
1049
      inst_nodes_offline = []
1050

    
1051
      inst_config.MapLVsByNode(node_vol_should)
1052

    
1053
      instance_cfg[instance] = inst_config
1054

    
1055
      pnode = inst_config.primary_node
1056
      if pnode in node_info:
1057
        node_info[pnode]['pinst'].append(instance)
1058
      elif pnode not in n_offline:
1059
        feedback_fn("  - ERROR: instance %s, connection to primary node"
1060
                    " %s failed" % (instance, pnode))
1061
        bad = True
1062

    
1063
      if pnode in n_offline:
1064
        inst_nodes_offline.append(pnode)
1065

    
1066
      # If the instance is non-redundant we cannot survive losing its primary
1067
      # node, so we are not N+1 compliant. On the other hand we have no disk
1068
      # templates with more than one secondary so that situation is not well
1069
      # supported either.
1070
      # FIXME: does not support file-backed instances
1071
      if len(inst_config.secondary_nodes) == 0:
1072
        i_non_redundant.append(instance)
1073
      elif len(inst_config.secondary_nodes) > 1:
1074
        feedback_fn("  - WARNING: multiple secondaries for instance %s"
1075
                    % instance)
1076

    
1077
      if not cluster.FillBE(inst_config)[constants.BE_AUTO_BALANCE]:
1078
        i_non_a_balanced.append(instance)
1079

    
1080
      for snode in inst_config.secondary_nodes:
1081
        if snode in node_info:
1082
          node_info[snode]['sinst'].append(instance)
1083
          if pnode not in node_info[snode]['sinst-by-pnode']:
1084
            node_info[snode]['sinst-by-pnode'][pnode] = []
1085
          node_info[snode]['sinst-by-pnode'][pnode].append(instance)
1086
        elif snode not in n_offline:
1087
          feedback_fn("  - ERROR: instance %s, connection to secondary node"
1088
                      " %s failed" % (instance, snode))
1089
          bad = True
1090
        if snode in n_offline:
1091
          inst_nodes_offline.append(snode)
1092

    
1093
      if inst_nodes_offline:
1094
        # warn that the instance lives on offline nodes, and set bad=True
1095
        feedback_fn("  - ERROR: instance lives on offline node(s) %s" %
1096
                    ", ".join(inst_nodes_offline))
1097
        bad = True
1098

    
1099
    feedback_fn("* Verifying orphan volumes")
1100
    result = self._VerifyOrphanVolumes(node_vol_should, node_volume,
1101
                                       feedback_fn)
1102
    bad = bad or result
1103

    
1104
    feedback_fn("* Verifying remaining instances")
1105
    result = self._VerifyOrphanInstances(instancelist, node_instance,
1106
                                         feedback_fn)
1107
    bad = bad or result
1108

    
1109
    if constants.VERIFY_NPLUSONE_MEM not in self.skip_set:
1110
      feedback_fn("* Verifying N+1 Memory redundancy")
1111
      result = self._VerifyNPlusOneMemory(node_info, instance_cfg, feedback_fn)
1112
      bad = bad or result
1113

    
1114
    feedback_fn("* Other Notes")
1115
    if i_non_redundant:
1116
      feedback_fn("  - NOTICE: %d non-redundant instance(s) found."
1117
                  % len(i_non_redundant))
1118

    
1119
    if i_non_a_balanced:
1120
      feedback_fn("  - NOTICE: %d non-auto-balanced instance(s) found."
1121
                  % len(i_non_a_balanced))
1122

    
1123
    if n_offline:
1124
      feedback_fn("  - NOTICE: %d offline node(s) found." % len(n_offline))
1125

    
1126
    if n_drained:
1127
      feedback_fn("  - NOTICE: %d drained node(s) found." % len(n_drained))
1128

    
1129
    return not bad
1130

    
1131
  def HooksCallBack(self, phase, hooks_results, feedback_fn, lu_result):
1132
    """Analize the post-hooks' result
1133

1134
    This method analyses the hook result, handles it, and sends some
1135
    nicely-formatted feedback back to the user.
1136

1137
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
1138
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1139
    @param hooks_results: the results of the multi-node hooks rpc call
1140
    @param feedback_fn: function used send feedback back to the caller
1141
    @param lu_result: previous Exec result
1142
    @return: the new Exec result, based on the previous result
1143
        and hook results
1144

1145
    """
1146
    # We only really run POST phase hooks, and are only interested in
1147
    # their results
1148
    if phase == constants.HOOKS_PHASE_POST:
1149
      # Used to change hooks' output to proper indentation
1150
      indent_re = re.compile('^', re.M)
1151
      feedback_fn("* Hooks Results")
1152
      if not hooks_results:
1153
        feedback_fn("  - ERROR: general communication failure")
1154
        lu_result = 1
1155
      else:
1156
        for node_name in hooks_results:
1157
          show_node_header = True
1158
          res = hooks_results[node_name]
1159
          if res.failed or res.data is False or not isinstance(res.data, list):
1160
            if res.offline:
1161
              # no need to warn or set fail return value
1162
              continue
1163
            feedback_fn("    Communication failure in hooks execution")
1164
            lu_result = 1
1165
            continue
1166
          for script, hkr, output in res.data:
1167
            if hkr == constants.HKR_FAIL:
1168
              # The node header is only shown once, if there are
1169
              # failing hooks on that node
1170
              if show_node_header:
1171
                feedback_fn("  Node %s:" % node_name)
1172
                show_node_header = False
1173
              feedback_fn("    ERROR: Script %s failed, output:" % script)
1174
              output = indent_re.sub('      ', output)
1175
              feedback_fn("%s" % output)
1176
              lu_result = 1
1177

    
1178
      return lu_result
1179

    
1180

    
1181
class LUVerifyDisks(NoHooksLU):
1182
  """Verifies the cluster disks status.
1183

1184
  """
1185
  _OP_REQP = []
1186
  REQ_BGL = False
1187

    
1188
  def ExpandNames(self):
1189
    self.needed_locks = {
1190
      locking.LEVEL_NODE: locking.ALL_SET,
1191
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1192
    }
1193
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1194

    
1195
  def CheckPrereq(self):
1196
    """Check prerequisites.
1197

1198
    This has no prerequisites.
1199

1200
    """
1201
    pass
1202

    
1203
  def Exec(self, feedback_fn):
1204
    """Verify integrity of cluster disks.
1205

1206
    """
1207
    result = res_nodes, res_nlvm, res_instances, res_missing = [], {}, [], {}
1208

    
1209
    vg_name = self.cfg.GetVGName()
1210
    nodes = utils.NiceSort(self.cfg.GetNodeList())
1211
    instances = [self.cfg.GetInstanceInfo(name)
1212
                 for name in self.cfg.GetInstanceList()]
1213

    
1214
    nv_dict = {}
1215
    for inst in instances:
1216
      inst_lvs = {}
1217
      if (not inst.admin_up or
1218
          inst.disk_template not in constants.DTS_NET_MIRROR):
1219
        continue
1220
      inst.MapLVsByNode(inst_lvs)
1221
      # transform { iname: {node: [vol,],},} to {(node, vol): iname}
1222
      for node, vol_list in inst_lvs.iteritems():
1223
        for vol in vol_list:
1224
          nv_dict[(node, vol)] = inst
1225

    
1226
    if not nv_dict:
1227
      return result
1228

    
1229
    node_lvs = self.rpc.call_volume_list(nodes, vg_name)
1230

    
1231
    to_act = set()
1232
    for node in nodes:
1233
      # node_volume
1234
      lvs = node_lvs[node]
1235
      if lvs.failed:
1236
        if not lvs.offline:
1237
          self.LogWarning("Connection to node %s failed: %s" %
1238
                          (node, lvs.data))
1239
        continue
1240
      lvs = lvs.data
1241
      if isinstance(lvs, basestring):
1242
        logging.warning("Error enumerating LVs on node %s: %s", node, lvs)
1243
        res_nlvm[node] = lvs
1244
      elif not isinstance(lvs, dict):
1245
        logging.warning("Connection to node %s failed or invalid data"
1246
                        " returned", node)
1247
        res_nodes.append(node)
1248
        continue
1249

    
1250
      for lv_name, (_, lv_inactive, lv_online) in lvs.iteritems():
1251
        inst = nv_dict.pop((node, lv_name), None)
1252
        if (not lv_online and inst is not None
1253
            and inst.name not in res_instances):
1254
          res_instances.append(inst.name)
1255

    
1256
    # any leftover items in nv_dict are missing LVs, let's arrange the
1257
    # data better
1258
    for key, inst in nv_dict.iteritems():
1259
      if inst.name not in res_missing:
1260
        res_missing[inst.name] = []
1261
      res_missing[inst.name].append(key)
1262

    
1263
    return result
1264

    
1265

    
1266
class LURenameCluster(LogicalUnit):
1267
  """Rename the cluster.
1268

1269
  """
1270
  HPATH = "cluster-rename"
1271
  HTYPE = constants.HTYPE_CLUSTER
1272
  _OP_REQP = ["name"]
1273

    
1274
  def BuildHooksEnv(self):
1275
    """Build hooks env.
1276

1277
    """
1278
    env = {
1279
      "OP_TARGET": self.cfg.GetClusterName(),
1280
      "NEW_NAME": self.op.name,
1281
      }
1282
    mn = self.cfg.GetMasterNode()
1283
    return env, [mn], [mn]
1284

    
1285
  def CheckPrereq(self):
1286
    """Verify that the passed name is a valid one.
1287

1288
    """
1289
    hostname = utils.HostInfo(self.op.name)
1290

    
1291
    new_name = hostname.name
1292
    self.ip = new_ip = hostname.ip
1293
    old_name = self.cfg.GetClusterName()
1294
    old_ip = self.cfg.GetMasterIP()
1295
    if new_name == old_name and new_ip == old_ip:
1296
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1297
                                 " cluster has changed")
1298
    if new_ip != old_ip:
1299
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1300
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1301
                                   " reachable on the network. Aborting." %
1302
                                   new_ip)
1303

    
1304
    self.op.name = new_name
1305

    
1306
  def Exec(self, feedback_fn):
1307
    """Rename the cluster.
1308

1309
    """
1310
    clustername = self.op.name
1311
    ip = self.ip
1312

    
1313
    # shutdown the master IP
1314
    master = self.cfg.GetMasterNode()
1315
    result = self.rpc.call_node_stop_master(master, False)
1316
    if result.failed or not result.data:
1317
      raise errors.OpExecError("Could not disable the master role")
1318

    
1319
    try:
1320
      cluster = self.cfg.GetClusterInfo()
1321
      cluster.cluster_name = clustername
1322
      cluster.master_ip = ip
1323
      self.cfg.Update(cluster)
1324

    
1325
      # update the known hosts file
1326
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1327
      node_list = self.cfg.GetNodeList()
1328
      try:
1329
        node_list.remove(master)
1330
      except ValueError:
1331
        pass
1332
      result = self.rpc.call_upload_file(node_list,
1333
                                         constants.SSH_KNOWN_HOSTS_FILE)
1334
      for to_node, to_result in result.iteritems():
1335
        if to_result.failed or not to_result.data:
1336
          logging.error("Copy of file %s to node %s failed",
1337
                        constants.SSH_KNOWN_HOSTS_FILE, to_node)
1338

    
1339
    finally:
1340
      result = self.rpc.call_node_start_master(master, False)
1341
      if result.failed or not result.data:
1342
        self.LogWarning("Could not re-enable the master role on"
1343
                        " the master, please restart manually.")
1344

    
1345

    
1346
def _RecursiveCheckIfLVMBased(disk):
1347
  """Check if the given disk or its children are lvm-based.
1348

1349
  @type disk: L{objects.Disk}
1350
  @param disk: the disk to check
1351
  @rtype: booleean
1352
  @return: boolean indicating whether a LD_LV dev_type was found or not
1353

1354
  """
1355
  if disk.children:
1356
    for chdisk in disk.children:
1357
      if _RecursiveCheckIfLVMBased(chdisk):
1358
        return True
1359
  return disk.dev_type == constants.LD_LV
1360

    
1361

    
1362
class LUSetClusterParams(LogicalUnit):
1363
  """Change the parameters of the cluster.
1364

1365
  """
1366
  HPATH = "cluster-modify"
1367
  HTYPE = constants.HTYPE_CLUSTER
1368
  _OP_REQP = []
1369
  REQ_BGL = False
1370

    
1371
  def CheckParameters(self):
1372
    """Check parameters
1373

1374
    """
1375
    if not hasattr(self.op, "candidate_pool_size"):
1376
      self.op.candidate_pool_size = None
1377
    if self.op.candidate_pool_size is not None:
1378
      try:
1379
        self.op.candidate_pool_size = int(self.op.candidate_pool_size)
1380
      except ValueError, err:
1381
        raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
1382
                                   str(err))
1383
      if self.op.candidate_pool_size < 1:
1384
        raise errors.OpPrereqError("At least one master candidate needed")
1385

    
1386
  def ExpandNames(self):
1387
    # FIXME: in the future maybe other cluster params won't require checking on
1388
    # all nodes to be modified.
1389
    self.needed_locks = {
1390
      locking.LEVEL_NODE: locking.ALL_SET,
1391
    }
1392
    self.share_locks[locking.LEVEL_NODE] = 1
1393

    
1394
  def BuildHooksEnv(self):
1395
    """Build hooks env.
1396

1397
    """
1398
    env = {
1399
      "OP_TARGET": self.cfg.GetClusterName(),
1400
      "NEW_VG_NAME": self.op.vg_name,
1401
      }
1402
    mn = self.cfg.GetMasterNode()
1403
    return env, [mn], [mn]
1404

    
1405
  def CheckPrereq(self):
1406
    """Check prerequisites.
1407

1408
    This checks whether the given params don't conflict and
1409
    if the given volume group is valid.
1410

1411
    """
1412
    if self.op.vg_name is not None and not self.op.vg_name:
1413
      instances = self.cfg.GetAllInstancesInfo().values()
1414
      for inst in instances:
1415
        for disk in inst.disks:
1416
          if _RecursiveCheckIfLVMBased(disk):
1417
            raise errors.OpPrereqError("Cannot disable lvm storage while"
1418
                                       " lvm-based instances exist")
1419

    
1420
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1421

    
1422
    # if vg_name not None, checks given volume group on all nodes
1423
    if self.op.vg_name:
1424
      vglist = self.rpc.call_vg_list(node_list)
1425
      for node in node_list:
1426
        if vglist[node].failed:
1427
          # ignoring down node
1428
          self.LogWarning("Node %s unreachable/error, ignoring" % node)
1429
          continue
1430
        vgstatus = utils.CheckVolumeGroupSize(vglist[node].data,
1431
                                              self.op.vg_name,
1432
                                              constants.MIN_VG_SIZE)
1433
        if vgstatus:
1434
          raise errors.OpPrereqError("Error on node '%s': %s" %
1435
                                     (node, vgstatus))
1436

    
1437
    self.cluster = cluster = self.cfg.GetClusterInfo()
1438
    # validate beparams changes
1439
    if self.op.beparams:
1440
      utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
1441
      self.new_beparams = cluster.FillDict(
1442
        cluster.beparams[constants.BEGR_DEFAULT], self.op.beparams)
1443

    
1444
    # hypervisor list/parameters
1445
    self.new_hvparams = cluster.FillDict(cluster.hvparams, {})
1446
    if self.op.hvparams:
1447
      if not isinstance(self.op.hvparams, dict):
1448
        raise errors.OpPrereqError("Invalid 'hvparams' parameter on input")
1449
      for hv_name, hv_dict in self.op.hvparams.items():
1450
        if hv_name not in self.new_hvparams:
1451
          self.new_hvparams[hv_name] = hv_dict
1452
        else:
1453
          self.new_hvparams[hv_name].update(hv_dict)
1454

    
1455
    if self.op.enabled_hypervisors is not None:
1456
      self.hv_list = self.op.enabled_hypervisors
1457
    else:
1458
      self.hv_list = cluster.enabled_hypervisors
1459

    
1460
    if self.op.hvparams or self.op.enabled_hypervisors is not None:
1461
      # either the enabled list has changed, or the parameters have, validate
1462
      for hv_name, hv_params in self.new_hvparams.items():
1463
        if ((self.op.hvparams and hv_name in self.op.hvparams) or
1464
            (self.op.enabled_hypervisors and
1465
             hv_name in self.op.enabled_hypervisors)):
1466
          # either this is a new hypervisor, or its parameters have changed
1467
          hv_class = hypervisor.GetHypervisor(hv_name)
1468
          utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
1469
          hv_class.CheckParameterSyntax(hv_params)
1470
          _CheckHVParams(self, node_list, hv_name, hv_params)
1471

    
1472
  def Exec(self, feedback_fn):
1473
    """Change the parameters of the cluster.
1474

1475
    """
1476
    if self.op.vg_name is not None:
1477
      if self.op.vg_name != self.cfg.GetVGName():
1478
        self.cfg.SetVGName(self.op.vg_name)
1479
      else:
1480
        feedback_fn("Cluster LVM configuration already in desired"
1481
                    " state, not changing")
1482
    if self.op.hvparams:
1483
      self.cluster.hvparams = self.new_hvparams
1484
    if self.op.enabled_hypervisors is not None:
1485
      self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
1486
    if self.op.beparams:
1487
      self.cluster.beparams[constants.BEGR_DEFAULT] = self.new_beparams
1488
    if self.op.candidate_pool_size is not None:
1489
      self.cluster.candidate_pool_size = self.op.candidate_pool_size
1490

    
1491
    self.cfg.Update(self.cluster)
1492

    
1493
    # we want to update nodes after the cluster so that if any errors
1494
    # happen, we have recorded and saved the cluster info
1495
    if self.op.candidate_pool_size is not None:
1496
      _AdjustCandidatePool(self)
1497

    
1498

    
1499
class LURedistributeConfig(NoHooksLU):
1500
  """Force the redistribution of cluster configuration.
1501

1502
  This is a very simple LU.
1503

1504
  """
1505
  _OP_REQP = []
1506
  REQ_BGL = False
1507

    
1508
  def ExpandNames(self):
1509
    self.needed_locks = {
1510
      locking.LEVEL_NODE: locking.ALL_SET,
1511
    }
1512
    self.share_locks[locking.LEVEL_NODE] = 1
1513

    
1514
  def CheckPrereq(self):
1515
    """Check prerequisites.
1516

1517
    """
1518

    
1519
  def Exec(self, feedback_fn):
1520
    """Redistribute the configuration.
1521

1522
    """
1523
    self.cfg.Update(self.cfg.GetClusterInfo())
1524

    
1525

    
1526
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1527
  """Sleep and poll for an instance's disk to sync.
1528

1529
  """
1530
  if not instance.disks:
1531
    return True
1532

    
1533
  if not oneshot:
1534
    lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
1535

    
1536
  node = instance.primary_node
1537

    
1538
  for dev in instance.disks:
1539
    lu.cfg.SetDiskID(dev, node)
1540

    
1541
  retries = 0
1542
  while True:
1543
    max_time = 0
1544
    done = True
1545
    cumul_degraded = False
1546
    rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
1547
    if rstats.failed or not rstats.data:
1548
      lu.LogWarning("Can't get any data from node %s", node)
1549
      retries += 1
1550
      if retries >= 10:
1551
        raise errors.RemoteError("Can't contact node %s for mirror data,"
1552
                                 " aborting." % node)
1553
      time.sleep(6)
1554
      continue
1555
    rstats = rstats.data
1556
    retries = 0
1557
    for i, mstat in enumerate(rstats):
1558
      if mstat is None:
1559
        lu.LogWarning("Can't compute data for node %s/%s",
1560
                           node, instance.disks[i].iv_name)
1561
        continue
1562
      # we ignore the ldisk parameter
1563
      perc_done, est_time, is_degraded, _ = mstat
1564
      cumul_degraded = cumul_degraded or (is_degraded and perc_done is None)
1565
      if perc_done is not None:
1566
        done = False
1567
        if est_time is not None:
1568
          rem_time = "%d estimated seconds remaining" % est_time
1569
          max_time = est_time
1570
        else:
1571
          rem_time = "no time estimate"
1572
        lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
1573
                        (instance.disks[i].iv_name, perc_done, rem_time))
1574
    if done or oneshot:
1575
      break
1576

    
1577
    time.sleep(min(60, max_time))
1578

    
1579
  if done:
1580
    lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
1581
  return not cumul_degraded
1582

    
1583

    
1584
def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
1585
  """Check that mirrors are not degraded.
1586

1587
  The ldisk parameter, if True, will change the test from the
1588
  is_degraded attribute (which represents overall non-ok status for
1589
  the device(s)) to the ldisk (representing the local storage status).
1590

1591
  """
1592
  lu.cfg.SetDiskID(dev, node)
1593
  if ldisk:
1594
    idx = 6
1595
  else:
1596
    idx = 5
1597

    
1598
  result = True
1599
  if on_primary or dev.AssembleOnSecondary():
1600
    rstats = lu.rpc.call_blockdev_find(node, dev)
1601
    msg = rstats.RemoteFailMsg()
1602
    if msg:
1603
      lu.LogWarning("Can't find disk on node %s: %s", node, msg)
1604
      result = False
1605
    elif not rstats.payload:
1606
      lu.LogWarning("Can't find disk on node %s", node)
1607
      result = False
1608
    else:
1609
      result = result and (not rstats.payload[idx])
1610
  if dev.children:
1611
    for child in dev.children:
1612
      result = result and _CheckDiskConsistency(lu, child, node, on_primary)
1613

    
1614
  return result
1615

    
1616

    
1617
class LUDiagnoseOS(NoHooksLU):
1618
  """Logical unit for OS diagnose/query.
1619

1620
  """
1621
  _OP_REQP = ["output_fields", "names"]
1622
  REQ_BGL = False
1623
  _FIELDS_STATIC = utils.FieldSet()
1624
  _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status")
1625

    
1626
  def ExpandNames(self):
1627
    if self.op.names:
1628
      raise errors.OpPrereqError("Selective OS query not supported")
1629

    
1630
    _CheckOutputFields(static=self._FIELDS_STATIC,
1631
                       dynamic=self._FIELDS_DYNAMIC,
1632
                       selected=self.op.output_fields)
1633

    
1634
    # Lock all nodes, in shared mode
1635
    self.needed_locks = {}
1636
    self.share_locks[locking.LEVEL_NODE] = 1
1637
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1638

    
1639
  def CheckPrereq(self):
1640
    """Check prerequisites.
1641

1642
    """
1643

    
1644
  @staticmethod
1645
  def _DiagnoseByOS(node_list, rlist):
1646
    """Remaps a per-node return list into an a per-os per-node dictionary
1647

1648
    @param node_list: a list with the names of all nodes
1649
    @param rlist: a map with node names as keys and OS objects as values
1650

1651
    @rtype: dict
1652
    @returns: a dictionary with osnames as keys and as value another map, with
1653
        nodes as keys and list of OS objects as values, eg::
1654

1655
          {"debian-etch": {"node1": [<object>,...],
1656
                           "node2": [<object>,]}
1657
          }
1658

1659
    """
1660
    all_os = {}
1661
    for node_name, nr in rlist.iteritems():
1662
      if nr.failed or not nr.data:
1663
        continue
1664
      for os_obj in nr.data:
1665
        if os_obj.name not in all_os:
1666
          # build a list of nodes for this os containing empty lists
1667
          # for each node in node_list
1668
          all_os[os_obj.name] = {}
1669
          for nname in node_list:
1670
            all_os[os_obj.name][nname] = []
1671
        all_os[os_obj.name][node_name].append(os_obj)
1672
    return all_os
1673

    
1674
  def Exec(self, feedback_fn):
1675
    """Compute the list of OSes.
1676

1677
    """
1678
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1679
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()
1680
                   if node in node_list]
1681
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1682
    if node_data == False:
1683
      raise errors.OpExecError("Can't gather the list of OSes")
1684
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1685
    output = []
1686
    for os_name, os_data in pol.iteritems():
1687
      row = []
1688
      for field in self.op.output_fields:
1689
        if field == "name":
1690
          val = os_name
1691
        elif field == "valid":
1692
          val = utils.all([osl and osl[0] for osl in os_data.values()])
1693
        elif field == "node_status":
1694
          val = {}
1695
          for node_name, nos_list in os_data.iteritems():
1696
            val[node_name] = [(v.status, v.path) for v in nos_list]
1697
        else:
1698
          raise errors.ParameterError(field)
1699
        row.append(val)
1700
      output.append(row)
1701

    
1702
    return output
1703

    
1704

    
1705
class LURemoveNode(LogicalUnit):
1706
  """Logical unit for removing a node.
1707

1708
  """
1709
  HPATH = "node-remove"
1710
  HTYPE = constants.HTYPE_NODE
1711
  _OP_REQP = ["node_name"]
1712

    
1713
  def BuildHooksEnv(self):
1714
    """Build hooks env.
1715

1716
    This doesn't run on the target node in the pre phase as a failed
1717
    node would then be impossible to remove.
1718

1719
    """
1720
    env = {
1721
      "OP_TARGET": self.op.node_name,
1722
      "NODE_NAME": self.op.node_name,
1723
      }
1724
    all_nodes = self.cfg.GetNodeList()
1725
    all_nodes.remove(self.op.node_name)
1726
    return env, all_nodes, all_nodes
1727

    
1728
  def CheckPrereq(self):
1729
    """Check prerequisites.
1730

1731
    This checks:
1732
     - the node exists in the configuration
1733
     - it does not have primary or secondary instances
1734
     - it's not the master
1735

1736
    Any errors are signalled by raising errors.OpPrereqError.
1737

1738
    """
1739
    node = self.cfg.GetNodeInfo(self.cfg.ExpandNodeName(self.op.node_name))
1740
    if node is None:
1741
      raise errors.OpPrereqError, ("Node '%s' is unknown." % self.op.node_name)
1742

    
1743
    instance_list = self.cfg.GetInstanceList()
1744

    
1745
    masternode = self.cfg.GetMasterNode()
1746
    if node.name == masternode:
1747
      raise errors.OpPrereqError("Node is the master node,"
1748
                                 " you need to failover first.")
1749

    
1750
    for instance_name in instance_list:
1751
      instance = self.cfg.GetInstanceInfo(instance_name)
1752
      if node.name in instance.all_nodes:
1753
        raise errors.OpPrereqError("Instance %s is still running on the node,"
1754
                                   " please remove first." % instance_name)
1755
    self.op.node_name = node.name
1756
    self.node = node
1757

    
1758
  def Exec(self, feedback_fn):
1759
    """Removes the node from the cluster.
1760

1761
    """
1762
    node = self.node
1763
    logging.info("Stopping the node daemon and removing configs from node %s",
1764
                 node.name)
1765

    
1766
    self.context.RemoveNode(node.name)
1767

    
1768
    self.rpc.call_node_leave_cluster(node.name)
1769

    
1770
    # Promote nodes to master candidate as needed
1771
    _AdjustCandidatePool(self)
1772

    
1773

    
1774
class LUQueryNodes(NoHooksLU):
1775
  """Logical unit for querying nodes.
1776

1777
  """
1778
  _OP_REQP = ["output_fields", "names", "use_locking"]
1779
  REQ_BGL = False
1780
  _FIELDS_DYNAMIC = utils.FieldSet(
1781
    "dtotal", "dfree",
1782
    "mtotal", "mnode", "mfree",
1783
    "bootid",
1784
    "ctotal", "cnodes", "csockets",
1785
    )
1786

    
1787
  _FIELDS_STATIC = utils.FieldSet(
1788
    "name", "pinst_cnt", "sinst_cnt",
1789
    "pinst_list", "sinst_list",
1790
    "pip", "sip", "tags",
1791
    "serial_no",
1792
    "master_candidate",
1793
    "master",
1794
    "offline",
1795
    "drained",
1796
    )
1797

    
1798
  def ExpandNames(self):
1799
    _CheckOutputFields(static=self._FIELDS_STATIC,
1800
                       dynamic=self._FIELDS_DYNAMIC,
1801
                       selected=self.op.output_fields)
1802

    
1803
    self.needed_locks = {}
1804
    self.share_locks[locking.LEVEL_NODE] = 1
1805

    
1806
    if self.op.names:
1807
      self.wanted = _GetWantedNodes(self, self.op.names)
1808
    else:
1809
      self.wanted = locking.ALL_SET
1810

    
1811
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
1812
    self.do_locking = self.do_node_query and self.op.use_locking
1813
    if self.do_locking:
1814
      # if we don't request only static fields, we need to lock the nodes
1815
      self.needed_locks[locking.LEVEL_NODE] = self.wanted
1816

    
1817

    
1818
  def CheckPrereq(self):
1819
    """Check prerequisites.
1820

1821
    """
1822
    # The validation of the node list is done in the _GetWantedNodes,
1823
    # if non empty, and if empty, there's no validation to do
1824
    pass
1825

    
1826
  def Exec(self, feedback_fn):
1827
    """Computes the list of nodes and their attributes.
1828

1829
    """
1830
    all_info = self.cfg.GetAllNodesInfo()
1831
    if self.do_locking:
1832
      nodenames = self.acquired_locks[locking.LEVEL_NODE]
1833
    elif self.wanted != locking.ALL_SET:
1834
      nodenames = self.wanted
1835
      missing = set(nodenames).difference(all_info.keys())
1836
      if missing:
1837
        raise errors.OpExecError(
1838
          "Some nodes were removed before retrieving their data: %s" % missing)
1839
    else:
1840
      nodenames = all_info.keys()
1841

    
1842
    nodenames = utils.NiceSort(nodenames)
1843
    nodelist = [all_info[name] for name in nodenames]
1844

    
1845
    # begin data gathering
1846

    
1847
    if self.do_node_query:
1848
      live_data = {}
1849
      node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
1850
                                          self.cfg.GetHypervisorType())
1851
      for name in nodenames:
1852
        nodeinfo = node_data[name]
1853
        if not nodeinfo.failed and nodeinfo.data:
1854
          nodeinfo = nodeinfo.data
1855
          fn = utils.TryConvert
1856
          live_data[name] = {
1857
            "mtotal": fn(int, nodeinfo.get('memory_total', None)),
1858
            "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
1859
            "mfree": fn(int, nodeinfo.get('memory_free', None)),
1860
            "dtotal": fn(int, nodeinfo.get('vg_size', None)),
1861
            "dfree": fn(int, nodeinfo.get('vg_free', None)),
1862
            "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
1863
            "bootid": nodeinfo.get('bootid', None),
1864
            "cnodes": fn(int, nodeinfo.get('cpu_nodes', None)),
1865
            "csockets": fn(int, nodeinfo.get('cpu_sockets', None)),
1866
            }
1867
        else:
1868
          live_data[name] = {}
1869
    else:
1870
      live_data = dict.fromkeys(nodenames, {})
1871

    
1872
    node_to_primary = dict([(name, set()) for name in nodenames])
1873
    node_to_secondary = dict([(name, set()) for name in nodenames])
1874

    
1875
    inst_fields = frozenset(("pinst_cnt", "pinst_list",
1876
                             "sinst_cnt", "sinst_list"))
1877
    if inst_fields & frozenset(self.op.output_fields):
1878
      instancelist = self.cfg.GetInstanceList()
1879

    
1880
      for instance_name in instancelist:
1881
        inst = self.cfg.GetInstanceInfo(instance_name)
1882
        if inst.primary_node in node_to_primary:
1883
          node_to_primary[inst.primary_node].add(inst.name)
1884
        for secnode in inst.secondary_nodes:
1885
          if secnode in node_to_secondary:
1886
            node_to_secondary[secnode].add(inst.name)
1887

    
1888
    master_node = self.cfg.GetMasterNode()
1889

    
1890
    # end data gathering
1891

    
1892
    output = []
1893
    for node in nodelist:
1894
      node_output = []
1895
      for field in self.op.output_fields:
1896
        if field == "name":
1897
          val = node.name
1898
        elif field == "pinst_list":
1899
          val = list(node_to_primary[node.name])
1900
        elif field == "sinst_list":
1901
          val = list(node_to_secondary[node.name])
1902
        elif field == "pinst_cnt":
1903
          val = len(node_to_primary[node.name])
1904
        elif field == "sinst_cnt":
1905
          val = len(node_to_secondary[node.name])
1906
        elif field == "pip":
1907
          val = node.primary_ip
1908
        elif field == "sip":
1909
          val = node.secondary_ip
1910
        elif field == "tags":
1911
          val = list(node.GetTags())
1912
        elif field == "serial_no":
1913
          val = node.serial_no
1914
        elif field == "master_candidate":
1915
          val = node.master_candidate
1916
        elif field == "master":
1917
          val = node.name == master_node
1918
        elif field == "offline":
1919
          val = node.offline
1920
        elif field == "drained":
1921
          val = node.drained
1922
        elif self._FIELDS_DYNAMIC.Matches(field):
1923
          val = live_data[node.name].get(field, None)
1924
        else:
1925
          raise errors.ParameterError(field)
1926
        node_output.append(val)
1927
      output.append(node_output)
1928

    
1929
    return output
1930

    
1931

    
1932
class LUQueryNodeVolumes(NoHooksLU):
1933
  """Logical unit for getting volumes on node(s).
1934

1935
  """
1936
  _OP_REQP = ["nodes", "output_fields"]
1937
  REQ_BGL = False
1938
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
1939
  _FIELDS_STATIC = utils.FieldSet("node")
1940

    
1941
  def ExpandNames(self):
1942
    _CheckOutputFields(static=self._FIELDS_STATIC,
1943
                       dynamic=self._FIELDS_DYNAMIC,
1944
                       selected=self.op.output_fields)
1945

    
1946
    self.needed_locks = {}
1947
    self.share_locks[locking.LEVEL_NODE] = 1
1948
    if not self.op.nodes:
1949
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1950
    else:
1951
      self.needed_locks[locking.LEVEL_NODE] = \
1952
        _GetWantedNodes(self, self.op.nodes)
1953

    
1954
  def CheckPrereq(self):
1955
    """Check prerequisites.
1956

1957
    This checks that the fields required are valid output fields.
1958

1959
    """
1960
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
1961

    
1962
  def Exec(self, feedback_fn):
1963
    """Computes the list of nodes and their attributes.
1964

1965
    """
1966
    nodenames = self.nodes
1967
    volumes = self.rpc.call_node_volumes(nodenames)
1968

    
1969
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
1970
             in self.cfg.GetInstanceList()]
1971

    
1972
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
1973

    
1974
    output = []
1975
    for node in nodenames:
1976
      if node not in volumes or volumes[node].failed or not volumes[node].data:
1977
        continue
1978

    
1979
      node_vols = volumes[node].data[:]
1980
      node_vols.sort(key=lambda vol: vol['dev'])
1981

    
1982
      for vol in node_vols:
1983
        node_output = []
1984
        for field in self.op.output_fields:
1985
          if field == "node":
1986
            val = node
1987
          elif field == "phys":
1988
            val = vol['dev']
1989
          elif field == "vg":
1990
            val = vol['vg']
1991
          elif field == "name":
1992
            val = vol['name']
1993
          elif field == "size":
1994
            val = int(float(vol['size']))
1995
          elif field == "instance":
1996
            for inst in ilist:
1997
              if node not in lv_by_node[inst]:
1998
                continue
1999
              if vol['name'] in lv_by_node[inst][node]:
2000
                val = inst.name
2001
                break
2002
            else:
2003
              val = '-'
2004
          else:
2005
            raise errors.ParameterError(field)
2006
          node_output.append(str(val))
2007

    
2008
        output.append(node_output)
2009

    
2010
    return output
2011

    
2012

    
2013
class LUAddNode(LogicalUnit):
2014
  """Logical unit for adding node to the cluster.
2015

2016
  """
2017
  HPATH = "node-add"
2018
  HTYPE = constants.HTYPE_NODE
2019
  _OP_REQP = ["node_name"]
2020

    
2021
  def BuildHooksEnv(self):
2022
    """Build hooks env.
2023

2024
    This will run on all nodes before, and on all nodes + the new node after.
2025

2026
    """
2027
    env = {
2028
      "OP_TARGET": self.op.node_name,
2029
      "NODE_NAME": self.op.node_name,
2030
      "NODE_PIP": self.op.primary_ip,
2031
      "NODE_SIP": self.op.secondary_ip,
2032
      }
2033
    nodes_0 = self.cfg.GetNodeList()
2034
    nodes_1 = nodes_0 + [self.op.node_name, ]
2035
    return env, nodes_0, nodes_1
2036

    
2037
  def CheckPrereq(self):
2038
    """Check prerequisites.
2039

2040
    This checks:
2041
     - the new node is not already in the config
2042
     - it is resolvable
2043
     - its parameters (single/dual homed) matches the cluster
2044

2045
    Any errors are signalled by raising errors.OpPrereqError.
2046

2047
    """
2048
    node_name = self.op.node_name
2049
    cfg = self.cfg
2050

    
2051
    dns_data = utils.HostInfo(node_name)
2052

    
2053
    node = dns_data.name
2054
    primary_ip = self.op.primary_ip = dns_data.ip
2055
    secondary_ip = getattr(self.op, "secondary_ip", None)
2056
    if secondary_ip is None:
2057
      secondary_ip = primary_ip
2058
    if not utils.IsValidIP(secondary_ip):
2059
      raise errors.OpPrereqError("Invalid secondary IP given")
2060
    self.op.secondary_ip = secondary_ip
2061

    
2062
    node_list = cfg.GetNodeList()
2063
    if not self.op.readd and node in node_list:
2064
      raise errors.OpPrereqError("Node %s is already in the configuration" %
2065
                                 node)
2066
    elif self.op.readd and node not in node_list:
2067
      raise errors.OpPrereqError("Node %s is not in the configuration" % node)
2068

    
2069
    for existing_node_name in node_list:
2070
      existing_node = cfg.GetNodeInfo(existing_node_name)
2071

    
2072
      if self.op.readd and node == existing_node_name:
2073
        if (existing_node.primary_ip != primary_ip or
2074
            existing_node.secondary_ip != secondary_ip):
2075
          raise errors.OpPrereqError("Readded node doesn't have the same IP"
2076
                                     " address configuration as before")
2077
        continue
2078

    
2079
      if (existing_node.primary_ip == primary_ip or
2080
          existing_node.secondary_ip == primary_ip or
2081
          existing_node.primary_ip == secondary_ip or
2082
          existing_node.secondary_ip == secondary_ip):
2083
        raise errors.OpPrereqError("New node ip address(es) conflict with"
2084
                                   " existing node %s" % existing_node.name)
2085

    
2086
    # check that the type of the node (single versus dual homed) is the
2087
    # same as for the master
2088
    myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
2089
    master_singlehomed = myself.secondary_ip == myself.primary_ip
2090
    newbie_singlehomed = secondary_ip == primary_ip
2091
    if master_singlehomed != newbie_singlehomed:
2092
      if master_singlehomed:
2093
        raise errors.OpPrereqError("The master has no private ip but the"
2094
                                   " new node has one")
2095
      else:
2096
        raise errors.OpPrereqError("The master has a private ip but the"
2097
                                   " new node doesn't have one")
2098

    
2099
    # checks reachablity
2100
    if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
2101
      raise errors.OpPrereqError("Node not reachable by ping")
2102

    
2103
    if not newbie_singlehomed:
2104
      # check reachability from my secondary ip to newbie's secondary ip
2105
      if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
2106
                           source=myself.secondary_ip):
2107
        raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
2108
                                   " based ping to noded port")
2109

    
2110
    cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2111
    mc_now, _ = self.cfg.GetMasterCandidateStats()
2112
    master_candidate = mc_now < cp_size
2113

    
2114
    self.new_node = objects.Node(name=node,
2115
                                 primary_ip=primary_ip,
2116
                                 secondary_ip=secondary_ip,
2117
                                 master_candidate=master_candidate,
2118
                                 offline=False, drained=False)
2119

    
2120
  def Exec(self, feedback_fn):
2121
    """Adds the new node to the cluster.
2122

2123
    """
2124
    new_node = self.new_node
2125
    node = new_node.name
2126

    
2127
    # check connectivity
2128
    result = self.rpc.call_version([node])[node]
2129
    result.Raise()
2130
    if result.data:
2131
      if constants.PROTOCOL_VERSION == result.data:
2132
        logging.info("Communication to node %s fine, sw version %s match",
2133
                     node, result.data)
2134
      else:
2135
        raise errors.OpExecError("Version mismatch master version %s,"
2136
                                 " node version %s" %
2137
                                 (constants.PROTOCOL_VERSION, result.data))
2138
    else:
2139
      raise errors.OpExecError("Cannot get version from the new node")
2140

    
2141
    # setup ssh on node
2142
    logging.info("Copy ssh key to node %s", node)
2143
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
2144
    keyarray = []
2145
    keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
2146
                constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
2147
                priv_key, pub_key]
2148

    
2149
    for i in keyfiles:
2150
      f = open(i, 'r')
2151
      try:
2152
        keyarray.append(f.read())
2153
      finally:
2154
        f.close()
2155

    
2156
    result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
2157
                                    keyarray[2],
2158
                                    keyarray[3], keyarray[4], keyarray[5])
2159

    
2160
    msg = result.RemoteFailMsg()
2161
    if msg:
2162
      raise errors.OpExecError("Cannot transfer ssh keys to the"
2163
                               " new node: %s" % msg)
2164

    
2165
    # Add node to our /etc/hosts, and add key to known_hosts
2166
    utils.AddHostToEtcHosts(new_node.name)
2167

    
2168
    if new_node.secondary_ip != new_node.primary_ip:
2169
      result = self.rpc.call_node_has_ip_address(new_node.name,
2170
                                                 new_node.secondary_ip)
2171
      if result.failed or not result.data:
2172
        raise errors.OpExecError("Node claims it doesn't have the secondary ip"
2173
                                 " you gave (%s). Please fix and re-run this"
2174
                                 " command." % new_node.secondary_ip)
2175

    
2176
    node_verify_list = [self.cfg.GetMasterNode()]
2177
    node_verify_param = {
2178
      'nodelist': [node],
2179
      # TODO: do a node-net-test as well?
2180
    }
2181

    
2182
    result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
2183
                                       self.cfg.GetClusterName())
2184
    for verifier in node_verify_list:
2185
      if result[verifier].failed or not result[verifier].data:
2186
        raise errors.OpExecError("Cannot communicate with %s's node daemon"
2187
                                 " for remote verification" % verifier)
2188
      if result[verifier].data['nodelist']:
2189
        for failed in result[verifier].data['nodelist']:
2190
          feedback_fn("ssh/hostname verification failed %s -> %s" %
2191
                      (verifier, result[verifier].data['nodelist'][failed]))
2192
        raise errors.OpExecError("ssh/hostname verification failed.")
2193

    
2194
    # Distribute updated /etc/hosts and known_hosts to all nodes,
2195
    # including the node just added
2196
    myself = self.cfg.GetNodeInfo(self.cfg.GetMasterNode())
2197
    dist_nodes = self.cfg.GetNodeList()
2198
    if not self.op.readd:
2199
      dist_nodes.append(node)
2200
    if myself.name in dist_nodes:
2201
      dist_nodes.remove(myself.name)
2202

    
2203
    logging.debug("Copying hosts and known_hosts to all nodes")
2204
    for fname in (constants.ETC_HOSTS, constants.SSH_KNOWN_HOSTS_FILE):
2205
      result = self.rpc.call_upload_file(dist_nodes, fname)
2206
      for to_node, to_result in result.iteritems():
2207
        if to_result.failed or not to_result.data:
2208
          logging.error("Copy of file %s to node %s failed", fname, to_node)
2209

    
2210
    to_copy = []
2211
    enabled_hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
2212
    if constants.HTS_COPY_VNC_PASSWORD.intersection(enabled_hypervisors):
2213
      to_copy.append(constants.VNC_PASSWORD_FILE)
2214

    
2215
    for fname in to_copy:
2216
      result = self.rpc.call_upload_file([node], fname)
2217
      if result[node].failed or not result[node]:
2218
        logging.error("Could not copy file %s to node %s", fname, node)
2219

    
2220
    if self.op.readd:
2221
      self.context.ReaddNode(new_node)
2222
    else:
2223
      self.context.AddNode(new_node)
2224

    
2225

    
2226
class LUSetNodeParams(LogicalUnit):
2227
  """Modifies the parameters of a node.
2228

2229
  """
2230
  HPATH = "node-modify"
2231
  HTYPE = constants.HTYPE_NODE
2232
  _OP_REQP = ["node_name"]
2233
  REQ_BGL = False
2234

    
2235
  def CheckArguments(self):
2236
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2237
    if node_name is None:
2238
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2239
    self.op.node_name = node_name
2240
    _CheckBooleanOpField(self.op, 'master_candidate')
2241
    _CheckBooleanOpField(self.op, 'offline')
2242
    _CheckBooleanOpField(self.op, 'drained')
2243
    all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
2244
    if all_mods.count(None) == 3:
2245
      raise errors.OpPrereqError("Please pass at least one modification")
2246
    if all_mods.count(True) > 1:
2247
      raise errors.OpPrereqError("Can't set the node into more than one"
2248
                                 " state at the same time")
2249

    
2250
  def ExpandNames(self):
2251
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2252

    
2253
  def BuildHooksEnv(self):
2254
    """Build hooks env.
2255

2256
    This runs on the master node.
2257

2258
    """
2259
    env = {
2260
      "OP_TARGET": self.op.node_name,
2261
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2262
      "OFFLINE": str(self.op.offline),
2263
      "DRAINED": str(self.op.drained),
2264
      }
2265
    nl = [self.cfg.GetMasterNode(),
2266
          self.op.node_name]
2267
    return env, nl, nl
2268

    
2269
  def CheckPrereq(self):
2270
    """Check prerequisites.
2271

2272
    This only checks the instance list against the existing names.
2273

2274
    """
2275
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2276

    
2277
    if ((self.op.master_candidate == False or self.op.offline == True or
2278
         self.op.drained == True) and node.master_candidate):
2279
      # we will demote the node from master_candidate
2280
      if self.op.node_name == self.cfg.GetMasterNode():
2281
        raise errors.OpPrereqError("The master node has to be a"
2282
                                   " master candidate, online and not drained")
2283
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2284
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2285
      if num_candidates <= cp_size:
2286
        msg = ("Not enough master candidates (desired"
2287
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2288
        if self.op.force:
2289
          self.LogWarning(msg)
2290
        else:
2291
          raise errors.OpPrereqError(msg)
2292

    
2293
    if (self.op.master_candidate == True and
2294
        ((node.offline and not self.op.offline == False) or
2295
         (node.drained and not self.op.drained == False))):
2296
      raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
2297
                                 " to master_candidate")
2298

    
2299
    return
2300

    
2301
  def Exec(self, feedback_fn):
2302
    """Modifies a node.
2303

2304
    """
2305
    node = self.node
2306

    
2307
    result = []
2308
    changed_mc = False
2309

    
2310
    if self.op.offline is not None:
2311
      node.offline = self.op.offline
2312
      result.append(("offline", str(self.op.offline)))
2313
      if self.op.offline == True:
2314
        if node.master_candidate:
2315
          node.master_candidate = False
2316
          changed_mc = True
2317
          result.append(("master_candidate", "auto-demotion due to offline"))
2318
        if node.drained:
2319
          node.drained = False
2320
          result.append(("drained", "clear drained status due to offline"))
2321

    
2322
    if self.op.master_candidate is not None:
2323
      node.master_candidate = self.op.master_candidate
2324
      changed_mc = True
2325
      result.append(("master_candidate", str(self.op.master_candidate)))
2326
      if self.op.master_candidate == False:
2327
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2328
        msg = rrc.RemoteFailMsg()
2329
        if msg:
2330
          self.LogWarning("Node failed to demote itself: %s" % msg)
2331

    
2332
    if self.op.drained is not None:
2333
      node.drained = self.op.drained
2334
      result.append(("drained", str(self.op.drained)))
2335
      if self.op.drained == True:
2336
        if node.master_candidate:
2337
          node.master_candidate = False
2338
          changed_mc = True
2339
          result.append(("master_candidate", "auto-demotion due to drain"))
2340
        if node.offline:
2341
          node.offline = False
2342
          result.append(("offline", "clear offline status due to drain"))
2343

    
2344
    # this will trigger configuration file update, if needed
2345
    self.cfg.Update(node)
2346
    # this will trigger job queue propagation or cleanup
2347
    if changed_mc:
2348
      self.context.ReaddNode(node)
2349

    
2350
    return result
2351

    
2352

    
2353
class LUQueryClusterInfo(NoHooksLU):
2354
  """Query cluster configuration.
2355

2356
  """
2357
  _OP_REQP = []
2358
  REQ_BGL = False
2359

    
2360
  def ExpandNames(self):
2361
    self.needed_locks = {}
2362

    
2363
  def CheckPrereq(self):
2364
    """No prerequsites needed for this LU.
2365

2366
    """
2367
    pass
2368

    
2369
  def Exec(self, feedback_fn):
2370
    """Return cluster config.
2371

2372
    """
2373
    cluster = self.cfg.GetClusterInfo()
2374
    result = {
2375
      "software_version": constants.RELEASE_VERSION,
2376
      "protocol_version": constants.PROTOCOL_VERSION,
2377
      "config_version": constants.CONFIG_VERSION,
2378
      "os_api_version": constants.OS_API_VERSION,
2379
      "export_version": constants.EXPORT_VERSION,
2380
      "architecture": (platform.architecture()[0], platform.machine()),
2381
      "name": cluster.cluster_name,
2382
      "master": cluster.master_node,
2383
      "default_hypervisor": cluster.default_hypervisor,
2384
      "enabled_hypervisors": cluster.enabled_hypervisors,
2385
      "hvparams": dict([(hypervisor, cluster.hvparams[hypervisor])
2386
                        for hypervisor in cluster.enabled_hypervisors]),
2387
      "beparams": cluster.beparams,
2388
      "candidate_pool_size": cluster.candidate_pool_size,
2389
      }
2390

    
2391
    return result
2392

    
2393

    
2394
class LUQueryConfigValues(NoHooksLU):
2395
  """Return configuration values.
2396

2397
  """
2398
  _OP_REQP = []
2399
  REQ_BGL = False
2400
  _FIELDS_DYNAMIC = utils.FieldSet()
2401
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2402

    
2403
  def ExpandNames(self):
2404
    self.needed_locks = {}
2405

    
2406
    _CheckOutputFields(static=self._FIELDS_STATIC,
2407
                       dynamic=self._FIELDS_DYNAMIC,
2408
                       selected=self.op.output_fields)
2409

    
2410
  def CheckPrereq(self):
2411
    """No prerequisites.
2412

2413
    """
2414
    pass
2415

    
2416
  def Exec(self, feedback_fn):
2417
    """Dump a representation of the cluster config to the standard output.
2418

2419
    """
2420
    values = []
2421
    for field in self.op.output_fields:
2422
      if field == "cluster_name":
2423
        entry = self.cfg.GetClusterName()
2424
      elif field == "master_node":
2425
        entry = self.cfg.GetMasterNode()
2426
      elif field == "drain_flag":
2427
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2428
      else:
2429
        raise errors.ParameterError(field)
2430
      values.append(entry)
2431
    return values
2432

    
2433

    
2434
class LUActivateInstanceDisks(NoHooksLU):
2435
  """Bring up an instance's disks.
2436

2437
  """
2438
  _OP_REQP = ["instance_name"]
2439
  REQ_BGL = False
2440

    
2441
  def ExpandNames(self):
2442
    self._ExpandAndLockInstance()
2443
    self.needed_locks[locking.LEVEL_NODE] = []
2444
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2445

    
2446
  def DeclareLocks(self, level):
2447
    if level == locking.LEVEL_NODE:
2448
      self._LockInstancesNodes()
2449

    
2450
  def CheckPrereq(self):
2451
    """Check prerequisites.
2452

2453
    This checks that the instance is in the cluster.
2454

2455
    """
2456
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2457
    assert self.instance is not None, \
2458
      "Cannot retrieve locked instance %s" % self.op.instance_name
2459
    _CheckNodeOnline(self, self.instance.primary_node)
2460

    
2461
  def Exec(self, feedback_fn):
2462
    """Activate the disks.
2463

2464
    """
2465
    disks_ok, disks_info = _AssembleInstanceDisks(self, self.instance)
2466
    if not disks_ok:
2467
      raise errors.OpExecError("Cannot activate block devices")
2468

    
2469
    return disks_info
2470

    
2471

    
2472
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False):
2473
  """Prepare the block devices for an instance.
2474

2475
  This sets up the block devices on all nodes.
2476

2477
  @type lu: L{LogicalUnit}
2478
  @param lu: the logical unit on whose behalf we execute
2479
  @type instance: L{objects.Instance}
2480
  @param instance: the instance for whose disks we assemble
2481
  @type ignore_secondaries: boolean
2482
  @param ignore_secondaries: if true, errors on secondary nodes
2483
      won't result in an error return from the function
2484
  @return: False if the operation failed, otherwise a list of
2485
      (host, instance_visible_name, node_visible_name)
2486
      with the mapping from node devices to instance devices
2487

2488
  """
2489
  device_info = []
2490
  disks_ok = True
2491
  iname = instance.name
2492
  # With the two passes mechanism we try to reduce the window of
2493
  # opportunity for the race condition of switching DRBD to primary
2494
  # before handshaking occured, but we do not eliminate it
2495

    
2496
  # The proper fix would be to wait (with some limits) until the
2497
  # connection has been made and drbd transitions from WFConnection
2498
  # into any other network-connected state (Connected, SyncTarget,
2499
  # SyncSource, etc.)
2500

    
2501
  # 1st pass, assemble on all nodes in secondary mode
2502
  for inst_disk in instance.disks:
2503
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2504
      lu.cfg.SetDiskID(node_disk, node)
2505
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
2506
      msg = result.RemoteFailMsg()
2507
      if msg:
2508
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2509
                           " (is_primary=False, pass=1): %s",
2510
                           inst_disk.iv_name, node, msg)
2511
        if not ignore_secondaries:
2512
          disks_ok = False
2513

    
2514
  # FIXME: race condition on drbd migration to primary
2515

    
2516
  # 2nd pass, do only the primary node
2517
  for inst_disk in instance.disks:
2518
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2519
      if node != instance.primary_node:
2520
        continue
2521
      lu.cfg.SetDiskID(node_disk, node)
2522
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
2523
      msg = result.RemoteFailMsg()
2524
      if msg:
2525
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2526
                           " (is_primary=True, pass=2): %s",
2527
                           inst_disk.iv_name, node, msg)
2528
        disks_ok = False
2529
    device_info.append((instance.primary_node, inst_disk.iv_name,
2530
                        result.payload))
2531

    
2532
  # leave the disks configured for the primary node
2533
  # this is a workaround that would be fixed better by
2534
  # improving the logical/physical id handling
2535
  for disk in instance.disks:
2536
    lu.cfg.SetDiskID(disk, instance.primary_node)
2537

    
2538
  return disks_ok, device_info
2539

    
2540

    
2541
def _StartInstanceDisks(lu, instance, force):
2542
  """Start the disks of an instance.
2543

2544
  """
2545
  disks_ok, dummy = _AssembleInstanceDisks(lu, instance,
2546
                                           ignore_secondaries=force)
2547
  if not disks_ok:
2548
    _ShutdownInstanceDisks(lu, instance)
2549
    if force is not None and not force:
2550
      lu.proc.LogWarning("", hint="If the message above refers to a"
2551
                         " secondary node,"
2552
                         " you can retry the operation using '--force'.")
2553
    raise errors.OpExecError("Disk consistency error")
2554

    
2555

    
2556
class LUDeactivateInstanceDisks(NoHooksLU):
2557
  """Shutdown an instance's disks.
2558

2559
  """
2560
  _OP_REQP = ["instance_name"]
2561
  REQ_BGL = False
2562

    
2563
  def ExpandNames(self):
2564
    self._ExpandAndLockInstance()
2565
    self.needed_locks[locking.LEVEL_NODE] = []
2566
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2567

    
2568
  def DeclareLocks(self, level):
2569
    if level == locking.LEVEL_NODE:
2570
      self._LockInstancesNodes()
2571

    
2572
  def CheckPrereq(self):
2573
    """Check prerequisites.
2574

2575
    This checks that the instance is in the cluster.
2576

2577
    """
2578
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2579
    assert self.instance is not None, \
2580
      "Cannot retrieve locked instance %s" % self.op.instance_name
2581

    
2582
  def Exec(self, feedback_fn):
2583
    """Deactivate the disks
2584

2585
    """
2586
    instance = self.instance
2587
    _SafeShutdownInstanceDisks(self, instance)
2588

    
2589

    
2590
def _SafeShutdownInstanceDisks(lu, instance):
2591
  """Shutdown block devices of an instance.
2592

2593
  This function checks if an instance is running, before calling
2594
  _ShutdownInstanceDisks.
2595

2596
  """
2597
  ins_l = lu.rpc.call_instance_list([instance.primary_node],
2598
                                      [instance.hypervisor])
2599
  ins_l = ins_l[instance.primary_node]
2600
  if ins_l.failed or not isinstance(ins_l.data, list):
2601
    raise errors.OpExecError("Can't contact node '%s'" %
2602
                             instance.primary_node)
2603

    
2604
  if instance.name in ins_l.data:
2605
    raise errors.OpExecError("Instance is running, can't shutdown"
2606
                             " block devices.")
2607

    
2608
  _ShutdownInstanceDisks(lu, instance)
2609

    
2610

    
2611
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2612
  """Shutdown block devices of an instance.
2613

2614
  This does the shutdown on all nodes of the instance.
2615

2616
  If the ignore_primary is false, errors on the primary node are
2617
  ignored.
2618

2619
  """
2620
  all_result = True
2621
  for disk in instance.disks:
2622
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2623
      lu.cfg.SetDiskID(top_disk, node)
2624
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2625
      msg = result.RemoteFailMsg()
2626
      if msg:
2627
        lu.LogWarning("Could not shutdown block device %s on node %s: %s",
2628
                      disk.iv_name, node, msg)
2629
        if not ignore_primary or node != instance.primary_node:
2630
          all_result = False
2631
  return all_result
2632

    
2633

    
2634
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2635
  """Checks if a node has enough free memory.
2636

2637
  This function check if a given node has the needed amount of free
2638
  memory. In case the node has less memory or we cannot get the
2639
  information from the node, this function raise an OpPrereqError
2640
  exception.
2641

2642
  @type lu: C{LogicalUnit}
2643
  @param lu: a logical unit from which we get configuration data
2644
  @type node: C{str}
2645
  @param node: the node to check
2646
  @type reason: C{str}
2647
  @param reason: string to use in the error message
2648
  @type requested: C{int}
2649
  @param requested: the amount of memory in MiB to check for
2650
  @type hypervisor_name: C{str}
2651
  @param hypervisor_name: the hypervisor to ask for memory stats
2652
  @raise errors.OpPrereqError: if the node doesn't have enough memory, or
2653
      we cannot check the node
2654

2655
  """
2656
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2657
  nodeinfo[node].Raise()
2658
  free_mem = nodeinfo[node].data.get('memory_free')
2659
  if not isinstance(free_mem, int):
2660
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2661
                             " was '%s'" % (node, free_mem))
2662
  if requested > free_mem:
2663
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2664
                             " needed %s MiB, available %s MiB" %
2665
                             (node, reason, requested, free_mem))
2666

    
2667

    
2668
class LUStartupInstance(LogicalUnit):
2669
  """Starts an instance.
2670

2671
  """
2672
  HPATH = "instance-start"
2673
  HTYPE = constants.HTYPE_INSTANCE
2674
  _OP_REQP = ["instance_name", "force"]
2675
  REQ_BGL = False
2676

    
2677
  def ExpandNames(self):
2678
    self._ExpandAndLockInstance()
2679

    
2680
  def BuildHooksEnv(self):
2681
    """Build hooks env.
2682

2683
    This runs on master, primary and secondary nodes of the instance.
2684

2685
    """
2686
    env = {
2687
      "FORCE": self.op.force,
2688
      }
2689
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2690
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2691
    return env, nl, nl
2692

    
2693
  def CheckPrereq(self):
2694
    """Check prerequisites.
2695

2696
    This checks that the instance is in the cluster.
2697

2698
    """
2699
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2700
    assert self.instance is not None, \
2701
      "Cannot retrieve locked instance %s" % self.op.instance_name
2702

    
2703
    _CheckNodeOnline(self, instance.primary_node)
2704

    
2705
    bep = self.cfg.GetClusterInfo().FillBE(instance)
2706
    # check bridges existance
2707
    _CheckInstanceBridgesExist(self, instance)
2708

    
2709
    _CheckNodeFreeMemory(self, instance.primary_node,
2710
                         "starting instance %s" % instance.name,
2711
                         bep[constants.BE_MEMORY], instance.hypervisor)
2712

    
2713
  def Exec(self, feedback_fn):
2714
    """Start the instance.
2715

2716
    """
2717
    instance = self.instance
2718
    force = self.op.force
2719
    extra_args = getattr(self.op, "extra_args", "")
2720

    
2721
    self.cfg.MarkInstanceUp(instance.name)
2722

    
2723
    node_current = instance.primary_node
2724

    
2725
    _StartInstanceDisks(self, instance, force)
2726

    
2727
    result = self.rpc.call_instance_start(node_current, instance, extra_args)
2728
    msg = result.RemoteFailMsg()
2729
    if msg:
2730
      _ShutdownInstanceDisks(self, instance)
2731
      raise errors.OpExecError("Could not start instance: %s" % msg)
2732

    
2733

    
2734
class LURebootInstance(LogicalUnit):
2735
  """Reboot an instance.
2736

2737
  """
2738
  HPATH = "instance-reboot"
2739
  HTYPE = constants.HTYPE_INSTANCE
2740
  _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
2741
  REQ_BGL = False
2742

    
2743
  def ExpandNames(self):
2744
    if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
2745
                                   constants.INSTANCE_REBOOT_HARD,
2746
                                   constants.INSTANCE_REBOOT_FULL]:
2747
      raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
2748
                                  (constants.INSTANCE_REBOOT_SOFT,
2749
                                   constants.INSTANCE_REBOOT_HARD,
2750
                                   constants.INSTANCE_REBOOT_FULL))
2751
    self._ExpandAndLockInstance()
2752

    
2753
  def BuildHooksEnv(self):
2754
    """Build hooks env.
2755

2756
    This runs on master, primary and secondary nodes of the instance.
2757

2758
    """
2759
    env = {
2760
      "IGNORE_SECONDARIES": self.op.ignore_secondaries,
2761
      }
2762
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2763
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2764
    return env, nl, nl
2765

    
2766
  def CheckPrereq(self):
2767
    """Check prerequisites.
2768

2769
    This checks that the instance is in the cluster.
2770

2771
    """
2772
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2773
    assert self.instance is not None, \
2774
      "Cannot retrieve locked instance %s" % self.op.instance_name
2775

    
2776
    _CheckNodeOnline(self, instance.primary_node)
2777

    
2778
    # check bridges existance
2779
    _CheckInstanceBridgesExist(self, instance)
2780

    
2781
  def Exec(self, feedback_fn):
2782
    """Reboot the instance.
2783

2784
    """
2785
    instance = self.instance
2786
    ignore_secondaries = self.op.ignore_secondaries
2787
    reboot_type = self.op.reboot_type
2788
    extra_args = getattr(self.op, "extra_args", "")
2789

    
2790
    node_current = instance.primary_node
2791

    
2792
    if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
2793
                       constants.INSTANCE_REBOOT_HARD]:
2794
      result = self.rpc.call_instance_reboot(node_current, instance,
2795
                                             reboot_type, extra_args)
2796
      msg = result.RemoteFailMsg()
2797
      if msg:
2798
        raise errors.OpExecError("Could not reboot instance: %s" % msg)
2799
    else:
2800
      result = self.rpc.call_instance_shutdown(node_current, instance)
2801
      msg = result.RemoteFailMsg()
2802
      if msg:
2803
        raise errors.OpExecError("Could not shutdown instance for"
2804
                                 " full reboot: %s" % msg)
2805
      _ShutdownInstanceDisks(self, instance)
2806
      _StartInstanceDisks(self, instance, ignore_secondaries)
2807
      result = self.rpc.call_instance_start(node_current, instance, extra_args)
2808
      msg = result.RemoteFailMsg()
2809
      if msg:
2810
        _ShutdownInstanceDisks(self, instance)
2811
        raise errors.OpExecError("Could not start instance for"
2812
                                 " full reboot: %s" % msg)
2813

    
2814
    self.cfg.MarkInstanceUp(instance.name)
2815

    
2816

    
2817
class LUShutdownInstance(LogicalUnit):
2818
  """Shutdown an instance.
2819

2820
  """
2821
  HPATH = "instance-stop"
2822
  HTYPE = constants.HTYPE_INSTANCE
2823
  _OP_REQP = ["instance_name"]
2824
  REQ_BGL = False
2825

    
2826
  def ExpandNames(self):
2827
    self._ExpandAndLockInstance()
2828

    
2829
  def BuildHooksEnv(self):
2830
    """Build hooks env.
2831

2832
    This runs on master, primary and secondary nodes of the instance.
2833

2834
    """
2835
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2836
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2837
    return env, nl, nl
2838

    
2839
  def CheckPrereq(self):
2840
    """Check prerequisites.
2841

2842
    This checks that the instance is in the cluster.
2843

2844
    """
2845
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2846
    assert self.instance is not None, \
2847
      "Cannot retrieve locked instance %s" % self.op.instance_name
2848
    _CheckNodeOnline(self, self.instance.primary_node)
2849

    
2850
  def Exec(self, feedback_fn):
2851
    """Shutdown the instance.
2852

2853
    """
2854
    instance = self.instance
2855
    node_current = instance.primary_node
2856
    self.cfg.MarkInstanceDown(instance.name)
2857
    result = self.rpc.call_instance_shutdown(node_current, instance)
2858
    msg = result.RemoteFailMsg()
2859
    if msg:
2860
      self.proc.LogWarning("Could not shutdown instance: %s" % msg)
2861

    
2862
    _ShutdownInstanceDisks(self, instance)
2863

    
2864

    
2865
class LUReinstallInstance(LogicalUnit):
2866
  """Reinstall an instance.
2867

2868
  """
2869
  HPATH = "instance-reinstall"
2870
  HTYPE = constants.HTYPE_INSTANCE
2871
  _OP_REQP = ["instance_name"]
2872
  REQ_BGL = False
2873

    
2874
  def ExpandNames(self):
2875
    self._ExpandAndLockInstance()
2876

    
2877
  def BuildHooksEnv(self):
2878
    """Build hooks env.
2879

2880
    This runs on master, primary and secondary nodes of the instance.
2881

2882
    """
2883
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2884
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2885
    return env, nl, nl
2886

    
2887
  def CheckPrereq(self):
2888
    """Check prerequisites.
2889

2890
    This checks that the instance is in the cluster and is not running.
2891

2892
    """
2893
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2894
    assert instance is not None, \
2895
      "Cannot retrieve locked instance %s" % self.op.instance_name
2896
    _CheckNodeOnline(self, instance.primary_node)
2897

    
2898
    if instance.disk_template == constants.DT_DISKLESS:
2899
      raise errors.OpPrereqError("Instance '%s' has no disks" %
2900
                                 self.op.instance_name)
2901
    if instance.admin_up:
2902
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2903
                                 self.op.instance_name)
2904
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2905
                                              instance.name,
2906
                                              instance.hypervisor)
2907
    if remote_info.failed or remote_info.data:
2908
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2909
                                 (self.op.instance_name,
2910
                                  instance.primary_node))
2911

    
2912
    self.op.os_type = getattr(self.op, "os_type", None)
2913
    if self.op.os_type is not None:
2914
      # OS verification
2915
      pnode = self.cfg.GetNodeInfo(
2916
        self.cfg.ExpandNodeName(instance.primary_node))
2917
      if pnode is None:
2918
        raise errors.OpPrereqError("Primary node '%s' is unknown" %
2919
                                   self.op.pnode)
2920
      result = self.rpc.call_os_get(pnode.name, self.op.os_type)
2921
      result.Raise()
2922
      if not isinstance(result.data, objects.OS):
2923
        raise errors.OpPrereqError("OS '%s' not in supported OS list for"
2924
                                   " primary node"  % self.op.os_type)
2925

    
2926
    self.instance = instance
2927

    
2928
  def Exec(self, feedback_fn):
2929
    """Reinstall the instance.
2930

2931
    """
2932
    inst = self.instance
2933

    
2934
    if self.op.os_type is not None:
2935
      feedback_fn("Changing OS to '%s'..." % self.op.os_type)
2936
      inst.os = self.op.os_type
2937
      self.cfg.Update(inst)
2938

    
2939
    _StartInstanceDisks(self, inst, None)
2940
    try:
2941
      feedback_fn("Running the instance OS create scripts...")
2942
      result = self.rpc.call_instance_os_add(inst.primary_node, inst)
2943
      msg = result.RemoteFailMsg()
2944
      if msg:
2945
        raise errors.OpExecError("Could not install OS for instance %s"
2946
                                 " on node %s: %s" %
2947
                                 (inst.name, inst.primary_node, msg))
2948
    finally:
2949
      _ShutdownInstanceDisks(self, inst)
2950

    
2951

    
2952
class LURenameInstance(LogicalUnit):
2953
  """Rename an instance.
2954

2955
  """
2956
  HPATH = "instance-rename"
2957
  HTYPE = constants.HTYPE_INSTANCE
2958
  _OP_REQP = ["instance_name", "new_name"]
2959

    
2960
  def BuildHooksEnv(self):
2961
    """Build hooks env.
2962

2963
    This runs on master, primary and secondary nodes of the instance.
2964

2965
    """
2966
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2967
    env["INSTANCE_NEW_NAME"] = self.op.new_name
2968
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2969
    return env, nl, nl
2970

    
2971
  def CheckPrereq(self):
2972
    """Check prerequisites.
2973

2974
    This checks that the instance is in the cluster and is not running.
2975

2976
    """
2977
    instance = self.cfg.GetInstanceInfo(
2978
      self.cfg.ExpandInstanceName(self.op.instance_name))
2979
    if instance is None:
2980
      raise errors.OpPrereqError("Instance '%s' not known" %
2981
                                 self.op.instance_name)
2982
    _CheckNodeOnline(self, instance.primary_node)
2983

    
2984
    if instance.admin_up:
2985
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2986
                                 self.op.instance_name)
2987
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2988
                                              instance.name,
2989
                                              instance.hypervisor)
2990
    remote_info.Raise()
2991
    if remote_info.data:
2992
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2993
                                 (self.op.instance_name,
2994
                                  instance.primary_node))
2995
    self.instance = instance
2996

    
2997
    # new name verification
2998
    name_info = utils.HostInfo(self.op.new_name)
2999

    
3000
    self.op.new_name = new_name = name_info.name
3001
    instance_list = self.cfg.GetInstanceList()
3002
    if new_name in instance_list:
3003
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
3004
                                 new_name)
3005

    
3006
    if not getattr(self.op, "ignore_ip", False):
3007
      if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
3008
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
3009
                                   (name_info.ip, new_name))
3010

    
3011

    
3012
  def Exec(self, feedback_fn):
3013
    """Reinstall the instance.
3014

3015
    """
3016
    inst = self.instance
3017
    old_name = inst.name
3018

    
3019
    if inst.disk_template == constants.DT_FILE:
3020
      old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3021

    
3022
    self.cfg.RenameInstance(inst.name, self.op.new_name)
3023
    # Change the instance lock. This is definitely safe while we hold the BGL
3024
    self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
3025
    self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
3026

    
3027
    # re-read the instance from the configuration after rename
3028
    inst = self.cfg.GetInstanceInfo(self.op.new_name)
3029

    
3030
    if inst.disk_template == constants.DT_FILE:
3031
      new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3032
      result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
3033
                                                     old_file_storage_dir,
3034
                                                     new_file_storage_dir)
3035
      result.Raise()
3036
      if not result.data:
3037
        raise errors.OpExecError("Could not connect to node '%s' to rename"
3038
                                 " directory '%s' to '%s' (but the instance"
3039
                                 " has been renamed in Ganeti)" % (
3040
                                 inst.primary_node, old_file_storage_dir,
3041
                                 new_file_storage_dir))
3042

    
3043
      if not result.data[0]:
3044
        raise errors.OpExecError("Could not rename directory '%s' to '%s'"
3045
                                 " (but the instance has been renamed in"
3046
                                 " Ganeti)" % (old_file_storage_dir,
3047
                                               new_file_storage_dir))
3048

    
3049
    _StartInstanceDisks(self, inst, None)
3050
    try:
3051
      result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
3052
                                                 old_name)
3053
      msg = result.RemoteFailMsg()
3054
      if msg:
3055
        msg = ("Could not run OS rename script for instance %s on node %s"
3056
               " (but the instance has been renamed in Ganeti): %s" %
3057
               (inst.name, inst.primary_node, msg))
3058
        self.proc.LogWarning(msg)
3059
    finally:
3060
      _ShutdownInstanceDisks(self, inst)
3061

    
3062

    
3063
class LURemoveInstance(LogicalUnit):
3064
  """Remove an instance.
3065

3066
  """
3067
  HPATH = "instance-remove"
3068
  HTYPE = constants.HTYPE_INSTANCE
3069
  _OP_REQP = ["instance_name", "ignore_failures"]
3070
  REQ_BGL = False
3071

    
3072
  def ExpandNames(self):
3073
    self._ExpandAndLockInstance()
3074
    self.needed_locks[locking.LEVEL_NODE] = []
3075
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3076

    
3077
  def DeclareLocks(self, level):
3078
    if level == locking.LEVEL_NODE:
3079
      self._LockInstancesNodes()
3080

    
3081
  def BuildHooksEnv(self):
3082
    """Build hooks env.
3083

3084
    This runs on master, primary and secondary nodes of the instance.
3085

3086
    """
3087
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3088
    nl = [self.cfg.GetMasterNode()]
3089
    return env, nl, nl
3090

    
3091
  def CheckPrereq(self):
3092
    """Check prerequisites.
3093

3094
    This checks that the instance is in the cluster.
3095

3096
    """
3097
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3098
    assert self.instance is not None, \
3099
      "Cannot retrieve locked instance %s" % self.op.instance_name
3100

    
3101
  def Exec(self, feedback_fn):
3102
    """Remove the instance.
3103

3104
    """
3105
    instance = self.instance
3106
    logging.info("Shutting down instance %s on node %s",
3107
                 instance.name, instance.primary_node)
3108

    
3109
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
3110
    msg = result.RemoteFailMsg()
3111
    if msg:
3112
      if self.op.ignore_failures:
3113
        feedback_fn("Warning: can't shutdown instance: %s" % msg)
3114
      else:
3115
        raise errors.OpExecError("Could not shutdown instance %s on"
3116
                                 " node %s: %s" %
3117
                                 (instance.name, instance.primary_node, msg))
3118

    
3119
    logging.info("Removing block devices for instance %s", instance.name)
3120

    
3121
    if not _RemoveDisks(self, instance):
3122
      if self.op.ignore_failures:
3123
        feedback_fn("Warning: can't remove instance's disks")
3124
      else:
3125
        raise errors.OpExecError("Can't remove instance's disks")
3126

    
3127
    logging.info("Removing instance %s out of cluster config", instance.name)
3128

    
3129
    self.cfg.RemoveInstance(instance.name)
3130
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3131

    
3132

    
3133
class LUQueryInstances(NoHooksLU):
3134
  """Logical unit for querying instances.
3135

3136
  """
3137
  _OP_REQP = ["output_fields", "names", "use_locking"]
3138
  REQ_BGL = False
3139
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3140
                                    "admin_state",
3141
                                    "disk_template", "ip", "mac", "bridge",
3142
                                    "sda_size", "sdb_size", "vcpus", "tags",
3143
                                    "network_port", "beparams",
3144
                                    r"(disk)\.(size)/([0-9]+)",
3145
                                    r"(disk)\.(sizes)", "disk_usage",
3146
                                    r"(nic)\.(mac|ip|bridge)/([0-9]+)",
3147
                                    r"(nic)\.(macs|ips|bridges)",
3148
                                    r"(disk|nic)\.(count)",
3149
                                    "serial_no", "hypervisor", "hvparams",] +
3150
                                  ["hv/%s" % name
3151
                                   for name in constants.HVS_PARAMETERS] +
3152
                                  ["be/%s" % name
3153
                                   for name in constants.BES_PARAMETERS])
3154
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3155

    
3156

    
3157
  def ExpandNames(self):
3158
    _CheckOutputFields(static=self._FIELDS_STATIC,
3159
                       dynamic=self._FIELDS_DYNAMIC,
3160
                       selected=self.op.output_fields)
3161

    
3162
    self.needed_locks = {}
3163
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3164
    self.share_locks[locking.LEVEL_NODE] = 1
3165

    
3166
    if self.op.names:
3167
      self.wanted = _GetWantedInstances(self, self.op.names)
3168
    else:
3169
      self.wanted = locking.ALL_SET
3170

    
3171
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3172
    self.do_locking = self.do_node_query and self.op.use_locking
3173
    if self.do_locking:
3174
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3175
      self.needed_locks[locking.LEVEL_NODE] = []
3176
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3177

    
3178
  def DeclareLocks(self, level):
3179
    if level == locking.LEVEL_NODE and self.do_locking:
3180
      self._LockInstancesNodes()
3181

    
3182
  def CheckPrereq(self):
3183
    """Check prerequisites.
3184

3185
    """
3186
    pass
3187

    
3188
  def Exec(self, feedback_fn):
3189
    """Computes the list of nodes and their attributes.
3190

3191
    """
3192
    all_info = self.cfg.GetAllInstancesInfo()
3193
    if self.wanted == locking.ALL_SET:
3194
      # caller didn't specify instance names, so ordering is not important
3195
      if self.do_locking:
3196
        instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
3197
      else:
3198
        instance_names = all_info.keys()
3199
      instance_names = utils.NiceSort(instance_names)
3200
    else:
3201
      # caller did specify names, so we must keep the ordering
3202
      if self.do_locking:
3203
        tgt_set = self.acquired_locks[locking.LEVEL_INSTANCE]
3204
      else:
3205
        tgt_set = all_info.keys()
3206
      missing = set(self.wanted).difference(tgt_set)
3207
      if missing:
3208
        raise errors.OpExecError("Some instances were removed before"
3209
                                 " retrieving their data: %s" % missing)
3210
      instance_names = self.wanted
3211

    
3212
    instance_list = [all_info[iname] for iname in instance_names]
3213

    
3214
    # begin data gathering
3215

    
3216
    nodes = frozenset([inst.primary_node for inst in instance_list])
3217
    hv_list = list(set([inst.hypervisor for inst in instance_list]))
3218

    
3219
    bad_nodes = []
3220
    off_nodes = []
3221
    if self.do_node_query:
3222
      live_data = {}
3223
      node_data = self.rpc.call_all_instances_info(nodes, hv_list)
3224
      for name in nodes:
3225
        result = node_data[name]
3226
        if result.offline:
3227
          # offline nodes will be in both lists
3228
          off_nodes.append(name)
3229
        if result.failed:
3230
          bad_nodes.append(name)
3231
        else:
3232
          if result.data:
3233
            live_data.update(result.data)
3234
            # else no instance is alive
3235
    else:
3236
      live_data = dict([(name, {}) for name in instance_names])
3237

    
3238
    # end data gathering
3239

    
3240
    HVPREFIX = "hv/"
3241
    BEPREFIX = "be/"
3242
    output = []
3243
    for instance in instance_list:
3244
      iout = []
3245
      i_hv = self.cfg.GetClusterInfo().FillHV(instance)
3246
      i_be = self.cfg.GetClusterInfo().FillBE(instance)
3247
      for field in self.op.output_fields:
3248
        st_match = self._FIELDS_STATIC.Matches(field)
3249
        if field == "name":
3250
          val = instance.name
3251
        elif field == "os":
3252
          val = instance.os
3253
        elif field == "pnode":
3254
          val = instance.primary_node
3255
        elif field == "snodes":
3256
          val = list(instance.secondary_nodes)
3257
        elif field == "admin_state":
3258
          val = instance.admin_up
3259
        elif field == "oper_state":
3260
          if instance.primary_node in bad_nodes:
3261
            val = None
3262
          else:
3263
            val = bool(live_data.get(instance.name))
3264
        elif field == "status":
3265
          if instance.primary_node in off_nodes:
3266
            val = "ERROR_nodeoffline"
3267
          elif instance.primary_node in bad_nodes:
3268
            val = "ERROR_nodedown"
3269
          else:
3270
            running = bool(live_data.get(instance.name))
3271
            if running:
3272
              if instance.admin_up:
3273
                val = "running"
3274
              else:
3275
                val = "ERROR_up"
3276
            else:
3277
              if instance.admin_up:
3278
                val = "ERROR_down"
3279
              else:
3280
                val = "ADMIN_down"
3281
        elif field == "oper_ram":
3282
          if instance.primary_node in bad_nodes:
3283
            val = None
3284
          elif instance.name in live_data:
3285
            val = live_data[instance.name].get("memory", "?")
3286
          else:
3287
            val = "-"
3288
        elif field == "disk_template":
3289
          val = instance.disk_template
3290
        elif field == "ip":
3291
          val = instance.nics[0].ip
3292
        elif field == "bridge":
3293
          val = instance.nics[0].bridge
3294
        elif field == "mac":
3295
          val = instance.nics[0].mac
3296
        elif field == "sda_size" or field == "sdb_size":
3297
          idx = ord(field[2]) - ord('a')
3298
          try:
3299
            val = instance.FindDisk(idx).size
3300
          except errors.OpPrereqError:
3301
            val = None
3302
        elif field == "disk_usage": # total disk usage per node
3303
          disk_sizes = [{'size': disk.size} for disk in instance.disks]
3304
          val = _ComputeDiskSize(instance.disk_template, disk_sizes)
3305
        elif field == "tags":
3306
          val = list(instance.GetTags())
3307
        elif field == "serial_no":
3308
          val = instance.serial_no
3309
        elif field == "network_port":
3310
          val = instance.network_port
3311
        elif field == "hypervisor":
3312
          val = instance.hypervisor
3313
        elif field == "hvparams":
3314
          val = i_hv
3315
        elif (field.startswith(HVPREFIX) and
3316
              field[len(HVPREFIX):] in constants.HVS_PARAMETERS):
3317
          val = i_hv.get(field[len(HVPREFIX):], None)
3318
        elif field == "beparams":
3319
          val = i_be
3320
        elif (field.startswith(BEPREFIX) and
3321
              field[len(BEPREFIX):] in constants.BES_PARAMETERS):
3322
          val = i_be.get(field[len(BEPREFIX):], None)
3323
        elif st_match and st_match.groups():
3324
          # matches a variable list
3325
          st_groups = st_match.groups()
3326
          if st_groups and st_groups[0] == "disk":
3327
            if st_groups[1] == "count":
3328
              val = len(instance.disks)
3329
            elif st_groups[1] == "sizes":
3330
              val = [disk.size for disk in instance.disks]
3331
            elif st_groups[1] == "size":
3332
              try:
3333
                val = instance.FindDisk(st_groups[2]).size
3334
              except errors.OpPrereqError:
3335
                val = None
3336
            else:
3337
              assert False, "Unhandled disk parameter"
3338
          elif st_groups[0] == "nic":
3339
            if st_groups[1] == "count":
3340
              val = len(instance.nics)
3341
            elif st_groups[1] == "macs":
3342
              val = [nic.mac for nic in instance.nics]
3343
            elif st_groups[1] == "ips":
3344
              val = [nic.ip for nic in instance.nics]
3345
            elif st_groups[1] == "bridges":
3346
              val = [nic.bridge for nic in instance.nics]
3347
            else:
3348
              # index-based item
3349
              nic_idx = int(st_groups[2])
3350
              if nic_idx >= len(instance.nics):
3351
                val = None
3352
              else:
3353
                if st_groups[1] == "mac":
3354
                  val = instance.nics[nic_idx].mac
3355
                elif st_groups[1] == "ip":
3356
                  val = instance.nics[nic_idx].ip
3357
                elif st_groups[1] == "bridge":
3358
                  val = instance.nics[nic_idx].bridge
3359
                else:
3360
                  assert False, "Unhandled NIC parameter"
3361
          else:
3362
            assert False, "Unhandled variable parameter"
3363
        else:
3364
          raise errors.ParameterError(field)
3365
        iout.append(val)
3366
      output.append(iout)
3367

    
3368
    return output
3369

    
3370

    
3371
class LUFailoverInstance(LogicalUnit):
3372
  """Failover an instance.
3373

3374
  """
3375
  HPATH = "instance-failover"
3376
  HTYPE = constants.HTYPE_INSTANCE
3377
  _OP_REQP = ["instance_name", "ignore_consistency"]
3378
  REQ_BGL = False
3379

    
3380
  def ExpandNames(self):
3381
    self._ExpandAndLockInstance()
3382
    self.needed_locks[locking.LEVEL_NODE] = []
3383
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3384

    
3385
  def DeclareLocks(self, level):
3386
    if level == locking.LEVEL_NODE:
3387
      self._LockInstancesNodes()
3388

    
3389
  def BuildHooksEnv(self):
3390
    """Build hooks env.
3391

3392
    This runs on master, primary and secondary nodes of the instance.
3393

3394
    """
3395
    env = {
3396
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3397
      }
3398
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3399
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3400
    return env, nl, nl
3401

    
3402
  def CheckPrereq(self):
3403
    """Check prerequisites.
3404

3405
    This checks that the instance is in the cluster.
3406

3407
    """
3408
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3409
    assert self.instance is not None, \
3410
      "Cannot retrieve locked instance %s" % self.op.instance_name
3411

    
3412
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3413
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3414
      raise errors.OpPrereqError("Instance's disk layout is not"
3415
                                 " network mirrored, cannot failover.")
3416

    
3417
    secondary_nodes = instance.secondary_nodes
3418
    if not secondary_nodes:
3419
      raise errors.ProgrammerError("no secondary node but using "
3420
                                   "a mirrored disk template")
3421

    
3422
    target_node = secondary_nodes[0]
3423
    _CheckNodeOnline(self, target_node)
3424
    _CheckNodeNotDrained(self, target_node)
3425
    # check memory requirements on the secondary node
3426
    _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3427
                         instance.name, bep[constants.BE_MEMORY],
3428
                         instance.hypervisor)
3429

    
3430
    # check bridge existance
3431
    brlist = [nic.bridge for nic in instance.nics]
3432
    result = self.rpc.call_bridges_exist(target_node, brlist)
3433
    result.Raise()
3434
    if not result.data:
3435
      raise errors.OpPrereqError("One or more target bridges %s does not"
3436
                                 " exist on destination node '%s'" %
3437
                                 (brlist, target_node))
3438

    
3439
  def Exec(self, feedback_fn):
3440
    """Failover an instance.
3441

3442
    The failover is done by shutting it down on its present node and
3443
    starting it on the secondary.
3444

3445
    """
3446
    instance = self.instance
3447

    
3448
    source_node = instance.primary_node
3449
    target_node = instance.secondary_nodes[0]
3450

    
3451
    feedback_fn("* checking disk consistency between source and target")
3452
    for dev in instance.disks:
3453
      # for drbd, these are drbd over lvm
3454
      if not _CheckDiskConsistency(self, dev, target_node, False):
3455
        if instance.admin_up and not self.op.ignore_consistency:
3456
          raise errors.OpExecError("Disk %s is degraded on target node,"
3457
                                   " aborting failover." % dev.iv_name)
3458

    
3459
    feedback_fn("* shutting down instance on source node")
3460
    logging.info("Shutting down instance %s on node %s",
3461
                 instance.name, source_node)
3462

    
3463
    result = self.rpc.call_instance_shutdown(source_node, instance)
3464
    msg = result.RemoteFailMsg()
3465
    if msg:
3466
      if self.op.ignore_consistency:
3467
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3468
                             " Proceeding anyway. Please make sure node"
3469
                             " %s is down. Error details: %s",
3470
                             instance.name, source_node, source_node, msg)
3471
      else:
3472
        raise errors.OpExecError("Could not shutdown instance %s on"
3473
                                 " node %s: %s" %
3474
                                 (instance.name, source_node, msg))
3475

    
3476
    feedback_fn("* deactivating the instance's disks on source node")
3477
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3478
      raise errors.OpExecError("Can't shut down the instance's disks.")
3479

    
3480
    instance.primary_node = target_node
3481
    # distribute new instance config to the other nodes
3482
    self.cfg.Update(instance)
3483

    
3484
    # Only start the instance if it's marked as up
3485
    if instance.admin_up:
3486
      feedback_fn("* activating the instance's disks on target node")
3487
      logging.info("Starting instance %s on node %s",
3488
                   instance.name, target_node)
3489

    
3490
      disks_ok, dummy = _AssembleInstanceDisks(self, instance,
3491
                                               ignore_secondaries=True)
3492
      if not disks_ok:
3493
        _ShutdownInstanceDisks(self, instance)
3494
        raise errors.OpExecError("Can't activate the instance's disks")
3495

    
3496
      feedback_fn("* starting the instance on the target node")
3497
      result = self.rpc.call_instance_start(target_node, instance, None)
3498
      msg = result.RemoteFailMsg()
3499
      if msg:
3500
        _ShutdownInstanceDisks(self, instance)
3501
        raise errors.OpExecError("Could not start instance %s on node %s: %s" %
3502
                                 (instance.name, target_node, msg))
3503

    
3504

    
3505
class LUMigrateInstance(LogicalUnit):
3506
  """Migrate an instance.
3507

3508
  This is migration without shutting down, compared to the failover,
3509
  which is done with shutdown.
3510

3511
  """
3512
  HPATH = "instance-migrate"
3513
  HTYPE = constants.HTYPE_INSTANCE
3514
  _OP_REQP = ["instance_name", "live", "cleanup"]
3515

    
3516
  REQ_BGL = False
3517

    
3518
  def ExpandNames(self):
3519
    self._ExpandAndLockInstance()
3520
    self.needed_locks[locking.LEVEL_NODE] = []
3521
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3522

    
3523
  def DeclareLocks(self, level):
3524
    if level == locking.LEVEL_NODE:
3525
      self._LockInstancesNodes()
3526

    
3527
  def BuildHooksEnv(self):
3528
    """Build hooks env.
3529

3530
    This runs on master, primary and secondary nodes of the instance.
3531

3532
    """
3533
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3534
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3535
    return env, nl, nl
3536

    
3537
  def CheckPrereq(self):
3538
    """Check prerequisites.
3539

3540
    This checks that the instance is in the cluster.
3541

3542
    """
3543
    instance = self.cfg.GetInstanceInfo(
3544
      self.cfg.ExpandInstanceName(self.op.instance_name))
3545
    if instance is None:
3546
      raise errors.OpPrereqError("Instance '%s' not known" %
3547
                                 self.op.instance_name)
3548

    
3549
    if instance.disk_template != constants.DT_DRBD8:
3550
      raise errors.OpPrereqError("Instance's disk layout is not"
3551
                                 " drbd8, cannot migrate.")
3552

    
3553
    secondary_nodes = instance.secondary_nodes
3554
    if not secondary_nodes:
3555
      raise errors.ConfigurationError("No secondary node but using"
3556
                                      " drbd8 disk template")
3557

    
3558
    i_be = self.cfg.GetClusterInfo().FillBE(instance)
3559

    
3560
    target_node = secondary_nodes[0]
3561
    # check memory requirements on the secondary node
3562
    _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
3563
                         instance.name, i_be[constants.BE_MEMORY],
3564
                         instance.hypervisor)
3565

    
3566
    # check bridge existance
3567
    brlist = [nic.bridge for nic in instance.nics]
3568
    result = self.rpc.call_bridges_exist(target_node, brlist)
3569
    if result.failed or not result.data:
3570
      raise errors.OpPrereqError("One or more target bridges %s does not"
3571
                                 " exist on destination node '%s'" %
3572
                                 (brlist, target_node))
3573

    
3574
    if not self.op.cleanup:
3575
      _CheckNodeNotDrained(self, target_node)
3576
      result = self.rpc.call_instance_migratable(instance.primary_node,
3577
                                                 instance)
3578
      msg = result.RemoteFailMsg()
3579
      if msg:
3580
        raise errors.OpPrereqError("Can't migrate: %s - please use failover" %
3581
                                   msg)
3582

    
3583
    self.instance = instance
3584

    
3585
  def _WaitUntilSync(self):
3586
    """Poll with custom rpc for disk sync.
3587

3588
    This uses our own step-based rpc call.
3589

3590
    """
3591
    self.feedback_fn("* wait until resync is done")
3592
    all_done = False
3593
    while not all_done:
3594
      all_done = True
3595
      result = self.rpc.call_drbd_wait_sync(self.all_nodes,
3596
                                            self.nodes_ip,
3597
                                            self.instance.disks)
3598
      min_percent = 100
3599
      for node, nres in result.items():
3600
        msg = nres.RemoteFailMsg()
3601
        if msg:
3602
          raise errors.OpExecError("Cannot resync disks on node %s: %s" %
3603
                                   (node, msg))
3604
        node_done, node_percent = nres.payload
3605
        all_done = all_done and node_done
3606
        if node_percent is not None:
3607
          min_percent = min(min_percent, node_percent)
3608
      if not all_done:
3609
        if min_percent < 100:
3610
          self.feedback_fn("   - progress: %.1f%%" % min_percent)
3611
        time.sleep(2)
3612

    
3613
  def _EnsureSecondary(self, node):
3614
    """Demote a node to secondary.
3615

3616
    """
3617
    self.feedback_fn("* switching node %s to secondary mode" % node)
3618

    
3619
    for dev in self.instance.disks:
3620
      self.cfg.SetDiskID(dev, node)
3621

    
3622
    result = self.rpc.call_blockdev_close(node, self.instance.name,
3623
                                          self.instance.disks)
3624
    msg = result.RemoteFailMsg()
3625
    if msg:
3626
      raise errors.OpExecError("Cannot change disk to secondary on node %s,"
3627
                               " error %s" % (node, msg))
3628

    
3629
  def _GoStandalone(self):
3630
    """Disconnect from the network.
3631

3632
    """
3633
    self.feedback_fn("* changing into standalone mode")
3634
    result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
3635
                                               self.instance.disks)
3636
    for node, nres in result.items():
3637
      msg = nres.RemoteFailMsg()
3638
      if msg:
3639
        raise errors.OpExecError("Cannot disconnect disks node %s,"
3640
                                 " error %s" % (node, msg))
3641

    
3642
  def _GoReconnect(self, multimaster):
3643
    """Reconnect to the network.
3644

3645
    """
3646
    if multimaster:
3647
      msg = "dual-master"
3648
    else:
3649
      msg = "single-master"
3650
    self.feedback_fn("* changing disks into %s mode" % msg)
3651
    result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
3652
                                           self.instance.disks,
3653
                                           self.instance.name, multimaster)
3654
    for node, nres in result.items():
3655
      msg = nres.RemoteFailMsg()
3656
      if msg:
3657
        raise errors.OpExecError("Cannot change disks config on node %s,"
3658
                                 " error: %s" % (node, msg))
3659

    
3660
  def _ExecCleanup(self):
3661
    """Try to cleanup after a failed migration.
3662

3663
    The cleanup is done by:
3664
      - check that the instance is running only on one node
3665
        (and update the config if needed)
3666
      - change disks on its secondary node to secondary
3667
      - wait until disks are fully synchronized
3668
      - disconnect from the network
3669
      - change disks into single-master mode
3670
      - wait again until disks are fully synchronized
3671

3672
    """
3673
    instance = self.instance
3674
    target_node = self.target_node
3675
    source_node = self.source_node
3676

    
3677
    # check running on only one node
3678
    self.feedback_fn("* checking where the instance actually runs"
3679
                     " (if this hangs, the hypervisor might be in"
3680
                     " a bad state)")
3681
    ins_l = self.rpc.call_instance_list(self.all_nodes, [instance.hypervisor])
3682
    for node, result in ins_l.items():
3683
      result.Raise()
3684
      if not isinstance(result.data, list):
3685
        raise errors.OpExecError("Can't contact node '%s'" % node)
3686

    
3687
    runningon_source = instance.name in ins_l[source_node].data
3688
    runningon_target = instance.name in ins_l[target_node].data
3689

    
3690
    if runningon_source and runningon_target:
3691
      raise errors.OpExecError("Instance seems to be running on two nodes,"
3692
                               " or the hypervisor is confused. You will have"
3693
                               " to ensure manually that it runs only on one"
3694
                               " and restart this operation.")
3695

    
3696
    if not (runningon_source or runningon_target):
3697
      raise errors.OpExecError("Instance does not seem to be running at all."
3698
                               " In this case, it's safer to repair by"
3699
                               " running 'gnt-instance stop' to ensure disk"
3700
                               " shutdown, and then restarting it.")
3701

    
3702
    if runningon_target:
3703
      # the migration has actually succeeded, we need to update the config
3704
      self.feedback_fn("* instance running on secondary node (%s),"
3705
                       " updating config" % target_node)
3706
      instance.primary_node = target_node
3707
      self.cfg.Update(instance)
3708
      demoted_node = source_node
3709
    else:
3710
      self.feedback_fn("* instance confirmed to be running on its"
3711
                       " primary node (%s)" % source_node)
3712
      demoted_node = target_node
3713

    
3714
    self._EnsureSecondary(demoted_node)
3715
    try:
3716
      self._WaitUntilSync()
3717
    except errors.OpExecError:
3718
      # we ignore here errors, since if the device is standalone, it
3719
      # won't be able to sync
3720
      pass
3721
    self._GoStandalone()
3722
    self._GoReconnect(False)
3723
    self._WaitUntilSync()
3724

    
3725
    self.feedback_fn("* done")
3726

    
3727
  def _RevertDiskStatus(self):
3728
    """Try to revert the disk status after a failed migration.
3729

3730
    """
3731
    target_node = self.target_node
3732
    try:
3733
      self._EnsureSecondary(target_node)
3734
      self._GoStandalone()
3735
      self._GoReconnect(False)
3736
      self._WaitUntilSync()
3737
    except errors.OpExecError, err:
3738
      self.LogWarning("Migration failed and I can't reconnect the"
3739
                      " drives: error '%s'\n"
3740
                      "Please look and recover the instance status" %
3741
                      str(err))
3742

    
3743
  def _AbortMigration(self):
3744
    """Call the hypervisor code to abort a started migration.
3745

3746
    """
3747
    instance = self.instance
3748
    target_node = self.target_node
3749
    migration_info = self.migration_info
3750

    
3751
    abort_result = self.rpc.call_finalize_migration(target_node,
3752
                                                    instance,
3753
                                                    migration_info,
3754
                                                    False)
3755
    abort_msg = abort_result.RemoteFailMsg()
3756
    if abort_msg:
3757
      logging.error("Aborting migration failed on target node %s: %s" %
3758
                    (target_node, abort_msg))
3759
      # Don't raise an exception here, as we stil have to try to revert the
3760
      # disk status, even if this step failed.
3761

    
3762
  def _ExecMigration(self):
3763
    """Migrate an instance.
3764

3765
    The migrate is done by:
3766
      - change the disks into dual-master mode
3767
      - wait until disks are fully synchronized again
3768
      - migrate the instance
3769
      - change disks on the new secondary node (the old primary) to secondary
3770
      - wait until disks are fully synchronized
3771
      - change disks into single-master mode
3772

3773
    """
3774
    instance = self.instance
3775
    target_node = self.target_node
3776
    source_node = self.source_node
3777

    
3778
    self.feedback_fn("* checking disk consistency between source and target")
3779
    for dev in instance.disks:
3780
      if not _CheckDiskConsistency(self, dev, target_node, False):
3781
        raise errors.OpExecError("Disk %s is degraded or not fully"
3782
                                 " synchronized on target node,"
3783
                                 " aborting migrate." % dev.iv_name)
3784

    
3785
    # First get the migration information from the remote node
3786
    result = self.rpc.call_migration_info(source_node, instance)
3787
    msg = result.RemoteFailMsg()
3788
    if msg:
3789
      log_err = ("Failed fetching source migration information from %s: %s" %
3790
                 (source_node, msg))
3791
      logging.error(log_err)
3792
      raise errors.OpExecError(log_err)
3793

    
3794
    self.migration_info = migration_info = result.payload
3795

    
3796
    # Then switch the disks to master/master mode
3797
    self._EnsureSecondary(target_node)
3798
    self._GoStandalone()
3799
    self._GoReconnect(True)
3800
    self._WaitUntilSync()
3801

    
3802
    self.feedback_fn("* preparing %s to accept the instance" % target_node)
3803
    result = self.rpc.call_accept_instance(target_node,
3804
                                           instance,
3805
                                           migration_info,
3806
                                           self.nodes_ip[target_node])
3807

    
3808
    msg = result.RemoteFailMsg()
3809
    if msg:
3810
      logging.error("Instance pre-migration failed, trying to revert"
3811
                    " disk status: %s", msg)
3812
      self._AbortMigration()
3813
      self._RevertDiskStatus()
3814
      raise errors.OpExecError("Could not pre-migrate instance %s: %s" %
3815
                               (instance.name, msg))
3816

    
3817
    self.feedback_fn("* migrating instance to %s" % target_node)
3818
    time.sleep(10)
3819
    result = self.rpc.call_instance_migrate(source_node, instance,
3820
                                            self.nodes_ip[target_node],
3821
                                            self.op.live)
3822
    msg = result.RemoteFailMsg()
3823
    if msg:
3824
      logging.error("Instance migration failed, trying to revert"
3825
                    " disk status: %s", msg)
3826
      self._AbortMigration()
3827
      self._RevertDiskStatus()
3828
      raise errors.OpExecError("Could not migrate instance %s: %s" %
3829
                               (instance.name, msg))
3830
    time.sleep(10)
3831

    
3832
    instance.primary_node = target_node
3833
    # distribute new instance config to the other nodes
3834
    self.cfg.Update(instance)
3835

    
3836
    result = self.rpc.call_finalize_migration(target_node,
3837
                                              instance,
3838
                                              migration_info,
3839
                                              True)
3840
    msg = result.RemoteFailMsg()
3841
    if msg:
3842
      logging.error("Instance migration succeeded, but finalization failed:"
3843
                    " %s" % msg)
3844
      raise errors.OpExecError("Could not finalize instance migration: %s" %
3845
                               msg)
3846

    
3847
    self._EnsureSecondary(source_node)
3848
    self._WaitUntilSync()
3849
    self._GoStandalone()
3850
    self._GoReconnect(False)
3851
    self._WaitUntilSync()
3852

    
3853
    self.feedback_fn("* done")
3854

    
3855
  def Exec(self, feedback_fn):
3856
    """Perform the migration.
3857

3858
    """
3859
    self.feedback_fn = feedback_fn
3860

    
3861
    self.source_node = self.instance.primary_node
3862
    self.target_node = self.instance.secondary_nodes[0]
3863
    self.all_nodes = [self.source_node, self.target_node]
3864
    self.nodes_ip = {
3865
      self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
3866
      self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
3867
      }
3868
    if self.op.cleanup:
3869
      return self._ExecCleanup()
3870
    else:
3871
      return self._ExecMigration()
3872

    
3873

    
3874
def _CreateBlockDev(lu, node, instance, device, force_create,
3875
                    info, force_open):
3876
  """Create a tree of block devices on a given node.
3877

3878
  If this device type has to be created on secondaries, create it and
3879
  all its children.
3880

3881
  If not, just recurse to children keeping the same 'force' value.
3882

3883
  @param lu: the lu on whose behalf we execute
3884
  @param node: the node on which to create the device
3885
  @type instance: L{objects.Instance}
3886
  @param instance: the instance which owns the device
3887
  @type device: L{objects.Disk}
3888
  @param device: the device to create
3889
  @type force_create: boolean
3890
  @param force_create: whether to force creation of this device; this
3891
      will be change to True whenever we find a device which has
3892
      CreateOnSecondary() attribute
3893
  @param info: the extra 'metadata' we should attach to the device
3894
      (this will be represented as a LVM tag)
3895
  @type force_open: boolean
3896
  @param force_open: this parameter will be passes to the
3897
      L{backend.BlockdevCreate} function where it specifies
3898
      whether we run on primary or not, and it affects both
3899
      the child assembly and the device own Open() execution
3900

3901
  """
3902
  if device.CreateOnSecondary():
3903
    force_create = True
3904

    
3905
  if device.children:
3906
    for child in device.children:
3907
      _CreateBlockDev(lu, node, instance, child, force_create,
3908
                      info, force_open)
3909

    
3910
  if not force_create:
3911
    return
3912

    
3913
  _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
3914

    
3915

    
3916
def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
3917
  """Create a single block device on a given node.
3918

3919
  This will not recurse over children of the device, so they must be
3920
  created in advance.
3921

3922
  @param lu: the lu on whose behalf we execute
3923
  @param node: the node on which to create the device
3924
  @type instance: L{objects.Instance}
3925
  @param instance: the instance which owns the device
3926
  @type device: L{objects.Disk}
3927
  @param device: the device to create
3928
  @param info: the extra 'metadata' we should attach to the device
3929
      (this will be represented as a LVM tag)
3930
  @type force_open: boolean
3931
  @param force_open: this parameter will be passes to the
3932
      L{backend.BlockdevCreate} function where it specifies
3933
      whether we run on primary or not, and it affects both
3934
      the child assembly and the device own Open() execution
3935

3936
  """
3937
  lu.cfg.SetDiskID(device, node)
3938
  result = lu.rpc.call_blockdev_create(node, device, device.size,
3939
                                       instance.name, force_open, info)
3940
  msg = result.RemoteFailMsg()
3941
  if msg:
3942
    raise errors.OpExecError("Can't create block device %s on"
3943
                             " node %s for instance %s: %s" %
3944
                             (device, node, instance.name, msg))
3945
  if device.physical_id is None:
3946
    device.physical_id = result.payload
3947

    
3948

    
3949
def _GenerateUniqueNames(lu, exts):
3950
  """Generate a suitable LV name.
3951

3952
  This will generate a logical volume name for the given instance.
3953

3954
  """
3955
  results = []
3956
  for val in exts:
3957
    new_id = lu.cfg.GenerateUniqueID()
3958
    results.append("%s%s" % (new_id, val))
3959
  return results
3960

    
3961

    
3962
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
3963
                         p_minor, s_minor):
3964
  """Generate a drbd8 device complete with its children.
3965

3966
  """
3967
  port = lu.cfg.AllocatePort()
3968
  vgname = lu.cfg.GetVGName()
3969
  shared_secret = lu.cfg.GenerateDRBDSecret()
3970
  dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
3971
                          logical_id=(vgname, names[0]))
3972
  dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
3973
                          logical_id=(vgname, names[1]))
3974
  drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
3975
                          logical_id=(primary, secondary, port,
3976
                                      p_minor, s_minor,
3977
                                      shared_secret),
3978
                          children=[dev_data, dev_meta],
3979
                          iv_name=iv_name)
3980
  return drbd_dev
3981

    
3982

    
3983
def _GenerateDiskTemplate(lu, template_name,
3984
                          instance_name, primary_node,
3985
                          secondary_nodes, disk_info,
3986
                          file_storage_dir, file_driver,
3987
                          base_index):
3988
  """Generate the entire disk layout for a given template type.
3989

3990
  """
3991
  #TODO: compute space requirements
3992

    
3993
  vgname = lu.cfg.GetVGName()
3994
  disk_count = len(disk_info)
3995
  disks = []
3996
  if template_name == constants.DT_DISKLESS:
3997
    pass
3998
  elif template_name == constants.DT_PLAIN:
3999
    if len(secondary_nodes) != 0:
4000
      raise errors.ProgrammerError("Wrong template configuration")
4001

    
4002
    names = _GenerateUniqueNames(lu, [".disk%d" % i
4003
                                      for i in range(disk_count)])
4004
    for idx, disk in enumerate(disk_info):
4005
      disk_index = idx + base_index
4006
      disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
4007
                              logical_id=(vgname, names[idx]),
4008
                              iv_name="disk/%d" % disk_index,
4009
                              mode=disk["mode"])
4010
      disks.append(disk_dev)
4011
  elif template_name == constants.DT_DRBD8:
4012
    if len(secondary_nodes) != 1:
4013
      raise errors.ProgrammerError("Wrong template configuration")
4014
    remote_node = secondary_nodes[0]
4015
    minors = lu.cfg.AllocateDRBDMinor(