LUSetClusterParams: initialize needed parameters
[ganeti-local] / lib / cmdlib.py
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=W0201
25
26 # W0201 since most LU attributes are defined in CheckPrereq or similar
27 # functions
28
29 import os
30 import os.path
31 import time
32 import re
33 import platform
34 import logging
35 import copy
36 import OpenSSL
37
38 from ganeti import ssh
39 from ganeti import utils
40 from ganeti import errors
41 from ganeti import hypervisor
42 from ganeti import locking
43 from ganeti import constants
44 from ganeti import objects
45 from ganeti import serializer
46 from ganeti import ssconf
47 from ganeti import uidpool
48
49
50 class LogicalUnit(object):
51   """Logical Unit base class.
52
53   Subclasses must follow these rules:
54     - implement ExpandNames
55     - implement CheckPrereq (except when tasklets are used)
56     - implement Exec (except when tasklets are used)
57     - implement BuildHooksEnv
58     - redefine HPATH and HTYPE
59     - optionally redefine their run requirements:
60         REQ_BGL: the LU needs to hold the Big Ganeti Lock exclusively
61
62   Note that all commands require root permissions.
63
64   @ivar dry_run_result: the value (if any) that will be returned to the caller
65       in dry-run mode (signalled by opcode dry_run parameter)
66
67   """
68   HPATH = None
69   HTYPE = None
70   _OP_REQP = []
71   REQ_BGL = True
72
73   def __init__(self, processor, op, context, rpc):
74     """Constructor for LogicalUnit.
75
76     This needs to be overridden in derived classes in order to check op
77     validity.
78
79     """
80     self.proc = processor
81     self.op = op
82     self.cfg = context.cfg
83     self.context = context
84     self.rpc = rpc
85     # Dicts used to declare locking needs to mcpu
86     self.needed_locks = None
87     self.acquired_locks = {}
88     self.share_locks = dict.fromkeys(locking.LEVELS, 0)
89     self.add_locks = {}
90     self.remove_locks = {}
91     # Used to force good behavior when calling helper functions
92     self.recalculate_locks = {}
93     self.__ssh = None
94     # logging
95     self.LogWarning = processor.LogWarning # pylint: disable-msg=C0103
96     self.LogInfo = processor.LogInfo # pylint: disable-msg=C0103
97     self.LogStep = processor.LogStep # pylint: disable-msg=C0103
98     # support for dry-run
99     self.dry_run_result = None
100     # support for generic debug attribute
101     if (not hasattr(self.op, "debug_level") or
102         not isinstance(self.op.debug_level, int)):
103       self.op.debug_level = 0
104
105     # Tasklets
106     self.tasklets = None
107
108     for attr_name in self._OP_REQP:
109       attr_val = getattr(op, attr_name, None)
110       if attr_val is None:
111         raise errors.OpPrereqError("Required parameter '%s' missing" %
112                                    attr_name, errors.ECODE_INVAL)
113
114     self.CheckArguments()
115
116   def __GetSSH(self):
117     """Returns the SshRunner object
118
119     """
120     if not self.__ssh:
121       self.__ssh = ssh.SshRunner(self.cfg.GetClusterName())
122     return self.__ssh
123
124   ssh = property(fget=__GetSSH)
125
126   def CheckArguments(self):
127     """Check syntactic validity for the opcode arguments.
128
129     This method is for doing a simple syntactic check and ensure
130     validity of opcode parameters, without any cluster-related
131     checks. While the same can be accomplished in ExpandNames and/or
132     CheckPrereq, doing these separate is better because:
133
134       - ExpandNames is left as as purely a lock-related function
135       - CheckPrereq is run after we have acquired locks (and possible
136         waited for them)
137
138     The function is allowed to change the self.op attribute so that
139     later methods can no longer worry about missing parameters.
140
141     """
142     pass
143
144   def ExpandNames(self):
145     """Expand names for this LU.
146
147     This method is called before starting to execute the opcode, and it should
148     update all the parameters of the opcode to their canonical form (e.g. a
149     short node name must be fully expanded after this method has successfully
150     completed). This way locking, hooks, logging, ecc. can work correctly.
151
152     LUs which implement this method must also populate the self.needed_locks
153     member, as a dict with lock levels as keys, and a list of needed lock names
154     as values. Rules:
155
156       - use an empty dict if you don't need any lock
157       - if you don't need any lock at a particular level omit that level
158       - don't put anything for the BGL level
159       - if you want all locks at a level use locking.ALL_SET as a value
160
161     If you need to share locks (rather than acquire them exclusively) at one
162     level you can modify self.share_locks, setting a true value (usually 1) for
163     that level. By default locks are not shared.
164
165     This function can also define a list of tasklets, which then will be
166     executed in order instead of the usual LU-level CheckPrereq and Exec
167     functions, if those are not defined by the LU.
168
169     Examples::
170
171       # Acquire all nodes and one instance
172       self.needed_locks = {
173         locking.LEVEL_NODE: locking.ALL_SET,
174         locking.LEVEL_INSTANCE: ['instance1.example.tld'],
175       }
176       # Acquire just two nodes
177       self.needed_locks = {
178         locking.LEVEL_NODE: ['node1.example.tld', 'node2.example.tld'],
179       }
180       # Acquire no locks
181       self.needed_locks = {} # No, you can't leave it to the default value None
182
183     """
184     # The implementation of this method is mandatory only if the new LU is
185     # concurrent, so that old LUs don't need to be changed all at the same
186     # time.
187     if self.REQ_BGL:
188       self.needed_locks = {} # Exclusive LUs don't need locks.
189     else:
190       raise NotImplementedError
191
192   def DeclareLocks(self, level):
193     """Declare LU locking needs for a level
194
195     While most LUs can just declare their locking needs at ExpandNames time,
196     sometimes there's the need to calculate some locks after having acquired
197     the ones before. This function is called just before acquiring locks at a
198     particular level, but after acquiring the ones at lower levels, and permits
199     such calculations. It can be used to modify self.needed_locks, and by
200     default it does nothing.
201
202     This function is only called if you have something already set in
203     self.needed_locks for the level.
204
205     @param level: Locking level which is going to be locked
206     @type level: member of ganeti.locking.LEVELS
207
208     """
209
210   def CheckPrereq(self):
211     """Check prerequisites for this LU.
212
213     This method should check that the prerequisites for the execution
214     of this LU are fulfilled. It can do internode communication, but
215     it should be idempotent - no cluster or system changes are
216     allowed.
217
218     The method should raise errors.OpPrereqError in case something is
219     not fulfilled. Its return value is ignored.
220
221     This method should also update all the parameters of the opcode to
222     their canonical form if it hasn't been done by ExpandNames before.
223
224     """
225     if self.tasklets is not None:
226       for (idx, tl) in enumerate(self.tasklets):
227         logging.debug("Checking prerequisites for tasklet %s/%s",
228                       idx + 1, len(self.tasklets))
229         tl.CheckPrereq()
230     else:
231       raise NotImplementedError
232
233   def Exec(self, feedback_fn):
234     """Execute the LU.
235
236     This method should implement the actual work. It should raise
237     errors.OpExecError for failures that are somewhat dealt with in
238     code, or expected.
239
240     """
241     if self.tasklets is not None:
242       for (idx, tl) in enumerate(self.tasklets):
243         logging.debug("Executing tasklet %s/%s", idx + 1, len(self.tasklets))
244         tl.Exec(feedback_fn)
245     else:
246       raise NotImplementedError
247
248   def BuildHooksEnv(self):
249     """Build hooks environment for this LU.
250
251     This method should return a three-node tuple consisting of: a dict
252     containing the environment that will be used for running the
253     specific hook for this LU, a list of node names on which the hook
254     should run before the execution, and a list of node names on which
255     the hook should run after the execution.
256
257     The keys of the dict must not have 'GANETI_' prefixed as this will
258     be handled in the hooks runner. Also note additional keys will be
259     added by the hooks runner. If the LU doesn't define any
260     environment, an empty dict (and not None) should be returned.
261
262     No nodes should be returned as an empty list (and not None).
263
264     Note that if the HPATH for a LU class is None, this function will
265     not be called.
266
267     """
268     raise NotImplementedError
269
270   def HooksCallBack(self, phase, hook_results, feedback_fn, lu_result):
271     """Notify the LU about the results of its hooks.
272
273     This method is called every time a hooks phase is executed, and notifies
274     the Logical Unit about the hooks' result. The LU can then use it to alter
275     its result based on the hooks.  By default the method does nothing and the
276     previous result is passed back unchanged but any LU can define it if it
277     wants to use the local cluster hook-scripts somehow.
278
279     @param phase: one of L{constants.HOOKS_PHASE_POST} or
280         L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
281     @param hook_results: the results of the multi-node hooks rpc call
282     @param feedback_fn: function used send feedback back to the caller
283     @param lu_result: the previous Exec result this LU had, or None
284         in the PRE phase
285     @return: the new Exec result, based on the previous result
286         and hook results
287
288     """
289     # API must be kept, thus we ignore the unused argument and could
290     # be a function warnings
291     # pylint: disable-msg=W0613,R0201
292     return lu_result
293
294   def _ExpandAndLockInstance(self):
295     """Helper function to expand and lock an instance.
296
297     Many LUs that work on an instance take its name in self.op.instance_name
298     and need to expand it and then declare the expanded name for locking. This
299     function does it, and then updates self.op.instance_name to the expanded
300     name. It also initializes needed_locks as a dict, if this hasn't been done
301     before.
302
303     """
304     if self.needed_locks is None:
305       self.needed_locks = {}
306     else:
307       assert locking.LEVEL_INSTANCE not in self.needed_locks, \
308         "_ExpandAndLockInstance called with instance-level locks set"
309     self.op.instance_name = _ExpandInstanceName(self.cfg,
310                                                 self.op.instance_name)
311     self.needed_locks[locking.LEVEL_INSTANCE] = self.op.instance_name
312
313   def _LockInstancesNodes(self, primary_only=False):
314     """Helper function to declare instances' nodes for locking.
315
316     This function should be called after locking one or more instances to lock
317     their nodes. Its effect is populating self.needed_locks[locking.LEVEL_NODE]
318     with all primary or secondary nodes for instances already locked and
319     present in self.needed_locks[locking.LEVEL_INSTANCE].
320
321     It should be called from DeclareLocks, and for safety only works if
322     self.recalculate_locks[locking.LEVEL_NODE] is set.
323
324     In the future it may grow parameters to just lock some instance's nodes, or
325     to just lock primaries or secondary nodes, if needed.
326
327     If should be called in DeclareLocks in a way similar to::
328
329       if level == locking.LEVEL_NODE:
330         self._LockInstancesNodes()
331
332     @type primary_only: boolean
333     @param primary_only: only lock primary nodes of locked instances
334
335     """
336     assert locking.LEVEL_NODE in self.recalculate_locks, \
337       "_LockInstancesNodes helper function called with no nodes to recalculate"
338
339     # TODO: check if we're really been called with the instance locks held
340
341     # For now we'll replace self.needed_locks[locking.LEVEL_NODE], but in the
342     # future we might want to have different behaviors depending on the value
343     # of self.recalculate_locks[locking.LEVEL_NODE]
344     wanted_nodes = []
345     for instance_name in self.acquired_locks[locking.LEVEL_INSTANCE]:
346       instance = self.context.cfg.GetInstanceInfo(instance_name)
347       wanted_nodes.append(instance.primary_node)
348       if not primary_only:
349         wanted_nodes.extend(instance.secondary_nodes)
350
351     if self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_REPLACE:
352       self.needed_locks[locking.LEVEL_NODE] = wanted_nodes
353     elif self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_APPEND:
354       self.needed_locks[locking.LEVEL_NODE].extend(wanted_nodes)
355
356     del self.recalculate_locks[locking.LEVEL_NODE]
357
358
359 class NoHooksLU(LogicalUnit): # pylint: disable-msg=W0223
360   """Simple LU which runs no hooks.
361
362   This LU is intended as a parent for other LogicalUnits which will
363   run no hooks, in order to reduce duplicate code.
364
365   """
366   HPATH = None
367   HTYPE = None
368
369   def BuildHooksEnv(self):
370     """Empty BuildHooksEnv for NoHooksLu.
371
372     This just raises an error.
373
374     """
375     assert False, "BuildHooksEnv called for NoHooksLUs"
376
377
378 class Tasklet:
379   """Tasklet base class.
380
381   Tasklets are subcomponents for LUs. LUs can consist entirely of tasklets or
382   they can mix legacy code with tasklets. Locking needs to be done in the LU,
383   tasklets know nothing about locks.
384
385   Subclasses must follow these rules:
386     - Implement CheckPrereq
387     - Implement Exec
388
389   """
390   def __init__(self, lu):
391     self.lu = lu
392
393     # Shortcuts
394     self.cfg = lu.cfg
395     self.rpc = lu.rpc
396
397   def CheckPrereq(self):
398     """Check prerequisites for this tasklets.
399
400     This method should check whether the prerequisites for the execution of
401     this tasklet are fulfilled. It can do internode communication, but it
402     should be idempotent - no cluster or system changes are allowed.
403
404     The method should raise errors.OpPrereqError in case something is not
405     fulfilled. Its return value is ignored.
406
407     This method should also update all parameters to their canonical form if it
408     hasn't been done before.
409
410     """
411     raise NotImplementedError
412
413   def Exec(self, feedback_fn):
414     """Execute the tasklet.
415
416     This method should implement the actual work. It should raise
417     errors.OpExecError for failures that are somewhat dealt with in code, or
418     expected.
419
420     """
421     raise NotImplementedError
422
423
424 def _GetWantedNodes(lu, nodes):
425   """Returns list of checked and expanded node names.
426
427   @type lu: L{LogicalUnit}
428   @param lu: the logical unit on whose behalf we execute
429   @type nodes: list
430   @param nodes: list of node names or None for all nodes
431   @rtype: list
432   @return: the list of nodes, sorted
433   @raise errors.ProgrammerError: if the nodes parameter is wrong type
434
435   """
436   if not isinstance(nodes, list):
437     raise errors.OpPrereqError("Invalid argument type 'nodes'",
438                                errors.ECODE_INVAL)
439
440   if not nodes:
441     raise errors.ProgrammerError("_GetWantedNodes should only be called with a"
442       " non-empty list of nodes whose name is to be expanded.")
443
444   wanted = [_ExpandNodeName(lu.cfg, name) for name in nodes]
445   return utils.NiceSort(wanted)
446
447
448 def _GetWantedInstances(lu, instances):
449   """Returns list of checked and expanded instance names.
450
451   @type lu: L{LogicalUnit}
452   @param lu: the logical unit on whose behalf we execute
453   @type instances: list
454   @param instances: list of instance names or None for all instances
455   @rtype: list
456   @return: the list of instances, sorted
457   @raise errors.OpPrereqError: if the instances parameter is wrong type
458   @raise errors.OpPrereqError: if any of the passed instances is not found
459
460   """
461   if not isinstance(instances, list):
462     raise errors.OpPrereqError("Invalid argument type 'instances'",
463                                errors.ECODE_INVAL)
464
465   if instances:
466     wanted = [_ExpandInstanceName(lu.cfg, name) for name in instances]
467   else:
468     wanted = utils.NiceSort(lu.cfg.GetInstanceList())
469   return wanted
470
471
472 def _CheckOutputFields(static, dynamic, selected):
473   """Checks whether all selected fields are valid.
474
475   @type static: L{utils.FieldSet}
476   @param static: static fields set
477   @type dynamic: L{utils.FieldSet}
478   @param dynamic: dynamic fields set
479
480   """
481   f = utils.FieldSet()
482   f.Extend(static)
483   f.Extend(dynamic)
484
485   delta = f.NonMatching(selected)
486   if delta:
487     raise errors.OpPrereqError("Unknown output fields selected: %s"
488                                % ",".join(delta), errors.ECODE_INVAL)
489
490
491 def _CheckBooleanOpField(op, name):
492   """Validates boolean opcode parameters.
493
494   This will ensure that an opcode parameter is either a boolean value,
495   or None (but that it always exists).
496
497   """
498   val = getattr(op, name, None)
499   if not (val is None or isinstance(val, bool)):
500     raise errors.OpPrereqError("Invalid boolean parameter '%s' (%s)" %
501                                (name, str(val)), errors.ECODE_INVAL)
502   setattr(op, name, val)
503
504
505 def _CheckGlobalHvParams(params):
506   """Validates that given hypervisor params are not global ones.
507
508   This will ensure that instances don't get customised versions of
509   global params.
510
511   """
512   used_globals = constants.HVC_GLOBALS.intersection(params)
513   if used_globals:
514     msg = ("The following hypervisor parameters are global and cannot"
515            " be customized at instance level, please modify them at"
516            " cluster level: %s" % utils.CommaJoin(used_globals))
517     raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
518
519
520 def _CheckNodeOnline(lu, node):
521   """Ensure that a given node is online.
522
523   @param lu: the LU on behalf of which we make the check
524   @param node: the node to check
525   @raise errors.OpPrereqError: if the node is offline
526
527   """
528   if lu.cfg.GetNodeInfo(node).offline:
529     raise errors.OpPrereqError("Can't use offline node %s" % node,
530                                errors.ECODE_INVAL)
531
532
533 def _CheckNodeNotDrained(lu, node):
534   """Ensure that a given node is not drained.
535
536   @param lu: the LU on behalf of which we make the check
537   @param node: the node to check
538   @raise errors.OpPrereqError: if the node is drained
539
540   """
541   if lu.cfg.GetNodeInfo(node).drained:
542     raise errors.OpPrereqError("Can't use drained node %s" % node,
543                                errors.ECODE_INVAL)
544
545
546 def _CheckNodeHasOS(lu, node, os_name, force_variant):
547   """Ensure that a node supports a given OS.
548
549   @param lu: the LU on behalf of which we make the check
550   @param node: the node to check
551   @param os_name: the OS to query about
552   @param force_variant: whether to ignore variant errors
553   @raise errors.OpPrereqError: if the node is not supporting the OS
554
555   """
556   result = lu.rpc.call_os_get(node, os_name)
557   result.Raise("OS '%s' not in supported OS list for node %s" %
558                (os_name, node),
559                prereq=True, ecode=errors.ECODE_INVAL)
560   if not force_variant:
561     _CheckOSVariant(result.payload, os_name)
562
563
564 def _RequireFileStorage():
565   """Checks that file storage is enabled.
566
567   @raise errors.OpPrereqError: when file storage is disabled
568
569   """
570   if not constants.ENABLE_FILE_STORAGE:
571     raise errors.OpPrereqError("File storage disabled at configure time",
572                                errors.ECODE_INVAL)
573
574
575 def _CheckDiskTemplate(template):
576   """Ensure a given disk template is valid.
577
578   """
579   if template not in constants.DISK_TEMPLATES:
580     msg = ("Invalid disk template name '%s', valid templates are: %s" %
581            (template, utils.CommaJoin(constants.DISK_TEMPLATES)))
582     raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
583   if template == constants.DT_FILE:
584     _RequireFileStorage()
585
586
587 def _CheckStorageType(storage_type):
588   """Ensure a given storage type is valid.
589
590   """
591   if storage_type not in constants.VALID_STORAGE_TYPES:
592     raise errors.OpPrereqError("Unknown storage type: %s" % storage_type,
593                                errors.ECODE_INVAL)
594   if storage_type == constants.ST_FILE:
595     _RequireFileStorage()
596
597
598
599 def _CheckInstanceDown(lu, instance, reason):
600   """Ensure that an instance is not running."""
601   if instance.admin_up:
602     raise errors.OpPrereqError("Instance %s is marked to be up, %s" %
603                                (instance.name, reason), errors.ECODE_STATE)
604
605   pnode = instance.primary_node
606   ins_l = lu.rpc.call_instance_list([pnode], [instance.hypervisor])[pnode]
607   ins_l.Raise("Can't contact node %s for instance information" % pnode,
608               prereq=True, ecode=errors.ECODE_ENVIRON)
609
610   if instance.name in ins_l.payload:
611     raise errors.OpPrereqError("Instance %s is running, %s" %
612                                (instance.name, reason), errors.ECODE_STATE)
613
614
615 def _ExpandItemName(fn, name, kind):
616   """Expand an item name.
617
618   @param fn: the function to use for expansion
619   @param name: requested item name
620   @param kind: text description ('Node' or 'Instance')
621   @return: the resolved (full) name
622   @raise errors.OpPrereqError: if the item is not found
623
624   """
625   full_name = fn(name)
626   if full_name is None:
627     raise errors.OpPrereqError("%s '%s' not known" % (kind, name),
628                                errors.ECODE_NOENT)
629   return full_name
630
631
632 def _ExpandNodeName(cfg, name):
633   """Wrapper over L{_ExpandItemName} for nodes."""
634   return _ExpandItemName(cfg.ExpandNodeName, name, "Node")
635
636
637 def _ExpandInstanceName(cfg, name):
638   """Wrapper over L{_ExpandItemName} for instance."""
639   return _ExpandItemName(cfg.ExpandInstanceName, name, "Instance")
640
641
642 def _BuildInstanceHookEnv(name, primary_node, secondary_nodes, os_type, status,
643                           memory, vcpus, nics, disk_template, disks,
644                           bep, hvp, hypervisor_name):
645   """Builds instance related env variables for hooks
646
647   This builds the hook environment from individual variables.
648
649   @type name: string
650   @param name: the name of the instance
651   @type primary_node: string
652   @param primary_node: the name of the instance's primary node
653   @type secondary_nodes: list
654   @param secondary_nodes: list of secondary nodes as strings
655   @type os_type: string
656   @param os_type: the name of the instance's OS
657   @type status: boolean
658   @param status: the should_run status of the instance
659   @type memory: string
660   @param memory: the memory size of the instance
661   @type vcpus: string
662   @param vcpus: the count of VCPUs the instance has
663   @type nics: list
664   @param nics: list of tuples (ip, mac, mode, link) representing
665       the NICs the instance has
666   @type disk_template: string
667   @param disk_template: the disk template of the instance
668   @type disks: list
669   @param disks: the list of (size, mode) pairs
670   @type bep: dict
671   @param bep: the backend parameters for the instance
672   @type hvp: dict
673   @param hvp: the hypervisor parameters for the instance
674   @type hypervisor_name: string
675   @param hypervisor_name: the hypervisor for the instance
676   @rtype: dict
677   @return: the hook environment for this instance
678
679   """
680   if status:
681     str_status = "up"
682   else:
683     str_status = "down"
684   env = {
685     "OP_TARGET": name,
686     "INSTANCE_NAME": name,
687     "INSTANCE_PRIMARY": primary_node,
688     "INSTANCE_SECONDARIES": " ".join(secondary_nodes),
689     "INSTANCE_OS_TYPE": os_type,
690     "INSTANCE_STATUS": str_status,
691     "INSTANCE_MEMORY": memory,
692     "INSTANCE_VCPUS": vcpus,
693     "INSTANCE_DISK_TEMPLATE": disk_template,
694     "INSTANCE_HYPERVISOR": hypervisor_name,
695   }
696
697   if nics:
698     nic_count = len(nics)
699     for idx, (ip, mac, mode, link) in enumerate(nics):
700       if ip is None:
701         ip = ""
702       env["INSTANCE_NIC%d_IP" % idx] = ip
703       env["INSTANCE_NIC%d_MAC" % idx] = mac
704       env["INSTANCE_NIC%d_MODE" % idx] = mode
705       env["INSTANCE_NIC%d_LINK" % idx] = link
706       if mode == constants.NIC_MODE_BRIDGED:
707         env["INSTANCE_NIC%d_BRIDGE" % idx] = link
708   else:
709     nic_count = 0
710
711   env["INSTANCE_NIC_COUNT"] = nic_count
712
713   if disks:
714     disk_count = len(disks)
715     for idx, (size, mode) in enumerate(disks):
716       env["INSTANCE_DISK%d_SIZE" % idx] = size
717       env["INSTANCE_DISK%d_MODE" % idx] = mode
718   else:
719     disk_count = 0
720
721   env["INSTANCE_DISK_COUNT"] = disk_count
722
723   for source, kind in [(bep, "BE"), (hvp, "HV")]:
724     for key, value in source.items():
725       env["INSTANCE_%s_%s" % (kind, key)] = value
726
727   return env
728
729
730 def _NICListToTuple(lu, nics):
731   """Build a list of nic information tuples.
732
733   This list is suitable to be passed to _BuildInstanceHookEnv or as a return
734   value in LUQueryInstanceData.
735
736   @type lu:  L{LogicalUnit}
737   @param lu: the logical unit on whose behalf we execute
738   @type nics: list of L{objects.NIC}
739   @param nics: list of nics to convert to hooks tuples
740
741   """
742   hooks_nics = []
743   c_nicparams = lu.cfg.GetClusterInfo().nicparams[constants.PP_DEFAULT]
744   for nic in nics:
745     ip = nic.ip
746     mac = nic.mac
747     filled_params = objects.FillDict(c_nicparams, nic.nicparams)
748     mode = filled_params[constants.NIC_MODE]
749     link = filled_params[constants.NIC_LINK]
750     hooks_nics.append((ip, mac, mode, link))
751   return hooks_nics
752
753
754 def _BuildInstanceHookEnvByObject(lu, instance, override=None):
755   """Builds instance related env variables for hooks from an object.
756
757   @type lu: L{LogicalUnit}
758   @param lu: the logical unit on whose behalf we execute
759   @type instance: L{objects.Instance}
760   @param instance: the instance for which we should build the
761       environment
762   @type override: dict
763   @param override: dictionary with key/values that will override
764       our values
765   @rtype: dict
766   @return: the hook environment dictionary
767
768   """
769   cluster = lu.cfg.GetClusterInfo()
770   bep = cluster.FillBE(instance)
771   hvp = cluster.FillHV(instance)
772   args = {
773     'name': instance.name,
774     'primary_node': instance.primary_node,
775     'secondary_nodes': instance.secondary_nodes,
776     'os_type': instance.os,
777     'status': instance.admin_up,
778     'memory': bep[constants.BE_MEMORY],
779     'vcpus': bep[constants.BE_VCPUS],
780     'nics': _NICListToTuple(lu, instance.nics),
781     'disk_template': instance.disk_template,
782     'disks': [(disk.size, disk.mode) for disk in instance.disks],
783     'bep': bep,
784     'hvp': hvp,
785     'hypervisor_name': instance.hypervisor,
786   }
787   if override:
788     args.update(override)
789   return _BuildInstanceHookEnv(**args) # pylint: disable-msg=W0142
790
791
792 def _AdjustCandidatePool(lu, exceptions):
793   """Adjust the candidate pool after node operations.
794
795   """
796   mod_list = lu.cfg.MaintainCandidatePool(exceptions)
797   if mod_list:
798     lu.LogInfo("Promoted nodes to master candidate role: %s",
799                utils.CommaJoin(node.name for node in mod_list))
800     for name in mod_list:
801       lu.context.ReaddNode(name)
802   mc_now, mc_max, _ = lu.cfg.GetMasterCandidateStats(exceptions)
803   if mc_now > mc_max:
804     lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
805                (mc_now, mc_max))
806
807
808 def _DecideSelfPromotion(lu, exceptions=None):
809   """Decide whether I should promote myself as a master candidate.
810
811   """
812   cp_size = lu.cfg.GetClusterInfo().candidate_pool_size
813   mc_now, mc_should, _ = lu.cfg.GetMasterCandidateStats(exceptions)
814   # the new node will increase mc_max with one, so:
815   mc_should = min(mc_should + 1, cp_size)
816   return mc_now < mc_should
817
818
819 def _CheckNicsBridgesExist(lu, target_nics, target_node,
820                                profile=constants.PP_DEFAULT):
821   """Check that the brigdes needed by a list of nics exist.
822
823   """
824   c_nicparams = lu.cfg.GetClusterInfo().nicparams[profile]
825   paramslist = [objects.FillDict(c_nicparams, nic.nicparams)
826                 for nic in target_nics]
827   brlist = [params[constants.NIC_LINK] for params in paramslist
828             if params[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED]
829   if brlist:
830     result = lu.rpc.call_bridges_exist(target_node, brlist)
831     result.Raise("Error checking bridges on destination node '%s'" %
832                  target_node, prereq=True, ecode=errors.ECODE_ENVIRON)
833
834
835 def _CheckInstanceBridgesExist(lu, instance, node=None):
836   """Check that the brigdes needed by an instance exist.
837
838   """
839   if node is None:
840     node = instance.primary_node
841   _CheckNicsBridgesExist(lu, instance.nics, node)
842
843
844 def _CheckOSVariant(os_obj, name):
845   """Check whether an OS name conforms to the os variants specification.
846
847   @type os_obj: L{objects.OS}
848   @param os_obj: OS object to check
849   @type name: string
850   @param name: OS name passed by the user, to check for validity
851
852   """
853   if not os_obj.supported_variants:
854     return
855   try:
856     variant = name.split("+", 1)[1]
857   except IndexError:
858     raise errors.OpPrereqError("OS name must include a variant",
859                                errors.ECODE_INVAL)
860
861   if variant not in os_obj.supported_variants:
862     raise errors.OpPrereqError("Unsupported OS variant", errors.ECODE_INVAL)
863
864
865 def _GetNodeInstancesInner(cfg, fn):
866   return [i for i in cfg.GetAllInstancesInfo().values() if fn(i)]
867
868
869 def _GetNodeInstances(cfg, node_name):
870   """Returns a list of all primary and secondary instances on a node.
871
872   """
873
874   return _GetNodeInstancesInner(cfg, lambda inst: node_name in inst.all_nodes)
875
876
877 def _GetNodePrimaryInstances(cfg, node_name):
878   """Returns primary instances on a node.
879
880   """
881   return _GetNodeInstancesInner(cfg,
882                                 lambda inst: node_name == inst.primary_node)
883
884
885 def _GetNodeSecondaryInstances(cfg, node_name):
886   """Returns secondary instances on a node.
887
888   """
889   return _GetNodeInstancesInner(cfg,
890                                 lambda inst: node_name in inst.secondary_nodes)
891
892
893 def _GetStorageTypeArgs(cfg, storage_type):
894   """Returns the arguments for a storage type.
895
896   """
897   # Special case for file storage
898   if storage_type == constants.ST_FILE:
899     # storage.FileStorage wants a list of storage directories
900     return [[cfg.GetFileStorageDir()]]
901
902   return []
903
904
905 def _FindFaultyInstanceDisks(cfg, rpc, instance, node_name, prereq):
906   faulty = []
907
908   for dev in instance.disks:
909     cfg.SetDiskID(dev, node_name)
910
911   result = rpc.call_blockdev_getmirrorstatus(node_name, instance.disks)
912   result.Raise("Failed to get disk status from node %s" % node_name,
913                prereq=prereq, ecode=errors.ECODE_ENVIRON)
914
915   for idx, bdev_status in enumerate(result.payload):
916     if bdev_status and bdev_status.ldisk_status == constants.LDS_FAULTY:
917       faulty.append(idx)
918
919   return faulty
920
921
922 def _FormatTimestamp(secs):
923   """Formats a Unix timestamp with the local timezone.
924
925   """
926   return time.strftime("%F %T %Z", time.gmtime(secs))
927
928
929 class LUPostInitCluster(LogicalUnit):
930   """Logical unit for running hooks after cluster initialization.
931
932   """
933   HPATH = "cluster-init"
934   HTYPE = constants.HTYPE_CLUSTER
935   _OP_REQP = []
936
937   def BuildHooksEnv(self):
938     """Build hooks env.
939
940     """
941     env = {"OP_TARGET": self.cfg.GetClusterName()}
942     mn = self.cfg.GetMasterNode()
943     return env, [], [mn]
944
945   def CheckPrereq(self):
946     """No prerequisites to check.
947
948     """
949     return True
950
951   def Exec(self, feedback_fn):
952     """Nothing to do.
953
954     """
955     return True
956
957
958 class LUDestroyCluster(LogicalUnit):
959   """Logical unit for destroying the cluster.
960
961   """
962   HPATH = "cluster-destroy"
963   HTYPE = constants.HTYPE_CLUSTER
964   _OP_REQP = []
965
966   def BuildHooksEnv(self):
967     """Build hooks env.
968
969     """
970     env = {"OP_TARGET": self.cfg.GetClusterName()}
971     return env, [], []
972
973   def CheckPrereq(self):
974     """Check prerequisites.
975
976     This checks whether the cluster is empty.
977
978     Any errors are signaled by raising errors.OpPrereqError.
979
980     """
981     master = self.cfg.GetMasterNode()
982
983     nodelist = self.cfg.GetNodeList()
984     if len(nodelist) != 1 or nodelist[0] != master:
985       raise errors.OpPrereqError("There are still %d node(s) in"
986                                  " this cluster." % (len(nodelist) - 1),
987                                  errors.ECODE_INVAL)
988     instancelist = self.cfg.GetInstanceList()
989     if instancelist:
990       raise errors.OpPrereqError("There are still %d instance(s) in"
991                                  " this cluster." % len(instancelist),
992                                  errors.ECODE_INVAL)
993
994   def Exec(self, feedback_fn):
995     """Destroys the cluster.
996
997     """
998     master = self.cfg.GetMasterNode()
999     modify_ssh_setup = self.cfg.GetClusterInfo().modify_ssh_setup
1000
1001     # Run post hooks on master node before it's removed
1002     hm = self.proc.hmclass(self.rpc.call_hooks_runner, self)
1003     try:
1004       hm.RunPhase(constants.HOOKS_PHASE_POST, [master])
1005     except:
1006       # pylint: disable-msg=W0702
1007       self.LogWarning("Errors occurred running hooks on %s" % master)
1008
1009     result = self.rpc.call_node_stop_master(master, False)
1010     result.Raise("Could not disable the master role")
1011
1012     if modify_ssh_setup:
1013       priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
1014       utils.CreateBackup(priv_key)
1015       utils.CreateBackup(pub_key)
1016
1017     return master
1018
1019
1020 def _VerifyCertificateInner(filename, expired, not_before, not_after, now,
1021                             warn_days=constants.SSL_CERT_EXPIRATION_WARN,
1022                             error_days=constants.SSL_CERT_EXPIRATION_ERROR):
1023   """Verifies certificate details for LUVerifyCluster.
1024
1025   """
1026   if expired:
1027     msg = "Certificate %s is expired" % filename
1028
1029     if not_before is not None and not_after is not None:
1030       msg += (" (valid from %s to %s)" %
1031               (_FormatTimestamp(not_before),
1032                _FormatTimestamp(not_after)))
1033     elif not_before is not None:
1034       msg += " (valid from %s)" % _FormatTimestamp(not_before)
1035     elif not_after is not None:
1036       msg += " (valid until %s)" % _FormatTimestamp(not_after)
1037
1038     return (LUVerifyCluster.ETYPE_ERROR, msg)
1039
1040   elif not_before is not None and not_before > now:
1041     return (LUVerifyCluster.ETYPE_WARNING,
1042             "Certificate %s not yet valid (valid from %s)" %
1043             (filename, _FormatTimestamp(not_before)))
1044
1045   elif not_after is not None:
1046     remaining_days = int((not_after - now) / (24 * 3600))
1047
1048     msg = ("Certificate %s expires in %d days" % (filename, remaining_days))
1049
1050     if remaining_days <= error_days:
1051       return (LUVerifyCluster.ETYPE_ERROR, msg)
1052
1053     if remaining_days <= warn_days:
1054       return (LUVerifyCluster.ETYPE_WARNING, msg)
1055
1056   return (None, None)
1057
1058
1059 def _VerifyCertificate(filename):
1060   """Verifies a certificate for LUVerifyCluster.
1061
1062   @type filename: string
1063   @param filename: Path to PEM file
1064
1065   """
1066   try:
1067     cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM,
1068                                            utils.ReadFile(filename))
1069   except Exception, err: # pylint: disable-msg=W0703
1070     return (LUVerifyCluster.ETYPE_ERROR,
1071             "Failed to load X509 certificate %s: %s" % (filename, err))
1072
1073   # Depending on the pyOpenSSL version, this can just return (None, None)
1074   (not_before, not_after) = utils.GetX509CertValidity(cert)
1075
1076   return _VerifyCertificateInner(filename, cert.has_expired(),
1077                                  not_before, not_after, time.time())
1078
1079
1080 class LUVerifyCluster(LogicalUnit):
1081   """Verifies the cluster status.
1082
1083   """
1084   HPATH = "cluster-verify"
1085   HTYPE = constants.HTYPE_CLUSTER
1086   _OP_REQP = ["skip_checks", "verbose", "error_codes", "debug_simulate_errors"]
1087   REQ_BGL = False
1088
1089   TCLUSTER = "cluster"
1090   TNODE = "node"
1091   TINSTANCE = "instance"
1092
1093   ECLUSTERCFG = (TCLUSTER, "ECLUSTERCFG")
1094   ECLUSTERCERT = (TCLUSTER, "ECLUSTERCERT")
1095   EINSTANCEBADNODE = (TINSTANCE, "EINSTANCEBADNODE")
1096   EINSTANCEDOWN = (TINSTANCE, "EINSTANCEDOWN")
1097   EINSTANCELAYOUT = (TINSTANCE, "EINSTANCELAYOUT")
1098   EINSTANCEMISSINGDISK = (TINSTANCE, "EINSTANCEMISSINGDISK")
1099   EINSTANCEMISSINGDISK = (TINSTANCE, "EINSTANCEMISSINGDISK")
1100   EINSTANCEWRONGNODE = (TINSTANCE, "EINSTANCEWRONGNODE")
1101   ENODEDRBD = (TNODE, "ENODEDRBD")
1102   ENODEFILECHECK = (TNODE, "ENODEFILECHECK")
1103   ENODEHOOKS = (TNODE, "ENODEHOOKS")
1104   ENODEHV = (TNODE, "ENODEHV")
1105   ENODELVM = (TNODE, "ENODELVM")
1106   ENODEN1 = (TNODE, "ENODEN1")
1107   ENODENET = (TNODE, "ENODENET")
1108   ENODEORPHANINSTANCE = (TNODE, "ENODEORPHANINSTANCE")
1109   ENODEORPHANLV = (TNODE, "ENODEORPHANLV")
1110   ENODERPC = (TNODE, "ENODERPC")
1111   ENODESSH = (TNODE, "ENODESSH")
1112   ENODEVERSION = (TNODE, "ENODEVERSION")
1113   ENODESETUP = (TNODE, "ENODESETUP")
1114   ENODETIME = (TNODE, "ENODETIME")
1115
1116   ETYPE_FIELD = "code"
1117   ETYPE_ERROR = "ERROR"
1118   ETYPE_WARNING = "WARNING"
1119
1120   class NodeImage(object):
1121     """A class representing the logical and physical status of a node.
1122
1123     @ivar volumes: a structure as returned from
1124         L{ganeti.backend.GetVolumeList} (runtime)
1125     @ivar instances: a list of running instances (runtime)
1126     @ivar pinst: list of configured primary instances (config)
1127     @ivar sinst: list of configured secondary instances (config)
1128     @ivar sbp: diction of {secondary-node: list of instances} of all peers
1129         of this node (config)
1130     @ivar mfree: free memory, as reported by hypervisor (runtime)
1131     @ivar dfree: free disk, as reported by the node (runtime)
1132     @ivar offline: the offline status (config)
1133     @type rpc_fail: boolean
1134     @ivar rpc_fail: whether the RPC verify call was successfull (overall,
1135         not whether the individual keys were correct) (runtime)
1136     @type lvm_fail: boolean
1137     @ivar lvm_fail: whether the RPC call didn't return valid LVM data
1138     @type hyp_fail: boolean
1139     @ivar hyp_fail: whether the RPC call didn't return the instance list
1140     @type ghost: boolean
1141     @ivar ghost: whether this is a known node or not (config)
1142
1143     """
1144     def __init__(self, offline=False):
1145       self.volumes = {}
1146       self.instances = []
1147       self.pinst = []
1148       self.sinst = []
1149       self.sbp = {}
1150       self.mfree = 0
1151       self.dfree = 0
1152       self.offline = offline
1153       self.rpc_fail = False
1154       self.lvm_fail = False
1155       self.hyp_fail = False
1156       self.ghost = False
1157
1158   def ExpandNames(self):
1159     self.needed_locks = {
1160       locking.LEVEL_NODE: locking.ALL_SET,
1161       locking.LEVEL_INSTANCE: locking.ALL_SET,
1162     }
1163     self.share_locks = dict.fromkeys(locking.LEVELS, 1)
1164
1165   def _Error(self, ecode, item, msg, *args, **kwargs):
1166     """Format an error message.
1167
1168     Based on the opcode's error_codes parameter, either format a
1169     parseable error code, or a simpler error string.
1170
1171     This must be called only from Exec and functions called from Exec.
1172
1173     """
1174     ltype = kwargs.get(self.ETYPE_FIELD, self.ETYPE_ERROR)
1175     itype, etxt = ecode
1176     # first complete the msg
1177     if args:
1178       msg = msg % args
1179     # then format the whole message
1180     if self.op.error_codes:
1181       msg = "%s:%s:%s:%s:%s" % (ltype, etxt, itype, item, msg)
1182     else:
1183       if item:
1184         item = " " + item
1185       else:
1186         item = ""
1187       msg = "%s: %s%s: %s" % (ltype, itype, item, msg)
1188     # and finally report it via the feedback_fn
1189     self._feedback_fn("  - %s" % msg)
1190
1191   def _ErrorIf(self, cond, *args, **kwargs):
1192     """Log an error message if the passed condition is True.
1193
1194     """
1195     cond = bool(cond) or self.op.debug_simulate_errors
1196     if cond:
1197       self._Error(*args, **kwargs)
1198     # do not mark the operation as failed for WARN cases only
1199     if kwargs.get(self.ETYPE_FIELD, self.ETYPE_ERROR) == self.ETYPE_ERROR:
1200       self.bad = self.bad or cond
1201
1202   def _VerifyNode(self, ninfo, nresult):
1203     """Run multiple tests against a node.
1204
1205     Test list:
1206
1207       - compares ganeti version
1208       - checks vg existence and size > 20G
1209       - checks config file checksum
1210       - checks ssh to other nodes
1211
1212     @type ninfo: L{objects.Node}
1213     @param ninfo: the node to check
1214     @param nresult: the results from the node
1215     @rtype: boolean
1216     @return: whether overall this call was successful (and we can expect
1217          reasonable values in the respose)
1218
1219     """
1220     node = ninfo.name
1221     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1222
1223     # main result, nresult should be a non-empty dict
1224     test = not nresult or not isinstance(nresult, dict)
1225     _ErrorIf(test, self.ENODERPC, node,
1226                   "unable to verify node: no data returned")
1227     if test:
1228       return False
1229
1230     # compares ganeti version
1231     local_version = constants.PROTOCOL_VERSION
1232     remote_version = nresult.get("version", None)
1233     test = not (remote_version and
1234                 isinstance(remote_version, (list, tuple)) and
1235                 len(remote_version) == 2)
1236     _ErrorIf(test, self.ENODERPC, node,
1237              "connection to node returned invalid data")
1238     if test:
1239       return False
1240
1241     test = local_version != remote_version[0]
1242     _ErrorIf(test, self.ENODEVERSION, node,
1243              "incompatible protocol versions: master %s,"
1244              " node %s", local_version, remote_version[0])
1245     if test:
1246       return False
1247
1248     # node seems compatible, we can actually try to look into its results
1249
1250     # full package version
1251     self._ErrorIf(constants.RELEASE_VERSION != remote_version[1],
1252                   self.ENODEVERSION, node,
1253                   "software version mismatch: master %s, node %s",
1254                   constants.RELEASE_VERSION, remote_version[1],
1255                   code=self.ETYPE_WARNING)
1256
1257     hyp_result = nresult.get(constants.NV_HYPERVISOR, None)
1258     if isinstance(hyp_result, dict):
1259       for hv_name, hv_result in hyp_result.iteritems():
1260         test = hv_result is not None
1261         _ErrorIf(test, self.ENODEHV, node,
1262                  "hypervisor %s verify failure: '%s'", hv_name, hv_result)
1263
1264
1265     test = nresult.get(constants.NV_NODESETUP,
1266                            ["Missing NODESETUP results"])
1267     _ErrorIf(test, self.ENODESETUP, node, "node setup error: %s",
1268              "; ".join(test))
1269
1270     return True
1271
1272   def _VerifyNodeTime(self, ninfo, nresult,
1273                       nvinfo_starttime, nvinfo_endtime):
1274     """Check the node time.
1275
1276     @type ninfo: L{objects.Node}
1277     @param ninfo: the node to check
1278     @param nresult: the remote results for the node
1279     @param nvinfo_starttime: the start time of the RPC call
1280     @param nvinfo_endtime: the end time of the RPC call
1281
1282     """
1283     node = ninfo.name
1284     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1285
1286     ntime = nresult.get(constants.NV_TIME, None)
1287     try:
1288       ntime_merged = utils.MergeTime(ntime)
1289     except (ValueError, TypeError):
1290       _ErrorIf(True, self.ENODETIME, node, "Node returned invalid time")
1291       return
1292
1293     if ntime_merged < (nvinfo_starttime - constants.NODE_MAX_CLOCK_SKEW):
1294       ntime_diff = "%.01fs" % abs(nvinfo_starttime - ntime_merged)
1295     elif ntime_merged > (nvinfo_endtime + constants.NODE_MAX_CLOCK_SKEW):
1296       ntime_diff = "%.01fs" % abs(ntime_merged - nvinfo_endtime)
1297     else:
1298       ntime_diff = None
1299
1300     _ErrorIf(ntime_diff is not None, self.ENODETIME, node,
1301              "Node time diverges by at least %s from master node time",
1302              ntime_diff)
1303
1304   def _VerifyNodeLVM(self, ninfo, nresult, vg_name):
1305     """Check the node time.
1306
1307     @type ninfo: L{objects.Node}
1308     @param ninfo: the node to check
1309     @param nresult: the remote results for the node
1310     @param vg_name: the configured VG name
1311
1312     """
1313     if vg_name is None:
1314       return
1315
1316     node = ninfo.name
1317     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1318
1319     # checks vg existence and size > 20G
1320     vglist = nresult.get(constants.NV_VGLIST, None)
1321     test = not vglist
1322     _ErrorIf(test, self.ENODELVM, node, "unable to check volume groups")
1323     if not test:
1324       vgstatus = utils.CheckVolumeGroupSize(vglist, vg_name,
1325                                             constants.MIN_VG_SIZE)
1326       _ErrorIf(vgstatus, self.ENODELVM, node, vgstatus)
1327
1328     # check pv names
1329     pvlist = nresult.get(constants.NV_PVLIST, None)
1330     test = pvlist is None
1331     _ErrorIf(test, self.ENODELVM, node, "Can't get PV list from node")
1332     if not test:
1333       # check that ':' is not present in PV names, since it's a
1334       # special character for lvcreate (denotes the range of PEs to
1335       # use on the PV)
1336       for _, pvname, owner_vg in pvlist:
1337         test = ":" in pvname
1338         _ErrorIf(test, self.ENODELVM, node, "Invalid character ':' in PV"
1339                  " '%s' of VG '%s'", pvname, owner_vg)
1340
1341   def _VerifyNodeNetwork(self, ninfo, nresult):
1342     """Check the node time.
1343
1344     @type ninfo: L{objects.Node}
1345     @param ninfo: the node to check
1346     @param nresult: the remote results for the node
1347
1348     """
1349     node = ninfo.name
1350     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1351
1352     test = constants.NV_NODELIST not in nresult
1353     _ErrorIf(test, self.ENODESSH, node,
1354              "node hasn't returned node ssh connectivity data")
1355     if not test:
1356       if nresult[constants.NV_NODELIST]:
1357         for a_node, a_msg in nresult[constants.NV_NODELIST].items():
1358           _ErrorIf(True, self.ENODESSH, node,
1359                    "ssh communication with node '%s': %s", a_node, a_msg)
1360
1361     test = constants.NV_NODENETTEST not in nresult
1362     _ErrorIf(test, self.ENODENET, node,
1363              "node hasn't returned node tcp connectivity data")
1364     if not test:
1365       if nresult[constants.NV_NODENETTEST]:
1366         nlist = utils.NiceSort(nresult[constants.NV_NODENETTEST].keys())
1367         for anode in nlist:
1368           _ErrorIf(True, self.ENODENET, node,
1369                    "tcp communication with node '%s': %s",
1370                    anode, nresult[constants.NV_NODENETTEST][anode])
1371
1372   def _VerifyInstance(self, instance, instanceconfig, node_image):
1373     """Verify an instance.
1374
1375     This function checks to see if the required block devices are
1376     available on the instance's node.
1377
1378     """
1379     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1380     node_current = instanceconfig.primary_node
1381
1382     node_vol_should = {}
1383     instanceconfig.MapLVsByNode(node_vol_should)
1384
1385     for node in node_vol_should:
1386       n_img = node_image[node]
1387       if n_img.offline or n_img.rpc_fail or n_img.lvm_fail:
1388         # ignore missing volumes on offline or broken nodes
1389         continue
1390       for volume in node_vol_should[node]:
1391         test = volume not in n_img.volumes
1392         _ErrorIf(test, self.EINSTANCEMISSINGDISK, instance,
1393                  "volume %s missing on node %s", volume, node)
1394
1395     if instanceconfig.admin_up:
1396       pri_img = node_image[node_current]
1397       test = instance not in pri_img.instances and not pri_img.offline
1398       _ErrorIf(test, self.EINSTANCEDOWN, instance,
1399                "instance not running on its primary node %s",
1400                node_current)
1401
1402     for node, n_img in node_image.items():
1403       if (not node == node_current):
1404         test = instance in n_img.instances
1405         _ErrorIf(test, self.EINSTANCEWRONGNODE, instance,
1406                  "instance should not run on node %s", node)
1407
1408   def _VerifyOrphanVolumes(self, node_vol_should, node_image):
1409     """Verify if there are any unknown volumes in the cluster.
1410
1411     The .os, .swap and backup volumes are ignored. All other volumes are
1412     reported as unknown.
1413
1414     """
1415     for node, n_img in node_image.items():
1416       if n_img.offline or n_img.rpc_fail or n_img.lvm_fail:
1417         # skip non-healthy nodes
1418         continue
1419       for volume in n_img.volumes:
1420         test = (node not in node_vol_should or
1421                 volume not in node_vol_should[node])
1422         self._ErrorIf(test, self.ENODEORPHANLV, node,
1423                       "volume %s is unknown", volume)
1424
1425   def _VerifyOrphanInstances(self, instancelist, node_image):
1426     """Verify the list of running instances.
1427
1428     This checks what instances are running but unknown to the cluster.
1429
1430     """
1431     for node, n_img in node_image.items():
1432       for o_inst in n_img.instances:
1433         test = o_inst not in instancelist
1434         self._ErrorIf(test, self.ENODEORPHANINSTANCE, node,
1435                       "instance %s on node %s should not exist", o_inst, node)
1436
1437   def _VerifyNPlusOneMemory(self, node_image, instance_cfg):
1438     """Verify N+1 Memory Resilience.
1439
1440     Check that if one single node dies we can still start all the
1441     instances it was primary for.
1442
1443     """
1444     for node, n_img in node_image.items():
1445       # This code checks that every node which is now listed as
1446       # secondary has enough memory to host all instances it is
1447       # supposed to should a single other node in the cluster fail.
1448       # FIXME: not ready for failover to an arbitrary node
1449       # FIXME: does not support file-backed instances
1450       # WARNING: we currently take into account down instances as well
1451       # as up ones, considering that even if they're down someone
1452       # might want to start them even in the event of a node failure.
1453       for prinode, instances in n_img.sbp.items():
1454         needed_mem = 0
1455         for instance in instances:
1456           bep = self.cfg.GetClusterInfo().FillBE(instance_cfg[instance])
1457           if bep[constants.BE_AUTO_BALANCE]:
1458             needed_mem += bep[constants.BE_MEMORY]
1459         test = n_img.mfree < needed_mem
1460         self._ErrorIf(test, self.ENODEN1, node,
1461                       "not enough memory on to accommodate"
1462                       " failovers should peer node %s fail", prinode)
1463
1464   def _VerifyNodeFiles(self, ninfo, nresult, file_list, local_cksum,
1465                        master_files):
1466     """Verifies and computes the node required file checksums.
1467
1468     @type ninfo: L{objects.Node}
1469     @param ninfo: the node to check
1470     @param nresult: the remote results for the node
1471     @param file_list: required list of files
1472     @param local_cksum: dictionary of local files and their checksums
1473     @param master_files: list of files that only masters should have
1474
1475     """
1476     node = ninfo.name
1477     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1478
1479     remote_cksum = nresult.get(constants.NV_FILELIST, None)
1480     test = not isinstance(remote_cksum, dict)
1481     _ErrorIf(test, self.ENODEFILECHECK, node,
1482              "node hasn't returned file checksum data")
1483     if test:
1484       return
1485
1486     for file_name in file_list:
1487       node_is_mc = ninfo.master_candidate
1488       must_have = (file_name not in master_files) or node_is_mc
1489       # missing
1490       test1 = file_name not in remote_cksum
1491       # invalid checksum
1492       test2 = not test1 and remote_cksum[file_name] != local_cksum[file_name]
1493       # existing and good
1494       test3 = not test1 and remote_cksum[file_name] == local_cksum[file_name]
1495       _ErrorIf(test1 and must_have, self.ENODEFILECHECK, node,
1496                "file '%s' missing", file_name)
1497       _ErrorIf(test2 and must_have, self.ENODEFILECHECK, node,
1498                "file '%s' has wrong checksum", file_name)
1499       # not candidate and this is not a must-have file
1500       _ErrorIf(test2 and not must_have, self.ENODEFILECHECK, node,
1501                "file '%s' should not exist on non master"
1502                " candidates (and the file is outdated)", file_name)
1503       # all good, except non-master/non-must have combination
1504       _ErrorIf(test3 and not must_have, self.ENODEFILECHECK, node,
1505                "file '%s' should not exist"
1506                " on non master candidates", file_name)
1507
1508   def _VerifyNodeDrbd(self, ninfo, nresult, instanceinfo, drbd_map):
1509     """Verifies and the node DRBD status.
1510
1511     @type ninfo: L{objects.Node}
1512     @param ninfo: the node to check
1513     @param nresult: the remote results for the node
1514     @param instanceinfo: the dict of instances
1515     @param drbd_map: the DRBD map as returned by
1516         L{ganeti.config.ConfigWriter.ComputeDRBDMap}
1517
1518     """
1519     node = ninfo.name
1520     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1521
1522     # compute the DRBD minors
1523     node_drbd = {}
1524     for minor, instance in drbd_map[node].items():
1525       test = instance not in instanceinfo
1526       _ErrorIf(test, self.ECLUSTERCFG, None,
1527                "ghost instance '%s' in temporary DRBD map", instance)
1528         # ghost instance should not be running, but otherwise we
1529         # don't give double warnings (both ghost instance and
1530         # unallocated minor in use)
1531       if test:
1532         node_drbd[minor] = (instance, False)
1533       else:
1534         instance = instanceinfo[instance]
1535         node_drbd[minor] = (instance.name, instance.admin_up)
1536
1537     # and now check them
1538     used_minors = nresult.get(constants.NV_DRBDLIST, [])
1539     test = not isinstance(used_minors, (tuple, list))
1540     _ErrorIf(test, self.ENODEDRBD, node,
1541              "cannot parse drbd status file: %s", str(used_minors))
1542     if test:
1543       # we cannot check drbd status
1544       return
1545
1546     for minor, (iname, must_exist) in node_drbd.items():
1547       test = minor not in used_minors and must_exist
1548       _ErrorIf(test, self.ENODEDRBD, node,
1549                "drbd minor %d of instance %s is not active", minor, iname)
1550     for minor in used_minors:
1551       test = minor not in node_drbd
1552       _ErrorIf(test, self.ENODEDRBD, node,
1553                "unallocated drbd minor %d is in use", minor)
1554
1555   def _UpdateNodeVolumes(self, ninfo, nresult, nimg, vg_name):
1556     """Verifies and updates the node volume data.
1557
1558     This function will update a L{NodeImage}'s internal structures
1559     with data from the remote call.
1560
1561     @type ninfo: L{objects.Node}
1562     @param ninfo: the node to check
1563     @param nresult: the remote results for the node
1564     @param nimg: the node image object
1565     @param vg_name: the configured VG name
1566
1567     """
1568     node = ninfo.name
1569     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1570
1571     nimg.lvm_fail = True
1572     lvdata = nresult.get(constants.NV_LVLIST, "Missing LV data")
1573     if vg_name is None:
1574       pass
1575     elif isinstance(lvdata, basestring):
1576       _ErrorIf(True, self.ENODELVM, node, "LVM problem on node: %s",
1577                utils.SafeEncode(lvdata))
1578     elif not isinstance(lvdata, dict):
1579       _ErrorIf(True, self.ENODELVM, node, "rpc call to node failed (lvlist)")
1580     else:
1581       nimg.volumes = lvdata
1582       nimg.lvm_fail = False
1583
1584   def _UpdateNodeInstances(self, ninfo, nresult, nimg):
1585     """Verifies and updates the node instance list.
1586
1587     If the listing was successful, then updates this node's instance
1588     list. Otherwise, it marks the RPC call as failed for the instance
1589     list key.
1590
1591     @type ninfo: L{objects.Node}
1592     @param ninfo: the node to check
1593     @param nresult: the remote results for the node
1594     @param nimg: the node image object
1595
1596     """
1597     idata = nresult.get(constants.NV_INSTANCELIST, None)
1598     test = not isinstance(idata, list)
1599     self._ErrorIf(test, self.ENODEHV, ninfo.name, "rpc call to node failed"
1600                   " (instancelist): %s", utils.SafeEncode(str(idata)))
1601     if test:
1602       nimg.hyp_fail = True
1603     else:
1604       nimg.instances = idata
1605
1606   def _UpdateNodeInfo(self, ninfo, nresult, nimg, vg_name):
1607     """Verifies and computes a node information map
1608
1609     @type ninfo: L{objects.Node}
1610     @param ninfo: the node to check
1611     @param nresult: the remote results for the node
1612     @param nimg: the node image object
1613     @param vg_name: the configured VG name
1614
1615     """
1616     node = ninfo.name
1617     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1618
1619     # try to read free memory (from the hypervisor)
1620     hv_info = nresult.get(constants.NV_HVINFO, None)
1621     test = not isinstance(hv_info, dict) or "memory_free" not in hv_info
1622     _ErrorIf(test, self.ENODEHV, node, "rpc call to node failed (hvinfo)")
1623     if not test:
1624       try:
1625         nimg.mfree = int(hv_info["memory_free"])
1626       except (ValueError, TypeError):
1627         _ErrorIf(True, self.ENODERPC, node,
1628                  "node returned invalid nodeinfo, check hypervisor")
1629
1630     # FIXME: devise a free space model for file based instances as well
1631     if vg_name is not None:
1632       test = (constants.NV_VGLIST not in nresult or
1633               vg_name not in nresult[constants.NV_VGLIST])
1634       _ErrorIf(test, self.ENODELVM, node,
1635                "node didn't return data for the volume group '%s'"
1636                " - it is either missing or broken", vg_name)
1637       if not test:
1638         try:
1639           nimg.dfree = int(nresult[constants.NV_VGLIST][vg_name])
1640         except (ValueError, TypeError):
1641           _ErrorIf(True, self.ENODERPC, node,
1642                    "node returned invalid LVM info, check LVM status")
1643
1644   def CheckPrereq(self):
1645     """Check prerequisites.
1646
1647     Transform the list of checks we're going to skip into a set and check that
1648     all its members are valid.
1649
1650     """
1651     self.skip_set = frozenset(self.op.skip_checks)
1652     if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
1653       raise errors.OpPrereqError("Invalid checks to be skipped specified",
1654                                  errors.ECODE_INVAL)
1655
1656   def BuildHooksEnv(self):
1657     """Build hooks env.
1658
1659     Cluster-Verify hooks just ran in the post phase and their failure makes
1660     the output be logged in the verify output and the verification to fail.
1661
1662     """
1663     all_nodes = self.cfg.GetNodeList()
1664     env = {
1665       "CLUSTER_TAGS": " ".join(self.cfg.GetClusterInfo().GetTags())
1666       }
1667     for node in self.cfg.GetAllNodesInfo().values():
1668       env["NODE_TAGS_%s" % node.name] = " ".join(node.GetTags())
1669
1670     return env, [], all_nodes
1671
1672   def Exec(self, feedback_fn):
1673     """Verify integrity of cluster, performing various test on nodes.
1674
1675     """
1676     self.bad = False
1677     _ErrorIf = self._ErrorIf # pylint: disable-msg=C0103
1678     verbose = self.op.verbose
1679     self._feedback_fn = feedback_fn
1680     feedback_fn("* Verifying global settings")
1681     for msg in self.cfg.VerifyConfig():
1682       _ErrorIf(True, self.ECLUSTERCFG, None, msg)
1683
1684     # Check the cluster certificates
1685     for cert_filename in constants.ALL_CERT_FILES:
1686       (errcode, msg) = _VerifyCertificate(cert_filename)
1687       _ErrorIf(errcode, self.ECLUSTERCERT, None, msg, code=errcode)
1688
1689     vg_name = self.cfg.GetVGName()
1690     hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
1691     nodelist = utils.NiceSort(self.cfg.GetNodeList())
1692     nodeinfo = [self.cfg.GetNodeInfo(nname) for nname in nodelist]
1693     instancelist = utils.NiceSort(self.cfg.GetInstanceList())
1694     instanceinfo = dict((iname, self.cfg.GetInstanceInfo(iname))
1695                         for iname in instancelist)
1696     i_non_redundant = [] # Non redundant instances
1697     i_non_a_balanced = [] # Non auto-balanced instances
1698     n_offline = 0 # Count of offline nodes
1699     n_drained = 0 # Count of nodes being drained
1700     node_vol_should = {}
1701
1702     # FIXME: verify OS list
1703     # do local checksums
1704     master_files = [constants.CLUSTER_CONF_FILE]
1705
1706     file_names = ssconf.SimpleStore().GetFileList()
1707     file_names.extend(constants.ALL_CERT_FILES)
1708     file_names.extend(master_files)
1709
1710     local_checksums = utils.FingerprintFiles(file_names)
1711
1712     feedback_fn("* Gathering data (%d nodes)" % len(nodelist))
1713     node_verify_param = {
1714       constants.NV_FILELIST: file_names,
1715       constants.NV_NODELIST: [node.name for node in nodeinfo
1716                               if not node.offline],
1717       constants.NV_HYPERVISOR: hypervisors,
1718       constants.NV_NODENETTEST: [(node.name, node.primary_ip,
1719                                   node.secondary_ip) for node in nodeinfo
1720                                  if not node.offline],
1721       constants.NV_INSTANCELIST: hypervisors,
1722       constants.NV_VERSION: None,
1723       constants.NV_HVINFO: self.cfg.GetHypervisorType(),
1724       constants.NV_NODESETUP: None,
1725       constants.NV_TIME: None,
1726       }
1727
1728     if vg_name is not None:
1729       node_verify_param[constants.NV_VGLIST] = None
1730       node_verify_param[constants.NV_LVLIST] = vg_name
1731       node_verify_param[constants.NV_PVLIST] = [vg_name]
1732       node_verify_param[constants.NV_DRBDLIST] = None
1733
1734     # Build our expected cluster state
1735     node_image = dict((node.name, self.NodeImage(offline=node.offline))
1736                       for node in nodeinfo)
1737
1738     for instance in instancelist:
1739       inst_config = instanceinfo[instance]
1740
1741       for nname in inst_config.all_nodes:
1742         if nname not in node_image:
1743           # ghost node
1744           gnode = self.NodeImage()
1745           gnode.ghost = True
1746           node_image[nname] = gnode
1747
1748       inst_config.MapLVsByNode(node_vol_should)
1749
1750       pnode = inst_config.primary_node
1751       node_image[pnode].pinst.append(instance)
1752
1753       for snode in inst_config.secondary_nodes:
1754         nimg = node_image[snode]
1755         nimg.sinst.append(instance)
1756         if pnode not in nimg.sbp:
1757           nimg.sbp[pnode] = []
1758         nimg.sbp[pnode].append(instance)
1759
1760     # At this point, we have the in-memory data structures complete,
1761     # except for the runtime information, which we'll gather next
1762
1763     # Due to the way our RPC system works, exact response times cannot be
1764     # guaranteed (e.g. a broken node could run into a timeout). By keeping the
1765     # time before and after executing the request, we can at least have a time
1766     # window.
1767     nvinfo_starttime = time.time()
1768     all_nvinfo = self.rpc.call_node_verify(nodelist, node_verify_param,
1769                                            self.cfg.GetClusterName())
1770     nvinfo_endtime = time.time()
1771
1772     cluster = self.cfg.GetClusterInfo()
1773     master_node = self.cfg.GetMasterNode()
1774     all_drbd_map = self.cfg.ComputeDRBDMap()
1775
1776     feedback_fn("* Verifying node status")
1777     for node_i in nodeinfo:
1778       node = node_i.name
1779       nimg = node_image[node]
1780
1781       if node_i.offline:
1782         if verbose:
1783           feedback_fn("* Skipping offline node %s" % (node,))
1784         n_offline += 1
1785         continue
1786
1787       if node == master_node:
1788         ntype = "master"
1789       elif node_i.master_candidate:
1790         ntype = "master candidate"
1791       elif node_i.drained:
1792         ntype = "drained"
1793         n_drained += 1
1794       else:
1795         ntype = "regular"
1796       if verbose:
1797         feedback_fn("* Verifying node %s (%s)" % (node, ntype))
1798
1799       msg = all_nvinfo[node].fail_msg
1800       _ErrorIf(msg, self.ENODERPC, node, "while contacting node: %s", msg)
1801       if msg:
1802         nimg.rpc_fail = True
1803         continue
1804
1805       nresult = all_nvinfo[node].payload
1806
1807       nimg.call_ok = self._VerifyNode(node_i, nresult)
1808       self._VerifyNodeNetwork(node_i, nresult)
1809       self._VerifyNodeLVM(node_i, nresult, vg_name)
1810       self._VerifyNodeFiles(node_i, nresult, file_names, local_checksums,
1811                             master_files)
1812       self._VerifyNodeDrbd(node_i, nresult, instanceinfo, all_drbd_map)
1813       self._VerifyNodeTime(node_i, nresult, nvinfo_starttime, nvinfo_endtime)
1814
1815       self._UpdateNodeVolumes(node_i, nresult, nimg, vg_name)
1816       self._UpdateNodeInstances(node_i, nresult, nimg)
1817       self._UpdateNodeInfo(node_i, nresult, nimg, vg_name)
1818
1819     feedback_fn("* Verifying instance status")
1820     for instance in instancelist:
1821       if verbose:
1822         feedback_fn("* Verifying instance %s" % instance)
1823       inst_config = instanceinfo[instance]
1824       self._VerifyInstance(instance, inst_config, node_image)
1825       inst_nodes_offline = []
1826
1827       pnode = inst_config.primary_node
1828       pnode_img = node_image[pnode]
1829       _ErrorIf(pnode_img.rpc_fail and not pnode_img.offline,
1830                self.ENODERPC, pnode, "instance %s, connection to"
1831                " primary node failed", instance)
1832
1833       if pnode_img.offline:
1834         inst_nodes_offline.append(pnode)
1835
1836       # If the instance is non-redundant we cannot survive losing its primary
1837       # node, so we are not N+1 compliant. On the other hand we have no disk
1838       # templates with more than one secondary so that situation is not well
1839       # supported either.
1840       # FIXME: does not support file-backed instances
1841       if not inst_config.secondary_nodes:
1842         i_non_redundant.append(instance)
1843       _ErrorIf(len(inst_config.secondary_nodes) > 1, self.EINSTANCELAYOUT,
1844                instance, "instance has multiple secondary nodes: %s",
1845                utils.CommaJoin(inst_config.secondary_nodes),
1846                code=self.ETYPE_WARNING)
1847
1848       if not cluster.FillBE(inst_config)[constants.BE_AUTO_BALANCE]:
1849         i_non_a_balanced.append(instance)
1850
1851       for snode in inst_config.secondary_nodes:
1852         s_img = node_image[snode]
1853         _ErrorIf(s_img.rpc_fail and not s_img.offline, self.ENODERPC, snode,
1854                  "instance %s, connection to secondary node failed", instance)
1855
1856         if s_img.offline:
1857           inst_nodes_offline.append(snode)
1858
1859       # warn that the instance lives on offline nodes
1860       _ErrorIf(inst_nodes_offline, self.EINSTANCEBADNODE, instance,
1861                "instance lives on offline node(s) %s",
1862                utils.CommaJoin(inst_nodes_offline))
1863       # ... or ghost nodes
1864       for node in inst_config.all_nodes:
1865         _ErrorIf(node_image[node].ghost, self.EINSTANCEBADNODE, instance,
1866                  "instance lives on ghost node %s", node)
1867
1868     feedback_fn("* Verifying orphan volumes")
1869     self._VerifyOrphanVolumes(node_vol_should, node_image)
1870
1871     feedback_fn("* Verifying oprhan instances")
1872     self._VerifyOrphanInstances(instancelist, node_image)
1873
1874     if constants.VERIFY_NPLUSONE_MEM not in self.skip_set:
1875       feedback_fn("* Verifying N+1 Memory redundancy")
1876       self._VerifyNPlusOneMemory(node_image, instanceinfo)
1877
1878     feedback_fn("* Other Notes")
1879     if i_non_redundant:
1880       feedback_fn("  - NOTICE: %d non-redundant instance(s) found."
1881                   % len(i_non_redundant))
1882
1883     if i_non_a_balanced:
1884       feedback_fn("  - NOTICE: %d non-auto-balanced instance(s) found."
1885                   % len(i_non_a_balanced))
1886
1887     if n_offline:
1888       feedback_fn("  - NOTICE: %d offline node(s) found." % n_offline)
1889
1890     if n_drained:
1891       feedback_fn("  - NOTICE: %d drained node(s) found." % n_drained)
1892
1893     return not self.bad
1894
1895   def HooksCallBack(self, phase, hooks_results, feedback_fn, lu_result):
1896     """Analyze the post-hooks' result
1897
1898     This method analyses the hook result, handles it, and sends some
1899     nicely-formatted feedback back to the user.
1900
1901     @param phase: one of L{constants.HOOKS_PHASE_POST} or
1902         L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1903     @param hooks_results: the results of the multi-node hooks rpc call
1904     @param feedback_fn: function used send feedback back to the caller
1905     @param lu_result: previous Exec result
1906     @return: the new Exec result, based on the previous result
1907         and hook results
1908
1909     """
1910     # We only really run POST phase hooks, and are only interested in
1911     # their results
1912     if phase == constants.HOOKS_PHASE_POST:
1913       # Used to change hooks' output to proper indentation
1914       indent_re = re.compile('^', re.M)
1915       feedback_fn("* Hooks Results")
1916       assert hooks_results, "invalid result from hooks"
1917
1918       for node_name in hooks_results:
1919         res = hooks_results[node_name]
1920         msg = res.fail_msg
1921         test = msg and not res.offline
1922         self._ErrorIf(test, self.ENODEHOOKS, node_name,
1923                       "Communication failure in hooks execution: %s", msg)
1924         if res.offline or msg:
1925           # No need to investigate payload if node is offline or gave an error.
1926           # override manually lu_result here as _ErrorIf only
1927           # overrides self.bad
1928           lu_result = 1
1929           continue
1930         for script, hkr, output in res.payload:
1931           test = hkr == constants.HKR_FAIL
1932           self._ErrorIf(test, self.ENODEHOOKS, node_name,
1933                         "Script %s failed, output:", script)
1934           if test:
1935             output = indent_re.sub('      ', output)
1936             feedback_fn("%s" % output)
1937             lu_result = 0
1938
1939       return lu_result
1940
1941
1942 class LUVerifyDisks(NoHooksLU):
1943   """Verifies the cluster disks status.
1944
1945   """
1946   _OP_REQP = []
1947   REQ_BGL = False
1948
1949   def ExpandNames(self):
1950     self.needed_locks = {
1951       locking.LEVEL_NODE: locking.ALL_SET,
1952       locking.LEVEL_INSTANCE: locking.ALL_SET,
1953     }
1954     self.share_locks = dict.fromkeys(locking.LEVELS, 1)
1955
1956   def CheckPrereq(self):
1957     """Check prerequisites.
1958
1959     This has no prerequisites.
1960
1961     """
1962     pass
1963
1964   def Exec(self, feedback_fn):
1965     """Verify integrity of cluster disks.
1966
1967     @rtype: tuple of three items
1968     @return: a tuple of (dict of node-to-node_error, list of instances
1969         which need activate-disks, dict of instance: (node, volume) for
1970         missing volumes
1971
1972     """
1973     result = res_nodes, res_instances, res_missing = {}, [], {}
1974
1975     vg_name = self.cfg.GetVGName()
1976     nodes = utils.NiceSort(self.cfg.GetNodeList())
1977     instances = [self.cfg.GetInstanceInfo(name)
1978                  for name in self.cfg.GetInstanceList()]
1979
1980     nv_dict = {}
1981     for inst in instances:
1982       inst_lvs = {}
1983       if (not inst.admin_up or
1984           inst.disk_template not in constants.DTS_NET_MIRROR):
1985         continue
1986       inst.MapLVsByNode(inst_lvs)
1987       # transform { iname: {node: [vol,],},} to {(node, vol): iname}
1988       for node, vol_list in inst_lvs.iteritems():
1989         for vol in vol_list:
1990           nv_dict[(node, vol)] = inst
1991
1992     if not nv_dict:
1993       return result
1994
1995     node_lvs = self.rpc.call_lv_list(nodes, vg_name)
1996
1997     for node in nodes:
1998       # node_volume
1999       node_res = node_lvs[node]
2000       if node_res.offline:
2001         continue
2002       msg = node_res.fail_msg
2003       if msg:
2004         logging.warning("Error enumerating LVs on node %s: %s", node, msg)
2005         res_nodes[node] = msg
2006         continue
2007
2008       lvs = node_res.payload
2009       for lv_name, (_, _, lv_online) in lvs.items():
2010         inst = nv_dict.pop((node, lv_name), None)
2011         if (not lv_online and inst is not None
2012             and inst.name not in res_instances):
2013           res_instances.append(inst.name)
2014
2015     # any leftover items in nv_dict are missing LVs, let's arrange the
2016     # data better
2017     for key, inst in nv_dict.iteritems():
2018       if inst.name not in res_missing:
2019         res_missing[inst.name] = []
2020       res_missing[inst.name].append(key)
2021
2022     return result
2023
2024
2025 class LURepairDiskSizes(NoHooksLU):
2026   """Verifies the cluster disks sizes.
2027
2028   """
2029   _OP_REQP = ["instances"]
2030   REQ_BGL = False
2031
2032   def ExpandNames(self):
2033     if not isinstance(self.op.instances, list):
2034       raise errors.OpPrereqError("Invalid argument type 'instances'",
2035                                  errors.ECODE_INVAL)
2036
2037     if self.op.instances:
2038       self.wanted_names = []
2039       for name in self.op.instances:
2040         full_name = _ExpandInstanceName(self.cfg, name)
2041         self.wanted_names.append(full_name)
2042       self.needed_locks = {
2043         locking.LEVEL_NODE: [],
2044         locking.LEVEL_INSTANCE: self.wanted_names,
2045         }
2046       self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2047     else:
2048       self.wanted_names = None
2049       self.needed_locks = {
2050         locking.LEVEL_NODE: locking.ALL_SET,
2051         locking.LEVEL_INSTANCE: locking.ALL_SET,
2052         }
2053     self.share_locks = dict(((i, 1) for i in locking.LEVELS))
2054
2055   def DeclareLocks(self, level):
2056     if level == locking.LEVEL_NODE and self.wanted_names is not None:
2057       self._LockInstancesNodes(primary_only=True)
2058
2059   def CheckPrereq(self):
2060     """Check prerequisites.
2061
2062     This only checks the optional instance list against the existing names.
2063
2064     """
2065     if self.wanted_names is None:
2066       self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
2067
2068     self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
2069                              in self.wanted_names]
2070
2071   def _EnsureChildSizes(self, disk):
2072     """Ensure children of the disk have the needed disk size.
2073
2074     This is valid mainly for DRBD8 and fixes an issue where the
2075     children have smaller disk size.
2076
2077     @param disk: an L{ganeti.objects.Disk} object
2078
2079     """
2080     if disk.dev_type == constants.LD_DRBD8:
2081       assert disk.children, "Empty children for DRBD8?"
2082       fchild = disk.children[0]
2083       mismatch = fchild.size < disk.size
2084       if mismatch:
2085         self.LogInfo("Child disk has size %d, parent %d, fixing",
2086                      fchild.size, disk.size)
2087         fchild.size = disk.size
2088
2089       # and we recurse on this child only, not on the metadev
2090       return self._EnsureChildSizes(fchild) or mismatch
2091     else:
2092       return False
2093
2094   def Exec(self, feedback_fn):
2095     """Verify the size of cluster disks.
2096
2097     """
2098     # TODO: check child disks too
2099     # TODO: check differences in size between primary/secondary nodes
2100     per_node_disks = {}
2101     for instance in self.wanted_instances:
2102       pnode = instance.primary_node
2103       if pnode not in per_node_disks:
2104         per_node_disks[pnode] = []
2105       for idx, disk in enumerate(instance.disks):
2106         per_node_disks[pnode].append((instance, idx, disk))
2107
2108     changed = []
2109     for node, dskl in per_node_disks.items():
2110       newl = [v[2].Copy() for v in dskl]
2111       for dsk in newl:
2112         self.cfg.SetDiskID(dsk, node)
2113       result = self.rpc.call_blockdev_getsizes(node, newl)
2114       if result.fail_msg:
2115         self.LogWarning("Failure in blockdev_getsizes call to node"
2116                         " %s, ignoring", node)
2117         continue
2118       if len(result.data) != len(dskl):
2119         self.LogWarning("Invalid result from node %s, ignoring node results",
2120                         node)
2121         continue
2122       for ((instance, idx, disk), size) in zip(dskl, result.data):
2123         if size is None:
2124           self.LogWarning("Disk %d of instance %s did not return size"
2125                           " information, ignoring", idx, instance.name)
2126           continue
2127         if not isinstance(size, (int, long)):
2128           self.LogWarning("Disk %d of instance %s did not return valid"
2129                           " size information, ignoring", idx, instance.name)
2130           continue
2131         size = size >> 20
2132         if size != disk.size:
2133           self.LogInfo("Disk %d of instance %s has mismatched size,"
2134                        " correcting: recorded %d, actual %d", idx,
2135                        instance.name, disk.size, size)
2136           disk.size = size
2137           self.cfg.Update(instance, feedback_fn)
2138           changed.append((instance.name, idx, size))
2139         if self._EnsureChildSizes(disk):
2140           self.cfg.Update(instance, feedback_fn)
2141           changed.append((instance.name, idx, disk.size))
2142     return changed
2143
2144
2145 class LURenameCluster(LogicalUnit):
2146   """Rename the cluster.
2147
2148   """
2149   HPATH = "cluster-rename"
2150   HTYPE = constants.HTYPE_CLUSTER
2151   _OP_REQP = ["name"]
2152
2153   def BuildHooksEnv(self):
2154     """Build hooks env.
2155
2156     """
2157     env = {
2158       "OP_TARGET": self.cfg.GetClusterName(),
2159       "NEW_NAME": self.op.name,
2160       }
2161     mn = self.cfg.GetMasterNode()
2162     all_nodes = self.cfg.GetNodeList()
2163     return env, [mn], all_nodes
2164
2165   def CheckPrereq(self):
2166     """Verify that the passed name is a valid one.
2167
2168     """
2169     hostname = utils.GetHostInfo(self.op.name)
2170
2171     new_name = hostname.name
2172     self.ip = new_ip = hostname.ip
2173     old_name = self.cfg.GetClusterName()
2174     old_ip = self.cfg.GetMasterIP()
2175     if new_name == old_name and new_ip == old_ip:
2176       raise errors.OpPrereqError("Neither the name nor the IP address of the"
2177                                  " cluster has changed",
2178                                  errors.ECODE_INVAL)
2179     if new_ip != old_ip:
2180       if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
2181         raise errors.OpPrereqError("The given cluster IP address (%s) is"
2182                                    " reachable on the network. Aborting." %
2183                                    new_ip, errors.ECODE_NOTUNIQUE)
2184
2185     self.op.name = new_name
2186
2187   def Exec(self, feedback_fn):
2188     """Rename the cluster.
2189
2190     """
2191     clustername = self.op.name
2192     ip = self.ip
2193
2194     # shutdown the master IP
2195     master = self.cfg.GetMasterNode()
2196     result = self.rpc.call_node_stop_master(master, False)
2197     result.Raise("Could not disable the master role")
2198
2199     try:
2200       cluster = self.cfg.GetClusterInfo()
2201       cluster.cluster_name = clustername
2202       cluster.master_ip = ip
2203       self.cfg.Update(cluster, feedback_fn)
2204
2205       # update the known hosts file
2206       ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
2207       node_list = self.cfg.GetNodeList()
2208       try:
2209         node_list.remove(master)
2210       except ValueError:
2211         pass
2212       result = self.rpc.call_upload_file(node_list,
2213                                          constants.SSH_KNOWN_HOSTS_FILE)
2214       for to_node, to_result in result.iteritems():
2215         msg = to_result.fail_msg
2216         if msg:
2217           msg = ("Copy of file %s to node %s failed: %s" %
2218                  (constants.SSH_KNOWN_HOSTS_FILE, to_node, msg))
2219           self.proc.LogWarning(msg)
2220
2221     finally:
2222       result = self.rpc.call_node_start_master(master, False, False)
2223       msg = result.fail_msg
2224       if msg:
2225         self.LogWarning("Could not re-enable the master role on"
2226                         " the master, please restart manually: %s", msg)
2227
2228
2229 def _RecursiveCheckIfLVMBased(disk):
2230   """Check if the given disk or its children are lvm-based.
2231
2232   @type disk: L{objects.Disk}
2233   @param disk: the disk to check
2234   @rtype: boolean
2235   @return: boolean indicating whether a LD_LV dev_type was found or not
2236
2237   """
2238   if disk.children:
2239     for chdisk in disk.children:
2240       if _RecursiveCheckIfLVMBased(chdisk):
2241         return True
2242   return disk.dev_type == constants.LD_LV
2243
2244
2245 class LUSetClusterParams(LogicalUnit):
2246   """Change the parameters of the cluster.
2247
2248   """
2249   HPATH = "cluster-modify"
2250   HTYPE = constants.HTYPE_CLUSTER
2251   _OP_REQP = []
2252   REQ_BGL = False
2253
2254   def CheckArguments(self):
2255     """Check parameters
2256
2257     """
2258     for attr in ["candidate_pool_size",
2259                  "uid_pool", "add_uids", "remove_uids"]:
2260       if not hasattr(self.op, attr):
2261         setattr(self.op, attr, None)
2262
2263     if self.op.candidate_pool_size is not None:
2264       try:
2265         self.op.candidate_pool_size = int(self.op.candidate_pool_size)
2266       except (ValueError, TypeError), err:
2267         raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
2268                                    str(err), errors.ECODE_INVAL)
2269       if self.op.candidate_pool_size < 1:
2270         raise errors.OpPrereqError("At least one master candidate needed",
2271                                    errors.ECODE_INVAL)
2272
2273     _CheckBooleanOpField(self.op, "maintain_node_health")
2274
2275     if self.op.uid_pool:
2276       uidpool.CheckUidPool(self.op.uid_pool)
2277
2278     if self.op.add_uids:
2279       uidpool.CheckUidPool(self.op.add_uids)
2280
2281     if self.op.remove_uids:
2282       uidpool.CheckUidPool(self.op.remove_uids)
2283
2284   def ExpandNames(self):
2285     # FIXME: in the future maybe other cluster params won't require checking on
2286     # all nodes to be modified.
2287     self.needed_locks = {
2288       locking.LEVEL_NODE: locking.ALL_SET,
2289     }
2290     self.share_locks[locking.LEVEL_NODE] = 1
2291
2292   def BuildHooksEnv(self):
2293     """Build hooks env.
2294
2295     """
2296     env = {
2297       "OP_TARGET": self.cfg.GetClusterName(),
2298       "NEW_VG_NAME": self.op.vg_name,
2299       }
2300     mn = self.cfg.GetMasterNode()
2301     return env, [mn], [mn]
2302
2303   def CheckPrereq(self):
2304     """Check prerequisites.
2305
2306     This checks whether the given params don't conflict and
2307     if the given volume group is valid.
2308
2309     """
2310     if self.op.vg_name is not None and not self.op.vg_name:
2311       instances = self.cfg.GetAllInstancesInfo().values()
2312       for inst in instances:
2313         for disk in inst.disks:
2314           if _RecursiveCheckIfLVMBased(disk):
2315             raise errors.OpPrereqError("Cannot disable lvm storage while"
2316                                        " lvm-based instances exist",
2317                                        errors.ECODE_INVAL)
2318
2319     node_list = self.acquired_locks[locking.LEVEL_NODE]
2320
2321     # if vg_name not None, checks given volume group on all nodes
2322     if self.op.vg_name:
2323       vglist = self.rpc.call_vg_list(node_list)
2324       for node in node_list:
2325         msg = vglist[node].fail_msg
2326         if msg:
2327           # ignoring down node
2328           self.LogWarning("Error while gathering data on node %s"
2329                           " (ignoring node): %s", node, msg)
2330           continue
2331         vgstatus = utils.CheckVolumeGroupSize(vglist[node].payload,
2332                                               self.op.vg_name,
2333                                               constants.MIN_VG_SIZE)
2334         if vgstatus:
2335           raise errors.OpPrereqError("Error on node '%s': %s" %
2336                                      (node, vgstatus), errors.ECODE_ENVIRON)
2337
2338     self.cluster = cluster = self.cfg.GetClusterInfo()
2339     # validate params changes
2340     if self.op.beparams:
2341       utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
2342       self.new_beparams = objects.FillDict(
2343         cluster.beparams[constants.PP_DEFAULT], self.op.beparams)
2344
2345     if self.op.nicparams:
2346       utils.ForceDictType(self.op.nicparams, constants.NICS_PARAMETER_TYPES)
2347       self.new_nicparams = objects.FillDict(
2348         cluster.nicparams[constants.PP_DEFAULT], self.op.nicparams)
2349       objects.NIC.CheckParameterSyntax(self.new_nicparams)
2350       nic_errors = []
2351
2352       # check all instances for consistency
2353       for instance in self.cfg.GetAllInstancesInfo().values():
2354         for nic_idx, nic in enumerate(instance.nics):
2355           params_copy = copy.deepcopy(nic.nicparams)
2356           params_filled = objects.FillDict(self.new_nicparams, params_copy)
2357
2358           # check parameter syntax
2359           try:
2360             objects.NIC.CheckParameterSyntax(params_filled)
2361           except errors.ConfigurationError, err:
2362             nic_errors.append("Instance %s, nic/%d: %s" %
2363                               (instance.name, nic_idx, err))
2364
2365           # if we're moving instances to routed, check that they have an ip
2366           target_mode = params_filled[constants.NIC_MODE]
2367           if target_mode == constants.NIC_MODE_ROUTED and not nic.ip:
2368             nic_errors.append("Instance %s, nic/%d: routed nick with no ip" %
2369                               (instance.name, nic_idx))
2370       if nic_errors:
2371         raise errors.OpPrereqError("Cannot apply the change, errors:\n%s" %
2372                                    "\n".join(nic_errors))
2373
2374     # hypervisor list/parameters
2375     self.new_hvparams = new_hvp = objects.FillDict(cluster.hvparams, {})
2376     if self.op.hvparams:
2377       if not isinstance(self.op.hvparams, dict):
2378         raise errors.OpPrereqError("Invalid 'hvparams' parameter on input",
2379                                    errors.ECODE_INVAL)
2380       for hv_name, hv_dict in self.op.hvparams.items():
2381         if hv_name not in self.new_hvparams:
2382           self.new_hvparams[hv_name] = hv_dict
2383         else:
2384           self.new_hvparams[hv_name].update(hv_dict)
2385
2386     # os hypervisor parameters
2387     self.new_os_hvp = objects.FillDict(cluster.os_hvp, {})
2388     if self.op.os_hvp:
2389       if not isinstance(self.op.os_hvp, dict):
2390         raise errors.OpPrereqError("Invalid 'os_hvp' parameter on input",
2391                                    errors.ECODE_INVAL)
2392       for os_name, hvs in self.op.os_hvp.items():
2393         if not isinstance(hvs, dict):
2394           raise errors.OpPrereqError(("Invalid 'os_hvp' parameter on"
2395                                       " input"), errors.ECODE_INVAL)
2396         if os_name not in self.new_os_hvp:
2397           self.new_os_hvp[os_name] = hvs
2398         else:
2399           for hv_name, hv_dict in hvs.items():
2400             if hv_name not in self.new_os_hvp[os_name]:
2401               self.new_os_hvp[os_name][hv_name] = hv_dict
2402             else:
2403               self.new_os_hvp[os_name][hv_name].update(hv_dict)
2404
2405     # changes to the hypervisor list
2406     if self.op.enabled_hypervisors is not None:
2407       self.hv_list = self.op.enabled_hypervisors
2408       if not self.hv_list:
2409         raise errors.OpPrereqError("Enabled hypervisors list must contain at"
2410                                    " least one member",
2411                                    errors.ECODE_INVAL)
2412       invalid_hvs = set(self.hv_list) - constants.HYPER_TYPES
2413       if invalid_hvs:
2414         raise errors.OpPrereqError("Enabled hypervisors contains invalid"
2415                                    " entries: %s" %
2416                                    utils.CommaJoin(invalid_hvs),
2417                                    errors.ECODE_INVAL)
2418       for hv in self.hv_list:
2419         # if the hypervisor doesn't already exist in the cluster
2420         # hvparams, we initialize it to empty, and then (in both
2421         # cases) we make sure to fill the defaults, as we might not
2422         # have a complete defaults list if the hypervisor wasn't
2423         # enabled before
2424         if hv not in new_hvp:
2425           new_hvp[hv] = {}
2426         new_hvp[hv] = objects.FillDict(constants.HVC_DEFAULTS[hv], new_hvp[hv])
2427         utils.ForceDictType(new_hvp[hv], constants.HVS_PARAMETER_TYPES)
2428     else:
2429       self.hv_list = cluster.enabled_hypervisors
2430
2431     if self.op.hvparams or self.op.enabled_hypervisors is not None:
2432       # either the enabled list has changed, or the parameters have, validate
2433       for hv_name, hv_params in self.new_hvparams.items():
2434         if ((self.op.hvparams and hv_name in self.op.hvparams) or
2435             (self.op.enabled_hypervisors and
2436              hv_name in self.op.enabled_hypervisors)):
2437           # either this is a new hypervisor, or its parameters have changed
2438           hv_class = hypervisor.GetHypervisor(hv_name)
2439           utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
2440           hv_class.CheckParameterSyntax(hv_params)
2441           _CheckHVParams(self, node_list, hv_name, hv_params)
2442
2443     if self.op.os_hvp:
2444       # no need to check any newly-enabled hypervisors, since the
2445       # defaults have already been checked in the above code-block
2446       for os_name, os_hvp in self.new_os_hvp.items():
2447         for hv_name, hv_params in os_hvp.items():
2448           utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
2449           # we need to fill in the new os_hvp on top of the actual hv_p
2450           cluster_defaults = self.new_hvparams.get(hv_name, {})
2451           new_osp = objects.FillDict(cluster_defaults, hv_params)
2452           hv_class = hypervisor.GetHypervisor(hv_name)
2453           hv_class.CheckParameterSyntax(new_osp)
2454           _CheckHVParams(self, node_list, hv_name, new_osp)
2455
2456
2457   def Exec(self, feedback_fn):
2458     """Change the parameters of the cluster.
2459
2460     """
2461     if self.op.vg_name is not None:
2462       new_volume = self.op.vg_name
2463       if not new_volume:
2464         new_volume = None
2465       if new_volume != self.cfg.GetVGName():
2466         self.cfg.SetVGName(new_volume)
2467       else:
2468         feedback_fn("Cluster LVM configuration already in desired"
2469                     " state, not changing")
2470     if self.op.hvparams:
2471       self.cluster.hvparams = self.new_hvparams
2472     if self.op.os_hvp:
2473       self.cluster.os_hvp = self.new_os_hvp
2474     if self.op.enabled_hypervisors is not None:
2475       self.cluster.hvparams = self.new_hvparams
2476       self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
2477     if self.op.beparams:
2478       self.cluster.beparams[constants.PP_DEFAULT] = self.new_beparams
2479     if self.op.nicparams:
2480       self.cluster.nicparams[constants.PP_DEFAULT] = self.new_nicparams
2481
2482     if self.op.candidate_pool_size is not None:
2483       self.cluster.candidate_pool_size = self.op.candidate_pool_size
2484       # we need to update the pool size here, otherwise the save will fail
2485       _AdjustCandidatePool(self, [])
2486
2487     if self.op.maintain_node_health is not None:
2488       self.cluster.maintain_node_health = self.op.maintain_node_health
2489
2490     if self.op.add_uids is not None:
2491       uidpool.AddToUidPool(self.cluster.uid_pool, self.op.add_uids)
2492
2493     if self.op.remove_uids is not None:
2494       uidpool.RemoveFromUidPool(self.cluster.uid_pool, self.op.remove_uids)
2495
2496     if self.op.uid_pool is not None:
2497       self.cluster.uid_pool = self.op.uid_pool
2498
2499     self.cfg.Update(self.cluster, feedback_fn)
2500
2501
2502 def _RedistributeAncillaryFiles(lu, additional_nodes=None):
2503   """Distribute additional files which are part of the cluster configuration.
2504
2505   ConfigWriter takes care of distributing the config and ssconf files, but
2506   there are more files which should be distributed to all nodes. This function
2507   makes sure those are copied.
2508
2509   @param lu: calling logical unit
2510   @param additional_nodes: list of nodes not in the config to distribute to
2511
2512   """
2513   # 1. Gather target nodes
2514   myself = lu.cfg.GetNodeInfo(lu.cfg.GetMasterNode())
2515   dist_nodes = lu.cfg.GetOnlineNodeList()
2516   if additional_nodes is not None:
2517     dist_nodes.extend(additional_nodes)
2518   if myself.name in dist_nodes:
2519     dist_nodes.remove(myself.name)
2520
2521   # 2. Gather files to distribute
2522   dist_files = set([constants.ETC_HOSTS,
2523                     constants.SSH_KNOWN_HOSTS_FILE,
2524                     constants.RAPI_CERT_FILE,
2525                     constants.RAPI_USERS_FILE,
2526                     constants.CONFD_HMAC_KEY,
2527                    ])
2528
2529   enabled_hypervisors = lu.cfg.GetClusterInfo().enabled_hypervisors
2530   for hv_name in enabled_hypervisors:
2531     hv_class = hypervisor.GetHypervisor(hv_name)
2532     dist_files.update(hv_class.GetAncillaryFiles())
2533
2534   # 3. Perform the files upload
2535   for fname in dist_files:
2536     if os.path.exists(fname):
2537       result = lu.rpc.call_upload_file(dist_nodes, fname)
2538       for to_node, to_result in result.items():
2539         msg = to_result.fail_msg
2540         if msg:
2541           msg = ("Copy of file %s to node %s failed: %s" %
2542                  (fname, to_node, msg))
2543           lu.proc.LogWarning(msg)
2544
2545
2546 class LURedistributeConfig(NoHooksLU):
2547   """Force the redistribution of cluster configuration.
2548
2549   This is a very simple LU.
2550
2551   """
2552   _OP_REQP = []
2553   REQ_BGL = False
2554
2555   def ExpandNames(self):
2556     self.needed_locks = {
2557       locking.LEVEL_NODE: locking.ALL_SET,
2558     }
2559     self.share_locks[locking.LEVEL_NODE] = 1
2560
2561   def CheckPrereq(self):
2562     """Check prerequisites.
2563
2564     """
2565
2566   def Exec(self, feedback_fn):
2567     """Redistribute the configuration.
2568
2569     """
2570     self.cfg.Update(self.cfg.GetClusterInfo(), feedback_fn)
2571     _RedistributeAncillaryFiles(self)
2572
2573
2574 def _WaitForSync(lu, instance, oneshot=False):
2575   """Sleep and poll for an instance's disk to sync.
2576
2577   """
2578   if not instance.disks:
2579     return True
2580
2581   if not oneshot:
2582     lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
2583
2584   node = instance.primary_node
2585
2586   for dev in instance.disks:
2587     lu.cfg.SetDiskID(dev, node)
2588
2589   # TODO: Convert to utils.Retry
2590
2591   retries = 0
2592   degr_retries = 10 # in seconds, as we sleep 1 second each time
2593   while True:
2594     max_time = 0
2595     done = True
2596     cumul_degraded = False
2597     rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
2598     msg = rstats.fail_msg
2599     if msg:
2600       lu.LogWarning("Can't get any data from node %s: %s", node, msg)
2601       retries += 1
2602       if retries >= 10:
2603         raise errors.RemoteError("Can't contact node %s for mirror data,"
2604                                  " aborting." % node)
2605       time.sleep(6)
2606       continue
2607     rstats = rstats.payload
2608     retries = 0
2609     for i, mstat in enumerate(rstats):
2610       if mstat is None:
2611         lu.LogWarning("Can't compute data for node %s/%s",
2612                            node, instance.disks[i].iv_name)
2613         continue
2614
2615       cumul_degraded = (cumul_degraded or
2616                         (mstat.is_degraded and mstat.sync_percent is None))
2617       if mstat.sync_percent is not None:
2618         done = False
2619         if mstat.estimated_time is not None:
2620           rem_time = "%d estimated seconds remaining" % mstat.estimated_time
2621           max_time = mstat.estimated_time
2622         else:
2623           rem_time = "no time estimate"
2624         lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
2625                         (instance.disks[i].iv_name, mstat.sync_percent,
2626                          rem_time))
2627
2628     # if we're done but degraded, let's do a few small retries, to
2629     # make sure we see a stable and not transient situation; therefore
2630     # we force restart of the loop
2631     if (done or oneshot) and cumul_degraded and degr_retries > 0:
2632       logging.info("Degraded disks found, %d retries left", degr_retries)
2633       degr_retries -= 1
2634       time.sleep(1)
2635       continue
2636
2637     if done or oneshot:
2638       break
2639
2640     time.sleep(min(60, max_time))
2641
2642   if done:
2643     lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
2644   return not cumul_degraded
2645
2646
2647 def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
2648   """Check that mirrors are not degraded.
2649
2650   The ldisk parameter, if True, will change the test from the
2651   is_degraded attribute (which represents overall non-ok status for
2652   the device(s)) to the ldisk (representing the local storage status).
2653
2654   """
2655   lu.cfg.SetDiskID(dev, node)
2656
2657   result = True
2658
2659   if on_primary or dev.AssembleOnSecondary():
2660     rstats = lu.rpc.call_blockdev_find(node, dev)
2661     msg = rstats.fail_msg
2662     if msg:
2663       lu.LogWarning("Can't find disk on node %s: %s", node, msg)
2664       result = False
2665     elif not rstats.payload:
2666       lu.LogWarning("Can't find disk on node %s", node)
2667       result = False
2668     else:
2669       if ldisk:
2670         result = result and rstats.payload.ldisk_status == constants.LDS_OKAY
2671       else:
2672         result = result and not rstats.payload.is_degraded
2673
2674   if dev.children:
2675     for child in dev.children:
2676       result = result and _CheckDiskConsistency(lu, child, node, on_primary)
2677
2678   return result
2679
2680
2681 class LUDiagnoseOS(NoHooksLU):
2682   """Logical unit for OS diagnose/query.
2683
2684   """
2685   _OP_REQP = ["output_fields", "names"]
2686   REQ_BGL = False
2687   _FIELDS_STATIC = utils.FieldSet()
2688   _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status", "variants")
2689   # Fields that need calculation of global os validity
2690   _FIELDS_NEEDVALID = frozenset(["valid", "variants"])
2691
2692   def ExpandNames(self):
2693     if self.op.names:
2694       raise errors.OpPrereqError("Selective OS query not supported",
2695                                  errors.ECODE_INVAL)
2696
2697     _CheckOutputFields(static=self._FIELDS_STATIC,
2698                        dynamic=self._FIELDS_DYNAMIC,
2699                        selected=self.op.output_fields)
2700
2701     # Lock all nodes, in shared mode
2702     # Temporary removal of locks, should be reverted later
2703     # TODO: reintroduce locks when they are lighter-weight
2704     self.needed_locks = {}
2705     #self.share_locks[locking.LEVEL_NODE] = 1
2706     #self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
2707
2708   def CheckPrereq(self):
2709     """Check prerequisites.
2710
2711     """
2712
2713   @staticmethod
2714   def _DiagnoseByOS(rlist):
2715     """Remaps a per-node return list into an a per-os per-node dictionary
2716
2717     @param rlist: a map with node names as keys and OS objects as values
2718
2719     @rtype: dict
2720     @return: a dictionary with osnames as keys and as value another map, with
2721         nodes as keys and tuples of (path, status, diagnose) as values, eg::
2722
2723           {"debian-etch": {"node1": [(/usr/lib/..., True, ""),
2724                                      (/srv/..., False, "invalid api")],
2725                            "node2": [(/srv/..., True, "")]}
2726           }
2727
2728     """
2729     all_os = {}
2730     # we build here the list of nodes that didn't fail the RPC (at RPC
2731     # level), so that nodes with a non-responding node daemon don't
2732     # make all OSes invalid
2733     good_nodes = [node_name for node_name in rlist
2734                   if not rlist[node_name].fail_msg]
2735     for node_name, nr in rlist.items():
2736       if nr.fail_msg or not nr.payload:
2737         continue
2738       for name, path, status, diagnose, variants in nr.payload:
2739         if name not in all_os:
2740           # build a list of nodes for this os containing empty lists
2741           # for each node in node_list
2742           all_os[name] = {}
2743           for nname in good_nodes:
2744             all_os[name][nname] = []
2745         all_os[name][node_name].append((path, status, diagnose, variants))
2746     return all_os
2747
2748   def Exec(self, feedback_fn):
2749     """Compute the list of OSes.
2750
2751     """
2752     valid_nodes = [node for node in self.cfg.GetOnlineNodeList()]
2753     node_data = self.rpc.call_os_diagnose(valid_nodes)
2754     pol = self._DiagnoseByOS(node_data)
2755     output = []
2756     calc_valid = self._FIELDS_NEEDVALID.intersection(self.op.output_fields)
2757     calc_variants = "variants" in self.op.output_fields
2758
2759     for os_name, os_data in pol.items():
2760       row = []
2761       if calc_valid:
2762         valid = True
2763         variants = None
2764         for osl in os_data.values():
2765           valid = valid and osl and osl[0][1]
2766           if not valid:
2767             variants = None
2768             break
2769           if calc_variants:
2770             node_variants = osl[0][3]
2771             if variants is None:
2772               variants = node_variants
2773             else:
2774               variants = [v for v in variants if v in node_variants]
2775
2776       for field in self.op.output_fields:
2777         if field == "name":
2778           val = os_name
2779         elif field == "valid":
2780           val = valid
2781         elif field == "node_status":
2782           # this is just a copy of the dict
2783           val = {}
2784           for node_name, nos_list in os_data.items():
2785             val[node_name] = nos_list
2786         elif field == "variants":
2787           val =  variants
2788         else:
2789           raise errors.ParameterError(field)
2790         row.append(val)
2791       output.append(row)
2792
2793     return output
2794
2795
2796 class LURemoveNode(LogicalUnit):
2797   """Logical unit for removing a node.
2798
2799   """
2800   HPATH = "node-remove"
2801   HTYPE = constants.HTYPE_NODE
2802   _OP_REQP = ["node_name"]
2803
2804   def BuildHooksEnv(self):
2805     """Build hooks env.
2806
2807     This doesn't run on the target node in the pre phase as a failed
2808     node would then be impossible to remove.
2809
2810     """
2811     env = {
2812       "OP_TARGET": self.op.node_name,
2813       "NODE_NAME": self.op.node_name,
2814       }
2815     all_nodes = self.cfg.GetNodeList()
2816     try:
2817       all_nodes.remove(self.op.node_name)
2818     except ValueError:
2819       logging.warning("Node %s which is about to be removed not found"
2820                       " in the all nodes list", self.op.node_name)
2821     return env, all_nodes, all_nodes
2822
2823   def CheckPrereq(self):
2824     """Check prerequisites.
2825
2826     This checks:
2827      - the node exists in the configuration
2828      - it does not have primary or secondary instances
2829      - it's not the master
2830
2831     Any errors are signaled by raising errors.OpPrereqError.
2832
2833     """
2834     self.op.node_name = _ExpandNodeName(self.cfg, self.op.node_name)
2835     node = self.cfg.GetNodeInfo(self.op.node_name)
2836     assert node is not None
2837
2838     instance_list = self.cfg.GetInstanceList()
2839
2840     masternode = self.cfg.GetMasterNode()
2841     if node.name == masternode:
2842       raise errors.OpPrereqError("Node is the master node,"
2843                                  " you need to failover first.",
2844                                  errors.ECODE_INVAL)
2845
2846     for instance_name in instance_list:
2847       instance = self.cfg.GetInstanceInfo(instance_name)
2848       if node.name in instance.all_nodes:
2849         raise errors.OpPrereqError("Instance %s is still running on the node,"
2850                                    " please remove first." % instance_name,
2851                                    errors.ECODE_INVAL)
2852     self.op.node_name = node.name
2853     self.node = node
2854
2855   def Exec(self, feedback_fn):
2856     """Removes the node from the cluster.
2857
2858     """
2859     node = self.node
2860     logging.info("Stopping the node daemon and removing configs from node %s",
2861                  node.name)
2862
2863     modify_ssh_setup = self.cfg.GetClusterInfo().modify_ssh_setup
2864
2865     # Promote nodes to master candidate as needed
2866     _AdjustCandidatePool(self, exceptions=[node.name])
2867     self.context.RemoveNode(node.name)
2868
2869     # Run post hooks on the node before it's removed
2870     hm = self.proc.hmclass(self.rpc.call_hooks_runner, self)
2871     try:
2872       hm.RunPhase(constants.HOOKS_PHASE_POST, [node.name])
2873     except:
2874       # pylint: disable-msg=W0702
2875       self.LogWarning("Errors occurred running hooks on %s" % node.name)
2876
2877     result = self.rpc.call_node_leave_cluster(node.name, modify_ssh_setup)
2878     msg = result.fail_msg
2879     if msg:
2880       self.LogWarning("Errors encountered on the remote node while leaving"
2881                       " the cluster: %s", msg)
2882
2883
2884 class LUQueryNodes(NoHooksLU):
2885   """Logical unit for querying nodes.
2886
2887   """
2888   # pylint: disable-msg=W0142
2889   _OP_REQP = ["output_fields", "names", "use_locking"]
2890   REQ_BGL = False
2891
2892   _SIMPLE_FIELDS = ["name", "serial_no", "ctime", "mtime", "uuid",
2893                     "master_candidate", "offline", "drained"]
2894
2895   _FIELDS_DYNAMIC = utils.FieldSet(
2896     "dtotal", "dfree",
2897     "mtotal", "mnode", "mfree",
2898     "bootid",
2899     "ctotal", "cnodes", "csockets",
2900     )
2901
2902   _FIELDS_STATIC = utils.FieldSet(*[
2903     "pinst_cnt", "sinst_cnt",
2904     "pinst_list", "sinst_list",
2905     "pip", "sip", "tags",
2906     "master",
2907     "role"] + _SIMPLE_FIELDS
2908     )
2909
2910   def ExpandNames(self):
2911     _CheckOutputFields(static=self._FIELDS_STATIC,
2912                        dynamic=self._FIELDS_DYNAMIC,
2913                        selected=self.op.output_fields)
2914
2915     self.needed_locks = {}
2916     self.share_locks[locking.LEVEL_NODE] = 1
2917
2918     if self.op.names:
2919       self.wanted = _GetWantedNodes(self, self.op.names)
2920     else:
2921       self.wanted = locking.ALL_SET
2922
2923     self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
2924     self.do_locking = self.do_node_query and self.op.use_locking
2925     if self.do_locking:
2926       # if we don't request only static fields, we need to lock the nodes
2927       self.needed_locks[locking.LEVEL_NODE] = self.wanted
2928
2929   def CheckPrereq(self):
2930     """Check prerequisites.
2931
2932     """
2933     # The validation of the node list is done in the _GetWantedNodes,
2934     # if non empty, and if empty, there's no validation to do
2935     pass
2936
2937   def Exec(self, feedback_fn):
2938     """Computes the list of nodes and their attributes.
2939
2940     """
2941     all_info = self.cfg.GetAllNodesInfo()
2942     if self.do_locking:
2943       nodenames = self.acquired_locks[locking.LEVEL_NODE]
2944     elif self.wanted != locking.ALL_SET:
2945       nodenames = self.wanted
2946       missing = set(nodenames).difference(all_info.keys())
2947       if missing:
2948         raise errors.OpExecError(
2949           "Some nodes were removed before retrieving their data: %s" % missing)
2950     else:
2951       nodenames = all_info.keys()
2952
2953     nodenames = utils.NiceSort(nodenames)
2954     nodelist = [all_info[name] for name in nodenames]
2955
2956     # begin data gathering
2957
2958     if self.do_node_query:
2959       live_data = {}
2960       node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
2961                                           self.cfg.GetHypervisorType())
2962       for name in nodenames:
2963         nodeinfo = node_data[name]
2964         if not nodeinfo.fail_msg and nodeinfo.payload:
2965           nodeinfo = nodeinfo.payload
2966           fn = utils.TryConvert
2967           live_data[name] = {
2968             "mtotal": fn(int, nodeinfo.get('memory_total', None)),
2969             "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
2970             "mfree": fn(int, nodeinfo.get('memory_free', None)),
2971             "dtotal": fn(int, nodeinfo.get('vg_size', None)),
2972             "dfree": fn(int, nodeinfo.get('vg_free', None)),
2973             "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
2974             "bootid": nodeinfo.get('bootid', None),
2975             "cnodes": fn(int, nodeinfo.get('cpu_nodes', None)),
2976             "csockets": fn(int, nodeinfo.get('cpu_sockets', None)),
2977             }
2978         else:
2979           live_data[name] = {}
2980     else:
2981       live_data = dict.fromkeys(nodenames, {})
2982
2983     node_to_primary = dict([(name, set()) for name in nodenames])
2984     node_to_secondary = dict([(name, set()) for name in nodenames])
2985
2986     inst_fields = frozenset(("pinst_cnt", "pinst_list",
2987                              "sinst_cnt", "sinst_list"))
2988     if inst_fields & frozenset(self.op.output_fields):
2989       inst_data = self.cfg.GetAllInstancesInfo()
2990
2991       for inst in inst_data.values():
2992         if inst.primary_node in node_to_primary:
2993           node_to_primary[inst.primary_node].add(inst.name)
2994         for secnode in inst.secondary_nodes:
2995           if secnode in node_to_secondary:
2996             node_to_secondary[secnode].add(inst.name)
2997
2998     master_node = self.cfg.GetMasterNode()
2999
3000     # end data gathering
3001
3002     output = []
3003     for node in nodelist:
3004       node_output = []
3005       for field in self.op.output_fields:
3006         if field in self._SIMPLE_FIELDS:
3007           val = getattr(node, field)
3008         elif field == "pinst_list":
3009           val = list(node_to_primary[node.name])
3010         elif field == "sinst_list":
3011           val = list(node_to_secondary[node.name])
3012         elif field == "pinst_cnt":
3013           val = len(node_to_primary[node.name])
3014         elif field == "sinst_cnt":
3015           val = len(node_to_secondary[node.name])
3016         elif field == "pip":
3017           val = node.primary_ip
3018         elif field == "sip":
3019           val = node.secondary_ip
3020         elif field == "tags":
3021           val = list(node.GetTags())
3022         elif field == "master":
3023           val = node.name == master_node
3024         elif self._FIELDS_DYNAMIC.Matches(field):
3025           val = live_data[node.name].get(field, None)
3026         elif field == "role":
3027           if node.name == master_node:
3028             val = "M"
3029           elif node.master_candidate:
3030             val = "C"
3031           elif node.drained:
3032             val = "D"
3033           elif node.offline:
3034             val = "O"
3035           else:
3036             val = "R"
3037         else:
3038           raise errors.ParameterError(field)
3039         node_output.append(val)
3040       output.append(node_output)
3041
3042     return output
3043
3044
3045 class LUQueryNodeVolumes(NoHooksLU):
3046   """Logical unit for getting volumes on node(s).
3047
3048   """
3049   _OP_REQP = ["nodes", "output_fields"]
3050   REQ_BGL = False
3051   _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
3052   _FIELDS_STATIC = utils.FieldSet("node")
3053
3054   def ExpandNames(self):
3055     _CheckOutputFields(static=self._FIELDS_STATIC,
3056                        dynamic=self._FIELDS_DYNAMIC,
3057                        selected=self.op.output_fields)
3058
3059     self.needed_locks = {}
3060     self.share_locks[locking.LEVEL_NODE] = 1
3061     if not self.op.nodes:
3062       self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
3063     else:
3064       self.needed_locks[locking.LEVEL_NODE] = \
3065         _GetWantedNodes(self, self.op.nodes)
3066
3067   def CheckPrereq(self):
3068     """Check prerequisites.
3069
3070     This checks that the fields required are valid output fields.
3071
3072     """
3073     self.nodes = self.acquired_locks[locking.LEVEL_NODE]
3074
3075   def Exec(self, feedback_fn):
3076     """Computes the list of nodes and their attributes.
3077
3078     """
3079     nodenames = self.nodes
3080     volumes = self.rpc.call_node_volumes(nodenames)
3081
3082     ilist = [self.cfg.GetInstanceInfo(iname) for iname
3083              in self.cfg.GetInstanceList()]
3084
3085     lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
3086
3087     output = []
3088     for node in nodenames:
3089       nresult = volumes[node]
3090       if nresult.offline:
3091         continue
3092       msg = nresult.fail_msg
3093       if msg:
3094         self.LogWarning("Can't compute volume data on node %s: %s", node, msg)
3095         continue
3096
3097       node_vols = nresult.payload[:]
3098       node_vols.sort(key=lambda vol: vol['dev'])
3099
3100       for vol in node_vols:
3101         node_output = []
3102         for field in self.op.output_fields:
3103           if field == "node":
3104             val = node
3105           elif field == "phys":
3106             val = vol['dev']
3107           elif field == "vg":
3108             val = vol['vg']
3109           elif field == "name":
3110             val = vol['name']
3111           elif field == "size":
3112             val = int(float(vol['size']))
3113           elif field == "instance":
3114             for inst in ilist:
3115               if node not in lv_by_node[inst]:
3116                 continue
3117               if vol['name'] in lv_by_node[inst][node]:
3118                 val = inst.name
3119                 break
3120             else:
3121               val = '-'
3122           else:
3123             raise errors.ParameterError(field)
3124           node_output.append(str(val))
3125
3126         output.append(node_output)
3127
3128     return output
3129
3130
3131 class LUQueryNodeStorage(NoHooksLU):
3132   """Logical unit for getting information on storage units on node(s).
3133
3134   """
3135   _OP_REQP = ["nodes", "storage_type", "output_fields"]
3136   REQ_BGL = False
3137   _FIELDS_STATIC = utils.FieldSet(constants.SF_NODE)
3138
3139   def CheckArguments(self):
3140     _CheckStorageType(self.op.storage_type)
3141
3142     _CheckOutputFields(static=self._FIELDS_STATIC,
3143                        dynamic=utils.FieldSet(*constants.VALID_STORAGE_FIELDS),
3144                        selected=self.op.output_fields)
3145
3146   def ExpandNames(self):
3147     self.needed_locks = {}
3148     self.share_locks[locking.LEVEL_NODE] = 1
3149
3150     if self.op.nodes:
3151       self.needed_locks[locking.LEVEL_NODE] = \
3152         _GetWantedNodes(self, self.op.nodes)
3153     else:
3154       self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
3155
3156   def CheckPrereq(self):
3157     """Check prerequisites.
3158
3159     This checks that the fields required are valid output fields.
3160
3161     """
3162     self.op.name = getattr(self.op, "name", None)
3163
3164     self.nodes = self.acquired_locks[locking.LEVEL_NODE]
3165
3166   def Exec(self, feedback_fn):
3167     """Computes the list of nodes and their attributes.
3168
3169     """
3170     # Always get name to sort by
3171     if constants.SF_NAME in self.op.output_fields:
3172       fields = self.op.output_fields[:]
3173     else:
3174       fields = [constants.SF_NAME] + self.op.output_fields
3175
3176     # Never ask for node or type as it's only known to the LU
3177     for extra in [constants.SF_NODE, constants.SF_TYPE]:
3178       while extra in fields:
3179         fields.remove(extra)
3180
3181     field_idx = dict([(name, idx) for (idx, name) in enumerate(fields)])
3182     name_idx = field_idx[constants.SF_NAME]
3183
3184     st_args = _GetStorageTypeArgs(self.cfg, self.op.storage_type)
3185     data = self.rpc.call_storage_list(self.nodes,
3186                                       self.op.storage_type, st_args,
3187                                       self.op.name, fields)
3188
3189     result = []
3190
3191     for node in utils.NiceSort(self.nodes):
3192       nresult = data[node]
3193       if nresult.offline:
3194         continue
3195
3196       msg = nresult.fail_msg
3197       if msg:
3198         self.LogWarning("Can't get storage data from node %s: %s", node, msg)
3199         continue
3200
3201       rows = dict([(row[name_idx], row) for row in nresult.payload])
3202
3203       for name in utils.NiceSort(rows.keys()):
3204         row = rows[name]
3205
3206         out = []
3207
3208         for field in self.op.output_fields:
3209           if field == constants.SF_NODE:
3210             val = node
3211           elif field == constants.SF_TYPE:
3212             val = self.op.storage_type
3213           elif field in field_idx:
3214             val = row[field_idx[field]]
3215           else:
3216             raise errors.ParameterError(field)
3217
3218           out.append(val)
3219
3220         result.append(out)
3221
3222     return result
3223
3224
3225 class LUModifyNodeStorage(NoHooksLU):
3226   """Logical unit for modifying a storage volume on a node.
3227
3228   """
3229   _OP_REQP = ["node_name", "storage_type", "name", "changes"]
3230   REQ_BGL = False
3231
3232   def CheckArguments(self):
3233     self.opnode_name = _ExpandNodeName(self.cfg, self.op.node_name)
3234
3235     _CheckStorageType(self.op.storage_type)
3236
3237   def ExpandNames(self):
3238     self.needed_locks = {
3239       locking.LEVEL_NODE: self.op.node_name,
3240       }
3241
3242   def CheckPrereq(self):
3243     """Check prerequisites.
3244
3245     """
3246     storage_type = self.op.storage_type
3247
3248     try:
3249       modifiable = constants.MODIFIABLE_STORAGE_FIELDS[storage_type]
3250     except KeyError:
3251       raise errors.OpPrereqError("Storage units of type '%s' can not be"
3252                                  " modified" % storage_type,
3253                                  errors.ECODE_INVAL)
3254
3255     diff = set(self.op.changes.keys()) - modifiable
3256     if diff:
3257       raise errors.OpPrereqError("The following fields can not be modified for"
3258                                  " storage units of type '%s': %r" %
3259                                  (storage_type, list(diff)),
3260                                  errors.ECODE_INVAL)
3261
3262   def Exec(self, feedback_fn):
3263     """Computes the list of nodes and their attributes.
3264
3265     """
3266     st_args = _GetStorageTypeArgs(self.cfg, self.op.storage_type)
3267     result = self.rpc.call_storage_modify(self.op.node_name,
3268                                           self.op.storage_type, st_args,
3269                                           self.op.name, self.op.changes)
3270     result.Raise("Failed to modify storage unit '%s' on %s" %
3271                  (self.op.name, self.op.node_name))
3272
3273
3274 class LUAddNode(LogicalUnit):
3275   """Logical unit for adding node to the cluster.
3276
3277   """
3278   HPATH = "node-add"
3279   HTYPE = constants.HTYPE_NODE
3280   _OP_REQP = ["node_name"]
3281
3282   def CheckArguments(self):
3283     # validate/normalize the node name
3284     self.op.node_name = utils.HostInfo.NormalizeName(self.op.node_name)
3285
3286   def BuildHooksEnv(self):
3287     """Build hooks env.
3288
3289     This will run on all nodes before, and on all nodes + the new node after.
3290
3291     """
3292     env = {
3293       "OP_TARGET": self.op.node_name,
3294       "NODE_NAME": self.op.node_name,
3295       "NODE_PIP": self.op.primary_ip,
3296       "NODE_SIP": self.op.secondary_ip,
3297       }
3298     nodes_0 = self.cfg.GetNodeList()
3299     nodes_1 = nodes_0 + [self.op.node_name, ]
3300     return env, nodes_0, nodes_1
3301
3302   def CheckPrereq(self):
3303     """Check prerequisites.
3304
3305     This checks:
3306      - the new node is not already in the config
3307      - it is resolvable
3308      - its parameters (single/dual homed) matches the cluster
3309
3310     Any errors are signaled by raising errors.OpPrereqError.
3311
3312     """
3313     node_name = self.op.node_name
3314     cfg = self.cfg
3315
3316     dns_data = utils.GetHostInfo(node_name)
3317
3318     node = dns_data.name
3319     primary_ip = self.op.primary_ip = dns_data.ip
3320     secondary_ip = getattr(self.op, "secondary_ip", None)
3321     if secondary_ip is None:
3322       secondary_ip = primary_ip
3323     if not utils.IsValidIP(secondary_ip):
3324       raise errors.OpPrereqError("Invalid secondary IP given",
3325                                  errors.ECODE_INVAL)
3326     self.op.secondary_ip = secondary_ip
3327
3328     node_list = cfg.GetNodeList()
3329     if not self.op.readd and node in node_list:
3330       raise errors.OpPrereqError("Node %s is already in the configuration" %
3331                                  node, errors.ECODE_EXISTS)
3332     elif self.op.readd and node not in node_list:
3333       raise errors.OpPrereqError("Node %s is not in the configuration" % node,
3334                                  errors.ECODE_NOENT)
3335
3336     self.changed_primary_ip = False
3337
3338     for existing_node_name in node_list:
3339       existing_node = cfg.GetNodeInfo(existing_node_name)
3340
3341       if self.op.readd and node == existing_node_name:
3342         if existing_node.secondary_ip != secondary_ip:
3343           raise errors.OpPrereqError("Readded node doesn't have the same IP"
3344                                      " address configuration as before",
3345                                      errors.ECODE_INVAL)
3346         if existing_node.primary_ip != primary_ip:
3347           self.changed_primary_ip = True
3348
3349         continue
3350
3351       if (existing_node.primary_ip == primary_ip or
3352           existing_node.secondary_ip == primary_ip or
3353           existing_node.primary_ip == secondary_ip or
3354           existing_node.secondary_ip == secondary_ip):
3355         raise errors.OpPrereqError("New node ip address(es) conflict with"
3356                                    " existing node %s" % existing_node.name,
3357                                    errors.ECODE_NOTUNIQUE)
3358
3359     # check that the type of the node (single versus dual homed) is the
3360     # same as for the master
3361     myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
3362     master_singlehomed = myself.secondary_ip == myself.primary_ip
3363     newbie_singlehomed = secondary_ip == primary_ip
3364     if master_singlehomed != newbie_singlehomed:
3365       if master_singlehomed:
3366         raise errors.OpPrereqError("The master has no private ip but the"
3367                                    " new node has one",
3368                                    errors.ECODE_INVAL)
3369       else:
3370         raise errors.OpPrereqError("The master has a private ip but the"
3371                                    " new node doesn't have one",
3372                                    errors.ECODE_INVAL)
3373
3374     # checks reachability
3375     if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
3376       raise errors.OpPrereqError("Node not reachable by ping",
3377                                  errors.ECODE_ENVIRON)
3378
3379     if not newbie_singlehomed:
3380       # check reachability from my secondary ip to newbie's secondary ip
3381       if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
3382                            source=myself.secondary_ip):
3383         raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
3384                                    " based ping to noded port",
3385                                    errors.ECODE_ENVIRON)
3386
3387     if self.op.readd:
3388       exceptions = [node]
3389     else:
3390       exceptions = []
3391
3392     self.master_candidate = _DecideSelfPromotion(self, exceptions=exceptions)
3393
3394     if self.op.readd:
3395       self.new_node = self.cfg.GetNodeInfo(node)
3396       assert self.new_node is not None, "Can't retrieve locked node %s" % node
3397     else:
3398       self.new_node = objects.Node(name=node,
3399                                    primary_ip=primary_ip,
3400                                    secondary_ip=secondary_ip,
3401                                    master_candidate=self.master_candidate,
3402                                    offline=False, drained=False)
3403
3404   def Exec(self, feedback_fn):
3405     """Adds the new node to the cluster.
3406
3407     """
3408     new_node = self.new_node
3409     node = new_node.name
3410
3411     # for re-adds, reset the offline/drained/master-candidate flags;
3412     # we need to reset here, otherwise offline would prevent RPC calls
3413     # later in the procedure; this also means that if the re-add
3414     # fails, we are left with a non-offlined, broken node
3415     if self.op.readd:
3416       new_node.drained = new_node.offline = False # pylint: disable-msg=W0201
3417       self.LogInfo("Readding a node, the offline/drained flags were reset")
3418       # if we demote the node, we do cleanup later in the procedure
3419       new_node.master_candidate = self.master_candidate
3420       if self.changed_primary_ip:
3421         new_node.primary_ip = self.op.primary_ip
3422
3423     # notify the user about any possible mc promotion
3424     if new_node.master_candidate:
3425       self.LogInfo("Node will be a master candidate")
3426
3427     # check connectivity
3428     result = self.rpc.call_version([node])[node]
3429     result.Raise("Can't get version information from node %s" % node)
3430     if constants.PROTOCOL_VERSION == result.payload:
3431       logging.info("Communication to node %s fine, sw version %s match",
3432                    node, result.payload)
3433     else:
3434       raise errors.OpExecError("Version mismatch master version %s,"
3435                                " node version %s" %
3436                                (constants.PROTOCOL_VERSION, result.payload))
3437
3438     # setup ssh on node
3439     if self.cfg.GetClusterInfo().modify_ssh_setup:
3440       logging.info("Copy ssh key to node %s", node)
3441       priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
3442       keyarray = []
3443       keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
3444                   constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
3445                   priv_key, pub_key]
3446
3447       for i in keyfiles:
3448         keyarray.append(utils.ReadFile(i))
3449
3450       result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
3451                                       keyarray[2], keyarray[3], keyarray[4],
3452                                       keyarray[5])
3453       result.Raise("Cannot transfer ssh keys to the new node")
3454
3455     # Add node to our /etc/hosts, and add key to known_hosts
3456     if self.cfg.GetClusterInfo().modify_etc_hosts:
3457       utils.AddHostToEtcHosts(new_node.name)
3458
3459     if new_node.secondary_ip != new_node.primary_ip:
3460       result = self.rpc.call_node_has_ip_address(new_node.name,
3461                                                  new_node.secondary_ip)
3462       result.Raise("Failure checking secondary ip on node %s" % new_node.name,
3463                    prereq=True, ecode=errors.ECODE_ENVIRON)
3464       if not result.payload:
3465         raise errors.OpExecError("Node claims it doesn't have the secondary ip"
3466                                  " you gave (%s). Please fix and re-run this"
3467                                  " command." % new_node.secondary_ip)
3468
3469     node_verify_list = [self.cfg.GetMasterNode()]
3470     node_verify_param = {
3471       constants.NV_NODELIST: [node],
3472       # TODO: do a node-net-test as well?
3473     }
3474
3475     result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
3476                                        self.cfg.GetClusterName())
3477     for verifier in node_verify_list:
3478       result[verifier].Raise("Cannot communicate with node %s" % verifier)
3479       nl_payload = result[verifier].payload[constants.NV_NODELIST]
3480       if nl_payload:
3481         for failed in nl_payload:
3482           feedback_fn("ssh/hostname verification failed"
3483                       " (checking from %s): %s" %
3484                       (verifier, nl_payload[failed]))
3485         raise errors.OpExecError("ssh/hostname verification failed.")
3486
3487     if self.op.readd:
3488       _RedistributeAncillaryFiles(self)
3489       self.context.ReaddNode(new_node)
3490       # make sure we redistribute the config
3491       self.cfg.Update(new_node, feedback_fn)
3492       # and make sure the new node will not have old files around
3493       if not new_node.master_candidate:
3494         result = self.rpc.call_node_demote_from_mc(new_node.name)
3495         msg = result.fail_msg
3496         if msg:
3497           self.LogWarning("Node failed to demote itself from master"
3498                           " candidate status: %s" % msg)
3499     else:
3500       _RedistributeAncillaryFiles(self, additional_nodes=[node])
3501       self.context.AddNode(new_node, self.proc.GetECId())
3502
3503
3504 class LUSetNodeParams(LogicalUnit):
3505   """Modifies the parameters of a node.
3506
3507   """
3508   HPATH = "node-modify"
3509   HTYPE = constants.HTYPE_NODE
3510   _OP_REQP = ["node_name"]
3511   REQ_BGL = False
3512
3513   def CheckArguments(self):
3514     self.op.node_name = _ExpandNodeName(self.cfg, self.op.node_name)
3515     _CheckBooleanOpField(self.op, 'master_candidate')
3516     _CheckBooleanOpField(self.op, 'offline')
3517     _CheckBooleanOpField(self.op, 'drained')
3518     _CheckBooleanOpField(self.op, 'auto_promote')
3519     all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
3520     if all_mods.count(None) == 3:
3521       raise errors.OpPrereqError("Please pass at least one modification",
3522                                  errors.ECODE_INVAL)
3523     if all_mods.count(True) > 1:
3524       raise errors.OpPrereqError("Can't set the node into more than one"
3525                                  " state at the same time",
3526                                  errors.ECODE_INVAL)
3527
3528     # Boolean value that tells us whether we're offlining or draining the node
3529     self.offline_or_drain = (self.op.offline == True or
3530                              self.op.drained == True)
3531     self.deoffline_or_drain = (self.op.offline == False or
3532                                self.op.drained == False)
3533     self.might_demote = (self.op.master_candidate == False or
3534                          self.offline_or_drain)
3535
3536     self.lock_all = self.op.auto_promote and self.might_demote
3537
3538
3539   def ExpandNames(self):
3540     if self.lock_all:
3541       self.needed_locks = {locking.LEVEL_NODE: locking.ALL_SET}
3542     else:
3543       self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
3544
3545   def BuildHooksEnv(self):
3546     """Build hooks env.
3547
3548     This runs on the master node.
3549
3550     """
3551     env = {
3552       "OP_TARGET": self.op.node_name,
3553       "MASTER_CANDIDATE": str(self.op.master_candidate),
3554       "OFFLINE": str(self.op.offline),
3555       "DRAINED": str(self.op.drained),
3556       }
3557     nl = [self.cfg.GetMasterNode(),
3558           self.op.node_name]
3559     return env, nl, nl
3560
3561   def CheckPrereq(self):
3562     """Check prerequisites.
3563
3564     This only checks the instance list against the existing names.
3565
3566     """
3567     node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
3568
3569     if (self.op.master_candidate is not None or
3570         self.op.drained is not None or
3571         self.op.offline is not None):
3572       # we can't change the master's node flags
3573       if self.op.node_name == self.cfg.GetMasterNode():
3574         raise errors.OpPrereqError("The master role can be changed"
3575                                    " only via masterfailover",
3576                                    errors.ECODE_INVAL)
3577
3578
3579     if node.master_candidate and self.might_demote and not self.lock_all:
3580       assert not self.op.auto_promote, "auto-promote set but lock_all not"
3581       # check if after removing the current node, we're missing master
3582       # candidates
3583       (mc_remaining, mc_should, _) = \
3584           self.cfg.GetMasterCandidateStats(exceptions=[node.name])
3585       if mc_remaining < mc_should:
3586         raise errors.OpPrereqError("Not enough master candidates, please"
3587                                    " pass auto_promote to allow promotion",
3588                                    errors.ECODE_INVAL)
3589
3590     if (self.op.master_candidate == True and
3591         ((node.offline and not self.op.offline == False) or
3592          (node.drained and not self.op.drained == False))):
3593       raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
3594                                  " to master_candidate" % node.name,
3595                                  errors.ECODE_INVAL)
3596
3597     # If we're being deofflined/drained, we'll MC ourself if needed
3598     if (self.deoffline_or_drain and not self.offline_or_drain and not
3599         self.op.master_candidate == True and not node.master_candidate):
3600       self.op.master_candidate = _DecideSelfPromotion(self)
3601       if self.op.master_candidate:
3602         self.LogInfo("Autopromoting node to master candidate")
3603
3604     return
3605
3606   def Exec(self, feedback_fn):
3607     """Modifies a node.
3608
3609     """
3610     node = self.node
3611
3612     result = []
3613     changed_mc = False
3614
3615     if self.op.offline is not None:
3616       node.offline = self.op.offline
3617       result.append(("offline", str(self.op.offline)))
3618       if self.op.offline == True:
3619         if node.master_candidate:
3620           node.master_candidate = False
3621           changed_mc = True
3622           result.append(("master_candidate", "auto-demotion due to offline"))
3623         if node.drained:
3624           node.drained = False
3625           result.append(("drained", "clear drained status due to offline"))
3626
3627     if self.op.master_candidate is not None:
3628       node.master_candidate = self.op.master_candidate
3629       changed_mc = True
3630       result.append(("master_candidate", str(self.op.master_candidate)))
3631       if self.op.master_candidate == False:
3632         rrc = self.rpc.call_node_demote_from_mc(node.name)
3633         msg = rrc.fail_msg
3634         if msg:
3635           self.LogWarning("Node failed to demote itself: %s" % msg)
3636
3637     if self.op.drained is not None:
3638       node.drained = self.op.drained
3639       result.append(("drained", str(self.op.drained)))
3640       if self.op.drained == True:
3641         if node.master_candidate:
3642           node.master_candidate = False
3643           changed_mc = True
3644           result.append(("master_candidate", "auto-demotion due to drain"))
3645           rrc = self.rpc.call_node_demote_from_mc(node.name)
3646           msg = rrc.fail_msg
3647           if msg:
3648             self.LogWarning("Node failed to demote itself: %s" % msg)
3649         if node.offline:
3650           node.offline = False
3651           result.append(("offline", "clear offline status due to drain"))
3652
3653     # we locked all nodes, we adjust the CP before updating this node
3654     if self.lock_all:
3655       _AdjustCandidatePool(self, [node.name])
3656
3657     # this will trigger configuration file update, if needed
3658     self.cfg.Update(node, feedback_fn)
3659
3660     # this will trigger job queue propagation or cleanup
3661     if changed_mc:
3662       self.context.ReaddNode(node)
3663
3664     return result
3665
3666
3667 class LUPowercycleNode(NoHooksLU):
3668   """Powercycles a node.
3669
3670   """
3671   _OP_REQP = ["node_name", "force"]
3672   REQ_BGL = False
3673
3674   def CheckArguments(self):
3675     self.op.node_name = _ExpandNodeName(self.cfg, self.op.node_name)
3676     if self.op.node_name == self.cfg.GetMasterNode() and not self.op.force:
3677       raise errors.OpPrereqError("The node is the master and the force"
3678                                  " parameter was not set",
3679                                  errors.ECODE_INVAL)
3680
3681   def ExpandNames(self):
3682     """Locking for PowercycleNode.
3683
3684     This is a last-resort option and shouldn't block on other
3685     jobs. Therefore, we grab no locks.
3686
3687     """
3688     self.needed_locks = {}
3689
3690   def CheckPrereq(self):
3691     """Check prerequisites.
3692
3693     This LU has no prereqs.
3694
3695     """
3696     pass
3697
3698   def Exec(self, feedback_fn):
3699     """Reboots a node.
3700
3701     """
3702     result = self.rpc.call_node_powercycle(self.op.node_name,
3703                                            self.cfg.GetHypervisorType())
3704     result.Raise("Failed to schedule the reboot")
3705     return result.payload
3706
3707
3708 class LUQueryClusterInfo(NoHooksLU):
3709   """Query cluster configuration.
3710
3711   """
3712   _OP_REQP = []
3713   REQ_BGL = False
3714
3715   def ExpandNames(self):
3716     self.needed_locks = {}
3717
3718   def CheckPrereq(self):
3719     """No prerequsites needed for this LU.
3720
3721     """
3722     pass
3723
3724   def Exec(self, feedback_fn):
3725     """Return cluster config.
3726
3727     """
3728     cluster = self.cfg.GetClusterInfo()
3729     os_hvp = {}
3730
3731     # Filter just for enabled hypervisors
3732     for os_name, hv_dict in cluster.os_hvp.items():
3733       os_hvp[os_name] = {}
3734       for hv_name, hv_params in hv_dict.items():
3735         if hv_name in cluster.enabled_hypervisors:
3736           os_hvp[os_name][hv_name] = hv_params
3737
3738     result = {
3739       "software_version": constants.RELEASE_VERSION,
3740       "protocol_version": constants.PROTOCOL_VERSION,
3741       "config_version": constants.CONFIG_VERSION,
3742       "os_api_version": max(constants.OS_API_VERSIONS),
3743       "export_version": constants.EXPORT_VERSION,
3744       "architecture": (platform.architecture()[0], platform.machine()),
3745       "name": cluster.cluster_name,
3746       "master": cluster.master_node,
3747       "default_hypervisor": cluster.enabled_hypervisors[0],
3748       "enabled_hypervisors": cluster.enabled_hypervisors,
3749       "hvparams": dict([(hypervisor_name, cluster.hvparams[hypervisor_name])
3750                         for hypervisor_name in cluster.enabled_hypervisors]),
3751       "os_hvp": os_hvp,
3752       "beparams": cluster.beparams,
3753       "nicparams": cluster.nicparams,
3754       "candidate_pool_size": cluster.candidate_pool_size,
3755       "master_netdev": cluster.master_netdev,
3756       "volume_group_name": cluster.volume_group_name,
3757       "file_storage_dir": cluster.file_storage_dir,
3758       "maintain_node_health": cluster.maintain_node_health,
3759       "ctime": cluster.ctime,
3760       "mtime": cluster.mtime,
3761       "uuid": cluster.uuid,
3762       "tags": list(cluster.GetTags()),
3763       "uid_pool": cluster.uid_pool,
3764       }
3765
3766     return result
3767
3768
3769 class LUQueryConfigValues(NoHooksLU):
3770   """Return configuration values.
3771
3772   """
3773   _OP_REQP = []
3774   REQ_BGL = False
3775   _FIELDS_DYNAMIC = utils.FieldSet()
3776   _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag",
3777                                   "watcher_pause")
3778
3779   def ExpandNames(self):
3780     self.needed_locks = {}
3781
3782     _CheckOutputFields(static=self._FIELDS_STATIC,
3783                        dynamic=self._FIELDS_DYNAMIC,
3784                        selected=self.op.output_fields)
3785
3786   def CheckPrereq(self):
3787     """No prerequisites.
3788
3789     """
3790     pass
3791
3792   def Exec(self, feedback_fn):
3793     """Dump a representation of the cluster config to the standard output.
3794
3795     """
3796     values = []
3797     for field in self.op.output_fields:
3798       if field == "cluster_name":
3799         entry = self.cfg.GetClusterName()
3800       elif field == "master_node":
3801         entry = self.cfg.GetMasterNode()
3802       elif field == "drain_flag":
3803         entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
3804       elif field == "watcher_pause":
3805         entry = utils.ReadWatcherPauseFile(constants.WATCHER_PAUSEFILE)
3806       else:
3807         raise errors.ParameterError(field)
3808       values.append(entry)
3809     return values
3810
3811
3812 class LUActivateInstanceDisks(NoHooksLU):
3813   """Bring up an instance's disks.
3814
3815   """
3816   _OP_REQP = ["instance_name"]
3817   REQ_BGL = False
3818
3819   def ExpandNames(self):
3820     self._ExpandAndLockInstance()
3821     self.needed_locks[locking.LEVEL_NODE] = []
3822     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3823
3824   def DeclareLocks(self, level):
3825     if level == locking.LEVEL_NODE:
3826       self._LockInstancesNodes()
3827
3828   def CheckPrereq(self):
3829     """Check prerequisites.
3830
3831     This checks that the instance is in the cluster.
3832
3833     """
3834     self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3835     assert self.instance is not None, \
3836       "Cannot retrieve locked instance %s" % self.op.instance_name
3837     _CheckNodeOnline(self, self.instance.primary_node)
3838     if not hasattr(self.op, "ignore_size"):
3839       self.op.ignore_size = False
3840
3841   def Exec(self, feedback_fn):
3842     """Activate the disks.
3843
3844     """
3845     disks_ok, disks_info = \
3846               _AssembleInstanceDisks(self, self.instance,
3847                                      ignore_size=self.op.ignore_size)
3848     if not disks_ok:
3849       raise errors.OpExecError("Cannot activate block devices")
3850
3851     return disks_info
3852
3853
3854 def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False,
3855                            ignore_size=False):
3856   """Prepare the block devices for an instance.
3857
3858   This sets up the block devices on all nodes.
3859
3860   @type lu: L{LogicalUnit}
3861   @param lu: the logical unit on whose behalf we execute
3862   @type instance: L{objects.Instance}
3863   @param instance: the instance for whose disks we assemble
3864   @type ignore_secondaries: boolean
3865   @param ignore_secondaries: if true, errors on secondary nodes
3866       won't result in an error return from the function
3867   @type ignore_size: boolean
3868   @param ignore_size: if true, the current known size of the disk
3869       will not be used during the disk activation, useful for cases
3870       when the size is wrong
3871   @return: False if the operation failed, otherwise a list of
3872       (host, instance_visible_name, node_visible_name)
3873       with the mapping from node devices to instance devices
3874
3875   """
3876   device_info = []
3877   disks_ok = True
3878   iname = instance.name
3879   # With the two passes mechanism we try to reduce the window of
3880   # opportunity for the race condition of switching DRBD to primary
3881   # before handshaking occured, but we do not eliminate it
3882
3883   # The proper fix would be to wait (with some limits) until the
3884   # connection has been made and drbd transitions from WFConnection
3885   # into any other network-connected state (Connected, SyncTarget,
3886   # SyncSource, etc.)
3887
3888   # 1st pass, assemble on all nodes in secondary mode
3889   for inst_disk in instance.disks:
3890     for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
3891       if ignore_size:
3892         node_disk = node_disk.Copy()
3893         node_disk.UnsetSize()
3894       lu.cfg.SetDiskID(node_disk, node)
3895       result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
3896       msg = result.fail_msg
3897       if msg:
3898         lu.proc.LogWarning("Could not prepare block device %s on node %s"
3899                            " (is_primary=False, pass=1): %s",
3900                            inst_disk.iv_name, node, msg)
3901         if not ignore_secondaries:
3902           disks_ok = False
3903
3904   # FIXME: race condition on drbd migration to primary
3905
3906   # 2nd pass, do only the primary node
3907   for inst_disk in instance.disks:
3908     dev_path = None
3909
3910     for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
3911       if node != instance.primary_node:
3912         continue
3913       if ignore_size:
3914         node_disk = node_disk.Copy()
3915         node_disk.UnsetSize()
3916       lu.cfg.SetDiskID(node_disk, node)
3917       result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
3918       msg = result.fail_msg
3919       if msg:
3920         lu.proc.LogWarning("Could not prepare block device %s on node %s"
3921                            " (is_primary=True, pass=2): %s",
3922                            inst_disk.iv_name, node, msg)
3923         disks_ok = False
3924       else:
3925         dev_path = result.payload
3926
3927     device_info.append((instance.primary_node, inst_disk.iv_name, dev_path))
3928
3929   # leave the disks configured for the primary node
3930   # this is a workaround that would be fixed better by
3931   # improving the logical/physical id handling
3932   for disk in instance.disks:
3933     lu.cfg.SetDiskID(disk, instance.primary_node)
3934
3935   return disks_ok, device_info
3936
3937
3938 def _StartInstanceDisks(lu, instance, force):
3939   """Start the disks of an instance.
3940
3941   """
3942   disks_ok, _ = _AssembleInstanceDisks(lu, instance,
3943                                            ignore_secondaries=force)
3944   if not disks_ok:
3945     _ShutdownInstanceDisks(lu, instance)
3946     if force is not None and not force:
3947       lu.proc.LogWarning("", hint="If the message above refers to a"
3948                          " secondary node,"
3949                          " you can retry the operation using '--force'.")
3950     raise errors.OpExecError("Disk consistency error")
3951
3952
3953 class LUDeactivateInstanceDisks(NoHooksLU):
3954   """Shutdown an instance's disks.
3955
3956   """
3957   _OP_REQP = ["instance_name"]
3958   REQ_BGL = False
3959
3960   def ExpandNames(self):
3961     self._ExpandAndLockInstance()
3962     self.needed_locks[locking.LEVEL_NODE] = []
3963     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3964
3965   def DeclareLocks(self, level):
3966     if level == locking.LEVEL_NODE:
3967       self._LockInstancesNodes()
3968
3969   def CheckPrereq(self):
3970     """Check prerequisites.
3971
3972     This checks that the instance is in the cluster.
3973
3974     """
3975     self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3976     assert self.instance is not None, \
3977       "Cannot retrieve locked instance %s" % self.op.instance_name
3978
3979   def Exec(self, feedback_fn):
3980     """Deactivate the disks
3981
3982     """
3983     instance = self.instance
3984     _SafeShutdownInstanceDisks(self, instance)
3985
3986
3987 def _SafeShutdownInstanceDisks(lu, instance):
3988   """Shutdown block devices of an instance.
3989
3990   This function checks if an instance is running, before calling
3991   _ShutdownInstanceDisks.
3992
3993   """
3994   _CheckInstanceDown(lu, instance, "cannot shutdown disks")
3995   _ShutdownInstanceDisks(lu, instance)
3996
3997
3998 def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
3999   """Shutdown block devices of an instance.
4000
4001   This does the shutdown on all nodes of the instance.
4002
4003   If the ignore_primary is false, errors on the primary node are
4004   ignored.
4005
4006   """
4007   all_result = True
4008   for disk in instance.disks:
4009     for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
4010       lu.cfg.SetDiskID(top_disk, node)
4011       result = lu.rpc.call_blockdev_shutdown(node, top_disk)
4012       msg = result.fail_msg
4013       if msg:
4014         lu.LogWarning("Could not shutdown block device %s on node %s: %s",
4015                       disk.iv_name, node, msg)
4016         if not ignore_primary or node != instance.primary_node:
4017           all_result = False
4018   return all_result
4019
4020
4021 def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
4022   """Checks if a node has enough free memory.
4023
4024   This function check if a given node has the needed amount of free
4025   memory. In case the node has less memory or we cannot get the
4026   information from the node, this function raise an OpPrereqError
4027   exception.
4028
4029   @type lu: C{LogicalUnit}
4030   @param lu: a logical unit from which we get configuration data
4031   @type node: C{str}
4032   @param node: the node to check
4033   @type reason: C{str}
4034   @param reason: string to use in the error message
4035   @type requested: C{int}
4036   @param requested: the amount of memory in MiB to check for
4037   @type hypervisor_name: C{str}
4038   @param hypervisor_name: the hypervisor to ask for memory stats
4039   @raise errors.OpPrereqError: if the node doesn't have enough memory, or
4040       we cannot check the node
4041
4042   """
4043   nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
4044   nodeinfo[node].Raise("Can't get data from node %s" % node,
4045                        prereq=True, ecode=errors.ECODE_ENVIRON)
4046   free_mem = nodeinfo[node].payload.get('memory_free', None)
4047   if not isinstance(free_mem, int):
4048     raise errors.OpPrereqError("Can't compute free memory on node %s, result"
4049                                " was '%s'" % (node, free_mem),
4050                                errors.ECODE_ENVIRON)
4051   if requested > free_mem:
4052     raise errors.OpPrereqError("Not enough memory on node %s for %s:"
4053                                " needed %s MiB, available %s MiB" %
4054                                (node, reason, requested, free_mem),
4055                                errors.ECODE_NORES)
4056
4057
4058 def _CheckNodesFreeDisk(lu, nodenames, requested):
4059   """Checks if nodes have enough free disk space in the default VG.
4060
4061   This function check if all given nodes have the needed amount of
4062   free disk. In case any node has less disk or we cannot get the
4063   information from the node, this function raise an OpPrereqError
4064   exception.
4065
4066   @type lu: C{LogicalUnit}
4067   @param lu: a logical unit from which we get configuration data
4068   @type nodenames: C{list}
4069   @param nodenames: the list of node names to check
4070   @type requested: C{int}
4071   @param requested: the amount of disk in MiB to check for
4072   @raise errors.OpPrereqError: if the node doesn't have enough disk, or
4073       we cannot check the node
4074
4075   """
4076   nodeinfo = lu.rpc.call_node_info(nodenames, lu.cfg.GetVGName(),
4077                                    lu.cfg.GetHypervisorType())
4078   for node in nodenames:
4079     info = nodeinfo[node]
4080     info.Raise("Cannot get current information from node %s" % node,
4081                prereq=True, ecode=errors.ECODE_ENVIRON)
4082     vg_free = info.payload.get("vg_free", None)
4083     if not isinstance(vg_free, int):
4084       raise errors.OpPrereqError("Can't compute free disk space on node %s,"
4085                                  " result was '%s'" % (node, vg_free),
4086                                  errors.ECODE_ENVIRON)
4087     if requested > vg_free:
4088       raise errors.OpPrereqError("Not enough disk space on target node %s:"
4089                                  " required %d MiB, available %d MiB" %
4090                                  (node, requested, vg_free),
4091                                  errors.ECODE_NORES)
4092
4093
4094 class LUStartupInstance(LogicalUnit):
4095   """Starts an instance.
4096
4097   """
4098   HPATH = "instance-start"
4099   HTYPE = constants.HTYPE_INSTANCE
4100   _OP_REQP = ["instance_name", "force"]
4101   REQ_BGL = False
4102
4103   def ExpandNames(self):
4104     self._ExpandAndLockInstance()
4105
4106   def BuildHooksEnv(self):
4107     """Build hooks env.
4108
4109     This runs on master, primary and secondary nodes of the instance.
4110
4111     """
4112     env = {
4113       "FORCE": self.op.force,
4114       }
4115     env.update(_BuildInstanceHookEnvByObject(self, self.instance))
4116     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
4117     return env, nl, nl
4118
4119   def CheckPrereq(self):
4120     """Check prerequisites.
4121
4122     This checks that the instance is in the cluster.
4123
4124     """
4125     self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4126     assert self.instance is not None, \
4127       "Cannot retrieve locked instance %s" % self.op.instance_name
4128
4129     # extra beparams
4130     self.beparams = getattr(self.op, "beparams", {})
4131     if self.beparams:
4132       if not isinstance(self.beparams, dict):
4133         raise errors.OpPrereqError("Invalid beparams passed: %s, expected"
4134                                    " dict" % (type(self.beparams), ),
4135                                    errors.ECODE_INVAL)
4136       # fill the beparams dict
4137       utils.ForceDictType(self.beparams, constants.BES_PARAMETER_TYPES)
4138       self.op.beparams = self.beparams
4139
4140     # extra hvparams
4141     self.hvparams = getattr(self.op, "hvparams", {})
4142     if self.hvparams:
4143       if not isinstance(self.hvparams, dict):
4144         raise errors.OpPrereqError("Invalid hvparams passed: %s, expected"
4145                                    " dict" % (type(self.hvparams), ),
4146                                    errors.ECODE_INVAL)
4147
4148       # check hypervisor parameter syntax (locally)
4149       cluster = self.cfg.GetClusterInfo()
4150       utils.ForceDictType(self.hvparams, constants.HVS_PARAMETER_TYPES)
4151       filled_hvp = objects.FillDict(cluster.hvparams[instance.hypervisor],
4152                                     instance.hvparams)
4153       filled_hvp.update(self.hvparams)
4154       hv_type = hypervisor.GetHypervisor(instance.hypervisor)
4155       hv_type.CheckParameterSyntax(filled_hvp)
4156       _CheckHVParams(self, instance.all_nodes, instance.hypervisor, filled_hvp)
4157       self.op.hvparams = self.hvparams
4158
4159     _CheckNodeOnline(self, instance.primary_node)
4160
4161     bep = self.cfg.GetClusterInfo().FillBE(instance)
4162     # check bridges existence
4163     _CheckInstanceBridgesExist(self, instance)
4164
4165     remote_info = self.rpc.call_instance_info(instance.primary_node,
4166                                               instance.name,
4167                                               instance.hypervisor)
4168     remote_info.Raise("Error checking node %s" % instance.primary_node,
4169                       prereq=True, ecode=errors.ECODE_ENVIRON)
4170     if not remote_info.payload: # not running already
4171       _CheckNodeFreeMemory(self, instance.primary_node,
4172                            "starting instance %s" % instance.name,
4173                            bep[constants.BE_MEMORY], instance.hypervisor)
4174
4175   def Exec(self, feedback_fn):
4176     """Start the instance.
4177
4178     """
4179     instance = self.instance
4180     force = self.op.force
4181
4182     self.cfg.MarkInstanceUp(instance.name)
4183
4184     node_current = instance.primary_node
4185
4186     _StartInstanceDisks(self, instance, force)
4187
4188     result = self.rpc.call_instance_start(node_current, instance,
4189                                           self.hvparams, self.beparams)
4190     msg = result.fail_msg
4191     if msg:
4192       _ShutdownInstanceDisks(self, instance)
4193       raise errors.OpExecError("Could not start instance: %s" % msg)
4194
4195
4196 class LURebootInstance(LogicalUnit):
4197   """Reboot an instance.
4198
4199   """
4200   HPATH = "instance-reboot"
4201   HTYPE = constants.HTYPE_INSTANCE
4202   _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
4203   REQ_BGL = False
4204
4205   def CheckArguments(self):
4206     """Check the arguments.
4207
4208     """
4209     self.shutdown_timeout = getattr(self.op, "shutdown_timeout",
4210                                     constants.DEFAULT_SHUTDOWN_TIMEOUT)
4211
4212   def ExpandNames(self):
4213     if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
4214                                    constants.INSTANCE_REBOOT_HARD,
4215                                    constants.INSTANCE_REBOOT_FULL]:
4216       raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
4217                                   (constants.INSTANCE_REBOOT_SOFT,
4218                                    constants.INSTANCE_REBOOT_HARD,
4219                                    constants.INSTANCE_REBOOT_FULL))
4220     self._ExpandAndLockInstance()
4221
4222   def BuildHooksEnv(self):
4223     """Build hooks env.
4224
4225     This runs on master, primary and secondary nodes of the instance.
4226
4227     """
4228     env = {
4229       "IGNORE_SECONDARIES": self.op.ignore_secondaries,
4230       "REBOOT_TYPE": self.op.reboot_type,
4231       "SHUTDOWN_TIMEOUT": self.shutdown_timeout,
4232       }
4233     env.update(_BuildInstanceHookEnvByObject(self, self.instance))
4234     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
4235     return env, nl, nl
4236
4237   def CheckPrereq(self):
4238     """Check prerequisites.
4239
4240     This checks that the instance is in the cluster.
4241
4242     """
4243     self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4244     assert self.instance is not None, \
4245       "Cannot retrieve locked instance %s" % self.op.instance_name
4246
4247     _CheckNodeOnline(self, instance.primary_node)
4248
4249     # check bridges existence
4250     _CheckInstanceBridgesExist(self, instance)
4251
4252   def Exec(self, feedback_fn):
4253     """Reboot the instance.
4254
4255     """
4256     instance = self.instance
4257     ignore_secondaries = self.op.ignore_secondaries
4258     reboot_type = self.op.reboot_type
4259
4260     node_current = instance.primary_node
4261
4262     if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
4263                        constants.INSTANCE_REBOOT_HARD]:
4264       for disk in instance.disks:
4265         self.cfg.SetDiskID(disk, node_current)
4266       result = self.rpc.call_instance_reboot(node_current, instance,
4267                                              reboot_type,
4268                                              self.shutdown_timeout)
4269       result.Raise("Could not reboot instance")
4270     else:
4271       result = self.rpc.call_instance_shutdown(node_current, instance,
4272                                                self.shutdown_timeout)
4273       result.Raise("Could not shutdown instance for full reboot")
4274       _ShutdownInstanceDisks(self, instance)
4275       _StartInstanceDisks(self, instance, ignore_secondaries)
4276       result = self.rpc.call_instance_start(node_current, instance, None, None)
4277       msg = result.fail_msg
4278       if msg:
4279         _ShutdownInstanceDisks(self, instance)
4280         raise errors.OpExecError("Could not start instance for"
4281                                  " full reboot: %s" % msg)
4282
4283     self.cfg.MarkInstanceUp(instance.name)
4284
4285
4286 class LUShutdownInstance(LogicalUnit):
4287   """Shutdown an instance.
4288
4289   """
4290   HPATH = "instance-stop"
4291   HTYPE = constants.HTYPE_INSTANCE
4292   _OP_REQP = ["instance_name"]
4293   REQ_BGL = False
4294
4295   def CheckArguments(self):
4296     """Check the arguments.
4297
4298     """
4299     self.timeout = getattr(self.op, "timeout",
4300                            constants.DEFAULT_SHUTDOWN_TIMEOUT)
4301
4302   def ExpandNames(self):
4303     self._ExpandAndLockInstance()
4304
4305   def BuildHooksEnv(self):
4306     """Build hooks env.
4307
4308     This runs on master, primary and secondary nodes of the instance.
4309
4310     """
4311     env = _BuildInstanceHookEnvByObject(self, self.instance)
4312     env["TIMEOUT"] = self.timeout
4313     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
4314     return env, nl, nl
4315
4316   def CheckPrereq(self):
4317     """Check prerequisites.
4318
4319     This checks that the instance is in the cluster.
4320
4321     """
4322     self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4323     assert self.instance is not None, \
4324       "Cannot retrieve locked instance %s" % self.op.instance_name
4325     _CheckNodeOnline(self, self.instance.primary_node)
4326
4327   def Exec(self, feedback_fn):
4328     """Shutdown the instance.
4329
4330     """
4331     instance = self.instance
4332     node_current = instance.primary_node
4333     timeout = self.timeout
4334     self.cfg.MarkInstanceDown(instance.name)
4335     result = self.rpc.call_instance_shutdown(node_current, instance, timeout)
4336     msg = result.fail_msg
4337     if msg:
4338       self.proc.LogWarning("Could not shutdown instance: %s" % msg)
4339
4340     _ShutdownInstanceDisks(self, instance)
4341
4342
4343 class LUReinstallInstance(LogicalUnit):
4344   """Reinstall an instance.
4345
4346   """
4347   HPATH = "instance-reinstall"
4348   HTYPE = constants.HTYPE_INSTANCE
4349   _OP_REQP = ["instance_name"]
4350   REQ_BGL = False
4351
4352   def ExpandNames(self):
4353     self._ExpandAndLockInstance()
4354
4355   def BuildHooksEnv(self):
4356     """Build hooks env.
4357
4358     This runs on master, primary and secondary nodes of the instance.
4359
4360     """
4361     env = _BuildInstanceHookEnvByObject(self, self.instance)
4362     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
4363     return env, nl, nl
4364
4365   def CheckPrereq(self):
4366     """Check prerequisites.
4367
4368     This checks that the instance is in the cluster and is not running.
4369
4370     """
4371     instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4372     assert instance is not None, \
4373       "Cannot retrieve locked instance %s" % self.op.instance_name
4374     _CheckNodeOnline(self, instance.primary_node)
4375
4376     if instance.disk_template == constants.DT_DISKLESS:
4377       raise errors.OpPrereqError("Instance '%s' has no disks" %
4378                                  self.op.instance_name,
4379                                  errors.ECODE_INVAL)
4380     _CheckInstanceDown(self, instance, "cannot reinstall")
4381
4382     self.op.os_type = getattr(self.op, "os_type", None)
4383     self.op.force_variant = getattr(self.op, "force_variant", False)
4384     if self.op.os_type is not None:
4385       # OS verification
4386       pnode = _ExpandNodeName(self.cfg, instance.primary_node)
4387       _CheckNodeHasOS(self, pnode, self.op.os_type, self.op.force_variant)
4388
4389     self.instance = instance
4390
4391   def Exec(self, feedback_fn):
4392     """Reinstall the instance.
4393
4394     """
4395     inst = self.instance
4396
4397     if self.op.os_type is not None:
4398       feedback_fn("Changing OS to '%s'..." % self.op.os_type)
4399       inst.os = self.op.os_type
4400       self.cfg.Update(inst, feedback_fn)
4401
4402     _StartInstanceDisks(self, inst, None)
4403     try:
4404       feedback_fn("Running the instance OS create scripts...")
4405       # FIXME: pass debug option from opcode to backend
4406       result = self.rpc.call_instance_os_add(inst.primary_node, inst, True,
4407                                              self.op.debug_level)
4408       result.Raise("Could not install OS for instance %s on node %s" %
4409                    (inst.name, inst.primary_node))
4410     finally:
4411       _ShutdownInstanceDisks(self, inst)
4412
4413
4414 class LURecreateInstanceDisks(LogicalUnit):
4415   """Recreate an instance's missing disks.
4416
4417   """
4418   HPATH = "instance-recreate-disks"
4419   HTYPE = constants.HTYPE_INSTANCE
4420   _OP_REQP = ["instance_name", "disks"]
4421   REQ_BGL = False
4422
4423   def CheckArguments(self):
4424     """Check the arguments.
4425
4426     """
4427     if not isinstance(self.op.disks, list):
4428       raise errors.OpPrereqError("Invalid disks parameter", errors.ECODE_INVAL)
4429     for item in self.op.disks:
4430       if (not isinstance(item, int) or
4431           item < 0):
4432         raise errors.OpPrereqError("Invalid disk specification '%s'" %
4433                                    str(item), errors.ECODE_INVAL)
4434
4435   def ExpandNames(self):
4436     self._ExpandAndLockInstance()
4437
4438   def BuildHooksEnv(self):
4439     """Build hooks env.
4440
4441     This runs on master, primary and secondary nodes of the instance.
4442
4443     """
4444     env = _BuildInstanceHookEnvByObject(self, self.instance)
4445     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
4446     return env, nl, nl
4447
4448   def CheckPrereq(self):
4449     """Check prerequisites.
4450
4451     This checks that the instance is in the cluster and is not running.
4452
4453     """
4454     instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4455     assert instance is not None, \
4456       "Cannot retrieve locked instance %s" % self.op.instance_name
4457     _CheckNodeOnline(self, instance.primary_node)
4458
4459     if instance.disk_template == constants.DT_DISKLESS:
4460       raise errors.OpPrereqError("Instance '%s' has no disks" %
4461                                  self.op.instance_name, errors.ECODE_INVAL)
4462     _CheckInstanceDown(self, instance, "cannot recreate disks")
4463
4464     if not self.op.disks:
4465       self.op.disks = range(len(instance.disks))
4466     else:
4467       for idx in self.op.disks:
4468         if idx >= len(instance.disks):
4469           raise errors.OpPrereqError("Invalid disk index passed '%s'" % idx,
4470                                      errors.ECODE_INVAL)
4471
4472     self.instance = instance
4473
4474   def Exec(self, feedback_fn):
4475     """Recreate the disks.
4476
4477     """
4478     to_skip = []
4479     for idx, _ in enumerate(self.instance.disks):
4480       if idx not in self.op.disks: # disk idx has not been passed in
4481         to_skip.append(idx)
4482         continue
4483
4484     _CreateDisks(self, self.instance, to_skip=to_skip)
4485
4486
4487 class LURenameInstance(LogicalUnit):
4488   """Rename an instance.
4489
4490   """
4491   HPATH = "instance-rename"
4492   HTYPE = constants.HTYPE_INSTANCE
4493   _OP_REQP = ["instance_name", "new_name"]
4494
4495   def BuildHooksEnv(self):
4496     """Build hooks env.
4497
4498     This runs on master, primary and secondary nodes of the instance.
4499
4500     """
4501     env = _BuildInstanceHookEnvByObject(self, self.instance)
4502     env["INSTANCE_NEW_NAME"] = self.op.new_name
4503     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
4504     return env, nl, nl
4505
4506   def CheckPrereq(self):
4507     """Check prerequisites.
4508
4509     This checks that the instance is in the cluster and is not running.
4510
4511     """
4512     self.op.instance_name = _ExpandInstanceName(self.cfg,
4513                                                 self.op.instance_name)
4514     instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4515     assert instance is not None
4516     _CheckNodeOnline(self, instance.primary_node)
4517     _CheckInstanceDown(self, instance, "cannot rename")
4518     self.instance = instance
4519
4520     # new name verification
4521     name_info = utils.GetHostInfo(self.op.new_name)
4522
4523     self.op.new_name = new_name = name_info.name
4524     instance_list = self.cfg.GetInstanceList()
4525     if new_name in instance_list:
4526       raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
4527                                  new_name, errors.ECODE_EXISTS)
4528
4529     if not getattr(self.op, "ignore_ip", False):
4530       if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
4531         raise errors.OpPrereqError("IP %s of instance %s already in use" %
4532                                    (name_info.ip, new_name),
4533                                    errors.ECODE_NOTUNIQUE)
4534
4535
4536   def Exec(self, feedback_fn):
4537     """Reinstall the instance.
4538
4539     """
4540     inst = self.instance
4541     old_name = inst.name
4542
4543     if inst.disk_template == constants.DT_FILE:
4544       old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
4545
4546     self.cfg.RenameInstance(inst.name, self.op.new_name)
4547     # Change the instance lock. This is definitely safe while we hold the BGL
4548     self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
4549     self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
4550
4551     # re-read the instance from the configuration after rename
4552     inst = self.cfg.GetInstanceInfo(self.op.new_name)
4553
4554     if inst.disk_template == constants.DT_FILE:
4555       new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
4556       result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
4557                                                      old_file_storage_dir,
4558                                                      new_file_storage_dir)
4559       result.Raise("Could not rename on node %s directory '%s' to '%s'"
4560                    " (but the instance has been renamed in Ganeti)" %
4561                    (inst.primary_node, old_file_storage_dir,
4562                     new_file_storage_dir))
4563
4564     _StartInstanceDisks(self, inst, None)
4565     try:
4566       result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
4567                                                  old_name, self.op.debug_level)
4568       msg = result.fail_msg
4569       if msg:
4570         msg = ("Could not run OS rename script for instance %s on node %s"
4571                " (but the instance has been renamed in Ganeti): %s" %
4572                (inst.name, inst.primary_node, msg))
4573         self.proc.LogWarning(msg)
4574     finally:
4575       _ShutdownInstanceDisks(self, inst)
4576
4577
4578 class LURemoveInstance(LogicalUnit):
4579   """Remove an instance.
4580
4581   """
4582   HPATH = "instance-remove"
4583   HTYPE = constants.HTYPE_INSTANCE
4584   _OP_REQP = ["instance_name", "ignore_failures"]
4585   REQ_BGL = False
4586
4587   def CheckArguments(self):
4588     """Check the arguments.
4589
4590     """
4591     self.shutdown_timeout = getattr(self.op, "shutdown_timeout",
4592                                     constants.DEFAULT_SHUTDOWN_TIMEOUT)
4593
4594   def ExpandNames(self):
4595     self._ExpandAndLockInstance()
4596     self.needed_locks[locking.LEVEL_NODE] = []
4597     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4598
4599   def DeclareLocks(self, level):
4600     if level == locking.LEVEL_NODE:
4601       self._LockInstancesNodes()
4602
4603   def BuildHooksEnv(self):
4604     """Build hooks env.
4605
4606     This runs on master, primary and secondary nodes of the instance.
4607
4608     """
4609     env = _BuildInstanceHookEnvByObject(self, self.instance)
4610     env["SHUTDOWN_TIMEOUT"] = self.shutdown_timeout
4611     nl = [self.cfg.GetMasterNode()]
4612     nl_post = list(self.instance.all_nodes) + nl
4613     return env, nl, nl_post
4614
4615   def CheckPrereq(self):
4616     """Check prerequisites.
4617
4618     This checks that the instance is in the cluster.
4619
4620     """
4621     self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4622     assert self.instance is not None, \
4623       "Cannot retrieve locked instance %s" % self.op.instance_name
4624
4625   def Exec(self, feedback_fn):
4626     """Remove the instance.
4627
4628     """
4629     instance = self.instance
4630     logging.info("Shutting down instance %s on node %s",
4631                  instance.name, instance.primary_node)
4632
4633     result = self.rpc.call_instance_shutdown(instance.primary_node, instance,
4634                                              self.shutdown_timeout)
4635     msg = result.fail_msg
4636     if msg:
4637       if self.op.ignore_failures:
4638         feedback_fn("Warning: can't shutdown instance: %s" % msg)
4639       else:
4640         raise errors.OpExecError("Could not shutdown instance %s on"
4641                                  " node %s: %s" %
4642                                  (instance.name, instance.primary_node, msg))
4643
4644     logging.info("Removing block devices for instance %s", instance.name)
4645
4646     if not _RemoveDisks(self, instance):
4647       if self.op.ignore_failures:
4648         feedback_fn("Warning: can't remove instance's disks")
4649       else:
4650         raise errors.OpExecError("Can't remove instance's disks")
4651
4652     logging.info("Removing instance %s out of cluster config", instance.name)
4653
4654     self.cfg.RemoveInstance(instance.name)
4655     self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
4656
4657
4658 class LUQueryInstances(NoHooksLU):
4659   """Logical unit for querying instances.
4660
4661   """
4662   # pylint: disable-msg=W0142
4663   _OP_REQP = ["output_fields", "names", "use_locking"]
4664   REQ_BGL = False
4665   _SIMPLE_FIELDS = ["name", "os", "network_port", "hypervisor",
4666                     "serial_no", "ctime", "mtime", "uuid"]
4667   _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
4668                                     "admin_state",
4669                                     "disk_template", "ip", "mac", "bridge",
4670                                     "nic_mode", "nic_link",
4671                                     "sda_size", "sdb_size", "vcpus", "tags",
4672                                     "network_port", "beparams",
4673                                     r"(disk)\.(size)/([0-9]+)",
4674                                     r"(disk)\.(sizes)", "disk_usage",
4675                                     r"(nic)\.(mac|ip|mode|link)/([0-9]+)",
4676                                     r"(nic)\.(bridge)/([0-9]+)",
4677                                     r"(nic)\.(macs|ips|modes|links|bridges)",
4678                                     r"(disk|nic)\.(count)",
4679                                     "hvparams",
4680                                     ] + _SIMPLE_FIELDS +
4681                                   ["hv/%s" % name
4682                                    for name in constants.HVS_PARAMETERS
4683                                    if name not in constants.HVC_GLOBALS] +
4684                                   ["be/%s" % name
4685                                    for name in constants.BES_PARAMETERS])
4686   _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
4687
4688
4689   def ExpandNames(self):
4690     _CheckOutputFields(static=self._FIELDS_STATIC,
4691                        dynamic=self._FIELDS_DYNAMIC,
4692                        selected=self.op.output_fields)
4693
4694     self.needed_locks = {}
4695     self.share_locks[locking.LEVEL_INSTANCE] = 1
4696     self.share_locks[locking.LEVEL_NODE] = 1
4697
4698     if self.op.names:
4699       self.wanted = _GetWantedInstances(self, self.op.names)
4700     else:
4701       self.wanted = locking.ALL_SET
4702
4703     self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
4704     self.do_locking = self.do_node_query and self.op.use_locking
4705     if self.do_locking:
4706       self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
4707       self.needed_locks[locking.LEVEL_NODE] = []
4708       self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4709
4710   def DeclareLocks(self, level):
4711     if level == locking.LEVEL_NODE and self.do_locking:
4712       self._LockInstancesNodes()
4713
4714   def CheckPrereq(self):
4715     """Check prerequisites.
4716
4717     """
4718     pass
4719
4720   def Exec(self, feedback_fn):
4721     """Computes the list of nodes and their attributes.
4722
4723     """
4724     # pylint: disable-msg=R0912
4725     # way too many branches here
4726     all_info = self.cfg.GetAllInstancesInfo()
4727     if self.wanted == locking.ALL_SET:
4728       # caller didn't specify instance names, so ordering is not important
4729       if self.do_locking:
4730         instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
4731       else:
4732         instance_names = all_info.keys()
4733       instance_names = utils.NiceSort(instance_names)
4734     else:
4735       # caller did specify names, so we must keep the ordering
4736       if self.do_locking:
4737         tgt_set = self.acquired_locks[locking.LEVEL_INSTANCE]
4738       else:
4739         tgt_set = all_info.keys()
4740       missing = set(self.wanted).difference(tgt_set)
4741       if missing:
4742         raise errors.OpExecError("Some instances were removed before"
4743                                  " retrieving their data: %s" % missing)
4744       instance_names = self.wanted
4745
4746     instance_list = [all_info[iname] for iname in instance_names]
4747
4748     # begin data gathering
4749
4750     nodes = frozenset([inst.primary_node for inst in instance_list])
4751     hv_list = list(set([inst.hypervisor for inst in instance_list]))
4752
4753     bad_nodes = []
4754     off_nodes = []
4755     if self.do_node_query:
4756       live_data = {}
4757       node_data = self.rpc.call_all_instances_info(nodes, hv_list)
4758       for name in nodes:
4759         result = node_data[name]
4760         if result.offline:
4761           # offline nodes will be in both lists
4762           off_nodes.append(name)
4763         if result.fail_msg:
4764           bad_nodes.append(name)
4765         else:
4766           if result.payload:
4767             live_data.update(result.payload)
4768           # else no instance is alive
4769     else:
4770       live_data = dict([(name, {}) for name in instance_names])
4771
4772     # end data gathering
4773
4774     HVPREFIX = "hv/"
4775     BEPREFIX = "be/"
4776     output = []
4777     cluster = self.cfg.GetClusterInfo()
4778     for instance in instance_list:
4779       iout = []
4780       i_hv = cluster.FillHV(instance, skip_globals=True)
4781       i_be = cluster.FillBE(instance)
4782       i_nicp = [objects.FillDict(cluster.nicparams[constants.PP_DEFAULT],
4783                                  nic.nicparams) for nic in instance.nics]
4784       for field in self.op.output_fields:
4785         st_match = self._FIELDS_STATIC.Matches(field)
4786         if field in self._SIMPLE_FIELDS:
4787           val = getattr(instance, field)
4788         elif field == "pnode":
4789           val = instance.primary_node
4790         elif field == "snodes":
4791           val = list(instance.secondary_nodes)
4792         elif field == "admin_state":
4793           val = instance.admin_up
4794         elif field == "oper_state":
4795           if instance.primary_node in bad_nodes:
4796             val = None
4797           else:
4798             val = bool(live_data.get(instance.name))
4799         elif field == "status":
4800           if instance.primary_node in off_nodes:
4801             val = "ERROR_nodeoffline"
4802           elif instance.primary_node in bad_nodes:
4803             val = "ERROR_nodedown"
4804           else:
4805             running = bool(live_data.get(instance.name))
4806             if running:
4807               if instance.admin_up:
4808                 val = "running"
4809               else:
4810                 val = "ERROR_up"
4811             else:
4812               if instance.admin_up:
4813                 val = "ERROR_down"
4814               else:
4815                 val = "ADMIN_down"
4816         elif field == "oper_ram":
4817           if instance.primary_node in bad_nodes:
4818             val = None
4819           elif instance.name in live_data:
4820             val = live_data[instance.name].get("memory", "?")
4821           else:
4822             val = "-"
4823         elif field == "vcpus":
4824           val = i_be[constants.BE_VCPUS]
4825         elif field == "disk_template":
4826           val = instance.disk_template
4827         elif field == "ip":
4828           if instance.nics:
4829             val = instance.nics[0].ip
4830           else:
4831             val = None
4832         elif field == "nic_mode":
4833           if instance.nics:
4834             val = i_nicp[0][constants.NIC_MODE]
4835           else:
4836             val = None
4837         elif field == "nic_link":
4838           if instance.nics:
4839             val = i_nicp[0][constants.NIC_LINK]
4840           else:
4841             val = None
4842         elif field == "bridge":
4843           if (instance.nics and
4844               i_nicp[0][constants.NIC_MODE] == constants.NIC_MODE_BRIDGED):
4845             val = i_nicp[0][constants.NIC_LINK]
4846           else:
4847             val = None
4848         elif field == "mac":
4849           if instance.nics:
4850             val = instance.nics[0].mac
4851           else:
4852             val = None
4853         elif field == "sda_size" or field == "sdb_size":
4854           idx = ord(field[2]) - ord('a')
4855           try:
4856             val = instance.FindDisk(idx).size
4857           except errors.OpPrereqError:
4858             val = None
4859         elif field == "disk_usage": # total disk usage per node
4860           disk_sizes = [{'size': disk.size} for disk in instance.disks]
4861           val = _ComputeDiskSize(instance.disk_template, disk_sizes)
4862         elif field == "tags":
4863           val = list(instance.GetTags())
4864         elif field == "hvparams":
4865           val = i_hv
4866         elif (field.startswith(HVPREFIX) and
4867               field[len(HVPREFIX):] in constants.HVS_PARAMETERS and
4868               field[len(HVPREFIX):] not in constants.HVC_GLOBALS):
4869           val = i_hv.get(field[len(HVPREFIX):], None)
4870         elif field == "beparams":
4871           val = i_be
4872         elif (field.startswith(BEPREFIX) and
4873               field[len(BEPREFIX):] in constants.BES_PARAMETERS):
4874           val = i_be.get(field[len(BEPREFIX):], None)
4875         elif st_match and st_match.groups():
4876           # matches a variable list
4877           st_groups = st_match.groups()
4878           if st_groups and st_groups[0] == "disk":
4879             if st_groups[1] == "count":
4880               val = len(instance.disks)
4881             elif st_groups[1] == "sizes":
4882               val = [disk.size for disk in instance.disks]
4883             elif st_groups[1] == "size":
4884               try:
4885                 val = instance.FindDisk(st_groups[2]).size
4886               except errors.OpPrereqError:
4887                 val = None
4888             else:
4889               assert False, "Unhandled disk parameter"
4890           elif st_groups[0] == "nic":
4891             if st_groups[1] == "count":
4892               val = len(instance.nics)
4893             elif st_groups[1] == "macs":
4894               val = [nic.mac for nic in instance.nics]
4895             elif st_groups[1] == "ips":
4896               val = [nic.ip for nic in instance.nics]
4897             elif st_groups[1] == "modes":
4898               val = [nicp[constants.NIC_MODE] for nicp in i_nicp]
4899             elif st_groups[1] == "links":
4900               val = [nicp[constants.NIC_LINK] for nicp in i_nicp]
4901             elif st_groups[1] == "bridges":
4902               val = []
4903               for nicp in i_nicp:
4904                 if nicp[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
4905                   val.append(nicp[constants.NIC_LINK])
4906                 else:
4907                   val.append(None)
4908             else:
4909               # index-based item
4910               nic_idx = int(st_groups[2])
4911               if nic_idx >= len(instance.nics):
4912                 val = None
4913               else:
4914                 if st_groups[1] == "mac":
4915                   val = instance.nics[nic_idx].mac
4916                 elif st_groups[1] == "ip":
4917                   val = instance.nics[nic_idx].ip
4918                 elif st_groups[1] == "mode":
4919                   val = i_nicp[nic_idx][constants.NIC_MODE]
4920                 elif st_groups[1] == "link":
4921                   val = i_nicp[nic_idx][constants.NIC_LINK]
4922                 elif st_groups[1] == "bridge":
4923                   nic_mode = i_nicp[nic_idx][constants.NIC_MODE]
4924                   if nic_mode == constants.NIC_MODE_BRIDGED:
4925                     val = i_nicp[nic_idx][constants.NIC_LINK]
4926                   else:
4927                     val = None
4928                 else:
4929                   assert False, "Unhandled NIC parameter"
4930           else:
4931             assert False, ("Declared but unhandled variable parameter '%s'" %
4932                            field)
4933         else:
4934           assert False, "Declared but unhandled parameter '%s'" % field
4935         iout.append(val)
4936       output.append(iout)
4937
4938     return output
4939
4940
4941 class LUFailoverInstance(LogicalUnit):
4942   """Failover an instance.
4943
4944   """
4945   HPATH = "instance-failover"
4946   HTYPE = constants.HTYPE_INSTANCE
4947   _OP_REQP = ["instance_name", "ignore_consistency"]
4948   REQ_BGL = False
4949
4950   def CheckArguments(self):
4951     """Check the arguments.
4952
4953     """
4954     self.shutdown_timeout = getattr(self.op, "shutdown_timeout",
4955                                     constants.DEFAULT_SHUTDOWN_TIMEOUT)
4956
4957   def ExpandNames(self):
4958     self._ExpandAndLockInstance()
4959     self.needed_locks[locking.LEVEL_NODE] = []
4960     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4961
4962   def DeclareLocks(self, level):
4963     if level == locking.LEVEL_NODE:
4964       self._LockInstancesNodes()
4965
4966   def BuildHooksEnv(self):
4967     """Build hooks env.
4968
4969     This runs on master, primary and secondary nodes of the instance.
4970
4971     """
4972     instance = self.instance
4973     source_node = instance.primary_node
4974     target_node = instance.secondary_nodes[0]
4975     env = {
4976       "IGNORE_CONSISTENCY": self.op.ignore_consistency,
4977       "SHUTDOWN_TIMEOUT": self.shutdown_timeout,
4978       "OLD_PRIMARY": source_node,
4979       "OLD_SECONDARY": target_node,
4980       "NEW_PRIMARY": target_node,
4981       "NEW_SECONDARY": source_node,
4982       }
4983     env.update(_BuildInstanceHookEnvByObject(self, instance))
4984     nl = [self.cfg.GetMasterNode()] + list(instance.secondary_nodes)
4985     nl_post = list(nl)
4986     nl_post.append(source_node)
4987     return env, nl, nl_post
4988
4989   def CheckPrereq(self):
4990     """Check prerequisites.
4991
4992     This checks that the instance is in the cluster.
4993
4994     """
4995     self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4996     assert self.instance is not None, \
4997       "Cannot retrieve locked instance %s" % self.op.instance_name
4998
4999     bep = self.cfg.GetClusterInfo().FillBE(instance)
5000     if instance.disk_template not in constants.DTS_NET_MIRROR:
5001       raise errors.OpPrereqError("Instance's disk layout is not"
5002                                  " network mirrored, cannot failover.",
5003                                  errors.ECODE_STATE)
5004
5005     secondary_nodes = instance.secondary_nodes
5006     if not secondary_nodes:
5007       raise errors.ProgrammerError("no secondary node but using "
5008                                    "a mirrored disk template")
5009
5010     target_node = secondary_nodes[0]
5011     _CheckNodeOnline(self, target_node)
5012     _CheckNodeNotDrained(self, target_node)
5013     if instance.admin_up:
5014       # check memory requirements on the secondary node
5015       _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
5016                            instance.name, bep[constants.BE_MEMORY],
5017                            instance.hypervisor)
5018     else:
5019       self.LogInfo("Not checking memory on the secondary node as"
5020                    " instance will not be started")
5021
5022     # check bridge existance
5023     _CheckInstanceBridgesExist(self, instance, node=target_node)
5024
5025   def Exec(self, feedback_fn):
5026     """Failover an instance.
5027
5028     The failover is done by shutting it down on its present node and
5029     starting it on the secondary.
5030
5031     """
5032     instance = self.instance
5033
5034     source_node = instance.primary_node
5035     target_node = instance.secondary_nodes[0]
5036
5037     if instance.admin_up:
5038       feedback_fn("* checking disk consistency between source and target")
5039       for dev in instance.disks:
5040         # for drbd, these are drbd over lvm
5041         if not _CheckDiskConsistency(self, dev, target_node, False):
5042           if not self.op.ignore_consistency:
5043             raise errors.OpExecError("Disk %s is degraded on target node,"
5044                                      " aborting failover." % dev.iv_name)
5045     else:
5046       feedback_fn("* not checking disk consistency as instance is not running")
5047
5048     feedback_fn("* shutting down instance on source node")
5049     logging.info("Shutting down instance %s on node %s",
5050                  instance.name, source_node)
5051
5052     result = self.rpc.call_instance_shutdown(source_node, instance,
5053                                              self.shutdown_timeout)
5054     msg = result.fail_msg
5055     if msg:
5056       if self.op.ignore_consistency:
5057         self.proc.LogWarning("Could not shutdown instance %s on node %s."
5058                              " Proceeding anyway. Please make sure node"
5059                              " %s is down. Error details: %s",
5060                              instance.name, source_node, source_node, msg)
5061       else:
5062         raise errors.OpExecError("Could not shutdown instance %s on"
5063                                  " node %s: %s" %
5064                                  (instance.name, source_node, msg))
5065
5066     feedback_fn("* deactivating the instance's disks on source node")
5067     if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
5068       raise errors.OpExecError("Can't shut down the instance's disks.")
5069
5070     instance.primary_node = target_node
5071     # distribute new instance config to the other nodes
5072     self.cfg.Update(instance, feedback_fn)
5073
5074     # Only start the instance if it's marked as up
5075     if instance.admin_up:
5076       feedback_fn("* activating the instance's disks on target node")
5077       logging.info("Starting instance %s on node %s",
5078                    instance.name, target_node)
5079
5080       disks_ok, _ = _AssembleInstanceDisks(self, instance,
5081                                                ignore_secondaries=True)
5082       if not disks_ok:
5083         _ShutdownInstanceDisks(self, instance)
5084         raise errors.OpExecError("Can't activate the instance's disks")
5085
5086       feedback_fn("* starting the instance on the target node")
5087       result = self.rpc.call_instance_start(target_node, instance, None, None)
5088       msg = result.fail_msg
5089       if msg:
5090         _ShutdownInstanceDisks(self, instance)
5091         raise errors.OpExecError("Could not start instance %s on node %s: %s" %
5092                                  (instance.name, target_node, msg))
5093
5094
5095 class LUMigrateInstance(LogicalUnit):
5096   """Migrate an instance.
5097
5098   This is migration without shutting down, compared to the failover,
5099   which is done with shutdown.
5100
5101   """
5102   HPATH = "instance-migrate"
5103   HTYPE = constants.HTYPE_INSTANCE
5104   _OP_REQP = ["instance_name", "live", "cleanup"]
5105
5106   REQ_BGL = False
5107
5108   def ExpandNames(self):
5109     self._ExpandAndLockInstance()
5110
5111     self.needed_locks[locking.LEVEL_NODE] = []
5112     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5113
5114     self._migrater = TLMigrateInstance(self, self.op.instance_name,
5115                                        self.op.live, self.op.cleanup)
5116     self.tasklets = [self._migrater]
5117
5118   def DeclareLocks(self, level):
5119     if level == locking.LEVEL_NODE:
5120       self._LockInstancesNodes()
5121
5122   def BuildHooksEnv(self):
5123     """Build hooks env.
5124
5125     This runs on master, primary and secondary nodes of the instance.
5126
5127     """
5128     instance = self._migrater.instance
5129     source_node = instance.primary_node
5130     target_node = instance.secondary_nodes[0]
5131     env = _BuildInstanceHookEnvByObject(self, instance)
5132     env["MIGRATE_LIVE"] = self.op.live
5133     env["MIGRATE_CLEANUP"] = self.op.cleanup
5134     env.update({
5135         "OLD_PRIMARY": source_node,
5136         "OLD_SECONDARY": target_node,
5137         "NEW_PRIMARY": target_node,
5138         "NEW_SECONDARY": source_node,
5139         })
5140     nl = [self.cfg.GetMasterNode()] + list(instance.secondary_nodes)
5141     nl_post = list(nl)
5142     nl_post.append(source_node)
5143     return env, nl, nl_post
5144
5145
5146 class LUMoveInstance(LogicalUnit):
5147   """Move an instance by data-copying.
5148
5149   """
5150   HPATH = "instance-move"
5151   HTYPE = constants.HTYPE_INSTANCE
5152   _OP_REQP = ["instance_name", "target_node"]
5153   REQ_BGL = False
5154
5155   def CheckArguments(self):
5156     """Check the arguments.
5157
5158     """
5159     self.shutdown_timeout = getattr(self.op, "shutdown_timeout",
5160                                     constants.DEFAULT_SHUTDOWN_TIMEOUT)
5161
5162   def ExpandNames(self):
5163     self._ExpandAndLockInstance()
5164     target_node = _ExpandNodeName(self.cfg, self.op.target_node)
5165     self.op.target_node = target_node
5166     self.needed_locks[locking.LEVEL_NODE] = [target_node]
5167     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
5168
5169   def DeclareLocks(self, level):
5170     if level == locking.LEVEL_NODE:
5171       self._LockInstancesNodes(primary_only=True)
5172
5173   def BuildHooksEnv(self):
5174     """Build hooks env.
5175
5176     This runs on master, primary and secondary nodes of the instance.
5177
5178     """
5179     env = {
5180       "TARGET_NODE": self.op.target_node,
5181       "SHUTDOWN_TIMEOUT": self.shutdown_timeout,
5182       }
5183     env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5184     nl = [self.cfg.GetMasterNode()] + [self.instance.primary_node,
5185                                        self.op.target_node]
5186     return env, nl, nl
5187
5188   def CheckPrereq(self):
5189     """Check prerequisites.
5190
5191     This checks that the instance is in the cluster.
5192
5193     """
5194     self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5195     assert self.instance is not None, \
5196       "Cannot retrieve locked instance %s" % self.op.instance_name
5197
5198     node = self.cfg.GetNodeInfo(self.op.target_node)
5199     assert node is not None, \
5200       "Cannot retrieve locked node %s" % self.op.target_node
5201
5202     self.target_node = target_node = node.name
5203
5204     if target_node == instance.primary_node:
5205       raise errors.OpPrereqError("Instance %s is already on the node %s" %
5206                                  (instance.name, target_node),
5207                                  errors.ECODE_STATE)
5208
5209     bep = self.cfg.GetClusterInfo().FillBE(instance)
5210
5211     for idx, dsk in enumerate(instance.disks):
5212       if dsk.dev_type not in (constants.LD_LV, constants.LD_FILE):
5213         raise errors.OpPrereqError("Instance disk %d has a complex layout,"
5214                                    " cannot copy" % idx, errors.ECODE_STATE)
5215
5216     _CheckNodeOnline(self, target_node)
5217     _CheckNodeNotDrained(self, target_node)
5218
5219     if instance.admin_up:
5220       # check memory requirements on the secondary node
5221       _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
5222                            instance.name, bep[constants.BE_MEMORY],
5223                            instance.hypervisor)
5224     else:
5225       self.LogInfo("Not checking memory on the secondary node as"
5226                    " instance will not be started")
5227
5228     # check bridge existance
5229     _CheckInstanceBridgesExist(self, instance, node=target_node)
5230
5231   def Exec(self, feedback_fn):
5232     """Move an instance.
5233
5234     The move is done by shutting it down on its present node, copying
5235     the data over (slow) and starting it on the new node.
5236
5237     """
5238     instance = self.instance
5239
5240     source_node = instance.primary_node
5241     target_node = self.target_node
5242
5243     self.LogInfo("Shutting down instance %s on source node %s",
5244                  instance.name, source_node)
5245
5246     result = self.rpc.call_instance_shutdown(source_node, instance,
5247                                              self.shutdown_timeout)
5248     msg = result.fail_msg
5249     if msg:
5250       if self.op.ignore_consistency:
5251         self.proc.LogWarning("Could not shutdown instance %s on node %s."
5252                              " Proceeding anyway. Please make sure node"
5253                              " %s is down. Error details: %s",
5254                              instance.name, source_node, source_node, msg)
5255       else:
5256         raise errors.OpExecError("Could not shutdown instance %s on"
5257                                  " node %s: %s" %
5258                                  (instance.name, source_node, msg))
5259
5260     # create the target disks
5261     try:
5262       _CreateDisks(self, instance, target_node=target_node)
5263     except errors.OpExecError:
5264       self.LogWarning("Device creation failed, reverting...")
5265       try:
5266         _RemoveDisks(self, instance, target_node=target_node)
5267       finally:
5268         self.cfg.ReleaseDRBDMinors(instance.name)
5269         raise
5270
5271     cluster_name = self.cfg.GetClusterInfo().cluster_name
5272
5273     errs = []
5274     # activate, get path, copy the data over
5275     for idx, disk in enumerate(instance.disks):
5276       self.LogInfo("Copying data for disk %d", idx)
5277       result = self.rpc.call_blockdev_assemble(target_node, disk,
5278                                                instance.name, True)
5279       if result.fail_msg:
5280         self.LogWarning("Can't assemble newly created disk %d: %s",
5281                         idx, result.fail_msg)
5282         errs.append(result.fail_msg)
5283         break
5284       dev_path = result.payload
5285       result = self.rpc.call_blockdev_export(source_node, disk,
5286                                              target_node, dev_path,
5287                                              cluster_name)
5288       if result.fail_msg:
5289         self.LogWarning("Can't copy data over for disk %d: %s",
5290                         idx, result.fail_msg)
5291         errs.append(result.fail_msg)
5292         break
5293
5294     if errs:
5295       self.LogWarning("Some disks failed to copy, aborting")
5296       try:
5297         _RemoveDisks(self, instance, target_node=target_node)
5298       finally:
5299         self.cfg.ReleaseDRBDMinors(instance.name)
5300         raise errors.OpExecError("Errors during disk copy: %s" %
5301                                  (",".join(errs),))
5302
5303     instance.primary_node = target_node
5304     self.cfg.Update(instance, feedback_fn)
5305
5306     self.LogInfo("Removing the disks on the original node")
5307     _RemoveDisks(self, instance, target_node=source_node)
5308
5309     # Only start the instance if it's marked as up
5310     if instance.admin_up:
5311       self.LogInfo("Starting instance %s on node %s",
5312                    instance.name, target_node)
5313
5314       disks_ok, _ = _AssembleInstanceDisks(self, instance,
5315                                            ignore_secondaries=True)
5316       if not disks_ok:
5317         _ShutdownInstanceDisks(self, instance)
5318         raise errors.OpExecError("Can't activate the instance's disks")
5319
5320       result = self.rpc.call_instance_start(target_node, instance, None, None)
5321       msg = result.fail_msg
5322       if msg:
5323         _ShutdownInstanceDisks(self, instance)
5324         raise errors.OpExecError("Could not start instance %s on node %s: %s" %
5325                                  (instance.name, target_node, msg))
5326
5327
5328 class LUMigrateNode(LogicalUnit):
5329   """Migrate all instances from a node.
5330
5331   """
5332   HPATH = "node-migrate"
5333   HTYPE = constants.HTYPE_NODE
5334   _OP_REQP = ["node_name", "live"]
5335   REQ_BGL = False
5336
5337   def ExpandNames(self):
5338     self.op.node_name = _ExpandNodeName(self.cfg, self.op.node_name)
5339
5340     self.needed_locks = {
5341       locking.LEVEL_NODE: [self.op.node_name],
5342       }
5343
5344     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
5345
5346     # Create tasklets for migrating instances for all instances on this node
5347     names = []
5348     tasklets = []
5349
5350     for inst in _GetNodePrimaryInstances(self.cfg, self.op.node_name):
5351       logging.debug("Migrating instance %s", inst.name)
5352       names.append(inst.name)
5353
5354       tasklets.append(TLMigrateInstance(self, inst.name, self.op.live, False))
5355
5356     self.tasklets = tasklets
5357
5358     # Declare instance locks
5359     self.needed_locks[locking.LEVEL_INSTANCE] = names
5360
5361   def DeclareLocks(self, level):
5362     if level == locking.LEVEL_NODE:
5363       self._LockInstancesNodes()
5364
5365   def BuildHooksEnv(self):
5366     """Build hooks env.
5367
5368     This runs on the master, the primary and all the secondaries.
5369
5370     """
5371     env = {
5372       "NODE_NAME": self.op.node_name,
5373       }
5374
5375     nl = [self.cfg.GetMasterNode()]
5376
5377     return (env, nl, nl)
5378
5379
5380 class TLMigrateInstance(Tasklet):
5381   def __init__(self, lu, instance_name, live, cleanup):
5382     """Initializes this class.
5383
5384     """
5385     Tasklet.__init__(self, lu)
5386
5387     # Parameters
5388     self.instance_name = instance_name
5389     self.live = live
5390     self.cleanup = cleanup
5391
5392   def CheckPrereq(self):
5393     """Check prerequisites.
5394
5395     This checks that the instance is in the cluster.
5396
5397     """
5398     instance_name = _ExpandInstanceName(self.lu.cfg, self.instance_name)
5399     instance = self.cfg.GetInstanceInfo(instance_name)
5400     assert instance is not None
5401
5402     if instance.disk_template != constants.DT_DRBD8:
5403       raise errors.OpPrereqError("Instance's disk layout is not"
5404                                  " drbd8, cannot migrate.", errors.ECODE_STATE)
5405
5406     secondary_nodes = instance.secondary_nodes
5407     if not secondary_nodes:
5408       raise errors.ConfigurationError("No secondary node but using"
5409                                       " drbd8 disk template")
5410
5411     i_be = self.cfg.GetClusterInfo().FillBE(instance)
5412
5413     target_node = secondary_nodes[0]
5414     # check memory requirements on the secondary node
5415     _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
5416                          instance.name, i_be[constants.BE_MEMORY],
5417                          instance.hypervisor)
5418
5419     # check bridge existance
5420     _CheckInstanceBridgesExist(self, instance, node=target_node)
5421
5422     if not self.cleanup:
5423       _CheckNodeNotDrained(self, target_node)
5424       result = self.rpc.call_instance_migratable(instance.primary_node,
5425                                                  instance)
5426       result.Raise("Can't migrate, please use failover",
5427                    prereq=True, ecode=errors.ECODE_STATE)
5428
5429     self.instance = instance
5430
5431   def _WaitUntilSync(self):
5432     """Poll with custom rpc for disk sync.
5433
5434     This uses our own step-based rpc call.
5435
5436     """
5437     self.feedback_fn("* wait until resync is done")
5438     all_done = False
5439     while not all_done:
5440       all_done = True
5441       result = self.rpc.call_drbd_wait_sync(self.all_nodes,
5442                                             self.nodes_ip,
5443                                             self.instance.disks)
5444       min_percent = 100
5445       for node, nres in result.items():
5446         nres.Raise("Cannot resync disks on node %s" % node)
5447         node_done, node_percent = nres.payload
5448         all_done = all_done and node_done
5449         if node_percent is not None:
5450           min_percent = min(min_percent, node_percent)
5451       if not all_done:
5452         if min_percent < 100:
5453           self.feedback_fn("   - progress: %.1f%%" % min_percent)
5454         time.sleep(2)
5455
5456   def _EnsureSecondary(self, node):
5457     """Demote a node to secondary.
5458
5459     """
5460     self.feedback_fn("* switching node %s to secondary mode" % node)
5461
5462     for dev in self.instance.disks:
5463       self.cfg.SetDiskID(dev, node)
5464
5465     result = self.rpc.call_blockdev_close(node, self.instance.name,
5466                                           self.instance.disks)
5467     result.Raise("Cannot change disk to secondary on node %s" % node)
5468
5469   def _GoStandalone(self):
5470     """Disconnect from the network.
5471
5472     """
5473     self.feedback_fn("* changing into standalone mode")
5474     result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
5475                                                self.instance.disks)
5476     for node, nres in result.items():
5477       nres.Raise("Cannot disconnect disks node %s" % node)
5478
5479   def _GoReconnect(self, multimaster):
5480     """Reconnect to the network.
5481
5482     """
5483     if multimaster:
5484       msg = "dual-master"
5485     else:
5486       msg = "single-master"
5487     self.feedback_fn("* changing disks into %s mode" % msg)
5488     result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
5489                                            self.instance.disks,
5490                                            self.instance.name, multimaster)
5491     for node, nres in result.items():
5492       nres.Raise("Cannot change disks config on node %s" % node)
5493
5494   def _ExecCleanup(self):
5495     """Try to cleanup after a failed migration.
5496
5497     The cleanup is done by:
5498       - check that the instance is running only on one node
5499         (and update the config if needed)
5500       - change disks on its secondary node to secondary
5501       - wait until disks are fully synchronized
5502       - disconnect from the network
5503       - change disks into single-master mode
5504       - wait again until disks are fully synchronized
5505
5506     """
5507     instance = self.instance
5508     target_node = self.target_node
5509     source_node = self.source_node
5510
5511     # check running on only one node
5512     self.feedback_fn("* checking where the instance actually runs"
5513                      " (if this hangs, the hypervisor might be in"
5514                      " a bad state)")
5515     ins_l = self.rpc.call_instance_list(self.all_nodes, [instance.hypervisor])
5516     for node, result in ins_l.items():
5517       result.Raise("Can't contact node %s" % node)
5518
5519     runningon_source = instance.name in ins_l[source_node].payload
5520     runningon_target = instance.name in ins_l[target_node].payload
5521
5522     if runningon_source and runningon_target:
5523       raise errors.OpExecError("Instance seems to be running on two nodes,"
5524                                " or the hypervisor is confused. You will have"
5525                                " to ensure manually that it runs only on one"
5526                                " and restart this operation.")
5527
5528     if not (runningon_source or runningon_target):
5529       raise errors.OpExecError("Instance does not seem to be running at all."
5530                                " In this case, it's safer to repair by"
5531                                " running 'gnt-instance stop' to ensure disk"
5532                                " shutdown, and then restarting it.")
5533
5534     if runningon_target:
5535       # the migration has actually succeeded, we need to update the config
5536       self.feedback_fn("* instance running on secondary node (%s),"
5537                        " updating config" % target_node)
5538       instance.primary_node = target_node
5539       self.cfg.Update(instance, self.feedback_fn)
5540       demoted_node = source_node
5541     else:
5542       self.feedback_fn("* instance confirmed to be running on its"
5543                        " primary node (%s)" % source_node)
5544       demoted_node = target_node
5545
5546     self._EnsureSecondary(demoted_node)
5547     try:
5548       self._WaitUntilSync()
5549     except errors.OpExecError:
5550       # we ignore here errors, since if the device is standalone, it
5551       # won't be able to sync
5552       pass
5553     self._GoStandalone()
5554     self._GoReconnect(False)
5555     self._WaitUntilSync()
5556
5557     self.feedback_fn("* done")
5558
5559   def _RevertDiskStatus(self):
5560     """Try to revert the disk status after a failed migration.
5561
5562     """
5563     target_node = self.target_node
5564     try:
5565       self._EnsureSecondary(target_node)
5566       self._GoStandalone()
5567       self._GoReconnect(False)
5568       self._WaitUntilSync()
5569     except errors.OpExecError, err:
5570       self.lu.LogWarning("Migration failed and I can't reconnect the"
5571                          " drives: error '%s'\n"
5572                          "Please look and recover the instance status" %
5573                          str(err))
5574
5575   def _AbortMigration(self):
5576     """Call the hypervisor code to abort a started migration.
5577
5578     """
5579     instance = self.instance
5580     target_node = self.target_node
5581     migration_info = self.migration_info
5582
5583     abort_result = self.rpc.call_finalize_migration(target_node,
5584                                                     instance,
5585                                                     migration_info,
5586                                                     False)
5587     abort_msg = abort_result.fail_msg
5588     if abort_msg:
5589       logging.error("Aborting migration failed on target node %s: %s",
5590                     target_node, abort_msg)
5591       # Don't raise an exception here, as we stil have to try to revert the
5592       # disk status, even if this step failed.
5593
5594   def _ExecMigration(self):
5595     """Migrate an instance.
5596
5597     The migrate is done by:
5598       - change the disks into dual-master mode
5599       - wait until disks are fully synchronized again
5600       - migrate the instance
5601       - change disks on the new secondary node (the old primary) to secondary
5602       - wait until disks are fully synchronized
5603       - change disks into single-master mode
5604
5605     """
5606     instance = self.instance
5607     target_node = self.target_node
5608     source_node = self.source_node
5609
5610     self.feedback_fn("* checking disk consistency between source and target")
5611     for dev in instance.disks:
5612       if not _CheckDiskConsistency(self, dev, target_node, False):
5613         raise errors.OpExecError("Disk %s is degraded or not fully"
5614                                  " synchronized on target node,"
5615                                  " aborting migrate." % dev.iv_name)
5616
5617     # First get the migration information from the remote node
5618     result = self.rpc.call_migration_info(source_node, instance)
5619     msg = result.fail_msg
5620     if msg:
5621       log_err = ("Failed fetching source migration information from %s: %s" %
5622                  (source_node, msg))
5623       logging.error(log_err)
5624       raise errors.OpExecError(log_err)
5625
5626     self.migration_info = migration_info = result.payload
5627
5628     # Then switch the disks to master/master mode
5629     self._EnsureSecondary(target_node)
5630     self._GoStandalone()
5631     self._GoReconnect(True)
5632     self._WaitUntilSync()
5633
5634     self.feedback_fn("* preparing %s to accept the instance" % target_node)
5635     result = self.rpc.call_accept_instance(target_node,
5636                                            instance,
5637                                            migration_info,
5638                                            self.nodes_ip[target_node])
5639
5640     msg = result.fail_msg
5641     if msg:
5642       logging.error("Instance pre-migration failed, trying to revert"
5643                     " disk status: %s", msg)
5644       self.feedback_fn("Pre-migration failed, aborting")
5645       self._AbortMigration()
5646       self._RevertDiskStatus()
5647       raise errors.OpExecError("Could not pre-migrate instance %s: %s" %
5648                                (instance.name, msg))
5649
5650     self.feedback_fn("* migrating instance to %s" % target_node)
5651     time.sleep(10)
5652     result = self.rpc.call_instance_migrate(source_node, instance,
5653                                             self.nodes_ip[target_node],
5654                                             self.live)
5655     msg = result.fail_msg
5656     if msg:
5657       logging.error("Instance migration failed, trying to revert"
5658                     " disk status: %s", msg)
5659       self.feedback_fn("Migration failed, aborting")
5660       self._AbortMigration()
5661       self._RevertDiskStatus()
5662       raise errors.OpExecError("Could not migrate instance %s: %s" %
5663                                (instance.name, msg))
5664     time.sleep(10)
5665
5666     instance.primary_node = target_node
5667     # distribute new instance config to the other nodes
5668     self.cfg.Update(instance, self.feedback_fn)
5669
5670     result = self.rpc.call_finalize_migration(target_node,
5671                                               instance,
5672                                               migration_info,
5673                                               True)
5674     msg = result.fail_msg
5675     if msg:
5676       logging.error("Instance migration succeeded, but finalization failed:"
5677                     " %s", msg)
5678       raise errors.OpExecError("Could not finalize instance migration: %s" %
5679                                msg)
5680
5681     self._EnsureSecondary(source_node)
5682     self._WaitUntilSync()
5683     self._GoStandalone()
5684     self._GoReconnect(False)
5685     self._WaitUntilSync()
5686
5687     self.feedback_fn("* done")
5688
5689   def Exec(self, feedback_fn):
5690     """Perform the migration.
5691
5692     """
5693     feedback_fn("Migrating instance %s" % self.instance.name)
5694
5695     self.feedback_fn = feedback_fn
5696
5697     self.source_node = self.instance.primary_node
5698     self.target_node = self.instance.secondary_nodes[0]
5699     self.all_nodes = [self.source_node, self.target_node]
5700     self.nodes_ip = {
5701       self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
5702       self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
5703       }
5704
5705     if self.cleanup:
5706       return self._ExecCleanup()
5707     else:
5708       return self._ExecMigration()
5709
5710
5711 def _CreateBlockDev(lu, node, instance, device, force_create,
5712                     info, force_open):
5713   """Create a tree of block devices on a given node.
5714
5715   If this device type has to be created on secondaries, create it and
5716   all its children.
5717
5718   If not, just recurse to children keeping the same 'force' value.
5719
5720   @param lu: the lu on whose behalf we execute
5721   @param node: the node on which to create the device
5722   @type instance: L{objects.Instance}
5723   @param instance: the instance which owns the device
5724   @type device: L{objects.Disk}
5725   @param device: the device to create
5726   @type force_create: boolean
5727   @param force_create: whether to force creation of this device; this
5728       will be change to True whenever we find a device which has
5729       CreateOnSecondary() attribute
5730   @param info: the extra 'metadata' we should attach to the device
5731       (this will be represented as a LVM tag)
5732   @type force_open: boolean
5733   @param force_open: this parameter will be passes to the
5734       L{backend.BlockdevCreate} function where it specifies
5735       whether we run on primary or not, and it affects both
5736       the child assembly and the device own Open() execution
5737
5738   """
5739   if device.CreateOnSecondary():
5740     force_create = True
5741
5742   if device.children:
5743     for child in device.children:
5744       _CreateBlockDev(lu, node, instance, child, force_create,
5745                       info, force_open)
5746
5747   if not force_create:
5748     return
5749
5750   _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
5751
5752
5753 def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
5754   """Create a single block device on a given node.
5755
5756   This will not recurse over children of the device, so they must be
5757   created in advance.
5758
5759   @param lu: the lu on whose behalf we execute
5760   @param node: the node on which to create the device
5761   @type instance: L{objects.Instance}
5762   @param instance: the instance which owns the device
5763   @type device: L{objects.Disk}
5764   @param device: the device to create
5765   @param info: the extra 'metadata' we should attach to the device
5766       (this will be represented as a LVM tag)
5767   @type force_open: boolean
5768   @param force_open: this parameter will be passes to the
5769       L{backend.BlockdevCreate} function where it specifies
5770       whether we run on primary or not, and it affects both
5771       the child assembly and the device own Open() execution
5772
5773   """
5774   lu.cfg.SetDiskID(device, node)
5775   result = lu.rpc.call_blockdev_create(node, device, device.size,
5776                                        instance.name, force_open, info)
5777   result.Raise("Can't create block device %s on"
5778                " node %s for instance %s" % (device, node, instance.name))
5779   if device.physical_id is None:
5780     device.physical_id = result.payload
5781
5782
5783 def _GenerateUniqueNames(lu, exts):
5784   """Generate a suitable LV name.
5785
5786   This will generate a logical volume name for the given instance.
5787
5788   """
5789   results = []
5790   for val in exts:
5791     new_id = lu.cfg.GenerateUniqueID(lu.proc.GetECId())
5792     results.append("%s%s" % (new_id, val))
5793   return results
5794
5795
5796 def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
5797                          p_minor, s_minor):
5798   """Generate a drbd8 device complete with its children.
5799
5800   """
5801   port = lu.cfg.AllocatePort()
5802   vgname = lu.cfg.GetVGName()
5803   shared_secret = lu.cfg.GenerateDRBDSecret(lu.proc.GetECId())
5804   dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
5805                           logical_id=(vgname, names[0]))
5806   dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
5807                           logical_id=(vgname, names[1]))
5808   drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
5809                           logical_id=(primary, secondary, port,
5810                                       p_minor, s_minor,
5811                                       shared_secret),
5812                           children=[dev_data, dev_meta],
5813                           iv_name=iv_name)
5814   return drbd_dev
5815
5816
5817 def _GenerateDiskTemplate(lu, template_name,
5818                           instance_name, primary_node,
5819                           secondary_nodes, disk_info,
5820                           file_storage_dir, file_driver,
5821                           base_index):
5822   """Generate the entire disk layout for a given template type.
5823
5824   """
5825   #TODO: compute space requirements
5826
5827   vgname = lu.cfg.GetVGName()
5828   disk_count = len(disk_info)
5829   disks = []
5830   if template_name == constants.DT_DISKLESS:
5831     pass
5832   elif template_name == constants.DT_PLAIN:
5833     if len(secondary_nodes) != 0:
5834       raise errors.ProgrammerError("Wrong template configuration")
5835
5836     names = _GenerateUniqueNames(lu, [".disk%d" % (base_index + i)
5837                                       for i in range(disk_count)])
5838     for idx, disk in enumerate(disk_info):
5839       disk_index = idx + base_index
5840       disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
5841                               logical_id=(vgname, names[idx]),
5842                               iv_name="disk/%d" % disk_index,
5843                               mode=disk["mode"])
5844       disks.append(disk_dev)
5845   elif template_name == constants.DT_DRBD8:
5846     if len(secondary_nodes) != 1:
5847       raise errors.ProgrammerError("Wrong template configuration")
5848     remote_node = secondary_nodes[0]
5849     minors = lu.cfg.AllocateDRBDMinor(
5850       [primary_node, remote_node] * len(disk_info), instance_name)
5851
5852     names = []
5853     for lv_prefix in _GenerateUniqueNames(lu, [".disk%d" % (base_index + i)
5854                                                for i in range(disk_count)]):
5855       names.append(lv_prefix + "_data")
5856       names.append(lv_prefix + "_meta")
5857     for idx, disk in enumerate(disk_info):
5858       disk_index = idx + base_index
5859       disk_dev = _GenerateDRBD8Branch(lu, primary_node, remote_node,
5860                                       disk["size"], names[idx*2:idx*2+2],
5861                                       "disk/%d" % disk_index,
5862                                       minors[idx*2], minors[idx*2+1])
5863       disk_dev.mode = disk["mode"]
5864       disks.append(disk_dev)
5865   elif template_name == constants.DT_FILE:
5866     if len(secondary_nodes) != 0:
5867       raise errors.ProgrammerError("Wrong template configuration")
5868
5869     _RequireFileStorage()
5870
5871     for idx, disk in enumerate(disk_info):
5872       disk_index = idx + base_index
5873       disk_dev = objects.Disk(dev_type=constants.LD_FILE, size=disk["size"],
5874                               iv_name="disk/%d" % disk_index,
5875                               logical_id=(file_driver,
5876                                           "%s/disk%d" % (file_storage_dir,
5877                                                          disk_index)),
5878                               mode=disk["mode"])
5879       disks.append(disk_dev)
5880   else:
5881     raise errors.ProgrammerError("Invalid disk template '%s'" % template_name)
5882   return disks
5883
5884
5885 def _GetInstanceInfoText(instance):
5886   """Compute that text that should be added to the disk's metadata.
5887
5888   """
5889   return "originstname+%s" % instance.name
5890
5891
5892 def _CreateDisks(lu, instance, to_skip=None, target_node=None):
5893   """Create all disks for an instance.
5894
5895   This abstracts away some work from AddInstance.
5896
5897   @type lu: L{LogicalUnit}
5898   @param lu: the logical unit on whose behalf we execute
5899   @type instance: L{objects.Instance}
5900   @param instance: the instance whose disks we should create
5901   @type to_skip: list
5902   @param to_skip: list of indices to skip
5903   @type target_node: string
5904   @param target_node: if passed, overrides the target node for creation
5905   @rtype: boolean
5906   @return: the success of the creation
5907
5908   """
5909   info = _GetInstanceInfoText(instance)
5910   if target_node is None:
5911     pnode = instance.primary_node
5912     all_nodes = instance.all_nodes
5913   else:
5914     pnode = target_node
5915     all_nodes = [pnode]
5916
5917   if instance.disk_template == constants.DT_FILE:
5918     file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
5919     result = lu.rpc.call_file_storage_dir_create(pnode, file_storage_dir)
5920
5921     result.Raise("Failed to create directory '%s' on"
5922                  " node %s" % (file_storage_dir, pnode))
5923
5924   # Note: this needs to be kept in sync with adding of disks in
5925   # LUSetInstanceParams
5926   for idx, device in enumerate(instance.disks):
5927     if to_skip and idx in to_skip:
5928       continue
5929     logging.info("Creating volume %s for instance %s",
5930                  device.iv_name, instance.name)
5931     #HARDCODE
5932     for node in all_nodes:
5933       f_create = node == pnode
5934       _CreateBlockDev(lu, node, instance, device, f_create, info, f_create)
5935
5936
5937 def _RemoveDisks(lu, instance, target_node=None):
5938   """Remove all disks for an instance.
5939
5940   This abstracts away some work from `AddInstance()` and
5941   `RemoveInstance()`. Note that in case some of the devices couldn't
5942   be removed, the removal will continue with the other ones (compare
5943   with `_CreateDisks()`).
5944
5945   @type lu: L{LogicalUnit}
5946   @param lu: the logical unit on whose behalf we execute
5947   @type instance: L{objects.Instance}
5948   @param instance: the instance whose disks we should remove
5949   @type target_node: string
5950   @param target_node: used to override the node on which to remove the disks
5951   @rtype: boolean
5952   @return: the success of the removal
5953
5954   """
5955   logging.info("Removing block devices for instance %s", instance.name)
5956
5957   all_result = True
5958   for device in instance.disks:
5959     if target_node:
5960       edata = [(target_node, device)]
5961     else:
5962       edata = device.ComputeNodeTree(instance.primary_node)
5963     for node, disk in edata:
5964       lu.cfg.SetDiskID(disk, node)
5965       msg = lu.rpc.call_blockdev_remove(node, disk).fail_msg
5966       if msg:
5967         lu.LogWarning("Could not remove block device %s on node %s,"
5968                       " continuing anyway: %s", device.iv_name, node, msg)
5969         all_result = False
5970
5971   if instance.disk_template == constants.DT_FILE:
5972     file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
5973     if target_node:
5974       tgt = target_node
5975     else:
5976       tgt = instance.primary_node
5977     result = lu.rpc.call_file_storage_dir_remove(tgt, file_storage_dir)
5978     if result.fail_msg:
5979       lu.LogWarning("Could not remove directory '%s' on node %s: %s",
5980                     file_storage_dir, instance.primary_node, result.fail_msg)
5981       all_result = False
5982
5983   return all_result
5984
5985
5986 def _ComputeDiskSize(disk_template, disks):
5987   """Compute disk size requirements in the volume group
5988
5989   """
5990   # Required free disk space as a function of disk and swap space
5991   req_size_dict = {
5992     constants.DT_DISKLESS: None,
5993     constants.DT_PLAIN: sum(d["size"] for d in disks),
5994     # 128 MB are added for drbd metadata for each disk
5995     constants.DT_DRBD8: sum(d["size"] + 128 for d in disks),
5996     constants.DT_FILE: None,
5997   }
5998
5999   if disk_template not in req_size_dict:
6000     raise errors.ProgrammerError("Disk template '%s' size requirement"
6001                                  " is unknown" %  disk_template)
6002
6003   return req_size_dict[disk_template]
6004
6005
6006 def _CheckHVParams(lu, nodenames, hvname, hvparams):
6007   """Hypervisor parameter validation.
6008
6009   This function abstract the hypervisor parameter validation to be
6010   used in both instance create and instance modify.
6011
6012   @type lu: L{LogicalUnit}
6013   @param lu: the logical unit for which we check
6014   @type nodenames: list
6015   @param nodenames: the list of nodes on which we should check
6016   @type hvname: string
6017   @param hvname: the name of the hypervisor we should use
6018   @type hvparams: dict
6019   @param hvparams: the parameters which we need to check
6020   @raise errors.OpPrereqError: if the parameters are not valid
6021
6022   """
6023   hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
6024                                                   hvname,
6025                                                   hvparams)
6026   for node in nodenames:
6027     info = hvinfo[node]
6028     if info.offline:
6029       continue
6030     info.Raise("Hypervisor parameter validation failed on node %s" % node)
6031
6032
6033 class LUCreateInstance(LogicalUnit):
6034   """Create an instance.
6035
6036   """
6037   HPATH = "instance-add"
6038   HTYPE = constants.HTYPE_INSTANCE
6039   _OP_REQP = ["instance_name", "disks",
6040               "mode", "start",
6041               "wait_for_sync", "ip_check", "nics",
6042               "hvparams", "beparams"]
6043   REQ_BGL = False
6044
6045   def CheckArguments(self):
6046     """Check arguments.
6047
6048     """
6049     # set optional parameters to none if they don't exist
6050     for attr in ["pnode", "snode", "iallocator", "hypervisor",
6051                  "disk_template", "identify_defaults"]:
6052       if not hasattr(self.op, attr):
6053         setattr(self.op, attr, None)
6054
6055     # do not require name_check to ease forward/backward compatibility
6056     # for tools
6057     if not hasattr(self.op, "name_check"):
6058       self.op.name_check = True
6059     if not hasattr(self.op, "no_install"):
6060       self.op.no_install = False
6061     if self.op.no_install and self.op.start:
6062       self.LogInfo("No-installation mode selected, disabling startup")
6063       self.op.start = False
6064     # validate/normalize the instance name
6065     self.op.instance_name = utils.HostInfo.NormalizeName(self.op.instance_name)
6066     if self.op.ip_check and not self.op.name_check:
6067       # TODO: make the ip check more flexible and not depend on the name check
6068       raise errors.OpPrereqError("Cannot do ip checks without a name check",
6069                                  errors.ECODE_INVAL)
6070     # check disk information: either all adopt, or no adopt
6071     has_adopt = has_no_adopt = False
6072     for disk in self.op.disks:
6073       if "adopt" in disk:
6074         has_adopt = True
6075       else:
6076         has_no_adopt = True
6077     if has_adopt and has_no_adopt:
6078       raise errors.OpPrereqError("Either all disks are adopted or none is",
6079                                  errors.ECODE_INVAL)
6080     if has_adopt:
6081       if self.op.disk_template != constants.DT_PLAIN:
6082         raise errors.OpPrereqError("Disk adoption is only supported for the"
6083                                    " 'plain' disk template",
6084                                    errors.ECODE_INVAL)
6085       if self.op.iallocator is not None:
6086         raise errors.OpPrereqError("Disk adoption not allowed with an"
6087                                    " iallocator script", errors.ECODE_INVAL)
6088       if self.op.mode == constants.INSTANCE_IMPORT:
6089         raise errors.OpPrereqError("Disk adoption not allowed for"
6090                                    " instance import", errors.ECODE_INVAL)
6091
6092     self.adopt_disks = has_adopt
6093
6094     # verify creation mode
6095     if self.op.mode not in (constants.INSTANCE_CREATE,
6096                             constants.INSTANCE_IMPORT):
6097       raise errors.OpPrereqError("Invalid instance creation mode '%s'" %
6098                                  self.op.mode, errors.ECODE_INVAL)
6099
6100     # instance name verification
6101     if self.op.name_check:
6102       self.hostname1 = utils.GetHostInfo(self.op.instance_name)
6103       self.op.instance_name = self.hostname1.name
6104       # used in CheckPrereq for ip ping check
6105       self.check_ip = self.hostname1.ip
6106     else:
6107       self.check_ip = None
6108
6109     # file storage checks
6110     if (self.op.file_driver and
6111         not self.op.file_driver in constants.FILE_DRIVER):
6112       raise errors.OpPrereqError("Invalid file driver name '%s'" %
6113                                  self.op.file_driver, errors.ECODE_INVAL)
6114
6115     if self.op.file_storage_dir and os.path.isabs(self.op.file_storage_dir):
6116       raise errors.OpPrereqError("File storage directory path not absolute",
6117                                  errors.ECODE_INVAL)
6118
6119     ### Node/iallocator related checks
6120     if [self.op.iallocator, self.op.pnode].count(None) != 1:
6121       raise errors.OpPrereqError("One and only one of iallocator and primary"
6122                                  " node must be given",
6123                                  errors.ECODE_INVAL)
6124
6125     if self.op.mode == constants.INSTANCE_IMPORT:
6126       # On import force_variant must be True, because if we forced it at
6127       # initial install, our only chance when importing it back is that it
6128       # works again!
6129       self.op.force_variant = True
6130
6131       if self.op.no_install:
6132         self.LogInfo("No-installation mode has no effect during import")
6133
6134     else: # INSTANCE_CREATE
6135       if getattr(self.op, "os_type", None) is None:
6136         raise errors.OpPrereqError("No guest OS specified",
6137                                    errors.ECODE_INVAL)
6138       self.op.force_variant = getattr(self.op, "force_variant", False)
6139       if self.op.disk_template is None:
6140         raise errors.OpPrereqError("No disk template specified",
6141                                    errors.ECODE_INVAL)
6142
6143   def ExpandNames(self):
6144     """ExpandNames for CreateInstance.
6145
6146     Figure out the right locks for instance creation.
6147
6148     """
6149     self.needed_locks = {}
6150
6151     instance_name = self.op.instance_name
6152     # this is just a preventive check, but someone might still add this
6153     # instance in the meantime, and creation will fail at lock-add time
6154     if instance_name in self.cfg.GetInstanceList():
6155       raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
6156                                  instance_name, errors.ECODE_EXISTS)
6157
6158     self.add_locks[locking.LEVEL_INSTANCE] = instance_name
6159
6160     if self.op.iallocator:
6161       self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6162     else:
6163       self.op.pnode = _ExpandNodeName(self.cfg, self.op.pnode)
6164       nodelist = [self.op.pnode]
6165       if self.op.snode is not None:
6166         self.op.snode = _ExpandNodeName(self.cfg, self.op.snode)
6167         nodelist.append(self.op.snode)
6168       self.needed_locks[locking.LEVEL_NODE] = nodelist
6169
6170     # in case of import lock the source node too
6171     if self.op.mode == constants.INSTANCE_IMPORT:
6172       src_node = getattr(self.op, "src_node", None)
6173       src_path = getattr(self.op, "src_path", None)
6174
6175       if src_path is None:
6176         self.op.src_path = src_path = self.op.instance_name
6177
6178       if src_node is None:
6179         self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6180         self.op.src_node = None
6181         if os.path.isabs(src_path):
6182           raise errors.OpPrereqError("Importing an instance from an absolute"
6183                                      " path requires a source node option.",
6184                                      errors.ECODE_INVAL)
6185       else:
6186         self.op.src_node = src_node = _ExpandNodeName(self.cfg, src_node)
6187         if self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET:
6188           self.needed_locks[locking.LEVEL_NODE].append(src_node)
6189         if not os.path.isabs(src_path):
6190           self.op.src_path = src_path = \
6191             utils.PathJoin(constants.EXPORT_DIR, src_path)
6192
6193   def _RunAllocator(self):
6194     """Run the allocator based on input opcode.
6195
6196     """
6197     nics = [n.ToDict() for n in self.nics]
6198     ial = IAllocator(self.cfg, self.rpc,
6199                      mode=constants.IALLOCATOR_MODE_ALLOC,
6200                      name=self.op.instance_name,
6201                      disk_template=self.op.disk_template,
6202                      tags=[],
6203                      os=self.op.os_type,
6204                      vcpus=self.be_full[constants.BE_VCPUS],
6205                      mem_size=self.be_full[constants.BE_MEMORY],
6206                      disks=self.disks,
6207                      nics=nics,
6208                      hypervisor=self.op.hypervisor,
6209                      )
6210
6211     ial.Run(self.op.iallocator)
6212
6213     if not ial.success:
6214       raise errors.OpPrereqError("Can't compute nodes using"
6215                                  " iallocator '%s': %s" %
6216                                  (self.op.iallocator, ial.info),
6217                                  errors.ECODE_NORES)
6218     if len(ial.result) != ial.required_nodes:
6219       raise errors.OpPrereqError("iallocator '%s' returned invalid number"
6220                                  " of nodes (%s), required %s" %
6221                                  (self.op.iallocator, len(ial.result),
6222                                   ial.required_nodes), errors.ECODE_FAULT)
6223     self.op.pnode = ial.result[0]
6224     self.LogInfo("Selected nodes for instance %s via iallocator %s: %s",
6225                  self.op.instance_name, self.op.iallocator,
6226                  utils.CommaJoin(ial.result))
6227     if ial.required_nodes == 2:
6228       self.op.snode = ial.result[1]
6229
6230   def BuildHooksEnv(self):
6231     """Build hooks env.
6232
6233     This runs on master, primary and secondary nodes of the instance.
6234
6235     """
6236     env = {
6237       "ADD_MODE": self.op.mode,
6238       }
6239     if self.op.mode == constants.INSTANCE_IMPORT:
6240       env["SRC_NODE"] = self.op.src_node
6241       env["SRC_PATH"] = self.op.src_path
6242       env["SRC_IMAGES"] = self.src_images
6243
6244     env.update(_BuildInstanceHookEnv(
6245       name=self.op.instance_name,
6246       primary_node=self.op.pnode,
6247       secondary_nodes=self.secondaries,
6248       status=self.op.start,
6249       os_type=self.op.os_type,
6250       memory=self.be_full[constants.BE_MEMORY],
6251       vcpus=self.be_full[constants.BE_VCPUS],
6252       nics=_NICListToTuple(self, self.nics),
6253       disk_template=self.op.disk_template,
6254       disks=[(d["size"], d["mode"]) for d in self.disks],
6255       bep=self.be_full,
6256       hvp=self.hv_full,
6257       hypervisor_name=self.op.hypervisor,
6258     ))
6259
6260     nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
6261           self.secondaries)
6262     return env, nl, nl
6263
6264   def _ReadExportInfo(self):
6265     """Reads the export information from disk.
6266
6267     It will override the opcode source node and path with the actual
6268     information, if these two were not specified before.
6269
6270     @return: the export information
6271
6272     """
6273     assert self.op.mode == constants.INSTANCE_IMPORT
6274
6275     src_node = self.op.src_node
6276     src_path = self.op.src_path
6277
6278     if src_node is None:
6279       locked_nodes = self.acquired_locks[locking.LEVEL_NODE]
6280       exp_list = self.rpc.call_export_list(locked_nodes)
6281       found = False
6282       for node in exp_list:
6283         if exp_list[node].fail_msg:
6284           continue
6285         if src_path in exp_list[node].payload:
6286           found = True
6287           self.op.src_node = src_node = node
6288           self.op.src_path = src_path = utils.PathJoin(constants.EXPORT_DIR,
6289                                                        src_path)
6290           break
6291       if not found:
6292         raise errors.OpPrereqError("No export found for relative path %s" %
6293                                     src_path, errors.ECODE_INVAL)
6294
6295     _CheckNodeOnline(self, src_node)
6296     result = self.rpc.call_export_info(src_node, src_path)
6297     result.Raise("No export or invalid export found in dir %s" % src_path)
6298
6299     export_info = objects.SerializableConfigParser.Loads(str(result.payload))
6300     if not export_info.has_section(constants.INISECT_EXP):
6301       raise errors.ProgrammerError("Corrupted export config",
6302                                    errors.ECODE_ENVIRON)
6303
6304     ei_version = export_info.get(constants.INISECT_EXP, "version")
6305     if (int(ei_version) != constants.EXPORT_VERSION):
6306       raise errors.OpPrereqError("Wrong export version %s (wanted %d)" %
6307                                  (ei_version, constants.EXPORT_VERSION),
6308                                  errors.ECODE_ENVIRON)
6309     return export_info
6310
6311   def _ReadExportParams(self, einfo):
6312     """Use export parameters as defaults.
6313
6314     In case the opcode doesn't specify (as in override) some instance
6315     parameters, then try to use them from the export information, if
6316     that declares them.
6317
6318     """
6319     self.op.os_type = einfo.get(constants.INISECT_EXP, "os")
6320
6321     if self.op.disk_template is None:
6322       if einfo.has_option(constants.INISECT_INS, "disk_template"):
6323         self.op.disk_template = einfo.get(constants.INISECT_INS,
6324                                           "disk_template")
6325       else:
6326         raise errors.OpPrereqError("No disk template specified and the export"
6327                                    " is missing the disk_template information",
6328                                    errors.ECODE_INVAL)
6329
6330     if not self.op.disks:
6331       if einfo.has_option(constants.INISECT_INS, "disk_count"):
6332         disks = []
6333         # TODO: import the disk iv_name too
6334         for idx in range(einfo.getint(constants.INISECT_INS, "disk_count")):
6335           disk_sz = einfo.getint(constants.INISECT_INS, "disk%d_size" % idx)
6336           disks.append({"size": disk_sz})
6337         self.op.disks = disks
6338       else:
6339         raise errors.OpPrereqError("No disk info specified and the export"
6340                                    " is missing the disk information",
6341                                    errors.ECODE_INVAL)
6342
6343     if (not self.op.nics and
6344         einfo.has_option(constants.INISECT_INS, "nic_count")):
6345       nics = []
6346       for idx in range(einfo.getint(constants.INISECT_INS, "nic_count")):
6347         ndict = {}
6348         for name in list(constants.NICS_PARAMETERS) + ["ip", "mac"]:
6349           v = einfo.get(constants.INISECT_INS, "nic%d_%s" % (idx, name))
6350           ndict[name] = v
6351         nics.append(ndict)
6352       self.op.nics = nics
6353
6354     if (self.op.hypervisor is None and
6355         einfo.has_option(constants.INISECT_INS, "hypervisor")):
6356       self.op.hypervisor = einfo.get(constants.INISECT_INS, "hypervisor")
6357     if einfo.has_section(constants.INISECT_HYP):
6358       # use the export parameters but do not override the ones
6359       # specified by the user
6360       for name, value in einfo.items(constants.INISECT_HYP):
6361         if name not in self.op.hvparams:
6362           self.op.hvparams[name] = value
6363
6364     if einfo.has_section(constants.INISECT_BEP):
6365       # use the parameters, without overriding
6366       for name, value in einfo.items(constants.INISECT_BEP):
6367         if name not in self.op.beparams:
6368           self.op.beparams[name] = value
6369     else:
6370       # try to read the parameters old style, from the main section
6371       for name in constants.BES_PARAMETERS:
6372         if (name not in self.op.beparams and
6373             einfo.has_option(constants.INISECT_INS, name)):
6374           self.op.beparams[name] = einfo.get(constants.INISECT_INS, name)
6375
6376   def _RevertToDefaults(self, cluster):
6377     """Revert the instance parameters to the default values.
6378
6379     """
6380     # hvparams
6381     hv_defs = cluster.GetHVDefaults(self.op.hypervisor, self.op.os_type)
6382     for name in self.op.hvparams.keys():
6383       if name in hv_defs and hv_defs[name] == self.op.hvparams[name]:
6384         del self.op.hvparams[name]
6385     # beparams
6386     be_defs = cluster.beparams.get(constants.PP_DEFAULT, {})
6387     for name in self.op.beparams.keys():
6388       if name in be_defs and be_defs[name] == self.op.beparams[name]:
6389         del self.op.beparams[name]
6390     # nic params
6391     nic_defs = cluster.nicparams.get(constants.PP_DEFAULT, {})
6392     for nic in self.op.nics:
6393       for name in constants.NICS_PARAMETERS:
6394         if name in nic and name in nic_defs and nic[name] == nic_defs[name]:
6395           del nic[name]
6396
6397   def CheckPrereq(self):
6398     """Check prerequisites.
6399
6400     """
6401     if self.op.mode == constants.INSTANCE_IMPORT:
6402       export_info = self._ReadExportInfo()
6403       self._ReadExportParams(export_info)
6404
6405     _CheckDiskTemplate(self.op.disk_template)
6406
6407     if (not self.cfg.GetVGName() and
6408         self.op.disk_template not in constants.DTS_NOT_LVM):
6409       raise errors.OpPrereqError("Cluster does not support lvm-based"
6410                                  " instances", errors.ECODE_STATE)
6411
6412     if self.op.hypervisor is None:
6413       self.op.hypervisor = self.cfg.GetHypervisorType()
6414
6415     cluster = self.cfg.GetClusterInfo()
6416     enabled_hvs = cluster.enabled_hypervisors
6417     if self.op.hypervisor not in enabled_hvs:
6418       raise errors.OpPrereqError("Selected hypervisor (%s) not enabled in the"
6419                                  " cluster (%s)" % (self.op.hypervisor,
6420                                   ",".join(enabled_hvs)),
6421                                  errors.ECODE_STATE)
6422
6423     # check hypervisor parameter syntax (locally)
6424     utils.ForceDictType(self.op.hvparams, constants.HVS_PARAMETER_TYPES)
6425     filled_hvp = objects.FillDict(cluster.GetHVDefaults(self.op.hypervisor,
6426                                                         self.op.os_type),
6427                                   self.op.hvparams)
6428     hv_type = hypervisor.GetHypervisor(self.op.hypervisor)
6429     hv_type.CheckParameterSyntax(filled_hvp)
6430     self.hv_full = filled_hvp
6431     # check that we don't specify global parameters on an instance
6432     _CheckGlobalHvParams(self.op.hvparams)
6433
6434     # fill and remember the beparams dict
6435     utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
6436     self.be_full = objects.FillDict(cluster.beparams[constants.PP_DEFAULT],
6437                                     self.op.beparams)
6438
6439     # now that hvp/bep are in final format, let's reset to defaults,
6440     # if told to do so
6441     if self.op.identify_defaults:
6442       self._RevertToDefaults(cluster)
6443
6444     # NIC buildup
6445     self.nics = []
6446     for idx, nic in enumerate(self.op.nics):
6447       nic_mode_req = nic.get("mode", None)
6448       nic_mode = nic_mode_req
6449       if nic_mode is None:
6450         nic_mode = cluster.nicparams[constants.PP_DEFAULT][constants.NIC_MODE]
6451
6452       # in routed mode, for the first nic, the default ip is 'auto'
6453       if nic_mode == constants.NIC_MODE_ROUTED and idx == 0:
6454         default_ip_mode = constants.VALUE_AUTO
6455       else:
6456         default_ip_mode = constants.VALUE_NONE
6457
6458       # ip validity checks
6459       ip = nic.get("ip", default_ip_mode)
6460       if ip is None or ip.lower() == constants.VALUE_NONE:
6461         nic_ip = None
6462       elif ip.lower() == constants.VALUE_AUTO:
6463         if not self.op.name_check:
6464           raise errors.OpPrereqError("IP address set to auto but name checks"
6465                                      " have been skipped. Aborting.",
6466                                      errors.ECODE_INVAL)
6467         nic_ip = self.hostname1.ip
6468       else:
6469         if not utils.IsValidIP(ip):
6470           raise errors.OpPrereqError("Given IP address '%s' doesn't look"
6471                                      " like a valid IP" % ip,
6472                                      errors.ECODE_INVAL)
6473         nic_ip = ip
6474
6475       # TODO: check the ip address for uniqueness
6476       if nic_mode == constants.NIC_MODE_ROUTED and not nic_ip:
6477         raise errors.OpPrereqError("Routed nic mode requires an ip address",
6478                                    errors.ECODE_INVAL)
6479
6480       # MAC address verification
6481       mac = nic.get("mac", constants.VALUE_AUTO)
6482       if mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
6483         mac = utils.NormalizeAndValidateMac(mac)
6484
6485         try:
6486           self.cfg.ReserveMAC(mac, self.proc.GetECId())
6487         except errors.ReservationError:
6488           raise errors.OpPrereqError("MAC address %s already in use"
6489                                      " in cluster" % mac,
6490                                      errors.ECODE_NOTUNIQUE)
6491
6492       # bridge verification
6493       bridge = nic.get("bridge", None)
6494       link = nic.get("link", None)
6495       if bridge and link:
6496         raise errors.OpPrereqError("Cannot pass 'bridge' and 'link'"
6497                                    " at the same time", errors.ECODE_INVAL)
6498       elif bridge and nic_mode == constants.NIC_MODE_ROUTED:
6499         raise errors.OpPrereqError("Cannot pass 'bridge' on a routed nic",
6500                                    errors.ECODE_INVAL)
6501       elif bridge:
6502         link = bridge
6503
6504       nicparams = {}
6505       if nic_mode_req:
6506         nicparams[constants.NIC_MODE] = nic_mode_req
6507       if link:
6508         nicparams[constants.NIC_LINK] = link
6509
6510       check_params = objects.FillDict(cluster.nicparams[constants.PP_DEFAULT],
6511                                       nicparams)
6512       objects.NIC.CheckParameterSyntax(check_params)
6513       self.nics.append(objects.NIC(mac=mac, ip=nic_ip, nicparams=nicparams))
6514
6515     # disk checks/pre-build
6516     self.disks = []
6517     for disk in self.op.disks:
6518       mode = disk.get("mode", constants.DISK_RDWR)
6519       if mode not in constants.DISK_ACCESS_SET:
6520         raise errors.OpPrereqError("Invalid disk access mode '%s'" %
6521                                    mode, errors.ECODE_INVAL)
6522       size = disk.get("size", None)
6523       if size is None:
6524         raise errors.OpPrereqError("Missing disk size", errors.ECODE_INVAL)
6525       try:
6526         size = int(size)
6527       except (TypeError, ValueError):
6528         raise errors.OpPrereqError("Invalid disk size '%s'" % size,
6529                                    errors.ECODE_INVAL)
6530       new_disk = {"size": size, "mode": mode}
6531       if "adopt" in disk:
6532         new_disk["adopt"] = disk["adopt"]
6533       self.disks.append(new_disk)
6534
6535     if self.op.mode == constants.INSTANCE_IMPORT:
6536
6537       # Check that the new instance doesn't have less disks than the export
6538       instance_disks = len(self.disks)
6539       export_disks = export_info.getint(constants.INISECT_INS, 'disk_count')
6540       if instance_disks < export_disks:
6541         raise errors.OpPrereqError("Not enough disks to import."
6542                                    " (instance: %d, export: %d)" %
6543                                    (instance_disks, export_disks),
6544                                    errors.ECODE_INVAL)
6545
6546       disk_images = []
6547       for idx in range(export_disks):
6548         option = 'disk%d_dump' % idx
6549         if export_info.has_option(constants.INISECT_INS, option):
6550           # FIXME: are the old os-es, disk sizes, etc. useful?
6551           export_name = export_info.get(constants.INISECT_INS, option)
6552           image = utils.PathJoin(self.op.src_path, export_name)
6553           disk_images.append(image)
6554         else:
6555           disk_images.append(False)
6556
6557       self.src_images = disk_images
6558
6559       old_name = export_info.get(constants.INISECT_INS, 'name')
6560       try:
6561         exp_nic_count = export_info.getint(constants.INISECT_INS, 'nic_count')
6562       except (TypeError, ValueError), err:
6563         raise errors.OpPrereqError("Invalid export file, nic_count is not"
6564                                    " an integer: %s" % str(err),
6565                                    errors.ECODE_STATE)
6566       if self.op.instance_name == old_name:
6567         for idx, nic in enumerate(self.nics):
6568           if nic.mac == constants.VALUE_AUTO and exp_nic_count >= idx:
6569             nic_mac_ini = 'nic%d_mac' % idx
6570             nic.mac = export_info.get(constants.INISECT_INS, nic_mac_ini)
6571
6572     # ENDIF: self.op.mode == constants.INSTANCE_IMPORT
6573
6574     # ip ping checks (we use the same ip that was resolved in ExpandNames)
6575     if self.op.ip_check:
6576       if utils.TcpPing(self.check_ip, constants.DEFAULT_NODED_PORT):
6577         raise errors.OpPrereqError("IP %s of instance %s already in use" %
6578                                    (self.check_ip, self.op.instance_name),
6579                                    errors.ECODE_NOTUNIQUE)
6580
6581     #### mac address generation
6582     # By generating here the mac address both the allocator and the hooks get
6583     # the real final mac address rather than the 'auto' or 'generate' value.
6584     # There is a race condition between the generation and the instance object
6585     # creation, which means that we know the mac is valid now, but we're not
6586     # sure it will be when we actually add the instance. If things go bad
6587     # adding the instance will abort because of a duplicate mac, and the
6588     # creation job will fail.
6589     for nic in self.nics:
6590       if nic.mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
6591         nic.mac = self.cfg.GenerateMAC(self.proc.GetECId())
6592
6593     #### allocator run
6594
6595     if self.op.iallocator is not None:
6596       self._RunAllocator()
6597
6598     #### node related checks
6599
6600     # check primary node
6601     self.pnode = pnode = self.cfg.GetNodeInfo(self.op.pnode)
6602     assert self.pnode is not None, \
6603       "Cannot retrieve locked node %s" % self.op.pnode
6604     if pnode.offline:
6605       raise errors.OpPrereqError("Cannot use offline primary node '%s'" %
6606                                  pnode.name, errors.ECODE_STATE)
6607     if pnode.drained:
6608       raise errors.OpPrereqError("Cannot use drained primary node '%s'" %
6609                                  pnode.name, errors.ECODE_STATE)
6610
6611     self.secondaries = []
6612
6613     # mirror node verification
6614     if self.op.disk_template in constants.DTS_NET_MIRROR:
6615       if self.op.snode is None:
6616         raise errors.OpPrereqError("The networked disk templates need"
6617                                    " a mirror node", errors.ECODE_INVAL)
6618       if self.op.snode == pnode.name:
6619         raise errors.OpPrereqError("The secondary node cannot be the"
6620                                    " primary node.", errors.ECODE_INVAL)
6621       _CheckNodeOnline(self, self.op.snode)
6622       _CheckNodeNotDrained(self, self.op.snode)
6623       self.secondaries.append(self.op.snode)
6624
6625     nodenames = [pnode.name] + self.secondaries
6626
6627     req_size = _ComputeDiskSize(self.op.disk_template,
6628                                 self.disks)
6629
6630     # Check lv size requirements, if not adopting
6631     if req_size is not None and not self.adopt_disks:
6632       _CheckNodesFreeDisk(self, nodenames, req_size)
6633
6634     if self.adopt_disks: # instead, we must check the adoption data
6635       all_lvs = set([i["adopt"] for i in self.disks])
6636       if len(all_lvs) != len(self.disks):
6637         raise errors.OpPrereqError("Duplicate volume names given for adoption",
6638                                    errors.ECODE_INVAL)
6639       for lv_name in all_lvs:
6640         try:
6641           self.cfg.ReserveLV(lv_name, self.proc.GetECId())
6642         except errors.ReservationError:
6643           raise errors.OpPrereqError("LV named %s used by another instance" %
6644                                      lv_name, errors.ECODE_NOTUNIQUE)
6645
6646       node_lvs = self.rpc.call_lv_list([pnode.name],
6647                                        self.cfg.GetVGName())[pnode.name]
6648       node_lvs.Raise("Cannot get LV information from node %s" % pnode.name)
6649       node_lvs = node_lvs.payload
6650       delta = all_lvs.difference(node_lvs.keys())
6651       if delta:
6652         raise errors.OpPrereqError("Missing logical volume(s): %s" %
6653                                    utils.CommaJoin(delta),
6654                                    errors.ECODE_INVAL)
6655       online_lvs = [lv for lv in all_lvs if node_lvs[lv][2]]
6656       if online_lvs:
6657         raise errors.OpPrereqError("Online logical volumes found, cannot"
6658                                    " adopt: %s" % utils.CommaJoin(online_lvs),
6659                                    errors.ECODE_STATE)
6660       # update the size of disk based on what is found
6661       for dsk in self.disks:
6662         dsk["size"] = int(float(node_lvs[dsk["adopt"]][0]))
6663
6664     _CheckHVParams(self, nodenames, self.op.hypervisor, self.op.hvparams)
6665
6666     _CheckNodeHasOS(self, pnode.name, self.op.os_type, self.op.force_variant)
6667
6668     _CheckNicsBridgesExist(self, self.nics, self.pnode.name)
6669
6670     # memory check on primary node
6671     if self.op.start:
6672       _CheckNodeFreeMemory(self, self.pnode.name,
6673                            "creating instance %s" % self.op.instance_name,
6674                            self.be_full[constants.BE_MEMORY],
6675                            self.op.hypervisor)
6676
6677     self.dry_run_result = list(nodenames)
6678
6679   def Exec(self, feedback_fn):
6680     """Create and add the instance to the cluster.
6681
6682     """
6683     instance = self.op.instance_name
6684     pnode_name = self.pnode.name
6685
6686     ht_kind = self.op.hypervisor
6687     if ht_kind in constants.HTS_REQ_PORT:
6688       network_port = self.cfg.AllocatePort()
6689     else:
6690       network_port = None
6691
6692     if constants.ENABLE_FILE_STORAGE:
6693       # this is needed because os.path.join does not accept None arguments
6694       if self.op.file_storage_dir is None:
6695         string_file_storage_dir = ""
6696       else:
6697         string_file_storage_dir = self.op.file_storage_dir
6698
6699       # build the full file storage dir path
6700       file_storage_dir = utils.PathJoin(self.cfg.GetFileStorageDir(),
6701                                         string_file_storage_dir, instance)
6702     else:
6703       file_storage_dir = ""
6704
6705
6706     disks = _GenerateDiskTemplate(self,
6707                                   self.op.disk_template,
6708                                   instance, pnode_name,
6709                                   self.secondaries,
6710                                   self.disks,
6711                                   file_storage_dir,
6712                                   self.op.file_driver,
6713                                   0)
6714
6715     iobj = objects.Instance(name=instance, os=self.op.os_type,
6716                             primary_node=pnode_name,
6717                             nics=self.nics, disks=disks,
6718                             disk_template=self.op.disk_template,
6719                             admin_up=False,
6720                             network_port=network_port,
6721                             beparams=self.op.beparams,
6722                             hvparams=self.op.hvparams,
6723                             hypervisor=self.op.hypervisor,
6724                             )
6725
6726     if self.adopt_disks:
6727       # rename LVs to the newly-generated names; we need to construct
6728       # 'fake' LV disks with the old data, plus the new unique_id
6729       tmp_disks = [objects.Disk.FromDict(v.ToDict()) for v in disks]
6730       rename_to = []
6731       for t_dsk, a_dsk in zip (tmp_disks, self.disks):
6732         rename_to.append(t_dsk.logical_id)
6733         t_dsk.logical_id = (t_dsk.logical_id[0], a_dsk["adopt"])
6734         self.cfg.SetDiskID(t_dsk, pnode_name)
6735       result = self.rpc.call_blockdev_rename(pnode_name,
6736                                              zip(tmp_disks, rename_to))
6737       result.Raise("Failed to rename adoped LVs")
6738     else:
6739       feedback_fn("* creating instance disks...")
6740       try:
6741         _CreateDisks(self, iobj)
6742       except errors.OpExecError:
6743         self.LogWarning("Device creation failed, reverting...")
6744         try:
6745           _RemoveDisks(self, iobj)
6746         finally:
6747           self.cfg.ReleaseDRBDMinors(instance)
6748           raise
6749
6750     feedback_fn("adding instance %s to cluster config" % instance)
6751
6752     self.cfg.AddInstance(iobj, self.proc.GetECId())
6753
6754     # Declare that we don't want to remove the instance lock anymore, as we've
6755     # added the instance to the config
6756     del self.remove_locks[locking.LEVEL_INSTANCE]
6757     # Unlock all the nodes
6758     if self.op.mode == constants.INSTANCE_IMPORT:
6759       nodes_keep = [self.op.src_node]
6760       nodes_release = [node for node in self.acquired_locks[locking.LEVEL_NODE]
6761                        if node != self.op.src_node]
6762       self.context.glm.release(locking.LEVEL_NODE, nodes_release)
6763       self.acquired_locks[locking.LEVEL_NODE] = nodes_keep
6764     else:
6765       self.context.glm.release(locking.LEVEL_NODE)
6766       del self.acquired_locks[locking.LEVEL_NODE]
6767
6768     if self.op.wait_for_sync:
6769       disk_abort = not _WaitForSync(self, iobj)
6770     elif iobj.disk_template in constants.DTS_NET_MIRROR:
6771       # make sure the disks are not degraded (still sync-ing is ok)
6772       time.sleep(15)
6773       feedback_fn("* checking mirrors status")
6774       disk_abort = not _WaitForSync(self, iobj, oneshot=True)
6775     else:
6776       disk_abort = False
6777
6778     if disk_abort:
6779       _RemoveDisks(self, iobj)
6780       self.cfg.RemoveInstance(iobj.name)
6781       # Make sure the instance lock gets removed
6782       self.remove_locks[locking.LEVEL_INSTANCE] = iobj.name
6783       raise errors.OpExecError("There are some degraded disks for"
6784                                " this instance")
6785
6786     if iobj.disk_template != constants.DT_DISKLESS and not self.adopt_disks:
6787       if self.op.mode == constants.INSTANCE_CREATE:
6788         if not self.op.no_install:
6789           feedback_fn("* running the instance OS create scripts...")
6790           # FIXME: pass debug option from opcode to backend
6791           result = self.rpc.call_instance_os_add(pnode_name, iobj, False,
6792                                                  self.op.debug_level)
6793           result.Raise("Could not add os for instance %s"
6794                        " on node %s" % (instance, pnode_name))
6795
6796       elif self.op.mode == constants.INSTANCE_IMPORT:
6797         feedback_fn("* running the instance OS import scripts...")
6798         src_node = self.op.src_node
6799         src_images = self.src_images
6800         cluster_name = self.cfg.GetClusterName()
6801         # FIXME: pass debug option from opcode to backend
6802         import_result = self.rpc.call_instance_os_import(pnode_name, iobj,
6803                                                          src_node, src_images,
6804                                                          cluster_name,
6805                                                          self.op.debug_level)
6806         msg = import_result.fail_msg
6807         if msg:
6808           self.LogWarning("Error while importing the disk images for instance"
6809                           " %s on node %s: %s" % (instance, pnode_name, msg))
6810       else:
6811         # also checked in the prereq part
6812         raise errors.ProgrammerError("Unknown OS initialization mode '%s'"
6813                                      % self.op.mode)
6814
6815     if self.op.start:
6816       iobj.admin_up = True
6817       self.cfg.Update(iobj, feedback_fn)
6818       logging.info("Starting instance %s on node %s", instance, pnode_name)
6819       feedback_fn("* starting instance...")
6820       result = self.rpc.call_instance_start(pnode_name, iobj, None, None)
6821       result.Raise("Could not start instance")
6822
6823     return list(iobj.all_nodes)
6824
6825
6826 class LUConnectConsole(NoHooksLU):
6827   """Connect to an instance's console.
6828
6829   This is somewhat special in that it returns the command line that
6830   you need to run on the master node in order to connect to the
6831   console.
6832
6833   """
6834   _OP_REQP = ["instance_name"]
6835   REQ_BGL = False
6836
6837   def ExpandNames(self):
6838     self._ExpandAndLockInstance()
6839
6840   def CheckPrereq(self):
6841     """Check prerequisites.
6842
6843     This checks that the instance is in the cluster.
6844
6845     """
6846     self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
6847     assert self.instance is not None, \
6848       "Cannot retrieve locked instance %s" % self.op.instance_name
6849     _CheckNodeOnline(self, self.instance.primary_node)
6850
6851   def Exec(self, feedback_fn):
6852     """Connect to the console of an instance
6853
6854     """
6855     instance = self.instance
6856     node = instance.primary_node
6857
6858     node_insts = self.rpc.call_instance_list([node],
6859                                              [instance.hypervisor])[node]
6860     node_insts.Raise("Can't get node information from %s" % node)
6861
6862     if instance.name not in node_insts.payload:
6863       raise errors.OpExecError("Instance %s is not running." % instance.name)
6864
6865     logging.debug("Connecting to console of %s on %s", instance.name, node)
6866
6867     hyper = hypervisor.GetHypervisor(instance.hypervisor)
6868     cluster = self.cfg.GetClusterInfo()
6869     # beparams and hvparams are passed separately, to avoid editing the
6870     # instance and then saving the defaults in the instance itself.
6871     hvparams = cluster.FillHV(instance)
6872     beparams = cluster.FillBE(instance)
6873     console_cmd = hyper.GetShellCommandForConsole(instance, hvparams, beparams)
6874
6875     # build ssh cmdline
6876     return self.ssh.BuildCmd(node, "root", console_cmd, batch=True, tty=True)
6877
6878
6879 class LUReplaceDisks(LogicalUnit):
6880   """Replace the disks of an instance.
6881
6882   """
6883   HPATH = "mirrors-replace"
6884   HTYPE = constants.HTYPE_INSTANCE
6885   _OP_REQP = ["instance_name", "mode", "disks"]
6886   REQ_BGL = False
6887
6888   def CheckArguments(self):
6889     if not hasattr(self.op, "remote_node"):
6890       self.op.remote_node = None
6891     if not hasattr(self.op, "iallocator"):
6892       self.op.iallocator = None
6893     if not hasattr(self.op, "early_release"):
6894       self.op.early_release = False
6895
6896     TLReplaceDisks.CheckArguments(self.op.mode, self.op.remote_node,
6897                                   self.op.iallocator)
6898
6899   def ExpandNames(self):
6900     self._ExpandAndLockInstance()
6901
6902     if self.op.iallocator is not None:
6903       self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6904
6905     elif self.op.remote_node is not None:
6906       remote_node = _ExpandNodeName(self.cfg, self.op.remote_node)
6907       self.op.remote_node = remote_node
6908
6909       # Warning: do not remove the locking of the new secondary here
6910       # unless DRBD8.AddChildren is changed to work in parallel;
6911       # currently it doesn't since parallel invocations of
6912       # FindUnusedMinor will conflict
6913       self.needed_locks[locking.LEVEL_NODE] = [remote_node]
6914       self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
6915
6916     else:
6917       self.needed_locks[locking.LEVEL_NODE] = []
6918       self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
6919
6920     self.replacer = TLReplaceDisks(self, self.op.instance_name, self.op.mode,
6921                                    self.op.iallocator, self.op.remote_node,
6922                                    self.op.disks, False, self.op.early_release)
6923
6924     self.tasklets = [self.replacer]
6925
6926   def DeclareLocks(self, level):
6927     # If we're not already locking all nodes in the set we have to declare the
6928     # instance's primary/secondary nodes.
6929     if (level == locking.LEVEL_NODE and
6930         self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
6931       self._LockInstancesNodes()
6932
6933   def BuildHooksEnv(self):
6934     """Build hooks env.
6935
6936     This runs on the master, the primary and all the secondaries.
6937
6938     """
6939     instance = self.replacer.instance
6940     env = {
6941       "MODE": self.op.mode,
6942       "NEW_SECONDARY": self.op.remote_node,
6943       "OLD_SECONDARY": instance.secondary_nodes[0],
6944       }
6945     env.update(_BuildInstanceHookEnvByObject(self, instance))
6946     nl = [
6947       self.cfg.GetMasterNode(),
6948       instance.primary_node,
6949       ]
6950     if self.op.remote_node is not None:
6951       nl.append(self.op.remote_node)
6952     return env, nl, nl
6953
6954
6955 class LUEvacuateNode(LogicalUnit):
6956   """Relocate the secondary instances from a node.
6957
6958   """
6959   HPATH = "node-evacuate"
6960   HTYPE = constants.HTYPE_NODE
6961   _OP_REQP = ["node_name"]
6962   REQ_BGL = False
6963
6964   def CheckArguments(self):
6965     if not hasattr(self.op, "remote_node"):
6966       self.op.remote_node = None
6967     if not hasattr(self.op, "iallocator"):
6968       self.op.iallocator = None
6969     if not hasattr(self.op, "early_release"):
6970       self.op.early_release = False
6971
6972     TLReplaceDisks.CheckArguments(constants.REPLACE_DISK_CHG,
6973                                   self.op.remote_node,
6974                                   self.op.iallocator)
6975
6976   def ExpandNames(self):
6977     self.op.node_name = _ExpandNodeName(self.cfg, self.op.node_name)
6978
6979     self.needed_locks = {}
6980
6981     # Declare node locks
6982     if self.op.iallocator is not None:
6983       self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6984
6985     elif self.op.remote_node is not None:
6986       self.op.remote_node = _ExpandNodeName(self.cfg, self.op.remote_node)
6987
6988       # Warning: do not remove the locking of the new secondary here
6989       # unless DRBD8.AddChildren is changed to work in parallel;
6990       # currently it doesn't since parallel invocations of
6991       # FindUnusedMinor will conflict
6992       self.needed_locks[locking.LEVEL_NODE] = [self.op.remote_node]
6993       self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
6994
6995     else:
6996       raise errors.OpPrereqError("Invalid parameters", errors.ECODE_INVAL)
6997
6998     # Create tasklets for replacing disks for all secondary instances on this
6999     # node
7000     names = []
7001     tasklets = []
7002
7003     for inst in _GetNodeSecondaryInstances(self.cfg, self.op.node_name):
7004       logging.debug("Replacing disks for instance %s", inst.name)
7005       names.append(inst.name)
7006
7007       replacer = TLReplaceDisks(self, inst.name, constants.REPLACE_DISK_CHG,
7008                                 self.op.iallocator, self.op.remote_node, [],
7009                                 True, self.op.early_release)
7010       tasklets.append(replacer)
7011
7012     self.tasklets = tasklets
7013     self.instance_names = names
7014
7015     # Declare instance locks
7016     self.needed_locks[locking.LEVEL_INSTANCE] = self.instance_names
7017
7018   def DeclareLocks(self, level):
7019     # If we're not already locking all nodes in the set we have to declare the
7020     # instance's primary/secondary nodes.
7021     if (level == locking.LEVEL_NODE and
7022         self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
7023       self._LockInstancesNodes()
7024
7025   def BuildHooksEnv(self):
7026     """Build hooks env.
7027
7028     This runs on the master, the primary and all the secondaries.
7029
7030     """
7031     env = {
7032       "NODE_NAME": self.op.node_name,
7033       }
7034
7035     nl = [self.cfg.GetMasterNode()]
7036
7037     if self.op.remote_node is not None:
7038       env["NEW_SECONDARY"] = self.op.remote_node
7039       nl.append(self.op.remote_node)
7040
7041     return (env, nl, nl)
7042
7043
7044 class TLReplaceDisks(Tasklet):
7045   """Replaces disks for an instance.
7046
7047   Note: Locking is not within the scope of this class.
7048
7049   """
7050   def __init__(self, lu, instance_name, mode, iallocator_name, remote_node,
7051                disks, delay_iallocator, early_release):
7052     """Initializes this class.
7053
7054     """
7055     Tasklet.__init__(self, lu)
7056
7057     # Parameters
7058     self.instance_name = instance_name
7059     self.mode = mode
7060     self.iallocator_name = iallocator_name
7061     self.remote_node = remote_node
7062     self.disks = disks
7063     self.delay_iallocator = delay_iallocator
7064     self.early_release = early_release
7065
7066     # Runtime data
7067     self.instance = None
7068     self.new_node = None
7069     self.target_node = None
7070     self.other_node = None
7071     self.remote_node_info = None
7072     self.node_secondary_ip = None
7073
7074   @staticmethod
7075   def CheckArguments(mode, remote_node, iallocator):
7076     """Helper function for users of this class.
7077
7078     """
7079     # check for valid parameter combination
7080     if mode == constants.REPLACE_DISK_CHG:
7081       if remote_node is None and iallocator is None:
7082         raise errors.OpPrereqError("When changing the secondary either an"
7083                                    " iallocator script must be used or the"
7084                                    " new node given", errors.ECODE_INVAL)
7085
7086       if remote_node is not None and iallocator is not None:
7087         raise errors.OpPrereqError("Give either the iallocator or the new"
7088                                    " secondary, not both", errors.ECODE_INVAL)
7089
7090     elif remote_node is not None or iallocator is not None:
7091       # Not replacing the secondary
7092       raise errors.OpPrereqError("The iallocator and new node options can"
7093                                  " only be used when changing the"
7094                                  " secondary node", errors.ECODE_INVAL)
7095
7096   @staticmethod
7097   def _RunAllocator(lu, iallocator_name, instance_name, relocate_from):
7098     """Compute a new secondary node using an IAllocator.
7099
7100     """
7101     ial = IAllocator(lu.cfg, lu.rpc,
7102                      mode=constants.IALLOCATOR_MODE_RELOC,
7103                      name=instance_name,
7104                      relocate_from=relocate_from)
7105
7106     ial.Run(iallocator_name)
7107
7108     if not ial.success:
7109       raise errors.OpPrereqError("Can't compute nodes using iallocator '%s':"
7110                                  " %s" % (iallocator_name, ial.info),
7111                                  errors.ECODE_NORES)
7112
7113     if len(ial.result) != ial.required_nodes:
7114       raise errors.OpPrereqError("iallocator '%s' returned invalid number"
7115                                  " of nodes (%s), required %s" %
7116                                  (iallocator_name,
7117                                   len(ial.result), ial.required_nodes),
7118                                  errors.ECODE_FAULT)
7119
7120     remote_node_name = ial.result[0]
7121
7122     lu.LogInfo("Selected new secondary for instance '%s': %s",
7123                instance_name, remote_node_name)
7124
7125     return remote_node_name
7126
7127   def _FindFaultyDisks(self, node_name):
7128     return _FindFaultyInstanceDisks(self.cfg, self.rpc, self.instance,
7129                                     node_name, True)
7130
7131   def CheckPrereq(self):
7132     """Check prerequisites.
7133
7134     This checks that the instance is in the cluster.
7135
7136     """
7137     self.instance = instance = self.cfg.GetInstanceInfo(self.instance_name)
7138     assert instance is not None, \
7139       "Cannot retrieve locked instance %s" % self.instance_name
7140
7141     if instance.disk_template != constants.DT_DRBD8:
7142       raise errors.OpPrereqError("Can only run replace disks for DRBD8-based"
7143                                  " instances", errors.ECODE_INVAL)
7144
7145     if len(instance.secondary_nodes) != 1:
7146       raise errors.OpPrereqError("The instance has a strange layout,"
7147                                  " expected one secondary but found %d" %
7148                                  len(instance.secondary_nodes),
7149                                  errors.ECODE_FAULT)
7150
7151     if not self.delay_iallocator:
7152       self._CheckPrereq2()
7153
7154   def _CheckPrereq2(self):
7155     """Check prerequisites, second part.
7156
7157     This function should always be part of CheckPrereq. It was separated and is
7158     now called from Exec because during node evacuation iallocator was only
7159     called with an unmodified cluster model, not taking planned changes into
7160     account.
7161
7162     """
7163     instance = self.instance
7164     secondary_node = instance.secondary_nodes[0]
7165
7166     if self.iallocator_name is None:
7167       remote_node = self.remote_node
7168     else:
7169       remote_node = self._RunAllocator(self.lu, self.iallocator_name,
7170                                        instance.name, instance.secondary_nodes)
7171
7172     if remote_node is not None:
7173       self.remote_node_info = self.cfg.GetNodeInfo(remote_node)
7174       assert self.remote_node_info is not None, \
7175         "Cannot retrieve locked node %s" % remote_node
7176     else:
7177       self.remote_node_info = None
7178
7179     if remote_node == self.instance.primary_node:
7180       raise errors.OpPrereqError("The specified node is the primary node of"
7181                                  " the instance.", errors.ECODE_INVAL)
7182
7183     if remote_node == secondary_node:
7184       raise errors.OpPrereqError("The specified node is already the"
7185                                  " secondary node of the instance.",
7186                                  errors.ECODE_INVAL)
7187
7188     if self.disks and self.mode in (constants.REPLACE_DISK_AUTO,
7189                                     constants.REPLACE_DISK_CHG):
7190       raise errors.OpPrereqError("Cannot specify disks to be replaced",
7191                                  errors.ECODE_INVAL)
7192
7193     if self.mode == constants.REPLACE_DISK_AUTO:
7194       faulty_primary = self._FindFaultyDisks(instance.primary_node)
7195       faulty_secondary = self._FindFaultyDisks(secondary_node)
7196
7197       if faulty_primary and faulty_secondary:
7198         raise errors.OpPrereqError("Instance %s has faulty disks on more than"
7199                                    " one node and can not be repaired"
7200                                    " automatically" % self.instance_name,
7201                                    errors.ECODE_STATE)
7202
7203       if faulty_primary:
7204         self.disks = faulty_primary
7205         self.target_node = instance.primary_node
7206         self.other_node = secondary_node
7207         check_nodes = [self.target_node, self.other_node]
7208       elif faulty_secondary:
7209         self.disks = faulty_secondary
7210         self.target_node = secondary_node
7211         self.other_node = instance.primary_node
7212         check_nodes = [self.target_node, self.other_node]
7213       else:
7214         self.disks = []
7215         check_nodes = []
7216
7217     else:
7218       # Non-automatic modes
7219       if self.mode == constants.REPLACE_DISK_PRI:
7220         self.target_node = instance.primary_node
7221         self.other_node = secondary_node
7222         check_nodes = [self.target_node, self.other_node]
7223
7224       elif self.mode == constants.REPLACE_DISK_SEC:
7225         self.target_node = secondary_node
7226         self.other_node = instance.primary_node
7227         check_nodes = [self.target_node, self.other_node]
7228
7229       elif self.mode == constants.REPLACE_DISK_CHG:
7230         self.new_node = remote_node
7231         self.other_node = instance.primary_node
7232         self.target_node = secondary_node
7233         check_nodes = [self.new_node, self.other_node]
7234
7235         _CheckNodeNotDrained(self.lu, remote_node)
7236
7237         old_node_info = self.cfg.GetNodeInfo(secondary_node)
7238         assert old_node_info is not None
7239         if old_node_info.offline and not self.early_release:
7240           # doesn't make sense to delay the release
7241           self.early_release = True
7242           self.lu.LogInfo("Old secondary %s is offline, automatically enabling"
7243                           " early-release mode", secondary_node)
7244
7245       else:
7246         raise errors.ProgrammerError("Unhandled disk replace mode (%s)" %
7247                                      self.mode)
7248
7249       # If not specified all disks should be replaced
7250       if not self.disks:
7251         self.disks = range(len(self.instance.disks))
7252
7253     for node in check_nodes:
7254       _CheckNodeOnline(self.lu, node)
7255
7256     # Check whether disks are valid
7257     for disk_idx in self.disks:
7258       instance.FindDisk(disk_idx)
7259
7260     # Get secondary node IP addresses
7261     node_2nd_ip = {}
7262
7263     for node_name in [self.target_node, self.other_node, self.new_node]:
7264       if node_name is not None:
7265         node_2nd_ip[node_name] = self.cfg.GetNodeInfo(node_name).secondary_ip
7266
7267     self.node_secondary_ip = node_2nd_ip
7268
7269   def Exec(self, feedback_fn):
7270     """Execute disk replacement.
7271
7272     This dispatches the disk replacement to the appropriate handler.
7273
7274     """
7275     if self.delay_iallocator:
7276       self._CheckPrereq2()
7277
7278     if not self.disks:
7279       feedback_fn("No disks need replacement")
7280       return
7281
7282     feedback_fn("Replacing disk(s) %s for %s" %
7283                 (utils.CommaJoin(self.disks), self.instance.name))
7284
7285     activate_disks = (not self.instance.admin_up)
7286
7287     # Activate the instance disks if we're replacing them on a down instance
7288     if activate_disks:
7289       _StartInstanceDisks(self.lu, self.instance, True)
7290
7291     try:
7292       # Should we replace the secondary node?
7293       if self.new_node is not None:
7294         fn = self._ExecDrbd8Secondary
7295       else:
7296         fn = self._ExecDrbd8DiskOnly
7297
7298       return fn(feedback_fn)
7299
7300     finally:
7301       # Deactivate the instance disks if we're replacing them on a
7302       # down instance
7303       if activate_disks:
7304         _SafeShutdownInstanceDisks(self.lu, self.instance)
7305
7306   def _CheckVolumeGroup(self, nodes):
7307     self.lu.LogInfo("Checking volume groups")
7308
7309     vgname = self.cfg.GetVGName()
7310
7311     # Make sure volume group exists on all involved nodes
7312     results = self.rpc.call_vg_list(nodes)
7313     if not results:
7314       raise errors.OpExecError("Can't list volume groups on the nodes")
7315
7316     for node in nodes:
7317       res = results[node]
7318       res.Raise("Error checking node %s" % node)
7319       if vgname not in res.payload:
7320         raise errors.OpExecError("Volume group '%s' not found on node %s" %
7321                                  (vgname, node))
7322
7323   def _CheckDisksExistence(self, nodes):
7324     # Check disk existence
7325     for idx, dev in enumerate(self.instance.disks):
7326       if idx not in self.disks:
7327         continue
7328
7329       for node in nodes:
7330         self.lu.LogInfo("Checking disk/%d on %s" % (idx, node))
7331         self.cfg.SetDiskID(dev, node)
7332
7333         result = self.rpc.call_blockdev_find(node, dev)
7334
7335         msg = result.fail_msg
7336         if msg or not result.payload:
7337           if not msg:
7338             msg = "disk not found"
7339           raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
7340                                    (idx, node, msg))
7341
7342   def _CheckDisksConsistency(self, node_name, on_primary, ldisk):
7343     for idx, dev in enumerate(self.instance.disks):
7344       if idx not in self.disks:
7345         continue
7346
7347       self.lu.LogInfo("Checking disk/%d consistency on node %s" %
7348                       (idx, node_name))
7349
7350       if not _CheckDiskConsistency(self.lu, dev, node_name, on_primary,
7351                                    ldisk=ldisk):
7352         raise errors.OpExecError("Node %s has degraded storage, unsafe to"
7353                                  " replace disks for instance %s" %
7354                                  (node_name, self.instance.name))
7355
7356   def _CreateNewStorage(self, node_name):
7357     vgname = self.cfg.GetVGName()
7358     iv_names = {}
7359
7360     for idx, dev in enumerate(self.instance.disks):
7361       if idx not in self.disks:
7362         continue
7363
7364       self.lu.LogInfo("Adding storage on %s for disk/%d" % (node_name, idx))
7365
7366       self.cfg.SetDiskID(dev, node_name)
7367
7368       lv_names = [".disk%d_%s" % (idx, suffix) for suffix in ["data", "meta"]]
7369       names = _GenerateUniqueNames(self.lu, lv_names)
7370
7371       lv_data = objects.Disk(dev_type=constants.LD_LV, size=dev.size,
7372                              logical_id=(vgname, names[0]))
7373       lv_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
7374                              logical_id=(vgname, names[1]))
7375
7376       new_lvs = [lv_data, lv_meta]
7377       old_lvs = dev.children
7378       iv_names[dev.iv_name] = (dev, old_lvs, new_lvs)
7379
7380       # we pass force_create=True to force the LVM creation
7381       for new_lv in new_lvs:
7382         _CreateBlockDev(self.lu, node_name, self.instance, new_lv, True,
7383                         _GetInstanceInfoText(self.instance), False)
7384
7385     return iv_names
7386
7387   def _CheckDevices(self, node_name, iv_names):
7388     for name, (dev, _, _) in iv_names.iteritems():
7389       self.cfg.SetDiskID(dev, node_name)
7390
7391       result = self.rpc.call_blockdev_find(node_name, dev)
7392
7393       msg = result.fail_msg
7394       if msg or not result.payload:
7395         if not msg:
7396           msg = "disk not found"
7397         raise errors.OpExecError("Can't find DRBD device %s: %s" %
7398                                  (name, msg))
7399
7400       if result.payload.is_degraded:
7401         raise errors.OpExecError("DRBD device %s is degraded!" % name)
7402
7403   def _RemoveOldStorage(self, node_name, iv_names):
7404     for name, (_, old_lvs, _) in iv_names.iteritems():
7405       self.lu.LogInfo("Remove logical volumes for %s" % name)
7406
7407       for lv in old_lvs:
7408         self.cfg.SetDiskID(lv, node_name)
7409
7410         msg = self.rpc.call_blockdev_remove(node_name, lv).fail_msg
7411         if msg:
7412           self.lu.LogWarning("Can't remove old LV: %s" % msg,
7413                              hint="remove unused LVs manually")
7414
7415   def _ReleaseNodeLock(self, node_name):
7416     """Releases the lock for a given node."""
7417     self.lu.context.glm.release(locking.LEVEL_NODE, node_name)
7418
7419   def _ExecDrbd8DiskOnly(self, feedback_fn):
7420     """Replace a disk on the primary or secondary for DRBD 8.
7421
7422     The algorithm for replace is quite complicated:
7423
7424       1. for each disk to be replaced:
7425
7426         1. create new LVs on the target node with unique names
7427         1. detach old LVs from the drbd device
7428         1. rename old LVs to name_replaced.<time_t>
7429         1. rename new LVs to old LVs
7430         1. attach the new LVs (with the old names now) to the drbd device
7431
7432       1. wait for sync across all devices
7433
7434       1. for each modified disk:
7435
7436         1. remove old LVs (which have the name name_replaces.<time_t>)
7437
7438     Failures are not very well handled.
7439
7440     """
7441     steps_total = 6
7442
7443     # Step: check device activation
7444     self.lu.LogStep(1, steps_total, "Check device existence")
7445     self._CheckDisksExistence([self.other_node, self.target_node])
7446     self._CheckVolumeGroup([self.target_node, self.other_node])
7447
7448     # Step: check other node consistency
7449     self.lu.LogStep(2, steps_total, "Check peer consistency")
7450     self._CheckDisksConsistency(self.other_node,
7451                                 self.other_node == self.instance.primary_node,
7452                                 False)
7453
7454     # Step: create new storage
7455     self.lu.LogStep(3, steps_total, "Allocate new storage")
7456     iv_names = self._CreateNewStorage(self.target_node)
7457
7458     # Step: for each lv, detach+rename*2+attach
7459     self.lu.LogStep(4, steps_total, "Changing drbd configuration")
7460     for dev, old_lvs, new_lvs in iv_names.itervalues():
7461       self.lu.LogInfo("Detaching %s drbd from local storage" % dev.iv_name)
7462
7463       result = self.rpc.call_blockdev_removechildren(self.target_node, dev,
7464                                                      old_lvs)
7465       result.Raise("Can't detach drbd from local storage on node"
7466                    " %s for device %s" % (self.target_node, dev.iv_name))
7467       #dev.children = []
7468       #cfg.Update(instance)
7469
7470       # ok, we created the new LVs, so now we know we have the needed
7471       # storage; as such, we proceed on the target node to rename
7472       # old_lv to _old, and new_lv to old_lv; note that we rename LVs
7473       # using the assumption that logical_id == physical_id (which in
7474       # turn is the unique_id on that node)
7475
7476       # FIXME(iustin): use a better name for the replaced LVs
7477       temp_suffix = int(time.time())
7478       ren_fn = lambda d, suff: (d.physical_id[0],
7479                                 d.physical_id[1] + "_replaced-%s" % suff)
7480
7481       # Build the rename list based on what LVs exist on the node
7482       rename_old_to_new = []
7483       for to_ren in old_lvs:
7484         result = self.rpc.call_blockdev_find(self.target_node, to_ren)
7485         if not result.fail_msg and result.payload:
7486           # device exists
7487           rename_old_to_new.append((to_ren, ren_fn(to_ren, temp_suffix)))
7488
7489       self.lu.LogInfo("Renaming the old LVs on the target node")
7490       result = self.rpc.call_blockdev_rename(self.target_node,
7491                                              rename_old_to_new)
7492       result.Raise("Can't rename old LVs on node %s" % self.target_node)
7493
7494       # Now we rename the new LVs to the old LVs
7495       self.lu.LogInfo("Renaming the new LVs on the target node")
7496       rename_new_to_old = [(new, old.physical_id)
7497                            for old, new in zip(old_lvs, new_lvs)]
7498       result = self.rpc.call_blockdev_rename(self.target_node,
7499                                              rename_new_to_old)
7500       result.Raise("Can't rename new LVs on node %s" % self.target_node)
7501
7502       for old, new in zip(old_lvs, new_lvs):
7503         new.logical_id = old.logical_id
7504         self.cfg.SetDiskID(new, self.target_node)
7505
7506       for disk in old_lvs:
7507         disk.logical_id = ren_fn(disk, temp_suffix)
7508         self.cfg.SetDiskID(disk, self.target_node)
7509
7510       # Now that the new lvs have the old name, we can add them to the device
7511       self.lu.LogInfo("Adding new mirror component on %s" % self.target_node)
7512       result = self.rpc.call_blockdev_addchildren(self.target_node, dev,
7513                                                   new_lvs)
7514       msg = result.fail_msg
7515       if msg:
7516         for new_lv in new_lvs:
7517           msg2 = self.rpc.call_blockdev_remove(self.target_node,
7518                                                new_lv).fail_msg
7519           if msg2:
7520             self.lu.LogWarning("Can't rollback device %s: %s", dev, msg2,
7521                                hint=("cleanup manually the unused logical"
7522                                      "volumes"))
7523         raise errors.OpExecError("Can't add local storage to drbd: %s" % msg)
7524
7525       dev.children = new_lvs
7526
7527       self.cfg.Update(self.instance, feedback_fn)
7528
7529     cstep = 5
7530     if self.early_release:
7531       self.lu.LogStep(cstep, steps_total, "Removing old storage")
7532       cstep += 1
7533       self._RemoveOldStorage(self.target_node, iv_names)
7534       # WARNING: we release both node locks here, do not do other RPCs
7535       # than WaitForSync to the primary node
7536       self._ReleaseNodeLock([self.target_node, self.other_node])
7537
7538     # Wait for sync
7539     # This can fail as the old devices are degraded and _WaitForSync
7540     # does a combined result over all disks, so we don't check its return value
7541     self.lu.LogStep(cstep, steps_total, "Sync devices")
7542     cstep += 1
7543     _WaitForSync(self.lu, self.instance)
7544
7545     # Check all devices manually
7546     self._CheckDevices(self.instance.primary_node, iv_names)
7547
7548     # Step: remove old storage
7549     if not self.early_release:
7550       self.lu.LogStep(cstep, steps_total, "Removing old storage")
7551       cstep += 1
7552       self._RemoveOldStorage(self.target_node, iv_names)
7553
7554   def _ExecDrbd8Secondary(self, feedback_fn):
7555     """Replace the secondary node for DRBD 8.
7556
7557     The algorithm for replace is quite complicated:
7558       - for all disks of the instance:
7559         - create new LVs on the new node with same names
7560         - shutdown the drbd device on the old secondary
7561         - disconnect the drbd network on the primary
7562         - create the drbd device on the new secondary
7563         - network attach the drbd on the primary, using an artifice:
7564           the drbd code for Attach() will connect to the network if it
7565           finds a device which is connected to the good local disks but
7566           not network enabled
7567       - wait for sync across all devices
7568       - remove all disks from the old secondary
7569
7570     Failures are not very well handled.
7571
7572     """
7573     steps_total = 6
7574
7575     # Step: check device activation
7576     self.lu.LogStep(1, steps_total, "Check device existence")
7577     self._CheckDisksExistence([self.instance.primary_node])
7578     self._CheckVolumeGroup([self.instance.primary_node])
7579
7580     # Step: check other node consistency
7581     self.lu.LogStep(2, steps_total, "Check peer consistency")
7582     self._CheckDisksConsistency(self.instance.primary_node, True, True)
7583
7584     # Step: create new storage
7585     self.lu.LogStep(3, steps_total, "Allocate new storage")
7586     for idx, dev in enumerate(self.instance.disks):
7587       self.lu.LogInfo("Adding new local storage on %s for disk/%d" %
7588                       (self.new_node, idx))
7589       # we pass force_create=True to force LVM creation
7590       for new_lv in dev.children:
7591         _CreateBlockDev(self.lu, self.new_node, self.instance, new_lv, True,
7592                         _GetInstanceInfoText(self.instance), False)
7593
7594     # Step 4: dbrd minors and drbd setups changes
7595     # after this, we must manually remove the drbd minors on both the
7596     # error and the success paths
7597     self.lu.LogStep(4, steps_total, "Changing drbd configuration")
7598     minors = self.cfg.AllocateDRBDMinor([self.new_node
7599                                          for dev in self.instance.disks],
7600                                         self.instance.name)
7601     logging.debug("Allocated minors %r", minors)
7602
7603     iv_names = {}
7604     for idx, (dev, new_minor) in enumerate(zip(self.instance.disks, minors)):
7605       self.lu.LogInfo("activating a new drbd on %s for disk/%d" %
7606                       (self.new_node, idx))
7607       # create new devices on new_node; note that we create two IDs:
7608       # one without port, so the drbd will be activated without
7609       # networking information on the new node at this stage, and one
7610       # with network, for the latter activation in step 4
7611       (o_node1, o_node2, o_port, o_minor1, o_minor2, o_secret) = dev.logical_id
7612       if self.instance.primary_node == o_node1:
7613         p_minor = o_minor1
7614       else:
7615         assert self.instance.primary_node == o_node2, "Three-node instance?"
7616         p_minor = o_minor2
7617
7618       new_alone_id = (self.instance.primary_node, self.new_node, None,
7619                       p_minor, new_minor, o_secret)
7620       new_net_id = (self.instance.primary_node, self.new_node, o_port,
7621                     p_minor, new_minor, o_secret)
7622
7623       iv_names[idx] = (dev, dev.children, new_net_id)
7624       logging.debug("Allocated new_minor: %s, new_logical_id: %s", new_minor,
7625                     new_net_id)
7626       new_drbd = objects.Disk(dev_type=constants.LD_DRBD8,
7627                               logical_id=new_alone_id,
7628                               children=dev.children,
7629                               size=dev.size)
7630       try:
7631         _CreateSingleBlockDev(self.lu, self.new_node, self.instance, new_drbd,
7632                               _GetInstanceInfoText(self.instance), False)
7633       except errors.GenericError:
7634         self.cfg.ReleaseDRBDMinors(self.instance.name)
7635         raise
7636
7637     # We have new devices, shutdown the drbd on the old secondary
7638     for idx, dev in enumerate(self.instance.disks):
7639       self.lu.LogInfo("Shutting down drbd for disk/%d on old node" % idx)
7640       self.cfg.SetDiskID(dev, self.target_node)
7641       msg = self.rpc.call_blockdev_shutdown(self.target_node, dev).fail_msg
7642       if msg:
7643         self.lu.LogWarning("Failed to shutdown drbd for disk/%d on old"
7644                            "node: %s" % (idx, msg),
7645                            hint=("Please cleanup this device manually as"
7646                                  " soon as possible"))
7647
7648     self.lu.LogInfo("Detaching primary drbds from the network (=> standalone)")
7649     result = self.rpc.call_drbd_disconnect_net([self.instance.primary_node],
7650                                                self.node_secondary_ip,
7651                                                self.instance.disks)\
7652                                               [self.instance.primary_node]
7653
7654     msg = result.fail_msg
7655     if msg:
7656       # detaches didn't succeed (unlikely)
7657       self.cfg.ReleaseDRBDMinors(self.instance.name)
7658       raise errors.OpExecError("Can't detach the disks from the network on"
7659                                " old node: %s" % (msg,))
7660
7661     # if we managed to detach at least one, we update all the disks of
7662     # the instance to point to the new secondary
7663     self.lu.LogInfo("Updating instance configuration")
7664     for dev, _, new_logical_id in iv_names.itervalues():
7665       dev.logical_id = new_logical_id
7666       self.cfg.SetDiskID(dev, self.instance.primary_node)
7667
7668     self.cfg.Update(self.instance, feedback_fn)
7669
7670     # and now perform the drbd attach
7671     self.lu.LogInfo("Attaching primary drbds to new secondary"
7672                     " (standalone => connected)")
7673     result = self.rpc.call_drbd_attach_net([self.instance.primary_node,
7674                                             self.new_node],
7675                                            self.node_secondary_ip,
7676                                            self.instance.disks,
7677                                            self.instance.name,
7678                                            False)
7679     for to_node, to_result in result.items():
7680       msg = to_result.fail_msg
7681       if msg:
7682         self.lu.LogWarning("Can't attach drbd disks on node %s: %s",
7683                            to_node, msg,
7684                            hint=("please do a gnt-instance info to see the"
7685                                  " status of disks"))
7686     cstep = 5
7687     if self.early_release:
7688       self.lu.LogStep(cstep, steps_total, "Removing old storage")
7689       cstep += 1
7690       self._RemoveOldStorage(self.target_node, iv_names)
7691       # WARNING: we release all node locks here, do not do other RPCs
7692       # than WaitForSync to the primary node
7693       self._ReleaseNodeLock([self.instance.primary_node,
7694                              self.target_node,
7695                              self.new_node])
7696
7697     # Wait for sync
7698     # This can fail as the old devices are degraded and _WaitForSync
7699     # does a combined result over all disks, so we don't check its return value
7700     self.lu.LogStep(cstep, steps_total, "Sync devices")
7701     cstep += 1
7702     _WaitForSync(self.lu, self.instance)
7703
7704     # Check all devices manually
7705     self._CheckDevices(self.instance.primary_node, iv_names)
7706
7707     # Step: remove old storage
7708     if not self.early_release:
7709       self.lu.LogStep(cstep, steps_total, "Removing old storage")
7710       self._RemoveOldStorage(self.target_node, iv_names)
7711
7712
7713 class LURepairNodeStorage(NoHooksLU):
7714   """Repairs the volume group on a node.
7715
7716   """
7717   _OP_REQP = ["node_name"]
7718   REQ_BGL = False
7719
7720   def CheckArguments(self):
7721     self.op.node_name = _ExpandNodeName(self.cfg, self.op.node_name)
7722
7723     _CheckStorageType(self.op.storage_type)
7724
7725   def ExpandNames(self):
7726     self.needed_locks = {
7727       locking.LEVEL_NODE: [self.op.node_name],
7728       }
7729
7730   def _CheckFaultyDisks(self, instance, node_name):
7731     """Ensure faulty disks abort the opcode or at least warn."""
7732     try:
7733       if _FindFaultyInstanceDisks(self.cfg, self.rpc, instance,
7734                                   node_name, True):
7735         raise errors.OpPrereqError("Instance '%s' has faulty disks on"
7736                                    " node '%s'" % (instance.name, node_name),
7737                                    errors.ECODE_STATE)
7738     except errors.OpPrereqError, err:
7739       if self.op.ignore_consistency:
7740         self.proc.LogWarning(str(err.args[0]))
7741       else:
7742         raise
7743
7744   def CheckPrereq(self):
7745     """Check prerequisites.
7746
7747     """
7748     storage_type = self.op.storage_type
7749
7750     if (constants.SO_FIX_CONSISTENCY not in
7751         constants.VALID_STORAGE_OPERATIONS.get(storage_type, [])):
7752       raise errors.OpPrereqError("Storage units of type '%s' can not be"
7753                                  " repaired" % storage_type,
7754                                  errors.ECODE_INVAL)
7755
7756     # Check whether any instance on this node has faulty disks
7757     for inst in _GetNodeInstances(self.cfg, self.op.node_name):
7758       if not inst.admin_up:
7759         continue
7760       check_nodes = set(inst.all_nodes)
7761       check_nodes.discard(self.op.node_name)
7762       for inst_node_name in check_nodes:
7763         self._CheckFaultyDisks(inst, inst_node_name)
7764
7765   def Exec(self, feedback_fn):
7766     feedback_fn("Repairing storage unit '%s' on %s ..." %
7767                 (self.op.name, self.op.node_name))
7768
7769     st_args = _GetStorageTypeArgs(self.cfg, self.op.storage_type)
7770     result = self.rpc.call_storage_execute(self.op.node_name,
7771                                            self.op.storage_type, st_args,
7772                                            self.op.name,
7773                                            constants.SO_FIX_CONSISTENCY)
7774     result.Raise("Failed to repair storage unit '%s' on %s" %
7775                  (self.op.name, self.op.node_name))
7776
7777
7778 class LUNodeEvacuationStrategy(NoHooksLU):
7779   """Computes the node evacuation strategy.
7780
7781   """
7782   _OP_REQP = ["nodes"]
7783   REQ_BGL = False
7784
7785   def CheckArguments(self):
7786     if not hasattr(self.op, "remote_node"):
7787       self.op.remote_node = None
7788     if not hasattr(self.op, "iallocator"):
7789       self.op.iallocator = None
7790     if self.op.remote_node is not None and self.op.iallocator is not None:
7791       raise errors.OpPrereqError("Give either the iallocator or the new"
7792                                  " secondary, not both", errors.ECODE_INVAL)
7793
7794   def ExpandNames(self):
7795     self.op.nodes = _GetWantedNodes(self, self.op.nodes)
7796     self.needed_locks = locks = {}
7797     if self.op.remote_node is None:
7798       locks[locking.LEVEL_NODE] = locking.ALL_SET
7799     else:
7800       self.op.remote_node = _ExpandNodeName(self.cfg, self.op.remote_node)
7801       locks[locking.LEVEL_NODE] = self.op.nodes + [self.op.remote_node]
7802
7803   def CheckPrereq(self):
7804     pass
7805
7806   def Exec(self, feedback_fn):
7807     if self.op.remote_node is not None:
7808       instances = []
7809       for node in self.op.nodes:
7810         instances.extend(_GetNodeSecondaryInstances(self.cfg, node))
7811       result = []
7812       for i in instances:
7813         if i.primary_node == self.op.remote_node:
7814           raise errors.OpPrereqError("Node %s is the primary node of"
7815                                      " instance %s, cannot use it as"
7816                                      " secondary" %
7817                                      (self.op.remote_node, i.name),
7818                                      errors.ECODE_INVAL)
7819         result.append([i.name, self.op.remote_node])
7820     else:
7821       ial = IAllocator(self.cfg, self.rpc,
7822                        mode=constants.IALLOCATOR_MODE_MEVAC,
7823                        evac_nodes=self.op.nodes)
7824       ial.Run(self.op.iallocator, validate=True)
7825       if not ial.success:
7826         raise errors.OpExecError("No valid evacuation solution: %s" % ial.info,
7827                                  errors.ECODE_NORES)
7828       result = ial.result
7829     return result
7830
7831
7832 class LUGrowDisk(LogicalUnit):
7833   """Grow a disk of an instance.
7834
7835   """
7836   HPATH = "disk-grow"
7837   HTYPE = constants.HTYPE_INSTANCE
7838   _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
7839   REQ_BGL = False
7840
7841   def ExpandNames(self):
7842     self._ExpandAndLockInstance()
7843     self.needed_locks[locking.LEVEL_NODE] = []
7844     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
7845
7846   def DeclareLocks(self, level):
7847     if level == locking.LEVEL_NODE:
7848       self._LockInstancesNodes()
7849
7850   def BuildHooksEnv(self):
7851     """Build hooks env.
7852
7853     This runs on the master, the primary and all the secondaries.
7854
7855     """
7856     env = {
7857       "DISK": self.op.disk,
7858       "AMOUNT": self.op.amount,
7859       }
7860     env.update(_BuildInstanceHookEnvByObject(self, self.instance))
7861     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
7862     return env, nl, nl
7863
7864   def CheckPrereq(self):
7865     """Check prerequisites.
7866
7867     This checks that the instance is in the cluster.
7868
7869     """
7870     instance = self.cfg.GetInstanceInfo(self.op.instance_name)
7871     assert instance is not None, \
7872       "Cannot retrieve locked instance %s" % self.op.instance_name
7873     nodenames = list(instance.all_nodes)
7874     for node in nodenames:
7875       _CheckNodeOnline(self, node)
7876
7877
7878     self.instance = instance
7879
7880     if instance.disk_template not in constants.DTS_GROWABLE:
7881       raise errors.OpPrereqError("Instance's disk layout does not support"
7882                                  " growing.", errors.ECODE_INVAL)
7883
7884     self.disk = instance.FindDisk(self.op.disk)
7885
7886     if instance.disk_template != constants.DT_FILE:
7887       # TODO: check the free disk space for file, when that feature will be
7888       # supported
7889       _CheckNodesFreeDisk(self, nodenames, self.op.amount)
7890
7891   def Exec(self, feedback_fn):
7892     """Execute disk grow.
7893
7894     """
7895     instance = self.instance
7896     disk = self.disk
7897     for node in instance.all_nodes:
7898       self.cfg.SetDiskID(disk, node)
7899       result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
7900       result.Raise("Grow request failed to node %s" % node)
7901
7902       # TODO: Rewrite code to work properly
7903       # DRBD goes into sync mode for a short amount of time after executing the
7904       # "resize" command. DRBD 8.x below version 8.0.13 contains a bug whereby
7905       # calling "resize" in sync mode fails. Sleeping for a short amount of
7906       # time is a work-around.
7907       time.sleep(5)
7908
7909     disk.RecordGrow(self.op.amount)
7910     self.cfg.Update(instance, feedback_fn)
7911     if self.op.wait_for_sync:
7912       disk_abort = not _WaitForSync(self, instance)
7913       if disk_abort:
7914         self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
7915                              " status.\nPlease check the instance.")
7916
7917
7918 class LUQueryInstanceData(NoHooksLU):
7919   """Query runtime instance data.
7920
7921   """
7922   _OP_REQP = ["instances", "static"]
7923   REQ_BGL = False
7924
7925   def ExpandNames(self):
7926     self.needed_locks = {}
7927     self.share_locks = dict.fromkeys(locking.LEVELS, 1)
7928
7929     if not isinstance(self.op.instances, list):
7930       raise errors.OpPrereqError("Invalid argument type 'instances'",
7931                                  errors.ECODE_INVAL)
7932
7933     if self.op.instances:
7934       self.wanted_names = []
7935       for name in self.op.instances:
7936         full_name = _ExpandInstanceName(self.cfg, name)
7937         self.wanted_names.append(full_name)
7938       self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
7939     else:
7940       self.wanted_names = None
7941       self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
7942
7943     self.needed_locks[locking.LEVEL_NODE] = []
7944     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
7945
7946   def DeclareLocks(self, level):
7947     if level == locking.LEVEL_NODE:
7948       self._LockInstancesNodes()
7949
7950   def CheckPrereq(self):
7951     """Check prerequisites.
7952
7953     This only checks the optional instance list against the existing names.
7954
7955     """
7956     if self.wanted_names is None:
7957       self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
7958
7959     self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
7960                              in self.wanted_names]
7961     return
7962
7963   def _ComputeBlockdevStatus(self, node, instance_name, dev):
7964     """Returns the status of a block device
7965
7966     """
7967     if self.op.static or not node:
7968       return None
7969
7970     self.cfg.SetDiskID(dev, node)
7971
7972     result = self.rpc.call_blockdev_find(node, dev)
7973     if result.offline:
7974       return None
7975
7976     result.Raise("Can't compute disk status for %s" % instance_name)
7977
7978     status = result.payload
7979     if status is None:
7980       return None
7981
7982     return (status.dev_path, status.major, status.minor,
7983             status.sync_percent, status.estimated_time,
7984             status.is_degraded, status.ldisk_status)
7985
7986   def _ComputeDiskStatus(self, instance, snode, dev):
7987     """Compute block device status.
7988
7989     """
7990     if dev.dev_type in constants.LDS_DRBD:
7991       # we change the snode then (otherwise we use the one passed in)
7992       if dev.logical_id[0] == instance.primary_node:
7993         snode = dev.logical_id[1]
7994       else:
7995         snode = dev.logical_id[0]
7996
7997     dev_pstatus = self._ComputeBlockdevStatus(instance.primary_node,
7998                                               instance.name, dev)
7999     dev_sstatus = self._ComputeBlockdevStatus(snode, instance.name, dev)
8000
8001     if dev.children:
8002       dev_children = [self._ComputeDiskStatus(instance, snode, child)
8003                       for child in dev.children]
8004     else:
8005       dev_children = []
8006
8007     data = {
8008       "iv_name": dev.iv_name,
8009       "dev_type": dev.dev_type,
8010       "logical_id": dev.logical_id,
8011       "physical_id": dev.physical_id,
8012       "pstatus": dev_pstatus,
8013       "sstatus": dev_sstatus,
8014       "children": dev_children,
8015       "mode": dev.mode,
8016       "size": dev.size,
8017       }
8018
8019     return data
8020
8021   def Exec(self, feedback_fn):
8022     """Gather and return data"""
8023     result = {}
8024
8025     cluster = self.cfg.GetClusterInfo()
8026
8027     for instance in self.wanted_instances:
8028       if not self.op.static:
8029         remote_info = self.rpc.call_instance_info(instance.primary_node,
8030                                                   instance.name,
8031                                                   instance.hypervisor)
8032         remote_info.Raise("Error checking node %s" % instance.primary_node)
8033         remote_info = remote_info.payload
8034         if remote_info and "state" in remote_info:
8035           remote_state = "up"
8036         else:
8037           remote_state = "down"
8038       else:
8039         remote_state = None
8040       if instance.admin_up:
8041         config_state = "up"
8042       else:
8043         config_state = "down"
8044
8045       disks = [self._ComputeDiskStatus(instance, None, device)
8046                for device in instance.disks]
8047
8048       idict = {
8049         "name": instance.name,
8050         "config_state": config_state,
8051         "run_state": remote_state,
8052         "pnode": instance.primary_node,
8053         "snodes": instance.secondary_nodes,
8054         "os": instance.os,
8055         # this happens to be the same format used for hooks
8056         "nics": _NICListToTuple(self, instance.nics),
8057         "disks": disks,
8058         "hypervisor": instance.hypervisor,
8059         "network_port": instance.network_port,
8060         "hv_instance": instance.hvparams,
8061         "hv_actual": cluster.FillHV(instance, skip_globals=True),
8062         "be_instance": instance.beparams,
8063         "be_actual": cluster.FillBE(instance),
8064         "serial_no": instance.serial_no,
8065         "mtime": instance.mtime,
8066         "ctime": instance.ctime,
8067         "uuid": instance.uuid,
8068         }
8069
8070       result[instance.name] = idict
8071
8072     return result
8073
8074
8075 class LUSetInstanceParams(LogicalUnit):
8076   """Modifies an instances's parameters.
8077
8078   """
8079   HPATH = "instance-modify"
8080   HTYPE = constants.HTYPE_INSTANCE
8081   _OP_REQP = ["instance_name"]
8082   REQ_BGL = False
8083
8084   def CheckArguments(self):
8085     if not hasattr(self.op, 'nics'):
8086       self.op.nics = []
8087     if not hasattr(self.op, 'disks'):
8088       self.op.disks = []
8089     if not hasattr(self.op, 'beparams'):
8090       self.op.beparams = {}
8091     if not hasattr(self.op, 'hvparams'):
8092       self.op.hvparams = {}
8093     if not hasattr(self.op, "disk_template"):
8094       self.op.disk_template = None
8095     if not hasattr(self.op, "remote_node"):
8096       self.op.remote_node = None
8097     if not hasattr(self.op, "os_name"):
8098       self.op.os_name = None
8099     if not hasattr(self.op, "force_variant"):
8100       self.op.force_variant = False
8101     self.op.force = getattr(self.op, "force", False)
8102     if not (self.op.nics or self.op.disks or self.op.disk_template or
8103             self.op.hvparams or self.op.beparams or self.op.os_name):
8104       raise errors.OpPrereqError("No changes submitted", errors.ECODE_INVAL)
8105
8106     if self.op.hvparams:
8107       _CheckGlobalHvParams(self.op.hvparams)
8108
8109     # Disk validation
8110     disk_addremove = 0
8111     for disk_op, disk_dict in self.op.disks:
8112       if disk_op == constants.DDM_REMOVE:
8113         disk_addremove += 1
8114         continue
8115       elif disk_op == constants.DDM_ADD:
8116         disk_addremove += 1
8117       else:
8118         if not isinstance(disk_op, int):
8119           raise errors.OpPrereqError("Invalid disk index", errors.ECODE_INVAL)
8120         if not isinstance(disk_dict, dict):
8121           msg = "Invalid disk value: expected dict, got '%s'" % disk_dict
8122           raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
8123
8124       if disk_op == constants.DDM_ADD:
8125         mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
8126         if mode not in constants.DISK_ACCESS_SET:
8127           raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode,
8128                                      errors.ECODE_INVAL)
8129         size = disk_dict.get('size', None)
8130         if size is None:
8131           raise errors.OpPrereqError("Required disk parameter size missing",
8132                                      errors.ECODE_INVAL)
8133         try:
8134           size = int(size)
8135         except (TypeError, ValueError), err:
8136           raise errors.OpPrereqError("Invalid disk size parameter: %s" %
8137                                      str(err), errors.ECODE_INVAL)
8138         disk_dict['size'] = size
8139       else:
8140         # modification of disk
8141         if 'size' in disk_dict:
8142           raise errors.OpPrereqError("Disk size change not possible, use"
8143                                      " grow-disk", errors.ECODE_INVAL)
8144
8145     if disk_addremove > 1:
8146       raise errors.OpPrereqError("Only one disk add or remove operation"
8147                                  " supported at a time", errors.ECODE_INVAL)
8148
8149     if self.op.disks and self.op.disk_template is not None:
8150       raise errors.OpPrereqError("Disk template conversion and other disk"
8151                                  " changes not supported at the same time",
8152                                  errors.ECODE_INVAL)
8153
8154     if self.op.disk_template:
8155       _CheckDiskTemplate(self.op.disk_template)
8156       if (self.op.disk_template in constants.DTS_NET_MIRROR and
8157           self.op.remote_node is None):
8158         raise errors.OpPrereqError("Changing the disk template to a mirrored"
8159                                    " one requires specifying a secondary node",
8160                                    errors.ECODE_INVAL)
8161
8162     # NIC validation
8163     nic_addremove = 0
8164     for nic_op, nic_dict in self.op.nics:
8165       if nic_op == constants.DDM_REMOVE:
8166         nic_addremove += 1
8167         continue
8168       elif nic_op == constants.DDM_ADD:
8169         nic_addremove += 1
8170       else:
8171         if not isinstance(nic_op, int):
8172           raise errors.OpPrereqError("Invalid nic index", errors.ECODE_INVAL)
8173         if not isinstance(nic_dict, dict):
8174           msg = "Invalid nic value: expected dict, got '%s'" % nic_dict
8175           raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
8176
8177       # nic_dict should be a dict
8178       nic_ip = nic_dict.get('ip', None)
8179       if nic_ip is not None:
8180         if nic_ip.lower() == constants.VALUE_NONE:
8181           nic_dict['ip'] = None
8182         else:
8183           if not utils.IsValidIP(nic_ip):
8184             raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip,
8185                                        errors.ECODE_INVAL)
8186
8187       nic_bridge = nic_dict.get('bridge', None)
8188       nic_link = nic_dict.get('link', None)
8189       if nic_bridge and nic_link:
8190         raise errors.OpPrereqError("Cannot pass 'bridge' and 'link'"
8191                                    " at the same time", errors.ECODE_INVAL)
8192       elif nic_bridge and nic_bridge.lower() == constants.VALUE_NONE:
8193         nic_dict['bridge'] = None
8194       elif nic_link and nic_link.lower() == constants.VALUE_NONE:
8195         nic_dict['link'] = None
8196
8197       if nic_op == constants.DDM_ADD:
8198         nic_mac = nic_dict.get('mac', None)
8199         if nic_mac is None:
8200           nic_dict['mac'] = constants.VALUE_AUTO
8201
8202       if 'mac' in nic_dict:
8203         nic_mac = nic_dict['mac']
8204         if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
8205           nic_mac = utils.NormalizeAndValidateMac(nic_mac)
8206
8207         if nic_op != constants.DDM_ADD and nic_mac == constants.VALUE_AUTO:
8208           raise errors.OpPrereqError("'auto' is not a valid MAC address when"
8209                                      " modifying an existing nic",
8210                                      errors.ECODE_INVAL)
8211
8212     if nic_addremove > 1:
8213       raise errors.OpPrereqError("Only one NIC add or remove operation"
8214                                  " supported at a time", errors.ECODE_INVAL)
8215
8216   def ExpandNames(self):
8217     self._ExpandAndLockInstance()
8218     self.needed_locks[locking.LEVEL_NODE] = []
8219     self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
8220
8221   def DeclareLocks(self, level):
8222     if level == locking.LEVEL_NODE:
8223       self._LockInstancesNodes()
8224       if self.op.disk_template and self.op.remote_node:
8225         self.op.remote_node = _ExpandNodeName(self.cfg, self.op.remote_node)
8226         self.needed_locks[locking.LEVEL_NODE].append(self.op.remote_node)
8227
8228   def BuildHooksEnv(self):
8229     """Build hooks env.
8230
8231     This runs on the master, primary and secondaries.
8232
8233     """
8234     args = dict()
8235     if constants.BE_MEMORY in self.be_new:
8236       args['memory'] = self.be_new[constants.BE_MEMORY]
8237     if constants.BE_VCPUS in self.be_new:
8238       args['vcpus'] = self.be_new[constants.BE_VCPUS]
8239     # TODO: export disk changes. Note: _BuildInstanceHookEnv* don't export disk
8240     # information at all.
8241     if self.op.nics:
8242       args['nics'] = []
8243       nic_override = dict(self.op.nics)
8244       c_nicparams = self.cluster.nicparams[constants.PP_DEFAULT]
8245       for idx, nic in enumerate(self.instance.nics):
8246         if idx in nic_override:
8247           this_nic_override = nic_override[idx]
8248         else:
8249           this_nic_override = {}
8250         if 'ip' in this_nic_override:
8251           ip = this_nic_override['ip']
8252         else:
8253           ip = nic.ip
8254         if 'mac' in this_nic_override:
8255           mac = this_nic_override['mac']
8256         else:
8257           mac = nic.mac
8258         if idx in self.nic_pnew:
8259           nicparams = self.nic_pnew[idx]
8260         else:
8261           nicparams = objects.FillDict(c_nicparams, nic.nicparams)
8262         mode = nicparams[constants.NIC_MODE]
8263         link = nicparams[constants.NIC_LINK]
8264         args['nics'].append((ip, mac, mode, link))
8265       if constants.DDM_ADD in nic_override:
8266         ip = nic_override[constants.DDM_ADD].get('ip', None)
8267         mac = nic_override[constants.DDM_ADD]['mac']
8268         nicparams = self.nic_pnew[constants.DDM_ADD]
8269         mode = nicparams[constants.NIC_MODE]
8270         link = nicparams[constants.NIC_LINK]
8271         args['nics'].append((ip, mac, mode, link))
8272       elif constants.DDM_REMOVE in nic_override:
8273         del args['nics'][-1]
8274
8275     env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
8276     if self.op.disk_template:
8277       env["NEW_DISK_TEMPLATE"] = self.op.disk_template
8278     nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
8279     return env, nl, nl
8280
8281   @staticmethod
8282   def _GetUpdatedParams(old_params, update_dict,
8283                         default_values, parameter_types):
8284     """Return the new params dict for the given params.
8285
8286     @type old_params: dict
8287     @param old_params: old parameters
8288     @type update_dict: dict
8289     @param update_dict: dict containing new parameter values,
8290                         or constants.VALUE_DEFAULT to reset the
8291                         parameter to its default value
8292     @type default_values: dict
8293     @param default_values: default values for the filled parameters
8294     @type parameter_types: dict
8295     @param parameter_types: dict mapping target dict keys to types
8296                             in constants.ENFORCEABLE_TYPES
8297     @rtype: (dict, dict)
8298     @return: (new_parameters, filled_parameters)
8299
8300     """
8301     params_copy = copy.deepcopy(old_params)
8302     for key, val in update_dict.iteritems():
8303       if val == constants.VALUE_DEFAULT:
8304         try:
8305           del params_copy[key]
8306         except KeyError:
8307           pass
8308       else:
8309         params_copy[key] = val
8310     utils.ForceDictType(params_copy, parameter_types)
8311     params_filled = objects.FillDict(default_values, params_copy)
8312     return (params_copy, params_filled)
8313
8314   def CheckPrereq(self):
8315     """Check prerequisites.
8316
8317     This only checks the instance list against the existing names.
8318
8319     """
8320     self.force = self.op.force
8321
8322     # checking the new params on the primary/secondary nodes
8323
8324     instance = self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
8325     cluster = self.cluster = self.cfg.GetClusterInfo()
8326     assert self.instance is not None, \
8327       "Cannot retrieve locked instance %s" % self.op.instance_name
8328     pnode = instance.primary_node
8329     nodelist = list(instance.all_nodes)
8330
8331     if self.op.disk_template:
8332       if instance.disk_template == self.op.disk_template:
8333         raise errors.OpPrereqError("Instance already has disk template %s" %
8334                                    instance.disk_template, errors.ECODE_INVAL)
8335
8336       if (instance.disk_template,
8337           self.op.disk_template) not in self._DISK_CONVERSIONS:
8338         raise errors.OpPrereqError("Unsupported disk template conversion from"
8339                                    " %s to %s" % (instance.disk_template,
8340                                                   self.op.disk_template),
8341                                    errors.ECODE_INVAL)
8342       if self.op.disk_template in constants.DTS_NET_MIRROR:
8343         _CheckNodeOnline(self, self.op.remote_node)
8344         _CheckNodeNotDrained(self, self.op.remote_node)
8345         disks = [{"size": d.size} for d in instance.disks]
8346         required = _ComputeDiskSize(self.op.disk_template, disks)
8347         _CheckNodesFreeDisk(self, [self.op.remote_node], required)
8348         _CheckInstanceDown(self, instance, "cannot change disk template")
8349
8350     # hvparams processing
8351     if self.op.hvparams:
8352       i_hvdict, hv_new = self._GetUpdatedParams(
8353                              instance.hvparams, self.op.hvparams,
8354                              cluster.hvparams[instance.hypervisor],
8355                              constants.HVS_PARAMETER_TYPES)
8356       # local check
8357       hypervisor.GetHypervisor(
8358         instance.hypervisor).CheckParameterSyntax(hv_new)
8359       _CheckHVParams(self, nodelist, instance.hypervisor, hv_new)
8360       self.hv_new = hv_new # the new actual values
8361       self.hv_inst = i_hvdict # the new dict (without defaults)
8362     else:
8363       self.hv_new = self.hv_inst = {}
8364
8365     # beparams processing
8366     if self.op.beparams:
8367       i_bedict, be_new = self._GetUpdatedParams(
8368                              instance.beparams, self.op.beparams,
8369                              cluster.beparams[constants.PP_DEFAULT],
8370                              constants.BES_PARAMETER_TYPES)
8371       self.be_new = be_new # the new actual values
8372       self.be_inst = i_bedict # the new dict (without defaults)
8373     else:
8374       self.be_new = self.be_inst = {}
8375
8376     self.warn = []
8377
8378     if constants.BE_MEMORY in self.op.beparams and not self.force:
8379       mem_check_list = [pnode]
8380       if be_new[constants.BE_AUTO_BALANCE]:
8381         # either we changed auto_balance to yes or it was from before
8382         mem_check_list.extend(instance.secondary_nodes)
8383       instance_info = self.rpc.call_instance_info(pnode, instance.name,
8384                                                   instance.hypervisor)
8385       nodeinfo = self.rpc.call_node_info(mem_check_list, self.cfg.GetVGName(),
8386                                          instance.hypervisor)
8387       pninfo = nodeinfo[pnode]
8388       msg = pninfo.fail_msg
8389       if msg:
8390         # Assume the primary node is unreachable and go ahead
8391         self.warn.append("Can't get info from primary node %s: %s" %
8392                          (pnode,  msg))
8393       elif not isinstance(pninfo.payload.get('memory_free', None), int):
8394         self.warn.append("Node data from primary node %s doesn't contain"
8395                          " free memory information" % pnode)
8396       elif instance_info.fail_msg:
8397         self.warn.append("Can't get instance runtime information: %s" %
8398                         instance_info.fail_msg)
8399       else:
8400         if instance_info.payload:
8401           current_mem = int(instance_info.payload['memory'])
8402         else:
8403           # Assume instance not running
8404           # (there is a slight race condition here, but it's not very probable,
8405           # and we have no other way to check)
8406           current_mem = 0
8407         miss_mem = (be_new[constants.BE_MEMORY] - current_mem -
8408                     pninfo.payload['memory_free'])
8409         if miss_mem > 0:
8410           raise errors.OpPrereqError("This change will prevent the instance"
8411                                      " from starting, due to %d MB of memory"
8412                                      " missing on its primary node" % miss_mem,
8413                                      errors.ECODE_NORES)
8414
8415       if be_new[constants.BE_AUTO_BALANCE]:
8416         for node, nres in nodeinfo.items():
8417           if node not in instance.secondary_nodes:
8418             continue
8419           msg = nres.fail_msg
8420           if msg:
8421             self.warn.append("Can't get info from secondary node %s: %s" %
8422                              (node, msg))
8423           elif not isinstance(nres.payload.get('memory_free', None), int):
8424             self.warn.append("Secondary node %s didn't return free"
8425                              " memory information" % node)
8426           elif be_new[constants.BE_MEMORY] > nres.payload['memory_free']:
8427             self.warn.append("Not enough memory to failover instance to"
8428                              " secondary node %s" % node)
8429
8430     # NIC processing
8431     self.nic_pnew = {}
8432     self.nic_pinst = {}
8433     for nic_op, nic_dict in self.op.nics:
8434       if nic_op == constants.DDM_REMOVE:
8435         if not instance.nics:
8436           raise errors.OpPrereqError("Instance has no NICs, cannot remove",
8437                                      errors.ECODE_INVAL)
8438         continue
8439       if nic_op != constants.DDM_ADD:
8440         # an existing nic
8441         if not instance.nics:
8442           raise errors.OpPrereqError("Invalid NIC index %s, instance has"
8443                                      " no NICs" % nic_op,
8444                                      errors.ECODE_INVAL)
8445         if nic_op < 0 or nic_op >= len(instance.nics):
8446           raise errors.OpPrereqError("Invalid NIC index %s, valid values"
8447                                      " are 0 to %d" %
8448                                      (nic_op, len(instance.nics) - 1),
8449                                      errors.ECODE_INVAL)
8450         old_nic_params = instance.nics[nic_op].nicparams
8451         old_nic_ip = instance.nics[nic_op].ip
8452       else:
8453         old_nic_params = {}
8454         old_nic_ip = None
8455
8456       update_params_dict = dict([(key, nic_dict[key])
8457                                  for key in constants.NICS_PARAMETERS
8458                                  if key in nic_dict])
8459
8460       if 'bridge' in nic_dict:
8461         update_params_dict[constants.NIC_LINK] = nic_dict['bridge']
8462
8463       new_nic_params, new_filled_nic_params = \
8464           self._GetUpdatedParams(old_nic_params, update_params_dict,
8465                                  cluster.nicparams[constants.PP_DEFAULT],
8466                                  constants.NICS_PARAMETER_TYPES)
8467       objects.NIC.CheckParameterSyntax(new_filled_nic_params)
8468       self.nic_pinst[nic_op] = new_nic_params
8469       self.nic_pnew[nic_op] = new_filled_nic_params
8470       new_nic_mode = new_filled_nic_params[constants.NIC_MODE]
8471
8472       if new_nic_mode == constants.NIC_MODE_BRIDGED:
8473         nic_bridge = new_filled_nic_params[constants.NIC_LINK]
8474         msg = self.rpc.call_bridges_exist(pnode, [nic_bridge]).fail_msg
8475         if msg:
8476           msg = "Error checking bridges on node %s: %s" % (pnode, msg)
8477           if self.force:
8478             self.warn.append(msg)
8479           else:
8480             raise errors.OpPrereqError(msg, errors.ECODE_ENVIRON)
8481       if new_nic_mode == constants.NIC_MODE_ROUTED:
8482         if 'ip' in nic_dict:
8483           nic_ip = nic_dict['ip']
8484         else:
8485           nic_ip = old_nic_ip
8486         if nic_ip is None:
8487           raise errors.OpPrereqError('Cannot set the nic ip to None'
8488                                      ' on a routed nic', errors.ECODE_INVAL)
8489       if 'mac' in nic_dict:
8490         nic_mac = nic_dict['mac']
8491         if nic_mac is None:
8492           raise errors.OpPrereqError('Cannot set the nic mac to None',
8493                                      errors.ECODE_INVAL)
8494         elif nic_mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
8495           # otherwise generate the mac
8496           nic_dict['mac'] = self.cfg.GenerateMAC(self.proc.GetECId())
8497         else:
8498           # or validate/reserve the current one
8499           try:
8500             self.cfg.ReserveMAC(nic_mac, self.proc.GetECId())
8501           except errors.ReservationError:
8502             raise errors.OpPrereqError("MAC address %s already in use"
8503                                        " in cluster" % nic_mac,
8504                                        errors.ECODE_NOTUNIQUE)
8505
8506     # DISK processing
8507     if self.op.disks and instance.disk_template == constants.DT_DISKLESS:
8508       raise errors.OpPrereqError("Disk operations not supported for"
8509                                  " diskless instances",
8510                                  errors.ECODE_INVAL)
8511     for disk_op, _ in self.op.disks:
8512       if disk_op == constants.DDM_REMOVE:
8513         if len(instance.disks) == 1:
8514           raise errors.OpPrereqError("Cannot remove the last disk of"
8515                                      " an instance", errors.ECODE_INVAL)
8516         _CheckInstanceDown(self, instance, "cannot remove disks")
8517
8518       if (disk_op == constants.DDM_ADD and
8519           len(instance.nics) >= constants.MAX_DISKS):
8520         raise errors.OpPrereqError("Instance has too many disks (%d), cannot"
8521                                    " add more" % constants.MAX_DISKS,
8522                                    errors.ECODE_STATE)
8523       if disk_op not in (constants.DDM_ADD, constants.DDM_REMOVE):
8524         # an existing disk
8525         if disk_op < 0 or disk_op >= len(instance.disks):
8526           raise errors.OpPrereqError("Invalid disk index %s, valid values"
8527                                      " are 0 to %d" %
8528                                      (disk_op, len(instance.disks)),
8529                                      errors.ECODE_INVAL)
8530
8531     # OS change
8532     if self.op.os_name and not self.op.force:
8533       _CheckNodeHasOS(self, instance.primary_node, self.op.os_name,
8534                       self.op.force_variant)
8535
8536     return
8537
8538   def _ConvertPlainToDrbd(self, feedback_fn):
8539     """Converts an instance from plain to drbd.
8540
8541     """
8542     feedback_fn("Converting template to drbd")
8543     instance = self.instance
8544     pnode = instance.primary_node
8545     snode = self.op.remote_node
8546
8547     # create a fake disk info for _GenerateDiskTemplate
8548     disk_info = [{"size": d.size, "mode": d.mode} for d in instance.disks]
8549     new_disks = _GenerateDiskTemplate(self, self.op.disk_template,
8550                                       instance.name, pnode, [snode],
8551                                       disk_info, None, None, 0)
8552     info = _GetInstanceInfoText(instance)
8553     feedback_fn("Creating aditional volumes...")
8554     # first, create the missing data and meta devices
8555     for disk in new_disks:
8556       # unfortunately this is... not too nice
8557       _CreateSingleBlockDev(self, pnode, instance, disk.children[1],
8558                             info, True)
8559       for child in disk.children:
8560         _CreateSingleBlockDev(self, snode, instance, child, info, True)
8561     # at this stage, all new LVs have been created, we can rename the
8562     # old ones
8563     feedback_fn("Renaming original volumes...")
8564     rename_list = [(o, n.children[0].logical_id)
8565                    for (o, n) in zip(instance.disks, new_disks)]
8566     result = self.rpc.call_blockdev_rename(pnode, rename_list)
8567     result.Raise("Failed to rename original LVs")
8568
8569     feedback_fn("Initializing DRBD devices...")
8570     # all child devices are in place, we can now create the DRBD devices
8571     for disk in new_disks:
8572       for node in [pnode, snode]:
8573         f_create = node == pnode
8574         _CreateSingleBlockDev(self, node, instance, disk, info, f_create)
8575
8576     # at this point, the instance has been modified
8577     instance.disk_template = constants.DT_DRBD8
8578     instance.disks = new_disks
8579     self.cfg.Update(instance, feedback_fn)
8580
8581     # disks are created, waiting for sync
8582     disk_abort = not _WaitForSync(self, instance)
8583     if disk_abort:
8584       raise errors.OpExecError("There are some degraded disks for"
8585                                " this instance, please cleanup manually")
8586
8587   def _ConvertDrbdToPlain(self, feedback_fn):
8588     """Converts an instance from drbd to plain.
8589
8590     """
8591     instance = self.instance
8592     assert len(instance.secondary_nodes) == 1
8593     pnode = instance.primary_node
8594     snode = instance.secondary_nodes[0]
8595     feedback_fn("Converting template to plain")
8596
8597     old_disks = instance.disks
8598     new_disks = [d.children[0] for d in old_disks]
8599
8600     # copy over size and mode
8601     for parent, child in zip(old_disks, new_disks):
8602       child.size = parent.size
8603       child.mode = parent.mode
8604
8605     # update instance structure
8606     instance.disks = new_disks
8607     instance.disk_template = constants.DT_PLAIN
8608     self.cfg.Update(instance, feedback_fn)
8609
8610     feedback_fn("Removing volumes on the secondary node...")
8611     for disk in old_disks:
8612       self.cfg.SetDiskID(disk, snode)
8613       msg = self.rpc.call_blockdev_remove(snode, disk).fail_msg
8614       if msg:
8615         self.LogWarning("Could not remove block device %s on node %s,"
8616                         " continuing anyway: %s", disk.iv_name, snode, msg)
8617
8618     feedback_fn("Removing unneeded volumes on the primary node...")
8619     for idx, disk in enumerate(old_disks):
8620       meta = disk.children[1]
8621       self.cfg.SetDiskID(meta, pnode)
8622       msg = self.rpc.call_blockdev_remove(pnode, meta).fail_msg
8623       if msg:
8624         self.LogWarning("Could not remove metadata for disk %d on node %s,"
8625                         " continuing anyway: %s", idx, pnode, msg)
8626
8627
8628   def Exec(self, feedback_fn):
8629     """Modifies an instance.
8630
8631     All parameters take effect only at the next restart of the instance.
8632
8633     """
8634     # Process here the warnings from CheckPrereq, as we don't have a
8635     # feedback_fn there.
8636     for warn in self.warn:
8637       feedback_fn("WARNING: %s" % warn)
8638
8639     result = []
8640     instance = self.instance
8641     # disk changes
8642     for disk_op, disk_dict in self.op.disks:
8643       if disk_op == constants.DDM_REMOVE:
8644         # remove the last disk
8645         device = instance.disks.pop()
8646         device_idx = len(instance.disks)
8647         for node, disk in device.ComputeNodeTree(instance.primary_node):
8648           self.cfg.SetDiskID(disk, node)
8649           msg = self.rpc.call_blockdev_remove(node, disk).fail_msg
8650           if msg:
8651             self.LogWarning("Could not remove disk/%d on node %s: %s,"
8652                             " continuing anyway", device_idx, node, msg)
8653         result.append(("disk/%d" % device_idx, "remove"))
8654       elif disk_op == constants.DDM_ADD:
8655         # add a new disk
8656         if instance.disk_template == constants.DT_FILE:
8657           file_driver, file_path = instance.disks[0].logical_id
8658           file_path = os.path.dirname(file_path)
8659         else:
8660           file_driver = file_path = None
8661         disk_idx_base = len(instance.disks)
8662         new_disk = _GenerateDiskTemplate(self,
8663                                          instance.disk_template,
8664                                          instance.name, instance.primary_node,
8665                                          instance.secondary_nodes,
8666                                          [disk_dict],
8667                                          file_path,
8668                                          file_driver,
8669                                          disk_idx_base)[0]
8670         instance.disks.append(new_disk)
8671         info = _GetInstanceInfoText(instance)
8672
8673         logging.info("Creating volume %s for instance %s",
8674                      new_disk.iv_name, instance.name)
8675         # Note: this needs to be kept in sync with _CreateDisks
8676         #HARDCODE
8677         for node in instance.all_nodes:
8678           f_create = node == instance.primary_node
8679           try:
8680             _CreateBlockDev(self, node, instance, new_disk,
8681                             f_create, info, f_create)
8682           except errors.OpExecError, err:
8683             self.LogWarning("Failed to create volume %s (%s) on"
8684                             " node %s: %s",
8685                             new_disk.iv_name, new_disk, node, err)
8686         result.append(("disk/%d" % disk_idx_base, "add:size=%s,mode=%s" %
8687                        (new_disk.size, new_disk.mode)))
8688       else:
8689         # change a given disk
8690         instance.disks[disk_op].mode = disk_dict['mode']
8691         result.append(("disk.mode/%d" % disk_op, disk_dict['mode']))
8692
8693     if self.op.disk_template:
8694       r_shut = _ShutdownInstanceDisks(self, instance)
8695       if not r_shut:
8696         raise errors.OpExecError("Cannot shutdow instance disks, unable to"
8697                                  " proceed with disk template conversion")
8698       mode = (instance.disk_template, self.op.disk_template)
8699       try:
8700         self._DISK_CONVERSIONS[mode](self, feedback_fn)
8701       except:
8702         self.cfg.ReleaseDRBDMinors(instance.name)
8703         raise
8704       result.append(("disk_template", self.op.disk_template))
8705
8706     # NIC changes
8707     for nic_op, nic_dict in self.op.nics:
8708       if nic_op == constants.DDM_REMOVE:
8709         # remove the last nic
8710         del instance.nics[-1]
8711         result.append(("nic.%d" % len(instance.nics), "remove"))
8712       elif nic_op == constants.DDM_ADD:
8713         # mac and bridge should be set, by now
8714         mac = nic_dict['mac']
8715         ip = nic_dict.get('ip', None)
8716         nicparams = self.nic_pinst[constants.DDM_ADD]
8717         new_nic = objects.NIC(mac=mac, ip=ip, nicparams=nicparams)
8718         instance.nics.append(new_nic)
8719         result.append(("nic.%d" % (len(instance.nics) - 1),
8720                        "add:mac=%s,ip=%s,mode=%s,link=%s" %
8721                        (new_nic.mac, new_nic.ip,
8722                         self.nic_pnew[constants.DDM_ADD][constants.NIC_MODE],
8723                         self.nic_pnew[constants.DDM_ADD][constants.NIC_LINK]
8724                        )))
8725       else:
8726         for key in 'mac', 'ip':
8727           if key in nic_dict:
8728             setattr(instance.nics[nic_op], key, nic_dict[key])
8729         if nic_op in self.nic_pinst:
8730           instance.nics[nic_op].nicparams = self.nic_pinst[nic_op]
8731         for key, val in nic_dict.iteritems():
8732           result.append(("nic.%s/%d" % (key, nic_op), val))
8733
8734     # hvparams changes
8735     if self.op.hvparams:
8736       instance.hvparams = self.hv_inst
8737       for key, val in self.op.hvparams.iteritems():
8738         result.append(("hv/%s" % key, val))
8739
8740     # beparams changes
8741     if self.op.beparams:
8742       instance.beparams = self.be_inst
8743       for key, val in self.op.beparams.iteritems():
8744         result.append(("be/%s" % key, val))
8745
8746     # OS change
8747     if self.op.os_name:
8748       instance.os = self.op.os_name
8749
8750     self.cfg.Update(instance, feedback_fn)
8751
8752     return result
8753
8754   _DISK_CONVERSIONS = {
8755     (constants.DT_PLAIN, constants.DT_DRBD8): _ConvertPlainToDrbd,
8756     (constants.DT_DRBD8, constants.DT_PLAIN): _ConvertDrbdToPlain,
8757     }
8758
8759 class LUQueryExports(NoHooksLU):
8760   """Query the exports list
8761
8762   """
8763   _OP_REQP = ['nodes']
8764   REQ_BGL = False
8765
8766   def ExpandNames(self):
8767     self.needed_locks = {}
8768     self.share_locks[locking.LEVEL_NODE] = 1
8769     if not self.op.nodes:
8770       self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
8771     else:
8772       self.needed_locks[locking.LEVEL_NODE] = \
8773         _GetWantedNodes(self, self.op.nodes)
8774
8775   def CheckPrereq(self):
8776     """Check prerequisites.
8777
8778     """
8779     self.nodes = self.acquired_locks[locking.LEVEL_NODE]
8780
8781   def Exec(self, feedback_fn):
8782     """Compute the list of all the exported system images.
8783
8784     @rtype: dict
8785     @return: a dictionary with the structure node->(export-list)
8786         where export-list is a list of the instances exported on
8787         that node.
8788
8789     """
8790     rpcresult = self.rpc.call_export_list(self.nodes)
8791     result = {}
8792     for node in rpcresult:
8793       if rpcresult[node].fail_msg:
8794         result[node] = False
8795       else:
8796         result[node] = rpcresult[node].payload
8797
8798     return result
8799
8800
8801 class LUExportInstance(LogicalUnit):
8802   """Export an instance to an image in the cluster.
8803
8804   """
8805   HPATH = "instance-export"
8806   HTYPE = constants.HTYPE_INSTANCE
8807   _OP_REQP = ["instance_name", "target_node", "shutdown"]
8808   REQ_BGL = False
8809
8810   def CheckArguments(self):
8811     """Check the arguments.
8812
8813     """
8814     self.shutdown_timeout = getattr(self.op, "shutdown_timeout",
8815                                     constants.DEFAULT_SHUTDOWN_TIMEOUT)
8816
8817   def ExpandNames(self):
8818     self._ExpandAndLockInstance()
8819     # FIXME: lock only instance primary and destination node
8820     #
8821     # Sad but true, for now we have do lock all nodes, as we don't know where
8822     # the previous export might be, and and in this LU we search for it and
8823     # remove it from its current node. In the future we could fix this by:
8824     #  - making a tasklet to search (share-lock all), then create the new one,
8825     #    then one to remove, after
8826     #  - removing the removal operation altogether
8827     self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
8828
8829   def DeclareLocks(self, level):
8830     """Last minute lock declaration."""
8831     # All nodes are locked anyway, so nothing to do here.
8832
8833   def BuildHooksEnv(self):
8834     """Build hooks env.
8835
8836     This will run on the master, primary node and target node.
8837
8838     """
8839     env = {
8840       "EXPORT_NODE": self.op.target_node,
8841       "EXPORT_DO_SHUTDOWN": self.op.shutdown,
8842       "SHUTDOWN_TIMEOUT": self.shutdown_timeout,
8843       }
8844     env.update(_BuildInstanceHookEnvByObject(self, self.instance))
8845     nl = [self.cfg.GetMasterNode(), self.instance.primary_node,
8846           self.op.target_node]
8847     return env, nl, nl
8848
8849   def CheckPrereq(self):
8850     """Check prerequisites.
8851
8852     This checks that the instance and node names are valid.
8853
8854     """
8855     instance_name = self.op.instance_name
8856     self.instance = self.cfg.GetInstanceInfo(instance_name)
8857     assert self.instance is not None, \
8858           "Cannot retrieve locked instance %s" % self.op.instance_name
8859     _CheckNodeOnline(self, self.instance.primary_node)
8860
8861     self.op.target_node = _ExpandNodeName(self.cfg, self.op.target_node)
8862     self.dst_node = self.cfg.GetNodeInfo(self.op.target_node)
8863     assert self.dst_node is not None
8864
8865     _CheckNodeOnline(self, self.dst_node.name)
8866     _CheckNodeNotDrained(self, self.dst_node.name)
8867
8868     # instance disk type verification
8869     for disk in self.instance.disks:
8870       if disk.dev_type == constants.LD_FILE:
8871         raise errors.OpPrereqError("Export not supported for instances with"
8872                                    " file-based disks", errors.ECODE_INVAL)
8873
8874   def Exec(self, feedback_fn):
8875     """Export an instance to an image in the cluster.
8876
8877     """
8878     instance = self.instance
8879     dst_node = self.dst_node
8880     src_node = instance.primary_node
8881
8882     if self.op.shutdown:
8883       # shutdown the instance, but not the disks
8884       feedback_fn("Shutting down instance %s" % instance.name)
8885       result = self.rpc.call_instance_shutdown(src_node, instance,
8886                                                self.shutdown_timeout)
8887       result.Raise("Could not shutdown instance %s on"
8888                    " node %s" % (instance.name, src_node))
8889
8890     vgname = self.cfg.GetVGName()
8891
8892     snap_disks = []
8893
8894     # set the disks ID correctly since call_instance_start needs the
8895     # correct drbd minor to create the symlinks
8896     for disk in instance.disks:
8897       self.cfg.SetDiskID(disk, src_node)
8898
8899     activate_disks = (not instance.admin_up)
8900
8901     if activate_disks:
8902       # Activate the instance disks if we'exporting a stopped instance
8903       feedback_fn("Activating disks for %s" % instance.name)
8904       _StartInstanceDisks(self, instance, None)
8905
8906     try:
8907       # per-disk results
8908       dresults = []
8909       try:
8910         for idx, disk in enumerate(instance.disks):
8911           feedback_fn("Creating a snapshot of disk/%s on node %s" %
8912                       (idx, src_node))
8913
8914           # result.payload will be a snapshot of an lvm leaf of the one we
8915           # passed
8916           result = self.rpc.call_blockdev_snapshot(src_node, disk)
8917           msg = result.fail_msg
8918           if msg:
8919             self.LogWarning("Could not snapshot disk/%s on node %s: %s",
8920                             idx, src_node, msg)
8921             snap_disks.append(False)
8922           else:
8923             disk_id = (vgname, result.payload)
8924             new_dev = objects.Disk(dev_type=constants.LD_LV, size=disk.size,
8925                                    logical_id=disk_id, physical_id=disk_id,
8926                                    iv_name=disk.iv_name)
8927             snap_disks.append(new_dev)
8928
8929       finally:
8930         if self.op.shutdown and instance.admin_up:
8931           feedback_fn("Starting instance %s" % instance.name)
8932           result = self.rpc.call_instance_start(src_node, instance, None, None)
8933           msg = result.fail_msg
8934           if msg:
8935             _ShutdownInstanceDisks(self, instance)
8936             raise errors.OpExecError("Could not start instance: %s" % msg)
8937
8938       # TODO: check for size
8939
8940       cluster_name = self.cfg.GetClusterName()
8941       for idx, dev in enumerate(snap_disks):
8942         feedback_fn("Exporting snapshot %s from %s to %s" %
8943                     (idx, src_node, dst_node.name))
8944         if dev:
8945           # FIXME: pass debug from opcode to backend
8946           result = self.rpc.call_snapshot_export(src_node, dev, dst_node.name,
8947                                                  instance, cluster_name,
8948                                                  idx, self.op.debug_level)
8949           msg = result.fail_msg
8950           if msg:
8951             self.LogWarning("Could not export disk/%s from node %s to"
8952                             " node %s: %s", idx, src_node, dst_node.name, msg)
8953             dresults.append(False)
8954           else:
8955             dresults.append(True)
8956           msg = self.rpc.call_blockdev_remove(src_node, dev).fail_msg
8957           if msg:
8958             self.LogWarning("Could not remove snapshot for disk/%d from node"
8959                             " %s: %s", idx, src_node, msg)
8960         else:
8961           dresults.append(False)
8962
8963       feedback_fn("Finalizing export on %s" % dst_node.name)
8964       result = self.rpc.call_finalize_export(dst_node.name, instance,
8965                                              snap_disks)
8966       fin_resu = True
8967       msg = result.fail_msg
8968       if msg:
8969         self.LogWarning("Could not finalize export for instance %s"
8970                         " on node %s: %s", instance.name, dst_node.name, msg)
8971         fin_resu = False
8972
8973     finally:
8974       if activate_disks:
8975         feedback_fn("Deactivating disks for %s" % instance.name)
8976         _ShutdownInstanceDisks(self, instance)
8977
8978     nodelist = self.cfg.GetNodeList()
8979     nodelist.remove(dst_node.name)
8980
8981     # on one-node clusters nodelist will be empty after the removal
8982     # if we proceed the backup would be removed because OpQueryExports
8983     # substitutes an empty list with the full cluster node list.
8984     iname = instance.name
8985     if nodelist:
8986       feedback_fn("Removing old exports for instance %s" % iname)
8987       exportlist = self.rpc.call_export_list(nodelist)
8988       for node in exportlist:
8989         if exportlist[node].fail_msg:
8990           continue
8991         if iname in exportlist[node].payload:
8992           msg = self.rpc.call_export_remove(node, iname).fail_msg
8993           if msg:
8994             self.LogWarning("Could not remove older export for instance %s"
8995                             " on node %s: %s", iname, node, msg)
8996     return fin_resu, dresults
8997
8998
8999 class LURemoveExport(NoHooksLU):
9000   """Remove exports related to the named instance.
9001
9002   """
9003   _OP_REQP = ["instance_name"]
9004   REQ_BGL = False
9005
9006   def ExpandNames(self):
9007     self.needed_locks = {}
9008     # We need all nodes to be locked in order for RemoveExport to work, but we
9009     # don't need to lock the instance itself, as nothing will happen to it (and
9010     # we can remove exports also for a removed instance)
9011     self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
9012
9013   def CheckPrereq(self):
9014     """Check prerequisites.
9015     """
9016     pass
9017
9018   def Exec(self, feedback_fn):
9019     """Remove any export.
9020
9021     """
9022     instance_name = self.cfg.ExpandInstanceName(self.op.instance_name)
9023     # If the instance was not found we'll try with the name that was passed in.
9024     # This will only work if it was an FQDN, though.
9025     fqdn_warn = False
9026     if not instance_name:
9027       fqdn_warn = True
9028       instance_name = self.op.instance_name
9029
9030     locked_nodes = self.acquired_locks[locking.LEVEL_NODE]
9031     exportlist = self.rpc.call_export_list(locked_nodes)
9032     found = False
9033     for node in exportlist:
9034       msg = exportlist[node].fail_msg
9035       if msg:
9036         self.LogWarning("Failed to query node %s (continuing): %s", node, msg)
9037         continue
9038       if instance_name in exportlist[node].payload:
9039         found = True
9040         result = self.rpc.call_export_remove(node, instance_name)
9041         msg = result.fail_msg
9042         if msg:
9043           logging.error("Could not remove export for instance %s"
9044                         " on node %s: %s", instance_name, node, msg)
9045
9046     if fqdn_warn and not found:
9047       feedback_fn("Export not found. If trying to remove an export belonging"
9048                   " to a deleted instance please use its Fully Qualified"
9049                   " Domain Name.")
9050
9051
9052 class TagsLU(NoHooksLU): # pylint: disable-msg=W0223
9053   """Generic tags LU.
9054
9055   This is an abstract class which is the parent of all the other tags LUs.
9056
9057   """
9058
9059   def ExpandNames(self):
9060     self.needed_locks = {}
9061     if self.op.kind == constants.TAG_NODE:
9062       self.op.name = _ExpandNodeName(self.cfg, self.op.name)
9063       self.needed_locks[locking.LEVEL_NODE] = self.op.name
9064     elif self.op.kind == constants.TAG_INSTANCE:
9065       self.op.name = _ExpandInstanceName(self.cfg, self.op.name)
9066       self.needed_locks[locking.LEVEL_INSTANCE] = self.op.name
9067
9068   def CheckPrereq(self):
9069     """Check prerequisites.
9070
9071     """
9072     if self.op.kind == constants.TAG_CLUSTER:
9073       self.target = self.cfg.GetClusterInfo()
9074     elif self.op.kind == constants.TAG_NODE:
9075       self.target = self.cfg.GetNodeInfo(self.op.name)
9076     elif self.op.kind == constants.TAG_INSTANCE:
9077       self.target = self.cfg.GetInstanceInfo(self.op.name)
9078     else:
9079       raise errors.OpPrereqError("Wrong tag type requested (%s)" %
9080                                  str(self.op.kind), errors.ECODE_INVAL)
9081
9082
9083 class LUGetTags(TagsLU):
9084   """Returns the tags of a given object.
9085
9086   """
9087   _OP_REQP = ["kind", "name"]
9088   REQ_BGL = False
9089
9090   def Exec(self, feedback_fn):
9091     """Returns the tag list.
9092
9093     """
9094     return list(self.target.GetTags())
9095
9096
9097 class LUSearchTags(NoHooksLU):
9098   """Searches the tags for a given pattern.
9099
9100   """
9101   _OP_REQP = ["pattern"]
9102   REQ_BGL = False
9103
9104   def ExpandNames(self):
9105     self.needed_locks = {}
9106
9107   def CheckPrereq(self):
9108     """Check prerequisites.
9109
9110     This checks the pattern passed for validity by compiling it.
9111
9112     """
9113     try:
9114       self.re = re.compile(self.op.pattern)
9115     except re.error, err:
9116       raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
9117                                  (self.op.pattern, err), errors.ECODE_INVAL)
9118
9119   def Exec(self, feedback_fn):
9120     """Returns the tag list.
9121
9122     """
9123     cfg = self.cfg
9124     tgts = [("/cluster", cfg.GetClusterInfo())]
9125     ilist = cfg.GetAllInstancesInfo().values()
9126     tgts.extend([("/instances/%s" % i.name, i) for i in ilist])
9127     nlist = cfg.GetAllNodesInfo().values()
9128     tgts.extend([("/nodes/%s" % n.name, n) for n in nlist])
9129     results = []
9130     for path, target in tgts:
9131       for tag in target.GetTags():
9132         if self.re.search(tag):
9133           results.append((path, tag))
9134     return results
9135
9136
9137 class LUAddTags(TagsLU):
9138   """Sets a tag on a given object.
9139
9140   """
9141   _OP_REQP = ["kind", "name", "tags"]
9142   REQ_BGL = False
9143
9144   def CheckPrereq(self):
9145     """Check prerequisites.
9146
9147     This checks the type and length of the tag name and value.
9148
9149     """
9150     TagsLU.CheckPrereq(self)
9151     for tag in self.op.tags:
9152       objects.TaggableObject.ValidateTag(tag)
9153
9154   def Exec(self, feedback_fn):
9155     """Sets the tag.
9156
9157     """
9158     try:
9159       for tag in self.op.tags:
9160         self.target.AddTag(tag)
9161     except errors.TagError, err:
9162       raise errors.OpExecError("Error while setting tag: %s" % str(err))
9163     self.cfg.Update(self.target, feedback_fn)
9164
9165
9166 class LUDelTags(TagsLU):
9167   """Delete a list of tags from a given object.
9168
9169   """
9170   _OP_REQP = ["kind", "name", "tags"]
9171   REQ_BGL = False
9172
9173   def CheckPrereq(self):
9174     """Check prerequisites.
9175
9176     This checks that we have the given tag.
9177
9178     """
9179     TagsLU.CheckPrereq(self)
9180     for tag in self.op.tags:
9181       objects.TaggableObject.ValidateTag(tag)
9182     del_tags = frozenset(self.op.tags)
9183     cur_tags = self.target.GetTags()
9184     if not del_tags <= cur_tags:
9185       diff_tags = del_tags - cur_tags
9186       diff_names = ["'%s'" % tag for tag in diff_tags]
9187       diff_names.sort()
9188       raise errors.OpPrereqError("Tag(s) %s not found" %
9189                                  (",".join(diff_names)), errors.ECODE_NOENT)
9190
9191   def Exec(self, feedback_fn):
9192     """Remove the tag from the object.
9193
9194     """
9195     for tag in self.op.tags:
9196       self.target.RemoveTag(tag)
9197     self.cfg.Update(self.target, feedback_fn)
9198
9199
9200 class LUTestDelay(NoHooksLU):
9201   """Sleep for a specified amount of time.
9202
9203   This LU sleeps on the master and/or nodes for a specified amount of
9204   time.
9205
9206   """
9207   _OP_REQP = ["duration", "on_master", "on_nodes"]
9208   REQ_BGL = False
9209
9210   def ExpandNames(self):
9211     """Expand names and set required locks.
9212
9213     This expands the node list, if any.
9214
9215     """
9216     self.needed_locks = {}
9217     if self.op.on_nodes:
9218       # _GetWantedNodes can be used here, but is not always appropriate to use
9219       # this way in ExpandNames. Check LogicalUnit.ExpandNames docstring for
9220       # more information.
9221       self.op.on_nodes = _GetWantedNodes(self, self.op.on_nodes)
9222       self.needed_locks[locking.LEVEL_NODE] = self.op.on_nodes
9223
9224   def CheckPrereq(self):
9225     """Check prerequisites.
9226
9227     """
9228
9229   def Exec(self, feedback_fn):
9230     """Do the actual sleep.
9231
9232     """
9233     if self.op.on_master:
9234       if not utils.TestDelay(self.op.duration):
9235         raise errors.OpExecError("Error during master delay test")
9236     if self.op.on_nodes:
9237       result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
9238       for node, node_result in result.items():
9239         node_result.Raise("Failure during rpc call to node %s" % node)
9240
9241
9242 class IAllocator(object):
9243   """IAllocator framework.
9244
9245   An IAllocator instance has three sets of attributes:
9246     - cfg that is needed to query the cluster
9247     - input data (all members of the _KEYS class attribute are required)
9248     - four buffer attributes (in|out_data|text), that represent the
9249       input (to the external script) in text and data structure format,
9250       and the output from it, again in two formats
9251     - the result variables from the script (success, info, nodes) for
9252       easy usage
9253
9254   """
9255   # pylint: disable-msg=R0902
9256   # lots of instance attributes
9257   _ALLO_KEYS = [
9258     "name", "mem_size", "disks", "disk_template",
9259     "os", "tags", "nics", "vcpus", "hypervisor",
9260     ]
9261   _RELO_KEYS = [
9262     "name", "relocate_from",
9263     ]
9264   _EVAC_KEYS = [
9265     "evac_nodes",
9266     ]
9267
9268   def __init__(self, cfg, rpc, mode, **kwargs):
9269     self.cfg = cfg
9270     self.rpc = rpc
9271     # init buffer variables
9272     self.in_text = self.out_text = self.in_data = self.out_data = None
9273     # init all input fields so that pylint is happy
9274     self.mode = mode
9275     self.mem_size = self.disks = self.disk_template = None
9276     self.os = self.tags = self.nics = self.vcpus = None
9277     self.hypervisor = None
9278     self.relocate_from = None
9279     self.name = None
9280     self.evac_nodes = None
9281     # computed fields
9282     self.required_nodes = None
9283     # init result fields
9284     self.success = self.info = self.result = None
9285     if self.mode == constants.IALLOCATOR_MODE_ALLOC:
9286       keyset = self._ALLO_KEYS
9287       fn = self._AddNewInstance
9288     elif self.mode == constants.IALLOCATOR_MODE_RELOC:
9289       keyset = self._RELO_KEYS
9290       fn = self._AddRelocateInstance
9291     elif self.mode == constants.IALLOCATOR_MODE_MEVAC:
9292       keyset = self._EVAC_KEYS
9293       fn = self._AddEvacuateNodes
9294     else:
9295       raise errors.ProgrammerError("Unknown mode '%s' passed to the"
9296                                    " IAllocator" % self.mode)
9297     for key in kwargs:
9298       if key not in keyset:
9299         raise errors.ProgrammerError("Invalid input parameter '%s' to"
9300                                      " IAllocator" % key)
9301       setattr(self, key, kwargs[key])
9302
9303     for key in keyset:
9304       if key not in kwargs:
9305         raise errors.ProgrammerError("Missing input parameter '%s' to"
9306                                      " IAllocator" % key)
9307     self._BuildInputData(fn)
9308
9309   def _ComputeClusterData(self):
9310     """Compute the generic allocator input data.
9311
9312     This is the data that is independent of the actual operation.
9313
9314     """
9315     cfg = self.cfg
9316     cluster_info = cfg.GetClusterInfo()
9317     # cluster data
9318     data = {
9319       "version": constants.IALLOCATOR_VERSION,
9320       "cluster_name": cfg.GetClusterName(),
9321       "cluster_tags": list(cluster_info.GetTags()),
9322       "enabled_hypervisors": list(cluster_info.enabled_hypervisors),
9323       # we don't have job IDs
9324       }
9325     iinfo = cfg.GetAllInstancesInfo().values()
9326     i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
9327
9328     # node data
9329     node_results = {}
9330     node_list = cfg.GetNodeList()
9331
9332     if self.mode == constants.IALLOCATOR_MODE_ALLOC:
9333       hypervisor_name = self.hypervisor
9334     elif self.mode == constants.IALLOCATOR_MODE_RELOC:
9335       hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
9336     elif self.mode == constants.IALLOCATOR_MODE_MEVAC:
9337       hypervisor_name = cluster_info.enabled_hypervisors[0]
9338
9339     node_data = self.rpc.call_node_info(node_list, cfg.GetVGName(),
9340                                         hypervisor_name)
9341     node_iinfo = \
9342       self.rpc.call_all_instances_info(node_list,
9343                                        cluster_info.enabled_hypervisors)
9344     for nname, nresult in node_data.items():
9345       # first fill in static (config-based) values
9346       ninfo = cfg.GetNodeInfo(nname)
9347       pnr = {
9348         "tags": list(ninfo.GetTags()),
9349         "primary_ip": ninfo.primary_ip,
9350         "secondary_ip": ninfo.secondary_ip,
9351         "offline": ninfo.offline,
9352         "drained": ninfo.drained,
9353         "master_candidate": ninfo.master_candidate,
9354         }
9355
9356       if not (ninfo.offline or ninfo.drained):
9357         nresult.Raise("Can't get data for node %s" % nname)
9358         node_iinfo[nname].Raise("Can't get node instance info from node %s" %
9359                                 nname)
9360         remote_info = nresult.payload
9361
9362         for attr in ['memory_total', 'memory_free', 'memory_dom0',
9363                      'vg_size', 'vg_free', 'cpu_total']:
9364           if attr not in remote_info:
9365             raise errors.OpExecError("Node '%s' didn't return attribute"
9366                                      " '%s'" % (nname, attr))
9367           if not isinstance(remote_info[attr], int):
9368             raise errors.OpExecError("Node '%s' returned invalid value"
9369                                      " for '%s': %s" %
9370                                      (nname, attr, remote_info[attr]))
9371         # compute memory used by primary instances
9372         i_p_mem = i_p_up_mem = 0
9373         for iinfo, beinfo in i_list:
9374           if iinfo.primary_node == nname:
9375             i_p_mem += beinfo[constants.BE_MEMORY]
9376             if iinfo.name not in node_iinfo[nname].payload:
9377               i_used_mem = 0
9378             else:
9379               i_used_mem = int(node_iinfo[nname].payload[iinfo.name]['memory'])
9380             i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
9381             remote_info['memory_free'] -= max(0, i_mem_diff)
9382
9383             if iinfo.admin_up:
9384               i_p_up_mem += beinfo[constants.BE_MEMORY]
9385
9386         # compute memory used by instances
9387         pnr_dyn = {
9388           "total_memory": remote_info['memory_total'],
9389           "reserved_memory": remote_info['memory_dom0'],
9390           "free_memory": remote_info['memory_free'],
9391           "total_disk": remote_info['vg_size'],
9392           "free_disk": remote_info['vg_free'],
9393           "total_cpus": remote_info['cpu_total'],
9394           "i_pri_memory": i_p_mem,
9395           "i_pri_up_memory": i_p_up_mem,
9396           }
9397         pnr.update(pnr_dyn)
9398
9399       node_results[nname] = pnr
9400     data["nodes"] = node_results
9401
9402     # instance data
9403     instance_data = {}
9404     for iinfo, beinfo in i_list:
9405       nic_data = []
9406       for nic in iinfo.nics:
9407         filled_params = objects.FillDict(
9408             cluster_info.nicparams[constants.PP_DEFAULT],
9409             nic.nicparams)
9410         nic_dict = {"mac": nic.mac,
9411                     "ip": nic.ip,
9412                     "mode": filled_params[constants.NIC_MODE],
9413                     "link": filled_params[constants.NIC_LINK],
9414                    }
9415         if filled_params[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
9416           nic_dict["bridge"] = filled_params[constants.NIC_LINK]
9417         nic_data.append(nic_dict)
9418       pir = {
9419         "tags": list(iinfo.GetTags()),
9420         "admin_up": iinfo.admin_up,
9421         "vcpus": beinfo[constants.BE_VCPUS],
9422         "memory": beinfo[constants.BE_MEMORY],
9423         "os": iinfo.os,
9424         "nodes": [iinfo.primary_node] + list(iinfo.secondary_nodes),
9425         "nics": nic_data,
9426         "disks": [{"size": dsk.size, "mode": dsk.mode} for dsk in iinfo.disks],
9427         "disk_template": iinfo.disk_template,
9428         "hypervisor": iinfo.hypervisor,
9429         }
9430       pir["disk_space_total"] = _ComputeDiskSize(iinfo.disk_template,
9431                                                  pir["disks"])
9432       instance_data[iinfo.name] = pir
9433
9434     data["instances"] = instance_data
9435
9436     self.in_data = data
9437
9438   def _AddNewInstance(self):
9439     """Add new instance data to allocator structure.
9440
9441     This in combination with _AllocatorGetClusterData will create the
9442     correct structure needed as input for the allocator.
9443
9444     The checks for the completeness of the opcode must have already been
9445     done.
9446
9447     """
9448     disk_space = _ComputeDiskSize(self.disk_template, self.disks)
9449
9450     if self.disk_template in constants.DTS_NET_MIRROR:
9451       self.required_nodes = 2
9452     else:
9453       self.required_nodes = 1
9454     request = {
9455       "name": self.name,
9456       "disk_template": self.disk_template,
9457       "tags": self.tags,
9458       "os": self.os,
9459       "vcpus": self.vcpus,
9460       "memory": self.mem_size,
9461       "disks": self.disks,
9462       "disk_space_total": disk_space,
9463       "nics": self.nics,
9464       "required_nodes": self.required_nodes,
9465       }
9466     return request
9467
9468   def _AddRelocateInstance(self):
9469     """Add relocate instance data to allocator structure.
9470
9471     This in combination with _IAllocatorGetClusterData will create the
9472     correct structure needed as input for the allocator.
9473
9474     The checks for the completeness of the opcode must have already been
9475     done.
9476
9477     """
9478     instance = self.cfg.GetInstanceInfo(self.name)
9479     if instance is None:
9480       raise errors.ProgrammerError("Unknown instance '%s' passed to"
9481                                    " IAllocator" % self.name)
9482
9483     if instance.disk_template not in constants.DTS_NET_MIRROR:
9484       raise errors.OpPrereqError("Can't relocate non-mirrored instances",
9485                                  errors.ECODE_INVAL)
9486
9487     if len(instance.secondary_nodes) != 1:
9488       raise errors.OpPrereqError("Instance has not exactly one secondary node",
9489                                  errors.ECODE_STATE)
9490
9491     self.required_nodes = 1
9492     disk_sizes = [{'size': disk.size} for disk in instance.disks]
9493     disk_space = _ComputeDiskSize(instance.disk_template, disk_sizes)
9494
9495     request = {
9496       "name": self.name,
9497       "disk_space_total": disk_space,
9498       "required_nodes": self.required_nodes,
9499       "relocate_from": self.relocate_from,
9500       }
9501     return request
9502
9503   def _AddEvacuateNodes(self):
9504     """Add evacuate nodes data to allocator structure.
9505
9506     """
9507     request = {
9508       "evac_nodes": self.evac_nodes
9509       }
9510     return request
9511
9512   def _BuildInputData(self, fn):
9513     """Build input data structures.
9514
9515     """
9516     self._ComputeClusterData()
9517
9518     request = fn()
9519     request["type"] = self.mode
9520     self.in_data["request"] = request
9521
9522     self.in_text = serializer.Dump(self.in_data)
9523
9524   def Run(self, name, validate=True, call_fn=None):
9525     """Run an instance allocator and return the results.
9526
9527     """
9528     if call_fn is None:
9529       call_fn = self.rpc.call_iallocator_runner
9530
9531     result = call_fn(self.cfg.GetMasterNode(), name, self.in_text)
9532     result.Raise("Failure while running the iallocator script")
9533
9534     self.out_text = result.payload
9535     if validate:
9536       self._ValidateResult()
9537
9538   def _ValidateResult(self):
9539     """Process the allocator results.
9540
9541     This will process and if successful save the result in
9542     self.out_data and the other parameters.
9543
9544     """
9545     try:
9546       rdict = serializer.Load(self.out_text)
9547     except Exception, err:
9548       raise errors.OpExecError("Can't parse iallocator results: %s" % str(err))
9549
9550     if not isinstance(rdict, dict):
9551       raise errors.OpExecError("Can't parse iallocator results: not a dict")
9552
9553     # TODO: remove backwards compatiblity in later versions
9554     if "nodes" in rdict and "result" not in rdict:
9555       rdict["result"] = rdict["nodes"]
9556       del rdict["nodes"]
9557
9558     for key in "success", "info", "result":
9559       if key not in rdict:
9560         raise errors.OpExecError("Can't parse iallocator results:"
9561                                  " missing key '%s'" % key)
9562       setattr(self, key, rdict[key])
9563
9564     if not isinstance(rdict["result"], list):
9565       raise errors.OpExecError("Can't parse iallocator results: 'result' key"
9566                                " is not a list")
9567     self.out_data = rdict
9568
9569
9570 class LUTestAllocator(NoHooksLU):
9571   """Run allocator tests.
9572
9573   This LU runs the allocator tests
9574
9575   """
9576   _OP_REQP = ["direction", "mode", "name"]
9577
9578   def CheckPrereq(self):
9579     """Check prerequisites.
9580
9581     This checks the opcode parameters depending on the director and mode test.
9582
9583     """
9584     if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
9585       for attr in ["name", "mem_size", "disks", "disk_template",
9586                    "os", "tags", "nics", "vcpus"]:
9587         if not hasattr(self.op, attr):
9588           raise errors.OpPrereqError("Missing attribute '%s' on opcode input" %
9589                                      attr, errors.ECODE_INVAL)
9590       iname = self.cfg.ExpandInstanceName(self.op.name)
9591       if iname is not None:
9592         raise errors.OpPrereqError("Instance '%s' already in the cluster" %
9593                                    iname, errors.ECODE_EXISTS)
9594       if not isinstance(self.op.nics, list):
9595         raise errors.OpPrereqError("Invalid parameter 'nics'",
9596                                    errors.ECODE_INVAL)
9597       for row in self.op.nics:
9598         if (not isinstance(row, dict) or
9599             "mac" not in row or
9600             "ip" not in row or
9601             "bridge" not in row):
9602           raise errors.OpPrereqError("Invalid contents of the 'nics'"
9603                                      " parameter", errors.ECODE_INVAL)
9604       if not isinstance(self.op.disks, list):
9605         raise errors.OpPrereqError("Invalid parameter 'disks'",
9606                                    errors.ECODE_INVAL)
9607       for row in self.op.disks:
9608         if (not isinstance(row, dict) or
9609             "size" not in row or
9610             not isinstance(row["size"], int) or
9611             "mode" not in row or
9612             row["mode"] not in ['r', 'w']):
9613           raise errors.OpPrereqError("Invalid contents of the 'disks'"
9614                                      " parameter", errors.ECODE_INVAL)
9615       if not hasattr(self.op, "hypervisor") or self.op.hypervisor is None:
9616         self.op.hypervisor = self.cfg.GetHypervisorType()
9617     elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
9618       if not hasattr(self.op, "name"):
9619         raise errors.OpPrereqError("Missing attribute 'name' on opcode input",
9620                                    errors.ECODE_INVAL)
9621       fname = _ExpandInstanceName(self.cfg, self.op.name)
9622       self.op.name = fname
9623       self.relocate_from = self.cfg.GetInstanceInfo(fname).secondary_nodes
9624     elif self.op.mode == constants.IALLOCATOR_MODE_MEVAC:
9625       if not hasattr(self.op, "evac_nodes"):
9626         raise errors.OpPrereqError("Missing attribute 'evac_nodes' on"
9627                                    " opcode input", errors.ECODE_INVAL)
9628     else:
9629       raise errors.OpPrereqError("Invalid test allocator mode '%s'" %
9630                                  self.op.mode, errors.ECODE_INVAL)
9631
9632     if self.op.direction == constants.IALLOCATOR_DIR_OUT:
9633       if not hasattr(self.op, "allocator") or self.op.allocator is None:
9634         raise errors.OpPrereqError("Missing allocator name",
9635                                    errors.ECODE_INVAL)
9636     elif self.op.direction != constants.IALLOCATOR_DIR_IN:
9637       raise errors.OpPrereqError("Wrong allocator test '%s'" %
9638                                  self.op.direction, errors.ECODE_INVAL)
9639
9640   def Exec(self, feedback_fn):
9641     """Run the allocator test.
9642
9643     """
9644     if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
9645       ial = IAllocator(self.cfg, self.rpc,
9646                        mode=self.op.mode,
9647                        name=self.op.name,
9648                        mem_size=self.op.mem_size,
9649                        disks=self.op.disks,
9650                        disk_template=self.op.disk_template,
9651                        os=self.op.os,
9652                        tags=self.op.tags,
9653                        nics=self.op.nics,
9654                        vcpus=self.op.vcpus,
9655                        hypervisor=self.op.hypervisor,
9656                        )
9657     elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
9658       ial = IAllocator(self.cfg, self.rpc,
9659                        mode=self.op.mode,
9660                        name=self.op.name,
9661                        relocate_from=list(self.relocate_from),
9662                        )
9663     elif self.op.mode == constants.IALLOCATOR_MODE_MEVAC:
9664       ial = IAllocator(self.cfg, self.rpc,
9665                        mode=self.op.mode,
9666                        evac_nodes=self.op.evac_nodes)
9667     else:
9668       raise errors.ProgrammerError("Uncatched mode %s in"
9669                                    " LUTestAllocator.Exec", self.op.mode)
9670
9671     if self.op.direction == constants.IALLOCATOR_DIR_IN:
9672       result = ial.in_text
9673     else:
9674       ial.Run(self.op.allocator, validate=False)
9675       result = ial.out_text
9676     return result