Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 88ae4f85

History | View | Annotate | Download (241.7 kB)

1 2f31098c Iustin Pop
#
2 a8083063 Iustin Pop
#
3 a8083063 Iustin Pop
4 e7c6e02b Michael Hanselmann
# Copyright (C) 2006, 2007, 2008 Google Inc.
5 a8083063 Iustin Pop
#
6 a8083063 Iustin Pop
# This program is free software; you can redistribute it and/or modify
7 a8083063 Iustin Pop
# it under the terms of the GNU General Public License as published by
8 a8083063 Iustin Pop
# the Free Software Foundation; either version 2 of the License, or
9 a8083063 Iustin Pop
# (at your option) any later version.
10 a8083063 Iustin Pop
#
11 a8083063 Iustin Pop
# This program is distributed in the hope that it will be useful, but
12 a8083063 Iustin Pop
# WITHOUT ANY WARRANTY; without even the implied warranty of
13 a8083063 Iustin Pop
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 a8083063 Iustin Pop
# General Public License for more details.
15 a8083063 Iustin Pop
#
16 a8083063 Iustin Pop
# You should have received a copy of the GNU General Public License
17 a8083063 Iustin Pop
# along with this program; if not, write to the Free Software
18 a8083063 Iustin Pop
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 a8083063 Iustin Pop
# 02110-1301, USA.
20 a8083063 Iustin Pop
21 a8083063 Iustin Pop
22 880478f8 Iustin Pop
"""Module implementing the master-side code."""
23 a8083063 Iustin Pop
24 a8083063 Iustin Pop
# pylint: disable-msg=W0613,W0201
25 a8083063 Iustin Pop
26 a8083063 Iustin Pop
import os
27 a8083063 Iustin Pop
import os.path
28 a8083063 Iustin Pop
import sha
29 a8083063 Iustin Pop
import time
30 a8083063 Iustin Pop
import tempfile
31 a8083063 Iustin Pop
import re
32 a8083063 Iustin Pop
import platform
33 ffa1c0dc Iustin Pop
import logging
34 74409b12 Iustin Pop
import copy
35 4b7735f9 Iustin Pop
import random
36 a8083063 Iustin Pop
37 a8083063 Iustin Pop
from ganeti import ssh
38 a8083063 Iustin Pop
from ganeti import utils
39 a8083063 Iustin Pop
from ganeti import errors
40 a8083063 Iustin Pop
from ganeti import hypervisor
41 6048c986 Guido Trotter
from ganeti import locking
42 a8083063 Iustin Pop
from ganeti import constants
43 a8083063 Iustin Pop
from ganeti import objects
44 a8083063 Iustin Pop
from ganeti import opcodes
45 8d14b30d Iustin Pop
from ganeti import serializer
46 112f18a5 Iustin Pop
from ganeti import ssconf
47 d61df03e Iustin Pop
48 d61df03e Iustin Pop
49 a8083063 Iustin Pop
class LogicalUnit(object):
50 396e1b78 Michael Hanselmann
  """Logical Unit base class.
51 a8083063 Iustin Pop

52 a8083063 Iustin Pop
  Subclasses must follow these rules:
53 d465bdc8 Guido Trotter
    - implement ExpandNames
54 d465bdc8 Guido Trotter
    - implement CheckPrereq
55 a8083063 Iustin Pop
    - implement Exec
56 a8083063 Iustin Pop
    - implement BuildHooksEnv
57 a8083063 Iustin Pop
    - redefine HPATH and HTYPE
58 05f86716 Guido Trotter
    - optionally redefine their run requirements:
59 7e55040e Guido Trotter
        REQ_BGL: the LU needs to hold the Big Ganeti Lock exclusively
60 05f86716 Guido Trotter

61 05f86716 Guido Trotter
  Note that all commands require root permissions.
62 a8083063 Iustin Pop

63 a8083063 Iustin Pop
  """
64 a8083063 Iustin Pop
  HPATH = None
65 a8083063 Iustin Pop
  HTYPE = None
66 a8083063 Iustin Pop
  _OP_REQP = []
67 7e55040e Guido Trotter
  REQ_BGL = True
68 a8083063 Iustin Pop
69 72737a7f Iustin Pop
  def __init__(self, processor, op, context, rpc):
70 a8083063 Iustin Pop
    """Constructor for LogicalUnit.
71 a8083063 Iustin Pop

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

75 a8083063 Iustin Pop
    """
76 5bfac263 Iustin Pop
    self.proc = processor
77 a8083063 Iustin Pop
    self.op = op
78 77b657a3 Guido Trotter
    self.cfg = context.cfg
79 77b657a3 Guido Trotter
    self.context = context
80 72737a7f Iustin Pop
    self.rpc = rpc
81 ca2a79e1 Guido Trotter
    # Dicts used to declare locking needs to mcpu
82 d465bdc8 Guido Trotter
    self.needed_locks = None
83 6683bba2 Guido Trotter
    self.acquired_locks = {}
84 3977a4c1 Guido Trotter
    self.share_locks = dict(((i, 0) for i in locking.LEVELS))
85 ca2a79e1 Guido Trotter
    self.add_locks = {}
86 ca2a79e1 Guido Trotter
    self.remove_locks = {}
87 c4a2fee1 Guido Trotter
    # Used to force good behavior when calling helper functions
88 c4a2fee1 Guido Trotter
    self.recalculate_locks = {}
89 c92b310a Michael Hanselmann
    self.__ssh = None
90 86d9d3bb Iustin Pop
    # logging
91 86d9d3bb Iustin Pop
    self.LogWarning = processor.LogWarning
92 86d9d3bb Iustin Pop
    self.LogInfo = processor.LogInfo
93 c92b310a Michael Hanselmann
94 a8083063 Iustin Pop
    for attr_name in self._OP_REQP:
95 a8083063 Iustin Pop
      attr_val = getattr(op, attr_name, None)
96 a8083063 Iustin Pop
      if attr_val is None:
97 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Required parameter '%s' missing" %
98 3ecf6786 Iustin Pop
                                   attr_name)
99 4be4691d Iustin Pop
    self.CheckArguments()
100 a8083063 Iustin Pop
101 c92b310a Michael Hanselmann
  def __GetSSH(self):
102 c92b310a Michael Hanselmann
    """Returns the SshRunner object
103 c92b310a Michael Hanselmann

104 c92b310a Michael Hanselmann
    """
105 c92b310a Michael Hanselmann
    if not self.__ssh:
106 6b0469d2 Iustin Pop
      self.__ssh = ssh.SshRunner(self.cfg.GetClusterName())
107 c92b310a Michael Hanselmann
    return self.__ssh
108 c92b310a Michael Hanselmann
109 c92b310a Michael Hanselmann
  ssh = property(fget=__GetSSH)
110 c92b310a Michael Hanselmann
111 4be4691d Iustin Pop
  def CheckArguments(self):
112 4be4691d Iustin Pop
    """Check syntactic validity for the opcode arguments.
113 4be4691d Iustin Pop

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

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

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

126 4be4691d Iustin Pop
    """
127 4be4691d Iustin Pop
    pass
128 4be4691d Iustin Pop
129 d465bdc8 Guido Trotter
  def ExpandNames(self):
130 d465bdc8 Guido Trotter
    """Expand names for this LU.
131 d465bdc8 Guido Trotter

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

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

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

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

150 e4376078 Iustin Pop
    Examples::
151 e4376078 Iustin Pop

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

164 d465bdc8 Guido Trotter
    """
165 d465bdc8 Guido Trotter
    # The implementation of this method is mandatory only if the new LU is
166 d465bdc8 Guido Trotter
    # concurrent, so that old LUs don't need to be changed all at the same
167 d465bdc8 Guido Trotter
    # time.
168 d465bdc8 Guido Trotter
    if self.REQ_BGL:
169 d465bdc8 Guido Trotter
      self.needed_locks = {} # Exclusive LUs don't need locks.
170 d465bdc8 Guido Trotter
    else:
171 d465bdc8 Guido Trotter
      raise NotImplementedError
172 d465bdc8 Guido Trotter
173 fb8dcb62 Guido Trotter
  def DeclareLocks(self, level):
174 fb8dcb62 Guido Trotter
    """Declare LU locking needs for a level
175 fb8dcb62 Guido Trotter

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

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

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

189 fb8dcb62 Guido Trotter
    """
190 fb8dcb62 Guido Trotter
191 a8083063 Iustin Pop
  def CheckPrereq(self):
192 a8083063 Iustin Pop
    """Check prerequisites for this LU.
193 a8083063 Iustin Pop

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

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

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

205 a8083063 Iustin Pop
    """
206 a8083063 Iustin Pop
    raise NotImplementedError
207 a8083063 Iustin Pop
208 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
209 a8083063 Iustin Pop
    """Execute the LU.
210 a8083063 Iustin Pop

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

215 a8083063 Iustin Pop
    """
216 a8083063 Iustin Pop
    raise NotImplementedError
217 a8083063 Iustin Pop
218 a8083063 Iustin Pop
  def BuildHooksEnv(self):
219 a8083063 Iustin Pop
    """Build hooks environment for this LU.
220 a8083063 Iustin Pop

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

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

232 8a3fe350 Guido Trotter
    No nodes should be returned as an empty list (and not None).
233 a8083063 Iustin Pop

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

237 a8083063 Iustin Pop
    """
238 a8083063 Iustin Pop
    raise NotImplementedError
239 a8083063 Iustin Pop
240 1fce5219 Guido Trotter
  def HooksCallBack(self, phase, hook_results, feedback_fn, lu_result):
241 1fce5219 Guido Trotter
    """Notify the LU about the results of its hooks.
242 1fce5219 Guido Trotter

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

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

258 1fce5219 Guido Trotter
    """
259 1fce5219 Guido Trotter
    return lu_result
260 1fce5219 Guido Trotter
261 43905206 Guido Trotter
  def _ExpandAndLockInstance(self):
262 43905206 Guido Trotter
    """Helper function to expand and lock an instance.
263 43905206 Guido Trotter

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

270 43905206 Guido Trotter
    """
271 43905206 Guido Trotter
    if self.needed_locks is None:
272 43905206 Guido Trotter
      self.needed_locks = {}
273 43905206 Guido Trotter
    else:
274 43905206 Guido Trotter
      assert locking.LEVEL_INSTANCE not in self.needed_locks, \
275 43905206 Guido Trotter
        "_ExpandAndLockInstance called with instance-level locks set"
276 43905206 Guido Trotter
    expanded_name = self.cfg.ExpandInstanceName(self.op.instance_name)
277 43905206 Guido Trotter
    if expanded_name is None:
278 43905206 Guido Trotter
      raise errors.OpPrereqError("Instance '%s' not known" %
279 43905206 Guido Trotter
                                  self.op.instance_name)
280 43905206 Guido Trotter
    self.needed_locks[locking.LEVEL_INSTANCE] = expanded_name
281 43905206 Guido Trotter
    self.op.instance_name = expanded_name
282 43905206 Guido Trotter
283 a82ce292 Guido Trotter
  def _LockInstancesNodes(self, primary_only=False):
284 c4a2fee1 Guido Trotter
    """Helper function to declare instances' nodes for locking.
285 c4a2fee1 Guido Trotter

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

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

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

297 e4376078 Iustin Pop
    If should be called in DeclareLocks in a way similar to::
298 c4a2fee1 Guido Trotter

299 e4376078 Iustin Pop
      if level == locking.LEVEL_NODE:
300 e4376078 Iustin Pop
        self._LockInstancesNodes()
301 c4a2fee1 Guido Trotter

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

305 c4a2fee1 Guido Trotter
    """
306 c4a2fee1 Guido Trotter
    assert locking.LEVEL_NODE in self.recalculate_locks, \
307 c4a2fee1 Guido Trotter
      "_LockInstancesNodes helper function called with no nodes to recalculate"
308 c4a2fee1 Guido Trotter
309 c4a2fee1 Guido Trotter
    # TODO: check if we're really been called with the instance locks held
310 c4a2fee1 Guido Trotter
311 c4a2fee1 Guido Trotter
    # For now we'll replace self.needed_locks[locking.LEVEL_NODE], but in the
312 c4a2fee1 Guido Trotter
    # future we might want to have different behaviors depending on the value
313 c4a2fee1 Guido Trotter
    # of self.recalculate_locks[locking.LEVEL_NODE]
314 c4a2fee1 Guido Trotter
    wanted_nodes = []
315 6683bba2 Guido Trotter
    for instance_name in self.acquired_locks[locking.LEVEL_INSTANCE]:
316 c4a2fee1 Guido Trotter
      instance = self.context.cfg.GetInstanceInfo(instance_name)
317 c4a2fee1 Guido Trotter
      wanted_nodes.append(instance.primary_node)
318 a82ce292 Guido Trotter
      if not primary_only:
319 a82ce292 Guido Trotter
        wanted_nodes.extend(instance.secondary_nodes)
320 9513b6ab Guido Trotter
321 9513b6ab Guido Trotter
    if self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_REPLACE:
322 9513b6ab Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = wanted_nodes
323 9513b6ab Guido Trotter
    elif self.recalculate_locks[locking.LEVEL_NODE] == constants.LOCKS_APPEND:
324 9513b6ab Guido Trotter
      self.needed_locks[locking.LEVEL_NODE].extend(wanted_nodes)
325 c4a2fee1 Guido Trotter
326 c4a2fee1 Guido Trotter
    del self.recalculate_locks[locking.LEVEL_NODE]
327 c4a2fee1 Guido Trotter
328 a8083063 Iustin Pop
329 a8083063 Iustin Pop
class NoHooksLU(LogicalUnit):
330 a8083063 Iustin Pop
  """Simple LU which runs no hooks.
331 a8083063 Iustin Pop

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

335 a8083063 Iustin Pop
  """
336 a8083063 Iustin Pop
  HPATH = None
337 a8083063 Iustin Pop
  HTYPE = None
338 a8083063 Iustin Pop
339 a8083063 Iustin Pop
340 dcb93971 Michael Hanselmann
def _GetWantedNodes(lu, nodes):
341 a7ba5e53 Iustin Pop
  """Returns list of checked and expanded node names.
342 83120a01 Michael Hanselmann

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

351 83120a01 Michael Hanselmann
  """
352 3312b702 Iustin Pop
  if not isinstance(nodes, list):
353 3ecf6786 Iustin Pop
    raise errors.OpPrereqError("Invalid argument type 'nodes'")
354 dcb93971 Michael Hanselmann
355 ea47808a Guido Trotter
  if not nodes:
356 ea47808a Guido Trotter
    raise errors.ProgrammerError("_GetWantedNodes should only be called with a"
357 ea47808a Guido Trotter
      " non-empty list of nodes whose name is to be expanded.")
358 dcb93971 Michael Hanselmann
359 ea47808a Guido Trotter
  wanted = []
360 ea47808a Guido Trotter
  for name in nodes:
361 ea47808a Guido Trotter
    node = lu.cfg.ExpandNodeName(name)
362 ea47808a Guido Trotter
    if node is None:
363 ea47808a Guido Trotter
      raise errors.OpPrereqError("No such node name '%s'" % name)
364 ea47808a Guido Trotter
    wanted.append(node)
365 dcb93971 Michael Hanselmann
366 a7ba5e53 Iustin Pop
  return utils.NiceSort(wanted)
367 3312b702 Iustin Pop
368 3312b702 Iustin Pop
369 3312b702 Iustin Pop
def _GetWantedInstances(lu, instances):
370 a7ba5e53 Iustin Pop
  """Returns list of checked and expanded instance names.
371 3312b702 Iustin Pop

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

381 3312b702 Iustin Pop
  """
382 3312b702 Iustin Pop
  if not isinstance(instances, list):
383 3312b702 Iustin Pop
    raise errors.OpPrereqError("Invalid argument type 'instances'")
384 3312b702 Iustin Pop
385 3312b702 Iustin Pop
  if instances:
386 3312b702 Iustin Pop
    wanted = []
387 3312b702 Iustin Pop
388 3312b702 Iustin Pop
    for name in instances:
389 a7ba5e53 Iustin Pop
      instance = lu.cfg.ExpandInstanceName(name)
390 3312b702 Iustin Pop
      if instance is None:
391 3312b702 Iustin Pop
        raise errors.OpPrereqError("No such instance name '%s'" % name)
392 3312b702 Iustin Pop
      wanted.append(instance)
393 3312b702 Iustin Pop
394 3312b702 Iustin Pop
  else:
395 a7f5dc98 Iustin Pop
    wanted = utils.NiceSort(lu.cfg.GetInstanceList())
396 a7f5dc98 Iustin Pop
  return wanted
397 dcb93971 Michael Hanselmann
398 dcb93971 Michael Hanselmann
399 dcb93971 Michael Hanselmann
def _CheckOutputFields(static, dynamic, selected):
400 83120a01 Michael Hanselmann
  """Checks whether all selected fields are valid.
401 83120a01 Michael Hanselmann

402 a2d2e1a7 Iustin Pop
  @type static: L{utils.FieldSet}
403 31bf511f Iustin Pop
  @param static: static fields set
404 a2d2e1a7 Iustin Pop
  @type dynamic: L{utils.FieldSet}
405 31bf511f Iustin Pop
  @param dynamic: dynamic fields set
406 83120a01 Michael Hanselmann

407 83120a01 Michael Hanselmann
  """
408 a2d2e1a7 Iustin Pop
  f = utils.FieldSet()
409 31bf511f Iustin Pop
  f.Extend(static)
410 31bf511f Iustin Pop
  f.Extend(dynamic)
411 dcb93971 Michael Hanselmann
412 31bf511f Iustin Pop
  delta = f.NonMatching(selected)
413 31bf511f Iustin Pop
  if delta:
414 3ecf6786 Iustin Pop
    raise errors.OpPrereqError("Unknown output fields selected: %s"
415 31bf511f Iustin Pop
                               % ",".join(delta))
416 dcb93971 Michael Hanselmann
417 dcb93971 Michael Hanselmann
418 a5961235 Iustin Pop
def _CheckBooleanOpField(op, name):
419 a5961235 Iustin Pop
  """Validates boolean opcode parameters.
420 a5961235 Iustin Pop

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

424 a5961235 Iustin Pop
  """
425 a5961235 Iustin Pop
  val = getattr(op, name, None)
426 a5961235 Iustin Pop
  if not (val is None or isinstance(val, bool)):
427 a5961235 Iustin Pop
    raise errors.OpPrereqError("Invalid boolean parameter '%s' (%s)" %
428 a5961235 Iustin Pop
                               (name, str(val)))
429 a5961235 Iustin Pop
  setattr(op, name, val)
430 a5961235 Iustin Pop
431 a5961235 Iustin Pop
432 a5961235 Iustin Pop
def _CheckNodeOnline(lu, node):
433 a5961235 Iustin Pop
  """Ensure that a given node is online.
434 a5961235 Iustin Pop

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

439 a5961235 Iustin Pop
  """
440 a5961235 Iustin Pop
  if lu.cfg.GetNodeInfo(node).offline:
441 a5961235 Iustin Pop
    raise errors.OpPrereqError("Can't use offline node %s" % node)
442 a5961235 Iustin Pop
443 a5961235 Iustin Pop
444 733a2b6a Iustin Pop
def _CheckNodeNotDrained(lu, node):
445 733a2b6a Iustin Pop
  """Ensure that a given node is not drained.
446 733a2b6a Iustin Pop

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

451 733a2b6a Iustin Pop
  """
452 733a2b6a Iustin Pop
  if lu.cfg.GetNodeInfo(node).drained:
453 733a2b6a Iustin Pop
    raise errors.OpPrereqError("Can't use drained node %s" % node)
454 733a2b6a Iustin Pop
455 733a2b6a Iustin Pop
456 ecb215b5 Michael Hanselmann
def _BuildInstanceHookEnv(name, primary_node, secondary_nodes, os_type, status,
457 2c2690c9 Iustin Pop
                          memory, vcpus, nics, disk_template, disks):
458 e4376078 Iustin Pop
  """Builds instance related env variables for hooks
459 e4376078 Iustin Pop

460 e4376078 Iustin Pop
  This builds the hook environment from individual variables.
461 e4376078 Iustin Pop

462 e4376078 Iustin Pop
  @type name: string
463 e4376078 Iustin Pop
  @param name: the name of the instance
464 e4376078 Iustin Pop
  @type primary_node: string
465 e4376078 Iustin Pop
  @param primary_node: the name of the instance's primary node
466 e4376078 Iustin Pop
  @type secondary_nodes: list
467 e4376078 Iustin Pop
  @param secondary_nodes: list of secondary nodes as strings
468 e4376078 Iustin Pop
  @type os_type: string
469 e4376078 Iustin Pop
  @param os_type: the name of the instance's OS
470 0d68c45d Iustin Pop
  @type status: boolean
471 0d68c45d Iustin Pop
  @param status: the should_run status of the instance
472 e4376078 Iustin Pop
  @type memory: string
473 e4376078 Iustin Pop
  @param memory: the memory size of the instance
474 e4376078 Iustin Pop
  @type vcpus: string
475 e4376078 Iustin Pop
  @param vcpus: the count of VCPUs the instance has
476 e4376078 Iustin Pop
  @type nics: list
477 e4376078 Iustin Pop
  @param nics: list of tuples (ip, bridge, mac) representing
478 e4376078 Iustin Pop
      the NICs the instance  has
479 2c2690c9 Iustin Pop
  @type disk_template: string
480 2c2690c9 Iustin Pop
  @param disk_template: the distk template of the instance
481 2c2690c9 Iustin Pop
  @type disks: list
482 2c2690c9 Iustin Pop
  @param disks: the list of (size, mode) pairs
483 e4376078 Iustin Pop
  @rtype: dict
484 e4376078 Iustin Pop
  @return: the hook environment for this instance
485 ecb215b5 Michael Hanselmann

486 396e1b78 Michael Hanselmann
  """
487 0d68c45d Iustin Pop
  if status:
488 0d68c45d Iustin Pop
    str_status = "up"
489 0d68c45d Iustin Pop
  else:
490 0d68c45d Iustin Pop
    str_status = "down"
491 396e1b78 Michael Hanselmann
  env = {
492 0e137c28 Iustin Pop
    "OP_TARGET": name,
493 396e1b78 Michael Hanselmann
    "INSTANCE_NAME": name,
494 396e1b78 Michael Hanselmann
    "INSTANCE_PRIMARY": primary_node,
495 396e1b78 Michael Hanselmann
    "INSTANCE_SECONDARIES": " ".join(secondary_nodes),
496 ecb215b5 Michael Hanselmann
    "INSTANCE_OS_TYPE": os_type,
497 0d68c45d Iustin Pop
    "INSTANCE_STATUS": str_status,
498 396e1b78 Michael Hanselmann
    "INSTANCE_MEMORY": memory,
499 396e1b78 Michael Hanselmann
    "INSTANCE_VCPUS": vcpus,
500 2c2690c9 Iustin Pop
    "INSTANCE_DISK_TEMPLATE": disk_template,
501 396e1b78 Michael Hanselmann
  }
502 396e1b78 Michael Hanselmann
503 396e1b78 Michael Hanselmann
  if nics:
504 396e1b78 Michael Hanselmann
    nic_count = len(nics)
505 53e4e875 Guido Trotter
    for idx, (ip, bridge, mac) in enumerate(nics):
506 396e1b78 Michael Hanselmann
      if ip is None:
507 396e1b78 Michael Hanselmann
        ip = ""
508 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_IP" % idx] = ip
509 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_BRIDGE" % idx] = bridge
510 2c2690c9 Iustin Pop
      env["INSTANCE_NIC%d_MAC" % idx] = mac
511 396e1b78 Michael Hanselmann
  else:
512 396e1b78 Michael Hanselmann
    nic_count = 0
513 396e1b78 Michael Hanselmann
514 396e1b78 Michael Hanselmann
  env["INSTANCE_NIC_COUNT"] = nic_count
515 396e1b78 Michael Hanselmann
516 2c2690c9 Iustin Pop
  if disks:
517 2c2690c9 Iustin Pop
    disk_count = len(disks)
518 2c2690c9 Iustin Pop
    for idx, (size, mode) in enumerate(disks):
519 2c2690c9 Iustin Pop
      env["INSTANCE_DISK%d_SIZE" % idx] = size
520 2c2690c9 Iustin Pop
      env["INSTANCE_DISK%d_MODE" % idx] = mode
521 2c2690c9 Iustin Pop
  else:
522 2c2690c9 Iustin Pop
    disk_count = 0
523 2c2690c9 Iustin Pop
524 2c2690c9 Iustin Pop
  env["INSTANCE_DISK_COUNT"] = disk_count
525 2c2690c9 Iustin Pop
526 396e1b78 Michael Hanselmann
  return env
527 396e1b78 Michael Hanselmann
528 396e1b78 Michael Hanselmann
529 338e51e8 Iustin Pop
def _BuildInstanceHookEnvByObject(lu, instance, override=None):
530 ecb215b5 Michael Hanselmann
  """Builds instance related env variables for hooks from an object.
531 ecb215b5 Michael Hanselmann

532 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
533 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
534 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
535 e4376078 Iustin Pop
  @param instance: the instance for which we should build the
536 e4376078 Iustin Pop
      environment
537 e4376078 Iustin Pop
  @type override: dict
538 e4376078 Iustin Pop
  @param override: dictionary with key/values that will override
539 e4376078 Iustin Pop
      our values
540 e4376078 Iustin Pop
  @rtype: dict
541 e4376078 Iustin Pop
  @return: the hook environment dictionary
542 e4376078 Iustin Pop

543 ecb215b5 Michael Hanselmann
  """
544 338e51e8 Iustin Pop
  bep = lu.cfg.GetClusterInfo().FillBE(instance)
545 396e1b78 Michael Hanselmann
  args = {
546 396e1b78 Michael Hanselmann
    'name': instance.name,
547 396e1b78 Michael Hanselmann
    'primary_node': instance.primary_node,
548 396e1b78 Michael Hanselmann
    'secondary_nodes': instance.secondary_nodes,
549 ecb215b5 Michael Hanselmann
    'os_type': instance.os,
550 0d68c45d Iustin Pop
    'status': instance.admin_up,
551 338e51e8 Iustin Pop
    'memory': bep[constants.BE_MEMORY],
552 338e51e8 Iustin Pop
    'vcpus': bep[constants.BE_VCPUS],
553 53e4e875 Guido Trotter
    'nics': [(nic.ip, nic.bridge, nic.mac) for nic in instance.nics],
554 2c2690c9 Iustin Pop
    'disk_template': instance.disk_template,
555 2c2690c9 Iustin Pop
    'disks': [(disk.size, disk.mode) for disk in instance.disks],
556 396e1b78 Michael Hanselmann
  }
557 396e1b78 Michael Hanselmann
  if override:
558 396e1b78 Michael Hanselmann
    args.update(override)
559 396e1b78 Michael Hanselmann
  return _BuildInstanceHookEnv(**args)
560 396e1b78 Michael Hanselmann
561 396e1b78 Michael Hanselmann
562 ec0292f1 Iustin Pop
def _AdjustCandidatePool(lu):
563 ec0292f1 Iustin Pop
  """Adjust the candidate pool after node operations.
564 ec0292f1 Iustin Pop

565 ec0292f1 Iustin Pop
  """
566 ec0292f1 Iustin Pop
  mod_list = lu.cfg.MaintainCandidatePool()
567 ec0292f1 Iustin Pop
  if mod_list:
568 ec0292f1 Iustin Pop
    lu.LogInfo("Promoted nodes to master candidate role: %s",
569 ee513a66 Iustin Pop
               ", ".join(node.name for node in mod_list))
570 ec0292f1 Iustin Pop
    for name in mod_list:
571 ec0292f1 Iustin Pop
      lu.context.ReaddNode(name)
572 ec0292f1 Iustin Pop
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
573 ec0292f1 Iustin Pop
  if mc_now > mc_max:
574 ec0292f1 Iustin Pop
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
575 ec0292f1 Iustin Pop
               (mc_now, mc_max))
576 ec0292f1 Iustin Pop
577 ec0292f1 Iustin Pop
578 b9bddb6b Iustin Pop
def _CheckInstanceBridgesExist(lu, instance):
579 bf6929a2 Alexander Schreiber
  """Check that the brigdes needed by an instance exist.
580 bf6929a2 Alexander Schreiber

581 bf6929a2 Alexander Schreiber
  """
582 bf6929a2 Alexander Schreiber
  # check bridges existance
583 bf6929a2 Alexander Schreiber
  brlist = [nic.bridge for nic in instance.nics]
584 781de953 Iustin Pop
  result = lu.rpc.call_bridges_exist(instance.primary_node, brlist)
585 781de953 Iustin Pop
  result.Raise()
586 781de953 Iustin Pop
  if not result.data:
587 781de953 Iustin Pop
    raise errors.OpPrereqError("One or more target bridges %s does not"
588 bf6929a2 Alexander Schreiber
                               " exist on destination node '%s'" %
589 bf6929a2 Alexander Schreiber
                               (brlist, instance.primary_node))
590 bf6929a2 Alexander Schreiber
591 bf6929a2 Alexander Schreiber
592 a8083063 Iustin Pop
class LUDestroyCluster(NoHooksLU):
593 a8083063 Iustin Pop
  """Logical unit for destroying the cluster.
594 a8083063 Iustin Pop

595 a8083063 Iustin Pop
  """
596 a8083063 Iustin Pop
  _OP_REQP = []
597 a8083063 Iustin Pop
598 a8083063 Iustin Pop
  def CheckPrereq(self):
599 a8083063 Iustin Pop
    """Check prerequisites.
600 a8083063 Iustin Pop

601 a8083063 Iustin Pop
    This checks whether the cluster is empty.
602 a8083063 Iustin Pop

603 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
604 a8083063 Iustin Pop

605 a8083063 Iustin Pop
    """
606 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
607 a8083063 Iustin Pop
608 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
609 db915bd1 Michael Hanselmann
    if len(nodelist) != 1 or nodelist[0] != master:
610 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d node(s) in"
611 3ecf6786 Iustin Pop
                                 " this cluster." % (len(nodelist) - 1))
612 db915bd1 Michael Hanselmann
    instancelist = self.cfg.GetInstanceList()
613 db915bd1 Michael Hanselmann
    if instancelist:
614 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d instance(s) in"
615 3ecf6786 Iustin Pop
                                 " this cluster." % len(instancelist))
616 a8083063 Iustin Pop
617 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
618 a8083063 Iustin Pop
    """Destroys the cluster.
619 a8083063 Iustin Pop

620 a8083063 Iustin Pop
    """
621 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
622 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
623 781de953 Iustin Pop
    result.Raise()
624 781de953 Iustin Pop
    if not result.data:
625 c9064964 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
626 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
627 70d9e3d8 Iustin Pop
    utils.CreateBackup(priv_key)
628 70d9e3d8 Iustin Pop
    utils.CreateBackup(pub_key)
629 140aa4a8 Iustin Pop
    return master
630 a8083063 Iustin Pop
631 a8083063 Iustin Pop
632 d8fff41c Guido Trotter
class LUVerifyCluster(LogicalUnit):
633 a8083063 Iustin Pop
  """Verifies the cluster status.
634 a8083063 Iustin Pop

635 a8083063 Iustin Pop
  """
636 d8fff41c Guido Trotter
  HPATH = "cluster-verify"
637 d8fff41c Guido Trotter
  HTYPE = constants.HTYPE_CLUSTER
638 e54c4c5e Guido Trotter
  _OP_REQP = ["skip_checks"]
639 d4b9d97f Guido Trotter
  REQ_BGL = False
640 d4b9d97f Guido Trotter
641 d4b9d97f Guido Trotter
  def ExpandNames(self):
642 d4b9d97f Guido Trotter
    self.needed_locks = {
643 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
644 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
645 d4b9d97f Guido Trotter
    }
646 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
647 a8083063 Iustin Pop
648 25361b9a Iustin Pop
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
649 6d2e83d5 Iustin Pop
                  node_result, feedback_fn, master_files,
650 cc9e1230 Guido Trotter
                  drbd_map, vg_name):
651 a8083063 Iustin Pop
    """Run multiple tests against a node.
652 a8083063 Iustin Pop

653 112f18a5 Iustin Pop
    Test list:
654 e4376078 Iustin Pop

655 a8083063 Iustin Pop
      - compares ganeti version
656 a8083063 Iustin Pop
      - checks vg existance and size > 20G
657 a8083063 Iustin Pop
      - checks config file checksum
658 a8083063 Iustin Pop
      - checks ssh to other nodes
659 a8083063 Iustin Pop

660 112f18a5 Iustin Pop
    @type nodeinfo: L{objects.Node}
661 112f18a5 Iustin Pop
    @param nodeinfo: the node to check
662 e4376078 Iustin Pop
    @param file_list: required list of files
663 e4376078 Iustin Pop
    @param local_cksum: dictionary of local files and their checksums
664 e4376078 Iustin Pop
    @param node_result: the results from the node
665 e4376078 Iustin Pop
    @param feedback_fn: function used to accumulate results
666 112f18a5 Iustin Pop
    @param master_files: list of files that only masters should have
667 6d2e83d5 Iustin Pop
    @param drbd_map: the useddrbd minors for this node, in
668 6d2e83d5 Iustin Pop
        form of minor: (instance, must_exist) which correspond to instances
669 6d2e83d5 Iustin Pop
        and their running status
670 cc9e1230 Guido Trotter
    @param vg_name: Ganeti Volume Group (result of self.cfg.GetVGName())
671 098c0958 Michael Hanselmann

672 a8083063 Iustin Pop
    """
673 112f18a5 Iustin Pop
    node = nodeinfo.name
674 25361b9a Iustin Pop
675 25361b9a Iustin Pop
    # main result, node_result should be a non-empty dict
676 25361b9a Iustin Pop
    if not node_result or not isinstance(node_result, dict):
677 25361b9a Iustin Pop
      feedback_fn("  - ERROR: unable to verify node %s." % (node,))
678 25361b9a Iustin Pop
      return True
679 25361b9a Iustin Pop
680 a8083063 Iustin Pop
    # compares ganeti version
681 a8083063 Iustin Pop
    local_version = constants.PROTOCOL_VERSION
682 25361b9a Iustin Pop
    remote_version = node_result.get('version', None)
683 e9ce0a64 Iustin Pop
    if not (remote_version and isinstance(remote_version, (list, tuple)) and
684 e9ce0a64 Iustin Pop
            len(remote_version) == 2):
685 c840ae6f Guido Trotter
      feedback_fn("  - ERROR: connection to %s failed" % (node))
686 a8083063 Iustin Pop
      return True
687 a8083063 Iustin Pop
688 e9ce0a64 Iustin Pop
    if local_version != remote_version[0]:
689 e9ce0a64 Iustin Pop
      feedback_fn("  - ERROR: incompatible protocol versions: master %s,"
690 e9ce0a64 Iustin Pop
                  " node %s %s" % (local_version, node, remote_version[0]))
691 a8083063 Iustin Pop
      return True
692 a8083063 Iustin Pop
693 e9ce0a64 Iustin Pop
    # node seems compatible, we can actually try to look into its results
694 a8083063 Iustin Pop
695 a8083063 Iustin Pop
    bad = False
696 e9ce0a64 Iustin Pop
697 e9ce0a64 Iustin Pop
    # full package version
698 e9ce0a64 Iustin Pop
    if constants.RELEASE_VERSION != remote_version[1]:
699 e9ce0a64 Iustin Pop
      feedback_fn("  - WARNING: software version mismatch: master %s,"
700 e9ce0a64 Iustin Pop
                  " node %s %s" %
701 e9ce0a64 Iustin Pop
                  (constants.RELEASE_VERSION, node, remote_version[1]))
702 e9ce0a64 Iustin Pop
703 e9ce0a64 Iustin Pop
    # checks vg existence and size > 20G
704 cc9e1230 Guido Trotter
    if vg_name is not None:
705 cc9e1230 Guido Trotter
      vglist = node_result.get(constants.NV_VGLIST, None)
706 cc9e1230 Guido Trotter
      if not vglist:
707 cc9e1230 Guido Trotter
        feedback_fn("  - ERROR: unable to check volume groups on node %s." %
708 cc9e1230 Guido Trotter
                        (node,))
709 a8083063 Iustin Pop
        bad = True
710 cc9e1230 Guido Trotter
      else:
711 cc9e1230 Guido Trotter
        vgstatus = utils.CheckVolumeGroupSize(vglist, vg_name,
712 cc9e1230 Guido Trotter
                                              constants.MIN_VG_SIZE)
713 cc9e1230 Guido Trotter
        if vgstatus:
714 cc9e1230 Guido Trotter
          feedback_fn("  - ERROR: %s on node %s" % (vgstatus, node))
715 cc9e1230 Guido Trotter
          bad = True
716 a8083063 Iustin Pop
717 a8083063 Iustin Pop
    # checks config file checksum
718 a8083063 Iustin Pop
719 25361b9a Iustin Pop
    remote_cksum = node_result.get(constants.NV_FILELIST, None)
720 25361b9a Iustin Pop
    if not isinstance(remote_cksum, dict):
721 a8083063 Iustin Pop
      bad = True
722 a8083063 Iustin Pop
      feedback_fn("  - ERROR: node hasn't returned file checksum data")
723 a8083063 Iustin Pop
    else:
724 a8083063 Iustin Pop
      for file_name in file_list:
725 112f18a5 Iustin Pop
        node_is_mc = nodeinfo.master_candidate
726 112f18a5 Iustin Pop
        must_have_file = file_name not in master_files
727 a8083063 Iustin Pop
        if file_name not in remote_cksum:
728 112f18a5 Iustin Pop
          if node_is_mc or must_have_file:
729 112f18a5 Iustin Pop
            bad = True
730 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: file '%s' missing" % file_name)
731 a8083063 Iustin Pop
        elif remote_cksum[file_name] != local_cksum[file_name]:
732 112f18a5 Iustin Pop
          if node_is_mc or must_have_file:
733 112f18a5 Iustin Pop
            bad = True
734 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: file '%s' has wrong checksum" % file_name)
735 112f18a5 Iustin Pop
          else:
736 112f18a5 Iustin Pop
            # not candidate and this is not a must-have file
737 112f18a5 Iustin Pop
            bad = True
738 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: non master-candidate has old/wrong file"
739 112f18a5 Iustin Pop
                        " '%s'" % file_name)
740 112f18a5 Iustin Pop
        else:
741 112f18a5 Iustin Pop
          # all good, except non-master/non-must have combination
742 112f18a5 Iustin Pop
          if not node_is_mc and not must_have_file:
743 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: file '%s' should not exist on non master"
744 112f18a5 Iustin Pop
                        " candidates" % file_name)
745 a8083063 Iustin Pop
746 25361b9a Iustin Pop
    # checks ssh to any
747 25361b9a Iustin Pop
748 25361b9a Iustin Pop
    if constants.NV_NODELIST not in node_result:
749 a8083063 Iustin Pop
      bad = True
750 9d4bfc96 Iustin Pop
      feedback_fn("  - ERROR: node hasn't returned node ssh connectivity data")
751 a8083063 Iustin Pop
    else:
752 25361b9a Iustin Pop
      if node_result[constants.NV_NODELIST]:
753 a8083063 Iustin Pop
        bad = True
754 25361b9a Iustin Pop
        for node in node_result[constants.NV_NODELIST]:
755 9d4bfc96 Iustin Pop
          feedback_fn("  - ERROR: ssh communication with node '%s': %s" %
756 25361b9a Iustin Pop
                          (node, node_result[constants.NV_NODELIST][node]))
757 25361b9a Iustin Pop
758 25361b9a Iustin Pop
    if constants.NV_NODENETTEST not in node_result:
759 9d4bfc96 Iustin Pop
      bad = True
760 9d4bfc96 Iustin Pop
      feedback_fn("  - ERROR: node hasn't returned node tcp connectivity data")
761 9d4bfc96 Iustin Pop
    else:
762 25361b9a Iustin Pop
      if node_result[constants.NV_NODENETTEST]:
763 9d4bfc96 Iustin Pop
        bad = True
764 25361b9a Iustin Pop
        nlist = utils.NiceSort(node_result[constants.NV_NODENETTEST].keys())
765 9d4bfc96 Iustin Pop
        for node in nlist:
766 9d4bfc96 Iustin Pop
          feedback_fn("  - ERROR: tcp communication with node '%s': %s" %
767 25361b9a Iustin Pop
                          (node, node_result[constants.NV_NODENETTEST][node]))
768 9d4bfc96 Iustin Pop
769 25361b9a Iustin Pop
    hyp_result = node_result.get(constants.NV_HYPERVISOR, None)
770 e69d05fd Iustin Pop
    if isinstance(hyp_result, dict):
771 e69d05fd Iustin Pop
      for hv_name, hv_result in hyp_result.iteritems():
772 e69d05fd Iustin Pop
        if hv_result is not None:
773 e69d05fd Iustin Pop
          feedback_fn("  - ERROR: hypervisor %s verify failure: '%s'" %
774 e69d05fd Iustin Pop
                      (hv_name, hv_result))
775 6d2e83d5 Iustin Pop
776 6d2e83d5 Iustin Pop
    # check used drbd list
777 cc9e1230 Guido Trotter
    if vg_name is not None:
778 cc9e1230 Guido Trotter
      used_minors = node_result.get(constants.NV_DRBDLIST, [])
779 cc9e1230 Guido Trotter
      if not isinstance(used_minors, (tuple, list)):
780 cc9e1230 Guido Trotter
        feedback_fn("  - ERROR: cannot parse drbd status file: %s" %
781 cc9e1230 Guido Trotter
                    str(used_minors))
782 cc9e1230 Guido Trotter
      else:
783 cc9e1230 Guido Trotter
        for minor, (iname, must_exist) in drbd_map.items():
784 cc9e1230 Guido Trotter
          if minor not in used_minors and must_exist:
785 35e994e9 Iustin Pop
            feedback_fn("  - ERROR: drbd minor %d of instance %s is"
786 35e994e9 Iustin Pop
                        " not active" % (minor, iname))
787 cc9e1230 Guido Trotter
            bad = True
788 cc9e1230 Guido Trotter
        for minor in used_minors:
789 cc9e1230 Guido Trotter
          if minor not in drbd_map:
790 35e994e9 Iustin Pop
            feedback_fn("  - ERROR: unallocated drbd minor %d is in use" %
791 35e994e9 Iustin Pop
                        minor)
792 cc9e1230 Guido Trotter
            bad = True
793 6d2e83d5 Iustin Pop
794 a8083063 Iustin Pop
    return bad
795 a8083063 Iustin Pop
796 c5705f58 Guido Trotter
  def _VerifyInstance(self, instance, instanceconfig, node_vol_is,
797 0a66c968 Iustin Pop
                      node_instance, feedback_fn, n_offline):
798 a8083063 Iustin Pop
    """Verify an instance.
799 a8083063 Iustin Pop

800 a8083063 Iustin Pop
    This function checks to see if the required block devices are
801 a8083063 Iustin Pop
    available on the instance's node.
802 a8083063 Iustin Pop

803 a8083063 Iustin Pop
    """
804 a8083063 Iustin Pop
    bad = False
805 a8083063 Iustin Pop
806 a8083063 Iustin Pop
    node_current = instanceconfig.primary_node
807 a8083063 Iustin Pop
808 a8083063 Iustin Pop
    node_vol_should = {}
809 a8083063 Iustin Pop
    instanceconfig.MapLVsByNode(node_vol_should)
810 a8083063 Iustin Pop
811 a8083063 Iustin Pop
    for node in node_vol_should:
812 0a66c968 Iustin Pop
      if node in n_offline:
813 0a66c968 Iustin Pop
        # ignore missing volumes on offline nodes
814 0a66c968 Iustin Pop
        continue
815 a8083063 Iustin Pop
      for volume in node_vol_should[node]:
816 a8083063 Iustin Pop
        if node not in node_vol_is or volume not in node_vol_is[node]:
817 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s missing on node %s" %
818 a8083063 Iustin Pop
                          (volume, node))
819 a8083063 Iustin Pop
          bad = True
820 a8083063 Iustin Pop
821 0d68c45d Iustin Pop
    if instanceconfig.admin_up:
822 0a66c968 Iustin Pop
      if ((node_current not in node_instance or
823 0a66c968 Iustin Pop
          not instance in node_instance[node_current]) and
824 0a66c968 Iustin Pop
          node_current not in n_offline):
825 a8083063 Iustin Pop
        feedback_fn("  - ERROR: instance %s not running on node %s" %
826 a8083063 Iustin Pop
                        (instance, node_current))
827 a8083063 Iustin Pop
        bad = True
828 a8083063 Iustin Pop
829 a8083063 Iustin Pop
    for node in node_instance:
830 a8083063 Iustin Pop
      if (not node == node_current):
831 a8083063 Iustin Pop
        if instance in node_instance[node]:
832 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s should not run on node %s" %
833 a8083063 Iustin Pop
                          (instance, node))
834 a8083063 Iustin Pop
          bad = True
835 a8083063 Iustin Pop
836 6a438c98 Michael Hanselmann
    return bad
837 a8083063 Iustin Pop
838 a8083063 Iustin Pop
  def _VerifyOrphanVolumes(self, node_vol_should, node_vol_is, feedback_fn):
839 a8083063 Iustin Pop
    """Verify if there are any unknown volumes in the cluster.
840 a8083063 Iustin Pop

841 a8083063 Iustin Pop
    The .os, .swap and backup volumes are ignored. All other volumes are
842 a8083063 Iustin Pop
    reported as unknown.
843 a8083063 Iustin Pop

844 a8083063 Iustin Pop
    """
845 a8083063 Iustin Pop
    bad = False
846 a8083063 Iustin Pop
847 a8083063 Iustin Pop
    for node in node_vol_is:
848 a8083063 Iustin Pop
      for volume in node_vol_is[node]:
849 a8083063 Iustin Pop
        if node not in node_vol_should or volume not in node_vol_should[node]:
850 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
851 a8083063 Iustin Pop
                      (volume, node))
852 a8083063 Iustin Pop
          bad = True
853 a8083063 Iustin Pop
    return bad
854 a8083063 Iustin Pop
855 a8083063 Iustin Pop
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
856 a8083063 Iustin Pop
    """Verify the list of running instances.
857 a8083063 Iustin Pop

858 a8083063 Iustin Pop
    This checks what instances are running but unknown to the cluster.
859 a8083063 Iustin Pop

860 a8083063 Iustin Pop
    """
861 a8083063 Iustin Pop
    bad = False
862 a8083063 Iustin Pop
    for node in node_instance:
863 a8083063 Iustin Pop
      for runninginstance in node_instance[node]:
864 a8083063 Iustin Pop
        if runninginstance not in instancelist:
865 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
866 a8083063 Iustin Pop
                          (runninginstance, node))
867 a8083063 Iustin Pop
          bad = True
868 a8083063 Iustin Pop
    return bad
869 a8083063 Iustin Pop
870 2b3b6ddd Guido Trotter
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
871 2b3b6ddd Guido Trotter
    """Verify N+1 Memory Resilience.
872 2b3b6ddd Guido Trotter

873 2b3b6ddd Guido Trotter
    Check that if one single node dies we can still start all the instances it
874 2b3b6ddd Guido Trotter
    was primary for.
875 2b3b6ddd Guido Trotter

876 2b3b6ddd Guido Trotter
    """
877 2b3b6ddd Guido Trotter
    bad = False
878 2b3b6ddd Guido Trotter
879 2b3b6ddd Guido Trotter
    for node, nodeinfo in node_info.iteritems():
880 2b3b6ddd Guido Trotter
      # This code checks that every node which is now listed as secondary has
881 2b3b6ddd Guido Trotter
      # enough memory to host all instances it is supposed to should a single
882 2b3b6ddd Guido Trotter
      # other node in the cluster fail.
883 2b3b6ddd Guido Trotter
      # FIXME: not ready for failover to an arbitrary node
884 2b3b6ddd Guido Trotter
      # FIXME: does not support file-backed instances
885 2b3b6ddd Guido Trotter
      # WARNING: we currently take into account down instances as well as up
886 2b3b6ddd Guido Trotter
      # ones, considering that even if they're down someone might want to start
887 2b3b6ddd Guido Trotter
      # them even in the event of a node failure.
888 2b3b6ddd Guido Trotter
      for prinode, instances in nodeinfo['sinst-by-pnode'].iteritems():
889 2b3b6ddd Guido Trotter
        needed_mem = 0
890 2b3b6ddd Guido Trotter
        for instance in instances:
891 338e51e8 Iustin Pop
          bep = self.cfg.GetClusterInfo().FillBE(instance_cfg[instance])
892 c0f2b229 Iustin Pop
          if bep[constants.BE_AUTO_BALANCE]:
893 3924700f Iustin Pop
            needed_mem += bep[constants.BE_MEMORY]
894 2b3b6ddd Guido Trotter
        if nodeinfo['mfree'] < needed_mem:
895 2b3b6ddd Guido Trotter
          feedback_fn("  - ERROR: not enough memory on node %s to accomodate"
896 2b3b6ddd Guido Trotter
                      " failovers should node %s fail" % (node, prinode))
897 2b3b6ddd Guido Trotter
          bad = True
898 2b3b6ddd Guido Trotter
    return bad
899 2b3b6ddd Guido Trotter
900 a8083063 Iustin Pop
  def CheckPrereq(self):
901 a8083063 Iustin Pop
    """Check prerequisites.
902 a8083063 Iustin Pop

903 e54c4c5e Guido Trotter
    Transform the list of checks we're going to skip into a set and check that
904 e54c4c5e Guido Trotter
    all its members are valid.
905 a8083063 Iustin Pop

906 a8083063 Iustin Pop
    """
907 e54c4c5e Guido Trotter
    self.skip_set = frozenset(self.op.skip_checks)
908 e54c4c5e Guido Trotter
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
909 e54c4c5e Guido Trotter
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
910 a8083063 Iustin Pop
911 d8fff41c Guido Trotter
  def BuildHooksEnv(self):
912 d8fff41c Guido Trotter
    """Build hooks env.
913 d8fff41c Guido Trotter

914 d8fff41c Guido Trotter
    Cluster-Verify hooks just rone in the post phase and their failure makes
915 d8fff41c Guido Trotter
    the output be logged in the verify output and the verification to fail.
916 d8fff41c Guido Trotter

917 d8fff41c Guido Trotter
    """
918 d8fff41c Guido Trotter
    all_nodes = self.cfg.GetNodeList()
919 35e994e9 Iustin Pop
    env = {
920 35e994e9 Iustin Pop
      "CLUSTER_TAGS": " ".join(self.cfg.GetClusterInfo().GetTags())
921 35e994e9 Iustin Pop
      }
922 35e994e9 Iustin Pop
    for node in self.cfg.GetAllNodesInfo().values():
923 35e994e9 Iustin Pop
      env["NODE_TAGS_%s" % node.name] = " ".join(node.GetTags())
924 35e994e9 Iustin Pop
925 d8fff41c Guido Trotter
    return env, [], all_nodes
926 d8fff41c Guido Trotter
927 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
928 a8083063 Iustin Pop
    """Verify integrity of cluster, performing various test on nodes.
929 a8083063 Iustin Pop

930 a8083063 Iustin Pop
    """
931 a8083063 Iustin Pop
    bad = False
932 a8083063 Iustin Pop
    feedback_fn("* Verifying global settings")
933 8522ceeb Iustin Pop
    for msg in self.cfg.VerifyConfig():
934 8522ceeb Iustin Pop
      feedback_fn("  - ERROR: %s" % msg)
935 a8083063 Iustin Pop
936 a8083063 Iustin Pop
    vg_name = self.cfg.GetVGName()
937 e69d05fd Iustin Pop
    hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
938 a8083063 Iustin Pop
    nodelist = utils.NiceSort(self.cfg.GetNodeList())
939 9d4bfc96 Iustin Pop
    nodeinfo = [self.cfg.GetNodeInfo(nname) for nname in nodelist]
940 a8083063 Iustin Pop
    instancelist = utils.NiceSort(self.cfg.GetInstanceList())
941 6d2e83d5 Iustin Pop
    instanceinfo = dict((iname, self.cfg.GetInstanceInfo(iname))
942 6d2e83d5 Iustin Pop
                        for iname in instancelist)
943 93e4c50b Guido Trotter
    i_non_redundant = [] # Non redundant instances
944 3924700f Iustin Pop
    i_non_a_balanced = [] # Non auto-balanced instances
945 0a66c968 Iustin Pop
    n_offline = [] # List of offline nodes
946 22f0f71d Iustin Pop
    n_drained = [] # List of nodes being drained
947 a8083063 Iustin Pop
    node_volume = {}
948 a8083063 Iustin Pop
    node_instance = {}
949 9c9c7d30 Guido Trotter
    node_info = {}
950 26b6af5e Guido Trotter
    instance_cfg = {}
951 a8083063 Iustin Pop
952 a8083063 Iustin Pop
    # FIXME: verify OS list
953 a8083063 Iustin Pop
    # do local checksums
954 112f18a5 Iustin Pop
    master_files = [constants.CLUSTER_CONF_FILE]
955 112f18a5 Iustin Pop
956 112f18a5 Iustin Pop
    file_names = ssconf.SimpleStore().GetFileList()
957 cb91d46e Iustin Pop
    file_names.append(constants.SSL_CERT_FILE)
958 699777f2 Michael Hanselmann
    file_names.append(constants.RAPI_CERT_FILE)
959 112f18a5 Iustin Pop
    file_names.extend(master_files)
960 112f18a5 Iustin Pop
961 a8083063 Iustin Pop
    local_checksums = utils.FingerprintFiles(file_names)
962 a8083063 Iustin Pop
963 a8083063 Iustin Pop
    feedback_fn("* Gathering data (%d nodes)" % len(nodelist))
964 a8083063 Iustin Pop
    node_verify_param = {
965 25361b9a Iustin Pop
      constants.NV_FILELIST: file_names,
966 82e37788 Iustin Pop
      constants.NV_NODELIST: [node.name for node in nodeinfo
967 82e37788 Iustin Pop
                              if not node.offline],
968 25361b9a Iustin Pop
      constants.NV_HYPERVISOR: hypervisors,
969 25361b9a Iustin Pop
      constants.NV_NODENETTEST: [(node.name, node.primary_ip,
970 82e37788 Iustin Pop
                                  node.secondary_ip) for node in nodeinfo
971 82e37788 Iustin Pop
                                 if not node.offline],
972 25361b9a Iustin Pop
      constants.NV_INSTANCELIST: hypervisors,
973 25361b9a Iustin Pop
      constants.NV_VERSION: None,
974 25361b9a Iustin Pop
      constants.NV_HVINFO: self.cfg.GetHypervisorType(),
975 a8083063 Iustin Pop
      }
976 cc9e1230 Guido Trotter
    if vg_name is not None:
977 cc9e1230 Guido Trotter
      node_verify_param[constants.NV_VGLIST] = None
978 cc9e1230 Guido Trotter
      node_verify_param[constants.NV_LVLIST] = vg_name
979 cc9e1230 Guido Trotter
      node_verify_param[constants.NV_DRBDLIST] = None
980 72737a7f Iustin Pop
    all_nvinfo = self.rpc.call_node_verify(nodelist, node_verify_param,
981 72737a7f Iustin Pop
                                           self.cfg.GetClusterName())
982 a8083063 Iustin Pop
983 3924700f Iustin Pop
    cluster = self.cfg.GetClusterInfo()
984 112f18a5 Iustin Pop
    master_node = self.cfg.GetMasterNode()
985 6d2e83d5 Iustin Pop
    all_drbd_map = self.cfg.ComputeDRBDMap()
986 6d2e83d5 Iustin Pop
987 112f18a5 Iustin Pop
    for node_i in nodeinfo:
988 112f18a5 Iustin Pop
      node = node_i.name
989 25361b9a Iustin Pop
      nresult = all_nvinfo[node].data
990 25361b9a Iustin Pop
991 0a66c968 Iustin Pop
      if node_i.offline:
992 0a66c968 Iustin Pop
        feedback_fn("* Skipping offline node %s" % (node,))
993 0a66c968 Iustin Pop
        n_offline.append(node)
994 0a66c968 Iustin Pop
        continue
995 0a66c968 Iustin Pop
996 112f18a5 Iustin Pop
      if node == master_node:
997 25361b9a Iustin Pop
        ntype = "master"
998 112f18a5 Iustin Pop
      elif node_i.master_candidate:
999 25361b9a Iustin Pop
        ntype = "master candidate"
1000 22f0f71d Iustin Pop
      elif node_i.drained:
1001 22f0f71d Iustin Pop
        ntype = "drained"
1002 22f0f71d Iustin Pop
        n_drained.append(node)
1003 112f18a5 Iustin Pop
      else:
1004 25361b9a Iustin Pop
        ntype = "regular"
1005 112f18a5 Iustin Pop
      feedback_fn("* Verifying node %s (%s)" % (node, ntype))
1006 25361b9a Iustin Pop
1007 25361b9a Iustin Pop
      if all_nvinfo[node].failed or not isinstance(nresult, dict):
1008 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed" % (node,))
1009 25361b9a Iustin Pop
        bad = True
1010 25361b9a Iustin Pop
        continue
1011 25361b9a Iustin Pop
1012 6d2e83d5 Iustin Pop
      node_drbd = {}
1013 6d2e83d5 Iustin Pop
      for minor, instance in all_drbd_map[node].items():
1014 c614e5fb Iustin Pop
        if instance not in instanceinfo:
1015 c614e5fb Iustin Pop
          feedback_fn("  - ERROR: ghost instance '%s' in temporary DRBD map" %
1016 c614e5fb Iustin Pop
                      instance)
1017 c614e5fb Iustin Pop
          # ghost instance should not be running, but otherwise we
1018 c614e5fb Iustin Pop
          # don't give double warnings (both ghost instance and
1019 c614e5fb Iustin Pop
          # unallocated minor in use)
1020 c614e5fb Iustin Pop
          node_drbd[minor] = (instance, False)
1021 c614e5fb Iustin Pop
        else:
1022 c614e5fb Iustin Pop
          instance = instanceinfo[instance]
1023 c614e5fb Iustin Pop
          node_drbd[minor] = (instance.name, instance.admin_up)
1024 112f18a5 Iustin Pop
      result = self._VerifyNode(node_i, file_names, local_checksums,
1025 6d2e83d5 Iustin Pop
                                nresult, feedback_fn, master_files,
1026 cc9e1230 Guido Trotter
                                node_drbd, vg_name)
1027 a8083063 Iustin Pop
      bad = bad or result
1028 a8083063 Iustin Pop
1029 25361b9a Iustin Pop
      lvdata = nresult.get(constants.NV_LVLIST, "Missing LV data")
1030 cc9e1230 Guido Trotter
      if vg_name is None:
1031 cc9e1230 Guido Trotter
        node_volume[node] = {}
1032 cc9e1230 Guido Trotter
      elif isinstance(lvdata, basestring):
1033 b63ed789 Iustin Pop
        feedback_fn("  - ERROR: LVM problem on node %s: %s" %
1034 26f15862 Iustin Pop
                    (node, utils.SafeEncode(lvdata)))
1035 b63ed789 Iustin Pop
        bad = True
1036 b63ed789 Iustin Pop
        node_volume[node] = {}
1037 25361b9a Iustin Pop
      elif not isinstance(lvdata, dict):
1038 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed (lvlist)" % (node,))
1039 a8083063 Iustin Pop
        bad = True
1040 a8083063 Iustin Pop
        continue
1041 b63ed789 Iustin Pop
      else:
1042 25361b9a Iustin Pop
        node_volume[node] = lvdata
1043 a8083063 Iustin Pop
1044 a8083063 Iustin Pop
      # node_instance
1045 25361b9a Iustin Pop
      idata = nresult.get(constants.NV_INSTANCELIST, None)
1046 25361b9a Iustin Pop
      if not isinstance(idata, list):
1047 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed (instancelist)" %
1048 25361b9a Iustin Pop
                    (node,))
1049 a8083063 Iustin Pop
        bad = True
1050 a8083063 Iustin Pop
        continue
1051 a8083063 Iustin Pop
1052 25361b9a Iustin Pop
      node_instance[node] = idata
1053 a8083063 Iustin Pop
1054 9c9c7d30 Guido Trotter
      # node_info
1055 25361b9a Iustin Pop
      nodeinfo = nresult.get(constants.NV_HVINFO, None)
1056 9c9c7d30 Guido Trotter
      if not isinstance(nodeinfo, dict):
1057 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed (hvinfo)" % (node,))
1058 9c9c7d30 Guido Trotter
        bad = True
1059 9c9c7d30 Guido Trotter
        continue
1060 9c9c7d30 Guido Trotter
1061 9c9c7d30 Guido Trotter
      try:
1062 9c9c7d30 Guido Trotter
        node_info[node] = {
1063 9c9c7d30 Guido Trotter
          "mfree": int(nodeinfo['memory_free']),
1064 93e4c50b Guido Trotter
          "pinst": [],
1065 93e4c50b Guido Trotter
          "sinst": [],
1066 36e7da50 Guido Trotter
          # dictionary holding all instances this node is secondary for,
1067 36e7da50 Guido Trotter
          # grouped by their primary node. Each key is a cluster node, and each
1068 36e7da50 Guido Trotter
          # value is a list of instances which have the key as primary and the
1069 36e7da50 Guido Trotter
          # current node as secondary.  this is handy to calculate N+1 memory
1070 36e7da50 Guido Trotter
          # availability if you can only failover from a primary to its
1071 36e7da50 Guido Trotter
          # secondary.
1072 36e7da50 Guido Trotter
          "sinst-by-pnode": {},
1073 9c9c7d30 Guido Trotter
        }
1074 cc9e1230 Guido Trotter
        # FIXME: devise a free space model for file based instances as well
1075 cc9e1230 Guido Trotter
        if vg_name is not None:
1076 9a198532 Iustin Pop
          if (constants.NV_VGLIST not in nresult or
1077 9a198532 Iustin Pop
              vg_name not in nresult[constants.NV_VGLIST]):
1078 9a198532 Iustin Pop
            feedback_fn("  - ERROR: node %s didn't return data for the"
1079 9a198532 Iustin Pop
                        " volume group '%s' - it is either missing or broken" %
1080 9a198532 Iustin Pop
                        (node, vg_name))
1081 9a198532 Iustin Pop
            bad = True
1082 9a198532 Iustin Pop
            continue
1083 cc9e1230 Guido Trotter
          node_info[node]["dfree"] = int(nresult[constants.NV_VGLIST][vg_name])
1084 9a198532 Iustin Pop
      except (ValueError, KeyError):
1085 9a198532 Iustin Pop
        feedback_fn("  - ERROR: invalid nodeinfo value returned"
1086 9a198532 Iustin Pop
                    " from node %s" % (node,))
1087 9c9c7d30 Guido Trotter
        bad = True
1088 9c9c7d30 Guido Trotter
        continue
1089 9c9c7d30 Guido Trotter
1090 a8083063 Iustin Pop
    node_vol_should = {}
1091 a8083063 Iustin Pop
1092 a8083063 Iustin Pop
    for instance in instancelist:
1093 a8083063 Iustin Pop
      feedback_fn("* Verifying instance %s" % instance)
1094 6d2e83d5 Iustin Pop
      inst_config = instanceinfo[instance]
1095 c5705f58 Guido Trotter
      result =  self._VerifyInstance(instance, inst_config, node_volume,
1096 0a66c968 Iustin Pop
                                     node_instance, feedback_fn, n_offline)
1097 c5705f58 Guido Trotter
      bad = bad or result
1098 832261fd Iustin Pop
      inst_nodes_offline = []
1099 a8083063 Iustin Pop
1100 a8083063 Iustin Pop
      inst_config.MapLVsByNode(node_vol_should)
1101 a8083063 Iustin Pop
1102 26b6af5e Guido Trotter
      instance_cfg[instance] = inst_config
1103 26b6af5e Guido Trotter
1104 93e4c50b Guido Trotter
      pnode = inst_config.primary_node
1105 93e4c50b Guido Trotter
      if pnode in node_info:
1106 93e4c50b Guido Trotter
        node_info[pnode]['pinst'].append(instance)
1107 0a66c968 Iustin Pop
      elif pnode not in n_offline:
1108 93e4c50b Guido Trotter
        feedback_fn("  - ERROR: instance %s, connection to primary node"
1109 93e4c50b Guido Trotter
                    " %s failed" % (instance, pnode))
1110 93e4c50b Guido Trotter
        bad = True
1111 93e4c50b Guido Trotter
1112 832261fd Iustin Pop
      if pnode in n_offline:
1113 832261fd Iustin Pop
        inst_nodes_offline.append(pnode)
1114 832261fd Iustin Pop
1115 93e4c50b Guido Trotter
      # If the instance is non-redundant we cannot survive losing its primary
1116 93e4c50b Guido Trotter
      # node, so we are not N+1 compliant. On the other hand we have no disk
1117 93e4c50b Guido Trotter
      # templates with more than one secondary so that situation is not well
1118 93e4c50b Guido Trotter
      # supported either.
1119 93e4c50b Guido Trotter
      # FIXME: does not support file-backed instances
1120 93e4c50b Guido Trotter
      if len(inst_config.secondary_nodes) == 0:
1121 93e4c50b Guido Trotter
        i_non_redundant.append(instance)
1122 93e4c50b Guido Trotter
      elif len(inst_config.secondary_nodes) > 1:
1123 93e4c50b Guido Trotter
        feedback_fn("  - WARNING: multiple secondaries for instance %s"
1124 93e4c50b Guido Trotter
                    % instance)
1125 93e4c50b Guido Trotter
1126 c0f2b229 Iustin Pop
      if not cluster.FillBE(inst_config)[constants.BE_AUTO_BALANCE]:
1127 3924700f Iustin Pop
        i_non_a_balanced.append(instance)
1128 3924700f Iustin Pop
1129 93e4c50b Guido Trotter
      for snode in inst_config.secondary_nodes:
1130 93e4c50b Guido Trotter
        if snode in node_info:
1131 93e4c50b Guido Trotter
          node_info[snode]['sinst'].append(instance)
1132 36e7da50 Guido Trotter
          if pnode not in node_info[snode]['sinst-by-pnode']:
1133 36e7da50 Guido Trotter
            node_info[snode]['sinst-by-pnode'][pnode] = []
1134 36e7da50 Guido Trotter
          node_info[snode]['sinst-by-pnode'][pnode].append(instance)
1135 0a66c968 Iustin Pop
        elif snode not in n_offline:
1136 93e4c50b Guido Trotter
          feedback_fn("  - ERROR: instance %s, connection to secondary node"
1137 93e4c50b Guido Trotter
                      " %s failed" % (instance, snode))
1138 832261fd Iustin Pop
          bad = True
1139 832261fd Iustin Pop
        if snode in n_offline:
1140 832261fd Iustin Pop
          inst_nodes_offline.append(snode)
1141 832261fd Iustin Pop
1142 832261fd Iustin Pop
      if inst_nodes_offline:
1143 832261fd Iustin Pop
        # warn that the instance lives on offline nodes, and set bad=True
1144 832261fd Iustin Pop
        feedback_fn("  - ERROR: instance lives on offline node(s) %s" %
1145 832261fd Iustin Pop
                    ", ".join(inst_nodes_offline))
1146 832261fd Iustin Pop
        bad = True
1147 93e4c50b Guido Trotter
1148 a8083063 Iustin Pop
    feedback_fn("* Verifying orphan volumes")
1149 a8083063 Iustin Pop
    result = self._VerifyOrphanVolumes(node_vol_should, node_volume,
1150 a8083063 Iustin Pop
                                       feedback_fn)
1151 a8083063 Iustin Pop
    bad = bad or result
1152 a8083063 Iustin Pop
1153 a8083063 Iustin Pop
    feedback_fn("* Verifying remaining instances")
1154 a8083063 Iustin Pop
    result = self._VerifyOrphanInstances(instancelist, node_instance,
1155 a8083063 Iustin Pop
                                         feedback_fn)
1156 a8083063 Iustin Pop
    bad = bad or result
1157 a8083063 Iustin Pop
1158 e54c4c5e Guido Trotter
    if constants.VERIFY_NPLUSONE_MEM not in self.skip_set:
1159 e54c4c5e Guido Trotter
      feedback_fn("* Verifying N+1 Memory redundancy")
1160 e54c4c5e Guido Trotter
      result = self._VerifyNPlusOneMemory(node_info, instance_cfg, feedback_fn)
1161 e54c4c5e Guido Trotter
      bad = bad or result
1162 2b3b6ddd Guido Trotter
1163 2b3b6ddd Guido Trotter
    feedback_fn("* Other Notes")
1164 2b3b6ddd Guido Trotter
    if i_non_redundant:
1165 2b3b6ddd Guido Trotter
      feedback_fn("  - NOTICE: %d non-redundant instance(s) found."
1166 2b3b6ddd Guido Trotter
                  % len(i_non_redundant))
1167 2b3b6ddd Guido Trotter
1168 3924700f Iustin Pop
    if i_non_a_balanced:
1169 3924700f Iustin Pop
      feedback_fn("  - NOTICE: %d non-auto-balanced instance(s) found."
1170 3924700f Iustin Pop
                  % len(i_non_a_balanced))
1171 3924700f Iustin Pop
1172 0a66c968 Iustin Pop
    if n_offline:
1173 0a66c968 Iustin Pop
      feedback_fn("  - NOTICE: %d offline node(s) found." % len(n_offline))
1174 0a66c968 Iustin Pop
1175 22f0f71d Iustin Pop
    if n_drained:
1176 22f0f71d Iustin Pop
      feedback_fn("  - NOTICE: %d drained node(s) found." % len(n_drained))
1177 22f0f71d Iustin Pop
1178 34290825 Michael Hanselmann
    return not bad
1179 a8083063 Iustin Pop
1180 d8fff41c Guido Trotter
  def HooksCallBack(self, phase, hooks_results, feedback_fn, lu_result):
1181 e4376078 Iustin Pop
    """Analize the post-hooks' result
1182 e4376078 Iustin Pop

1183 e4376078 Iustin Pop
    This method analyses the hook result, handles it, and sends some
1184 d8fff41c Guido Trotter
    nicely-formatted feedback back to the user.
1185 d8fff41c Guido Trotter

1186 e4376078 Iustin Pop
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
1187 e4376078 Iustin Pop
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1188 e4376078 Iustin Pop
    @param hooks_results: the results of the multi-node hooks rpc call
1189 e4376078 Iustin Pop
    @param feedback_fn: function used send feedback back to the caller
1190 e4376078 Iustin Pop
    @param lu_result: previous Exec result
1191 e4376078 Iustin Pop
    @return: the new Exec result, based on the previous result
1192 e4376078 Iustin Pop
        and hook results
1193 d8fff41c Guido Trotter

1194 d8fff41c Guido Trotter
    """
1195 38206f3c Iustin Pop
    # We only really run POST phase hooks, and are only interested in
1196 38206f3c Iustin Pop
    # their results
1197 d8fff41c Guido Trotter
    if phase == constants.HOOKS_PHASE_POST:
1198 d8fff41c Guido Trotter
      # Used to change hooks' output to proper indentation
1199 d8fff41c Guido Trotter
      indent_re = re.compile('^', re.M)
1200 d8fff41c Guido Trotter
      feedback_fn("* Hooks Results")
1201 d8fff41c Guido Trotter
      if not hooks_results:
1202 d8fff41c Guido Trotter
        feedback_fn("  - ERROR: general communication failure")
1203 d8fff41c Guido Trotter
        lu_result = 1
1204 d8fff41c Guido Trotter
      else:
1205 d8fff41c Guido Trotter
        for node_name in hooks_results:
1206 d8fff41c Guido Trotter
          show_node_header = True
1207 d8fff41c Guido Trotter
          res = hooks_results[node_name]
1208 25361b9a Iustin Pop
          if res.failed or res.data is False or not isinstance(res.data, list):
1209 0a66c968 Iustin Pop
            if res.offline:
1210 0a66c968 Iustin Pop
              # no need to warn or set fail return value
1211 0a66c968 Iustin Pop
              continue
1212 25361b9a Iustin Pop
            feedback_fn("    Communication failure in hooks execution")
1213 d8fff41c Guido Trotter
            lu_result = 1
1214 d8fff41c Guido Trotter
            continue
1215 25361b9a Iustin Pop
          for script, hkr, output in res.data:
1216 d8fff41c Guido Trotter
            if hkr == constants.HKR_FAIL:
1217 d8fff41c Guido Trotter
              # The node header is only shown once, if there are
1218 d8fff41c Guido Trotter
              # failing hooks on that node
1219 d8fff41c Guido Trotter
              if show_node_header:
1220 d8fff41c Guido Trotter
                feedback_fn("  Node %s:" % node_name)
1221 d8fff41c Guido Trotter
                show_node_header = False
1222 d8fff41c Guido Trotter
              feedback_fn("    ERROR: Script %s failed, output:" % script)
1223 d8fff41c Guido Trotter
              output = indent_re.sub('      ', output)
1224 d8fff41c Guido Trotter
              feedback_fn("%s" % output)
1225 d8fff41c Guido Trotter
              lu_result = 1
1226 d8fff41c Guido Trotter
1227 d8fff41c Guido Trotter
      return lu_result
1228 d8fff41c Guido Trotter
1229 a8083063 Iustin Pop
1230 2c95a8d4 Iustin Pop
class LUVerifyDisks(NoHooksLU):
1231 2c95a8d4 Iustin Pop
  """Verifies the cluster disks status.
1232 2c95a8d4 Iustin Pop

1233 2c95a8d4 Iustin Pop
  """
1234 2c95a8d4 Iustin Pop
  _OP_REQP = []
1235 d4b9d97f Guido Trotter
  REQ_BGL = False
1236 d4b9d97f Guido Trotter
1237 d4b9d97f Guido Trotter
  def ExpandNames(self):
1238 d4b9d97f Guido Trotter
    self.needed_locks = {
1239 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1240 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1241 d4b9d97f Guido Trotter
    }
1242 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1243 2c95a8d4 Iustin Pop
1244 2c95a8d4 Iustin Pop
  def CheckPrereq(self):
1245 2c95a8d4 Iustin Pop
    """Check prerequisites.
1246 2c95a8d4 Iustin Pop

1247 2c95a8d4 Iustin Pop
    This has no prerequisites.
1248 2c95a8d4 Iustin Pop

1249 2c95a8d4 Iustin Pop
    """
1250 2c95a8d4 Iustin Pop
    pass
1251 2c95a8d4 Iustin Pop
1252 2c95a8d4 Iustin Pop
  def Exec(self, feedback_fn):
1253 2c95a8d4 Iustin Pop
    """Verify integrity of cluster disks.
1254 2c95a8d4 Iustin Pop

1255 2c95a8d4 Iustin Pop
    """
1256 b63ed789 Iustin Pop
    result = res_nodes, res_nlvm, res_instances, res_missing = [], {}, [], {}
1257 2c95a8d4 Iustin Pop
1258 2c95a8d4 Iustin Pop
    vg_name = self.cfg.GetVGName()
1259 2c95a8d4 Iustin Pop
    nodes = utils.NiceSort(self.cfg.GetNodeList())
1260 2c95a8d4 Iustin Pop
    instances = [self.cfg.GetInstanceInfo(name)
1261 2c95a8d4 Iustin Pop
                 for name in self.cfg.GetInstanceList()]
1262 2c95a8d4 Iustin Pop
1263 2c95a8d4 Iustin Pop
    nv_dict = {}
1264 2c95a8d4 Iustin Pop
    for inst in instances:
1265 2c95a8d4 Iustin Pop
      inst_lvs = {}
1266 0d68c45d Iustin Pop
      if (not inst.admin_up or
1267 2c95a8d4 Iustin Pop
          inst.disk_template not in constants.DTS_NET_MIRROR):
1268 2c95a8d4 Iustin Pop
        continue
1269 2c95a8d4 Iustin Pop
      inst.MapLVsByNode(inst_lvs)
1270 2c95a8d4 Iustin Pop
      # transform { iname: {node: [vol,],},} to {(node, vol): iname}
1271 2c95a8d4 Iustin Pop
      for node, vol_list in inst_lvs.iteritems():
1272 2c95a8d4 Iustin Pop
        for vol in vol_list:
1273 2c95a8d4 Iustin Pop
          nv_dict[(node, vol)] = inst
1274 2c95a8d4 Iustin Pop
1275 2c95a8d4 Iustin Pop
    if not nv_dict:
1276 2c95a8d4 Iustin Pop
      return result
1277 2c95a8d4 Iustin Pop
1278 72737a7f Iustin Pop
    node_lvs = self.rpc.call_volume_list(nodes, vg_name)
1279 2c95a8d4 Iustin Pop
1280 2c95a8d4 Iustin Pop
    to_act = set()
1281 2c95a8d4 Iustin Pop
    for node in nodes:
1282 2c95a8d4 Iustin Pop
      # node_volume
1283 2c95a8d4 Iustin Pop
      lvs = node_lvs[node]
1284 781de953 Iustin Pop
      if lvs.failed:
1285 0a66c968 Iustin Pop
        if not lvs.offline:
1286 0a66c968 Iustin Pop
          self.LogWarning("Connection to node %s failed: %s" %
1287 0a66c968 Iustin Pop
                          (node, lvs.data))
1288 781de953 Iustin Pop
        continue
1289 781de953 Iustin Pop
      lvs = lvs.data
1290 b63ed789 Iustin Pop
      if isinstance(lvs, basestring):
1291 9a4f63d1 Iustin Pop
        logging.warning("Error enumerating LVs on node %s: %s", node, lvs)
1292 b63ed789 Iustin Pop
        res_nlvm[node] = lvs
1293 ea9ddc07 Iustin Pop
        continue
1294 b63ed789 Iustin Pop
      elif not isinstance(lvs, dict):
1295 9a4f63d1 Iustin Pop
        logging.warning("Connection to node %s failed or invalid data"
1296 9a4f63d1 Iustin Pop
                        " returned", node)
1297 2c95a8d4 Iustin Pop
        res_nodes.append(node)
1298 2c95a8d4 Iustin Pop
        continue
1299 2c95a8d4 Iustin Pop
1300 2c95a8d4 Iustin Pop
      for lv_name, (_, lv_inactive, lv_online) in lvs.iteritems():
1301 b63ed789 Iustin Pop
        inst = nv_dict.pop((node, lv_name), None)
1302 b63ed789 Iustin Pop
        if (not lv_online and inst is not None
1303 b63ed789 Iustin Pop
            and inst.name not in res_instances):
1304 b08d5a87 Iustin Pop
          res_instances.append(inst.name)
1305 2c95a8d4 Iustin Pop
1306 b63ed789 Iustin Pop
    # any leftover items in nv_dict are missing LVs, let's arrange the
1307 b63ed789 Iustin Pop
    # data better
1308 b63ed789 Iustin Pop
    for key, inst in nv_dict.iteritems():
1309 b63ed789 Iustin Pop
      if inst.name not in res_missing:
1310 b63ed789 Iustin Pop
        res_missing[inst.name] = []
1311 b63ed789 Iustin Pop
      res_missing[inst.name].append(key)
1312 b63ed789 Iustin Pop
1313 2c95a8d4 Iustin Pop
    return result
1314 2c95a8d4 Iustin Pop
1315 2c95a8d4 Iustin Pop
1316 07bd8a51 Iustin Pop
class LURenameCluster(LogicalUnit):
1317 07bd8a51 Iustin Pop
  """Rename the cluster.
1318 07bd8a51 Iustin Pop

1319 07bd8a51 Iustin Pop
  """
1320 07bd8a51 Iustin Pop
  HPATH = "cluster-rename"
1321 07bd8a51 Iustin Pop
  HTYPE = constants.HTYPE_CLUSTER
1322 07bd8a51 Iustin Pop
  _OP_REQP = ["name"]
1323 07bd8a51 Iustin Pop
1324 07bd8a51 Iustin Pop
  def BuildHooksEnv(self):
1325 07bd8a51 Iustin Pop
    """Build hooks env.
1326 07bd8a51 Iustin Pop

1327 07bd8a51 Iustin Pop
    """
1328 07bd8a51 Iustin Pop
    env = {
1329 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1330 07bd8a51 Iustin Pop
      "NEW_NAME": self.op.name,
1331 07bd8a51 Iustin Pop
      }
1332 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1333 07bd8a51 Iustin Pop
    return env, [mn], [mn]
1334 07bd8a51 Iustin Pop
1335 07bd8a51 Iustin Pop
  def CheckPrereq(self):
1336 07bd8a51 Iustin Pop
    """Verify that the passed name is a valid one.
1337 07bd8a51 Iustin Pop

1338 07bd8a51 Iustin Pop
    """
1339 89e1fc26 Iustin Pop
    hostname = utils.HostInfo(self.op.name)
1340 07bd8a51 Iustin Pop
1341 bcf043c9 Iustin Pop
    new_name = hostname.name
1342 bcf043c9 Iustin Pop
    self.ip = new_ip = hostname.ip
1343 d6a02168 Michael Hanselmann
    old_name = self.cfg.GetClusterName()
1344 d6a02168 Michael Hanselmann
    old_ip = self.cfg.GetMasterIP()
1345 07bd8a51 Iustin Pop
    if new_name == old_name and new_ip == old_ip:
1346 07bd8a51 Iustin Pop
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1347 07bd8a51 Iustin Pop
                                 " cluster has changed")
1348 07bd8a51 Iustin Pop
    if new_ip != old_ip:
1349 937f983d Guido Trotter
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1350 07bd8a51 Iustin Pop
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1351 07bd8a51 Iustin Pop
                                   " reachable on the network. Aborting." %
1352 07bd8a51 Iustin Pop
                                   new_ip)
1353 07bd8a51 Iustin Pop
1354 07bd8a51 Iustin Pop
    self.op.name = new_name
1355 07bd8a51 Iustin Pop
1356 07bd8a51 Iustin Pop
  def Exec(self, feedback_fn):
1357 07bd8a51 Iustin Pop
    """Rename the cluster.
1358 07bd8a51 Iustin Pop

1359 07bd8a51 Iustin Pop
    """
1360 07bd8a51 Iustin Pop
    clustername = self.op.name
1361 07bd8a51 Iustin Pop
    ip = self.ip
1362 07bd8a51 Iustin Pop
1363 07bd8a51 Iustin Pop
    # shutdown the master IP
1364 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
1365 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
1366 781de953 Iustin Pop
    if result.failed or not result.data:
1367 07bd8a51 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
1368 07bd8a51 Iustin Pop
1369 07bd8a51 Iustin Pop
    try:
1370 55cf7d83 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
1371 55cf7d83 Iustin Pop
      cluster.cluster_name = clustername
1372 55cf7d83 Iustin Pop
      cluster.master_ip = ip
1373 55cf7d83 Iustin Pop
      self.cfg.Update(cluster)
1374 ec85e3d5 Iustin Pop
1375 ec85e3d5 Iustin Pop
      # update the known hosts file
1376 ec85e3d5 Iustin Pop
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1377 ec85e3d5 Iustin Pop
      node_list = self.cfg.GetNodeList()
1378 ec85e3d5 Iustin Pop
      try:
1379 ec85e3d5 Iustin Pop
        node_list.remove(master)
1380 ec85e3d5 Iustin Pop
      except ValueError:
1381 ec85e3d5 Iustin Pop
        pass
1382 ec85e3d5 Iustin Pop
      result = self.rpc.call_upload_file(node_list,
1383 ec85e3d5 Iustin Pop
                                         constants.SSH_KNOWN_HOSTS_FILE)
1384 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
1385 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
1386 d1dc3548 Iustin Pop
          logging.error("Copy of file %s to node %s failed",
1387 d1dc3548 Iustin Pop
                        constants.SSH_KNOWN_HOSTS_FILE, to_node)
1388 ec85e3d5 Iustin Pop
1389 07bd8a51 Iustin Pop
    finally:
1390 781de953 Iustin Pop
      result = self.rpc.call_node_start_master(master, False)
1391 781de953 Iustin Pop
      if result.failed or not result.data:
1392 86d9d3bb Iustin Pop
        self.LogWarning("Could not re-enable the master role on"
1393 86d9d3bb Iustin Pop
                        " the master, please restart manually.")
1394 07bd8a51 Iustin Pop
1395 07bd8a51 Iustin Pop
1396 8084f9f6 Manuel Franceschini
def _RecursiveCheckIfLVMBased(disk):
1397 8084f9f6 Manuel Franceschini
  """Check if the given disk or its children are lvm-based.
1398 8084f9f6 Manuel Franceschini

1399 e4376078 Iustin Pop
  @type disk: L{objects.Disk}
1400 e4376078 Iustin Pop
  @param disk: the disk to check
1401 e4376078 Iustin Pop
  @rtype: booleean
1402 e4376078 Iustin Pop
  @return: boolean indicating whether a LD_LV dev_type was found or not
1403 8084f9f6 Manuel Franceschini

1404 8084f9f6 Manuel Franceschini
  """
1405 8084f9f6 Manuel Franceschini
  if disk.children:
1406 8084f9f6 Manuel Franceschini
    for chdisk in disk.children:
1407 8084f9f6 Manuel Franceschini
      if _RecursiveCheckIfLVMBased(chdisk):
1408 8084f9f6 Manuel Franceschini
        return True
1409 8084f9f6 Manuel Franceschini
  return disk.dev_type == constants.LD_LV
1410 8084f9f6 Manuel Franceschini
1411 8084f9f6 Manuel Franceschini
1412 8084f9f6 Manuel Franceschini
class LUSetClusterParams(LogicalUnit):
1413 8084f9f6 Manuel Franceschini
  """Change the parameters of the cluster.
1414 8084f9f6 Manuel Franceschini

1415 8084f9f6 Manuel Franceschini
  """
1416 8084f9f6 Manuel Franceschini
  HPATH = "cluster-modify"
1417 8084f9f6 Manuel Franceschini
  HTYPE = constants.HTYPE_CLUSTER
1418 8084f9f6 Manuel Franceschini
  _OP_REQP = []
1419 c53279cf Guido Trotter
  REQ_BGL = False
1420 c53279cf Guido Trotter
1421 3994f455 Iustin Pop
  def CheckArguments(self):
1422 4b7735f9 Iustin Pop
    """Check parameters
1423 4b7735f9 Iustin Pop

1424 4b7735f9 Iustin Pop
    """
1425 4b7735f9 Iustin Pop
    if not hasattr(self.op, "candidate_pool_size"):
1426 4b7735f9 Iustin Pop
      self.op.candidate_pool_size = None
1427 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1428 4b7735f9 Iustin Pop
      try:
1429 4b7735f9 Iustin Pop
        self.op.candidate_pool_size = int(self.op.candidate_pool_size)
1430 3994f455 Iustin Pop
      except (ValueError, TypeError), err:
1431 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
1432 4b7735f9 Iustin Pop
                                   str(err))
1433 4b7735f9 Iustin Pop
      if self.op.candidate_pool_size < 1:
1434 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("At least one master candidate needed")
1435 4b7735f9 Iustin Pop
1436 c53279cf Guido Trotter
  def ExpandNames(self):
1437 c53279cf Guido Trotter
    # FIXME: in the future maybe other cluster params won't require checking on
1438 c53279cf Guido Trotter
    # all nodes to be modified.
1439 c53279cf Guido Trotter
    self.needed_locks = {
1440 c53279cf Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1441 c53279cf Guido Trotter
    }
1442 c53279cf Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1443 8084f9f6 Manuel Franceschini
1444 8084f9f6 Manuel Franceschini
  def BuildHooksEnv(self):
1445 8084f9f6 Manuel Franceschini
    """Build hooks env.
1446 8084f9f6 Manuel Franceschini

1447 8084f9f6 Manuel Franceschini
    """
1448 8084f9f6 Manuel Franceschini
    env = {
1449 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1450 8084f9f6 Manuel Franceschini
      "NEW_VG_NAME": self.op.vg_name,
1451 8084f9f6 Manuel Franceschini
      }
1452 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1453 8084f9f6 Manuel Franceschini
    return env, [mn], [mn]
1454 8084f9f6 Manuel Franceschini
1455 8084f9f6 Manuel Franceschini
  def CheckPrereq(self):
1456 8084f9f6 Manuel Franceschini
    """Check prerequisites.
1457 8084f9f6 Manuel Franceschini

1458 8084f9f6 Manuel Franceschini
    This checks whether the given params don't conflict and
1459 5f83e263 Iustin Pop
    if the given volume group is valid.
1460 8084f9f6 Manuel Franceschini

1461 8084f9f6 Manuel Franceschini
    """
1462 779c15bb Iustin Pop
    if self.op.vg_name is not None and not self.op.vg_name:
1463 c53279cf Guido Trotter
      instances = self.cfg.GetAllInstancesInfo().values()
1464 8084f9f6 Manuel Franceschini
      for inst in instances:
1465 8084f9f6 Manuel Franceschini
        for disk in inst.disks:
1466 8084f9f6 Manuel Franceschini
          if _RecursiveCheckIfLVMBased(disk):
1467 8084f9f6 Manuel Franceschini
            raise errors.OpPrereqError("Cannot disable lvm storage while"
1468 8084f9f6 Manuel Franceschini
                                       " lvm-based instances exist")
1469 8084f9f6 Manuel Franceschini
1470 779c15bb Iustin Pop
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1471 779c15bb Iustin Pop
1472 8084f9f6 Manuel Franceschini
    # if vg_name not None, checks given volume group on all nodes
1473 8084f9f6 Manuel Franceschini
    if self.op.vg_name:
1474 72737a7f Iustin Pop
      vglist = self.rpc.call_vg_list(node_list)
1475 8084f9f6 Manuel Franceschini
      for node in node_list:
1476 781de953 Iustin Pop
        if vglist[node].failed:
1477 781de953 Iustin Pop
          # ignoring down node
1478 781de953 Iustin Pop
          self.LogWarning("Node %s unreachable/error, ignoring" % node)
1479 781de953 Iustin Pop
          continue
1480 781de953 Iustin Pop
        vgstatus = utils.CheckVolumeGroupSize(vglist[node].data,
1481 781de953 Iustin Pop
                                              self.op.vg_name,
1482 8d1a2a64 Michael Hanselmann
                                              constants.MIN_VG_SIZE)
1483 8084f9f6 Manuel Franceschini
        if vgstatus:
1484 8084f9f6 Manuel Franceschini
          raise errors.OpPrereqError("Error on node '%s': %s" %
1485 8084f9f6 Manuel Franceschini
                                     (node, vgstatus))
1486 8084f9f6 Manuel Franceschini
1487 779c15bb Iustin Pop
    self.cluster = cluster = self.cfg.GetClusterInfo()
1488 d4b72030 Guido Trotter
    # validate beparams changes
1489 779c15bb Iustin Pop
    if self.op.beparams:
1490 a5728081 Guido Trotter
      utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
1491 779c15bb Iustin Pop
      self.new_beparams = cluster.FillDict(
1492 779c15bb Iustin Pop
        cluster.beparams[constants.BEGR_DEFAULT], self.op.beparams)
1493 779c15bb Iustin Pop
1494 779c15bb Iustin Pop
    # hypervisor list/parameters
1495 779c15bb Iustin Pop
    self.new_hvparams = cluster.FillDict(cluster.hvparams, {})
1496 779c15bb Iustin Pop
    if self.op.hvparams:
1497 779c15bb Iustin Pop
      if not isinstance(self.op.hvparams, dict):
1498 779c15bb Iustin Pop
        raise errors.OpPrereqError("Invalid 'hvparams' parameter on input")
1499 779c15bb Iustin Pop
      for hv_name, hv_dict in self.op.hvparams.items():
1500 779c15bb Iustin Pop
        if hv_name not in self.new_hvparams:
1501 779c15bb Iustin Pop
          self.new_hvparams[hv_name] = hv_dict
1502 779c15bb Iustin Pop
        else:
1503 779c15bb Iustin Pop
          self.new_hvparams[hv_name].update(hv_dict)
1504 779c15bb Iustin Pop
1505 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1506 779c15bb Iustin Pop
      self.hv_list = self.op.enabled_hypervisors
1507 779c15bb Iustin Pop
    else:
1508 779c15bb Iustin Pop
      self.hv_list = cluster.enabled_hypervisors
1509 779c15bb Iustin Pop
1510 779c15bb Iustin Pop
    if self.op.hvparams or self.op.enabled_hypervisors is not None:
1511 779c15bb Iustin Pop
      # either the enabled list has changed, or the parameters have, validate
1512 779c15bb Iustin Pop
      for hv_name, hv_params in self.new_hvparams.items():
1513 779c15bb Iustin Pop
        if ((self.op.hvparams and hv_name in self.op.hvparams) or
1514 779c15bb Iustin Pop
            (self.op.enabled_hypervisors and
1515 779c15bb Iustin Pop
             hv_name in self.op.enabled_hypervisors)):
1516 779c15bb Iustin Pop
          # either this is a new hypervisor, or its parameters have changed
1517 779c15bb Iustin Pop
          hv_class = hypervisor.GetHypervisor(hv_name)
1518 a5728081 Guido Trotter
          utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
1519 779c15bb Iustin Pop
          hv_class.CheckParameterSyntax(hv_params)
1520 779c15bb Iustin Pop
          _CheckHVParams(self, node_list, hv_name, hv_params)
1521 779c15bb Iustin Pop
1522 8084f9f6 Manuel Franceschini
  def Exec(self, feedback_fn):
1523 8084f9f6 Manuel Franceschini
    """Change the parameters of the cluster.
1524 8084f9f6 Manuel Franceschini

1525 8084f9f6 Manuel Franceschini
    """
1526 779c15bb Iustin Pop
    if self.op.vg_name is not None:
1527 779c15bb Iustin Pop
      if self.op.vg_name != self.cfg.GetVGName():
1528 779c15bb Iustin Pop
        self.cfg.SetVGName(self.op.vg_name)
1529 779c15bb Iustin Pop
      else:
1530 779c15bb Iustin Pop
        feedback_fn("Cluster LVM configuration already in desired"
1531 779c15bb Iustin Pop
                    " state, not changing")
1532 779c15bb Iustin Pop
    if self.op.hvparams:
1533 779c15bb Iustin Pop
      self.cluster.hvparams = self.new_hvparams
1534 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1535 779c15bb Iustin Pop
      self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
1536 779c15bb Iustin Pop
    if self.op.beparams:
1537 779c15bb Iustin Pop
      self.cluster.beparams[constants.BEGR_DEFAULT] = self.new_beparams
1538 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1539 4b7735f9 Iustin Pop
      self.cluster.candidate_pool_size = self.op.candidate_pool_size
1540 4b7735f9 Iustin Pop
1541 779c15bb Iustin Pop
    self.cfg.Update(self.cluster)
1542 8084f9f6 Manuel Franceschini
1543 4b7735f9 Iustin Pop
    # we want to update nodes after the cluster so that if any errors
1544 4b7735f9 Iustin Pop
    # happen, we have recorded and saved the cluster info
1545 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1546 ec0292f1 Iustin Pop
      _AdjustCandidatePool(self)
1547 4b7735f9 Iustin Pop
1548 8084f9f6 Manuel Franceschini
1549 afee0879 Iustin Pop
class LURedistributeConfig(NoHooksLU):
1550 afee0879 Iustin Pop
  """Force the redistribution of cluster configuration.
1551 afee0879 Iustin Pop

1552 afee0879 Iustin Pop
  This is a very simple LU.
1553 afee0879 Iustin Pop

1554 afee0879 Iustin Pop
  """
1555 afee0879 Iustin Pop
  _OP_REQP = []
1556 afee0879 Iustin Pop
  REQ_BGL = False
1557 afee0879 Iustin Pop
1558 afee0879 Iustin Pop
  def ExpandNames(self):
1559 afee0879 Iustin Pop
    self.needed_locks = {
1560 afee0879 Iustin Pop
      locking.LEVEL_NODE: locking.ALL_SET,
1561 afee0879 Iustin Pop
    }
1562 afee0879 Iustin Pop
    self.share_locks[locking.LEVEL_NODE] = 1
1563 afee0879 Iustin Pop
1564 afee0879 Iustin Pop
  def CheckPrereq(self):
1565 afee0879 Iustin Pop
    """Check prerequisites.
1566 afee0879 Iustin Pop

1567 afee0879 Iustin Pop
    """
1568 afee0879 Iustin Pop
1569 afee0879 Iustin Pop
  def Exec(self, feedback_fn):
1570 afee0879 Iustin Pop
    """Redistribute the configuration.
1571 afee0879 Iustin Pop

1572 afee0879 Iustin Pop
    """
1573 afee0879 Iustin Pop
    self.cfg.Update(self.cfg.GetClusterInfo())
1574 afee0879 Iustin Pop
1575 afee0879 Iustin Pop
1576 b9bddb6b Iustin Pop
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1577 a8083063 Iustin Pop
  """Sleep and poll for an instance's disk to sync.
1578 a8083063 Iustin Pop

1579 a8083063 Iustin Pop
  """
1580 a8083063 Iustin Pop
  if not instance.disks:
1581 a8083063 Iustin Pop
    return True
1582 a8083063 Iustin Pop
1583 a8083063 Iustin Pop
  if not oneshot:
1584 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
1585 a8083063 Iustin Pop
1586 a8083063 Iustin Pop
  node = instance.primary_node
1587 a8083063 Iustin Pop
1588 a8083063 Iustin Pop
  for dev in instance.disks:
1589 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(dev, node)
1590 a8083063 Iustin Pop
1591 a8083063 Iustin Pop
  retries = 0
1592 a8083063 Iustin Pop
  while True:
1593 a8083063 Iustin Pop
    max_time = 0
1594 a8083063 Iustin Pop
    done = True
1595 a8083063 Iustin Pop
    cumul_degraded = False
1596 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
1597 781de953 Iustin Pop
    if rstats.failed or not rstats.data:
1598 86d9d3bb Iustin Pop
      lu.LogWarning("Can't get any data from node %s", node)
1599 a8083063 Iustin Pop
      retries += 1
1600 a8083063 Iustin Pop
      if retries >= 10:
1601 3ecf6786 Iustin Pop
        raise errors.RemoteError("Can't contact node %s for mirror data,"
1602 3ecf6786 Iustin Pop
                                 " aborting." % node)
1603 a8083063 Iustin Pop
      time.sleep(6)
1604 a8083063 Iustin Pop
      continue
1605 781de953 Iustin Pop
    rstats = rstats.data
1606 a8083063 Iustin Pop
    retries = 0
1607 1492cca7 Iustin Pop
    for i, mstat in enumerate(rstats):
1608 a8083063 Iustin Pop
      if mstat is None:
1609 86d9d3bb Iustin Pop
        lu.LogWarning("Can't compute data for node %s/%s",
1610 86d9d3bb Iustin Pop
                           node, instance.disks[i].iv_name)
1611 a8083063 Iustin Pop
        continue
1612 0834c866 Iustin Pop
      # we ignore the ldisk parameter
1613 0834c866 Iustin Pop
      perc_done, est_time, is_degraded, _ = mstat
1614 a8083063 Iustin Pop
      cumul_degraded = cumul_degraded or (is_degraded and perc_done is None)
1615 a8083063 Iustin Pop
      if perc_done is not None:
1616 a8083063 Iustin Pop
        done = False
1617 a8083063 Iustin Pop
        if est_time is not None:
1618 a8083063 Iustin Pop
          rem_time = "%d estimated seconds remaining" % est_time
1619 a8083063 Iustin Pop
          max_time = est_time
1620 a8083063 Iustin Pop
        else:
1621 a8083063 Iustin Pop
          rem_time = "no time estimate"
1622 b9bddb6b Iustin Pop
        lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
1623 b9bddb6b Iustin Pop
                        (instance.disks[i].iv_name, perc_done, rem_time))
1624 a8083063 Iustin Pop
    if done or oneshot:
1625 a8083063 Iustin Pop
      break
1626 a8083063 Iustin Pop
1627 d4fa5c23 Iustin Pop
    time.sleep(min(60, max_time))
1628 a8083063 Iustin Pop
1629 a8083063 Iustin Pop
  if done:
1630 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
1631 a8083063 Iustin Pop
  return not cumul_degraded
1632 a8083063 Iustin Pop
1633 a8083063 Iustin Pop
1634 b9bddb6b Iustin Pop
def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
1635 a8083063 Iustin Pop
  """Check that mirrors are not degraded.
1636 a8083063 Iustin Pop

1637 0834c866 Iustin Pop
  The ldisk parameter, if True, will change the test from the
1638 0834c866 Iustin Pop
  is_degraded attribute (which represents overall non-ok status for
1639 0834c866 Iustin Pop
  the device(s)) to the ldisk (representing the local storage status).
1640 0834c866 Iustin Pop

1641 a8083063 Iustin Pop
  """
1642 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(dev, node)
1643 0834c866 Iustin Pop
  if ldisk:
1644 0834c866 Iustin Pop
    idx = 6
1645 0834c866 Iustin Pop
  else:
1646 0834c866 Iustin Pop
    idx = 5
1647 a8083063 Iustin Pop
1648 a8083063 Iustin Pop
  result = True
1649 a8083063 Iustin Pop
  if on_primary or dev.AssembleOnSecondary():
1650 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_find(node, dev)
1651 23829f6f Iustin Pop
    msg = rstats.RemoteFailMsg()
1652 23829f6f Iustin Pop
    if msg:
1653 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s: %s", node, msg)
1654 23829f6f Iustin Pop
      result = False
1655 23829f6f Iustin Pop
    elif not rstats.payload:
1656 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s", node)
1657 a8083063 Iustin Pop
      result = False
1658 a8083063 Iustin Pop
    else:
1659 23829f6f Iustin Pop
      result = result and (not rstats.payload[idx])
1660 a8083063 Iustin Pop
  if dev.children:
1661 a8083063 Iustin Pop
    for child in dev.children:
1662 b9bddb6b Iustin Pop
      result = result and _CheckDiskConsistency(lu, child, node, on_primary)
1663 a8083063 Iustin Pop
1664 a8083063 Iustin Pop
  return result
1665 a8083063 Iustin Pop
1666 a8083063 Iustin Pop
1667 a8083063 Iustin Pop
class LUDiagnoseOS(NoHooksLU):
1668 a8083063 Iustin Pop
  """Logical unit for OS diagnose/query.
1669 a8083063 Iustin Pop

1670 a8083063 Iustin Pop
  """
1671 1f9430d6 Iustin Pop
  _OP_REQP = ["output_fields", "names"]
1672 6bf01bbb Guido Trotter
  REQ_BGL = False
1673 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet()
1674 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status")
1675 a8083063 Iustin Pop
1676 6bf01bbb Guido Trotter
  def ExpandNames(self):
1677 1f9430d6 Iustin Pop
    if self.op.names:
1678 1f9430d6 Iustin Pop
      raise errors.OpPrereqError("Selective OS query not supported")
1679 1f9430d6 Iustin Pop
1680 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1681 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1682 1f9430d6 Iustin Pop
                       selected=self.op.output_fields)
1683 1f9430d6 Iustin Pop
1684 6bf01bbb Guido Trotter
    # Lock all nodes, in shared mode
1685 a6ab004b Iustin Pop
    # Temporary removal of locks, should be reverted later
1686 a6ab004b Iustin Pop
    # TODO: reintroduce locks when they are lighter-weight
1687 6bf01bbb Guido Trotter
    self.needed_locks = {}
1688 a6ab004b Iustin Pop
    #self.share_locks[locking.LEVEL_NODE] = 1
1689 a6ab004b Iustin Pop
    #self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1690 6bf01bbb Guido Trotter
1691 6bf01bbb Guido Trotter
  def CheckPrereq(self):
1692 6bf01bbb Guido Trotter
    """Check prerequisites.
1693 6bf01bbb Guido Trotter

1694 6bf01bbb Guido Trotter
    """
1695 6bf01bbb Guido Trotter
1696 1f9430d6 Iustin Pop
  @staticmethod
1697 1f9430d6 Iustin Pop
  def _DiagnoseByOS(node_list, rlist):
1698 1f9430d6 Iustin Pop
    """Remaps a per-node return list into an a per-os per-node dictionary
1699 1f9430d6 Iustin Pop

1700 e4376078 Iustin Pop
    @param node_list: a list with the names of all nodes
1701 e4376078 Iustin Pop
    @param rlist: a map with node names as keys and OS objects as values
1702 1f9430d6 Iustin Pop

1703 e4376078 Iustin Pop
    @rtype: dict
1704 5fcc718f Iustin Pop
    @return: a dictionary with osnames as keys and as value another map, with
1705 e4376078 Iustin Pop
        nodes as keys and list of OS objects as values, eg::
1706 e4376078 Iustin Pop

1707 e4376078 Iustin Pop
          {"debian-etch": {"node1": [<object>,...],
1708 e4376078 Iustin Pop
                           "node2": [<object>,]}
1709 e4376078 Iustin Pop
          }
1710 1f9430d6 Iustin Pop

1711 1f9430d6 Iustin Pop
    """
1712 1f9430d6 Iustin Pop
    all_os = {}
1713 a6ab004b Iustin Pop
    # we build here the list of nodes that didn't fail the RPC (at RPC
1714 a6ab004b Iustin Pop
    # level), so that nodes with a non-responding node daemon don't
1715 a6ab004b Iustin Pop
    # make all OSes invalid
1716 a6ab004b Iustin Pop
    good_nodes = [node_name for node_name in rlist
1717 a6ab004b Iustin Pop
                  if not rlist[node_name].failed]
1718 1f9430d6 Iustin Pop
    for node_name, nr in rlist.iteritems():
1719 781de953 Iustin Pop
      if nr.failed or not nr.data:
1720 1f9430d6 Iustin Pop
        continue
1721 781de953 Iustin Pop
      for os_obj in nr.data:
1722 b4de68a9 Iustin Pop
        if os_obj.name not in all_os:
1723 1f9430d6 Iustin Pop
          # build a list of nodes for this os containing empty lists
1724 1f9430d6 Iustin Pop
          # for each node in node_list
1725 b4de68a9 Iustin Pop
          all_os[os_obj.name] = {}
1726 a6ab004b Iustin Pop
          for nname in good_nodes:
1727 b4de68a9 Iustin Pop
            all_os[os_obj.name][nname] = []
1728 b4de68a9 Iustin Pop
        all_os[os_obj.name][node_name].append(os_obj)
1729 1f9430d6 Iustin Pop
    return all_os
1730 a8083063 Iustin Pop
1731 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1732 a8083063 Iustin Pop
    """Compute the list of OSes.
1733 a8083063 Iustin Pop

1734 a8083063 Iustin Pop
    """
1735 a6ab004b Iustin Pop
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()]
1736 94a02bb5 Iustin Pop
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1737 a8083063 Iustin Pop
    if node_data == False:
1738 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't gather the list of OSes")
1739 94a02bb5 Iustin Pop
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1740 1f9430d6 Iustin Pop
    output = []
1741 1f9430d6 Iustin Pop
    for os_name, os_data in pol.iteritems():
1742 1f9430d6 Iustin Pop
      row = []
1743 1f9430d6 Iustin Pop
      for field in self.op.output_fields:
1744 1f9430d6 Iustin Pop
        if field == "name":
1745 1f9430d6 Iustin Pop
          val = os_name
1746 1f9430d6 Iustin Pop
        elif field == "valid":
1747 1f9430d6 Iustin Pop
          val = utils.all([osl and osl[0] for osl in os_data.values()])
1748 1f9430d6 Iustin Pop
        elif field == "node_status":
1749 1f9430d6 Iustin Pop
          val = {}
1750 1f9430d6 Iustin Pop
          for node_name, nos_list in os_data.iteritems():
1751 1f9430d6 Iustin Pop
            val[node_name] = [(v.status, v.path) for v in nos_list]
1752 1f9430d6 Iustin Pop
        else:
1753 1f9430d6 Iustin Pop
          raise errors.ParameterError(field)
1754 1f9430d6 Iustin Pop
        row.append(val)
1755 1f9430d6 Iustin Pop
      output.append(row)
1756 1f9430d6 Iustin Pop
1757 1f9430d6 Iustin Pop
    return output
1758 a8083063 Iustin Pop
1759 a8083063 Iustin Pop
1760 a8083063 Iustin Pop
class LURemoveNode(LogicalUnit):
1761 a8083063 Iustin Pop
  """Logical unit for removing a node.
1762 a8083063 Iustin Pop

1763 a8083063 Iustin Pop
  """
1764 a8083063 Iustin Pop
  HPATH = "node-remove"
1765 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1766 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1767 a8083063 Iustin Pop
1768 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1769 a8083063 Iustin Pop
    """Build hooks env.
1770 a8083063 Iustin Pop

1771 a8083063 Iustin Pop
    This doesn't run on the target node in the pre phase as a failed
1772 d08869ee Guido Trotter
    node would then be impossible to remove.
1773 a8083063 Iustin Pop

1774 a8083063 Iustin Pop
    """
1775 396e1b78 Michael Hanselmann
    env = {
1776 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
1777 396e1b78 Michael Hanselmann
      "NODE_NAME": self.op.node_name,
1778 396e1b78 Michael Hanselmann
      }
1779 a8083063 Iustin Pop
    all_nodes = self.cfg.GetNodeList()
1780 a8083063 Iustin Pop
    all_nodes.remove(self.op.node_name)
1781 396e1b78 Michael Hanselmann
    return env, all_nodes, all_nodes
1782 a8083063 Iustin Pop
1783 a8083063 Iustin Pop
  def CheckPrereq(self):
1784 a8083063 Iustin Pop
    """Check prerequisites.
1785 a8083063 Iustin Pop

1786 a8083063 Iustin Pop
    This checks:
1787 a8083063 Iustin Pop
     - the node exists in the configuration
1788 a8083063 Iustin Pop
     - it does not have primary or secondary instances
1789 a8083063 Iustin Pop
     - it's not the master
1790 a8083063 Iustin Pop

1791 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
1792 a8083063 Iustin Pop

1793 a8083063 Iustin Pop
    """
1794 a8083063 Iustin Pop
    node = self.cfg.GetNodeInfo(self.cfg.ExpandNodeName(self.op.node_name))
1795 a8083063 Iustin Pop
    if node is None:
1796 a02bc76e Iustin Pop
      raise errors.OpPrereqError, ("Node '%s' is unknown." % self.op.node_name)
1797 a8083063 Iustin Pop
1798 a8083063 Iustin Pop
    instance_list = self.cfg.GetInstanceList()
1799 a8083063 Iustin Pop
1800 d6a02168 Michael Hanselmann
    masternode = self.cfg.GetMasterNode()
1801 a8083063 Iustin Pop
    if node.name == masternode:
1802 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node is the master node,"
1803 3ecf6786 Iustin Pop
                                 " you need to failover first.")
1804 a8083063 Iustin Pop
1805 a8083063 Iustin Pop
    for instance_name in instance_list:
1806 a8083063 Iustin Pop
      instance = self.cfg.GetInstanceInfo(instance_name)
1807 6b12959c Iustin Pop
      if node.name in instance.all_nodes:
1808 6b12959c Iustin Pop
        raise errors.OpPrereqError("Instance %s is still running on the node,"
1809 3ecf6786 Iustin Pop
                                   " please remove first." % instance_name)
1810 a8083063 Iustin Pop
    self.op.node_name = node.name
1811 a8083063 Iustin Pop
    self.node = node
1812 a8083063 Iustin Pop
1813 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1814 a8083063 Iustin Pop
    """Removes the node from the cluster.
1815 a8083063 Iustin Pop

1816 a8083063 Iustin Pop
    """
1817 a8083063 Iustin Pop
    node = self.node
1818 9a4f63d1 Iustin Pop
    logging.info("Stopping the node daemon and removing configs from node %s",
1819 9a4f63d1 Iustin Pop
                 node.name)
1820 a8083063 Iustin Pop
1821 d8470559 Michael Hanselmann
    self.context.RemoveNode(node.name)
1822 a8083063 Iustin Pop
1823 72737a7f Iustin Pop
    self.rpc.call_node_leave_cluster(node.name)
1824 c8a0948f Michael Hanselmann
1825 eb1742d5 Guido Trotter
    # Promote nodes to master candidate as needed
1826 ec0292f1 Iustin Pop
    _AdjustCandidatePool(self)
1827 eb1742d5 Guido Trotter
1828 a8083063 Iustin Pop
1829 a8083063 Iustin Pop
class LUQueryNodes(NoHooksLU):
1830 a8083063 Iustin Pop
  """Logical unit for querying nodes.
1831 a8083063 Iustin Pop

1832 a8083063 Iustin Pop
  """
1833 bc8e4a1a Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
1834 35705d8f Guido Trotter
  REQ_BGL = False
1835 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet(
1836 31bf511f Iustin Pop
    "dtotal", "dfree",
1837 31bf511f Iustin Pop
    "mtotal", "mnode", "mfree",
1838 31bf511f Iustin Pop
    "bootid",
1839 0105bad3 Iustin Pop
    "ctotal", "cnodes", "csockets",
1840 31bf511f Iustin Pop
    )
1841 31bf511f Iustin Pop
1842 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(
1843 31bf511f Iustin Pop
    "name", "pinst_cnt", "sinst_cnt",
1844 31bf511f Iustin Pop
    "pinst_list", "sinst_list",
1845 31bf511f Iustin Pop
    "pip", "sip", "tags",
1846 31bf511f Iustin Pop
    "serial_no",
1847 0e67cdbe Iustin Pop
    "master_candidate",
1848 0e67cdbe Iustin Pop
    "master",
1849 9ddb5e45 Iustin Pop
    "offline",
1850 0b2454b9 Iustin Pop
    "drained",
1851 31bf511f Iustin Pop
    )
1852 a8083063 Iustin Pop
1853 35705d8f Guido Trotter
  def ExpandNames(self):
1854 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1855 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1856 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
1857 a8083063 Iustin Pop
1858 35705d8f Guido Trotter
    self.needed_locks = {}
1859 35705d8f Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1860 c8d8b4c8 Iustin Pop
1861 c8d8b4c8 Iustin Pop
    if self.op.names:
1862 c8d8b4c8 Iustin Pop
      self.wanted = _GetWantedNodes(self, self.op.names)
1863 35705d8f Guido Trotter
    else:
1864 c8d8b4c8 Iustin Pop
      self.wanted = locking.ALL_SET
1865 c8d8b4c8 Iustin Pop
1866 bc8e4a1a Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
1867 bc8e4a1a Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
1868 c8d8b4c8 Iustin Pop
    if self.do_locking:
1869 c8d8b4c8 Iustin Pop
      # if we don't request only static fields, we need to lock the nodes
1870 c8d8b4c8 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = self.wanted
1871 c8d8b4c8 Iustin Pop
1872 35705d8f Guido Trotter
1873 35705d8f Guido Trotter
  def CheckPrereq(self):
1874 35705d8f Guido Trotter
    """Check prerequisites.
1875 35705d8f Guido Trotter

1876 35705d8f Guido Trotter
    """
1877 c8d8b4c8 Iustin Pop
    # The validation of the node list is done in the _GetWantedNodes,
1878 c8d8b4c8 Iustin Pop
    # if non empty, and if empty, there's no validation to do
1879 c8d8b4c8 Iustin Pop
    pass
1880 a8083063 Iustin Pop
1881 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1882 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
1883 a8083063 Iustin Pop

1884 a8083063 Iustin Pop
    """
1885 c8d8b4c8 Iustin Pop
    all_info = self.cfg.GetAllNodesInfo()
1886 c8d8b4c8 Iustin Pop
    if self.do_locking:
1887 c8d8b4c8 Iustin Pop
      nodenames = self.acquired_locks[locking.LEVEL_NODE]
1888 3fa93523 Guido Trotter
    elif self.wanted != locking.ALL_SET:
1889 3fa93523 Guido Trotter
      nodenames = self.wanted
1890 3fa93523 Guido Trotter
      missing = set(nodenames).difference(all_info.keys())
1891 3fa93523 Guido Trotter
      if missing:
1892 7b3a8fb5 Iustin Pop
        raise errors.OpExecError(
1893 3fa93523 Guido Trotter
          "Some nodes were removed before retrieving their data: %s" % missing)
1894 c8d8b4c8 Iustin Pop
    else:
1895 c8d8b4c8 Iustin Pop
      nodenames = all_info.keys()
1896 c1f1cbb2 Iustin Pop
1897 c1f1cbb2 Iustin Pop
    nodenames = utils.NiceSort(nodenames)
1898 c8d8b4c8 Iustin Pop
    nodelist = [all_info[name] for name in nodenames]
1899 a8083063 Iustin Pop
1900 a8083063 Iustin Pop
    # begin data gathering
1901 a8083063 Iustin Pop
1902 bc8e4a1a Iustin Pop
    if self.do_node_query:
1903 a8083063 Iustin Pop
      live_data = {}
1904 72737a7f Iustin Pop
      node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
1905 72737a7f Iustin Pop
                                          self.cfg.GetHypervisorType())
1906 a8083063 Iustin Pop
      for name in nodenames:
1907 781de953 Iustin Pop
        nodeinfo = node_data[name]
1908 781de953 Iustin Pop
        if not nodeinfo.failed and nodeinfo.data:
1909 781de953 Iustin Pop
          nodeinfo = nodeinfo.data
1910 d599d686 Iustin Pop
          fn = utils.TryConvert
1911 a8083063 Iustin Pop
          live_data[name] = {
1912 d599d686 Iustin Pop
            "mtotal": fn(int, nodeinfo.get('memory_total', None)),
1913 d599d686 Iustin Pop
            "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
1914 d599d686 Iustin Pop
            "mfree": fn(int, nodeinfo.get('memory_free', None)),
1915 d599d686 Iustin Pop
            "dtotal": fn(int, nodeinfo.get('vg_size', None)),
1916 d599d686 Iustin Pop
            "dfree": fn(int, nodeinfo.get('vg_free', None)),
1917 d599d686 Iustin Pop
            "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
1918 d599d686 Iustin Pop
            "bootid": nodeinfo.get('bootid', None),
1919 0105bad3 Iustin Pop
            "cnodes": fn(int, nodeinfo.get('cpu_nodes', None)),
1920 0105bad3 Iustin Pop
            "csockets": fn(int, nodeinfo.get('cpu_sockets', None)),
1921 a8083063 Iustin Pop
            }
1922 a8083063 Iustin Pop
        else:
1923 a8083063 Iustin Pop
          live_data[name] = {}
1924 a8083063 Iustin Pop
    else:
1925 a8083063 Iustin Pop
      live_data = dict.fromkeys(nodenames, {})
1926 a8083063 Iustin Pop
1927 ec223efb Iustin Pop
    node_to_primary = dict([(name, set()) for name in nodenames])
1928 ec223efb Iustin Pop
    node_to_secondary = dict([(name, set()) for name in nodenames])
1929 a8083063 Iustin Pop
1930 ec223efb Iustin Pop
    inst_fields = frozenset(("pinst_cnt", "pinst_list",
1931 ec223efb Iustin Pop
                             "sinst_cnt", "sinst_list"))
1932 ec223efb Iustin Pop
    if inst_fields & frozenset(self.op.output_fields):
1933 a8083063 Iustin Pop
      instancelist = self.cfg.GetInstanceList()
1934 a8083063 Iustin Pop
1935 ec223efb Iustin Pop
      for instance_name in instancelist:
1936 ec223efb Iustin Pop
        inst = self.cfg.GetInstanceInfo(instance_name)
1937 ec223efb Iustin Pop
        if inst.primary_node in node_to_primary:
1938 ec223efb Iustin Pop
          node_to_primary[inst.primary_node].add(inst.name)
1939 ec223efb Iustin Pop
        for secnode in inst.secondary_nodes:
1940 ec223efb Iustin Pop
          if secnode in node_to_secondary:
1941 ec223efb Iustin Pop
            node_to_secondary[secnode].add(inst.name)
1942 a8083063 Iustin Pop
1943 0e67cdbe Iustin Pop
    master_node = self.cfg.GetMasterNode()
1944 0e67cdbe Iustin Pop
1945 a8083063 Iustin Pop
    # end data gathering
1946 a8083063 Iustin Pop
1947 a8083063 Iustin Pop
    output = []
1948 a8083063 Iustin Pop
    for node in nodelist:
1949 a8083063 Iustin Pop
      node_output = []
1950 a8083063 Iustin Pop
      for field in self.op.output_fields:
1951 a8083063 Iustin Pop
        if field == "name":
1952 a8083063 Iustin Pop
          val = node.name
1953 ec223efb Iustin Pop
        elif field == "pinst_list":
1954 ec223efb Iustin Pop
          val = list(node_to_primary[node.name])
1955 ec223efb Iustin Pop
        elif field == "sinst_list":
1956 ec223efb Iustin Pop
          val = list(node_to_secondary[node.name])
1957 ec223efb Iustin Pop
        elif field == "pinst_cnt":
1958 ec223efb Iustin Pop
          val = len(node_to_primary[node.name])
1959 ec223efb Iustin Pop
        elif field == "sinst_cnt":
1960 ec223efb Iustin Pop
          val = len(node_to_secondary[node.name])
1961 a8083063 Iustin Pop
        elif field == "pip":
1962 a8083063 Iustin Pop
          val = node.primary_ip
1963 a8083063 Iustin Pop
        elif field == "sip":
1964 a8083063 Iustin Pop
          val = node.secondary_ip
1965 130a6a6f Iustin Pop
        elif field == "tags":
1966 130a6a6f Iustin Pop
          val = list(node.GetTags())
1967 38d7239a Iustin Pop
        elif field == "serial_no":
1968 38d7239a Iustin Pop
          val = node.serial_no
1969 0e67cdbe Iustin Pop
        elif field == "master_candidate":
1970 0e67cdbe Iustin Pop
          val = node.master_candidate
1971 0e67cdbe Iustin Pop
        elif field == "master":
1972 0e67cdbe Iustin Pop
          val = node.name == master_node
1973 9ddb5e45 Iustin Pop
        elif field == "offline":
1974 9ddb5e45 Iustin Pop
          val = node.offline
1975 0b2454b9 Iustin Pop
        elif field == "drained":
1976 0b2454b9 Iustin Pop
          val = node.drained
1977 31bf511f Iustin Pop
        elif self._FIELDS_DYNAMIC.Matches(field):
1978 ec223efb Iustin Pop
          val = live_data[node.name].get(field, None)
1979 a8083063 Iustin Pop
        else:
1980 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
1981 a8083063 Iustin Pop
        node_output.append(val)
1982 a8083063 Iustin Pop
      output.append(node_output)
1983 a8083063 Iustin Pop
1984 a8083063 Iustin Pop
    return output
1985 a8083063 Iustin Pop
1986 a8083063 Iustin Pop
1987 dcb93971 Michael Hanselmann
class LUQueryNodeVolumes(NoHooksLU):
1988 dcb93971 Michael Hanselmann
  """Logical unit for getting volumes on node(s).
1989 dcb93971 Michael Hanselmann

1990 dcb93971 Michael Hanselmann
  """
1991 dcb93971 Michael Hanselmann
  _OP_REQP = ["nodes", "output_fields"]
1992 21a15682 Guido Trotter
  REQ_BGL = False
1993 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
1994 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("node")
1995 21a15682 Guido Trotter
1996 21a15682 Guido Trotter
  def ExpandNames(self):
1997 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1998 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1999 21a15682 Guido Trotter
                       selected=self.op.output_fields)
2000 21a15682 Guido Trotter
2001 21a15682 Guido Trotter
    self.needed_locks = {}
2002 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
2003 21a15682 Guido Trotter
    if not self.op.nodes:
2004 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
2005 21a15682 Guido Trotter
    else:
2006 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
2007 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
2008 dcb93971 Michael Hanselmann
2009 dcb93971 Michael Hanselmann
  def CheckPrereq(self):
2010 dcb93971 Michael Hanselmann
    """Check prerequisites.
2011 dcb93971 Michael Hanselmann

2012 dcb93971 Michael Hanselmann
    This checks that the fields required are valid output fields.
2013 dcb93971 Michael Hanselmann

2014 dcb93971 Michael Hanselmann
    """
2015 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
2016 dcb93971 Michael Hanselmann
2017 dcb93971 Michael Hanselmann
  def Exec(self, feedback_fn):
2018 dcb93971 Michael Hanselmann
    """Computes the list of nodes and their attributes.
2019 dcb93971 Michael Hanselmann

2020 dcb93971 Michael Hanselmann
    """
2021 a7ba5e53 Iustin Pop
    nodenames = self.nodes
2022 72737a7f Iustin Pop
    volumes = self.rpc.call_node_volumes(nodenames)
2023 dcb93971 Michael Hanselmann
2024 dcb93971 Michael Hanselmann
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
2025 dcb93971 Michael Hanselmann
             in self.cfg.GetInstanceList()]
2026 dcb93971 Michael Hanselmann
2027 dcb93971 Michael Hanselmann
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
2028 dcb93971 Michael Hanselmann
2029 dcb93971 Michael Hanselmann
    output = []
2030 dcb93971 Michael Hanselmann
    for node in nodenames:
2031 781de953 Iustin Pop
      if node not in volumes or volumes[node].failed or not volumes[node].data:
2032 37d19eb2 Michael Hanselmann
        continue
2033 37d19eb2 Michael Hanselmann
2034 781de953 Iustin Pop
      node_vols = volumes[node].data[:]
2035 dcb93971 Michael Hanselmann
      node_vols.sort(key=lambda vol: vol['dev'])
2036 dcb93971 Michael Hanselmann
2037 dcb93971 Michael Hanselmann
      for vol in node_vols:
2038 dcb93971 Michael Hanselmann
        node_output = []
2039 dcb93971 Michael Hanselmann
        for field in self.op.output_fields:
2040 dcb93971 Michael Hanselmann
          if field == "node":
2041 dcb93971 Michael Hanselmann
            val = node
2042 dcb93971 Michael Hanselmann
          elif field == "phys":
2043 dcb93971 Michael Hanselmann
            val = vol['dev']
2044 dcb93971 Michael Hanselmann
          elif field == "vg":
2045 dcb93971 Michael Hanselmann
            val = vol['vg']
2046 dcb93971 Michael Hanselmann
          elif field == "name":
2047 dcb93971 Michael Hanselmann
            val = vol['name']
2048 dcb93971 Michael Hanselmann
          elif field == "size":
2049 dcb93971 Michael Hanselmann
            val = int(float(vol['size']))
2050 dcb93971 Michael Hanselmann
          elif field == "instance":
2051 dcb93971 Michael Hanselmann
            for inst in ilist:
2052 dcb93971 Michael Hanselmann
              if node not in lv_by_node[inst]:
2053 dcb93971 Michael Hanselmann
                continue
2054 dcb93971 Michael Hanselmann
              if vol['name'] in lv_by_node[inst][node]:
2055 dcb93971 Michael Hanselmann
                val = inst.name
2056 dcb93971 Michael Hanselmann
                break
2057 dcb93971 Michael Hanselmann
            else:
2058 dcb93971 Michael Hanselmann
              val = '-'
2059 dcb93971 Michael Hanselmann
          else:
2060 3ecf6786 Iustin Pop
            raise errors.ParameterError(field)
2061 dcb93971 Michael Hanselmann
          node_output.append(str(val))
2062 dcb93971 Michael Hanselmann
2063 dcb93971 Michael Hanselmann
        output.append(node_output)
2064 dcb93971 Michael Hanselmann
2065 dcb93971 Michael Hanselmann
    return output
2066 dcb93971 Michael Hanselmann
2067 dcb93971 Michael Hanselmann
2068 a8083063 Iustin Pop
class LUAddNode(LogicalUnit):
2069 a8083063 Iustin Pop
  """Logical unit for adding node to the cluster.
2070 a8083063 Iustin Pop

2071 a8083063 Iustin Pop
  """
2072 a8083063 Iustin Pop
  HPATH = "node-add"
2073 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2074 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
2075 a8083063 Iustin Pop
2076 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2077 a8083063 Iustin Pop
    """Build hooks env.
2078 a8083063 Iustin Pop

2079 a8083063 Iustin Pop
    This will run on all nodes before, and on all nodes + the new node after.
2080 a8083063 Iustin Pop

2081 a8083063 Iustin Pop
    """
2082 a8083063 Iustin Pop
    env = {
2083 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
2084 a8083063 Iustin Pop
      "NODE_NAME": self.op.node_name,
2085 a8083063 Iustin Pop
      "NODE_PIP": self.op.primary_ip,
2086 a8083063 Iustin Pop
      "NODE_SIP": self.op.secondary_ip,
2087 a8083063 Iustin Pop
      }
2088 a8083063 Iustin Pop
    nodes_0 = self.cfg.GetNodeList()
2089 a8083063 Iustin Pop
    nodes_1 = nodes_0 + [self.op.node_name, ]
2090 a8083063 Iustin Pop
    return env, nodes_0, nodes_1
2091 a8083063 Iustin Pop
2092 a8083063 Iustin Pop
  def CheckPrereq(self):
2093 a8083063 Iustin Pop
    """Check prerequisites.
2094 a8083063 Iustin Pop

2095 a8083063 Iustin Pop
    This checks:
2096 a8083063 Iustin Pop
     - the new node is not already in the config
2097 a8083063 Iustin Pop
     - it is resolvable
2098 a8083063 Iustin Pop
     - its parameters (single/dual homed) matches the cluster
2099 a8083063 Iustin Pop

2100 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
2101 a8083063 Iustin Pop

2102 a8083063 Iustin Pop
    """
2103 a8083063 Iustin Pop
    node_name = self.op.node_name
2104 a8083063 Iustin Pop
    cfg = self.cfg
2105 a8083063 Iustin Pop
2106 89e1fc26 Iustin Pop
    dns_data = utils.HostInfo(node_name)
2107 a8083063 Iustin Pop
2108 bcf043c9 Iustin Pop
    node = dns_data.name
2109 bcf043c9 Iustin Pop
    primary_ip = self.op.primary_ip = dns_data.ip
2110 a8083063 Iustin Pop
    secondary_ip = getattr(self.op, "secondary_ip", None)
2111 a8083063 Iustin Pop
    if secondary_ip is None:
2112 a8083063 Iustin Pop
      secondary_ip = primary_ip
2113 a8083063 Iustin Pop
    if not utils.IsValidIP(secondary_ip):
2114 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Invalid secondary IP given")
2115 a8083063 Iustin Pop
    self.op.secondary_ip = secondary_ip
2116 e7c6e02b Michael Hanselmann
2117 a8083063 Iustin Pop
    node_list = cfg.GetNodeList()
2118 e7c6e02b Michael Hanselmann
    if not self.op.readd and node in node_list:
2119 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is already in the configuration" %
2120 e7c6e02b Michael Hanselmann
                                 node)
2121 e7c6e02b Michael Hanselmann
    elif self.op.readd and node not in node_list:
2122 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is not in the configuration" % node)
2123 a8083063 Iustin Pop
2124 a8083063 Iustin Pop
    for existing_node_name in node_list:
2125 a8083063 Iustin Pop
      existing_node = cfg.GetNodeInfo(existing_node_name)
2126 e7c6e02b Michael Hanselmann
2127 e7c6e02b Michael Hanselmann
      if self.op.readd and node == existing_node_name:
2128 e7c6e02b Michael Hanselmann
        if (existing_node.primary_ip != primary_ip or
2129 e7c6e02b Michael Hanselmann
            existing_node.secondary_ip != secondary_ip):
2130 e7c6e02b Michael Hanselmann
          raise errors.OpPrereqError("Readded node doesn't have the same IP"
2131 e7c6e02b Michael Hanselmann
                                     " address configuration as before")
2132 e7c6e02b Michael Hanselmann
        continue
2133 e7c6e02b Michael Hanselmann
2134 a8083063 Iustin Pop
      if (existing_node.primary_ip == primary_ip or
2135 a8083063 Iustin Pop
          existing_node.secondary_ip == primary_ip or
2136 a8083063 Iustin Pop
          existing_node.primary_ip == secondary_ip or
2137 a8083063 Iustin Pop
          existing_node.secondary_ip == secondary_ip):
2138 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("New node ip address(es) conflict with"
2139 3ecf6786 Iustin Pop
                                   " existing node %s" % existing_node.name)
2140 a8083063 Iustin Pop
2141 a8083063 Iustin Pop
    # check that the type of the node (single versus dual homed) is the
2142 a8083063 Iustin Pop
    # same as for the master
2143 d6a02168 Michael Hanselmann
    myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
2144 a8083063 Iustin Pop
    master_singlehomed = myself.secondary_ip == myself.primary_ip
2145 a8083063 Iustin Pop
    newbie_singlehomed = secondary_ip == primary_ip
2146 a8083063 Iustin Pop
    if master_singlehomed != newbie_singlehomed:
2147 a8083063 Iustin Pop
      if master_singlehomed:
2148 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has no private ip but the"
2149 3ecf6786 Iustin Pop
                                   " new node has one")
2150 a8083063 Iustin Pop
      else:
2151 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has a private ip but the"
2152 3ecf6786 Iustin Pop
                                   " new node doesn't have one")
2153 a8083063 Iustin Pop
2154 a8083063 Iustin Pop
    # checks reachablity
2155 b15d625f Iustin Pop
    if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
2156 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node not reachable by ping")
2157 a8083063 Iustin Pop
2158 a8083063 Iustin Pop
    if not newbie_singlehomed:
2159 a8083063 Iustin Pop
      # check reachability from my secondary ip to newbie's secondary ip
2160 b15d625f Iustin Pop
      if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
2161 b15d625f Iustin Pop
                           source=myself.secondary_ip):
2162 f4bc1f2c Michael Hanselmann
        raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
2163 f4bc1f2c Michael Hanselmann
                                   " based ping to noded port")
2164 a8083063 Iustin Pop
2165 0fff97e9 Guido Trotter
    cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2166 ec0292f1 Iustin Pop
    mc_now, _ = self.cfg.GetMasterCandidateStats()
2167 ec0292f1 Iustin Pop
    master_candidate = mc_now < cp_size
2168 0fff97e9 Guido Trotter
2169 a8083063 Iustin Pop
    self.new_node = objects.Node(name=node,
2170 a8083063 Iustin Pop
                                 primary_ip=primary_ip,
2171 0fff97e9 Guido Trotter
                                 secondary_ip=secondary_ip,
2172 fc0fe88c Iustin Pop
                                 master_candidate=master_candidate,
2173 af64c0ea Iustin Pop
                                 offline=False, drained=False)
2174 a8083063 Iustin Pop
2175 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2176 a8083063 Iustin Pop
    """Adds the new node to the cluster.
2177 a8083063 Iustin Pop

2178 a8083063 Iustin Pop
    """
2179 a8083063 Iustin Pop
    new_node = self.new_node
2180 a8083063 Iustin Pop
    node = new_node.name
2181 a8083063 Iustin Pop
2182 a8083063 Iustin Pop
    # check connectivity
2183 72737a7f Iustin Pop
    result = self.rpc.call_version([node])[node]
2184 781de953 Iustin Pop
    result.Raise()
2185 781de953 Iustin Pop
    if result.data:
2186 781de953 Iustin Pop
      if constants.PROTOCOL_VERSION == result.data:
2187 9a4f63d1 Iustin Pop
        logging.info("Communication to node %s fine, sw version %s match",
2188 781de953 Iustin Pop
                     node, result.data)
2189 a8083063 Iustin Pop
      else:
2190 3ecf6786 Iustin Pop
        raise errors.OpExecError("Version mismatch master version %s,"
2191 3ecf6786 Iustin Pop
                                 " node version %s" %
2192 781de953 Iustin Pop
                                 (constants.PROTOCOL_VERSION, result.data))
2193 a8083063 Iustin Pop
    else:
2194 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot get version from the new node")
2195 a8083063 Iustin Pop
2196 a8083063 Iustin Pop
    # setup ssh on node
2197 9a4f63d1 Iustin Pop
    logging.info("Copy ssh key to node %s", node)
2198 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
2199 a8083063 Iustin Pop
    keyarray = []
2200 70d9e3d8 Iustin Pop
    keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
2201 70d9e3d8 Iustin Pop
                constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
2202 70d9e3d8 Iustin Pop
                priv_key, pub_key]
2203 a8083063 Iustin Pop
2204 a8083063 Iustin Pop
    for i in keyfiles:
2205 a8083063 Iustin Pop
      f = open(i, 'r')
2206 a8083063 Iustin Pop
      try:
2207 a8083063 Iustin Pop
        keyarray.append(f.read())
2208 a8083063 Iustin Pop
      finally:
2209 a8083063 Iustin Pop
        f.close()
2210 a8083063 Iustin Pop
2211 72737a7f Iustin Pop
    result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
2212 72737a7f Iustin Pop
                                    keyarray[2],
2213 72737a7f Iustin Pop
                                    keyarray[3], keyarray[4], keyarray[5])
2214 a8083063 Iustin Pop
2215 a1b805fb Iustin Pop
    msg = result.RemoteFailMsg()
2216 a1b805fb Iustin Pop
    if msg:
2217 a1b805fb Iustin Pop
      raise errors.OpExecError("Cannot transfer ssh keys to the"
2218 a1b805fb Iustin Pop
                               " new node: %s" % msg)
2219 a8083063 Iustin Pop
2220 a8083063 Iustin Pop
    # Add node to our /etc/hosts, and add key to known_hosts
2221 d9c02ca6 Michael Hanselmann
    utils.AddHostToEtcHosts(new_node.name)
2222 c8a0948f Michael Hanselmann
2223 a8083063 Iustin Pop
    if new_node.secondary_ip != new_node.primary_ip:
2224 781de953 Iustin Pop
      result = self.rpc.call_node_has_ip_address(new_node.name,
2225 781de953 Iustin Pop
                                                 new_node.secondary_ip)
2226 781de953 Iustin Pop
      if result.failed or not result.data:
2227 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Node claims it doesn't have the secondary ip"
2228 f4bc1f2c Michael Hanselmann
                                 " you gave (%s). Please fix and re-run this"
2229 f4bc1f2c Michael Hanselmann
                                 " command." % new_node.secondary_ip)
2230 a8083063 Iustin Pop
2231 d6a02168 Michael Hanselmann
    node_verify_list = [self.cfg.GetMasterNode()]
2232 5c0527ed Guido Trotter
    node_verify_param = {
2233 5c0527ed Guido Trotter
      'nodelist': [node],
2234 5c0527ed Guido Trotter
      # TODO: do a node-net-test as well?
2235 5c0527ed Guido Trotter
    }
2236 5c0527ed Guido Trotter
2237 72737a7f Iustin Pop
    result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
2238 72737a7f Iustin Pop
                                       self.cfg.GetClusterName())
2239 5c0527ed Guido Trotter
    for verifier in node_verify_list:
2240 f08ce603 Guido Trotter
      if result[verifier].failed or not result[verifier].data:
2241 5c0527ed Guido Trotter
        raise errors.OpExecError("Cannot communicate with %s's node daemon"
2242 5c0527ed Guido Trotter
                                 " for remote verification" % verifier)
2243 781de953 Iustin Pop
      if result[verifier].data['nodelist']:
2244 781de953 Iustin Pop
        for failed in result[verifier].data['nodelist']:
2245 5c0527ed Guido Trotter
          feedback_fn("ssh/hostname verification failed %s -> %s" %
2246 bafc1d90 Iustin Pop
                      (verifier, result[verifier].data['nodelist'][failed]))
2247 5c0527ed Guido Trotter
        raise errors.OpExecError("ssh/hostname verification failed.")
2248 ff98055b Iustin Pop
2249 a8083063 Iustin Pop
    # Distribute updated /etc/hosts and known_hosts to all nodes,
2250 a8083063 Iustin Pop
    # including the node just added
2251 d6a02168 Michael Hanselmann
    myself = self.cfg.GetNodeInfo(self.cfg.GetMasterNode())
2252 102b115b Michael Hanselmann
    dist_nodes = self.cfg.GetNodeList()
2253 102b115b Michael Hanselmann
    if not self.op.readd:
2254 102b115b Michael Hanselmann
      dist_nodes.append(node)
2255 a8083063 Iustin Pop
    if myself.name in dist_nodes:
2256 a8083063 Iustin Pop
      dist_nodes.remove(myself.name)
2257 a8083063 Iustin Pop
2258 9a4f63d1 Iustin Pop
    logging.debug("Copying hosts and known_hosts to all nodes")
2259 107711b0 Michael Hanselmann
    for fname in (constants.ETC_HOSTS, constants.SSH_KNOWN_HOSTS_FILE):
2260 72737a7f Iustin Pop
      result = self.rpc.call_upload_file(dist_nodes, fname)
2261 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
2262 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
2263 9a4f63d1 Iustin Pop
          logging.error("Copy of file %s to node %s failed", fname, to_node)
2264 a8083063 Iustin Pop
2265 d6a02168 Michael Hanselmann
    to_copy = []
2266 2928f08d Guido Trotter
    enabled_hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
2267 ccd905ac Guido Trotter
    if constants.HTS_COPY_VNC_PASSWORD.intersection(enabled_hypervisors):
2268 2a6469d5 Alexander Schreiber
      to_copy.append(constants.VNC_PASSWORD_FILE)
2269 2928f08d Guido Trotter
2270 a8083063 Iustin Pop
    for fname in to_copy:
2271 72737a7f Iustin Pop
      result = self.rpc.call_upload_file([node], fname)
2272 781de953 Iustin Pop
      if result[node].failed or not result[node]:
2273 9a4f63d1 Iustin Pop
        logging.error("Could not copy file %s to node %s", fname, node)
2274 a8083063 Iustin Pop
2275 d8470559 Michael Hanselmann
    if self.op.readd:
2276 d8470559 Michael Hanselmann
      self.context.ReaddNode(new_node)
2277 d8470559 Michael Hanselmann
    else:
2278 d8470559 Michael Hanselmann
      self.context.AddNode(new_node)
2279 a8083063 Iustin Pop
2280 a8083063 Iustin Pop
2281 b31c8676 Iustin Pop
class LUSetNodeParams(LogicalUnit):
2282 b31c8676 Iustin Pop
  """Modifies the parameters of a node.
2283 b31c8676 Iustin Pop

2284 b31c8676 Iustin Pop
  """
2285 b31c8676 Iustin Pop
  HPATH = "node-modify"
2286 b31c8676 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2287 b31c8676 Iustin Pop
  _OP_REQP = ["node_name"]
2288 b31c8676 Iustin Pop
  REQ_BGL = False
2289 b31c8676 Iustin Pop
2290 b31c8676 Iustin Pop
  def CheckArguments(self):
2291 b31c8676 Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2292 b31c8676 Iustin Pop
    if node_name is None:
2293 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2294 b31c8676 Iustin Pop
    self.op.node_name = node_name
2295 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'master_candidate')
2296 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'offline')
2297 c9d443ea Iustin Pop
    _CheckBooleanOpField(self.op, 'drained')
2298 c9d443ea Iustin Pop
    all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
2299 c9d443ea Iustin Pop
    if all_mods.count(None) == 3:
2300 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Please pass at least one modification")
2301 c9d443ea Iustin Pop
    if all_mods.count(True) > 1:
2302 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Can't set the node into more than one"
2303 c9d443ea Iustin Pop
                                 " state at the same time")
2304 b31c8676 Iustin Pop
2305 b31c8676 Iustin Pop
  def ExpandNames(self):
2306 b31c8676 Iustin Pop
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2307 b31c8676 Iustin Pop
2308 b31c8676 Iustin Pop
  def BuildHooksEnv(self):
2309 b31c8676 Iustin Pop
    """Build hooks env.
2310 b31c8676 Iustin Pop

2311 b31c8676 Iustin Pop
    This runs on the master node.
2312 b31c8676 Iustin Pop

2313 b31c8676 Iustin Pop
    """
2314 b31c8676 Iustin Pop
    env = {
2315 b31c8676 Iustin Pop
      "OP_TARGET": self.op.node_name,
2316 b31c8676 Iustin Pop
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2317 3a5ba66a Iustin Pop
      "OFFLINE": str(self.op.offline),
2318 c9d443ea Iustin Pop
      "DRAINED": str(self.op.drained),
2319 b31c8676 Iustin Pop
      }
2320 b31c8676 Iustin Pop
    nl = [self.cfg.GetMasterNode(),
2321 b31c8676 Iustin Pop
          self.op.node_name]
2322 b31c8676 Iustin Pop
    return env, nl, nl
2323 b31c8676 Iustin Pop
2324 b31c8676 Iustin Pop
  def CheckPrereq(self):
2325 b31c8676 Iustin Pop
    """Check prerequisites.
2326 b31c8676 Iustin Pop

2327 b31c8676 Iustin Pop
    This only checks the instance list against the existing names.
2328 b31c8676 Iustin Pop

2329 b31c8676 Iustin Pop
    """
2330 3a5ba66a Iustin Pop
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2331 b31c8676 Iustin Pop
2332 c9d443ea Iustin Pop
    if ((self.op.master_candidate == False or self.op.offline == True or
2333 c9d443ea Iustin Pop
         self.op.drained == True) and node.master_candidate):
2334 3a5ba66a Iustin Pop
      # we will demote the node from master_candidate
2335 3a26773f Iustin Pop
      if self.op.node_name == self.cfg.GetMasterNode():
2336 3a26773f Iustin Pop
        raise errors.OpPrereqError("The master node has to be a"
2337 c9d443ea Iustin Pop
                                   " master candidate, online and not drained")
2338 3e83dd48 Iustin Pop
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2339 3a5ba66a Iustin Pop
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2340 3e83dd48 Iustin Pop
      if num_candidates <= cp_size:
2341 3e83dd48 Iustin Pop
        msg = ("Not enough master candidates (desired"
2342 3e83dd48 Iustin Pop
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2343 3a5ba66a Iustin Pop
        if self.op.force:
2344 3e83dd48 Iustin Pop
          self.LogWarning(msg)
2345 3e83dd48 Iustin Pop
        else:
2346 3e83dd48 Iustin Pop
          raise errors.OpPrereqError(msg)
2347 3e83dd48 Iustin Pop
2348 c9d443ea Iustin Pop
    if (self.op.master_candidate == True and
2349 c9d443ea Iustin Pop
        ((node.offline and not self.op.offline == False) or
2350 c9d443ea Iustin Pop
         (node.drained and not self.op.drained == False))):
2351 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
2352 949bdabe Iustin Pop
                                 " to master_candidate" % node.name)
2353 3a5ba66a Iustin Pop
2354 b31c8676 Iustin Pop
    return
2355 b31c8676 Iustin Pop
2356 b31c8676 Iustin Pop
  def Exec(self, feedback_fn):
2357 b31c8676 Iustin Pop
    """Modifies a node.
2358 b31c8676 Iustin Pop

2359 b31c8676 Iustin Pop
    """
2360 3a5ba66a Iustin Pop
    node = self.node
2361 b31c8676 Iustin Pop
2362 b31c8676 Iustin Pop
    result = []
2363 c9d443ea Iustin Pop
    changed_mc = False
2364 b31c8676 Iustin Pop
2365 3a5ba66a Iustin Pop
    if self.op.offline is not None:
2366 3a5ba66a Iustin Pop
      node.offline = self.op.offline
2367 3a5ba66a Iustin Pop
      result.append(("offline", str(self.op.offline)))
2368 c9d443ea Iustin Pop
      if self.op.offline == True:
2369 c9d443ea Iustin Pop
        if node.master_candidate:
2370 c9d443ea Iustin Pop
          node.master_candidate = False
2371 c9d443ea Iustin Pop
          changed_mc = True
2372 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to offline"))
2373 c9d443ea Iustin Pop
        if node.drained:
2374 c9d443ea Iustin Pop
          node.drained = False
2375 c9d443ea Iustin Pop
          result.append(("drained", "clear drained status due to offline"))
2376 3a5ba66a Iustin Pop
2377 b31c8676 Iustin Pop
    if self.op.master_candidate is not None:
2378 b31c8676 Iustin Pop
      node.master_candidate = self.op.master_candidate
2379 c9d443ea Iustin Pop
      changed_mc = True
2380 b31c8676 Iustin Pop
      result.append(("master_candidate", str(self.op.master_candidate)))
2381 56aa9fd5 Iustin Pop
      if self.op.master_candidate == False:
2382 56aa9fd5 Iustin Pop
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2383 0959c824 Iustin Pop
        msg = rrc.RemoteFailMsg()
2384 0959c824 Iustin Pop
        if msg:
2385 0959c824 Iustin Pop
          self.LogWarning("Node failed to demote itself: %s" % msg)
2386 b31c8676 Iustin Pop
2387 c9d443ea Iustin Pop
    if self.op.drained is not None:
2388 c9d443ea Iustin Pop
      node.drained = self.op.drained
2389 82e12743 Iustin Pop
      result.append(("drained", str(self.op.drained)))
2390 c9d443ea Iustin Pop
      if self.op.drained == True:
2391 c9d443ea Iustin Pop
        if node.master_candidate:
2392 c9d443ea Iustin Pop
          node.master_candidate = False
2393 c9d443ea Iustin Pop
          changed_mc = True
2394 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to drain"))
2395 c9d443ea Iustin Pop
        if node.offline:
2396 c9d443ea Iustin Pop
          node.offline = False
2397 c9d443ea Iustin Pop
          result.append(("offline", "clear offline status due to drain"))
2398 c9d443ea Iustin Pop
2399 b31c8676 Iustin Pop
    # this will trigger configuration file update, if needed
2400 b31c8676 Iustin Pop
    self.cfg.Update(node)
2401 b31c8676 Iustin Pop
    # this will trigger job queue propagation or cleanup
2402 c9d443ea Iustin Pop
    if changed_mc:
2403 3a26773f Iustin Pop
      self.context.ReaddNode(node)
2404 b31c8676 Iustin Pop
2405 b31c8676 Iustin Pop
    return result
2406 b31c8676 Iustin Pop
2407 b31c8676 Iustin Pop
2408 a8083063 Iustin Pop
class LUQueryClusterInfo(NoHooksLU):
2409 a8083063 Iustin Pop
  """Query cluster configuration.
2410 a8083063 Iustin Pop

2411 a8083063 Iustin Pop
  """
2412 a8083063 Iustin Pop
  _OP_REQP = []
2413 642339cf Guido Trotter
  REQ_BGL = False
2414 642339cf Guido Trotter
2415 642339cf Guido Trotter
  def ExpandNames(self):
2416 642339cf Guido Trotter
    self.needed_locks = {}
2417 a8083063 Iustin Pop
2418 a8083063 Iustin Pop
  def CheckPrereq(self):
2419 a8083063 Iustin Pop
    """No prerequsites needed for this LU.
2420 a8083063 Iustin Pop

2421 a8083063 Iustin Pop
    """
2422 a8083063 Iustin Pop
    pass
2423 a8083063 Iustin Pop
2424 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2425 a8083063 Iustin Pop
    """Return cluster config.
2426 a8083063 Iustin Pop

2427 a8083063 Iustin Pop
    """
2428 469f88e1 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
2429 a8083063 Iustin Pop
    result = {
2430 a8083063 Iustin Pop
      "software_version": constants.RELEASE_VERSION,
2431 a8083063 Iustin Pop
      "protocol_version": constants.PROTOCOL_VERSION,
2432 a8083063 Iustin Pop
      "config_version": constants.CONFIG_VERSION,
2433 a8083063 Iustin Pop
      "os_api_version": constants.OS_API_VERSION,
2434 a8083063 Iustin Pop
      "export_version": constants.EXPORT_VERSION,
2435 a8083063 Iustin Pop
      "architecture": (platform.architecture()[0], platform.machine()),
2436 469f88e1 Iustin Pop
      "name": cluster.cluster_name,
2437 469f88e1 Iustin Pop
      "master": cluster.master_node,
2438 02691904 Alexander Schreiber
      "default_hypervisor": cluster.default_hypervisor,
2439 469f88e1 Iustin Pop
      "enabled_hypervisors": cluster.enabled_hypervisors,
2440 7a735d6a Guido Trotter
      "hvparams": dict([(hypervisor, cluster.hvparams[hypervisor])
2441 7a735d6a Guido Trotter
                        for hypervisor in cluster.enabled_hypervisors]),
2442 469f88e1 Iustin Pop
      "beparams": cluster.beparams,
2443 4b7735f9 Iustin Pop
      "candidate_pool_size": cluster.candidate_pool_size,
2444 a8083063 Iustin Pop
      }
2445 a8083063 Iustin Pop
2446 a8083063 Iustin Pop
    return result
2447 a8083063 Iustin Pop
2448 a8083063 Iustin Pop
2449 ae5849b5 Michael Hanselmann
class LUQueryConfigValues(NoHooksLU):
2450 ae5849b5 Michael Hanselmann
  """Return configuration values.
2451 a8083063 Iustin Pop

2452 a8083063 Iustin Pop
  """
2453 a8083063 Iustin Pop
  _OP_REQP = []
2454 642339cf Guido Trotter
  REQ_BGL = False
2455 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet()
2456 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2457 642339cf Guido Trotter
2458 642339cf Guido Trotter
  def ExpandNames(self):
2459 642339cf Guido Trotter
    self.needed_locks = {}
2460 a8083063 Iustin Pop
2461 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2462 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2463 ae5849b5 Michael Hanselmann
                       selected=self.op.output_fields)
2464 ae5849b5 Michael Hanselmann
2465 a8083063 Iustin Pop
  def CheckPrereq(self):
2466 a8083063 Iustin Pop
    """No prerequisites.
2467 a8083063 Iustin Pop

2468 a8083063 Iustin Pop
    """
2469 a8083063 Iustin Pop
    pass
2470 a8083063 Iustin Pop
2471 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2472 a8083063 Iustin Pop
    """Dump a representation of the cluster config to the standard output.
2473 a8083063 Iustin Pop

2474 a8083063 Iustin Pop
    """
2475 ae5849b5 Michael Hanselmann
    values = []
2476 ae5849b5 Michael Hanselmann
    for field in self.op.output_fields:
2477 ae5849b5 Michael Hanselmann
      if field == "cluster_name":
2478 3ccafd0e Iustin Pop
        entry = self.cfg.GetClusterName()
2479 ae5849b5 Michael Hanselmann
      elif field == "master_node":
2480 3ccafd0e Iustin Pop
        entry = self.cfg.GetMasterNode()
2481 3ccafd0e Iustin Pop
      elif field == "drain_flag":
2482 3ccafd0e Iustin Pop
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2483 ae5849b5 Michael Hanselmann
      else:
2484 ae5849b5 Michael Hanselmann
        raise errors.ParameterError(field)
2485 3ccafd0e Iustin Pop
      values.append(entry)
2486 ae5849b5 Michael Hanselmann
    return values
2487 a8083063 Iustin Pop
2488 a8083063 Iustin Pop
2489 a8083063 Iustin Pop
class LUActivateInstanceDisks(NoHooksLU):
2490 a8083063 Iustin Pop
  """Bring up an instance's disks.
2491 a8083063 Iustin Pop

2492 a8083063 Iustin Pop
  """
2493 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2494 f22a8ba3 Guido Trotter
  REQ_BGL = False
2495 f22a8ba3 Guido Trotter
2496 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2497 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2498 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2499 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2500 f22a8ba3 Guido Trotter
2501 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2502 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2503 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2504 a8083063 Iustin Pop
2505 a8083063 Iustin Pop
  def CheckPrereq(self):
2506 a8083063 Iustin Pop
    """Check prerequisites.
2507 a8083063 Iustin Pop

2508 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2509 a8083063 Iustin Pop

2510 a8083063 Iustin Pop
    """
2511 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2512 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2513 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2514 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2515 a8083063 Iustin Pop
2516 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2517 a8083063 Iustin Pop
    """Activate the disks.
2518 a8083063 Iustin Pop

2519 a8083063 Iustin Pop
    """
2520 b9bddb6b Iustin Pop
    disks_ok, disks_info = _AssembleInstanceDisks(self, self.instance)
2521 a8083063 Iustin Pop
    if not disks_ok:
2522 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot activate block devices")
2523 a8083063 Iustin Pop
2524 a8083063 Iustin Pop
    return disks_info
2525 a8083063 Iustin Pop
2526 a8083063 Iustin Pop
2527 b9bddb6b Iustin Pop
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False):
2528 a8083063 Iustin Pop
  """Prepare the block devices for an instance.
2529 a8083063 Iustin Pop

2530 a8083063 Iustin Pop
  This sets up the block devices on all nodes.
2531 a8083063 Iustin Pop

2532 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
2533 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
2534 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
2535 e4376078 Iustin Pop
  @param instance: the instance for whose disks we assemble
2536 e4376078 Iustin Pop
  @type ignore_secondaries: boolean
2537 e4376078 Iustin Pop
  @param ignore_secondaries: if true, errors on secondary nodes
2538 e4376078 Iustin Pop
      won't result in an error return from the function
2539 e4376078 Iustin Pop
  @return: False if the operation failed, otherwise a list of
2540 e4376078 Iustin Pop
      (host, instance_visible_name, node_visible_name)
2541 e4376078 Iustin Pop
      with the mapping from node devices to instance devices
2542 a8083063 Iustin Pop

2543 a8083063 Iustin Pop
  """
2544 a8083063 Iustin Pop
  device_info = []
2545 a8083063 Iustin Pop
  disks_ok = True
2546 fdbd668d Iustin Pop
  iname = instance.name
2547 fdbd668d Iustin Pop
  # With the two passes mechanism we try to reduce the window of
2548 fdbd668d Iustin Pop
  # opportunity for the race condition of switching DRBD to primary
2549 fdbd668d Iustin Pop
  # before handshaking occured, but we do not eliminate it
2550 fdbd668d Iustin Pop
2551 fdbd668d Iustin Pop
  # The proper fix would be to wait (with some limits) until the
2552 fdbd668d Iustin Pop
  # connection has been made and drbd transitions from WFConnection
2553 fdbd668d Iustin Pop
  # into any other network-connected state (Connected, SyncTarget,
2554 fdbd668d Iustin Pop
  # SyncSource, etc.)
2555 fdbd668d Iustin Pop
2556 fdbd668d Iustin Pop
  # 1st pass, assemble on all nodes in secondary mode
2557 a8083063 Iustin Pop
  for inst_disk in instance.disks:
2558 a8083063 Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2559 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2560 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
2561 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2562 53c14ef1 Iustin Pop
      if msg:
2563 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2564 53c14ef1 Iustin Pop
                           " (is_primary=False, pass=1): %s",
2565 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2566 fdbd668d Iustin Pop
        if not ignore_secondaries:
2567 a8083063 Iustin Pop
          disks_ok = False
2568 fdbd668d Iustin Pop
2569 fdbd668d Iustin Pop
  # FIXME: race condition on drbd migration to primary
2570 fdbd668d Iustin Pop
2571 fdbd668d Iustin Pop
  # 2nd pass, do only the primary node
2572 fdbd668d Iustin Pop
  for inst_disk in instance.disks:
2573 fdbd668d Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2574 fdbd668d Iustin Pop
      if node != instance.primary_node:
2575 fdbd668d Iustin Pop
        continue
2576 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2577 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
2578 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2579 53c14ef1 Iustin Pop
      if msg:
2580 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2581 53c14ef1 Iustin Pop
                           " (is_primary=True, pass=2): %s",
2582 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2583 fdbd668d Iustin Pop
        disks_ok = False
2584 1dff8e07 Iustin Pop
    device_info.append((instance.primary_node, inst_disk.iv_name,
2585 1dff8e07 Iustin Pop
                        result.payload))
2586 a8083063 Iustin Pop
2587 b352ab5b Iustin Pop
  # leave the disks configured for the primary node
2588 b352ab5b Iustin Pop
  # this is a workaround that would be fixed better by
2589 b352ab5b Iustin Pop
  # improving the logical/physical id handling
2590 b352ab5b Iustin Pop
  for disk in instance.disks:
2591 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(disk, instance.primary_node)
2592 b352ab5b Iustin Pop
2593 a8083063 Iustin Pop
  return disks_ok, device_info
2594 a8083063 Iustin Pop
2595 a8083063 Iustin Pop
2596 b9bddb6b Iustin Pop
def _StartInstanceDisks(lu, instance, force):
2597 3ecf6786 Iustin Pop
  """Start the disks of an instance.
2598 3ecf6786 Iustin Pop

2599 3ecf6786 Iustin Pop
  """
2600 b9bddb6b Iustin Pop
  disks_ok, dummy = _AssembleInstanceDisks(lu, instance,
2601 fe7b0351 Michael Hanselmann
                                           ignore_secondaries=force)
2602 fe7b0351 Michael Hanselmann
  if not disks_ok:
2603 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(lu, instance)
2604 fe7b0351 Michael Hanselmann
    if force is not None and not force:
2605 86d9d3bb Iustin Pop
      lu.proc.LogWarning("", hint="If the message above refers to a"
2606 86d9d3bb Iustin Pop
                         " secondary node,"
2607 86d9d3bb Iustin Pop
                         " you can retry the operation using '--force'.")
2608 3ecf6786 Iustin Pop
    raise errors.OpExecError("Disk consistency error")
2609 fe7b0351 Michael Hanselmann
2610 fe7b0351 Michael Hanselmann
2611 a8083063 Iustin Pop
class LUDeactivateInstanceDisks(NoHooksLU):
2612 a8083063 Iustin Pop
  """Shutdown an instance's disks.
2613 a8083063 Iustin Pop

2614 a8083063 Iustin Pop
  """
2615 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2616 f22a8ba3 Guido Trotter
  REQ_BGL = False
2617 f22a8ba3 Guido Trotter
2618 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2619 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2620 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2621 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2622 f22a8ba3 Guido Trotter
2623 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2624 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2625 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2626 a8083063 Iustin Pop
2627 a8083063 Iustin Pop
  def CheckPrereq(self):
2628 a8083063 Iustin Pop
    """Check prerequisites.
2629 a8083063 Iustin Pop

2630 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2631 a8083063 Iustin Pop

2632 a8083063 Iustin Pop
    """
2633 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2634 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2635 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2636 a8083063 Iustin Pop
2637 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2638 a8083063 Iustin Pop
    """Deactivate the disks
2639 a8083063 Iustin Pop

2640 a8083063 Iustin Pop
    """
2641 a8083063 Iustin Pop
    instance = self.instance
2642 b9bddb6b Iustin Pop
    _SafeShutdownInstanceDisks(self, instance)
2643 a8083063 Iustin Pop
2644 a8083063 Iustin Pop
2645 b9bddb6b Iustin Pop
def _SafeShutdownInstanceDisks(lu, instance):
2646 155d6c75 Guido Trotter
  """Shutdown block devices of an instance.
2647 155d6c75 Guido Trotter

2648 155d6c75 Guido Trotter
  This function checks if an instance is running, before calling
2649 155d6c75 Guido Trotter
  _ShutdownInstanceDisks.
2650 155d6c75 Guido Trotter

2651 155d6c75 Guido Trotter
  """
2652 72737a7f Iustin Pop
  ins_l = lu.rpc.call_instance_list([instance.primary_node],
2653 72737a7f Iustin Pop
                                      [instance.hypervisor])
2654 155d6c75 Guido Trotter
  ins_l = ins_l[instance.primary_node]
2655 781de953 Iustin Pop
  if ins_l.failed or not isinstance(ins_l.data, list):
2656 155d6c75 Guido Trotter
    raise errors.OpExecError("Can't contact node '%s'" %
2657 155d6c75 Guido Trotter
                             instance.primary_node)
2658 155d6c75 Guido Trotter
2659 781de953 Iustin Pop
  if instance.name in ins_l.data:
2660 155d6c75 Guido Trotter
    raise errors.OpExecError("Instance is running, can't shutdown"
2661 155d6c75 Guido Trotter
                             " block devices.")
2662 155d6c75 Guido Trotter
2663 b9bddb6b Iustin Pop
  _ShutdownInstanceDisks(lu, instance)
2664 a8083063 Iustin Pop
2665 a8083063 Iustin Pop
2666 b9bddb6b Iustin Pop
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2667 a8083063 Iustin Pop
  """Shutdown block devices of an instance.
2668 a8083063 Iustin Pop

2669 a8083063 Iustin Pop
  This does the shutdown on all nodes of the instance.
2670 a8083063 Iustin Pop

2671 a8083063 Iustin Pop
  If the ignore_primary is false, errors on the primary node are
2672 a8083063 Iustin Pop
  ignored.
2673 a8083063 Iustin Pop

2674 a8083063 Iustin Pop
  """
2675 cacfd1fd Iustin Pop
  all_result = True
2676 a8083063 Iustin Pop
  for disk in instance.disks:
2677 a8083063 Iustin Pop
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2678 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(top_disk, node)
2679 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2680 cacfd1fd Iustin Pop
      msg = result.RemoteFailMsg()
2681 cacfd1fd Iustin Pop
      if msg:
2682 cacfd1fd Iustin Pop
        lu.LogWarning("Could not shutdown block device %s on node %s: %s",
2683 cacfd1fd Iustin Pop
                      disk.iv_name, node, msg)
2684 a8083063 Iustin Pop
        if not ignore_primary or node != instance.primary_node:
2685 cacfd1fd Iustin Pop
          all_result = False
2686 cacfd1fd Iustin Pop
  return all_result
2687 a8083063 Iustin Pop
2688 a8083063 Iustin Pop
2689 9ca87a96 Iustin Pop
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2690 d4f16fd9 Iustin Pop
  """Checks if a node has enough free memory.
2691 d4f16fd9 Iustin Pop

2692 d4f16fd9 Iustin Pop
  This function check if a given node has the needed amount of free
2693 d4f16fd9 Iustin Pop
  memory. In case the node has less memory or we cannot get the
2694 d4f16fd9 Iustin Pop
  information from the node, this function raise an OpPrereqError
2695 d4f16fd9 Iustin Pop
  exception.
2696 d4f16fd9 Iustin Pop

2697 b9bddb6b Iustin Pop
  @type lu: C{LogicalUnit}
2698 b9bddb6b Iustin Pop
  @param lu: a logical unit from which we get configuration data
2699 e69d05fd Iustin Pop
  @type node: C{str}
2700 e69d05fd Iustin Pop
  @param node: the node to check
2701 e69d05fd Iustin Pop
  @type reason: C{str}
2702 e69d05fd Iustin Pop
  @param reason: string to use in the error message
2703 e69d05fd Iustin Pop
  @type requested: C{int}
2704 e69d05fd Iustin Pop
  @param requested: the amount of memory in MiB to check for
2705 9ca87a96 Iustin Pop
  @type hypervisor_name: C{str}
2706 9ca87a96 Iustin Pop
  @param hypervisor_name: the hypervisor to ask for memory stats
2707 e69d05fd Iustin Pop
  @raise errors.OpPrereqError: if the node doesn't have enough memory, or
2708 e69d05fd Iustin Pop
      we cannot check the node
2709 d4f16fd9 Iustin Pop

2710 d4f16fd9 Iustin Pop
  """
2711 9ca87a96 Iustin Pop
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2712 781de953 Iustin Pop
  nodeinfo[node].Raise()
2713 781de953 Iustin Pop
  free_mem = nodeinfo[node].data.get('memory_free')
2714 d4f16fd9 Iustin Pop
  if not isinstance(free_mem, int):
2715 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2716 d4f16fd9 Iustin Pop
                             " was '%s'" % (node, free_mem))
2717 d4f16fd9 Iustin Pop
  if requested > free_mem:
2718 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2719 d4f16fd9 Iustin Pop
                             " needed %s MiB, available %s MiB" %
2720 d4f16fd9 Iustin Pop
                             (node, reason, requested, free_mem))
2721 d4f16fd9 Iustin Pop
2722 d4f16fd9 Iustin Pop
2723 a8083063 Iustin Pop
class LUStartupInstance(LogicalUnit):
2724 a8083063 Iustin Pop
  """Starts an instance.
2725 a8083063 Iustin Pop

2726 a8083063 Iustin Pop
  """
2727 a8083063 Iustin Pop
  HPATH = "instance-start"
2728 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2729 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "force"]
2730 e873317a Guido Trotter
  REQ_BGL = False
2731 e873317a Guido Trotter
2732 e873317a Guido Trotter
  def ExpandNames(self):
2733 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2734 a8083063 Iustin Pop
2735 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2736 a8083063 Iustin Pop
    """Build hooks env.
2737 a8083063 Iustin Pop

2738 a8083063 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
2739 a8083063 Iustin Pop

2740 a8083063 Iustin Pop
    """
2741 a8083063 Iustin Pop
    env = {
2742 a8083063 Iustin Pop
      "FORCE": self.op.force,
2743 a8083063 Iustin Pop
      }
2744 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2745 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2746 a8083063 Iustin Pop
    return env, nl, nl
2747 a8083063 Iustin Pop
2748 a8083063 Iustin Pop
  def CheckPrereq(self):
2749 a8083063 Iustin Pop
    """Check prerequisites.
2750 a8083063 Iustin Pop

2751 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2752 a8083063 Iustin Pop

2753 a8083063 Iustin Pop
    """
2754 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2755 e873317a Guido Trotter
    assert self.instance is not None, \
2756 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2757 a8083063 Iustin Pop
2758 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2759 7527a8a4 Iustin Pop
2760 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
2761 a8083063 Iustin Pop
    # check bridges existance
2762 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2763 a8083063 Iustin Pop
2764 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, instance.primary_node,
2765 d4f16fd9 Iustin Pop
                         "starting instance %s" % instance.name,
2766 338e51e8 Iustin Pop
                         bep[constants.BE_MEMORY], instance.hypervisor)
2767 d4f16fd9 Iustin Pop
2768 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2769 a8083063 Iustin Pop
    """Start the instance.
2770 a8083063 Iustin Pop

2771 a8083063 Iustin Pop
    """
2772 a8083063 Iustin Pop
    instance = self.instance
2773 a8083063 Iustin Pop
    force = self.op.force
2774 a8083063 Iustin Pop
2775 fe482621 Iustin Pop
    self.cfg.MarkInstanceUp(instance.name)
2776 fe482621 Iustin Pop
2777 a8083063 Iustin Pop
    node_current = instance.primary_node
2778 a8083063 Iustin Pop
2779 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, instance, force)
2780 a8083063 Iustin Pop
2781 07813a9e Iustin Pop
    result = self.rpc.call_instance_start(node_current, instance)
2782 dd279568 Iustin Pop
    msg = result.RemoteFailMsg()
2783 dd279568 Iustin Pop
    if msg:
2784 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2785 dd279568 Iustin Pop
      raise errors.OpExecError("Could not start instance: %s" % msg)
2786 a8083063 Iustin Pop
2787 a8083063 Iustin Pop
2788 bf6929a2 Alexander Schreiber
class LURebootInstance(LogicalUnit):
2789 bf6929a2 Alexander Schreiber
  """Reboot an instance.
2790 bf6929a2 Alexander Schreiber

2791 bf6929a2 Alexander Schreiber
  """
2792 bf6929a2 Alexander Schreiber
  HPATH = "instance-reboot"
2793 bf6929a2 Alexander Schreiber
  HTYPE = constants.HTYPE_INSTANCE
2794 bf6929a2 Alexander Schreiber
  _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
2795 e873317a Guido Trotter
  REQ_BGL = False
2796 e873317a Guido Trotter
2797 e873317a Guido Trotter
  def ExpandNames(self):
2798 0fcc5db3 Guido Trotter
    if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
2799 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2800 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL]:
2801 0fcc5db3 Guido Trotter
      raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
2802 0fcc5db3 Guido Trotter
                                  (constants.INSTANCE_REBOOT_SOFT,
2803 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2804 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL))
2805 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2806 bf6929a2 Alexander Schreiber
2807 bf6929a2 Alexander Schreiber
  def BuildHooksEnv(self):
2808 bf6929a2 Alexander Schreiber
    """Build hooks env.
2809 bf6929a2 Alexander Schreiber

2810 bf6929a2 Alexander Schreiber
    This runs on master, primary and secondary nodes of the instance.
2811 bf6929a2 Alexander Schreiber

2812 bf6929a2 Alexander Schreiber
    """
2813 bf6929a2 Alexander Schreiber
    env = {
2814 bf6929a2 Alexander Schreiber
      "IGNORE_SECONDARIES": self.op.ignore_secondaries,
2815 2c2690c9 Iustin Pop
      "REBOOT_TYPE": self.op.reboot_type,
2816 bf6929a2 Alexander Schreiber
      }
2817 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2818 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2819 bf6929a2 Alexander Schreiber
    return env, nl, nl
2820 bf6929a2 Alexander Schreiber
2821 bf6929a2 Alexander Schreiber
  def CheckPrereq(self):
2822 bf6929a2 Alexander Schreiber
    """Check prerequisites.
2823 bf6929a2 Alexander Schreiber

2824 bf6929a2 Alexander Schreiber
    This checks that the instance is in the cluster.
2825 bf6929a2 Alexander Schreiber

2826 bf6929a2 Alexander Schreiber
    """
2827 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2828 e873317a Guido Trotter
    assert self.instance is not None, \
2829 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2830 bf6929a2 Alexander Schreiber
2831 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2832 7527a8a4 Iustin Pop
2833 bf6929a2 Alexander Schreiber
    # check bridges existance
2834 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2835 bf6929a2 Alexander Schreiber
2836 bf6929a2 Alexander Schreiber
  def Exec(self, feedback_fn):
2837 bf6929a2 Alexander Schreiber
    """Reboot the instance.
2838 bf6929a2 Alexander Schreiber

2839 bf6929a2 Alexander Schreiber
    """
2840 bf6929a2 Alexander Schreiber
    instance = self.instance
2841 bf6929a2 Alexander Schreiber
    ignore_secondaries = self.op.ignore_secondaries
2842 bf6929a2 Alexander Schreiber
    reboot_type = self.op.reboot_type
2843 bf6929a2 Alexander Schreiber
2844 bf6929a2 Alexander Schreiber
    node_current = instance.primary_node
2845 bf6929a2 Alexander Schreiber
2846 bf6929a2 Alexander Schreiber
    if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
2847 bf6929a2 Alexander Schreiber
                       constants.INSTANCE_REBOOT_HARD]:
2848 ae48ac32 Iustin Pop
      for disk in instance.disks:
2849 ae48ac32 Iustin Pop
        self.cfg.SetDiskID(disk, node_current)
2850 781de953 Iustin Pop
      result = self.rpc.call_instance_reboot(node_current, instance,
2851 07813a9e Iustin Pop
                                             reboot_type)
2852 489fcbe9 Iustin Pop
      msg = result.RemoteFailMsg()
2853 489fcbe9 Iustin Pop
      if msg:
2854 489fcbe9 Iustin Pop
        raise errors.OpExecError("Could not reboot instance: %s" % msg)
2855 bf6929a2 Alexander Schreiber
    else:
2856 1fae010f Iustin Pop
      result = self.rpc.call_instance_shutdown(node_current, instance)
2857 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
2858 1fae010f Iustin Pop
      if msg:
2859 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance for"
2860 1fae010f Iustin Pop
                                 " full reboot: %s" % msg)
2861 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2862 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, ignore_secondaries)
2863 07813a9e Iustin Pop
      result = self.rpc.call_instance_start(node_current, instance)
2864 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
2865 dd279568 Iustin Pop
      if msg:
2866 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
2867 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance for"
2868 dd279568 Iustin Pop
                                 " full reboot: %s" % msg)
2869 bf6929a2 Alexander Schreiber
2870 bf6929a2 Alexander Schreiber
    self.cfg.MarkInstanceUp(instance.name)
2871 bf6929a2 Alexander Schreiber
2872 bf6929a2 Alexander Schreiber
2873 a8083063 Iustin Pop
class LUShutdownInstance(LogicalUnit):
2874 a8083063 Iustin Pop
  """Shutdown an instance.
2875 a8083063 Iustin Pop

2876 a8083063 Iustin Pop
  """
2877 a8083063 Iustin Pop
  HPATH = "instance-stop"
2878 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2879 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2880 e873317a Guido Trotter
  REQ_BGL = False
2881 e873317a Guido Trotter
2882 e873317a Guido Trotter
  def ExpandNames(self):
2883 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2884 a8083063 Iustin Pop
2885 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2886 a8083063 Iustin Pop
    """Build hooks env.
2887 a8083063 Iustin Pop

2888 a8083063 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
2889 a8083063 Iustin Pop

2890 a8083063 Iustin Pop
    """
2891 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2892 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2893 a8083063 Iustin Pop
    return env, nl, nl
2894 a8083063 Iustin Pop
2895 a8083063 Iustin Pop
  def CheckPrereq(self):
2896 a8083063 Iustin Pop
    """Check prerequisites.
2897 a8083063 Iustin Pop

2898 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2899 a8083063 Iustin Pop

2900 a8083063 Iustin Pop
    """
2901 e873317a Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2902 e873317a Guido Trotter
    assert self.instance is not None, \
2903 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2904 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2905 a8083063 Iustin Pop
2906 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2907 a8083063 Iustin Pop
    """Shutdown the instance.
2908 a8083063 Iustin Pop

2909 a8083063 Iustin Pop
    """
2910 a8083063 Iustin Pop
    instance = self.instance
2911 a8083063 Iustin Pop
    node_current = instance.primary_node
2912 fe482621 Iustin Pop
    self.cfg.MarkInstanceDown(instance.name)
2913 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(node_current, instance)
2914 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
2915 1fae010f Iustin Pop
    if msg:
2916 1fae010f Iustin Pop
      self.proc.LogWarning("Could not shutdown instance: %s" % msg)
2917 a8083063 Iustin Pop
2918 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(self, instance)
2919 a8083063 Iustin Pop
2920 a8083063 Iustin Pop
2921 fe7b0351 Michael Hanselmann
class LUReinstallInstance(LogicalUnit):
2922 fe7b0351 Michael Hanselmann
  """Reinstall an instance.
2923 fe7b0351 Michael Hanselmann

2924 fe7b0351 Michael Hanselmann
  """
2925 fe7b0351 Michael Hanselmann
  HPATH = "instance-reinstall"
2926 fe7b0351 Michael Hanselmann
  HTYPE = constants.HTYPE_INSTANCE
2927 fe7b0351 Michael Hanselmann
  _OP_REQP = ["instance_name"]
2928 4e0b4d2d Guido Trotter
  REQ_BGL = False
2929 4e0b4d2d Guido Trotter
2930 4e0b4d2d Guido Trotter
  def ExpandNames(self):
2931 4e0b4d2d Guido Trotter
    self._ExpandAndLockInstance()
2932 fe7b0351 Michael Hanselmann
2933 fe7b0351 Michael Hanselmann
  def BuildHooksEnv(self):
2934 fe7b0351 Michael Hanselmann
    """Build hooks env.
2935 fe7b0351 Michael Hanselmann

2936 fe7b0351 Michael Hanselmann
    This runs on master, primary and secondary nodes of the instance.
2937 fe7b0351 Michael Hanselmann

2938 fe7b0351 Michael Hanselmann
    """
2939 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2940 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2941 fe7b0351 Michael Hanselmann
    return env, nl, nl
2942 fe7b0351 Michael Hanselmann
2943 fe7b0351 Michael Hanselmann
  def CheckPrereq(self):
2944 fe7b0351 Michael Hanselmann
    """Check prerequisites.
2945 fe7b0351 Michael Hanselmann

2946 fe7b0351 Michael Hanselmann
    This checks that the instance is in the cluster and is not running.
2947 fe7b0351 Michael Hanselmann

2948 fe7b0351 Michael Hanselmann
    """
2949 4e0b4d2d Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2950 4e0b4d2d Guido Trotter
    assert instance is not None, \
2951 4e0b4d2d Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2952 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2953 4e0b4d2d Guido Trotter
2954 fe7b0351 Michael Hanselmann
    if instance.disk_template == constants.DT_DISKLESS:
2955 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' has no disks" %
2956 3ecf6786 Iustin Pop
                                 self.op.instance_name)
2957 0d68c45d Iustin Pop
    if instance.admin_up:
2958 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2959 3ecf6786 Iustin Pop
                                 self.op.instance_name)
2960 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2961 72737a7f Iustin Pop
                                              instance.name,
2962 72737a7f Iustin Pop
                                              instance.hypervisor)
2963 781de953 Iustin Pop
    if remote_info.failed or remote_info.data:
2964 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2965 3ecf6786 Iustin Pop
                                 (self.op.instance_name,
2966 3ecf6786 Iustin Pop
                                  instance.primary_node))
2967 d0834de3 Michael Hanselmann
2968 d0834de3 Michael Hanselmann
    self.op.os_type = getattr(self.op, "os_type", None)
2969 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
2970 d0834de3 Michael Hanselmann
      # OS verification
2971 d0834de3 Michael Hanselmann
      pnode = self.cfg.GetNodeInfo(
2972 d0834de3 Michael Hanselmann
        self.cfg.ExpandNodeName(instance.primary_node))
2973 d0834de3 Michael Hanselmann
      if pnode is None:
2974 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Primary node '%s' is unknown" %
2975 3ecf6786 Iustin Pop
                                   self.op.pnode)
2976 781de953 Iustin Pop
      result = self.rpc.call_os_get(pnode.name, self.op.os_type)
2977 781de953 Iustin Pop
      result.Raise()
2978 781de953 Iustin Pop
      if not isinstance(result.data, objects.OS):
2979 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("OS '%s' not in supported OS list for"
2980 3ecf6786 Iustin Pop
                                   " primary node"  % self.op.os_type)
2981 d0834de3 Michael Hanselmann
2982 fe7b0351 Michael Hanselmann
    self.instance = instance
2983 fe7b0351 Michael Hanselmann
2984 fe7b0351 Michael Hanselmann
  def Exec(self, feedback_fn):
2985 fe7b0351 Michael Hanselmann
    """Reinstall the instance.
2986 fe7b0351 Michael Hanselmann

2987 fe7b0351 Michael Hanselmann
    """
2988 fe7b0351 Michael Hanselmann
    inst = self.instance
2989 fe7b0351 Michael Hanselmann
2990 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
2991 d0834de3 Michael Hanselmann
      feedback_fn("Changing OS to '%s'..." % self.op.os_type)
2992 d0834de3 Michael Hanselmann
      inst.os = self.op.os_type
2993 97abc79f Iustin Pop
      self.cfg.Update(inst)
2994 d0834de3 Michael Hanselmann
2995 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
2996 fe7b0351 Michael Hanselmann
    try:
2997 fe7b0351 Michael Hanselmann
      feedback_fn("Running the instance OS create scripts...")
2998 781de953 Iustin Pop
      result = self.rpc.call_instance_os_add(inst.primary_node, inst)
2999 20e01edd Iustin Pop
      msg = result.RemoteFailMsg()
3000 20e01edd Iustin Pop
      if msg:
3001 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Could not install OS for instance %s"
3002 20e01edd Iustin Pop
                                 " on node %s: %s" %
3003 20e01edd Iustin Pop
                                 (inst.name, inst.primary_node, msg))
3004 fe7b0351 Michael Hanselmann
    finally:
3005 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3006 fe7b0351 Michael Hanselmann
3007 fe7b0351 Michael Hanselmann
3008 decd5f45 Iustin Pop
class LURenameInstance(LogicalUnit):
3009 decd5f45 Iustin Pop
  """Rename an instance.
3010 decd5f45 Iustin Pop

3011 decd5f45 Iustin Pop
  """
3012 decd5f45 Iustin Pop
  HPATH = "instance-rename"
3013 decd5f45 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3014 decd5f45 Iustin Pop
  _OP_REQP = ["instance_name", "new_name"]
3015 decd5f45 Iustin Pop
3016 decd5f45 Iustin Pop
  def BuildHooksEnv(self):
3017 decd5f45 Iustin Pop
    """Build hooks env.
3018 decd5f45 Iustin Pop

3019 decd5f45 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
3020 decd5f45 Iustin Pop

3021 decd5f45 Iustin Pop
    """
3022 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3023 decd5f45 Iustin Pop
    env["INSTANCE_NEW_NAME"] = self.op.new_name
3024 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3025 decd5f45 Iustin Pop
    return env, nl, nl
3026 decd5f45 Iustin Pop
3027 decd5f45 Iustin Pop
  def CheckPrereq(self):
3028 decd5f45 Iustin Pop
    """Check prerequisites.
3029 decd5f45 Iustin Pop

3030 decd5f45 Iustin Pop
    This checks that the instance is in the cluster and is not running.
3031 decd5f45 Iustin Pop

3032 decd5f45 Iustin Pop
    """
3033 decd5f45 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3034 decd5f45 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3035 decd5f45 Iustin Pop
    if instance is None:
3036 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3037 decd5f45 Iustin Pop
                                 self.op.instance_name)
3038 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3039 7527a8a4 Iustin Pop
3040 0d68c45d Iustin Pop
    if instance.admin_up:
3041 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
3042 decd5f45 Iustin Pop
                                 self.op.instance_name)
3043 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
3044 72737a7f Iustin Pop
                                              instance.name,
3045 72737a7f Iustin Pop
                                              instance.hypervisor)
3046 781de953 Iustin Pop
    remote_info.Raise()
3047 781de953 Iustin Pop
    if remote_info.data:
3048 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
3049 decd5f45 Iustin Pop
                                 (self.op.instance_name,
3050 decd5f45 Iustin Pop
                                  instance.primary_node))
3051 decd5f45 Iustin Pop
    self.instance = instance
3052 decd5f45 Iustin Pop
3053 decd5f45 Iustin Pop
    # new name verification
3054 89e1fc26 Iustin Pop
    name_info = utils.HostInfo(self.op.new_name)
3055 decd5f45 Iustin Pop
3056 89e1fc26 Iustin Pop
    self.op.new_name = new_name = name_info.name
3057 7bde3275 Guido Trotter
    instance_list = self.cfg.GetInstanceList()
3058 7bde3275 Guido Trotter
    if new_name in instance_list:
3059 7bde3275 Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
3060 c09f363f Manuel Franceschini
                                 new_name)
3061 7bde3275 Guido Trotter
3062 decd5f45 Iustin Pop
    if not getattr(self.op, "ignore_ip", False):
3063 937f983d Guido Trotter
      if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
3064 decd5f45 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
3065 89e1fc26 Iustin Pop
                                   (name_info.ip, new_name))
3066 decd5f45 Iustin Pop
3067 decd5f45 Iustin Pop
3068 decd5f45 Iustin Pop
  def Exec(self, feedback_fn):
3069 decd5f45 Iustin Pop
    """Reinstall the instance.
3070 decd5f45 Iustin Pop

3071 decd5f45 Iustin Pop
    """
3072 decd5f45 Iustin Pop
    inst = self.instance
3073 decd5f45 Iustin Pop
    old_name = inst.name
3074 decd5f45 Iustin Pop
3075 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3076 b23c4333 Manuel Franceschini
      old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3077 b23c4333 Manuel Franceschini
3078 decd5f45 Iustin Pop
    self.cfg.RenameInstance(inst.name, self.op.new_name)
3079 74b5913f Guido Trotter
    # Change the instance lock. This is definitely safe while we hold the BGL
3080 cb4e8387 Iustin Pop
    self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
3081 74b5913f Guido Trotter
    self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
3082 decd5f45 Iustin Pop
3083 decd5f45 Iustin Pop
    # re-read the instance from the configuration after rename
3084 decd5f45 Iustin Pop
    inst = self.cfg.GetInstanceInfo(self.op.new_name)
3085 decd5f45 Iustin Pop
3086 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3087 b23c4333 Manuel Franceschini
      new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3088 72737a7f Iustin Pop
      result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
3089 72737a7f Iustin Pop
                                                     old_file_storage_dir,
3090 72737a7f Iustin Pop
                                                     new_file_storage_dir)
3091 781de953 Iustin Pop
      result.Raise()
3092 781de953 Iustin Pop
      if not result.data:
3093 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not connect to node '%s' to rename"
3094 b23c4333 Manuel Franceschini
                                 " directory '%s' to '%s' (but the instance"
3095 b23c4333 Manuel Franceschini
                                 " has been renamed in Ganeti)" % (
3096 b23c4333 Manuel Franceschini
                                 inst.primary_node, old_file_storage_dir,
3097 b23c4333 Manuel Franceschini
                                 new_file_storage_dir))
3098 b23c4333 Manuel Franceschini
3099 781de953 Iustin Pop
      if not result.data[0]:
3100 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not rename directory '%s' to '%s'"
3101 b23c4333 Manuel Franceschini
                                 " (but the instance has been renamed in"
3102 b23c4333 Manuel Franceschini
                                 " Ganeti)" % (old_file_storage_dir,
3103 b23c4333 Manuel Franceschini
                                               new_file_storage_dir))
3104 b23c4333 Manuel Franceschini
3105 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
3106 decd5f45 Iustin Pop
    try:
3107 781de953 Iustin Pop
      result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
3108 781de953 Iustin Pop
                                                 old_name)
3109 96841384 Iustin Pop
      msg = result.RemoteFailMsg()
3110 96841384 Iustin Pop
      if msg:
3111 6291574d Alexander Schreiber
        msg = ("Could not run OS rename script for instance %s on node %s"
3112 96841384 Iustin Pop
               " (but the instance has been renamed in Ganeti): %s" %
3113 96841384 Iustin Pop
               (inst.name, inst.primary_node, msg))
3114 86d9d3bb Iustin Pop
        self.proc.LogWarning(msg)
3115 decd5f45 Iustin Pop
    finally:
3116 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3117 decd5f45 Iustin Pop
3118 decd5f45 Iustin Pop
3119 a8083063 Iustin Pop
class LURemoveInstance(LogicalUnit):
3120 a8083063 Iustin Pop
  """Remove an instance.
3121 a8083063 Iustin Pop

3122 a8083063 Iustin Pop
  """
3123 a8083063 Iustin Pop
  HPATH = "instance-remove"
3124 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3125 5c54b832 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_failures"]
3126 cf472233 Guido Trotter
  REQ_BGL = False
3127 cf472233 Guido Trotter
3128 cf472233 Guido Trotter
  def ExpandNames(self):
3129 cf472233 Guido Trotter
    self._ExpandAndLockInstance()
3130 cf472233 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3131 cf472233 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3132 cf472233 Guido Trotter
3133 cf472233 Guido Trotter
  def DeclareLocks(self, level):
3134 cf472233 Guido Trotter
    if level == locking.LEVEL_NODE:
3135 cf472233 Guido Trotter
      self._LockInstancesNodes()
3136 a8083063 Iustin Pop
3137 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3138 a8083063 Iustin Pop
    """Build hooks env.
3139 a8083063 Iustin Pop

3140 a8083063 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
3141 a8083063 Iustin Pop

3142 a8083063 Iustin Pop
    """
3143 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3144 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()]
3145 a8083063 Iustin Pop
    return env, nl, nl
3146 a8083063 Iustin Pop
3147 a8083063 Iustin Pop
  def CheckPrereq(self):
3148 a8083063 Iustin Pop
    """Check prerequisites.
3149 a8083063 Iustin Pop

3150 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3151 a8083063 Iustin Pop

3152 a8083063 Iustin Pop
    """
3153 cf472233 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3154 cf472233 Guido Trotter
    assert self.instance is not None, \
3155 cf472233 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3156 a8083063 Iustin Pop
3157 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3158 a8083063 Iustin Pop
    """Remove the instance.
3159 a8083063 Iustin Pop

3160 a8083063 Iustin Pop
    """
3161 a8083063 Iustin Pop
    instance = self.instance
3162 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3163 9a4f63d1 Iustin Pop
                 instance.name, instance.primary_node)
3164 a8083063 Iustin Pop
3165 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
3166 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3167 1fae010f Iustin Pop
    if msg:
3168 1d67656e Iustin Pop
      if self.op.ignore_failures:
3169 1fae010f Iustin Pop
        feedback_fn("Warning: can't shutdown instance: %s" % msg)
3170 1d67656e Iustin Pop
      else:
3171 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3172 1fae010f Iustin Pop
                                 " node %s: %s" %
3173 1fae010f Iustin Pop
                                 (instance.name, instance.primary_node, msg))
3174 a8083063 Iustin Pop
3175 9a4f63d1 Iustin Pop
    logging.info("Removing block devices for instance %s", instance.name)
3176 a8083063 Iustin Pop
3177 b9bddb6b Iustin Pop
    if not _RemoveDisks(self, instance):
3178 1d67656e Iustin Pop
      if self.op.ignore_failures:
3179 1d67656e Iustin Pop
        feedback_fn("Warning: can't remove instance's disks")
3180 1d67656e Iustin Pop
      else:
3181 1d67656e Iustin Pop
        raise errors.OpExecError("Can't remove instance's disks")
3182 a8083063 Iustin Pop
3183 9a4f63d1 Iustin Pop
    logging.info("Removing instance %s out of cluster config", instance.name)
3184 a8083063 Iustin Pop
3185 a8083063 Iustin Pop
    self.cfg.RemoveInstance(instance.name)
3186 cf472233 Guido Trotter
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3187 a8083063 Iustin Pop
3188 a8083063 Iustin Pop
3189 a8083063 Iustin Pop
class LUQueryInstances(NoHooksLU):
3190 a8083063 Iustin Pop
  """Logical unit for querying instances.
3191 a8083063 Iustin Pop

3192 a8083063 Iustin Pop
  """
3193 ec79568d Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
3194 7eb9d8f7 Guido Trotter
  REQ_BGL = False
3195 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3196 5b460366 Iustin Pop
                                    "admin_state",
3197 a2d2e1a7 Iustin Pop
                                    "disk_template", "ip", "mac", "bridge",
3198 a2d2e1a7 Iustin Pop
                                    "sda_size", "sdb_size", "vcpus", "tags",
3199 a2d2e1a7 Iustin Pop
                                    "network_port", "beparams",
3200 8aec325c Iustin Pop
                                    r"(disk)\.(size)/([0-9]+)",
3201 8aec325c Iustin Pop
                                    r"(disk)\.(sizes)", "disk_usage",
3202 8aec325c Iustin Pop
                                    r"(nic)\.(mac|ip|bridge)/([0-9]+)",
3203 8aec325c Iustin Pop
                                    r"(nic)\.(macs|ips|bridges)",
3204 8aec325c Iustin Pop
                                    r"(disk|nic)\.(count)",
3205 a2d2e1a7 Iustin Pop
                                    "serial_no", "hypervisor", "hvparams",] +
3206 a2d2e1a7 Iustin Pop
                                  ["hv/%s" % name
3207 a2d2e1a7 Iustin Pop
                                   for name in constants.HVS_PARAMETERS] +
3208 a2d2e1a7 Iustin Pop
                                  ["be/%s" % name
3209 a2d2e1a7 Iustin Pop
                                   for name in constants.BES_PARAMETERS])
3210 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3211 31bf511f Iustin Pop
3212 a8083063 Iustin Pop
3213 7eb9d8f7 Guido Trotter
  def ExpandNames(self):
3214 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
3215 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
3216 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
3217 a8083063 Iustin Pop
3218 7eb9d8f7 Guido Trotter
    self.needed_locks = {}
3219 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3220 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
3221 7eb9d8f7 Guido Trotter
3222 57a2fb91 Iustin Pop
    if self.op.names:
3223 57a2fb91 Iustin Pop
      self.wanted = _GetWantedInstances(self, self.op.names)
3224 7eb9d8f7 Guido Trotter
    else:
3225 57a2fb91 Iustin Pop
      self.wanted = locking.ALL_SET
3226 7eb9d8f7 Guido Trotter
3227 ec79568d Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3228 ec79568d Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
3229 57a2fb91 Iustin Pop
    if self.do_locking:
3230 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3231 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = []
3232 57a2fb91 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3233 7eb9d8f7 Guido Trotter
3234 7eb9d8f7 Guido Trotter
  def DeclareLocks(self, level):
3235 57a2fb91 Iustin Pop
    if level == locking.LEVEL_NODE and self.do_locking:
3236 7eb9d8f7 Guido Trotter
      self._LockInstancesNodes()
3237 7eb9d8f7 Guido Trotter
3238 7eb9d8f7 Guido Trotter
  def CheckPrereq(self):
3239 7eb9d8f7 Guido Trotter
    """Check prerequisites.
3240 7eb9d8f7 Guido Trotter

3241 7eb9d8f7 Guido Trotter
    """
3242 57a2fb91 Iustin Pop
    pass
3243 069dcc86 Iustin Pop
3244 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3245 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
3246 a8083063 Iustin Pop

3247 a8083063 Iustin Pop
    """
3248 57a2fb91 Iustin Pop
    all_info = self.cfg.GetAllInstancesInfo()
3249 a7f5dc98 Iustin Pop
    if self.wanted == locking.ALL_SET:
3250 a7f5dc98 Iustin Pop
      # caller didn't specify instance names, so ordering is not important
3251 a7f5dc98 Iustin Pop
      if self.do_locking:
3252 a7f5dc98 Iustin Pop
        instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
3253 a7f5dc98 Iustin Pop
      else:
3254 a7f5dc98 Iustin Pop
        instance_names = all_info.keys()
3255 a7f5dc98 Iustin Pop
      instance_names = utils.NiceSort(instance_names)
3256 57a2fb91 Iustin Pop
    else:
3257 a7f5dc98 Iustin Pop
      # caller did specify names, so we must keep the ordering
3258 a7f5dc98 Iustin Pop
      if self.do_locking:
3259 a7f5dc98 Iustin Pop
        tgt_set = self.acquired_locks[locking.LEVEL_INSTANCE]
3260 a7f5dc98 Iustin Pop
      else:
3261 a7f5dc98 Iustin Pop
        tgt_set = all_info.keys()
3262 a7f5dc98 Iustin Pop
      missing = set(self.wanted).difference(tgt_set)
3263 a7f5dc98 Iustin Pop
      if missing:
3264 a7f5dc98 Iustin Pop
        raise errors.OpExecError("Some instances were removed before"
3265 a7f5dc98 Iustin Pop
                                 " retrieving their data: %s" % missing)
3266 a7f5dc98 Iustin Pop
      instance_names = self.wanted
3267 c1f1cbb2 Iustin Pop
3268 57a2fb91 Iustin Pop
    instance_list = [all_info[iname] for iname in instance_names]
3269 a8083063 Iustin Pop
3270 a8083063 Iustin Pop
    # begin data gathering
3271 a8083063 Iustin Pop
3272 a8083063 Iustin Pop
    nodes = frozenset([inst.primary_node for inst in instance_list])
3273 e69d05fd Iustin Pop
    hv_list = list(set([inst.hypervisor for inst in instance_list]))
3274 a8083063 Iustin Pop
3275 a8083063 Iustin Pop
    bad_nodes = []
3276 cbfc4681 Iustin Pop
    off_nodes = []
3277 ec79568d Iustin Pop
    if self.do_node_query:
3278 a8083063 Iustin Pop
      live_data = {}
3279 72737a7f Iustin Pop
      node_data = self.rpc.call_all_instances_info(nodes, hv_list)
3280 a8083063 Iustin Pop
      for name in nodes:
3281 a8083063 Iustin Pop
        result = node_data[name]
3282 cbfc4681 Iustin Pop
        if result.offline:
3283 cbfc4681 Iustin Pop
          # offline nodes will be in both lists
3284 cbfc4681 Iustin Pop
          off_nodes.append(name)
3285 781de953 Iustin Pop
        if result.failed:
3286 a8083063 Iustin Pop
          bad_nodes.append(name)
3287 781de953 Iustin Pop
        else:
3288 781de953 Iustin Pop
          if result.data:
3289 781de953 Iustin Pop
            live_data.update(result.data)
3290 781de953 Iustin Pop
            # else no instance is alive
3291 a8083063 Iustin Pop
    else:
3292 a8083063 Iustin Pop
      live_data = dict([(name, {}) for name in instance_names])
3293 a8083063 Iustin Pop
3294 a8083063 Iustin Pop
    # end data gathering
3295 a8083063 Iustin Pop
3296 5018a335 Iustin Pop
    HVPREFIX = "hv/"
3297 338e51e8 Iustin Pop
    BEPREFIX = "be/"
3298 a8083063 Iustin Pop
    output = []
3299 a8083063 Iustin Pop
    for instance in instance_list:
3300 a8083063 Iustin Pop
      iout = []
3301 5018a335 Iustin Pop
      i_hv = self.cfg.GetClusterInfo().FillHV(instance)
3302 338e51e8 Iustin Pop
      i_be = self.cfg.GetClusterInfo().FillBE(instance)
3303 a8083063 Iustin Pop
      for field in self.op.output_fields:
3304 71c1af58 Iustin Pop
        st_match = self._FIELDS_STATIC.Matches(field)
3305 a8083063 Iustin Pop
        if field == "name":
3306 a8083063 Iustin Pop
          val = instance.name
3307 a8083063 Iustin Pop
        elif field == "os":
3308 a8083063 Iustin Pop
          val = instance.os
3309 a8083063 Iustin Pop
        elif field == "pnode":
3310 a8083063 Iustin Pop
          val = instance.primary_node
3311 a8083063 Iustin Pop
        elif field == "snodes":
3312 8a23d2d3 Iustin Pop
          val = list(instance.secondary_nodes)
3313 a8083063 Iustin Pop
        elif field == "admin_state":
3314 0d68c45d Iustin Pop
          val = instance.admin_up
3315 a8083063 Iustin Pop
        elif field == "oper_state":
3316 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3317 8a23d2d3 Iustin Pop
            val = None
3318 a8083063 Iustin Pop
          else:
3319 8a23d2d3 Iustin Pop
            val = bool(live_data.get(instance.name))
3320 d8052456 Iustin Pop
        elif field == "status":
3321 cbfc4681 Iustin Pop
          if instance.primary_node in off_nodes:
3322 cbfc4681 Iustin Pop
            val = "ERROR_nodeoffline"
3323 cbfc4681 Iustin Pop
          elif instance.primary_node in bad_nodes:
3324 d8052456 Iustin Pop
            val = "ERROR_nodedown"
3325 d8052456 Iustin Pop
          else:
3326 d8052456 Iustin Pop
            running = bool(live_data.get(instance.name))
3327 d8052456 Iustin Pop
            if running:
3328 0d68c45d Iustin Pop
              if instance.admin_up:
3329 d8052456 Iustin Pop
                val = "running"
3330 d8052456 Iustin Pop
              else:
3331 d8052456 Iustin Pop
                val = "ERROR_up"
3332 d8052456 Iustin Pop
            else:
3333 0d68c45d Iustin Pop
              if instance.admin_up:
3334 d8052456 Iustin Pop
                val = "ERROR_down"
3335 d8052456 Iustin Pop
              else:
3336 d8052456 Iustin Pop
                val = "ADMIN_down"
3337 a8083063 Iustin Pop
        elif field == "oper_ram":
3338 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3339 8a23d2d3 Iustin Pop
            val = None
3340 a8083063 Iustin Pop
          elif instance.name in live_data:
3341 a8083063 Iustin Pop
            val = live_data[instance.name].get("memory", "?")
3342 a8083063 Iustin Pop
          else:
3343 a8083063 Iustin Pop
            val = "-"
3344 a8083063 Iustin Pop
        elif field == "disk_template":
3345 a8083063 Iustin Pop
          val = instance.disk_template
3346 a8083063 Iustin Pop
        elif field == "ip":
3347 a8083063 Iustin Pop
          val = instance.nics[0].ip
3348 a8083063 Iustin Pop
        elif field == "bridge":
3349 a8083063 Iustin Pop
          val = instance.nics[0].bridge
3350 a8083063 Iustin Pop
        elif field == "mac":
3351 a8083063 Iustin Pop
          val = instance.nics[0].mac
3352 644eeef9 Iustin Pop
        elif field == "sda_size" or field == "sdb_size":
3353 ad24e046 Iustin Pop
          idx = ord(field[2]) - ord('a')
3354 ad24e046 Iustin Pop
          try:
3355 ad24e046 Iustin Pop
            val = instance.FindDisk(idx).size
3356 ad24e046 Iustin Pop
          except errors.OpPrereqError:
3357 8a23d2d3 Iustin Pop
            val = None
3358 024e157f Iustin Pop
        elif field == "disk_usage": # total disk usage per node
3359 024e157f Iustin Pop
          disk_sizes = [{'size': disk.size} for disk in instance.disks]
3360 024e157f Iustin Pop
          val = _ComputeDiskSize(instance.disk_template, disk_sizes)
3361 130a6a6f Iustin Pop
        elif field == "tags":
3362 130a6a6f Iustin Pop
          val = list(instance.GetTags())
3363 38d7239a Iustin Pop
        elif field == "serial_no":
3364 38d7239a Iustin Pop
          val = instance.serial_no
3365 5018a335 Iustin Pop
        elif field == "network_port":
3366 5018a335 Iustin Pop
          val = instance.network_port
3367 338e51e8 Iustin Pop
        elif field == "hypervisor":
3368 338e51e8 Iustin Pop
          val = instance.hypervisor
3369 338e51e8 Iustin Pop
        elif field == "hvparams":
3370 338e51e8 Iustin Pop
          val = i_hv
3371 5018a335 Iustin Pop
        elif (field.startswith(HVPREFIX) and
3372 5018a335 Iustin Pop
              field[len(HVPREFIX):] in constants.HVS_PARAMETERS):
3373 5018a335 Iustin Pop
          val = i_hv.get(field[len(HVPREFIX):], None)
3374 338e51e8 Iustin Pop
        elif field == "beparams":
3375 338e51e8 Iustin Pop
          val = i_be
3376 338e51e8 Iustin Pop
        elif (field.startswith(BEPREFIX) and
3377 338e51e8 Iustin Pop
              field[len(BEPREFIX):] in constants.BES_PARAMETERS):
3378 338e51e8 Iustin Pop
          val = i_be.get(field[len(BEPREFIX):], None)
3379 71c1af58 Iustin Pop
        elif st_match and st_match.groups():
3380 71c1af58 Iustin Pop
          # matches a variable list
3381 71c1af58 Iustin Pop
          st_groups = st_match.groups()
3382 71c1af58 Iustin Pop
          if st_groups and st_groups[0] == "disk":
3383 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3384 71c1af58 Iustin Pop
              val = len(instance.disks)
3385 41a776da Iustin Pop
            elif st_groups[1] == "sizes":
3386 41a776da Iustin Pop
              val = [disk.size for disk in instance.disks]
3387 71c1af58 Iustin Pop
            elif st_groups[1] == "size":
3388 3e0cea06 Iustin Pop
              try:
3389 3e0cea06 Iustin Pop
                val = instance.FindDisk(st_groups[2]).size
3390 3e0cea06 Iustin Pop
              except errors.OpPrereqError:
3391 71c1af58 Iustin Pop
                val = None
3392 71c1af58 Iustin Pop
            else:
3393 71c1af58 Iustin Pop
              assert False, "Unhandled disk parameter"
3394 71c1af58 Iustin Pop
          elif st_groups[0] == "nic":
3395 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3396 71c1af58 Iustin Pop
              val = len(instance.nics)
3397 41a776da Iustin Pop
            elif st_groups[1] == "macs":
3398 41a776da Iustin Pop
              val = [nic.mac for nic in instance.nics]
3399 41a776da Iustin Pop
            elif st_groups[1] == "ips":
3400 41a776da Iustin Pop
              val = [nic.ip for nic in instance.nics]
3401 41a776da Iustin Pop
            elif st_groups[1] == "bridges":
3402 41a776da Iustin Pop
              val = [nic.bridge for nic in instance.nics]
3403 71c1af58 Iustin Pop
            else:
3404 71c1af58 Iustin Pop
              # index-based item
3405 71c1af58 Iustin Pop
              nic_idx = int(st_groups[2])
3406 71c1af58 Iustin Pop
              if nic_idx >= len(instance.nics):
3407 71c1af58 Iustin Pop
                val = None
3408 71c1af58 Iustin Pop
              else:
3409 71c1af58 Iustin Pop
                if st_groups[1] == "mac":
3410 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].mac
3411 71c1af58 Iustin Pop
                elif st_groups[1] == "ip":
3412 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].ip
3413 71c1af58 Iustin Pop
                elif st_groups[1] == "bridge":
3414 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].bridge
3415 71c1af58 Iustin Pop
                else:
3416 71c1af58 Iustin Pop
                  assert False, "Unhandled NIC parameter"
3417 71c1af58 Iustin Pop
          else:
3418 71c1af58 Iustin Pop
            assert False, "Unhandled variable parameter"
3419 a8083063 Iustin Pop
        else:
3420 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
3421 a8083063 Iustin Pop
        iout.append(val)
3422 a8083063 Iustin Pop
      output.append(iout)
3423 a8083063 Iustin Pop
3424 a8083063 Iustin Pop
    return output
3425 a8083063 Iustin Pop
3426 a8083063 Iustin Pop
3427 a8083063 Iustin Pop
class LUFailoverInstance(LogicalUnit):
3428 a8083063 Iustin Pop
  """Failover an instance.
3429 a8083063 Iustin Pop

3430 a8083063 Iustin Pop
  """
3431 a8083063 Iustin Pop
  HPATH = "instance-failover"
3432 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3433 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_consistency"]
3434 c9e5c064 Guido Trotter
  REQ_BGL = False
3435 c9e5c064 Guido Trotter
3436 c9e5c064 Guido Trotter
  def ExpandNames(self):
3437 c9e5c064 Guido Trotter
    self._ExpandAndLockInstance()
3438 c9e5c064 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3439 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3440 c9e5c064 Guido Trotter
3441 c9e5c064 Guido Trotter
  def DeclareLocks(self, level):
3442 c9e5c064 Guido Trotter
    if level == locking.LEVEL_NODE:
3443 c9e5c064 Guido Trotter
      self._LockInstancesNodes()
3444 a8083063 Iustin Pop
3445 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3446 a8083063 Iustin Pop
    """Build hooks env.
3447 a8083063 Iustin Pop

3448 a8083063 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
3449 a8083063 Iustin Pop

3450 a8083063 Iustin Pop
    """
3451 a8083063 Iustin Pop
    env = {
3452 a8083063 Iustin Pop
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3453 a8083063 Iustin Pop
      }
3454 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3455 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3456 a8083063 Iustin Pop
    return env, nl, nl
3457 a8083063 Iustin Pop
3458 a8083063 Iustin Pop
  def CheckPrereq(self):
3459 a8083063 Iustin Pop
    """Check prerequisites.
3460 a8083063 Iustin Pop

3461 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3462 a8083063 Iustin Pop

3463 a8083063 Iustin Pop
    """
3464 c9e5c064 Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3465 c9e5c064 Guido Trotter
    assert self.instance is not None, \
3466 c9e5c064 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3467 a8083063 Iustin Pop
3468 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3469 a1f445d3 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3470 2a710df1 Michael Hanselmann
      raise errors.OpPrereqError("Instance's disk layout is not"
3471 a1f445d3 Iustin Pop
                                 " network mirrored, cannot failover.")
3472 2a710df1 Michael Hanselmann
3473 2a710df1 Michael Hanselmann
    secondary_nodes = instance.secondary_nodes
3474 2a710df1 Michael Hanselmann
    if not secondary_nodes:
3475 2a710df1 Michael Hanselmann
      raise errors.ProgrammerError("no secondary node but using "
3476 abdf0113 Iustin Pop
                                   "a mirrored disk template")
3477 2a710df1 Michael Hanselmann
3478 2a710df1 Michael Hanselmann
    target_node = secondary_nodes[0]
3479 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, target_node)
3480 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, target_node)
3481 d4f16fd9 Iustin Pop
    # check memory requirements on the secondary node
3482 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3483 338e51e8 Iustin Pop
                         instance.name, bep[constants.BE_MEMORY],
3484 e69d05fd Iustin Pop
                         instance.hypervisor)
3485 3a7c308e Guido Trotter
3486 a8083063 Iustin Pop
    # check bridge existance
3487 a8083063 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3488 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3489 781de953 Iustin Pop
    result.Raise()
3490 781de953 Iustin Pop
    if not result.data:
3491 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3492 3ecf6786 Iustin Pop
                                 " exist on destination node '%s'" %
3493 50ff9a7a Iustin Pop
                                 (brlist, target_node))
3494 a8083063 Iustin Pop
3495 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3496 a8083063 Iustin Pop
    """Failover an instance.
3497 a8083063 Iustin Pop

3498 a8083063 Iustin Pop
    The failover is done by shutting it down on its present node and
3499 a8083063 Iustin Pop
    starting it on the secondary.
3500 a8083063 Iustin Pop

3501 a8083063 Iustin Pop
    """
3502 a8083063 Iustin Pop
    instance = self.instance
3503 a8083063 Iustin Pop
3504 a8083063 Iustin Pop
    source_node = instance.primary_node
3505 a8083063 Iustin Pop
    target_node = instance.secondary_nodes[0]
3506 a8083063 Iustin Pop
3507 a8083063 Iustin Pop
    feedback_fn("* checking disk consistency between source and target")
3508 a8083063 Iustin Pop
    for dev in instance.disks:
3509 abdf0113 Iustin Pop
      # for drbd, these are drbd over lvm
3510 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3511 0d68c45d Iustin Pop
        if instance.admin_up and not self.op.ignore_consistency:
3512 3ecf6786 Iustin Pop
          raise errors.OpExecError("Disk %s is degraded on target node,"
3513 3ecf6786 Iustin Pop
                                   " aborting failover." % dev.iv_name)
3514 a8083063 Iustin Pop
3515 a8083063 Iustin Pop
    feedback_fn("* shutting down instance on source node")
3516 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3517 9a4f63d1 Iustin Pop
                 instance.name, source_node)
3518 a8083063 Iustin Pop
3519 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(source_node, instance)
3520 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3521 1fae010f Iustin Pop
    if msg:
3522 24a40d57 Iustin Pop
      if self.op.ignore_consistency:
3523 86d9d3bb Iustin Pop
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3524 1fae010f Iustin Pop
                             " Proceeding anyway. Please make sure node"
3525 1fae010f Iustin Pop
                             " %s is down. Error details: %s",
3526 1fae010f Iustin Pop
                             instance.name, source_node, source_node, msg)
3527 24a40d57 Iustin Pop
      else:
3528 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3529 1fae010f Iustin Pop
                                 " node %s: %s" %
3530 1fae010f Iustin Pop
                                 (instance.name, source_node, msg))
3531 a8083063 Iustin Pop
3532 a8083063 Iustin Pop
    feedback_fn("* deactivating the instance's disks on source node")
3533 b9bddb6b Iustin Pop
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3534 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't shut down the instance's disks.")
3535 a8083063 Iustin Pop
3536 a8083063 Iustin Pop
    instance.primary_node = target_node
3537 a8083063 Iustin Pop
    # distribute new instance config to the other nodes
3538 b6102dab Guido Trotter
    self.cfg.Update(instance)
3539 a8083063 Iustin Pop
3540 12a0cfbe Guido Trotter
    # Only start the instance if it's marked as up
3541 0d68c45d Iustin Pop
    if instance.admin_up:
3542 12a0cfbe Guido Trotter
      feedback_fn("* activating the instance's disks on target node")
3543 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s",
3544 9a4f63d1 Iustin Pop
                   instance.name, target_node)
3545 12a0cfbe Guido Trotter
3546 b9bddb6b Iustin Pop
      disks_ok, dummy = _AssembleInstanceDisks(self, instance,
3547 12a0cfbe Guido Trotter
                                               ignore_secondaries=True)
3548 12a0cfbe Guido Trotter
      if not disks_ok:
3549 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3550 12a0cfbe Guido Trotter
        raise errors.OpExecError("Can't activate the instance's disks")
3551 a8083063 Iustin Pop
3552 12a0cfbe Guido Trotter
      feedback_fn("* starting the instance on the target node")
3553 07813a9e Iustin Pop
      result = self.rpc.call_instance_start(target_node, instance)
3554 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
3555 dd279568 Iustin Pop
      if msg:
3556 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3557 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance %s on node %s: %s" %
3558 dd279568 Iustin Pop
                                 (instance.name, target_node, msg))
3559 a8083063 Iustin Pop
3560 a8083063 Iustin Pop
3561 53c776b5 Iustin Pop
class LUMigrateInstance(LogicalUnit):
3562 53c776b5 Iustin Pop
  """Migrate an instance.
3563 53c776b5 Iustin Pop

3564 53c776b5 Iustin Pop
  This is migration without shutting down, compared to the failover,
3565 53c776b5 Iustin Pop
  which is done with shutdown.
3566 53c776b5 Iustin Pop

3567 53c776b5 Iustin Pop
  """
3568 53c776b5 Iustin Pop
  HPATH = "instance-migrate"
3569 53c776b5 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3570 53c776b5 Iustin Pop
  _OP_REQP = ["instance_name", "live", "cleanup"]
3571 53c776b5 Iustin Pop
3572 53c776b5 Iustin Pop
  REQ_BGL = False
3573 53c776b5 Iustin Pop
3574 53c776b5 Iustin Pop
  def ExpandNames(self):
3575 53c776b5 Iustin Pop
    self._ExpandAndLockInstance()
3576 53c776b5 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
3577 53c776b5 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3578 53c776b5 Iustin Pop
3579 53c776b5 Iustin Pop
  def DeclareLocks(self, level):
3580 53c776b5 Iustin Pop
    if level == locking.LEVEL_NODE:
3581 53c776b5 Iustin Pop
      self._LockInstancesNodes()
3582 53c776b5 Iustin Pop
3583 53c776b5 Iustin Pop
  def BuildHooksEnv(self):
3584 53c776b5 Iustin Pop
    """Build hooks env.
3585 53c776b5 Iustin Pop

3586 53c776b5 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
3587 53c776b5 Iustin Pop

3588 53c776b5 Iustin Pop
    """
3589 53c776b5 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3590 2c2690c9 Iustin Pop
    env["MIGRATE_LIVE"] = self.op.live
3591 2c2690c9 Iustin Pop
    env["MIGRATE_CLEANUP"] = self.op.cleanup
3592 53c776b5 Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3593 53c776b5 Iustin Pop
    return env, nl, nl
3594 53c776b5 Iustin Pop
3595 53c776b5 Iustin Pop
  def CheckPrereq(self):
3596 53c776b5 Iustin Pop
    """Check prerequisites.
3597 53c776b5 Iustin Pop

3598 53c776b5 Iustin Pop
    This checks that the instance is in the cluster.
3599 53c776b5 Iustin Pop

3600 53c776b5 Iustin Pop
    """
3601 53c776b5 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3602 53c776b5 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3603 53c776b5 Iustin Pop
    if instance is None:
3604 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3605 53c776b5 Iustin Pop
                                 self.op.instance_name)
3606 53c776b5 Iustin Pop
3607 53c776b5 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
3608 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout is not"
3609 53c776b5 Iustin Pop
                                 " drbd8, cannot migrate.")
3610 53c776b5 Iustin Pop
3611 53c776b5 Iustin Pop
    secondary_nodes = instance.secondary_nodes
3612 53c776b5 Iustin Pop
    if not secondary_nodes:
3613 733a2b6a Iustin Pop
      raise errors.ConfigurationError("No secondary node but using"
3614 733a2b6a Iustin Pop
                                      " drbd8 disk template")
3615 53c776b5 Iustin Pop
3616 53c776b5 Iustin Pop
    i_be = self.cfg.GetClusterInfo().FillBE(instance)
3617 53c776b5 Iustin Pop
3618 53c776b5 Iustin Pop
    target_node = secondary_nodes[0]
3619 53c776b5 Iustin Pop
    # check memory requirements on the secondary node
3620 53c776b5 Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
3621 53c776b5 Iustin Pop
                         instance.name, i_be[constants.BE_MEMORY],
3622 53c776b5 Iustin Pop
                         instance.hypervisor)
3623 53c776b5 Iustin Pop
3624 53c776b5 Iustin Pop
    # check bridge existance
3625 53c776b5 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3626 53c776b5 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3627 53c776b5 Iustin Pop
    if result.failed or not result.data:
3628 53c776b5 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3629 53c776b5 Iustin Pop
                                 " exist on destination node '%s'" %
3630 53c776b5 Iustin Pop
                                 (brlist, target_node))
3631 53c776b5 Iustin Pop
3632 53c776b5 Iustin Pop
    if not self.op.cleanup:
3633 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, target_node)
3634 53c776b5 Iustin Pop
      result = self.rpc.call_instance_migratable(instance.primary_node,
3635 53c776b5 Iustin Pop
                                                 instance)
3636 53c776b5 Iustin Pop
      msg = result.RemoteFailMsg()
3637 53c776b5 Iustin Pop
      if msg:
3638 53c776b5 Iustin Pop
        raise errors.OpPrereqError("Can't migrate: %s - please use failover" %
3639 53c776b5 Iustin Pop
                                   msg)
3640 53c776b5 Iustin Pop
3641 53c776b5 Iustin Pop
    self.instance = instance
3642 53c776b5 Iustin Pop
3643 53c776b5 Iustin Pop
  def _WaitUntilSync(self):
3644 53c776b5 Iustin Pop
    """Poll with custom rpc for disk sync.
3645 53c776b5 Iustin Pop

3646 53c776b5 Iustin Pop
    This uses our own step-based rpc call.
3647 53c776b5 Iustin Pop

3648 53c776b5 Iustin Pop
    """
3649 53c776b5 Iustin Pop
    self.feedback_fn("* wait until resync is done")
3650 53c776b5 Iustin Pop
    all_done = False
3651 53c776b5 Iustin Pop
    while not all_done:
3652 53c776b5 Iustin Pop
      all_done = True
3653 53c776b5 Iustin Pop
      result = self.rpc.call_drbd_wait_sync(self.all_nodes,
3654 53c776b5 Iustin Pop
                                            self.nodes_ip,
3655 53c776b5 Iustin Pop
                                            self.instance.disks)
3656 53c776b5 Iustin Pop
      min_percent = 100
3657 53c776b5 Iustin Pop
      for node, nres in result.items():
3658 53c776b5 Iustin Pop
        msg = nres.RemoteFailMsg()
3659 53c776b5 Iustin Pop
        if msg:
3660 53c776b5 Iustin Pop
          raise errors.OpExecError("Cannot resync disks on node %s: %s" %
3661 53c776b5 Iustin Pop
                                   (node, msg))
3662 0959c824 Iustin Pop
        node_done, node_percent = nres.payload
3663 53c776b5 Iustin Pop
        all_done = all_done and node_done
3664 53c776b5 Iustin Pop
        if node_percent is not None:
3665 53c776b5 Iustin Pop
          min_percent = min(min_percent, node_percent)
3666 53c776b5 Iustin Pop
      if not all_done:
3667 53c776b5 Iustin Pop
        if min_percent < 100:
3668 53c776b5 Iustin Pop
          self.feedback_fn("   - progress: %.1f%%" % min_percent)
3669 53c776b5 Iustin Pop
        time.sleep(2)
3670 53c776b5 Iustin Pop
3671 53c776b5 Iustin Pop
  def _EnsureSecondary(self, node):
3672 53c776b5 Iustin Pop
    """Demote a node to secondary.
3673 53c776b5 Iustin Pop

3674 53c776b5 Iustin Pop
    """
3675 53c776b5 Iustin Pop
    self.feedback_fn("* switching node %s to secondary mode" % node)
3676 53c776b5 Iustin Pop
3677 53c776b5 Iustin Pop
    for dev in self.instance.disks:
3678 53c776b5 Iustin Pop
      self.cfg.SetDiskID(dev, node)
3679 53c776b5 Iustin Pop
3680 53c776b5 Iustin Pop
    result = self.rpc.call_blockdev_close(node, self.instance.name,
3681 53c776b5 Iustin Pop
                                          self.instance.disks)
3682 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
3683 53c776b5 Iustin Pop
    if msg:
3684 53c776b5 Iustin Pop
      raise errors.OpExecError("Cannot change disk to secondary on node %s,"
3685 53c776b5 Iustin Pop
                               " error %s" % (node, msg))
3686 53c776b5 Iustin Pop
3687 53c776b5 Iustin Pop
  def _GoStandalone(self):
3688 53c776b5 Iustin Pop
    """Disconnect from the network.
3689 53c776b5 Iustin Pop

3690 53c776b5 Iustin Pop
    """
3691 53c776b5 Iustin Pop
    self.feedback_fn("* changing into standalone mode")
3692 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
3693 53c776b5 Iustin Pop
                                               self.instance.disks)
3694 53c776b5 Iustin Pop
    for node, nres in result.items():
3695 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3696 53c776b5 Iustin Pop
      if msg:
3697 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot disconnect disks node %s,"
3698 53c776b5 Iustin Pop
                                 " error %s" % (node, msg))
3699 53c776b5 Iustin Pop
3700 53c776b5 Iustin Pop
  def _GoReconnect(self, multimaster):
3701 53c776b5 Iustin Pop
    """Reconnect to the network.
3702 53c776b5 Iustin Pop

3703 53c776b5 Iustin Pop
    """
3704 53c776b5 Iustin Pop
    if multimaster:
3705 53c776b5 Iustin Pop
      msg = "dual-master"
3706 53c776b5 Iustin Pop
    else:
3707 53c776b5 Iustin Pop
      msg = "single-master"
3708 53c776b5 Iustin Pop
    self.feedback_fn("* changing disks into %s mode" % msg)
3709 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
3710 53c776b5 Iustin Pop
                                           self.instance.disks,
3711 53c776b5 Iustin Pop
                                           self.instance.name, multimaster)
3712 53c776b5 Iustin Pop
    for node, nres in result.items():
3713 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3714 53c776b5 Iustin Pop
      if msg:
3715 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot change disks config on node %s,"
3716 53c776b5 Iustin Pop
                                 " error: %s" % (node, msg))
3717 53c776b5 Iustin Pop
3718 53c776b5 Iustin Pop
  def _ExecCleanup(self):
3719 53c776b5 Iustin Pop
    """Try to cleanup after a failed migration.
3720 53c776b5 Iustin Pop

3721 53c776b5 Iustin Pop
    The cleanup is done by:
3722 53c776b5 Iustin Pop
      - check that the instance is running only on one node
3723 53c776b5 Iustin Pop
        (and update the config if needed)
3724 53c776b5 Iustin Pop
      - change disks on its secondary node to secondary
3725 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
3726 53c776b5 Iustin Pop
      - disconnect from the network
3727 53c776b5 Iustin Pop
      - change disks into single-master mode
3728 53c776b5 Iustin Pop
      - wait again until disks are fully synchronized
3729 53c776b5 Iustin Pop

3730 53c776b5 Iustin Pop
    """
3731 53c776b5 Iustin Pop
    instance = self.instance
3732 53c776b5 Iustin Pop
    target_node = self.target_node
3733 53c776b5 Iustin Pop
    source_node = self.source_node
3734 53c776b5 Iustin Pop
3735 53c776b5 Iustin Pop
    # check running on only one node
3736 53c776b5 Iustin Pop
    self.feedback_fn("* checking where the instance actually runs"
3737 53c776b5 Iustin Pop
                     " (if this hangs, the hypervisor might be in"
3738 53c776b5 Iustin Pop
                     " a bad state)")
3739 53c776b5 Iustin Pop
    ins_l = self.rpc.call_instance_list(self.all_nodes, [instance.hypervisor])
3740 53c776b5 Iustin Pop
    for node, result in ins_l.items():
3741 53c776b5 Iustin Pop
      result.Raise()
3742 53c776b5 Iustin Pop
      if not isinstance(result.data, list):
3743 53c776b5 Iustin Pop
        raise errors.OpExecError("Can't contact node '%s'" % node)
3744 53c776b5 Iustin Pop
3745 53c776b5 Iustin Pop
    runningon_source = instance.name in ins_l[source_node].data
3746 53c776b5 Iustin Pop
    runningon_target = instance.name in ins_l[target_node].data
3747 53c776b5 Iustin Pop
3748 53c776b5 Iustin Pop
    if runningon_source and runningon_target:
3749 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance seems to be running on two nodes,"
3750 53c776b5 Iustin Pop
                               " or the hypervisor is confused. You will have"
3751 53c776b5 Iustin Pop
                               " to ensure manually that it runs only on one"
3752 53c776b5 Iustin Pop
                               " and restart this operation.")
3753 53c776b5 Iustin Pop
3754 53c776b5 Iustin Pop
    if not (runningon_source or runningon_target):
3755 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance does not seem to be running at all."
3756 53c776b5 Iustin Pop
                               " In this case, it's safer to repair by"
3757 53c776b5 Iustin Pop
                               " running 'gnt-instance stop' to ensure disk"
3758 53c776b5 Iustin Pop
                               " shutdown, and then restarting it.")
3759 53c776b5 Iustin Pop
3760 53c776b5 Iustin Pop
    if runningon_target:
3761 53c776b5 Iustin Pop
      # the migration has actually succeeded, we need to update the config
3762 53c776b5 Iustin Pop
      self.feedback_fn("* instance running on secondary node (%s),"
3763 53c776b5 Iustin Pop
                       " updating config" % target_node)
3764 53c776b5 Iustin Pop
      instance.primary_node = target_node
3765 53c776b5 Iustin Pop
      self.cfg.Update(instance)
3766 53c776b5 Iustin Pop
      demoted_node = source_node
3767 53c776b5 Iustin Pop
    else:
3768 53c776b5 Iustin Pop
      self.feedback_fn("* instance confirmed to be running on its"
3769 53c776b5 Iustin Pop
                       " primary node (%s)" % source_node)
3770 53c776b5 Iustin Pop
      demoted_node = target_node
3771 53c776b5 Iustin Pop
3772 53c776b5 Iustin Pop
    self._EnsureSecondary(demoted_node)
3773 53c776b5 Iustin Pop
    try:
3774 53c776b5 Iustin Pop
      self._WaitUntilSync()
3775 53c776b5 Iustin Pop
    except errors.OpExecError:
3776 53c776b5 Iustin Pop
      # we ignore here errors, since if the device is standalone, it
3777 53c776b5 Iustin Pop
      # won't be able to sync
3778 53c776b5 Iustin Pop
      pass
3779 53c776b5 Iustin Pop
    self._GoStandalone()
3780 53c776b5 Iustin Pop
    self._GoReconnect(False)
3781 53c776b5 Iustin Pop
    self._WaitUntilSync()
3782 53c776b5 Iustin Pop
3783 53c776b5 Iustin Pop
    self.feedback_fn("* done")
3784 53c776b5 Iustin Pop
3785 6906a9d8 Guido Trotter
  def _RevertDiskStatus(self):
3786 6906a9d8 Guido Trotter
    """Try to revert the disk status after a failed migration.
3787 6906a9d8 Guido Trotter

3788 6906a9d8 Guido Trotter
    """
3789 6906a9d8 Guido Trotter
    target_node = self.target_node
3790 6906a9d8 Guido Trotter
    try:
3791 6906a9d8 Guido Trotter
      self._EnsureSecondary(target_node)
3792 6906a9d8 Guido Trotter
      self._GoStandalone()
3793 6906a9d8 Guido Trotter
      self._GoReconnect(False)
3794 6906a9d8 Guido Trotter
      self._WaitUntilSync()
3795 6906a9d8 Guido Trotter
    except errors.OpExecError, err:
3796 6906a9d8 Guido Trotter
      self.LogWarning("Migration failed and I can't reconnect the"
3797 6906a9d8 Guido Trotter
                      " drives: error '%s'\n"
3798 6906a9d8 Guido Trotter
                      "Please look and recover the instance status" %
3799 6906a9d8 Guido Trotter
                      str(err))
3800 6906a9d8 Guido Trotter
3801 6906a9d8 Guido Trotter
  def _AbortMigration(self):
3802 6906a9d8 Guido Trotter
    """Call the hypervisor code to abort a started migration.
3803 6906a9d8 Guido Trotter

3804 6906a9d8 Guido Trotter
    """
3805 6906a9d8 Guido Trotter
    instance = self.instance
3806 6906a9d8 Guido Trotter
    target_node = self.target_node
3807 6906a9d8 Guido Trotter
    migration_info = self.migration_info
3808 6906a9d8 Guido Trotter
3809 6906a9d8 Guido Trotter
    abort_result = self.rpc.call_finalize_migration(target_node,
3810 6906a9d8 Guido Trotter
                                                    instance,
3811 6906a9d8 Guido Trotter
                                                    migration_info,
3812 6906a9d8 Guido Trotter
                                                    False)
3813 6906a9d8 Guido Trotter
    abort_msg = abort_result.RemoteFailMsg()
3814 6906a9d8 Guido Trotter
    if abort_msg:
3815 6906a9d8 Guido Trotter
      logging.error("Aborting migration failed on target node %s: %s" %
3816 6906a9d8 Guido Trotter
                    (target_node, abort_msg))
3817 6906a9d8 Guido Trotter
      # Don't raise an exception here, as we stil have to try to revert the
3818 6906a9d8 Guido Trotter
      # disk status, even if this step failed.
3819 6906a9d8 Guido Trotter
3820 53c776b5 Iustin Pop
  def _ExecMigration(self):
3821 53c776b5 Iustin Pop
    """Migrate an instance.
3822 53c776b5 Iustin Pop

3823 53c776b5 Iustin Pop
    The migrate is done by:
3824 53c776b5 Iustin Pop
      - change the disks into dual-master mode
3825 53c776b5 Iustin Pop
      - wait until disks are fully synchronized again
3826 53c776b5 Iustin Pop
      - migrate the instance
3827 53c776b5 Iustin Pop
      - change disks on the new secondary node (the old primary) to secondary
3828 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
3829 53c776b5 Iustin Pop
      - change disks into single-master mode
3830 53c776b5 Iustin Pop

3831 53c776b5 Iustin Pop
    """
3832 53c776b5 Iustin Pop
    instance = self.instance
3833 53c776b5 Iustin Pop
    target_node = self.target_node
3834 53c776b5 Iustin Pop
    source_node = self.source_node
3835 53c776b5 Iustin Pop
3836 53c776b5 Iustin Pop
    self.feedback_fn("* checking disk consistency between source and target")
3837 53c776b5 Iustin Pop
    for dev in instance.disks:
3838 53c776b5 Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3839 53c776b5 Iustin Pop
        raise errors.OpExecError("Disk %s is degraded or not fully"
3840 53c776b5 Iustin Pop
                                 " synchronized on target node,"
3841 53c776b5 Iustin Pop
                                 " aborting migrate." % dev.iv_name)
3842 53c776b5 Iustin Pop
3843 6906a9d8 Guido Trotter
    # First get the migration information from the remote node
3844 6906a9d8 Guido Trotter
    result = self.rpc.call_migration_info(source_node, instance)
3845 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
3846 6906a9d8 Guido Trotter
    if msg:
3847 6906a9d8 Guido Trotter
      log_err = ("Failed fetching source migration information from %s: %s" %
3848 0959c824 Iustin Pop
                 (source_node, msg))
3849 6906a9d8 Guido Trotter
      logging.error(log_err)
3850 6906a9d8 Guido Trotter
      raise errors.OpExecError(log_err)
3851 6906a9d8 Guido Trotter
3852 0959c824 Iustin Pop
    self.migration_info = migration_info = result.payload
3853 6906a9d8 Guido Trotter
3854 6906a9d8 Guido Trotter
    # Then switch the disks to master/master mode
3855 53c776b5 Iustin Pop
    self._EnsureSecondary(target_node)
3856 53c776b5 Iustin Pop
    self._GoStandalone()
3857 53c776b5 Iustin Pop
    self._GoReconnect(True)
3858 53c776b5 Iustin Pop
    self._WaitUntilSync()
3859 53c776b5 Iustin Pop
3860 6906a9d8 Guido Trotter
    self.feedback_fn("* preparing %s to accept the instance" % target_node)
3861 6906a9d8 Guido Trotter
    result = self.rpc.call_accept_instance(target_node,
3862 6906a9d8 Guido Trotter
                                           instance,
3863 6906a9d8 Guido Trotter
                                           migration_info,
3864 6906a9d8 Guido Trotter
                                           self.nodes_ip[target_node])
3865 6906a9d8 Guido Trotter
3866 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
3867 6906a9d8 Guido Trotter
    if msg:
3868 6906a9d8 Guido Trotter
      logging.error("Instance pre-migration failed, trying to revert"
3869 6906a9d8 Guido Trotter
                    " disk status: %s", msg)
3870 6906a9d8 Guido Trotter
      self._AbortMigration()
3871 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
3872 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not pre-migrate instance %s: %s" %
3873 6906a9d8 Guido Trotter
                               (instance.name, msg))
3874 6906a9d8 Guido Trotter
3875 53c776b5 Iustin Pop
    self.feedback_fn("* migrating instance to %s" % target_node)
3876 53c776b5 Iustin Pop
    time.sleep(10)
3877 53c776b5 Iustin Pop
    result = self.rpc.call_instance_migrate(source_node, instance,
3878 53c776b5 Iustin Pop
                                            self.nodes_ip[target_node],
3879 53c776b5 Iustin Pop
                                            self.op.live)
3880 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
3881 53c776b5 Iustin Pop
    if msg:
3882 53c776b5 Iustin Pop
      logging.error("Instance migration failed, trying to revert"
3883 53c776b5 Iustin Pop
                    " disk status: %s", msg)
3884 6906a9d8 Guido Trotter
      self._AbortMigration()
3885 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
3886 53c776b5 Iustin Pop
      raise errors.OpExecError("Could not migrate instance %s: %s" %
3887 53c776b5 Iustin Pop
                               (instance.name, msg))
3888 53c776b5 Iustin Pop
    time.sleep(10)
3889 53c776b5 Iustin Pop
3890 53c776b5 Iustin Pop
    instance.primary_node = target_node
3891 53c776b5 Iustin Pop
    # distribute new instance config to the other nodes
3892 53c776b5 Iustin Pop
    self.cfg.Update(instance)
3893 53c776b5 Iustin Pop
3894 6906a9d8 Guido Trotter
    result = self.rpc.call_finalize_migration(target_node,
3895 6906a9d8 Guido Trotter
                                              instance,
3896 6906a9d8 Guido Trotter
                                              migration_info,
3897 6906a9d8 Guido Trotter
                                              True)
3898 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
3899 6906a9d8 Guido Trotter
    if msg:
3900 6906a9d8 Guido Trotter
      logging.error("Instance migration succeeded, but finalization failed:"
3901 6906a9d8 Guido Trotter
                    " %s" % msg)
3902 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not finalize instance migration: %s" %
3903 6906a9d8 Guido Trotter
                               msg)
3904 6906a9d8 Guido Trotter
3905 53c776b5 Iustin Pop
    self._EnsureSecondary(source_node)
3906 53c776b5 Iustin Pop
    self._WaitUntilSync()
3907 53c776b5 Iustin Pop
    self._GoStandalone()
3908 53c776b5 Iustin Pop
    self._GoReconnect(False)
3909 53c776b5 Iustin Pop
    self._WaitUntilSync()
3910 53c776b5 Iustin Pop
3911 53c776b5 Iustin Pop
    self.feedback_fn("* done")
3912 53c776b5 Iustin Pop
3913 53c776b5 Iustin Pop
  def Exec(self, feedback_fn):
3914 53c776b5 Iustin Pop
    """Perform the migration.
3915 53c776b5 Iustin Pop

3916 53c776b5 Iustin Pop
    """
3917 53c776b5 Iustin Pop
    self.feedback_fn = feedback_fn
3918 53c776b5 Iustin Pop
3919 53c776b5 Iustin Pop
    self.source_node = self.instance.primary_node
3920 53c776b5 Iustin Pop
    self.target_node = self.instance.secondary_nodes[0]
3921 53c776b5 Iustin Pop
    self.all_nodes = [self.source_node, self.target_node]
3922 53c776b5 Iustin Pop
    self.nodes_ip = {
3923 53c776b5 Iustin Pop
      self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
3924 53c776b5 Iustin Pop
      self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
3925 53c776b5 Iustin Pop
      }
3926 53c776b5 Iustin Pop
    if self.op.cleanup:
3927 53c776b5 Iustin Pop
      return self._ExecCleanup()
3928 53c776b5 Iustin Pop
    else:
3929 53c776b5 Iustin Pop
      return self._ExecMigration()
3930 53c776b5 Iustin Pop
3931 53c776b5 Iustin Pop
3932 428958aa Iustin Pop
def _CreateBlockDev(lu, node, instance, device, force_create,
3933 428958aa Iustin Pop
                    info, force_open):
3934 428958aa Iustin Pop
  """Create a tree of block devices on a given node.
3935 a8083063 Iustin Pop

3936 a8083063 Iustin Pop
  If this device type has to be created on secondaries, create it and
3937 a8083063 Iustin Pop
  all its children.
3938 a8083063 Iustin Pop

3939 a8083063 Iustin Pop
  If not, just recurse to children keeping the same 'force' value.
3940 a8083063 Iustin Pop

3941 428958aa Iustin Pop
  @param lu: the lu on whose behalf we execute
3942 428958aa Iustin Pop
  @param node: the node on which to create the device
3943 428958aa Iustin Pop
  @type instance: L{objects.Instance}
3944 428958aa Iustin Pop
  @param instance: the instance which owns the device
3945 428958aa Iustin Pop
  @type device: L{objects.Disk}
3946 428958aa Iustin Pop
  @param device: the device to create
3947 428958aa Iustin Pop
  @type force_create: boolean
3948 428958aa Iustin Pop
  @param force_create: whether to force creation of this device; this
3949 428958aa Iustin Pop
      will be change to True whenever we find a device which has
3950 428958aa Iustin Pop
      CreateOnSecondary() attribute
3951 428958aa Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
3952 428958aa Iustin Pop
      (this will be represented as a LVM tag)
3953 428958aa Iustin Pop
  @type force_open: boolean
3954 428958aa Iustin Pop
  @param force_open: this parameter will be passes to the
3955 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
3956 428958aa Iustin Pop
      whether we run on primary or not, and it affects both
3957 428958aa Iustin Pop
      the child assembly and the device own Open() execution
3958 428958aa Iustin Pop

3959 a8083063 Iustin Pop
  """
3960 a8083063 Iustin Pop
  if device.CreateOnSecondary():
3961 428958aa Iustin Pop
    force_create = True
3962 796cab27 Iustin Pop
3963 a8083063 Iustin Pop
  if device.children:
3964 a8083063 Iustin Pop
    for child in device.children:
3965 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, child, force_create,
3966 428958aa Iustin Pop
                      info, force_open)
3967 a8083063 Iustin Pop
3968 428958aa Iustin Pop
  if not force_create:
3969 796cab27 Iustin Pop
    return
3970 796cab27 Iustin Pop
3971 de12473a Iustin Pop
  _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
3972 de12473a Iustin Pop
3973 de12473a Iustin Pop
3974 de12473a Iustin Pop
def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
3975 de12473a Iustin Pop
  """Create a single block device on a given node.
3976 de12473a Iustin Pop

3977 de12473a Iustin Pop
  This will not recurse over children of the device, so they must be
3978 de12473a Iustin Pop
  created in advance.
3979 de12473a Iustin Pop

3980 de12473a Iustin Pop
  @param lu: the lu on whose behalf we execute
3981 de12473a Iustin Pop
  @param node: the node on which to create the device
3982 de12473a Iustin Pop
  @type instance: L{objects.Instance}
3983 de12473a Iustin Pop
  @param instance: the instance which owns the device
3984 de12473a Iustin Pop
  @type device: L{objects.Disk}
3985 de12473a Iustin Pop
  @param device: the device to create
3986 de12473a Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
3987 de12473a Iustin Pop
      (this will be represented as a LVM tag)
3988 de12473a Iustin Pop
  @type force_open: boolean
3989 de12473a Iustin Pop
  @param force_open: this parameter will be passes to the
3990 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
3991 de12473a Iustin Pop
      whether we run on primary or not, and it affects both
3992 de12473a Iustin Pop
      the child assembly and the device own Open() execution
3993 de12473a Iustin Pop

3994 de12473a Iustin Pop
  """
3995 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
3996 7d81697f Iustin Pop
  result = lu.rpc.call_blockdev_create(node, device, device.size,
3997 428958aa Iustin Pop
                                       instance.name, force_open, info)
3998 7d81697f Iustin Pop
  msg = result.RemoteFailMsg()
3999 7d81697f Iustin Pop
  if msg:
4000 428958aa Iustin Pop
    raise errors.OpExecError("Can't create block device %s on"
4001 7d81697f Iustin Pop
                             " node %s for instance %s: %s" %
4002 7d81697f Iustin Pop
                             (device, node, instance.name, msg))
4003 a8083063 Iustin Pop
  if device.physical_id is None:
4004 0959c824 Iustin Pop
    device.physical_id = result.payload
4005 a8083063 Iustin Pop
4006 a8083063 Iustin Pop
4007 b9bddb6b Iustin Pop
def _GenerateUniqueNames(lu, exts):
4008 923b1523 Iustin Pop
  """Generate a suitable LV name.
4009 923b1523 Iustin Pop

4010 923b1523 Iustin Pop
  This will generate a logical volume name for the given instance.
4011 923b1523 Iustin Pop

4012 923b1523 Iustin Pop
  """
4013 923b1523 Iustin Pop
  results = []
4014 923b1523 Iustin Pop
  for val in exts:
4015 b9bddb6b Iustin Pop
    new_id = lu.cfg.GenerateUniqueID()
4016 923b1523 Iustin Pop
    results.append("%s%s" % (new_id, val))
4017 923b1523 Iustin Pop
  return results
4018 923b1523 Iustin Pop
4019 923b1523 Iustin Pop
4020 b9bddb6b Iustin Pop
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
4021 ffa1c0dc Iustin Pop
                         p_minor, s_minor):
4022 a1f445d3 Iustin Pop
  """Generate a drbd8 device complete with its children.
4023 a1f445d3 Iustin Pop

4024 a1f445d3 Iustin Pop
  """
4025 b9bddb6b Iustin Pop
  port = lu.cfg.AllocatePort()
4026 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
4027 b9bddb6b Iustin Pop
  shared_secret = lu.cfg.GenerateDRBDSecret()
4028 a1f445d3 Iustin Pop
  dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
4029 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[0]))
4030 a1f445d3 Iustin Pop
  dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
4031 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[1]))
4032 a1f445d3 Iustin Pop
  drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
4033 ffa1c0dc Iustin Pop
                          logical_id=(primary, secondary, port,
4034 f9518d38 Iustin Pop
                                      p_minor, s_minor,
4035 f9518d38 Iustin Pop
                                      shared_secret),
4036 ffa1c0dc Iustin Pop
                          children=[dev_data, dev_meta],
4037 a1f445d3 Iustin Pop
                          iv_name=iv_name)
4038 a1f445d3 Iustin Pop
  return drbd_dev
4039 a1f445d3 Iustin Pop
4040 7c0d6283 Michael Hanselmann
4041 b9bddb6b Iustin Pop
def _GenerateDiskTemplate(lu, template_name,
4042 a8083063 Iustin Pop
                          instance_name, primary_node,
4043 08db7c5c Iustin Pop
                          secondary_nodes, disk_info,
4044 e2a65344 Iustin Pop
                          file_storage_dir, file_driver,
4045 e2a65344 Iustin Pop
                          base_index):
4046 a8083063 Iustin Pop
  """Generate the entire disk layout for a given template type.
4047 a8083063 Iustin Pop

4048 a8083063 Iustin Pop
  """
4049 a8083063 Iustin Pop
  #TODO: compute space requirements
4050 a8083063 Iustin Pop
4051 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
4052 08db7c5c Iustin Pop
  disk_count = len(disk_info)
4053 08db7c5c Iustin Pop
  disks = []
4054 3517d9b9 Manuel Franceschini
  if template_name == constants.DT_DISKLESS:
4055 08db7c5c Iustin Pop
    pass
4056 3517d9b9 Manuel Franceschini
  elif template_name == constants.DT_PLAIN:
4057 a8083063 Iustin Pop
    if len(secondary_nodes) != 0:
4058 a8083063 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4059 923b1523 Iustin Pop
4060 08db7c5c Iustin Pop
    names = _GenerateUniqueNames(lu, [".disk%d" % i
4061 08db7c5c Iustin Pop
                                      for i in range(disk_count)])
4062 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4063 e2a65344 Iustin Pop
      disk_index = idx + base_index
4064 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
4065 08db7c5c Iustin Pop
                              logical_id=(vgname, names[idx]),
4066 6ec66eae Iustin Pop
                              iv_name="disk/%d" % disk_index,
4067 6ec66eae Iustin Pop
                              mode=disk["mode"])
4068 08db7c5c Iustin Pop
      disks.append(disk_dev)
4069 a1f445d3 Iustin Pop
  elif template_name == constants.DT_DRBD8:
4070 a1f445d3 Iustin Pop
    if len(secondary_nodes) != 1:
4071 a1f445d3 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4072 a1f445d3 Iustin Pop
    remote_node = secondary_nodes[0]
4073 08db7c5c Iustin Pop
    minors = lu.cfg.AllocateDRBDMinor(
4074 08db7c5c Iustin Pop
      [primary_node, remote_node] * len(disk_info), instance_name)
4075 08db7c5c Iustin Pop
4076 e6c1ff2f Iustin Pop
    names = []
4077 e6c1ff2f Iustin Pop
    for lv_prefix in _GenerateUniqueNames(lu, [".disk%d" % i
4078 e6c1ff2f Iustin Pop
                                               for i in range(disk_count)]):
4079 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_data")
4080 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_meta")
4081 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4082 112050d9 Iustin Pop
      disk_index = idx + base_index
4083 08db7c5c Iustin Pop
      disk_dev = _GenerateDRBD8Branch(lu, primary_node, remote_node,
4084 08db7c5c Iustin Pop
                                      disk["size"], names[idx*2:idx*2+2],
4085 e2a65344 Iustin Pop
                                      "disk/%d" % disk_index,
4086 08db7c5c Iustin Pop
                                      minors[idx*2], minors[idx*2+1])
4087 6ec66eae Iustin Pop
      disk_dev.mode = disk["mode"]
4088 08db7c5c Iustin Pop
      disks.append(disk_dev)
4089 0f1a06e3 Manuel Franceschini
  elif template_name == constants.DT_FILE:
4090 0f1a06e3 Manuel Franceschini
    if len(secondary_nodes) != 0:
4091 0f1a06e3 Manuel Franceschini
      raise errors.ProgrammerError("Wrong template configuration")
4092 0f1a06e3 Manuel Franceschini
4093 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4094 112050d9 Iustin Pop
      disk_index = idx + base_index
4095 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_FILE, size=disk["size"],
4096 e2a65344 Iustin Pop
                              iv_name="disk/%d" % disk_index,
4097 08db7c5c Iustin Pop
                              logical_id=(file_driver,
4098 08db7c5c Iustin Pop
                                          "%s/disk%d" % (file_storage_dir,
4099 43e99cff Guido Trotter
                                                         disk_index)),
4100 6ec66eae Iustin Pop
                              mode=disk["mode"])
4101 08db7c5c Iustin Pop
      disks.append(disk_dev)
4102 a8083063 Iustin Pop
  else:
4103 a8083063 Iustin Pop
    raise errors.ProgrammerError("Invalid disk template '%s'" % template_name)
4104 a8083063 Iustin Pop
  return disks
4105 a8083063 Iustin Pop
4106 a8083063 Iustin Pop
4107 a0c3fea1 Michael Hanselmann
def _GetInstanceInfoText(instance):
4108 3ecf6786 Iustin Pop
  """Compute that text that should be added to the disk's metadata.
4109 3ecf6786 Iustin Pop

4110 3ecf6786 Iustin Pop
  """
4111 a0c3fea1 Michael Hanselmann
  return "originstname+%s" % instance.name
4112 a0c3fea1 Michael Hanselmann
4113 a0c3fea1 Michael Hanselmann
4114 b9bddb6b Iustin Pop
def _CreateDisks(lu, instance):
4115 a8083063 Iustin Pop
  """Create all disks for an instance.
4116 a8083063 Iustin Pop

4117 a8083063 Iustin Pop
  This abstracts away some work from AddInstance.
4118 a8083063 Iustin Pop

4119 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4120 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4121 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4122 e4376078 Iustin Pop
  @param instance: the instance whose disks we should create
4123 e4376078 Iustin Pop
  @rtype: boolean
4124 e4376078 Iustin Pop
  @return: the success of the creation
4125 a8083063 Iustin Pop

4126 a8083063 Iustin Pop
  """
4127 a0c3fea1 Michael Hanselmann
  info = _GetInstanceInfoText(instance)
4128 428958aa Iustin Pop
  pnode = instance.primary_node
4129 a0c3fea1 Michael Hanselmann
4130 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4131 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4132 428958aa Iustin Pop
    result = lu.rpc.call_file_storage_dir_create(pnode, file_storage_dir)
4133 0f1a06e3 Manuel Franceschini
4134 781de953 Iustin Pop
    if result.failed or not result.data:
4135 428958aa Iustin Pop
      raise errors.OpExecError("Could not connect to node '%s'" % pnode)
4136 0f1a06e3 Manuel Franceschini
4137 781de953 Iustin Pop
    if not result.data[0]:
4138 796cab27 Iustin Pop
      raise errors.OpExecError("Failed to create directory '%s'" %
4139 796cab27 Iustin Pop
                               file_storage_dir)
4140 0f1a06e3 Manuel Franceschini
4141 24991749 Iustin Pop
  # Note: this needs to be kept in sync with adding of disks in
4142 24991749 Iustin Pop
  # LUSetInstanceParams
4143 a8083063 Iustin Pop
  for device in instance.disks:
4144 9a4f63d1 Iustin Pop
    logging.info("Creating volume %s for instance %s",
4145 9a4f63d1 Iustin Pop
                 device.iv_name, instance.name)
4146 a8083063 Iustin Pop
    #HARDCODE
4147 428958aa Iustin Pop
    for node in instance.all_nodes:
4148 428958aa Iustin Pop
      f_create = node == pnode
4149 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, device, f_create, info, f_create)
4150 a8083063 Iustin Pop
4151 a8083063 Iustin Pop
4152 b9bddb6b Iustin Pop
def _RemoveDisks(lu, instance):
4153 a8083063 Iustin Pop
  """Remove all disks for an instance.
4154 a8083063 Iustin Pop

4155 a8083063 Iustin Pop
  This abstracts away some work from `AddInstance()` and
4156 a8083063 Iustin Pop
  `RemoveInstance()`. Note that in case some of the devices couldn't
4157 1d67656e Iustin Pop
  be removed, the removal will continue with the other ones (compare
4158 a8083063 Iustin Pop
  with `_CreateDisks()`).
4159 a8083063 Iustin Pop

4160 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4161 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4162 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4163 e4376078 Iustin Pop
  @param instance: the instance whose disks we should remove
4164 e4376078 Iustin Pop
  @rtype: boolean
4165 e4376078 Iustin Pop
  @return: the success of the removal
4166 a8083063 Iustin Pop

4167 a8083063 Iustin Pop
  """
4168 9a4f63d1 Iustin Pop
  logging.info("Removing block devices for instance %s", instance.name)
4169 a8083063 Iustin Pop
4170 e1bc0878 Iustin Pop
  all_result = True
4171 a8083063 Iustin Pop
  for device in instance.disks:
4172 a8083063 Iustin Pop
    for node, disk in device.ComputeNodeTree(instance.primary_node):
4173 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(disk, node)
4174 e1bc0878 Iustin Pop
      msg = lu.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
4175 e1bc0878 Iustin Pop
      if msg:
4176 e1bc0878 Iustin Pop
        lu.LogWarning("Could not remove block device %s on node %s,"
4177 e1bc0878 Iustin Pop
                      " continuing anyway: %s", device.iv_name, node, msg)
4178 e1bc0878 Iustin Pop
        all_result = False
4179 0f1a06e3 Manuel Franceschini
4180 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4181 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4182 781de953 Iustin Pop
    result = lu.rpc.call_file_storage_dir_remove(instance.primary_node,
4183 781de953 Iustin Pop
                                                 file_storage_dir)
4184 781de953 Iustin Pop
    if result.failed or not result.data:
4185 9a4f63d1 Iustin Pop
      logging.error("Could not remove directory '%s'", file_storage_dir)
4186 e1bc0878 Iustin Pop
      all_result = False
4187 0f1a06e3 Manuel Franceschini
4188 e1bc0878 Iustin Pop
  return all_result
4189 a8083063 Iustin Pop
4190 a8083063 Iustin Pop
4191 08db7c5c Iustin Pop
def _ComputeDiskSize(disk_template, disks):
4192 e2fe6369 Iustin Pop
  """Compute disk size requirements in the volume group
4193 e2fe6369 Iustin Pop

4194 e2fe6369 Iustin Pop
  """
4195 e2fe6369 Iustin Pop
  # Required free disk space as a function of disk and swap space
4196 e2fe6369 Iustin Pop
  req_size_dict = {
4197 e2fe6369 Iustin Pop
    constants.DT_DISKLESS: None,
4198 08db7c5c Iustin Pop
    constants.DT_PLAIN: sum(d["size"] for d in disks),
4199 08db7c5c Iustin Pop
    # 128 MB are added for drbd metadata for each disk
4200 08db7c5c Iustin Pop
    constants.DT_DRBD8: sum(d["size"] + 128 for d in disks),
4201 e2fe6369 Iustin Pop
    constants.DT_FILE: None,
4202 e2fe6369 Iustin Pop
  }
4203 e2fe6369 Iustin Pop
4204 e2fe6369 Iustin Pop
  if disk_template not in req_size_dict:
4205 e2fe6369 Iustin Pop
    raise errors.ProgrammerError("Disk template '%s' size requirement"
4206 e2fe6369 Iustin Pop
                                 " is unknown" %  disk_template)
4207 e2fe6369 Iustin Pop
4208 e2fe6369 Iustin Pop
  return req_size_dict[disk_template]
4209 e2fe6369 Iustin Pop
4210 e2fe6369 Iustin Pop
4211 74409b12 Iustin Pop
def _CheckHVParams(lu, nodenames, hvname, hvparams):
4212 74409b12 Iustin Pop
  """Hypervisor parameter validation.
4213 74409b12 Iustin Pop

4214 74409b12 Iustin Pop
  This function abstract the hypervisor parameter validation to be
4215 74409b12 Iustin Pop
  used in both instance create and instance modify.
4216 74409b12 Iustin Pop

4217 74409b12 Iustin Pop
  @type lu: L{LogicalUnit}
4218 74409b12 Iustin Pop
  @param lu: the logical unit for which we check
4219 74409b12 Iustin Pop
  @type nodenames: list
4220 74409b12 Iustin Pop
  @param nodenames: the list of nodes on which we should check
4221 74409b12 Iustin Pop
  @type hvname: string
4222 74409b12 Iustin Pop
  @param hvname: the name of the hypervisor we should use
4223 74409b12 Iustin Pop
  @type hvparams: dict
4224 74409b12 Iustin Pop
  @param hvparams: the parameters which we need to check
4225 74409b12 Iustin Pop
  @raise errors.OpPrereqError: if the parameters are not valid
4226 74409b12 Iustin Pop

4227 74409b12 Iustin Pop
  """
4228 74409b12 Iustin Pop
  hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
4229 74409b12 Iustin Pop
                                                  hvname,
4230 74409b12 Iustin Pop
                                                  hvparams)
4231 74409b12 Iustin Pop
  for node in nodenames:
4232 781de953 Iustin Pop
    info = hvinfo[node]
4233 68c6f21c Iustin Pop
    if info.offline:
4234 68c6f21c Iustin Pop
      continue
4235 0959c824 Iustin Pop
    msg = info.RemoteFailMsg()
4236 0959c824 Iustin Pop
    if msg:
4237 d64769a8 Iustin Pop
      raise errors.OpPrereqError("Hypervisor parameter validation"
4238 d64769a8 Iustin Pop
                                 " failed on node %s: %s" % (node, msg))
4239 74409b12 Iustin Pop
4240 74409b12 Iustin Pop
4241 a8083063 Iustin Pop
class LUCreateInstance(LogicalUnit):
4242 a8083063 Iustin Pop
  """Create an instance.
4243 a8083063 Iustin Pop

4244 a8083063 Iustin Pop
  """
4245 a8083063 Iustin Pop
  HPATH = "instance-add"
4246 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4247 08db7c5c Iustin Pop
  _OP_REQP = ["instance_name", "disks", "disk_template",
4248 08db7c5c Iustin Pop
              "mode", "start",
4249 08db7c5c Iustin Pop
              "wait_for_sync", "ip_check", "nics",
4250 338e51e8 Iustin Pop
              "hvparams", "beparams"]
4251 7baf741d Guido Trotter
  REQ_BGL = False
4252 7baf741d Guido Trotter
4253 7baf741d Guido Trotter
  def _ExpandNode(self, node):
4254 7baf741d Guido Trotter
    """Expands and checks one node name.
4255 7baf741d Guido Trotter

4256 7baf741d Guido Trotter
    """
4257 7baf741d Guido Trotter
    node_full = self.cfg.ExpandNodeName(node)
4258 7baf741d Guido Trotter
    if node_full is None:
4259 7baf741d Guido Trotter
      raise errors.OpPrereqError("Unknown node %s" % node)
4260 7baf741d Guido Trotter
    return node_full
4261 7baf741d Guido Trotter
4262 7baf741d Guido Trotter
  def ExpandNames(self):
4263 7baf741d Guido Trotter
    """ExpandNames for CreateInstance.
4264 7baf741d Guido Trotter

4265 7baf741d Guido Trotter
    Figure out the right locks for instance creation.
4266 7baf741d Guido Trotter

4267 7baf741d Guido Trotter
    """
4268 7baf741d Guido Trotter
    self.needed_locks = {}
4269 7baf741d Guido Trotter
4270 7baf741d Guido Trotter
    # set optional parameters to none if they don't exist
4271 6785674e Iustin Pop
    for attr in ["pnode", "snode", "iallocator", "hypervisor"]:
4272 7baf741d Guido Trotter
      if not hasattr(self.op, attr):
4273 7baf741d Guido Trotter
        setattr(self.op, attr, None)
4274 7baf741d Guido Trotter
4275 4b2f38dd Iustin Pop
    # cheap checks, mostly valid constants given
4276 4b2f38dd Iustin Pop
4277 7baf741d Guido Trotter
    # verify creation mode
4278 7baf741d Guido Trotter
    if self.op.mode not in (constants.INSTANCE_CREATE,
4279 7baf741d Guido Trotter
                            constants.INSTANCE_IMPORT):
4280 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid instance creation mode '%s'" %
4281 7baf741d Guido Trotter
                                 self.op.mode)
4282 4b2f38dd Iustin Pop
4283 7baf741d Guido Trotter
    # disk template and mirror node verification
4284 7baf741d Guido Trotter
    if self.op.disk_template not in constants.DISK_TEMPLATES:
4285 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid disk template name")
4286 7baf741d Guido Trotter
4287 4b2f38dd Iustin Pop
    if self.op.hypervisor is None:
4288 4b2f38dd Iustin Pop
      self.op.hypervisor = self.cfg.GetHypervisorType()
4289 4b2f38dd Iustin Pop
4290 8705eb96 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
4291 8705eb96 Iustin Pop
    enabled_hvs = cluster.enabled_hypervisors
4292 4b2f38dd Iustin Pop
    if self.op.hypervisor not in enabled_hvs:
4293 4b2f38dd Iustin Pop
      raise errors.OpPrereqError("Selected hypervisor (%s) not enabled in the"
4294 4b2f38dd Iustin Pop
                                 " cluster (%s)" % (self.op.hypervisor,
4295 4b2f38dd Iustin Pop
                                  ",".join(enabled_hvs)))
4296 4b2f38dd Iustin Pop
4297 6785674e Iustin Pop
    # check hypervisor parameter syntax (locally)
4298 a5728081 Guido Trotter
    utils.ForceDictType(self.op.hvparams, constants.HVS_PARAMETER_TYPES)
4299 8705eb96 Iustin Pop
    filled_hvp = cluster.FillDict(cluster.hvparams[self.op.hypervisor],
4300 8705eb96 Iustin Pop
                                  self.op.hvparams)
4301 6785674e Iustin Pop
    hv_type = hypervisor.GetHypervisor(self.op.hypervisor)
4302 8705eb96 Iustin Pop
    hv_type.CheckParameterSyntax(filled_hvp)
4303 6785674e Iustin Pop
4304 338e51e8 Iustin Pop
    # fill and remember the beparams dict
4305 a5728081 Guido Trotter
    utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
4306 338e51e8 Iustin Pop
    self.be_full = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
4307 338e51e8 Iustin Pop
                                    self.op.beparams)
4308 338e51e8 Iustin Pop
4309 7baf741d Guido Trotter
    #### instance parameters check
4310 7baf741d Guido Trotter
4311 7baf741d Guido Trotter
    # instance name verification
4312 7baf741d Guido Trotter
    hostname1 = utils.HostInfo(self.op.instance_name)
4313 7baf741d Guido Trotter
    self.op.instance_name = instance_name = hostname1.name
4314 7baf741d Guido Trotter
4315 7baf741d Guido Trotter
    # this is just a preventive check, but someone might still add this
4316 7baf741d Guido Trotter
    # instance in the meantime, and creation will fail at lock-add time
4317 7baf741d Guido Trotter
    if instance_name in self.cfg.GetInstanceList():
4318 7baf741d Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
4319 7baf741d Guido Trotter
                                 instance_name)
4320 7baf741d Guido Trotter
4321 7baf741d Guido Trotter
    self.add_locks[locking.LEVEL_INSTANCE] = instance_name
4322 7baf741d Guido Trotter
4323 08db7c5c Iustin Pop
    # NIC buildup
4324 08db7c5c Iustin Pop
    self.nics = []
4325 08db7c5c Iustin Pop
    for nic in self.op.nics:
4326 08db7c5c Iustin Pop
      # ip validity checks
4327 08db7c5c Iustin Pop
      ip = nic.get("ip", None)
4328 08db7c5c Iustin Pop
      if ip is None or ip.lower() == "none":
4329 08db7c5c Iustin Pop
        nic_ip = None
4330 08db7c5c Iustin Pop
      elif ip.lower() == constants.VALUE_AUTO:
4331 08db7c5c Iustin Pop
        nic_ip = hostname1.ip
4332 08db7c5c Iustin Pop
      else:
4333 08db7c5c Iustin Pop
        if not utils.IsValidIP(ip):
4334 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Given IP address '%s' doesn't look"
4335 08db7c5c Iustin Pop
                                     " like a valid IP" % ip)
4336 08db7c5c Iustin Pop
        nic_ip = ip
4337 08db7c5c Iustin Pop
4338 08db7c5c Iustin Pop
      # MAC address verification
4339 08db7c5c Iustin Pop
      mac = nic.get("mac", constants.VALUE_AUTO)
4340 08db7c5c Iustin Pop
      if mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4341 08db7c5c Iustin Pop
        if not utils.IsValidMac(mac.lower()):
4342 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Invalid MAC address specified: %s" %
4343 08db7c5c Iustin Pop
                                     mac)
4344 08db7c5c Iustin Pop
      # bridge verification
4345 9939547b Iustin Pop
      bridge = nic.get("bridge", None)
4346 9939547b Iustin Pop
      if bridge is None:
4347 9939547b Iustin Pop
        bridge = self.cfg.GetDefBridge()
4348 08db7c5c Iustin Pop
      self.nics.append(objects.NIC(mac=mac, ip=nic_ip, bridge=bridge))
4349 08db7c5c Iustin Pop
4350 08db7c5c Iustin Pop
    # disk checks/pre-build
4351 08db7c5c Iustin Pop
    self.disks = []
4352 08db7c5c Iustin Pop
    for disk in self.op.disks:
4353 08db7c5c Iustin Pop
      mode = disk.get("mode", constants.DISK_RDWR)
4354 08db7c5c Iustin Pop
      if mode not in constants.DISK_ACCESS_SET:
4355 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk access mode '%s'" %
4356 08db7c5c Iustin Pop
                                   mode)
4357 08db7c5c Iustin Pop
      size = disk.get("size", None)
4358 08db7c5c Iustin Pop
      if size is None:
4359 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Missing disk size")
4360 08db7c5c Iustin Pop
      try:
4361 08db7c5c Iustin Pop
        size = int(size)
4362 08db7c5c Iustin Pop
      except ValueError:
4363 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk size '%s'" % size)
4364 08db7c5c Iustin Pop
      self.disks.append({"size": size, "mode": mode})
4365 08db7c5c Iustin Pop
4366 7baf741d Guido Trotter
    # used in CheckPrereq for ip ping check
4367 7baf741d Guido Trotter
    self.check_ip = hostname1.ip
4368 7baf741d Guido Trotter
4369 7baf741d Guido Trotter
    # file storage checks
4370 7baf741d Guido Trotter
    if (self.op.file_driver and
4371 7baf741d Guido Trotter
        not self.op.file_driver in constants.FILE_DRIVER):
4372 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid file driver name '%s'" %
4373 7baf741d Guido Trotter
                                 self.op.file_driver)
4374 7baf741d Guido Trotter
4375 7baf741d Guido Trotter
    if self.op.file_storage_dir and os.path.isabs(self.op.file_storage_dir):
4376 7baf741d Guido Trotter
      raise errors.OpPrereqError("File storage directory path not absolute")
4377 7baf741d Guido Trotter
4378 7baf741d Guido Trotter
    ### Node/iallocator related checks
4379 7baf741d Guido Trotter
    if [self.op.iallocator, self.op.pnode].count(None) != 1:
4380 7baf741d Guido Trotter
      raise errors.OpPrereqError("One and only one of iallocator and primary"
4381 7baf741d Guido Trotter
                                 " node must be given")
4382 7baf741d Guido Trotter
4383 7baf741d Guido Trotter
    if self.op.iallocator:
4384 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4385 7baf741d Guido Trotter
    else:
4386 7baf741d Guido Trotter
      self.op.pnode = self._ExpandNode(self.op.pnode)
4387 7baf741d Guido Trotter
      nodelist = [self.op.pnode]
4388 7baf741d Guido Trotter
      if self.op.snode is not None:
4389 7baf741d Guido Trotter
        self.op.snode = self._ExpandNode(self.op.snode)
4390 7baf741d Guido Trotter
        nodelist.append(self.op.snode)
4391 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = nodelist
4392 7baf741d Guido Trotter
4393 7baf741d Guido Trotter
    # in case of import lock the source node too
4394 7baf741d Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4395 7baf741d Guido Trotter
      src_node = getattr(self.op, "src_node", None)
4396 7baf741d Guido Trotter
      src_path = getattr(self.op, "src_path", None)
4397 7baf741d Guido Trotter
4398 b9322a9f Guido Trotter
      if src_path is None:
4399 b9322a9f Guido Trotter
        self.op.src_path = src_path = self.op.instance_name
4400 b9322a9f Guido Trotter
4401 b9322a9f Guido Trotter
      if src_node is None:
4402 b9322a9f Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4403 b9322a9f Guido Trotter
        self.op.src_node = None
4404 b9322a9f Guido Trotter
        if os.path.isabs(src_path):
4405 b9322a9f Guido Trotter
          raise errors.OpPrereqError("Importing an instance from an absolute"
4406 b9322a9f Guido Trotter
                                     " path requires a source node option.")
4407 b9322a9f Guido Trotter
      else:
4408 b9322a9f Guido Trotter
        self.op.src_node = src_node = self._ExpandNode(src_node)
4409 b9322a9f Guido Trotter
        if self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET:
4410 b9322a9f Guido Trotter
          self.needed_locks[locking.LEVEL_NODE].append(src_node)
4411 b9322a9f Guido Trotter
        if not os.path.isabs(src_path):
4412 b9322a9f Guido Trotter
          self.op.src_path = src_path = \
4413 b9322a9f Guido Trotter
            os.path.join(constants.EXPORT_DIR, src_path)
4414 7baf741d Guido Trotter
4415 7baf741d Guido Trotter
    else: # INSTANCE_CREATE
4416 7baf741d Guido Trotter
      if getattr(self.op, "os_type", None) is None:
4417 7baf741d Guido Trotter
        raise errors.OpPrereqError("No guest OS specified")
4418 a8083063 Iustin Pop
4419 538475ca Iustin Pop
  def _RunAllocator(self):
4420 538475ca Iustin Pop
    """Run the allocator based on input opcode.
4421 538475ca Iustin Pop

4422 538475ca Iustin Pop
    """
4423 08db7c5c Iustin Pop
    nics = [n.ToDict() for n in self.nics]
4424 72737a7f Iustin Pop
    ial = IAllocator(self,
4425 29859cb7 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_ALLOC,
4426 d1c2dd75 Iustin Pop
                     name=self.op.instance_name,
4427 d1c2dd75 Iustin Pop
                     disk_template=self.op.disk_template,
4428 d1c2dd75 Iustin Pop
                     tags=[],
4429 d1c2dd75 Iustin Pop
                     os=self.op.os_type,
4430 338e51e8 Iustin Pop
                     vcpus=self.be_full[constants.BE_VCPUS],
4431 338e51e8 Iustin Pop
                     mem_size=self.be_full[constants.BE_MEMORY],
4432 08db7c5c Iustin Pop
                     disks=self.disks,
4433 d1c2dd75 Iustin Pop
                     nics=nics,
4434 8cc7e742 Guido Trotter
                     hypervisor=self.op.hypervisor,
4435 29859cb7 Iustin Pop
                     )
4436 d1c2dd75 Iustin Pop
4437 d1c2dd75 Iustin Pop
    ial.Run(self.op.iallocator)
4438 d1c2dd75 Iustin Pop
4439 d1c2dd75 Iustin Pop
    if not ial.success:
4440 538475ca Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4441 538475ca Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4442 d1c2dd75 Iustin Pop
                                                           ial.info))
4443 27579978 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4444 538475ca Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4445 538475ca Iustin Pop
                                 " of nodes (%s), required %s" %
4446 97abc79f Iustin Pop
                                 (self.op.iallocator, len(ial.nodes),
4447 1ce4bbe3 René Nussbaumer
                                  ial.required_nodes))
4448 d1c2dd75 Iustin Pop
    self.op.pnode = ial.nodes[0]
4449 86d9d3bb Iustin Pop
    self.LogInfo("Selected nodes for instance %s via iallocator %s: %s",
4450 86d9d3bb Iustin Pop
                 self.op.instance_name, self.op.iallocator,
4451 86d9d3bb Iustin Pop
                 ", ".join(ial.nodes))
4452 27579978 Iustin Pop
    if ial.required_nodes == 2:
4453 d1c2dd75 Iustin Pop
      self.op.snode = ial.nodes[1]
4454 538475ca Iustin Pop
4455 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4456 a8083063 Iustin Pop
    """Build hooks env.
4457 a8083063 Iustin Pop

4458 a8083063 Iustin Pop
    This runs on master, primary and secondary nodes of the instance.
4459 a8083063 Iustin Pop

4460 a8083063 Iustin Pop
    """
4461 a8083063 Iustin Pop
    env = {
4462 2c2690c9 Iustin Pop
      "ADD_MODE": self.op.mode,
4463 a8083063 Iustin Pop
      }
4464 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4465 2c2690c9 Iustin Pop
      env["SRC_NODE"] = self.op.src_node
4466 2c2690c9 Iustin Pop
      env["SRC_PATH"] = self.op.src_path
4467 2c2690c9 Iustin Pop
      env["SRC_IMAGES"] = self.src_images
4468 396e1b78 Michael Hanselmann
4469 2c2690c9 Iustin Pop
    env.update(_BuildInstanceHookEnv(
4470 2c2690c9 Iustin Pop
      name=self.op.instance_name,
4471 396e1b78 Michael Hanselmann
      primary_node=self.op.pnode,
4472 396e1b78 Michael Hanselmann
      secondary_nodes=self.secondaries,
4473 4978db17 Iustin Pop
      status=self.op.start,
4474 ecb215b5 Michael Hanselmann
      os_type=self.op.os_type,
4475 338e51e8 Iustin Pop
      memory=self.be_full[constants.BE_MEMORY],
4476 338e51e8 Iustin Pop
      vcpus=self.be_full[constants.BE_VCPUS],
4477 08db7c5c Iustin Pop
      nics=[(n.ip, n.bridge, n.mac) for n in self.nics],
4478 2c2690c9 Iustin Pop
      disk_template=self.op.disk_template,
4479 2c2690c9 Iustin Pop
      disks=[(d["size"], d["mode"]) for d in self.disks],
4480 396e1b78 Michael Hanselmann
    ))
4481 a8083063 Iustin Pop
4482 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
4483 a8083063 Iustin Pop
          self.secondaries)
4484 a8083063 Iustin Pop
    return env, nl, nl
4485 a8083063 Iustin Pop
4486 a8083063 Iustin Pop
4487 a8083063 Iustin Pop
  def CheckPrereq(self):
4488 a8083063 Iustin Pop
    """Check prerequisites.
4489 a8083063 Iustin Pop

4490 a8083063 Iustin Pop
    """
4491 eedc99de Manuel Franceschini
    if (not self.cfg.GetVGName() and
4492 eedc99de Manuel Franceschini
        self.op.disk_template not in constants.DTS_NOT_LVM):
4493 eedc99de Manuel Franceschini
      raise errors.OpPrereqError("Cluster does not support lvm-based"
4494 eedc99de Manuel Franceschini
                                 " instances")
4495 eedc99de Manuel Franceschini
4496 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4497 7baf741d Guido Trotter
      src_node = self.op.src_node
4498 7baf741d Guido Trotter
      src_path = self.op.src_path
4499 a8083063 Iustin Pop
4500 c0cbdc67 Guido Trotter
      if src_node is None:
4501 c0cbdc67 Guido Trotter
        exp_list = self.rpc.call_export_list(
4502 781de953 Iustin Pop
          self.acquired_locks[locking.LEVEL_NODE])
4503 c0cbdc67 Guido Trotter
        found = False
4504 c0cbdc67 Guido Trotter
        for node in exp_list:
4505 781de953 Iustin Pop
          if not exp_list[node].failed and src_path in exp_list[node].data:
4506 c0cbdc67 Guido Trotter
            found = True
4507 c0cbdc67 Guido Trotter
            self.op.src_node = src_node = node
4508 c0cbdc67 Guido Trotter
            self.op.src_path = src_path = os.path.join(constants.EXPORT_DIR,
4509 c0cbdc67 Guido Trotter
                                                       src_path)
4510 c0cbdc67 Guido Trotter
            break
4511 c0cbdc67 Guido Trotter
        if not found:
4512 c0cbdc67 Guido Trotter
          raise errors.OpPrereqError("No export found for relative path %s" %
4513 c0cbdc67 Guido Trotter
                                      src_path)
4514 c0cbdc67 Guido Trotter
4515 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, src_node)
4516 781de953 Iustin Pop
      result = self.rpc.call_export_info(src_node, src_path)
4517 781de953 Iustin Pop
      result.Raise()
4518 781de953 Iustin Pop
      if not result.data:
4519 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("No export found in dir %s" % src_path)
4520 a8083063 Iustin Pop
4521 781de953 Iustin Pop
      export_info = result.data
4522 a8083063 Iustin Pop
      if not export_info.has_section(constants.INISECT_EXP):
4523 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Corrupted export config")
4524 a8083063 Iustin Pop
4525 a8083063 Iustin Pop
      ei_version = export_info.get(constants.INISECT_EXP, 'version')
4526 a8083063 Iustin Pop
      if (int(ei_version) != constants.EXPORT_VERSION):
4527 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Wrong export version %s (wanted %d)" %
4528 3ecf6786 Iustin Pop
                                   (ei_version, constants.EXPORT_VERSION))
4529 a8083063 Iustin Pop
4530 09acf207 Guido Trotter
      # Check that the new instance doesn't have less disks than the export
4531 08db7c5c Iustin Pop
      instance_disks = len(self.disks)
4532 09acf207 Guido Trotter
      export_disks = export_info.getint(constants.INISECT_INS, 'disk_count')
4533 09acf207 Guido Trotter
      if instance_disks < export_disks:
4534 09acf207 Guido Trotter
        raise errors.OpPrereqError("Not enough disks to import."
4535 09acf207 Guido Trotter
                                   " (instance: %d, export: %d)" %
4536 726d7d68 Iustin Pop
                                   (instance_disks, export_disks))
4537 a8083063 Iustin Pop
4538 a8083063 Iustin Pop
      self.op.os_type = export_info.get(constants.INISECT_EXP, 'os')
4539 09acf207 Guido Trotter
      disk_images = []
4540 09acf207 Guido Trotter
      for idx in range(export_disks):
4541 09acf207 Guido Trotter
        option = 'disk%d_dump' % idx
4542 09acf207 Guido Trotter
        if export_info.has_option(constants.INISECT_INS, option):
4543 09acf207 Guido Trotter
          # FIXME: are the old os-es, disk sizes, etc. useful?
4544 09acf207 Guido Trotter
          export_name = export_info.get(constants.INISECT_INS, option)
4545 09acf207 Guido Trotter
          image = os.path.join(src_path, export_name)
4546 09acf207 Guido Trotter
          disk_images.append(image)
4547 09acf207 Guido Trotter
        else:
4548 09acf207 Guido Trotter
          disk_images.append(False)
4549 09acf207 Guido Trotter
4550 09acf207 Guido Trotter
      self.src_images = disk_images
4551 901a65c1 Iustin Pop
4552 b4364a6b Guido Trotter
      old_name = export_info.get(constants.INISECT_INS, 'name')
4553 b4364a6b Guido Trotter
      # FIXME: int() here could throw a ValueError on broken exports
4554 b4364a6b Guido Trotter
      exp_nic_count = int(export_info.get(constants.INISECT_INS, 'nic_count'))
4555 b4364a6b Guido Trotter
      if self.op.instance_name == old_name:
4556 b4364a6b Guido Trotter
        for idx, nic in enumerate(self.nics):
4557 b4364a6b Guido Trotter
          if nic.mac == constants.VALUE_AUTO and exp_nic_count >= idx:
4558 b4364a6b Guido Trotter
            nic_mac_ini = 'nic%d_mac' % idx
4559 b4364a6b Guido Trotter
            nic.mac = export_info.get(constants.INISECT_INS, nic_mac_ini)
4560 bc89efc3 Guido Trotter
4561 295728df Guido Trotter
    # ENDIF: self.op.mode == constants.INSTANCE_IMPORT
4562 7baf741d Guido Trotter
    # ip ping checks (we use the same ip that was resolved in ExpandNames)
4563 901a65c1 Iustin Pop
    if self.op.start and not self.op.ip_check:
4564 901a65c1 Iustin Pop
      raise errors.OpPrereqError("Cannot ignore IP address conflicts when"
4565 901a65c1 Iustin Pop
                                 " adding an instance in start mode")
4566 901a65c1 Iustin Pop
4567 901a65c1 Iustin Pop
    if self.op.ip_check:
4568 7baf741d Guido Trotter
      if utils.TcpPing(self.check_ip, constants.DEFAULT_NODED_PORT):
4569 901a65c1 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
4570 7b3a8fb5 Iustin Pop
                                   (self.check_ip, self.op.instance_name))
4571 901a65c1 Iustin Pop
4572 295728df Guido Trotter
    #### mac address generation
4573 295728df Guido Trotter
    # By generating here the mac address both the allocator and the hooks get
4574 295728df Guido Trotter
    # the real final mac address rather than the 'auto' or 'generate' value.
4575 295728df Guido Trotter
    # There is a race condition between the generation and the instance object
4576 295728df Guido Trotter
    # creation, which means that we know the mac is valid now, but we're not
4577 295728df Guido Trotter
    # sure it will be when we actually add the instance. If things go bad
4578 295728df Guido Trotter
    # adding the instance will abort because of a duplicate mac, and the
4579 295728df Guido Trotter
    # creation job will fail.
4580 295728df Guido Trotter
    for nic in self.nics:
4581 295728df Guido Trotter
      if nic.mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4582 295728df Guido Trotter
        nic.mac = self.cfg.GenerateMAC()
4583 295728df Guido Trotter
4584 538475ca Iustin Pop
    #### allocator run
4585 538475ca Iustin Pop
4586 538475ca Iustin Pop
    if self.op.iallocator is not None:
4587 538475ca Iustin Pop
      self._RunAllocator()
4588 0f1a06e3 Manuel Franceschini
4589 901a65c1 Iustin Pop
    #### node related checks
4590 901a65c1 Iustin Pop
4591 901a65c1 Iustin Pop
    # check primary node
4592 7baf741d Guido Trotter
    self.pnode = pnode = self.cfg.GetNodeInfo(self.op.pnode)
4593 7baf741d Guido Trotter
    assert self.pnode is not None, \
4594 7baf741d Guido Trotter
      "Cannot retrieve locked node %s" % self.op.pnode
4595 7527a8a4 Iustin Pop
    if pnode.offline:
4596 7527a8a4 Iustin Pop
      raise errors.OpPrereqError("Cannot use offline primary node '%s'" %
4597 7527a8a4 Iustin Pop
                                 pnode.name)
4598 733a2b6a Iustin Pop
    if pnode.drained:
4599 733a2b6a Iustin Pop
      raise errors.OpPrereqError("Cannot use drained primary node '%s'" %
4600 733a2b6a Iustin Pop
                                 pnode.name)
4601 7527a8a4 Iustin Pop
4602 901a65c1 Iustin Pop
    self.secondaries = []
4603 901a65c1 Iustin Pop
4604 901a65c1 Iustin Pop
    # mirror node verification
4605 a1f445d3 Iustin Pop
    if self.op.disk_template in constants.DTS_NET_MIRROR:
4606 7baf741d Guido Trotter
      if self.op.snode is None:
4607 a1f445d3 Iustin Pop
        raise errors.OpPrereqError("The networked disk templates need"
4608 3ecf6786 Iustin Pop
                                   " a mirror node")
4609 7baf741d Guido Trotter
      if self.op.snode == pnode.name:
4610 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The secondary node cannot be"
4611 3ecf6786 Iustin Pop
                                   " the primary node.")
4612 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, self.op.snode)
4613 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, self.op.snode)
4614 733a2b6a Iustin Pop
      self.secondaries.append(self.op.snode)
4615 a8083063 Iustin Pop
4616 6785674e Iustin Pop
    nodenames = [pnode.name] + self.secondaries
4617 6785674e Iustin Pop
4618 e2fe6369 Iustin Pop
    req_size = _ComputeDiskSize(self.op.disk_template,
4619 08db7c5c Iustin Pop
                                self.disks)
4620 ed1ebc60 Guido Trotter
4621 8d75db10 Iustin Pop
    # Check lv size requirements
4622 8d75db10 Iustin Pop
    if req_size is not None:
4623 72737a7f Iustin Pop
      nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
4624 72737a7f Iustin Pop
                                         self.op.hypervisor)
4625 8d75db10 Iustin Pop
      for node in nodenames:
4626 781de953 Iustin Pop
        info = nodeinfo[node]
4627 781de953 Iustin Pop
        info.Raise()
4628 781de953 Iustin Pop
        info = info.data
4629 8d75db10 Iustin Pop
        if not info:
4630 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Cannot get current information"
4631 3e91897b Iustin Pop
                                     " from node '%s'" % node)
4632 8d75db10 Iustin Pop
        vg_free = info.get('vg_free', None)
4633 8d75db10 Iustin Pop
        if not isinstance(vg_free, int):
4634 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Can't compute free disk space on"
4635 8d75db10 Iustin Pop
                                     " node %s" % node)
4636 8d75db10 Iustin Pop
        if req_size > info['vg_free']:
4637 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Not enough disk space on target node %s."
4638 8d75db10 Iustin Pop
                                     " %d MB available, %d MB required" %
4639 8d75db10 Iustin Pop
                                     (node, info['vg_free'], req_size))
4640 ed1ebc60 Guido Trotter
4641 74409b12 Iustin Pop
    _CheckHVParams(self, nodenames, self.op.hypervisor, self.op.hvparams)
4642 6785674e Iustin Pop
4643 a8083063 Iustin Pop
    # os verification
4644 781de953 Iustin Pop
    result = self.rpc.call_os_get(pnode.name, self.op.os_type)
4645 781de953 Iustin Pop
    result.Raise()
4646 781de953 Iustin Pop
    if not isinstance(result.data, objects.OS):
4647 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("OS '%s' not in supported os list for"
4648 3ecf6786 Iustin Pop
                                 " primary node"  % self.op.os_type)
4649 a8083063 Iustin Pop
4650 901a65c1 Iustin Pop
    # bridge check on primary node
4651 08db7c5c Iustin Pop
    bridges = [n.bridge for n in self.nics]
4652 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(self.pnode.name, bridges)
4653 781de953 Iustin Pop
    result.Raise()
4654 781de953 Iustin Pop
    if not result.data:
4655 781de953 Iustin Pop
      raise errors.OpPrereqError("One of the target bridges '%s' does not"
4656 781de953 Iustin Pop
                                 " exist on destination node '%s'" %
4657 08db7c5c Iustin Pop
                                 (",".join(bridges), pnode.name))
4658 a8083063 Iustin Pop
4659 49ce1563 Iustin Pop
    # memory check on primary node
4660 49ce1563 Iustin Pop
    if self.op.start:
4661 b9bddb6b Iustin Pop
      _CheckNodeFreeMemory(self, self.pnode.name,
4662 49ce1563 Iustin Pop
                           "creating instance %s" % self.op.instance_name,
4663 338e51e8 Iustin Pop
                           self.be_full[constants.BE_MEMORY],
4664 338e51e8 Iustin Pop
                           self.op.hypervisor)
4665 49ce1563 Iustin Pop
4666 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4667 a8083063 Iustin Pop
    """Create and add the instance to the cluster.
4668 a8083063 Iustin Pop

4669 a8083063 Iustin Pop
    """
4670 a8083063 Iustin Pop
    instance = self.op.instance_name
4671 a8083063 Iustin Pop
    pnode_name = self.pnode.name
4672 a8083063 Iustin Pop
4673 e69d05fd Iustin Pop
    ht_kind = self.op.hypervisor
4674 2a6469d5 Alexander Schreiber
    if ht_kind in constants.HTS_REQ_PORT:
4675 2a6469d5 Alexander Schreiber
      network_port = self.cfg.AllocatePort()
4676 2a6469d5 Alexander Schreiber
    else:
4677 2a6469d5 Alexander Schreiber
      network_port = None
4678 58acb49d Alexander Schreiber
4679 6785674e Iustin Pop
    ##if self.op.vnc_bind_address is None:
4680 6785674e Iustin Pop
    ##  self.op.vnc_bind_address = constants.VNC_DEFAULT_BIND_ADDRESS
4681 31a853d2 Iustin Pop
4682 2c313123 Manuel Franceschini
    # this is needed because os.path.join does not accept None arguments
4683 2c313123 Manuel Franceschini
    if self.op.file_storage_dir is None:
4684 2c313123 Manuel Franceschini
      string_file_storage_dir = ""
4685 2c313123 Manuel Franceschini
    else:
4686 2c313123 Manuel Franceschini
      string_file_storage_dir = self.op.file_storage_dir
4687 2c313123 Manuel Franceschini
4688 0f1a06e3 Manuel Franceschini
    # build the full file storage dir path
4689 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.normpath(os.path.join(
4690 d6a02168 Michael Hanselmann
                                        self.cfg.GetFileStorageDir(),
4691 2c313123 Manuel Franceschini
                                        string_file_storage_dir, instance))
4692 0f1a06e3 Manuel Franceschini
4693 0f1a06e3 Manuel Franceschini
4694 b9bddb6b Iustin Pop
    disks = _GenerateDiskTemplate(self,
4695 a8083063 Iustin Pop
                                  self.op.disk_template,
4696 a8083063 Iustin Pop
                                  instance, pnode_name,
4697 08db7c5c Iustin Pop
                                  self.secondaries,
4698 08db7c5c Iustin Pop
                                  self.disks,
4699 0f1a06e3 Manuel Franceschini
                                  file_storage_dir,
4700 e2a65344 Iustin Pop
                                  self.op.file_driver,
4701 e2a65344 Iustin Pop
                                  0)
4702 a8083063 Iustin Pop
4703 a8083063 Iustin Pop
    iobj = objects.Instance(name=instance, os=self.op.os_type,
4704 a8083063 Iustin Pop
                            primary_node=pnode_name,
4705 08db7c5c Iustin Pop
                            nics=self.nics, disks=disks,
4706 a8083063 Iustin Pop
                            disk_template=self.op.disk_template,
4707 4978db17 Iustin Pop
                            admin_up=False,
4708 58acb49d Alexander Schreiber
                            network_port=network_port,
4709 338e51e8 Iustin Pop
                            beparams=self.op.beparams,
4710 6785674e Iustin Pop
                            hvparams=self.op.hvparams,
4711 e69d05fd Iustin Pop
                            hypervisor=self.op.hypervisor,
4712 a8083063 Iustin Pop
                            )
4713 a8083063 Iustin Pop
4714 a8083063 Iustin Pop
    feedback_fn("* creating instance disks...")
4715 796cab27 Iustin Pop
    try:
4716 796cab27 Iustin Pop
      _CreateDisks(self, iobj)
4717 796cab27 Iustin Pop
    except errors.OpExecError:
4718 796cab27 Iustin Pop
      self.LogWarning("Device creation failed, reverting...")
4719 796cab27 Iustin Pop
      try:
4720 796cab27 Iustin Pop
        _RemoveDisks(self, iobj)
4721 796cab27 Iustin Pop
      finally:
4722 796cab27 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance)
4723 796cab27 Iustin Pop
        raise
4724 a8083063 Iustin Pop
4725 a8083063 Iustin Pop
    feedback_fn("adding instance %s to cluster config" % instance)
4726 a8083063 Iustin Pop
4727 a8083063 Iustin Pop
    self.cfg.AddInstance(iobj)
4728 7baf741d Guido Trotter
    # Declare that we don't want to remove the instance lock anymore, as we've
4729 7baf741d Guido Trotter
    # added the instance to the config
4730 7baf741d Guido Trotter
    del self.remove_locks[locking.LEVEL_INSTANCE]
4731 e36e96b4 Guido Trotter
    # Unlock all the nodes
4732 9c8971d7 Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4733 9c8971d7 Guido Trotter
      nodes_keep = [self.op.src_node]
4734 9c8971d7 Guido Trotter
      nodes_release = [node for node in self.acquired_locks[locking.LEVEL_NODE]
4735 9c8971d7 Guido Trotter
                       if node != self.op.src_node]
4736 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE, nodes_release)
4737 9c8971d7 Guido Trotter
      self.acquired_locks[locking.LEVEL_NODE] = nodes_keep
4738 9c8971d7 Guido Trotter
    else:
4739 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE)
4740 9c8971d7 Guido Trotter
      del self.acquired_locks[locking.LEVEL_NODE]
4741 a8083063 Iustin Pop
4742 a8083063 Iustin Pop
    if self.op.wait_for_sync:
4743 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj)
4744 a1f445d3 Iustin Pop
    elif iobj.disk_template in constants.DTS_NET_MIRROR:
4745 a8083063 Iustin Pop
      # make sure the disks are not degraded (still sync-ing is ok)
4746 a8083063 Iustin Pop
      time.sleep(15)
4747 a8083063 Iustin Pop
      feedback_fn("* checking mirrors status")
4748 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj, oneshot=True)
4749 a8083063 Iustin Pop
    else:
4750 a8083063 Iustin Pop
      disk_abort = False
4751 a8083063 Iustin Pop
4752 a8083063 Iustin Pop
    if disk_abort:
4753 b9bddb6b Iustin Pop
      _RemoveDisks(self, iobj)
4754 a8083063 Iustin Pop
      self.cfg.RemoveInstance(iobj.name)
4755 7baf741d Guido Trotter
      # Make sure the instance lock gets removed
4756 7baf741d Guido Trotter
      self.remove_locks[locking.LEVEL_INSTANCE] = iobj.name
4757 3ecf6786 Iustin Pop
      raise errors.OpExecError("There are some degraded disks for"
4758 3ecf6786 Iustin Pop
                               " this instance")
4759 a8083063 Iustin Pop
4760 a8083063 Iustin Pop
    feedback_fn("creating os for instance %s on node %s" %
4761 a8083063 Iustin Pop
                (instance, pnode_name))
4762 a8083063 Iustin Pop
4763 a8083063 Iustin Pop
    if iobj.disk_template != constants.DT_DISKLESS:
4764 a8083063 Iustin Pop
      if self.op.mode == constants.INSTANCE_CREATE:
4765 a8083063 Iustin Pop
        feedback_fn("* running the instance OS create scripts...")
4766 781de953 Iustin Pop
        result = self.rpc.call_instance_os_add(pnode_name, iobj)
4767 20e01edd Iustin Pop
        msg = result.RemoteFailMsg()
4768 20e01edd Iustin Pop
        if msg:
4769 781de953 Iustin Pop
          raise errors.OpExecError("Could not add os for instance %s"
4770 20e01edd Iustin Pop
                                   " on node %s: %s" %
4771 20e01edd Iustin Pop
                                   (instance, pnode_name, msg))
4772 a8083063 Iustin Pop
4773 a8083063 Iustin Pop
      elif self.op.mode == constants.INSTANCE_IMPORT:
4774 a8083063 Iustin Pop
        feedback_fn("* running the instance OS import scripts...")
4775 a8083063 Iustin Pop
        src_node = self.op.src_node
4776 09acf207 Guido Trotter
        src_images = self.src_images
4777 62c9ec92 Iustin Pop
        cluster_name = self.cfg.GetClusterName()
4778 6c0af70e Guido Trotter
        import_result = self.rpc.call_instance_os_import(pnode_name, iobj,
4779 09acf207 Guido Trotter
                                                         src_node, src_images,
4780 6c0af70e Guido Trotter
                                                         cluster_name)
4781 781de953 Iustin Pop
        import_result.Raise()
4782 781de953 Iustin Pop
        for idx, result in enumerate(import_result.data):
4783 09acf207 Guido Trotter
          if not result:
4784 726d7d68 Iustin Pop
            self.LogWarning("Could not import the image %s for instance"
4785 726d7d68 Iustin Pop
                            " %s, disk %d, on node %s" %
4786 726d7d68 Iustin Pop
                            (src_images[idx], instance, idx, pnode_name))
4787 a8083063 Iustin Pop
      else:
4788 a8083063 Iustin Pop
        # also checked in the prereq part
4789 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Unknown OS initialization mode '%s'"
4790 3ecf6786 Iustin Pop
                                     % self.op.mode)
4791 a8083063 Iustin Pop
4792 a8083063 Iustin Pop
    if self.op.start:
4793 4978db17 Iustin Pop
      iobj.admin_up = True
4794 4978db17 Iustin Pop
      self.cfg.Update(iobj)
4795 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s", instance, pnode_name)
4796 a8083063 Iustin Pop
      feedback_fn("* starting instance...")
4797 07813a9e Iustin Pop
      result = self.rpc.call_instance_start(pnode_name, iobj)
4798 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
4799 dd279568 Iustin Pop
      if msg:
4800 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance: %s" % msg)
4801 a8083063 Iustin Pop
4802 a8083063 Iustin Pop
4803 a8083063 Iustin Pop
class LUConnectConsole(NoHooksLU):
4804 a8083063 Iustin Pop
  """Connect to an instance's console.
4805 a8083063 Iustin Pop

4806 a8083063 Iustin Pop
  This is somewhat special in that it returns the command line that
4807 a8083063 Iustin Pop
  you need to run on the master node in order to connect to the
4808 a8083063 Iustin Pop
  console.
4809 a8083063 Iustin Pop

4810 a8083063 Iustin Pop
  """
4811 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
4812 8659b73e Guido Trotter
  REQ_BGL = False
4813 8659b73e Guido Trotter
4814 8659b73e Guido Trotter
  def ExpandNames(self):
4815 8659b73e Guido Trotter
    self._ExpandAndLockInstance()
4816 a8083063 Iustin Pop
4817 a8083063 Iustin Pop
  def CheckPrereq(self):
4818 a8083063 Iustin Pop
    """Check prerequisites.
4819 a8083063 Iustin Pop

4820 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
4821 a8083063 Iustin Pop

4822 a8083063 Iustin Pop
    """
4823 8659b73e Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4824 8659b73e Guido Trotter
    assert self.instance is not None, \
4825 8659b73e Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4826 513e896d Guido Trotter
    _CheckNodeOnline(self, self.instance.primary_node)
4827 a8083063 Iustin Pop
4828 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4829 a8083063 Iustin Pop
    """Connect to the console of an instance
4830 a8083063 Iustin Pop

4831 a8083063 Iustin Pop
    """
4832 a8083063 Iustin Pop
    instance = self.instance
4833 a8083063 Iustin Pop
    node = instance.primary_node
4834 a8083063 Iustin Pop
4835 72737a7f Iustin Pop
    node_insts = self.rpc.call_instance_list([node],
4836 72737a7f Iustin Pop
                                             [instance.hypervisor])[node]
4837 781de953 Iustin Pop
    node_insts.Raise()
4838 a8083063 Iustin Pop
4839 781de953 Iustin Pop
    if instance.name not in node_insts.data:
4840 3ecf6786 Iustin Pop
      raise errors.OpExecError("Instance %s is not running." % instance.name)
4841 a8083063 Iustin Pop
4842 9a4f63d1 Iustin Pop
    logging.debug("Connecting to console of %s on %s", instance.name, node)
4843 a8083063 Iustin Pop
4844 e69d05fd Iustin Pop
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
4845 5431b2e4 Guido Trotter
    cluster = self.cfg.GetClusterInfo()
4846 5431b2e4 Guido Trotter
    # beparams and hvparams are passed separately, to avoid editing the
4847 5431b2e4 Guido Trotter
    # instance and then saving the defaults in the instance itself.
4848 5431b2e4 Guido Trotter
    hvparams = cluster.FillHV(instance)
4849 5431b2e4 Guido Trotter
    beparams = cluster.FillBE(instance)
4850 5431b2e4 Guido Trotter
    console_cmd = hyper.GetShellCommandForConsole(instance, hvparams, beparams)
4851 b047857b Michael Hanselmann
4852 82122173 Iustin Pop
    # build ssh cmdline
4853 0a80a26f Michael Hanselmann
    return self.ssh.BuildCmd(node, "root", console_cmd, batch=True, tty=True)
4854 a8083063 Iustin Pop
4855 a8083063 Iustin Pop
4856 a8083063 Iustin Pop
class LUReplaceDisks(LogicalUnit):
4857 a8083063 Iustin Pop
  """Replace the disks of an instance.
4858 a8083063 Iustin Pop

4859 a8083063 Iustin Pop
  """
4860 a8083063 Iustin Pop
  HPATH = "mirrors-replace"
4861 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4862 a9e0c397 Iustin Pop
  _OP_REQP = ["instance_name", "mode", "disks"]
4863 efd990e4 Guido Trotter
  REQ_BGL = False
4864 efd990e4 Guido Trotter
4865 7e9366f7 Iustin Pop
  def CheckArguments(self):
4866 efd990e4 Guido Trotter
    if not hasattr(self.op, "remote_node"):
4867 efd990e4 Guido Trotter
      self.op.remote_node = None
4868 7e9366f7 Iustin Pop
    if not hasattr(self.op, "iallocator"):
4869 7e9366f7 Iustin Pop
      self.op.iallocator = None
4870 7e9366f7 Iustin Pop
4871 7e9366f7 Iustin Pop
    # check for valid parameter combination
4872 7e9366f7 Iustin Pop
    cnt = [self.op.remote_node, self.op.iallocator].count(None)
4873 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
4874 7e9366f7 Iustin Pop
      if cnt == 2:
4875 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("When changing the secondary either an"
4876 7e9366f7 Iustin Pop
                                   " iallocator script must be used or the"
4877 7e9366f7 Iustin Pop
                                   " new node given")
4878 7e9366f7 Iustin Pop
      elif cnt == 0:
4879 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Give either the iallocator or the new"
4880 efd990e4 Guido Trotter
                                   " secondary, not both")
4881 7e9366f7 Iustin Pop
    else: # not replacing the secondary
4882 7e9366f7 Iustin Pop
      if cnt != 2:
4883 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("The iallocator and new node options can"
4884 7e9366f7 Iustin Pop
                                   " be used only when changing the"
4885 7e9366f7 Iustin Pop
                                   " secondary node")
4886 7e9366f7 Iustin Pop
4887 7e9366f7 Iustin Pop
  def ExpandNames(self):
4888 7e9366f7 Iustin Pop
    self._ExpandAndLockInstance()
4889 7e9366f7 Iustin Pop
4890 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
4891 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4892 efd990e4 Guido Trotter
    elif self.op.remote_node is not None:
4893 efd990e4 Guido Trotter
      remote_node = self.cfg.ExpandNodeName(self.op.remote_node)
4894 efd990e4 Guido Trotter
      if remote_node is None:
4895 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Node '%s' not known" %
4896 efd990e4 Guido Trotter
                                   self.op.remote_node)
4897 efd990e4 Guido Trotter
      self.op.remote_node = remote_node
4898 3b559640 Iustin Pop
      # Warning: do not remove the locking of the new secondary here
4899 3b559640 Iustin Pop
      # unless DRBD8.AddChildren is changed to work in parallel;
4900 3b559640 Iustin Pop
      # currently it doesn't since parallel invocations of
4901 3b559640 Iustin Pop
      # FindUnusedMinor will conflict
4902 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = [remote_node]
4903 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
4904 efd990e4 Guido Trotter
    else:
4905 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = []
4906 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4907 efd990e4 Guido Trotter
4908 efd990e4 Guido Trotter
  def DeclareLocks(self, level):
4909 efd990e4 Guido Trotter
    # If we're not already locking all nodes in the set we have to declare the
4910 efd990e4 Guido Trotter
    # instance's primary/secondary nodes.
4911 efd990e4 Guido Trotter
    if (level == locking.LEVEL_NODE and
4912 efd990e4 Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
4913 efd990e4 Guido Trotter
      self._LockInstancesNodes()
4914 a8083063 Iustin Pop
4915 b6e82a65 Iustin Pop
  def _RunAllocator(self):
4916 b6e82a65 Iustin Pop
    """Compute a new secondary node using an IAllocator.
4917 b6e82a65 Iustin Pop

4918 b6e82a65 Iustin Pop
    """
4919 72737a7f Iustin Pop
    ial = IAllocator(self,
4920 b6e82a65 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_RELOC,
4921 b6e82a65 Iustin Pop
                     name=self.op.instance_name,
4922 b6e82a65 Iustin Pop
                     relocate_from=[self.sec_node])
4923 b6e82a65 Iustin Pop
4924 b6e82a65 Iustin Pop
    ial.Run(self.op.iallocator)
4925 b6e82a65 Iustin Pop
4926 b6e82a65 Iustin Pop
    if not ial.success:
4927 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4928 b6e82a65 Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4929 b6e82a65 Iustin Pop
                                                           ial.info))
4930 b6e82a65 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4931 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4932 b6e82a65 Iustin Pop
                                 " of nodes (%s), required %s" %
4933 b6e82a65 Iustin Pop
                                 (len(ial.nodes), ial.required_nodes))
4934 b6e82a65 Iustin Pop
    self.op.remote_node = ial.nodes[0]
4935 86d9d3bb Iustin Pop
    self.LogInfo("Selected new secondary for the instance: %s",
4936 86d9d3bb Iustin Pop
                 self.op.remote_node)
4937 b6e82a65 Iustin Pop
4938 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4939 a8083063 Iustin Pop
    """Build hooks env.
4940 a8083063 Iustin Pop

4941 a8083063 Iustin Pop
    This runs on the master, the primary and all the secondaries.
4942 a8083063 Iustin Pop

4943 a8083063 Iustin Pop
    """
4944 a8083063 Iustin Pop
    env = {
4945 a9e0c397 Iustin Pop
      "MODE": self.op.mode,
4946 a8083063 Iustin Pop
      "NEW_SECONDARY": self.op.remote_node,
4947 a8083063 Iustin Pop
      "OLD_SECONDARY": self.instance.secondary_nodes[0],
4948 a8083063 Iustin Pop
      }
4949 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
4950 0834c866 Iustin Pop
    nl = [
4951 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
4952 0834c866 Iustin Pop
      self.instance.primary_node,
4953 0834c866 Iustin Pop
      ]
4954 0834c866 Iustin Pop
    if self.op.remote_node is not None:
4955 0834c866 Iustin Pop
      nl.append(self.op.remote_node)
4956 a8083063 Iustin Pop
    return env, nl, nl
4957 a8083063 Iustin Pop
4958 a8083063 Iustin Pop
  def CheckPrereq(self):
4959 a8083063 Iustin Pop
    """Check prerequisites.
4960 a8083063 Iustin Pop

4961 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
4962 a8083063 Iustin Pop

4963 a8083063 Iustin Pop
    """
4964 efd990e4 Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4965 efd990e4 Guido Trotter
    assert instance is not None, \
4966 efd990e4 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4967 a8083063 Iustin Pop
    self.instance = instance
4968 a8083063 Iustin Pop
4969 7e9366f7 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
4970 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("Can only run replace disks for DRBD8-based"
4971 7e9366f7 Iustin Pop
                                 " instances")
4972 a8083063 Iustin Pop
4973 a8083063 Iustin Pop
    if len(instance.secondary_nodes) != 1:
4974 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The instance has a strange layout,"
4975 3ecf6786 Iustin Pop
                                 " expected one secondary but found %d" %
4976 3ecf6786 Iustin Pop
                                 len(instance.secondary_nodes))
4977 a8083063 Iustin Pop
4978 a9e0c397 Iustin Pop
    self.sec_node = instance.secondary_nodes[0]
4979 a9e0c397 Iustin Pop
4980 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
4981 de8c7666 Guido Trotter
      self._RunAllocator()
4982 b6e82a65 Iustin Pop
4983 b6e82a65 Iustin Pop
    remote_node = self.op.remote_node
4984 a9e0c397 Iustin Pop
    if remote_node is not None:
4985 a9e0c397 Iustin Pop
      self.remote_node_info = self.cfg.GetNodeInfo(remote_node)
4986 efd990e4 Guido Trotter
      assert self.remote_node_info is not None, \
4987 efd990e4 Guido Trotter
        "Cannot retrieve locked node %s" % remote_node
4988 a9e0c397 Iustin Pop
    else:
4989 a9e0c397 Iustin Pop
      self.remote_node_info = None
4990 a8083063 Iustin Pop
    if remote_node == instance.primary_node:
4991 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The specified node is the primary node of"
4992 3ecf6786 Iustin Pop
                                 " the instance.")
4993 a9e0c397 Iustin Pop
    elif remote_node == self.sec_node:
4994 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("The specified node is already the"
4995 7e9366f7 Iustin Pop
                                 " secondary node of the instance.")
4996 7e9366f7 Iustin Pop
4997 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_PRI:
4998 7e9366f7 Iustin Pop
      n1 = self.tgt_node = instance.primary_node
4999 7e9366f7 Iustin Pop
      n2 = self.oth_node = self.sec_node
5000 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_SEC:
5001 7e9366f7 Iustin Pop
      n1 = self.tgt_node = self.sec_node
5002 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
5003 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_CHG:
5004 7e9366f7 Iustin Pop
      n1 = self.new_node = remote_node
5005 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
5006 7e9366f7 Iustin Pop
      self.tgt_node = self.sec_node
5007 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, remote_node)
5008 7e9366f7 Iustin Pop
    else:
5009 7e9366f7 Iustin Pop
      raise errors.ProgrammerError("Unhandled disk replace mode")
5010 7e9366f7 Iustin Pop
5011 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n1)
5012 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n2)
5013 a9e0c397 Iustin Pop
5014 54155f52 Iustin Pop
    if not self.op.disks:
5015 54155f52 Iustin Pop
      self.op.disks = range(len(instance.disks))
5016 54155f52 Iustin Pop
5017 54155f52 Iustin Pop
    for disk_idx in self.op.disks:
5018 3e0cea06 Iustin Pop
      instance.FindDisk(disk_idx)
5019 a8083063 Iustin Pop
5020 a9e0c397 Iustin Pop
  def _ExecD8DiskOnly(self, feedback_fn):
5021 a9e0c397 Iustin Pop
    """Replace a disk on the primary or secondary for dbrd8.
5022 a9e0c397 Iustin Pop

5023 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5024 e4376078 Iustin Pop

5025 e4376078 Iustin Pop
      1. for each disk to be replaced:
5026 e4376078 Iustin Pop

5027 e4376078 Iustin Pop
        1. create new LVs on the target node with unique names
5028 e4376078 Iustin Pop
        1. detach old LVs from the drbd device
5029 e4376078 Iustin Pop
        1. rename old LVs to name_replaced.<time_t>
5030 e4376078 Iustin Pop
        1. rename new LVs to old LVs
5031 e4376078 Iustin Pop
        1. attach the new LVs (with the old names now) to the drbd device
5032 e4376078 Iustin Pop

5033 e4376078 Iustin Pop
      1. wait for sync across all devices
5034 e4376078 Iustin Pop

5035 e4376078 Iustin Pop
      1. for each modified disk:
5036 e4376078 Iustin Pop

5037 e4376078 Iustin Pop
        1. remove old LVs (which have the name name_replaces.<time_t>)
5038 a9e0c397 Iustin Pop

5039 a9e0c397 Iustin Pop
    Failures are not very well handled.
5040 cff90b79 Iustin Pop

5041 a9e0c397 Iustin Pop
    """
5042 cff90b79 Iustin Pop
    steps_total = 6
5043 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5044 a9e0c397 Iustin Pop
    instance = self.instance
5045 a9e0c397 Iustin Pop
    iv_names = {}
5046 a9e0c397 Iustin Pop
    vgname = self.cfg.GetVGName()
5047 a9e0c397 Iustin Pop
    # start of work
5048 a9e0c397 Iustin Pop
    cfg = self.cfg
5049 a9e0c397 Iustin Pop
    tgt_node = self.tgt_node
5050 cff90b79 Iustin Pop
    oth_node = self.oth_node
5051 cff90b79 Iustin Pop
5052 cff90b79 Iustin Pop
    # Step: check device activation
5053 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5054 cff90b79 Iustin Pop
    info("checking volume groups")
5055 cff90b79 Iustin Pop
    my_vg = cfg.GetVGName()
5056 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([oth_node, tgt_node])
5057 cff90b79 Iustin Pop
    if not results:
5058 cff90b79 Iustin Pop
      raise errors.OpExecError("Can't list volume groups on the nodes")
5059 cff90b79 Iustin Pop
    for node in oth_node, tgt_node:
5060 781de953 Iustin Pop
      res = results[node]
5061 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
5062 cff90b79 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5063 cff90b79 Iustin Pop
                                 (my_vg, node))
5064 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5065 54155f52 Iustin Pop
      if idx not in self.op.disks:
5066 cff90b79 Iustin Pop
        continue
5067 cff90b79 Iustin Pop
      for node in tgt_node, oth_node:
5068 54155f52 Iustin Pop
        info("checking disk/%d on %s" % (idx, node))
5069 cff90b79 Iustin Pop
        cfg.SetDiskID(dev, node)
5070 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(node, dev)
5071 23829f6f Iustin Pop
        msg = result.RemoteFailMsg()
5072 23829f6f Iustin Pop
        if not msg and not result.payload:
5073 23829f6f Iustin Pop
          msg = "disk not found"
5074 23829f6f Iustin Pop
        if msg:
5075 23829f6f Iustin Pop
          raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5076 23829f6f Iustin Pop
                                   (idx, node, msg))
5077 cff90b79 Iustin Pop
5078 cff90b79 Iustin Pop
    # Step: check other node consistency
5079 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5080 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5081 54155f52 Iustin Pop
      if idx not in self.op.disks:
5082 cff90b79 Iustin Pop
        continue
5083 54155f52 Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, oth_node))
5084 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, oth_node,
5085 cff90b79 Iustin Pop
                                   oth_node==instance.primary_node):
5086 cff90b79 Iustin Pop
        raise errors.OpExecError("Peer node (%s) has degraded storage, unsafe"
5087 cff90b79 Iustin Pop
                                 " to replace disks on this node (%s)" %
5088 cff90b79 Iustin Pop
                                 (oth_node, tgt_node))
5089 cff90b79 Iustin Pop
5090 cff90b79 Iustin Pop
    # Step: create new storage
5091 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5092 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5093 54155f52 Iustin Pop
      if idx not in self.op.disks:
5094 a9e0c397 Iustin Pop
        continue
5095 a9e0c397 Iustin Pop
      size = dev.size
5096 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, tgt_node)
5097 54155f52 Iustin Pop
      lv_names = [".disk%d_%s" % (idx, suf)
5098 54155f52 Iustin Pop
                  for suf in ["data", "meta"]]
5099 b9bddb6b Iustin Pop
      names = _GenerateUniqueNames(self, lv_names)
5100 a9e0c397 Iustin Pop
      lv_data = objects.Disk(dev_type=constants.LD_LV, size=size,
5101 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[0]))
5102 a9e0c397 Iustin Pop
      lv_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
5103 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[1]))
5104 a9e0c397 Iustin Pop
      new_lvs = [lv_data, lv_meta]
5105 a9e0c397 Iustin Pop
      old_lvs = dev.children
5106 a9e0c397 Iustin Pop
      iv_names[dev.iv_name] = (dev, old_lvs, new_lvs)
5107 cff90b79 Iustin Pop
      info("creating new local storage on %s for %s" %
5108 cff90b79 Iustin Pop
           (tgt_node, dev.iv_name))
5109 428958aa Iustin Pop
      # we pass force_create=True to force the LVM creation
5110 a9e0c397 Iustin Pop
      for new_lv in new_lvs:
5111 428958aa Iustin Pop
        _CreateBlockDev(self, tgt_node, instance, new_lv, True,
5112 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5113 a9e0c397 Iustin Pop
5114 cff90b79 Iustin Pop
    # Step: for each lv, detach+rename*2+attach
5115 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "change drbd configuration")
5116 cff90b79 Iustin Pop
    for dev, old_lvs, new_lvs in iv_names.itervalues():
5117 cff90b79 Iustin Pop
      info("detaching %s drbd from local storage" % dev.iv_name)
5118 781de953 Iustin Pop
      result = self.rpc.call_blockdev_removechildren(tgt_node, dev, old_lvs)
5119 781de953 Iustin Pop
      result.Raise()
5120 781de953 Iustin Pop
      if not result.data:
5121 a9e0c397 Iustin Pop
        raise errors.OpExecError("Can't detach drbd from local storage on node"
5122 a9e0c397 Iustin Pop
                                 " %s for device %s" % (tgt_node, dev.iv_name))
5123 cff90b79 Iustin Pop
      #dev.children = []
5124 cff90b79 Iustin Pop
      #cfg.Update(instance)
5125 a9e0c397 Iustin Pop
5126 a9e0c397 Iustin Pop
      # ok, we created the new LVs, so now we know we have the needed
5127 a9e0c397 Iustin Pop
      # storage; as such, we proceed on the target node to rename
5128 a9e0c397 Iustin Pop
      # old_lv to _old, and new_lv to old_lv; note that we rename LVs
5129 c99a3cc0 Manuel Franceschini
      # using the assumption that logical_id == physical_id (which in
5130 a9e0c397 Iustin Pop
      # turn is the unique_id on that node)
5131 cff90b79 Iustin Pop
5132 cff90b79 Iustin Pop
      # FIXME(iustin): use a better name for the replaced LVs
5133 a9e0c397 Iustin Pop
      temp_suffix = int(time.time())
5134 a9e0c397 Iustin Pop
      ren_fn = lambda d, suff: (d.physical_id[0],
5135 a9e0c397 Iustin Pop
                                d.physical_id[1] + "_replaced-%s" % suff)
5136 cff90b79 Iustin Pop
      # build the rename list based on what LVs exist on the node
5137 cff90b79 Iustin Pop
      rlist = []
5138 cff90b79 Iustin Pop
      for to_ren in old_lvs:
5139 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(tgt_node, to_ren)
5140 23829f6f Iustin Pop
        if not result.RemoteFailMsg() and result.payload:
5141 23829f6f Iustin Pop
          # device exists
5142 cff90b79 Iustin Pop
          rlist.append((to_ren, ren_fn(to_ren, temp_suffix)))
5143 cff90b79 Iustin Pop
5144 cff90b79 Iustin Pop
      info("renaming the old LVs on the target node")
5145 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5146 781de953 Iustin Pop
      result.Raise()
5147 781de953 Iustin Pop
      if not result.data:
5148 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename old LVs on node %s" % tgt_node)
5149 a9e0c397 Iustin Pop
      # now we rename the new LVs to the old LVs
5150 cff90b79 Iustin Pop
      info("renaming the new LVs on the target node")
5151 a9e0c397 Iustin Pop
      rlist = [(new, old.physical_id) for old, new in zip(old_lvs, new_lvs)]
5152 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5153 781de953 Iustin Pop
      result.Raise()
5154 781de953 Iustin Pop
      if not result.data:
5155 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename new LVs on node %s" % tgt_node)
5156 cff90b79 Iustin Pop
5157 cff90b79 Iustin Pop
      for old, new in zip(old_lvs, new_lvs):
5158 cff90b79 Iustin Pop
        new.logical_id = old.logical_id
5159 cff90b79 Iustin Pop
        cfg.SetDiskID(new, tgt_node)
5160 a9e0c397 Iustin Pop
5161 cff90b79 Iustin Pop
      for disk in old_lvs:
5162 cff90b79 Iustin Pop
        disk.logical_id = ren_fn(disk, temp_suffix)
5163 cff90b79 Iustin Pop
        cfg.SetDiskID(disk, tgt_node)
5164 a9e0c397 Iustin Pop
5165 a9e0c397 Iustin Pop
      # now that the new lvs have the old name, we can add them to the device
5166 cff90b79 Iustin Pop
      info("adding new mirror component on %s" % tgt_node)
5167 4504c3d6 Iustin Pop
      result = self.rpc.call_blockdev_addchildren(tgt_node, dev, new_lvs)
5168 781de953 Iustin Pop
      if result.failed or not result.data:
5169 a9e0c397 Iustin Pop
        for new_lv in new_lvs:
5170 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(tgt_node, new_lv).RemoteFailMsg()
5171 e1bc0878 Iustin Pop
          if msg:
5172 e1bc0878 Iustin Pop
            warning("Can't rollback device %s: %s", dev, msg,
5173 e1bc0878 Iustin Pop
                    hint="cleanup manually the unused logical volumes")
5174 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't add local storage to drbd")
5175 a9e0c397 Iustin Pop
5176 a9e0c397 Iustin Pop
      dev.children = new_lvs
5177 a9e0c397 Iustin Pop
      cfg.Update(instance)
5178 a9e0c397 Iustin Pop
5179 cff90b79 Iustin Pop
    # Step: wait for sync
5180 a9e0c397 Iustin Pop
5181 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5182 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5183 a9e0c397 Iustin Pop
    # return value
5184 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5185 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5186 a9e0c397 Iustin Pop
5187 a9e0c397 Iustin Pop
    # so check manually all the devices
5188 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5189 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, instance.primary_node)
5190 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(instance.primary_node, dev)
5191 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5192 23829f6f Iustin Pop
      if not msg and not result.payload:
5193 23829f6f Iustin Pop
        msg = "disk not found"
5194 23829f6f Iustin Pop
      if msg:
5195 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device %s: %s" %
5196 23829f6f Iustin Pop
                                 (name, msg))
5197 23829f6f Iustin Pop
      if result.payload[5]:
5198 a9e0c397 Iustin Pop
        raise errors.OpExecError("DRBD device %s is degraded!" % name)
5199 a9e0c397 Iustin Pop
5200 cff90b79 Iustin Pop
    # Step: remove old storage
5201 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5202 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5203 cff90b79 Iustin Pop
      info("remove logical volumes for %s" % name)
5204 a9e0c397 Iustin Pop
      for lv in old_lvs:
5205 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, tgt_node)
5206 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(tgt_node, lv).RemoteFailMsg()
5207 e1bc0878 Iustin Pop
        if msg:
5208 e1bc0878 Iustin Pop
          warning("Can't remove old LV: %s" % msg,
5209 e1bc0878 Iustin Pop
                  hint="manually remove unused LVs")
5210 a9e0c397 Iustin Pop
          continue
5211 a9e0c397 Iustin Pop
5212 a9e0c397 Iustin Pop
  def _ExecD8Secondary(self, feedback_fn):
5213 a9e0c397 Iustin Pop
    """Replace the secondary node for drbd8.
5214 a9e0c397 Iustin Pop

5215 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5216 a9e0c397 Iustin Pop
      - for all disks of the instance:
5217 a9e0c397 Iustin Pop
        - create new LVs on the new node with same names
5218 a9e0c397 Iustin Pop
        - shutdown the drbd device on the old secondary
5219 a9e0c397 Iustin Pop
        - disconnect the drbd network on the primary
5220 a9e0c397 Iustin Pop
        - create the drbd device on the new secondary
5221 a9e0c397 Iustin Pop
        - network attach the drbd on the primary, using an artifice:
5222 a9e0c397 Iustin Pop
          the drbd code for Attach() will connect to the network if it
5223 a9e0c397 Iustin Pop
          finds a device which is connected to the good local disks but
5224 a9e0c397 Iustin Pop
          not network enabled
5225 a9e0c397 Iustin Pop
      - wait for sync across all devices
5226 a9e0c397 Iustin Pop
      - remove all disks from the old secondary
5227 a9e0c397 Iustin Pop

5228 a9e0c397 Iustin Pop
    Failures are not very well handled.
5229 0834c866 Iustin Pop

5230 a9e0c397 Iustin Pop
    """
5231 0834c866 Iustin Pop
    steps_total = 6
5232 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5233 a9e0c397 Iustin Pop
    instance = self.instance
5234 a9e0c397 Iustin Pop
    iv_names = {}
5235 a9e0c397 Iustin Pop
    # start of work
5236 a9e0c397 Iustin Pop
    cfg = self.cfg
5237 a9e0c397 Iustin Pop
    old_node = self.tgt_node
5238 a9e0c397 Iustin Pop
    new_node = self.new_node
5239 a9e0c397 Iustin Pop
    pri_node = instance.primary_node
5240 a2d59d8b Iustin Pop
    nodes_ip = {
5241 a2d59d8b Iustin Pop
      old_node: self.cfg.GetNodeInfo(old_node).secondary_ip,
5242 a2d59d8b Iustin Pop
      new_node: self.cfg.GetNodeInfo(new_node).secondary_ip,
5243 a2d59d8b Iustin Pop
      pri_node: self.cfg.GetNodeInfo(pri_node).secondary_ip,
5244 a2d59d8b Iustin Pop
      }
5245 0834c866 Iustin Pop
5246 0834c866 Iustin Pop
    # Step: check device activation
5247 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5248 0834c866 Iustin Pop
    info("checking volume groups")
5249 0834c866 Iustin Pop
    my_vg = cfg.GetVGName()
5250 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([pri_node, new_node])
5251 0834c866 Iustin Pop
    for node in pri_node, new_node:
5252 781de953 Iustin Pop
      res = results[node]
5253 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
5254 0834c866 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5255 0834c866 Iustin Pop
                                 (my_vg, node))
5256 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5257 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5258 0834c866 Iustin Pop
        continue
5259 d418ebfb Iustin Pop
      info("checking disk/%d on %s" % (idx, pri_node))
5260 0834c866 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5261 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5262 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5263 23829f6f Iustin Pop
      if not msg and not result.payload:
5264 23829f6f Iustin Pop
        msg = "disk not found"
5265 23829f6f Iustin Pop
      if msg:
5266 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5267 23829f6f Iustin Pop
                                 (idx, pri_node, msg))
5268 0834c866 Iustin Pop
5269 0834c866 Iustin Pop
    # Step: check other node consistency
5270 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5271 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5272 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5273 0834c866 Iustin Pop
        continue
5274 d418ebfb Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, pri_node))
5275 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, pri_node, True, ldisk=True):
5276 0834c866 Iustin Pop
        raise errors.OpExecError("Primary node (%s) has degraded storage,"
5277 0834c866 Iustin Pop
                                 " unsafe to replace the secondary" %
5278 0834c866 Iustin Pop
                                 pri_node)
5279 0834c866 Iustin Pop
5280 0834c866 Iustin Pop
    # Step: create new storage
5281 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5282 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5283 d418ebfb Iustin Pop
      info("adding new local storage on %s for disk/%d" %
5284 d418ebfb Iustin Pop
           (new_node, idx))
5285 428958aa Iustin Pop
      # we pass force_create=True to force LVM creation
5286 a9e0c397 Iustin Pop
      for new_lv in dev.children:
5287 428958aa Iustin Pop
        _CreateBlockDev(self, new_node, instance, new_lv, True,
5288 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5289 a9e0c397 Iustin Pop
5290 468b46f9 Iustin Pop
    # Step 4: dbrd minors and drbd setups changes
5291 a1578d63 Iustin Pop
    # after this, we must manually remove the drbd minors on both the
5292 a1578d63 Iustin Pop
    # error and the success paths
5293 a1578d63 Iustin Pop
    minors = cfg.AllocateDRBDMinor([new_node for dev in instance.disks],
5294 a1578d63 Iustin Pop
                                   instance.name)
5295 468b46f9 Iustin Pop
    logging.debug("Allocated minors %s" % (minors,))
5296 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "changing drbd configuration")
5297 d418ebfb Iustin Pop
    for idx, (dev, new_minor) in enumerate(zip(instance.disks, minors)):
5298 0834c866 Iustin Pop
      size = dev.size
5299 d418ebfb Iustin Pop
      info("activating a new drbd on %s for disk/%d" % (new_node, idx))
5300 a2d59d8b Iustin Pop
      # create new devices on new_node; note that we create two IDs:
5301 a2d59d8b Iustin Pop
      # one without port, so the drbd will be activated without
5302 a2d59d8b Iustin Pop
      # networking information on the new node at this stage, and one
5303 a2d59d8b Iustin Pop
      # with network, for the latter activation in step 4
5304 a2d59d8b Iustin Pop
      (o_node1, o_node2, o_port, o_minor1, o_minor2, o_secret) = dev.logical_id
5305 a2d59d8b Iustin Pop
      if pri_node == o_node1:
5306 a2d59d8b Iustin Pop
        p_minor = o_minor1
5307 ffa1c0dc Iustin Pop
      else:
5308 a2d59d8b Iustin Pop
        p_minor = o_minor2
5309 a2d59d8b Iustin Pop
5310 a2d59d8b Iustin Pop
      new_alone_id = (pri_node, new_node, None, p_minor, new_minor, o_secret)
5311 a2d59d8b Iustin Pop
      new_net_id = (pri_node, new_node, o_port, p_minor, new_minor, o_secret)
5312 a2d59d8b Iustin Pop
5313 a2d59d8b Iustin Pop
      iv_names[idx] = (dev, dev.children, new_net_id)
5314 a1578d63 Iustin Pop
      logging.debug("Allocated new_minor: %s, new_logical_id: %s", new_minor,
5315 a2d59d8b Iustin Pop
                    new_net_id)
5316 a9e0c397 Iustin Pop
      new_drbd = objects.Disk(dev_type=constants.LD_DRBD8,
5317 a2d59d8b Iustin Pop
                              logical_id=new_alone_id,
5318 a9e0c397 Iustin Pop
                              children=dev.children)
5319 796cab27 Iustin Pop
      try:
5320 de12473a Iustin Pop
        _CreateSingleBlockDev(self, new_node, instance, new_drbd,
5321 de12473a Iustin Pop
                              _GetInstanceInfoText(instance), False)
5322 82759cb1 Iustin Pop
      except errors.GenericError:
5323 a1578d63 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance.name)
5324 796cab27 Iustin Pop
        raise
5325 a9e0c397 Iustin Pop
5326 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5327 a9e0c397 Iustin Pop
      # we have new devices, shutdown the drbd on the old secondary
5328 d418ebfb Iustin Pop
      info("shutting down drbd for disk/%d on old node" % idx)
5329 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, old_node)
5330 cacfd1fd Iustin Pop
      msg = self.rpc.call_blockdev_shutdown(old_node, dev).RemoteFailMsg()
5331 cacfd1fd Iustin Pop
      if msg:
5332 cacfd1fd Iustin Pop
        warning("Failed to shutdown drbd for disk/%d on old node: %s" %
5333 cacfd1fd Iustin Pop
                (idx, msg),
5334 79caa9ed Guido Trotter
                hint="Please cleanup this device manually as soon as possible")
5335 a9e0c397 Iustin Pop
5336 642445d9 Iustin Pop
    info("detaching primary drbds from the network (=> standalone)")
5337 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_disconnect_net([pri_node], nodes_ip,
5338 a2d59d8b Iustin Pop
                                               instance.disks)[pri_node]
5339 642445d9 Iustin Pop
5340 a2d59d8b Iustin Pop
    msg = result.RemoteFailMsg()
5341 a2d59d8b Iustin Pop
    if msg:
5342 a2d59d8b Iustin Pop
      # detaches didn't succeed (unlikely)
5343 a1578d63 Iustin Pop
      self.cfg.ReleaseDRBDMinors(instance.name)
5344 a2d59d8b Iustin Pop
      raise errors.OpExecError("Can't detach the disks from the network on"
5345 a2d59d8b Iustin Pop
                               " old node: %s" % (msg,))
5346 642445d9 Iustin Pop
5347 642445d9 Iustin Pop
    # if we managed to detach at least one, we update all the disks of
5348 642445d9 Iustin Pop
    # the instance to point to the new secondary
5349 642445d9 Iustin Pop
    info("updating instance configuration")
5350 468b46f9 Iustin Pop
    for dev, _, new_logical_id in iv_names.itervalues():
5351 468b46f9 Iustin Pop
      dev.logical_id = new_logical_id
5352 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5353 642445d9 Iustin Pop
    cfg.Update(instance)
5354 a9e0c397 Iustin Pop
5355 642445d9 Iustin Pop
    # and now perform the drbd attach
5356 642445d9 Iustin Pop
    info("attaching primary drbds to new secondary (standalone => connected)")
5357 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_attach_net([pri_node, new_node], nodes_ip,
5358 a2d59d8b Iustin Pop
                                           instance.disks, instance.name,
5359 a2d59d8b Iustin Pop
                                           False)
5360 a2d59d8b Iustin Pop
    for to_node, to_result in result.items():
5361 a2d59d8b Iustin Pop
      msg = to_result.RemoteFailMsg()
5362 a2d59d8b Iustin Pop
      if msg:
5363 a2d59d8b Iustin Pop
        warning("can't attach drbd disks on node %s: %s", to_node, msg,
5364 a2d59d8b Iustin Pop
                hint="please do a gnt-instance info to see the"
5365 a2d59d8b Iustin Pop
                " status of disks")
5366 a9e0c397 Iustin Pop
5367 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5368 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5369 a9e0c397 Iustin Pop
    # return value
5370 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5371 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5372 a9e0c397 Iustin Pop
5373 a9e0c397 Iustin Pop
    # so check manually all the devices
5374 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5375 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5376 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5377 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5378 23829f6f Iustin Pop
      if not msg and not result.payload:
5379 23829f6f Iustin Pop
        msg = "disk not found"
5380 23829f6f Iustin Pop
      if msg:
5381 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device disk/%d: %s" %
5382 23829f6f Iustin Pop
                                 (idx, msg))
5383 23829f6f Iustin Pop
      if result.payload[5]:
5384 d418ebfb Iustin Pop
        raise errors.OpExecError("DRBD device disk/%d is degraded!" % idx)
5385 a9e0c397 Iustin Pop
5386 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5387 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5388 d418ebfb Iustin Pop
      info("remove logical volumes for disk/%d" % idx)
5389 a9e0c397 Iustin Pop
      for lv in old_lvs:
5390 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, old_node)
5391 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(old_node, lv).RemoteFailMsg()
5392 e1bc0878 Iustin Pop
        if msg:
5393 e1bc0878 Iustin Pop
          warning("Can't remove LV on old secondary: %s", msg,
5394 79caa9ed Guido Trotter
                  hint="Cleanup stale volumes by hand")
5395 a9e0c397 Iustin Pop
5396 a9e0c397 Iustin Pop
  def Exec(self, feedback_fn):
5397 a9e0c397 Iustin Pop
    """Execute disk replacement.
5398 a9e0c397 Iustin Pop

5399 a9e0c397 Iustin Pop
    This dispatches the disk replacement to the appropriate handler.
5400 a9e0c397 Iustin Pop

5401 a9e0c397 Iustin Pop
    """
5402 a9e0c397 Iustin Pop
    instance = self.instance
5403 22985314 Guido Trotter
5404 22985314 Guido Trotter
    # Activate the instance disks if we're replacing them on a down instance
5405 0d68c45d Iustin Pop
    if not instance.admin_up:
5406 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, True)
5407 22985314 Guido Trotter
5408 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5409 7e9366f7 Iustin Pop
      fn = self._ExecD8Secondary
5410 a9e0c397 Iustin Pop
    else:
5411 7e9366f7 Iustin Pop
      fn = self._ExecD8DiskOnly
5412 22985314 Guido Trotter
5413 22985314 Guido Trotter
    ret = fn(feedback_fn)
5414 22985314 Guido Trotter
5415 22985314 Guido Trotter
    # Deactivate the instance disks if we're replacing them on a down instance
5416 0d68c45d Iustin Pop
    if not instance.admin_up:
5417 b9bddb6b Iustin Pop
      _SafeShutdownInstanceDisks(self, instance)
5418 22985314 Guido Trotter
5419 22985314 Guido Trotter
    return ret
5420 a9e0c397 Iustin Pop
5421 a8083063 Iustin Pop
5422 8729e0d7 Iustin Pop
class LUGrowDisk(LogicalUnit):
5423 8729e0d7 Iustin Pop
  """Grow a disk of an instance.
5424 8729e0d7 Iustin Pop

5425 8729e0d7 Iustin Pop
  """
5426 8729e0d7 Iustin Pop
  HPATH = "disk-grow"
5427 8729e0d7 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5428 6605411d Iustin Pop
  _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
5429 31e63dbf Guido Trotter
  REQ_BGL = False
5430 31e63dbf Guido Trotter
5431 31e63dbf Guido Trotter
  def ExpandNames(self):
5432 31e63dbf Guido Trotter
    self._ExpandAndLockInstance()
5433 31e63dbf Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5434 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5435 31e63dbf Guido Trotter
5436 31e63dbf Guido Trotter
  def DeclareLocks(self, level):
5437 31e63dbf Guido Trotter
    if level == locking.LEVEL_NODE:
5438 31e63dbf Guido Trotter
      self._LockInstancesNodes()
5439 8729e0d7 Iustin Pop
5440 8729e0d7 Iustin Pop
  def BuildHooksEnv(self):
5441 8729e0d7 Iustin Pop
    """Build hooks env.
5442 8729e0d7 Iustin Pop

5443 8729e0d7 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5444 8729e0d7 Iustin Pop

5445 8729e0d7 Iustin Pop
    """
5446 8729e0d7 Iustin Pop
    env = {
5447 8729e0d7 Iustin Pop
      "DISK": self.op.disk,
5448 8729e0d7 Iustin Pop
      "AMOUNT": self.op.amount,
5449 8729e0d7 Iustin Pop
      }
5450 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5451 8729e0d7 Iustin Pop
    nl = [
5452 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5453 8729e0d7 Iustin Pop
      self.instance.primary_node,
5454 8729e0d7 Iustin Pop
      ]
5455 8729e0d7 Iustin Pop
    return env, nl, nl
5456 8729e0d7 Iustin Pop
5457 8729e0d7 Iustin Pop
  def CheckPrereq(self):
5458 8729e0d7 Iustin Pop
    """Check prerequisites.
5459 8729e0d7 Iustin Pop

5460 8729e0d7 Iustin Pop
    This checks that the instance is in the cluster.
5461 8729e0d7 Iustin Pop

5462 8729e0d7 Iustin Pop
    """
5463 31e63dbf Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5464 31e63dbf Guido Trotter
    assert instance is not None, \
5465 31e63dbf Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5466 6b12959c Iustin Pop
    nodenames = list(instance.all_nodes)
5467 6b12959c Iustin Pop
    for node in nodenames:
5468 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, node)
5469 7527a8a4 Iustin Pop
5470 31e63dbf Guido Trotter
5471 8729e0d7 Iustin Pop
    self.instance = instance
5472 8729e0d7 Iustin Pop
5473 8729e0d7 Iustin Pop
    if instance.disk_template not in (constants.DT_PLAIN, constants.DT_DRBD8):
5474 8729e0d7 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout does not support"
5475 8729e0d7 Iustin Pop
                                 " growing.")
5476 8729e0d7 Iustin Pop
5477 ad24e046 Iustin Pop
    self.disk = instance.FindDisk(self.op.disk)
5478 8729e0d7 Iustin Pop
5479 72737a7f Iustin Pop
    nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
5480 72737a7f Iustin Pop
                                       instance.hypervisor)
5481 8729e0d7 Iustin Pop
    for node in nodenames:
5482 781de953 Iustin Pop
      info = nodeinfo[node]
5483 781de953 Iustin Pop
      if info.failed or not info.data:
5484 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Cannot get current information"
5485 8729e0d7 Iustin Pop
                                   " from node '%s'" % node)
5486 781de953 Iustin Pop
      vg_free = info.data.get('vg_free', None)
5487 8729e0d7 Iustin Pop
      if not isinstance(vg_free, int):
5488 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Can't compute free disk space on"
5489 8729e0d7 Iustin Pop
                                   " node %s" % node)
5490 781de953 Iustin Pop
      if self.op.amount > vg_free:
5491 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Not enough disk space on target node %s:"
5492 8729e0d7 Iustin Pop
                                   " %d MiB available, %d MiB required" %
5493 781de953 Iustin Pop
                                   (node, vg_free, self.op.amount))
5494 8729e0d7 Iustin Pop
5495 8729e0d7 Iustin Pop
  def Exec(self, feedback_fn):
5496 8729e0d7 Iustin Pop
    """Execute disk grow.
5497 8729e0d7 Iustin Pop

5498 8729e0d7 Iustin Pop
    """
5499 8729e0d7 Iustin Pop
    instance = self.instance
5500 ad24e046 Iustin Pop
    disk = self.disk
5501 6b12959c Iustin Pop
    for node in instance.all_nodes:
5502 8729e0d7 Iustin Pop
      self.cfg.SetDiskID(disk, node)
5503 72737a7f Iustin Pop
      result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
5504 0959c824 Iustin Pop
      msg = result.RemoteFailMsg()
5505 0959c824 Iustin Pop
      if msg:
5506 781de953 Iustin Pop
        raise errors.OpExecError("Grow request failed to node %s: %s" %
5507 0959c824 Iustin Pop
                                 (node, msg))
5508 8729e0d7 Iustin Pop
    disk.RecordGrow(self.op.amount)
5509 8729e0d7 Iustin Pop
    self.cfg.Update(instance)
5510 6605411d Iustin Pop
    if self.op.wait_for_sync:
5511 cd4d138f Guido Trotter
      disk_abort = not _WaitForSync(self, instance)
5512 6605411d Iustin Pop
      if disk_abort:
5513 86d9d3bb Iustin Pop
        self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
5514 86d9d3bb Iustin Pop
                             " status.\nPlease check the instance.")
5515 8729e0d7 Iustin Pop
5516 8729e0d7 Iustin Pop
5517 a8083063 Iustin Pop
class LUQueryInstanceData(NoHooksLU):
5518 a8083063 Iustin Pop
  """Query runtime instance data.
5519 a8083063 Iustin Pop

5520 a8083063 Iustin Pop
  """
5521 57821cac Iustin Pop
  _OP_REQP = ["instances", "static"]
5522 a987fa48 Guido Trotter
  REQ_BGL = False
5523 ae5849b5 Michael Hanselmann
5524 a987fa48 Guido Trotter
  def ExpandNames(self):
5525 a987fa48 Guido Trotter
    self.needed_locks = {}
5526 a987fa48 Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
5527 a987fa48 Guido Trotter
5528 a987fa48 Guido Trotter
    if not isinstance(self.op.instances, list):
5529 a987fa48 Guido Trotter
      raise errors.OpPrereqError("Invalid argument type 'instances'")
5530 a987fa48 Guido Trotter
5531 a987fa48 Guido Trotter
    if self.op.instances:
5532 a987fa48 Guido Trotter
      self.wanted_names = []
5533 a987fa48 Guido Trotter
      for name in self.op.instances:
5534 a987fa48 Guido Trotter
        full_name = self.cfg.ExpandInstanceName(name)
5535 a987fa48 Guido Trotter
        if full_name is None:
5536 f57c76e4 Iustin Pop
          raise errors.OpPrereqError("Instance '%s' not known" % name)
5537 a987fa48 Guido Trotter
        self.wanted_names.append(full_name)
5538 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
5539 a987fa48 Guido Trotter
    else:
5540 a987fa48 Guido Trotter
      self.wanted_names = None
5541 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
5542 a987fa48 Guido Trotter
5543 a987fa48 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5544 a987fa48 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5545 a987fa48 Guido Trotter
5546 a987fa48 Guido Trotter
  def DeclareLocks(self, level):
5547 a987fa48 Guido Trotter
    if level == locking.LEVEL_NODE:
5548 a987fa48 Guido Trotter
      self._LockInstancesNodes()
5549 a8083063 Iustin Pop
5550 a8083063 Iustin Pop
  def CheckPrereq(self):
5551 a8083063 Iustin Pop
    """Check prerequisites.
5552 a8083063 Iustin Pop

5553 a8083063 Iustin Pop
    This only checks the optional instance list against the existing names.
5554 a8083063 Iustin Pop

5555 a8083063 Iustin Pop
    """
5556 a987fa48 Guido Trotter
    if self.wanted_names is None:
5557 a987fa48 Guido Trotter
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
5558 a8083063 Iustin Pop
5559 a987fa48 Guido Trotter
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
5560 a987fa48 Guido Trotter
                             in self.wanted_names]
5561 a987fa48 Guido Trotter
    return
5562 a8083063 Iustin Pop
5563 a8083063 Iustin Pop
  def _ComputeDiskStatus(self, instance, snode, dev):
5564 a8083063 Iustin Pop
    """Compute block device status.
5565 a8083063 Iustin Pop

5566 a8083063 Iustin Pop
    """
5567 57821cac Iustin Pop
    static = self.op.static
5568 57821cac Iustin Pop
    if not static:
5569 57821cac Iustin Pop
      self.cfg.SetDiskID(dev, instance.primary_node)
5570 57821cac Iustin Pop
      dev_pstatus = self.rpc.call_blockdev_find(instance.primary_node, dev)
5571 9854f5d0 Iustin Pop
      if dev_pstatus.offline:
5572 9854f5d0 Iustin Pop
        dev_pstatus = None
5573 9854f5d0 Iustin Pop
      else:
5574 9854f5d0 Iustin Pop
        msg = dev_pstatus.RemoteFailMsg()
5575 9854f5d0 Iustin Pop
        if msg:
5576 9854f5d0 Iustin Pop
          raise errors.OpExecError("Can't compute disk status for %s: %s" %
5577 9854f5d0 Iustin Pop
                                   (instance.name, msg))
5578 9854f5d0 Iustin Pop
        dev_pstatus = dev_pstatus.payload
5579 57821cac Iustin Pop
    else:
5580 57821cac Iustin Pop
      dev_pstatus = None
5581 57821cac Iustin Pop
5582 a1f445d3 Iustin Pop
    if dev.dev_type in constants.LDS_DRBD:
5583 a8083063 Iustin Pop
      # we change the snode then (otherwise we use the one passed in)
5584 a8083063 Iustin Pop
      if dev.logical_id[0] == instance.primary_node:
5585 a8083063 Iustin Pop
        snode = dev.logical_id[1]
5586 a8083063 Iustin Pop
      else:
5587 a8083063 Iustin Pop
        snode = dev.logical_id[0]
5588 a8083063 Iustin Pop
5589 57821cac Iustin Pop
    if snode and not static:
5590 a8083063 Iustin Pop
      self.cfg.SetDiskID(dev, snode)
5591 72737a7f Iustin Pop
      dev_sstatus = self.rpc.call_blockdev_find(snode, dev)
5592 9854f5d0 Iustin Pop
      if dev_sstatus.offline:
5593 9854f5d0 Iustin Pop
        dev_sstatus = None
5594 9854f5d0 Iustin Pop
      else:
5595 9854f5d0 Iustin Pop
        msg = dev_sstatus.RemoteFailMsg()
5596 9854f5d0 Iustin Pop
        if msg:
5597 9854f5d0 Iustin Pop
          raise errors.OpExecError("Can't compute disk status for %s: %s" %
5598 9854f5d0 Iustin Pop
                                   (instance.name, msg))
5599 9854f5d0 Iustin Pop
        dev_sstatus = dev_sstatus.payload
5600 a8083063 Iustin Pop
    else:
5601 a8083063 Iustin Pop
      dev_sstatus = None
5602 a8083063 Iustin Pop
5603 a8083063 Iustin Pop
    if dev.children:
5604 a8083063 Iustin Pop
      dev_children = [self._ComputeDiskStatus(instance, snode, child)
5605 a8083063 Iustin Pop
                      for child in dev.children]
5606 a8083063 Iustin Pop
    else:
5607 a8083063 Iustin Pop
      dev_children = []
5608 a8083063 Iustin Pop
5609 a8083063 Iustin Pop
    data = {
5610 a8083063 Iustin Pop
      "iv_name": dev.iv_name,
5611 a8083063 Iustin Pop
      "dev_type": dev.dev_type,
5612 a8083063 Iustin Pop
      "logical_id": dev.logical_id,
5613 a8083063 Iustin Pop
      "physical_id": dev.physical_id,
5614 a8083063 Iustin Pop
      "pstatus": dev_pstatus,
5615 a8083063 Iustin Pop
      "sstatus": dev_sstatus,
5616 a8083063 Iustin Pop
      "children": dev_children,
5617 b6fdf8b8 Iustin Pop
      "mode": dev.mode,
5618 a8083063 Iustin Pop
      }
5619 a8083063 Iustin Pop
5620 a8083063 Iustin Pop
    return data
5621 a8083063 Iustin Pop
5622 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5623 a8083063 Iustin Pop
    """Gather and return data"""
5624 a8083063 Iustin Pop
    result = {}
5625 338e51e8 Iustin Pop
5626 338e51e8 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
5627 338e51e8 Iustin Pop
5628 a8083063 Iustin Pop
    for instance in self.wanted_instances:
5629 57821cac Iustin Pop
      if not self.op.static:
5630 57821cac Iustin Pop
        remote_info = self.rpc.call_instance_info(instance.primary_node,
5631 57821cac Iustin Pop
                                                  instance.name,
5632 57821cac Iustin Pop
                                                  instance.hypervisor)
5633 781de953 Iustin Pop
        remote_info.Raise()
5634 781de953 Iustin Pop
        remote_info = remote_info.data
5635 57821cac Iustin Pop
        if remote_info and "state" in remote_info:
5636 57821cac Iustin Pop
          remote_state = "up"
5637 57821cac Iustin Pop
        else:
5638 57821cac Iustin Pop
          remote_state = "down"
5639 a8083063 Iustin Pop
      else:
5640 57821cac Iustin Pop
        remote_state = None
5641 0d68c45d Iustin Pop
      if instance.admin_up:
5642 a8083063 Iustin Pop
        config_state = "up"
5643 0d68c45d Iustin Pop
      else:
5644 0d68c45d Iustin Pop
        config_state = "down"
5645 a8083063 Iustin Pop
5646 a8083063 Iustin Pop
      disks = [self._ComputeDiskStatus(instance, None, device)
5647 a8083063 Iustin Pop
               for device in instance.disks]
5648 a8083063 Iustin Pop
5649 a8083063 Iustin Pop
      idict = {
5650 a8083063 Iustin Pop
        "name": instance.name,
5651 a8083063 Iustin Pop
        "config_state": config_state,
5652 a8083063 Iustin Pop
        "run_state": remote_state,
5653 a8083063 Iustin Pop
        "pnode": instance.primary_node,
5654 a8083063 Iustin Pop
        "snodes": instance.secondary_nodes,
5655 a8083063 Iustin Pop
        "os": instance.os,
5656 a8083063 Iustin Pop
        "nics": [(nic.mac, nic.ip, nic.bridge) for nic in instance.nics],
5657 a8083063 Iustin Pop
        "disks": disks,
5658 e69d05fd Iustin Pop
        "hypervisor": instance.hypervisor,
5659 24838135 Iustin Pop
        "network_port": instance.network_port,
5660 24838135 Iustin Pop
        "hv_instance": instance.hvparams,
5661 338e51e8 Iustin Pop
        "hv_actual": cluster.FillHV(instance),
5662 338e51e8 Iustin Pop
        "be_instance": instance.beparams,
5663 338e51e8 Iustin Pop
        "be_actual": cluster.FillBE(instance),
5664 a8083063 Iustin Pop
        }
5665 a8083063 Iustin Pop
5666 a8083063 Iustin Pop
      result[instance.name] = idict
5667 a8083063 Iustin Pop
5668 a8083063 Iustin Pop
    return result
5669 a8083063 Iustin Pop
5670 a8083063 Iustin Pop
5671 7767bbf5 Manuel Franceschini
class LUSetInstanceParams(LogicalUnit):
5672 a8083063 Iustin Pop
  """Modifies an instances's parameters.
5673 a8083063 Iustin Pop

5674 a8083063 Iustin Pop
  """
5675 a8083063 Iustin Pop
  HPATH = "instance-modify"
5676 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5677 24991749 Iustin Pop
  _OP_REQP = ["instance_name"]
5678 1a5c7281 Guido Trotter
  REQ_BGL = False
5679 1a5c7281 Guido Trotter
5680 24991749 Iustin Pop
  def CheckArguments(self):
5681 24991749 Iustin Pop
    if not hasattr(self.op, 'nics'):
5682 24991749 Iustin Pop
      self.op.nics = []
5683 24991749 Iustin Pop
    if not hasattr(self.op, 'disks'):
5684 24991749 Iustin Pop
      self.op.disks = []
5685 24991749 Iustin Pop
    if not hasattr(self.op, 'beparams'):
5686 24991749 Iustin Pop
      self.op.beparams = {}
5687 24991749 Iustin Pop
    if not hasattr(self.op, 'hvparams'):
5688 24991749 Iustin Pop
      self.op.hvparams = {}
5689 24991749 Iustin Pop
    self.op.force = getattr(self.op, "force", False)
5690 24991749 Iustin Pop
    if not (self.op.nics or self.op.disks or
5691 24991749 Iustin Pop
            self.op.hvparams or self.op.beparams):
5692 24991749 Iustin Pop
      raise errors.OpPrereqError("No changes submitted")
5693 24991749 Iustin Pop
5694 24991749 Iustin Pop
    # Disk validation
5695 24991749 Iustin Pop
    disk_addremove = 0
5696 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5697 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5698 24991749 Iustin Pop
        disk_addremove += 1
5699 24991749 Iustin Pop
        continue
5700 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5701 24991749 Iustin Pop
        disk_addremove += 1
5702 24991749 Iustin Pop
      else:
5703 24991749 Iustin Pop
        if not isinstance(disk_op, int):
5704 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index")
5705 24991749 Iustin Pop
      if disk_op == constants.DDM_ADD:
5706 24991749 Iustin Pop
        mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
5707 6ec66eae Iustin Pop
        if mode not in constants.DISK_ACCESS_SET:
5708 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode)
5709 24991749 Iustin Pop
        size = disk_dict.get('size', None)
5710 24991749 Iustin Pop
        if size is None:
5711 24991749 Iustin Pop
          raise errors.OpPrereqError("Required disk parameter size missing")
5712 24991749 Iustin Pop
        try:
5713 24991749 Iustin Pop
          size = int(size)
5714 24991749 Iustin Pop
        except ValueError, err:
5715 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size parameter: %s" %
5716 24991749 Iustin Pop
                                     str(err))
5717 24991749 Iustin Pop
        disk_dict['size'] = size
5718 24991749 Iustin Pop
      else:
5719 24991749 Iustin Pop
        # modification of disk
5720 24991749 Iustin Pop
        if 'size' in disk_dict:
5721 24991749 Iustin Pop
          raise errors.OpPrereqError("Disk size change not possible, use"
5722 24991749 Iustin Pop
                                     " grow-disk")
5723 24991749 Iustin Pop
5724 24991749 Iustin Pop
    if disk_addremove > 1:
5725 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one disk add or remove operation"
5726 24991749 Iustin Pop
                                 " supported at a time")
5727 24991749 Iustin Pop
5728 24991749 Iustin Pop
    # NIC validation
5729 24991749 Iustin Pop
    nic_addremove = 0
5730 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5731 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5732 24991749 Iustin Pop
        nic_addremove += 1
5733 24991749 Iustin Pop
        continue
5734 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5735 24991749 Iustin Pop
        nic_addremove += 1
5736 24991749 Iustin Pop
      else:
5737 24991749 Iustin Pop
        if not isinstance(nic_op, int):
5738 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid nic index")
5739 24991749 Iustin Pop
5740 24991749 Iustin Pop
      # nic_dict should be a dict
5741 24991749 Iustin Pop
      nic_ip = nic_dict.get('ip', None)
5742 24991749 Iustin Pop
      if nic_ip is not None:
5743 5c44da6a Guido Trotter
        if nic_ip.lower() == constants.VALUE_NONE:
5744 24991749 Iustin Pop
          nic_dict['ip'] = None
5745 24991749 Iustin Pop
        else:
5746 24991749 Iustin Pop
          if not utils.IsValidIP(nic_ip):
5747 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip)
5748 5c44da6a Guido Trotter
5749 5c44da6a Guido Trotter
      if nic_op == constants.DDM_ADD:
5750 5c44da6a Guido Trotter
        nic_bridge = nic_dict.get('bridge', None)
5751 5c44da6a Guido Trotter
        if nic_bridge is None:
5752 5c44da6a Guido Trotter
          nic_dict['bridge'] = self.cfg.GetDefBridge()
5753 5c44da6a Guido Trotter
        nic_mac = nic_dict.get('mac', None)
5754 5c44da6a Guido Trotter
        if nic_mac is None:
5755 5c44da6a Guido Trotter
          nic_dict['mac'] = constants.VALUE_AUTO
5756 5c44da6a Guido Trotter
5757 5c44da6a Guido Trotter
      if 'mac' in nic_dict:
5758 5c44da6a Guido Trotter
        nic_mac = nic_dict['mac']
5759 24991749 Iustin Pop
        if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5760 24991749 Iustin Pop
          if not utils.IsValidMac(nic_mac):
5761 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid MAC address %s" % nic_mac)
5762 5c44da6a Guido Trotter
        if nic_op != constants.DDM_ADD and nic_mac == constants.VALUE_AUTO:
5763 5c44da6a Guido Trotter
          raise errors.OpPrereqError("'auto' is not a valid MAC address when"
5764 5c44da6a Guido Trotter
                                     " modifying an existing nic")
5765 5c44da6a Guido Trotter
5766 24991749 Iustin Pop
    if nic_addremove > 1:
5767 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one NIC add or remove operation"
5768 24991749 Iustin Pop
                                 " supported at a time")
5769 24991749 Iustin Pop
5770 1a5c7281 Guido Trotter
  def ExpandNames(self):
5771 1a5c7281 Guido Trotter
    self._ExpandAndLockInstance()
5772 74409b12 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
5773 74409b12 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5774 74409b12 Iustin Pop
5775 74409b12 Iustin Pop
  def DeclareLocks(self, level):
5776 74409b12 Iustin Pop
    if level == locking.LEVEL_NODE:
5777 74409b12 Iustin Pop
      self._LockInstancesNodes()
5778 a8083063 Iustin Pop
5779 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5780 a8083063 Iustin Pop
    """Build hooks env.
5781 a8083063 Iustin Pop

5782 a8083063 Iustin Pop
    This runs on the master, primary and secondaries.
5783 a8083063 Iustin Pop

5784 a8083063 Iustin Pop
    """
5785 396e1b78 Michael Hanselmann
    args = dict()
5786 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.be_new:
5787 338e51e8 Iustin Pop
      args['memory'] = self.be_new[constants.BE_MEMORY]
5788 338e51e8 Iustin Pop
    if constants.BE_VCPUS in self.be_new:
5789 61be6ba4 Iustin Pop
      args['vcpus'] = self.be_new[constants.BE_VCPUS]
5790 d8dcf3c9 Guido Trotter
    # TODO: export disk changes. Note: _BuildInstanceHookEnv* don't export disk
5791 d8dcf3c9 Guido Trotter
    # information at all.
5792 d8dcf3c9 Guido Trotter
    if self.op.nics:
5793 d8dcf3c9 Guido Trotter
      args['nics'] = []
5794 d8dcf3c9 Guido Trotter
      nic_override = dict(self.op.nics)
5795 d8dcf3c9 Guido Trotter
      for idx, nic in enumerate(self.instance.nics):
5796 d8dcf3c9 Guido Trotter
        if idx in nic_override:
5797 d8dcf3c9 Guido Trotter
          this_nic_override = nic_override[idx]
5798 d8dcf3c9 Guido Trotter
        else:
5799 d8dcf3c9 Guido Trotter
          this_nic_override = {}
5800 d8dcf3c9 Guido Trotter
        if 'ip' in this_nic_override:
5801 d8dcf3c9 Guido Trotter
          ip = this_nic_override['ip']
5802 d8dcf3c9 Guido Trotter
        else:
5803 d8dcf3c9 Guido Trotter
          ip = nic.ip
5804 d8dcf3c9 Guido Trotter
        if 'bridge' in this_nic_override:
5805 d8dcf3c9 Guido Trotter
          bridge = this_nic_override['bridge']
5806 d8dcf3c9 Guido Trotter
        else:
5807 d8dcf3c9 Guido Trotter
          bridge = nic.bridge
5808 d8dcf3c9 Guido Trotter
        if 'mac' in this_nic_override:
5809 d8dcf3c9 Guido Trotter
          mac = this_nic_override['mac']
5810 d8dcf3c9 Guido Trotter
        else:
5811 d8dcf3c9 Guido Trotter
          mac = nic.mac
5812 d8dcf3c9 Guido Trotter
        args['nics'].append((ip, bridge, mac))
5813 d8dcf3c9 Guido Trotter
      if constants.DDM_ADD in nic_override:
5814 d8dcf3c9 Guido Trotter
        ip = nic_override[constants.DDM_ADD].get('ip', None)
5815 d8dcf3c9 Guido Trotter
        bridge = nic_override[constants.DDM_ADD]['bridge']
5816 d8dcf3c9 Guido Trotter
        mac = nic_override[constants.DDM_ADD]['mac']
5817 d8dcf3c9 Guido Trotter
        args['nics'].append((ip, bridge, mac))
5818 d8dcf3c9 Guido Trotter
      elif constants.DDM_REMOVE in nic_override:
5819 d8dcf3c9 Guido Trotter
        del args['nics'][-1]
5820 d8dcf3c9 Guido Trotter
5821 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
5822 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
5823 a8083063 Iustin Pop
    return env, nl, nl
5824 a8083063 Iustin Pop
5825 a8083063 Iustin Pop
  def CheckPrereq(self):
5826 a8083063 Iustin Pop
    """Check prerequisites.
5827 a8083063 Iustin Pop

5828 a8083063 Iustin Pop
    This only checks the instance list against the existing names.
5829 a8083063 Iustin Pop

5830 a8083063 Iustin Pop
    """
5831 24991749 Iustin Pop
    force = self.force = self.op.force
5832 a8083063 Iustin Pop
5833 74409b12 Iustin Pop
    # checking the new params on the primary/secondary nodes
5834 31a853d2 Iustin Pop
5835 cfefe007 Guido Trotter
    instance = self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5836 1a5c7281 Guido Trotter
    assert self.instance is not None, \
5837 1a5c7281 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5838 6b12959c Iustin Pop
    pnode = instance.primary_node
5839 6b12959c Iustin Pop
    nodelist = list(instance.all_nodes)
5840 74409b12 Iustin Pop
5841 338e51e8 Iustin Pop
    # hvparams processing
5842 74409b12 Iustin Pop
    if self.op.hvparams:
5843 74409b12 Iustin Pop
      i_hvdict = copy.deepcopy(instance.hvparams)
5844 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
5845 8edcd611 Guido Trotter
        if val == constants.VALUE_DEFAULT:
5846 74409b12 Iustin Pop
          try:
5847 74409b12 Iustin Pop
            del i_hvdict[key]
5848 74409b12 Iustin Pop
          except KeyError:
5849 74409b12 Iustin Pop
            pass
5850 74409b12 Iustin Pop
        else:
5851 74409b12 Iustin Pop
          i_hvdict[key] = val
5852 74409b12 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
5853 a5728081 Guido Trotter
      utils.ForceDictType(i_hvdict, constants.HVS_PARAMETER_TYPES)
5854 74409b12 Iustin Pop
      hv_new = cluster.FillDict(cluster.hvparams[instance.hypervisor],
5855 74409b12 Iustin Pop
                                i_hvdict)
5856 74409b12 Iustin Pop
      # local check
5857 74409b12 Iustin Pop
      hypervisor.GetHypervisor(
5858 74409b12 Iustin Pop
        instance.hypervisor).CheckParameterSyntax(hv_new)
5859 74409b12 Iustin Pop
      _CheckHVParams(self, nodelist, instance.hypervisor, hv_new)
5860 338e51e8 Iustin Pop
      self.hv_new = hv_new # the new actual values
5861 338e51e8 Iustin Pop
      self.hv_inst = i_hvdict # the new dict (without defaults)
5862 338e51e8 Iustin Pop
    else:
5863 338e51e8 Iustin Pop
      self.hv_new = self.hv_inst = {}
5864 338e51e8 Iustin Pop
5865 338e51e8 Iustin Pop
    # beparams processing
5866 338e51e8 Iustin Pop
    if self.op.beparams:
5867 338e51e8 Iustin Pop
      i_bedict = copy.deepcopy(instance.beparams)
5868 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
5869 8edcd611 Guido Trotter
        if val == constants.VALUE_DEFAULT:
5870 338e51e8 Iustin Pop
          try:
5871 338e51e8 Iustin Pop
            del i_bedict[key]
5872 338e51e8 Iustin Pop
          except KeyError:
5873 338e51e8 Iustin Pop
            pass
5874 338e51e8 Iustin Pop
        else:
5875 338e51e8 Iustin Pop
          i_bedict[key] = val
5876 338e51e8 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
5877 a5728081 Guido Trotter
      utils.ForceDictType(i_bedict, constants.BES_PARAMETER_TYPES)
5878 338e51e8 Iustin Pop
      be_new = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
5879 338e51e8 Iustin Pop
                                i_bedict)
5880 338e51e8 Iustin Pop
      self.be_new = be_new # the new actual values
5881 338e51e8 Iustin Pop
      self.be_inst = i_bedict # the new dict (without defaults)
5882 338e51e8 Iustin Pop
    else:
5883 b637ae4d Iustin Pop
      self.be_new = self.be_inst = {}
5884 74409b12 Iustin Pop
5885 cfefe007 Guido Trotter
    self.warn = []
5886 647a5d80 Iustin Pop
5887 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.op.beparams and not self.force:
5888 647a5d80 Iustin Pop
      mem_check_list = [pnode]
5889 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
5890 c0f2b229 Iustin Pop
        # either we changed auto_balance to yes or it was from before
5891 647a5d80 Iustin Pop
        mem_check_list.extend(instance.secondary_nodes)
5892 72737a7f Iustin Pop
      instance_info = self.rpc.call_instance_info(pnode, instance.name,
5893 72737a7f Iustin Pop
                                                  instance.hypervisor)
5894 647a5d80 Iustin Pop
      nodeinfo = self.rpc.call_node_info(mem_check_list, self.cfg.GetVGName(),
5895 72737a7f Iustin Pop
                                         instance.hypervisor)
5896 781de953 Iustin Pop
      if nodeinfo[pnode].failed or not isinstance(nodeinfo[pnode].data, dict):
5897 cfefe007 Guido Trotter
        # Assume the primary node is unreachable and go ahead
5898 cfefe007 Guido Trotter
        self.warn.append("Can't get info from primary node %s" % pnode)
5899 cfefe007 Guido Trotter
      else:
5900 781de953 Iustin Pop
        if not instance_info.failed and instance_info.data:
5901 ade0e8cd Guido Trotter
          current_mem = int(instance_info.data['memory'])
5902 cfefe007 Guido Trotter
        else:
5903 cfefe007 Guido Trotter
          # Assume instance not running
5904 cfefe007 Guido Trotter
          # (there is a slight race condition here, but it's not very probable,
5905 cfefe007 Guido Trotter
          # and we have no other way to check)
5906 cfefe007 Guido Trotter
          current_mem = 0
5907 338e51e8 Iustin Pop
        miss_mem = (be_new[constants.BE_MEMORY] - current_mem -
5908 781de953 Iustin Pop
                    nodeinfo[pnode].data['memory_free'])
5909 cfefe007 Guido Trotter
        if miss_mem > 0:
5910 cfefe007 Guido Trotter
          raise errors.OpPrereqError("This change will prevent the instance"
5911 cfefe007 Guido Trotter
                                     " from starting, due to %d MB of memory"
5912 cfefe007 Guido Trotter
                                     " missing on its primary node" % miss_mem)
5913 cfefe007 Guido Trotter
5914 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
5915 ea33068f Iustin Pop
        for node, nres in nodeinfo.iteritems():
5916 ea33068f Iustin Pop
          if node not in instance.secondary_nodes:
5917 ea33068f Iustin Pop
            continue
5918 781de953 Iustin Pop
          if nres.failed or not isinstance(nres.data, dict):
5919 647a5d80 Iustin Pop
            self.warn.append("Can't get info from secondary node %s" % node)
5920 781de953 Iustin Pop
          elif be_new[constants.BE_MEMORY] > nres.data['memory_free']:
5921 647a5d80 Iustin Pop
            self.warn.append("Not enough memory to failover instance to"
5922 647a5d80 Iustin Pop
                             " secondary node %s" % node)
5923 5bc84f33 Alexander Schreiber
5924 24991749 Iustin Pop
    # NIC processing
5925 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5926 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5927 24991749 Iustin Pop
        if not instance.nics:
5928 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance has no NICs, cannot remove")
5929 24991749 Iustin Pop
        continue
5930 24991749 Iustin Pop
      if nic_op != constants.DDM_ADD:
5931 24991749 Iustin Pop
        # an existing nic
5932 24991749 Iustin Pop
        if nic_op < 0 or nic_op >= len(instance.nics):
5933 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid NIC index %s, valid values"
5934 24991749 Iustin Pop
                                     " are 0 to %d" %
5935 24991749 Iustin Pop
                                     (nic_op, len(instance.nics)))
5936 5c44da6a Guido Trotter
      if 'bridge' in nic_dict:
5937 5c44da6a Guido Trotter
        nic_bridge = nic_dict['bridge']
5938 5c44da6a Guido Trotter
        if nic_bridge is None:
5939 5c44da6a Guido Trotter
          raise errors.OpPrereqError('Cannot set the nic bridge to None')
5940 24991749 Iustin Pop
        if not self.rpc.call_bridges_exist(pnode, [nic_bridge]):
5941 24991749 Iustin Pop
          msg = ("Bridge '%s' doesn't exist on one of"
5942 24991749 Iustin Pop
                 " the instance nodes" % nic_bridge)
5943 24991749 Iustin Pop
          if self.force:
5944 24991749 Iustin Pop
            self.warn.append(msg)
5945 24991749 Iustin Pop
          else:
5946 24991749 Iustin Pop
            raise errors.OpPrereqError(msg)
5947 5c44da6a Guido Trotter
      if 'mac' in nic_dict:
5948 5c44da6a Guido Trotter
        nic_mac = nic_dict['mac']
5949 5c44da6a Guido Trotter
        if nic_mac is None:
5950 5c44da6a Guido Trotter
          raise errors.OpPrereqError('Cannot set the nic mac to None')
5951 5c44da6a Guido Trotter
        elif nic_mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5952 5c44da6a Guido Trotter
          # otherwise generate the mac
5953 5c44da6a Guido Trotter
          nic_dict['mac'] = self.cfg.GenerateMAC()
5954 5c44da6a Guido Trotter
        else:
5955 5c44da6a Guido Trotter
          # or validate/reserve the current one
5956 5c44da6a Guido Trotter
          if self.cfg.IsMacInUse(nic_mac):
5957 5c44da6a Guido Trotter
            raise errors.OpPrereqError("MAC address %s already in use"
5958 5c44da6a Guido Trotter
                                       " in cluster" % nic_mac)
5959 24991749 Iustin Pop
5960 24991749 Iustin Pop
    # DISK processing
5961 24991749 Iustin Pop
    if self.op.disks and instance.disk_template == constants.DT_DISKLESS:
5962 24991749 Iustin Pop
      raise errors.OpPrereqError("Disk operations not supported for"
5963 24991749 Iustin Pop
                                 " diskless instances")
5964 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5965 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5966 24991749 Iustin Pop
        if len(instance.disks) == 1:
5967 24991749 Iustin Pop
          raise errors.OpPrereqError("Cannot remove the last disk of"
5968 24991749 Iustin Pop
                                     " an instance")
5969 24991749 Iustin Pop
        ins_l = self.rpc.call_instance_list([pnode], [instance.hypervisor])
5970 24991749 Iustin Pop
        ins_l = ins_l[pnode]
5971 4cfb9426 Iustin Pop
        if ins_l.failed or not isinstance(ins_l.data, list):
5972 24991749 Iustin Pop
          raise errors.OpPrereqError("Can't contact node '%s'" % pnode)
5973 4cfb9426 Iustin Pop
        if instance.name in ins_l.data:
5974 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance is running, can't remove"
5975 24991749 Iustin Pop
                                     " disks.")
5976 24991749 Iustin Pop
5977 24991749 Iustin Pop
      if (disk_op == constants.DDM_ADD and
5978 24991749 Iustin Pop
          len(instance.nics) >= constants.MAX_DISKS):
5979 24991749 Iustin Pop
        raise errors.OpPrereqError("Instance has too many disks (%d), cannot"
5980 24991749 Iustin Pop
                                   " add more" % constants.MAX_DISKS)
5981 24991749 Iustin Pop
      if disk_op not in (constants.DDM_ADD, constants.DDM_REMOVE):
5982 24991749 Iustin Pop
        # an existing disk
5983 24991749 Iustin Pop
        if disk_op < 0 or disk_op >= len(instance.disks):
5984 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index %s, valid values"
5985 24991749 Iustin Pop
                                     " are 0 to %d" %
5986 24991749 Iustin Pop
                                     (disk_op, len(instance.disks)))
5987 24991749 Iustin Pop
5988 a8083063 Iustin Pop
    return
5989 a8083063 Iustin Pop
5990 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5991 a8083063 Iustin Pop
    """Modifies an instance.
5992 a8083063 Iustin Pop

5993 a8083063 Iustin Pop
    All parameters take effect only at the next restart of the instance.
5994 24991749 Iustin Pop

5995 a8083063 Iustin Pop
    """
5996 cfefe007 Guido Trotter
    # Process here the warnings from CheckPrereq, as we don't have a
5997 cfefe007 Guido Trotter
    # feedback_fn there.
5998 cfefe007 Guido Trotter
    for warn in self.warn:
5999 cfefe007 Guido Trotter
      feedback_fn("WARNING: %s" % warn)
6000 cfefe007 Guido Trotter
6001 a8083063 Iustin Pop
    result = []
6002 a8083063 Iustin Pop
    instance = self.instance
6003 24991749 Iustin Pop
    # disk changes
6004 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
6005 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
6006 24991749 Iustin Pop
        # remove the last disk
6007 24991749 Iustin Pop
        device = instance.disks.pop()
6008 24991749 Iustin Pop
        device_idx = len(instance.disks)
6009 24991749 Iustin Pop
        for node, disk in device.ComputeNodeTree(instance.primary_node):
6010 24991749 Iustin Pop
          self.cfg.SetDiskID(disk, node)
6011 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
6012 e1bc0878 Iustin Pop
          if msg:
6013 e1bc0878 Iustin Pop
            self.LogWarning("Could not remove disk/%d on node %s: %s,"
6014 e1bc0878 Iustin Pop
                            " continuing anyway", device_idx, node, msg)
6015 24991749 Iustin Pop
        result.append(("disk/%d" % device_idx, "remove"))
6016 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
6017 24991749 Iustin Pop
        # add a new disk
6018 24991749 Iustin Pop
        if instance.disk_template == constants.DT_FILE:
6019 24991749 Iustin Pop
          file_driver, file_path = instance.disks[0].logical_id
6020 24991749 Iustin Pop
          file_path = os.path.dirname(file_path)
6021 24991749 Iustin Pop
        else:
6022 24991749 Iustin Pop
          file_driver = file_path = None
6023 24991749 Iustin Pop
        disk_idx_base = len(instance.disks)
6024 24991749 Iustin Pop
        new_disk = _GenerateDiskTemplate(self,
6025 24991749 Iustin Pop
                                         instance.disk_template,
6026 32388e6d Iustin Pop
                                         instance.name, instance.primary_node,
6027 24991749 Iustin Pop
                                         instance.secondary_nodes,
6028 24991749 Iustin Pop
                                         [disk_dict],
6029 24991749 Iustin Pop
                                         file_path,
6030 24991749 Iustin Pop
                                         file_driver,
6031 24991749 Iustin Pop
                                         disk_idx_base)[0]
6032 24991749 Iustin Pop
        instance.disks.append(new_disk)
6033 24991749 Iustin Pop
        info = _GetInstanceInfoText(instance)
6034 24991749 Iustin Pop
6035 24991749 Iustin Pop
        logging.info("Creating volume %s for instance %s",
6036 24991749 Iustin Pop
                     new_disk.iv_name, instance.name)
6037 24991749 Iustin Pop
        # Note: this needs to be kept in sync with _CreateDisks
6038 24991749 Iustin Pop
        #HARDCODE
6039 428958aa Iustin Pop
        for node in instance.all_nodes:
6040 428958aa Iustin Pop
          f_create = node == instance.primary_node
6041 796cab27 Iustin Pop
          try:
6042 428958aa Iustin Pop
            _CreateBlockDev(self, node, instance, new_disk,
6043 428958aa Iustin Pop
                            f_create, info, f_create)
6044 1492cca7 Iustin Pop
          except errors.OpExecError, err:
6045 24991749 Iustin Pop
            self.LogWarning("Failed to create volume %s (%s) on"
6046 428958aa Iustin Pop
                            " node %s: %s",
6047 428958aa Iustin Pop
                            new_disk.iv_name, new_disk, node, err)
6048 24991749 Iustin Pop
        result.append(("disk/%d" % disk_idx_base, "add:size=%s,mode=%s" %
6049 24991749 Iustin Pop
                       (new_disk.size, new_disk.mode)))
6050 24991749 Iustin Pop
      else:
6051 24991749 Iustin Pop
        # change a given disk
6052 24991749 Iustin Pop
        instance.disks[disk_op].mode = disk_dict['mode']
6053 24991749 Iustin Pop
        result.append(("disk.mode/%d" % disk_op, disk_dict['mode']))
6054 24991749 Iustin Pop
    # NIC changes
6055 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
6056 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
6057 24991749 Iustin Pop
        # remove the last nic
6058 24991749 Iustin Pop
        del instance.nics[-1]
6059 24991749 Iustin Pop
        result.append(("nic.%d" % len(instance.nics), "remove"))
6060 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
6061 5c44da6a Guido Trotter
        # mac and bridge should be set, by now
6062 5c44da6a Guido Trotter
        mac = nic_dict['mac']
6063 5c44da6a Guido Trotter
        bridge = nic_dict['bridge']
6064 24991749 Iustin Pop
        new_nic = objects.NIC(mac=mac, ip=nic_dict.get('ip', None),
6065 5c44da6a Guido Trotter
                              bridge=bridge)
6066 24991749 Iustin Pop
        instance.nics.append(new_nic)
6067 24991749 Iustin Pop
        result.append(("nic.%d" % (len(instance.nics) - 1),
6068 24991749 Iustin Pop
                       "add:mac=%s,ip=%s,bridge=%s" %
6069 24991749 Iustin Pop
                       (new_nic.mac, new_nic.ip, new_nic.bridge)))
6070 24991749 Iustin Pop
      else:
6071 24991749 Iustin Pop
        # change a given nic
6072 24991749 Iustin Pop
        for key in 'mac', 'ip', 'bridge':
6073 24991749 Iustin Pop
          if key in nic_dict:
6074 24991749 Iustin Pop
            setattr(instance.nics[nic_op], key, nic_dict[key])
6075 24991749 Iustin Pop
            result.append(("nic.%s/%d" % (key, nic_op), nic_dict[key]))
6076 24991749 Iustin Pop
6077 24991749 Iustin Pop
    # hvparams changes
6078 74409b12 Iustin Pop
    if self.op.hvparams:
6079 12649e35 Guido Trotter
      instance.hvparams = self.hv_inst
6080 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
6081 74409b12 Iustin Pop
        result.append(("hv/%s" % key, val))
6082 24991749 Iustin Pop
6083 24991749 Iustin Pop
    # beparams changes
6084 338e51e8 Iustin Pop
    if self.op.beparams:
6085 338e51e8 Iustin Pop
      instance.beparams = self.be_inst
6086 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
6087 338e51e8 Iustin Pop
        result.append(("be/%s" % key, val))
6088 a8083063 Iustin Pop
6089 ea94e1cd Guido Trotter
    self.cfg.Update(instance)
6090 a8083063 Iustin Pop
6091 a8083063 Iustin Pop
    return result
6092 a8083063 Iustin Pop
6093 a8083063 Iustin Pop
6094 a8083063 Iustin Pop
class LUQueryExports(NoHooksLU):
6095 a8083063 Iustin Pop
  """Query the exports list
6096 a8083063 Iustin Pop

6097 a8083063 Iustin Pop
  """
6098 895ecd9c Guido Trotter
  _OP_REQP = ['nodes']
6099 21a15682 Guido Trotter
  REQ_BGL = False
6100 21a15682 Guido Trotter
6101 21a15682 Guido Trotter
  def ExpandNames(self):
6102 21a15682 Guido Trotter
    self.needed_locks = {}
6103 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
6104 21a15682 Guido Trotter
    if not self.op.nodes:
6105 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6106 21a15682 Guido Trotter
    else:
6107 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
6108 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
6109 a8083063 Iustin Pop
6110 a8083063 Iustin Pop
  def CheckPrereq(self):
6111 21a15682 Guido Trotter
    """Check prerequisites.
6112 a8083063 Iustin Pop

6113 a8083063 Iustin Pop
    """
6114 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
6115 a8083063 Iustin Pop
6116 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6117 a8083063 Iustin Pop
    """Compute the list of all the exported system images.
6118 a8083063 Iustin Pop

6119 e4376078 Iustin Pop
    @rtype: dict
6120 e4376078 Iustin Pop
    @return: a dictionary with the structure node->(export-list)
6121 e4376078 Iustin Pop
        where export-list is a list of the instances exported on
6122 e4376078 Iustin Pop
        that node.
6123 a8083063 Iustin Pop

6124 a8083063 Iustin Pop
    """
6125 b04285f2 Guido Trotter
    rpcresult = self.rpc.call_export_list(self.nodes)
6126 b04285f2 Guido Trotter
    result = {}
6127 b04285f2 Guido Trotter
    for node in rpcresult:
6128 b04285f2 Guido Trotter
      if rpcresult[node].failed:
6129 b04285f2 Guido Trotter
        result[node] = False
6130 b04285f2 Guido Trotter
      else:
6131 b04285f2 Guido Trotter
        result[node] = rpcresult[node].data
6132 b04285f2 Guido Trotter
6133 b04285f2 Guido Trotter
    return result
6134 a8083063 Iustin Pop
6135 a8083063 Iustin Pop
6136 a8083063 Iustin Pop
class LUExportInstance(LogicalUnit):
6137 a8083063 Iustin Pop
  """Export an instance to an image in the cluster.
6138 a8083063 Iustin Pop

6139 a8083063 Iustin Pop
  """
6140 a8083063 Iustin Pop
  HPATH = "instance-export"
6141 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
6142 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "target_node", "shutdown"]
6143 6657590e Guido Trotter
  REQ_BGL = False
6144 6657590e Guido Trotter
6145 6657590e Guido Trotter
  def ExpandNames(self):
6146 6657590e Guido Trotter
    self._ExpandAndLockInstance()
6147 6657590e Guido Trotter
    # FIXME: lock only instance primary and destination node
6148 6657590e Guido Trotter
    #
6149 6657590e Guido Trotter
    # Sad but true, for now we have do lock all nodes, as we don't know where
6150 6657590e Guido Trotter
    # the previous export might be, and and in this LU we search for it and
6151 6657590e Guido Trotter
    # remove it from its current node. In the future we could fix this by:
6152 6657590e Guido Trotter
    #  - making a tasklet to search (share-lock all), then create the new one,
6153 6657590e Guido Trotter
    #    then one to remove, after
6154 6657590e Guido Trotter
    #  - removing the removal operation altoghether
6155 6657590e Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6156 6657590e Guido Trotter
6157 6657590e Guido Trotter
  def DeclareLocks(self, level):
6158 6657590e Guido Trotter
    """Last minute lock declaration."""
6159 6657590e Guido Trotter
    # All nodes are locked anyway, so nothing to do here.
6160 a8083063 Iustin Pop
6161 a8083063 Iustin Pop
  def BuildHooksEnv(self):
6162 a8083063 Iustin Pop
    """Build hooks env.
6163 a8083063 Iustin Pop

6164 a8083063 Iustin Pop
    This will run on the master, primary node and target node.
6165 a8083063 Iustin Pop

6166 a8083063 Iustin Pop
    """
6167 a8083063 Iustin Pop
    env = {
6168 a8083063 Iustin Pop
      "EXPORT_NODE": self.op.target_node,
6169 a8083063 Iustin Pop
      "EXPORT_DO_SHUTDOWN": self.op.shutdown,
6170 a8083063 Iustin Pop
      }
6171 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
6172 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode(), self.instance.primary_node,
6173 a8083063 Iustin Pop
          self.op.target_node]
6174 a8083063 Iustin Pop
    return env, nl, nl
6175 a8083063 Iustin Pop
6176 a8083063 Iustin Pop
  def CheckPrereq(self):
6177 a8083063 Iustin Pop
    """Check prerequisites.
6178 a8083063 Iustin Pop

6179 9ac99fda Guido Trotter
    This checks that the instance and node names are valid.
6180 a8083063 Iustin Pop

6181 a8083063 Iustin Pop
    """
6182 6657590e Guido Trotter
    instance_name = self.op.instance_name
6183 a8083063 Iustin Pop
    self.instance = self.cfg.GetInstanceInfo(instance_name)
6184 6657590e Guido Trotter
    assert self.instance is not None, \
6185 6657590e Guido Trotter
          "Cannot retrieve locked instance %s" % self.op.instance_name
6186 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
6187 a8083063 Iustin Pop
6188 6657590e Guido Trotter
    self.dst_node = self.cfg.GetNodeInfo(
6189 6657590e Guido Trotter
      self.cfg.ExpandNodeName(self.op.target_node))
6190 a8083063 Iustin Pop
6191 268b8e42 Iustin Pop
    if self.dst_node is None:
6192 268b8e42 Iustin Pop
      # This is wrong node name, not a non-locked node
6193 268b8e42 Iustin Pop
      raise errors.OpPrereqError("Wrong node name %s" % self.op.target_node)
6194 aeb83a2b Iustin Pop
    _CheckNodeOnline(self, self.dst_node.name)
6195 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, self.dst_node.name)
6196 a8083063 Iustin Pop
6197 b6023d6c Manuel Franceschini
    # instance disk type verification
6198 b6023d6c Manuel Franceschini
    for disk in self.instance.disks:
6199 b6023d6c Manuel Franceschini
      if disk.dev_type == constants.LD_FILE:
6200 b6023d6c Manuel Franceschini
        raise errors.OpPrereqError("Export not supported for instances with"
6201 b6023d6c Manuel Franceschini
                                   " file-based disks")
6202 b6023d6c Manuel Franceschini
6203 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6204 a8083063 Iustin Pop
    """Export an instance to an image in the cluster.
6205 a8083063 Iustin Pop

6206 a8083063 Iustin Pop
    """
6207 a8083063 Iustin Pop
    instance = self.instance
6208 a8083063 Iustin Pop
    dst_node = self.dst_node
6209 a8083063 Iustin Pop
    src_node = instance.primary_node
6210 a8083063 Iustin Pop
    if self.op.shutdown:
6211 fb300fb7 Guido Trotter
      # shutdown the instance, but not the disks
6212 781de953 Iustin Pop
      result = self.rpc.call_instance_shutdown(src_node, instance)
6213 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
6214 1fae010f Iustin Pop
      if msg:
6215 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
6216 1fae010f Iustin Pop
                                 " node %s: %s" %
6217 1fae010f Iustin Pop
                                 (instance.name, src_node, msg))
6218 a8083063 Iustin Pop
6219 a8083063 Iustin Pop
    vgname = self.cfg.GetVGName()
6220 a8083063 Iustin Pop
6221 a8083063 Iustin Pop
    snap_disks = []
6222 a8083063 Iustin Pop
6223 998c712c Iustin Pop
    # set the disks ID correctly since call_instance_start needs the
6224 998c712c Iustin Pop
    # correct drbd minor to create the symlinks
6225 998c712c Iustin Pop
    for disk in instance.disks:
6226 998c712c Iustin Pop
      self.cfg.SetDiskID(disk, src_node)
6227 998c712c Iustin Pop
6228 a8083063 Iustin Pop
    try:
6229 a8083063 Iustin Pop
      for disk in instance.disks:
6230 19d7f90a Guido Trotter
        # new_dev_name will be a snapshot of an lvm leaf of the one we passed
6231 19d7f90a Guido Trotter
        new_dev_name = self.rpc.call_blockdev_snapshot(src_node, disk)
6232 781de953 Iustin Pop
        if new_dev_name.failed or not new_dev_name.data:
6233 19d7f90a Guido Trotter
          self.LogWarning("Could not snapshot block device %s on node %s",
6234 9a4f63d1 Iustin Pop
                          disk.logical_id[1], src_node)
6235 19d7f90a Guido Trotter
          snap_disks.append(False)
6236 19d7f90a Guido Trotter
        else:
6237 19d7f90a Guido Trotter
          new_dev = objects.Disk(dev_type=constants.LD_LV, size=disk.size,
6238 781de953 Iustin Pop
                                 logical_id=(vgname, new_dev_name.data),
6239 781de953 Iustin Pop
                                 physical_id=(vgname, new_dev_name.data),
6240 19d7f90a Guido Trotter
                                 iv_name=disk.iv_name)
6241 19d7f90a Guido Trotter
          snap_disks.append(new_dev)
6242 a8083063 Iustin Pop
6243 a8083063 Iustin Pop
    finally:
6244 0d68c45d Iustin Pop
      if self.op.shutdown and instance.admin_up:
6245 07813a9e Iustin Pop
        result = self.rpc.call_instance_start(src_node, instance)
6246 dd279568 Iustin Pop
        msg = result.RemoteFailMsg()
6247 dd279568 Iustin Pop
        if msg:
6248 b9bddb6b Iustin Pop
          _ShutdownInstanceDisks(self, instance)
6249 dd279568 Iustin Pop
          raise errors.OpExecError("Could not start instance: %s" % msg)
6250 a8083063 Iustin Pop
6251 a8083063 Iustin Pop
    # TODO: check for size
6252 a8083063 Iustin Pop
6253 62c9ec92 Iustin Pop
    cluster_name = self.cfg.GetClusterName()
6254 74c47259 Iustin Pop
    for idx, dev in enumerate(snap_disks):
6255 19d7f90a Guido Trotter
      if dev:
6256 781de953 Iustin Pop
        result = self.rpc.call_snapshot_export(src_node, dev, dst_node.name,
6257 781de953 Iustin Pop
                                               instance, cluster_name, idx)
6258 781de953 Iustin Pop
        if result.failed or not result.data:
6259 19d7f90a Guido Trotter
          self.LogWarning("Could not export block device %s from node %s to"
6260 19d7f90a Guido Trotter
                          " node %s", dev.logical_id[1], src_node,
6261 19d7f90a Guido Trotter
                          dst_node.name)
6262 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(src_node, dev).RemoteFailMsg()
6263 e1bc0878 Iustin Pop
        if msg:
6264 19d7f90a Guido Trotter
          self.LogWarning("Could not remove snapshot block device %s from node"
6265 e1bc0878 Iustin Pop
                          " %s: %s", dev.logical_id[1], src_node, msg)
6266 a8083063 Iustin Pop
6267 781de953 Iustin Pop
    result = self.rpc.call_finalize_export(dst_node.name, instance, snap_disks)
6268 781de953 Iustin Pop
    if result.failed or not result.data:
6269 19d7f90a Guido Trotter
      self.LogWarning("Could not finalize export for instance %s on node %s",
6270 19d7f90a Guido Trotter
                      instance.name, dst_node.name)
6271 a8083063 Iustin Pop
6272 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
6273 a8083063 Iustin Pop
    nodelist.remove(dst_node.name)
6274 a8083063 Iustin Pop
6275 a8083063 Iustin Pop
    # on one-node clusters nodelist will be empty after the removal
6276 a8083063 Iustin Pop
    # if we proceed the backup would be removed because OpQueryExports
6277 a8083063 Iustin Pop
    # substitutes an empty list with the full cluster node list.
6278 a8083063 Iustin Pop
    if nodelist:
6279 72737a7f Iustin Pop
      exportlist = self.rpc.call_export_list(nodelist)
6280 a8083063 Iustin Pop
      for node in exportlist:
6281 781de953 Iustin Pop
        if exportlist[node].failed:
6282 781de953 Iustin Pop
          continue
6283 781de953 Iustin Pop
        if instance.name in exportlist[node].data:
6284 72737a7f Iustin Pop
          if not self.rpc.call_export_remove(node, instance.name):
6285 19d7f90a Guido Trotter
            self.LogWarning("Could not remove older export for instance %s"
6286 19d7f90a Guido Trotter
                            " on node %s", instance.name, node)
6287 5c947f38 Iustin Pop
6288 5c947f38 Iustin Pop
6289 9ac99fda Guido Trotter
class LURemoveExport(NoHooksLU):
6290 9ac99fda Guido Trotter
  """Remove exports related to the named instance.
6291 9ac99fda Guido Trotter

6292 9ac99fda Guido Trotter
  """
6293 9ac99fda Guido Trotter
  _OP_REQP = ["instance_name"]
6294 3656b3af Guido Trotter
  REQ_BGL = False
6295 3656b3af Guido Trotter
6296 3656b3af Guido Trotter
  def ExpandNames(self):
6297 3656b3af Guido Trotter
    self.needed_locks = {}
6298 3656b3af Guido Trotter
    # We need all nodes to be locked in order for RemoveExport to work, but we
6299 3656b3af Guido Trotter
    # don't need to lock the instance itself, as nothing will happen to it (and
6300 3656b3af Guido Trotter
    # we can remove exports also for a removed instance)
6301 3656b3af Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6302 9ac99fda Guido Trotter
6303 9ac99fda Guido Trotter
  def CheckPrereq(self):
6304 9ac99fda Guido Trotter
    """Check prerequisites.
6305 9ac99fda Guido Trotter
    """
6306 9ac99fda Guido Trotter
    pass
6307 9ac99fda Guido Trotter
6308 9ac99fda Guido Trotter
  def Exec(self, feedback_fn):
6309 9ac99fda Guido Trotter
    """Remove any export.
6310 9ac99fda Guido Trotter

6311 9ac99fda Guido Trotter
    """
6312 9ac99fda Guido Trotter
    instance_name = self.cfg.ExpandInstanceName(self.op.instance_name)
6313 9ac99fda Guido Trotter
    # If the instance was not found we'll try with the name that was passed in.
6314 9ac99fda Guido Trotter
    # This will only work if it was an FQDN, though.
6315 9ac99fda Guido Trotter
    fqdn_warn = False
6316 9ac99fda Guido Trotter
    if not instance_name:
6317 9ac99fda Guido Trotter
      fqdn_warn = True
6318 9ac99fda Guido Trotter
      instance_name = self.op.instance_name
6319 9ac99fda Guido Trotter
6320 72737a7f Iustin Pop
    exportlist = self.rpc.call_export_list(self.acquired_locks[
6321 72737a7f Iustin Pop
      locking.LEVEL_NODE])
6322 9ac99fda Guido Trotter
    found = False
6323 9ac99fda Guido Trotter
    for node in exportlist:
6324 781de953 Iustin Pop
      if exportlist[node].failed:
6325 25361b9a Iustin Pop
        self.LogWarning("Failed to query node %s, continuing" % node)
6326 781de953 Iustin Pop
        continue
6327 781de953 Iustin Pop
      if instance_name in exportlist[node].data:
6328 9ac99fda Guido Trotter
        found = True
6329 781de953 Iustin Pop
        result = self.rpc.call_export_remove(node, instance_name)
6330 781de953 Iustin Pop
        if result.failed or not result.data:
6331 9a4f63d1 Iustin Pop
          logging.error("Could not remove export for instance %s"
6332 9a4f63d1 Iustin Pop
                        " on node %s", instance_name, node)
6333 9ac99fda Guido Trotter
6334 9ac99fda Guido Trotter
    if fqdn_warn and not found:
6335 9ac99fda Guido Trotter
      feedback_fn("Export not found. If trying to remove an export belonging"
6336 9ac99fda Guido Trotter
                  " to a deleted instance please use its Fully Qualified"
6337 9ac99fda Guido Trotter
                  " Domain Name.")
6338 9ac99fda Guido Trotter
6339 9ac99fda Guido Trotter
6340 5c947f38 Iustin Pop
class TagsLU(NoHooksLU):
6341 5c947f38 Iustin Pop
  """Generic tags LU.
6342 5c947f38 Iustin Pop

6343 5c947f38 Iustin Pop
  This is an abstract class which is the parent of all the other tags LUs.
6344 5c947f38 Iustin Pop

6345 5c947f38 Iustin Pop
  """
6346 5c947f38 Iustin Pop
6347 8646adce Guido Trotter
  def ExpandNames(self):
6348 8646adce Guido Trotter
    self.needed_locks = {}
6349 8646adce Guido Trotter
    if self.op.kind == constants.TAG_NODE:
6350 5c947f38 Iustin Pop
      name = self.cfg.ExpandNodeName(self.op.name)
6351 5c947f38 Iustin Pop
      if name is None:
6352 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid node name (%s)" %
6353 3ecf6786 Iustin Pop
                                   (self.op.name,))
6354 5c947f38 Iustin Pop
      self.op.name = name
6355 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = name
6356 5c947f38 Iustin Pop
    elif self.op.kind == constants.TAG_INSTANCE:
6357 8f684e16 Iustin Pop
      name = self.cfg.ExpandInstanceName(self.op.name)
6358 5c947f38 Iustin Pop
      if name is None:
6359 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid instance name (%s)" %
6360 3ecf6786 Iustin Pop
                                   (self.op.name,))
6361 5c947f38 Iustin Pop
      self.op.name = name
6362 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = name
6363 8646adce Guido Trotter
6364 8646adce Guido Trotter
  def CheckPrereq(self):
6365 8646adce Guido Trotter
    """Check prerequisites.
6366 8646adce Guido Trotter

6367 8646adce Guido Trotter
    """
6368 8646adce Guido Trotter
    if self.op.kind == constants.TAG_CLUSTER:
6369 8646adce Guido Trotter
      self.target = self.cfg.GetClusterInfo()
6370 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_NODE:
6371 8646adce Guido Trotter
      self.target = self.cfg.GetNodeInfo(self.op.name)
6372 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_INSTANCE:
6373 8646adce Guido Trotter
      self.target = self.cfg.GetInstanceInfo(self.op.name)
6374 5c947f38 Iustin Pop
    else:
6375 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Wrong tag type requested (%s)" %
6376 3ecf6786 Iustin Pop
                                 str(self.op.kind))
6377 5c947f38 Iustin Pop
6378 5c947f38 Iustin Pop
6379 5c947f38 Iustin Pop
class LUGetTags(TagsLU):
6380 5c947f38 Iustin Pop
  """Returns the tags of a given object.
6381 5c947f38 Iustin Pop

6382 5c947f38 Iustin Pop
  """
6383 5c947f38 Iustin Pop
  _OP_REQP = ["kind", "name"]
6384 8646adce Guido Trotter
  REQ_BGL = False
6385 5c947f38 Iustin Pop
6386 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6387 5c947f38 Iustin Pop
    """Returns the tag list.
6388 5c947f38 Iustin Pop

6389 5c947f38 Iustin Pop
    """
6390 5d414478 Oleksiy Mishchenko
    return list(self.target.GetTags())
6391 5c947f38 Iustin Pop
6392 5c947f38 Iustin Pop
6393 73415719 Iustin Pop
class LUSearchTags(NoHooksLU):
6394 73415719 Iustin Pop
  """Searches the tags for a given pattern.
6395 73415719 Iustin Pop

6396 73415719 Iustin Pop
  """
6397 73415719 Iustin Pop
  _OP_REQP = ["pattern"]
6398 8646adce Guido Trotter
  REQ_BGL = False
6399 8646adce Guido Trotter
6400 8646adce Guido Trotter
  def ExpandNames(self):
6401 8646adce Guido Trotter
    self.needed_locks = {}
6402 73415719 Iustin Pop
6403 73415719 Iustin Pop
  def CheckPrereq(self):
6404 73415719 Iustin Pop
    """Check prerequisites.
6405 73415719 Iustin Pop

6406 73415719 Iustin Pop
    This checks the pattern passed for validity by compiling it.
6407 73415719 Iustin Pop

6408 73415719 Iustin Pop
    """
6409 73415719 Iustin Pop
    try:
6410 73415719 Iustin Pop
      self.re = re.compile(self.op.pattern)
6411 73415719 Iustin Pop
    except re.error, err:
6412 73415719 Iustin Pop
      raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
6413 73415719 Iustin Pop
                                 (self.op.pattern, err))
6414 73415719 Iustin Pop
6415 73415719 Iustin Pop
  def Exec(self, feedback_fn):
6416 73415719 Iustin Pop
    """Returns the tag list.
6417 73415719 Iustin Pop

6418 73415719 Iustin Pop
    """
6419 73415719 Iustin Pop
    cfg = self.cfg
6420 73415719 Iustin Pop
    tgts = [("/cluster", cfg.GetClusterInfo())]
6421 8646adce Guido Trotter
    ilist = cfg.GetAllInstancesInfo().values()
6422 73415719 Iustin Pop
    tgts.extend([("/instances/%s" % i.name, i) for i in ilist])
6423 8646adce Guido Trotter
    nlist = cfg.GetAllNodesInfo().values()
6424 73415719 Iustin Pop
    tgts.extend([("/nodes/%s" % n.name, n) for n in nlist])
6425 73415719 Iustin Pop
    results = []
6426 73415719 Iustin Pop
    for path, target in tgts:
6427 73415719 Iustin Pop
      for tag in target.GetTags():
6428 73415719 Iustin Pop
        if self.re.search(tag):
6429 73415719 Iustin Pop
          results.append((path, tag))
6430 73415719 Iustin Pop
    return results
6431 73415719 Iustin Pop
6432 73415719 Iustin Pop
6433 f27302fa Iustin Pop
class LUAddTags(TagsLU):
6434 5c947f38 Iustin Pop
  """Sets a tag on a given object.
6435 5c947f38 Iustin Pop

6436 5c947f38 Iustin Pop
  """
6437 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6438 8646adce Guido Trotter
  REQ_BGL = False
6439 5c947f38 Iustin Pop
6440 5c947f38 Iustin Pop
  def CheckPrereq(self):
6441 5c947f38 Iustin Pop
    """Check prerequisites.
6442 5c947f38 Iustin Pop

6443 5c947f38 Iustin Pop
    This checks the type and length of the tag name and value.
6444 5c947f38 Iustin Pop

6445 5c947f38 Iustin Pop
    """
6446 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6447 f27302fa Iustin Pop
    for tag in self.op.tags:
6448 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6449 5c947f38 Iustin Pop
6450 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6451 5c947f38 Iustin Pop
    """Sets the tag.
6452 5c947f38 Iustin Pop

6453 5c947f38 Iustin Pop
    """
6454 5c947f38 Iustin Pop
    try:
6455 f27302fa Iustin Pop
      for tag in self.op.tags:
6456 f27302fa Iustin Pop
        self.target.AddTag(tag)
6457 5c947f38 Iustin Pop
    except errors.TagError, err:
6458 3ecf6786 Iustin Pop
      raise errors.OpExecError("Error while setting tag: %s" % str(err))
6459 5c947f38 Iustin Pop
    try:
6460 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6461 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6462 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6463 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6464 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6465 5c947f38 Iustin Pop
6466 5c947f38 Iustin Pop
6467 f27302fa Iustin Pop
class LUDelTags(TagsLU):
6468 f27302fa Iustin Pop
  """Delete a list of tags from a given object.
6469 5c947f38 Iustin Pop

6470 5c947f38 Iustin Pop
  """
6471 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6472 8646adce Guido Trotter
  REQ_BGL = False
6473 5c947f38 Iustin Pop
6474 5c947f38 Iustin Pop
  def CheckPrereq(self):
6475 5c947f38 Iustin Pop
    """Check prerequisites.
6476 5c947f38 Iustin Pop

6477 5c947f38 Iustin Pop
    This checks that we have the given tag.
6478 5c947f38 Iustin Pop

6479 5c947f38 Iustin Pop
    """
6480 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6481 f27302fa Iustin Pop
    for tag in self.op.tags:
6482 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6483 f27302fa Iustin Pop
    del_tags = frozenset(self.op.tags)
6484 f27302fa Iustin Pop
    cur_tags = self.target.GetTags()
6485 f27302fa Iustin Pop
    if not del_tags <= cur_tags:
6486 f27302fa Iustin Pop
      diff_tags = del_tags - cur_tags
6487 f27302fa Iustin Pop
      diff_names = ["'%s'" % tag for tag in diff_tags]
6488 f27302fa Iustin Pop
      diff_names.sort()
6489 f27302fa Iustin Pop
      raise errors.OpPrereqError("Tag(s) %s not found" %
6490 f27302fa Iustin Pop
                                 (",".join(diff_names)))
6491 5c947f38 Iustin Pop
6492 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6493 5c947f38 Iustin Pop
    """Remove the tag from the object.
6494 5c947f38 Iustin Pop

6495 5c947f38 Iustin Pop
    """
6496 f27302fa Iustin Pop
    for tag in self.op.tags:
6497 f27302fa Iustin Pop
      self.target.RemoveTag(tag)
6498 5c947f38 Iustin Pop
    try:
6499 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6500 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6501 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6502 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6503 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6504 06009e27 Iustin Pop
6505 0eed6e61 Guido Trotter
6506 06009e27 Iustin Pop
class LUTestDelay(NoHooksLU):
6507 06009e27 Iustin Pop
  """Sleep for a specified amount of time.
6508 06009e27 Iustin Pop

6509 0b097284 Guido Trotter
  This LU sleeps on the master and/or nodes for a specified amount of
6510 06009e27 Iustin Pop
  time.
6511 06009e27 Iustin Pop

6512 06009e27 Iustin Pop
  """
6513 06009e27 Iustin Pop
  _OP_REQP = ["duration", "on_master", "on_nodes"]
6514 fbe9022f Guido Trotter
  REQ_BGL = False
6515 06009e27 Iustin Pop
6516 fbe9022f Guido Trotter
  def ExpandNames(self):
6517 fbe9022f Guido Trotter
    """Expand names and set required locks.
6518 06009e27 Iustin Pop

6519 fbe9022f Guido Trotter
    This expands the node list, if any.
6520 06009e27 Iustin Pop

6521 06009e27 Iustin Pop
    """
6522 fbe9022f Guido Trotter
    self.needed_locks = {}
6523 06009e27 Iustin Pop
    if self.op.on_nodes:
6524 fbe9022f Guido Trotter
      # _GetWantedNodes can be used here, but is not always appropriate to use
6525 fbe9022f Guido Trotter
      # this way in ExpandNames. Check LogicalUnit.ExpandNames docstring for
6526 fbe9022f Guido Trotter
      # more information.
6527 06009e27 Iustin Pop
      self.op.on_nodes = _GetWantedNodes(self, self.op.on_nodes)
6528 fbe9022f Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = self.op.on_nodes
6529 fbe9022f Guido Trotter
6530 fbe9022f Guido Trotter
  def CheckPrereq(self):
6531 fbe9022f Guido Trotter
    """Check prerequisites.
6532 fbe9022f Guido Trotter

6533 fbe9022f Guido Trotter
    """
6534 06009e27 Iustin Pop
6535 06009e27 Iustin Pop
  def Exec(self, feedback_fn):
6536 06009e27 Iustin Pop
    """Do the actual sleep.
6537 06009e27 Iustin Pop

6538 06009e27 Iustin Pop
    """
6539 06009e27 Iustin Pop
    if self.op.on_master:
6540 06009e27 Iustin Pop
      if not utils.TestDelay(self.op.duration):
6541 06009e27 Iustin Pop
        raise errors.OpExecError("Error during master delay test")
6542 06009e27 Iustin Pop
    if self.op.on_nodes:
6543 72737a7f Iustin Pop
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
6544 06009e27 Iustin Pop
      if not result:
6545 06009e27 Iustin Pop
        raise errors.OpExecError("Complete failure from rpc call")
6546 06009e27 Iustin Pop
      for node, node_result in result.items():
6547 781de953 Iustin Pop
        node_result.Raise()
6548 781de953 Iustin Pop
        if not node_result.data:
6549 06009e27 Iustin Pop
          raise errors.OpExecError("Failure during rpc call to node %s,"
6550 781de953 Iustin Pop
                                   " result: %s" % (node, node_result.data))
6551 d61df03e Iustin Pop
6552 d61df03e Iustin Pop
6553 d1c2dd75 Iustin Pop
class IAllocator(object):
6554 d1c2dd75 Iustin Pop
  """IAllocator framework.
6555 d61df03e Iustin Pop

6556 d1c2dd75 Iustin Pop
  An IAllocator instance has three sets of attributes:
6557 d6a02168 Michael Hanselmann
    - cfg that is needed to query the cluster
6558 d1c2dd75 Iustin Pop
    - input data (all members of the _KEYS class attribute are required)
6559 d1c2dd75 Iustin Pop
    - four buffer attributes (in|out_data|text), that represent the
6560 d1c2dd75 Iustin Pop
      input (to the external script) in text and data structure format,
6561 d1c2dd75 Iustin Pop
      and the output from it, again in two formats
6562 d1c2dd75 Iustin Pop
    - the result variables from the script (success, info, nodes) for
6563 d1c2dd75 Iustin Pop
      easy usage
6564 d61df03e Iustin Pop

6565 d61df03e Iustin Pop
  """
6566 29859cb7 Iustin Pop
  _ALLO_KEYS = [
6567 d1c2dd75 Iustin Pop
    "mem_size", "disks", "disk_template",
6568 8cc7e742 Guido Trotter
    "os", "tags", "nics", "vcpus", "hypervisor",
6569 d1c2dd75 Iustin Pop
    ]
6570 29859cb7 Iustin Pop
  _RELO_KEYS = [
6571 29859cb7 Iustin Pop
    "relocate_from",
6572 29859cb7 Iustin Pop
    ]
6573 d1c2dd75 Iustin Pop
6574 72737a7f Iustin Pop
  def __init__(self, lu, mode, name, **kwargs):
6575 72737a7f Iustin Pop
    self.lu = lu
6576 d1c2dd75 Iustin Pop
    # init buffer variables
6577 d1c2dd75 Iustin Pop
    self.in_text = self.out_text = self.in_data = self.out_data = None
6578 d1c2dd75 Iustin Pop
    # init all input fields so that pylint is happy
6579 29859cb7 Iustin Pop
    self.mode = mode
6580 29859cb7 Iustin Pop
    self.name = name
6581 d1c2dd75 Iustin Pop
    self.mem_size = self.disks = self.disk_template = None
6582 d1c2dd75 Iustin Pop
    self.os = self.tags = self.nics = self.vcpus = None
6583 a0add446 Iustin Pop
    self.hypervisor = None
6584 29859cb7 Iustin Pop
    self.relocate_from = None
6585 27579978 Iustin Pop
    # computed fields
6586 27579978 Iustin Pop
    self.required_nodes = None
6587 d1c2dd75 Iustin Pop
    # init result fields
6588 d1c2dd75 Iustin Pop
    self.success = self.info = self.nodes = None
6589 29859cb7 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6590 29859cb7 Iustin Pop
      keyset = self._ALLO_KEYS
6591 29859cb7 Iustin Pop
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6592 29859cb7 Iustin Pop
      keyset = self._RELO_KEYS
6593 29859cb7 Iustin Pop
    else:
6594 29859cb7 Iustin Pop
      raise errors.ProgrammerError("Unknown mode '%s' passed to the"
6595 29859cb7 Iustin Pop
                                   " IAllocator" % self.mode)
6596 d1c2dd75 Iustin Pop
    for key in kwargs:
6597 29859cb7 Iustin Pop
      if key not in keyset:
6598 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Invalid input parameter '%s' to"
6599 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6600 d1c2dd75 Iustin Pop
      setattr(self, key, kwargs[key])
6601 29859cb7 Iustin Pop
    for key in keyset:
6602 d1c2dd75 Iustin Pop
      if key not in kwargs:
6603 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Missing input parameter '%s' to"
6604 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6605 d1c2dd75 Iustin Pop
    self._BuildInputData()
6606 d1c2dd75 Iustin Pop
6607 d1c2dd75 Iustin Pop
  def _ComputeClusterData(self):
6608 d1c2dd75 Iustin Pop
    """Compute the generic allocator input data.
6609 d1c2dd75 Iustin Pop

6610 d1c2dd75 Iustin Pop
    This is the data that is independent of the actual operation.
6611 d1c2dd75 Iustin Pop

6612 d1c2dd75 Iustin Pop
    """
6613 72737a7f Iustin Pop
    cfg = self.lu.cfg
6614 e69d05fd Iustin Pop
    cluster_info = cfg.GetClusterInfo()
6615 d1c2dd75 Iustin Pop
    # cluster data
6616 d1c2dd75 Iustin Pop
    data = {
6617 77031881 Iustin Pop
      "version": constants.IALLOCATOR_VERSION,
6618 72737a7f Iustin Pop
      "cluster_name": cfg.GetClusterName(),
6619 e69d05fd Iustin Pop
      "cluster_tags": list(cluster_info.GetTags()),
6620 1325da74 Iustin Pop
      "enabled_hypervisors": list(cluster_info.enabled_hypervisors),
6621 d1c2dd75 Iustin Pop
      # we don't have job IDs
6622 d61df03e Iustin Pop
      }
6623 b57e9819 Guido Trotter
    iinfo = cfg.GetAllInstancesInfo().values()
6624 b57e9819 Guido Trotter
    i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
6625 6286519f Iustin Pop
6626 d1c2dd75 Iustin Pop
    # node data
6627 d1c2dd75 Iustin Pop
    node_results = {}
6628 d1c2dd75 Iustin Pop
    node_list = cfg.GetNodeList()
6629 8cc7e742 Guido Trotter
6630 8cc7e742 Guido Trotter
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6631 a0add446 Iustin Pop
      hypervisor_name = self.hypervisor
6632 8cc7e742 Guido Trotter
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6633 a0add446 Iustin Pop
      hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
6634 8cc7e742 Guido Trotter
6635 72737a7f Iustin Pop
    node_data = self.lu.rpc.call_node_info(node_list, cfg.GetVGName(),
6636 a0add446 Iustin Pop
                                           hypervisor_name)
6637 18640d69 Guido Trotter
    node_iinfo = self.lu.rpc.call_all_instances_info(node_list,
6638 18640d69 Guido Trotter
                       cluster_info.enabled_hypervisors)
6639 1325da74 Iustin Pop
    for nname, nresult in node_data.items():
6640 1325da74 Iustin Pop
      # first fill in static (config-based) values
6641 d1c2dd75 Iustin Pop
      ninfo = cfg.GetNodeInfo(nname)
6642 d1c2dd75 Iustin Pop
      pnr = {
6643 d1c2dd75 Iustin Pop
        "tags": list(ninfo.GetTags()),
6644 d1c2dd75 Iustin Pop
        "primary_ip": ninfo.primary_ip,
6645 d1c2dd75 Iustin Pop
        "secondary_ip": ninfo.secondary_ip,
6646 fc0fe88c Iustin Pop
        "offline": ninfo.offline,
6647 0b2454b9 Iustin Pop
        "drained": ninfo.drained,
6648 1325da74 Iustin Pop
        "master_candidate": ninfo.master_candidate,
6649 d1c2dd75 Iustin Pop
        }
6650 1325da74 Iustin Pop
6651 1325da74 Iustin Pop
      if not ninfo.offline:
6652 1325da74 Iustin Pop
        nresult.Raise()
6653 1325da74 Iustin Pop
        if not isinstance(nresult.data, dict):
6654 1325da74 Iustin Pop
          raise errors.OpExecError("Can't get data for node %s" % nname)
6655 1325da74 Iustin Pop
        remote_info = nresult.data
6656 1325da74 Iustin Pop
        for attr in ['memory_total', 'memory_free', 'memory_dom0',
6657 1325da74 Iustin Pop
                     'vg_size', 'vg_free', 'cpu_total']:
6658 1325da74 Iustin Pop
          if attr not in remote_info:
6659 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' didn't return attribute"
6660 1325da74 Iustin Pop
                                     " '%s'" % (nname, attr))
6661 1325da74 Iustin Pop
          try:
6662 1325da74 Iustin Pop
            remote_info[attr] = int(remote_info[attr])
6663 1325da74 Iustin Pop
          except ValueError, err:
6664 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' returned invalid value"
6665 1325da74 Iustin Pop
                                     " for '%s': %s" % (nname, attr, err))
6666 1325da74 Iustin Pop
        # compute memory used by primary instances
6667 1325da74 Iustin Pop
        i_p_mem = i_p_up_mem = 0
6668 1325da74 Iustin Pop
        for iinfo, beinfo in i_list:
6669 1325da74 Iustin Pop
          if iinfo.primary_node == nname:
6670 1325da74 Iustin Pop
            i_p_mem += beinfo[constants.BE_MEMORY]
6671 1325da74 Iustin Pop
            if iinfo.name not in node_iinfo[nname].data:
6672 1325da74 Iustin Pop
              i_used_mem = 0
6673 1325da74 Iustin Pop
            else:
6674 1325da74 Iustin Pop
              i_used_mem = int(node_iinfo[nname].data[iinfo.name]['memory'])
6675 1325da74 Iustin Pop
            i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
6676 1325da74 Iustin Pop
            remote_info['memory_free'] -= max(0, i_mem_diff)
6677 1325da74 Iustin Pop
6678 1325da74 Iustin Pop
            if iinfo.admin_up:
6679 1325da74 Iustin Pop
              i_p_up_mem += beinfo[constants.BE_MEMORY]
6680 1325da74 Iustin Pop
6681 1325da74 Iustin Pop
        # compute memory used by instances
6682 1325da74 Iustin Pop
        pnr_dyn = {
6683 1325da74 Iustin Pop
          "total_memory": remote_info['memory_total'],
6684 1325da74 Iustin Pop
          "reserved_memory": remote_info['memory_dom0'],
6685 1325da74 Iustin Pop
          "free_memory": remote_info['memory_free'],
6686 1325da74 Iustin Pop
          "total_disk": remote_info['vg_size'],
6687 1325da74 Iustin Pop
          "free_disk": remote_info['vg_free'],
6688 1325da74 Iustin Pop
          "total_cpus": remote_info['cpu_total'],
6689 1325da74 Iustin Pop
          "i_pri_memory": i_p_mem,
6690 1325da74 Iustin Pop
          "i_pri_up_memory": i_p_up_mem,
6691 1325da74 Iustin Pop
          }
6692 1325da74 Iustin Pop
        pnr.update(pnr_dyn)
6693 1325da74 Iustin Pop
6694 d1c2dd75 Iustin Pop
      node_results[nname] = pnr
6695 d1c2dd75 Iustin Pop
    data["nodes"] = node_results
6696 d1c2dd75 Iustin Pop
6697 d1c2dd75 Iustin Pop
    # instance data
6698 d1c2dd75 Iustin Pop
    instance_data = {}
6699 338e51e8 Iustin Pop
    for iinfo, beinfo in i_list:
6700 d1c2dd75 Iustin Pop
      nic_data = [{"mac": n.mac, "ip": n.ip, "bridge": n.bridge}
6701 d1c2dd75 Iustin Pop
                  for n in iinfo.nics]
6702 d1c2dd75 Iustin Pop
      pir = {
6703 d1c2dd75 Iustin Pop
        "tags": list(iinfo.GetTags()),
6704 1325da74 Iustin Pop
        "admin_up": iinfo.admin_up,
6705 338e51e8 Iustin Pop
        "vcpus": beinfo[constants.BE_VCPUS],
6706 338e51e8 Iustin Pop
        "memory": beinfo[constants.BE_MEMORY],
6707 d1c2dd75 Iustin Pop
        "os": iinfo.os,
6708 1325da74 Iustin Pop
        "nodes": [iinfo.primary_node] + list(iinfo.secondary_nodes),
6709 d1c2dd75 Iustin Pop
        "nics": nic_data,
6710 1325da74 Iustin Pop
        "disks": [{"size": dsk.size, "mode": dsk.mode} for dsk in iinfo.disks],
6711 d1c2dd75 Iustin Pop
        "disk_template": iinfo.disk_template,
6712 e69d05fd Iustin Pop
        "hypervisor": iinfo.hypervisor,
6713 d1c2dd75 Iustin Pop
        }
6714 88ae4f85 Iustin Pop
      pir["disk_space_total"] = _ComputeDiskSize(iinfo.disk_template,
6715 88ae4f85 Iustin Pop
                                                 pir["disks"])
6716 768f0a80 Iustin Pop
      instance_data[iinfo.name] = pir
6717 d61df03e Iustin Pop
6718 d1c2dd75 Iustin Pop
    data["instances"] = instance_data
6719 d61df03e Iustin Pop
6720 d1c2dd75 Iustin Pop
    self.in_data = data
6721 d61df03e Iustin Pop
6722 d1c2dd75 Iustin Pop
  def _AddNewInstance(self):
6723 d1c2dd75 Iustin Pop
    """Add new instance data to allocator structure.
6724 d61df03e Iustin Pop

6725 d1c2dd75 Iustin Pop
    This in combination with _AllocatorGetClusterData will create the
6726 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6727 d61df03e Iustin Pop

6728 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6729 d1c2dd75 Iustin Pop
    done.
6730 d61df03e Iustin Pop

6731 d1c2dd75 Iustin Pop
    """
6732 d1c2dd75 Iustin Pop
    data = self.in_data
6733 d1c2dd75 Iustin Pop
6734 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(self.disk_template, self.disks)
6735 d1c2dd75 Iustin Pop
6736 27579978 Iustin Pop
    if self.disk_template in constants.DTS_NET_MIRROR:
6737 27579978 Iustin Pop
      self.required_nodes = 2
6738 27579978 Iustin Pop
    else:
6739 27579978 Iustin Pop
      self.required_nodes = 1
6740 d1c2dd75 Iustin Pop
    request = {
6741 d1c2dd75 Iustin Pop
      "type": "allocate",
6742 d1c2dd75 Iustin Pop
      "name": self.name,
6743 d1c2dd75 Iustin Pop
      "disk_template": self.disk_template,
6744 d1c2dd75 Iustin Pop
      "tags": self.tags,
6745 d1c2dd75 Iustin Pop
      "os": self.os,
6746 d1c2dd75 Iustin Pop
      "vcpus": self.vcpus,
6747 d1c2dd75 Iustin Pop
      "memory": self.mem_size,
6748 d1c2dd75 Iustin Pop
      "disks": self.disks,
6749 d1c2dd75 Iustin Pop
      "disk_space_total": disk_space,
6750 d1c2dd75 Iustin Pop
      "nics": self.nics,
6751 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
6752 d1c2dd75 Iustin Pop
      }
6753 d1c2dd75 Iustin Pop
    data["request"] = request
6754 298fe380 Iustin Pop
6755 d1c2dd75 Iustin Pop
  def _AddRelocateInstance(self):
6756 d1c2dd75 Iustin Pop
    """Add relocate instance data to allocator structure.
6757 298fe380 Iustin Pop

6758 d1c2dd75 Iustin Pop
    This in combination with _IAllocatorGetClusterData will create the
6759 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6760 d61df03e Iustin Pop

6761 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6762 d1c2dd75 Iustin Pop
    done.
6763 d61df03e Iustin Pop

6764 d1c2dd75 Iustin Pop
    """
6765 72737a7f Iustin Pop
    instance = self.lu.cfg.GetInstanceInfo(self.name)
6766 27579978 Iustin Pop
    if instance is None:
6767 27579978 Iustin Pop
      raise errors.ProgrammerError("Unknown instance '%s' passed to"
6768 27579978 Iustin Pop
                                   " IAllocator" % self.name)
6769 27579978 Iustin Pop
6770 27579978 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
6771 27579978 Iustin Pop
      raise errors.OpPrereqError("Can't relocate non-mirrored instances")
6772 27579978 Iustin Pop
6773 2a139bb0 Iustin Pop
    if len(instance.secondary_nodes) != 1:
6774 2a139bb0 Iustin Pop
      raise errors.OpPrereqError("Instance has not exactly one secondary node")
6775 2a139bb0 Iustin Pop
6776 27579978 Iustin Pop
    self.required_nodes = 1
6777 dafc7302 Guido Trotter
    disk_sizes = [{'size': disk.size} for disk in instance.disks]
6778 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(instance.disk_template, disk_sizes)
6779 27579978 Iustin Pop
6780 d1c2dd75 Iustin Pop
    request = {
6781 2a139bb0 Iustin Pop
      "type": "relocate",
6782 d1c2dd75 Iustin Pop
      "name": self.name,
6783 27579978 Iustin Pop
      "disk_space_total": disk_space,
6784 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
6785 29859cb7 Iustin Pop
      "relocate_from": self.relocate_from,
6786 d1c2dd75 Iustin Pop
      }
6787 27579978 Iustin Pop
    self.in_data["request"] = request
6788 d61df03e Iustin Pop
6789 d1c2dd75 Iustin Pop
  def _BuildInputData(self):
6790 d1c2dd75 Iustin Pop
    """Build input data structures.
6791 d61df03e Iustin Pop

6792 d1c2dd75 Iustin Pop
    """
6793 d1c2dd75 Iustin Pop
    self._ComputeClusterData()
6794 d61df03e Iustin Pop
6795 d1c2dd75 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6796 d1c2dd75 Iustin Pop
      self._AddNewInstance()
6797 d1c2dd75 Iustin Pop
    else:
6798 d1c2dd75 Iustin Pop
      self._AddRelocateInstance()
6799 d61df03e Iustin Pop
6800 d1c2dd75 Iustin Pop
    self.in_text = serializer.Dump(self.in_data)
6801 d61df03e Iustin Pop
6802 72737a7f Iustin Pop
  def Run(self, name, validate=True, call_fn=None):
6803 d1c2dd75 Iustin Pop
    """Run an instance allocator and return the results.
6804 298fe380 Iustin Pop

6805 d1c2dd75 Iustin Pop
    """
6806 72737a7f Iustin Pop
    if call_fn is None:
6807 72737a7f Iustin Pop
      call_fn = self.lu.rpc.call_iallocator_runner
6808 d1c2dd75 Iustin Pop
    data = self.in_text
6809 298fe380 Iustin Pop
6810 72737a7f Iustin Pop
    result = call_fn(self.lu.cfg.GetMasterNode(), name, self.in_text)
6811 781de953 Iustin Pop
    result.Raise()
6812 298fe380 Iustin Pop
6813 781de953 Iustin Pop
    if not isinstance(result.data, (list, tuple)) or len(result.data) != 4:
6814 8d528b7c Iustin Pop
      raise errors.OpExecError("Invalid result from master iallocator runner")
6815 8d528b7c Iustin Pop
6816 781de953 Iustin Pop
    rcode, stdout, stderr, fail = result.data
6817 8d528b7c Iustin Pop
6818 8d528b7c Iustin Pop
    if rcode == constants.IARUN_NOTFOUND:
6819 8d528b7c Iustin Pop
      raise errors.OpExecError("Can't find allocator '%s'" % name)
6820 8d528b7c Iustin Pop
    elif rcode == constants.IARUN_FAILURE:
6821 38206f3c Iustin Pop
      raise errors.OpExecError("Instance allocator call failed: %s,"
6822 38206f3c Iustin Pop
                               " output: %s" % (fail, stdout+stderr))
6823 8d528b7c Iustin Pop
    self.out_text = stdout
6824 d1c2dd75 Iustin Pop
    if validate:
6825 d1c2dd75 Iustin Pop
      self._ValidateResult()
6826 298fe380 Iustin Pop
6827 d1c2dd75 Iustin Pop
  def _ValidateResult(self):
6828 d1c2dd75 Iustin Pop
    """Process the allocator results.
6829 538475ca Iustin Pop

6830 d1c2dd75 Iustin Pop
    This will process and if successful save the result in
6831 d1c2dd75 Iustin Pop
    self.out_data and the other parameters.
6832 538475ca Iustin Pop

6833 d1c2dd75 Iustin Pop
    """
6834 d1c2dd75 Iustin Pop
    try:
6835 d1c2dd75 Iustin Pop
      rdict = serializer.Load(self.out_text)
6836 d1c2dd75 Iustin Pop
    except Exception, err:
6837 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: %s" % str(err))
6838 d1c2dd75 Iustin Pop
6839 d1c2dd75 Iustin Pop
    if not isinstance(rdict, dict):
6840 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: not a dict")
6841 538475ca Iustin Pop
6842 d1c2dd75 Iustin Pop
    for key in "success", "info", "nodes":
6843 d1c2dd75 Iustin Pop
      if key not in rdict:
6844 d1c2dd75 Iustin Pop
        raise errors.OpExecError("Can't parse iallocator results:"
6845 d1c2dd75 Iustin Pop
                                 " missing key '%s'" % key)
6846 d1c2dd75 Iustin Pop
      setattr(self, key, rdict[key])
6847 538475ca Iustin Pop
6848 d1c2dd75 Iustin Pop
    if not isinstance(rdict["nodes"], list):
6849 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: 'nodes' key"
6850 d1c2dd75 Iustin Pop
                               " is not a list")
6851 d1c2dd75 Iustin Pop
    self.out_data = rdict
6852 538475ca Iustin Pop
6853 538475ca Iustin Pop
6854 d61df03e Iustin Pop
class LUTestAllocator(NoHooksLU):
6855 d61df03e Iustin Pop
  """Run allocator tests.
6856 d61df03e Iustin Pop

6857 d61df03e Iustin Pop
  This LU runs the allocator tests
6858 d61df03e Iustin Pop

6859 d61df03e Iustin Pop
  """
6860 d61df03e Iustin Pop
  _OP_REQP = ["direction", "mode", "name"]
6861 d61df03e Iustin Pop
6862 d61df03e Iustin Pop
  def CheckPrereq(self):
6863 d61df03e Iustin Pop
    """Check prerequisites.
6864 d61df03e Iustin Pop

6865 d61df03e Iustin Pop
    This checks the opcode parameters depending on the director and mode test.
6866 d61df03e Iustin Pop

6867 d61df03e Iustin Pop
    """
6868 298fe380 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
6869 d61df03e Iustin Pop
      for attr in ["name", "mem_size", "disks", "disk_template",
6870 d61df03e Iustin Pop
                   "os", "tags", "nics", "vcpus"]:
6871 d61df03e Iustin Pop
        if not hasattr(self.op, attr):
6872 d61df03e Iustin Pop
          raise errors.OpPrereqError("Missing attribute '%s' on opcode input" %
6873 d61df03e Iustin Pop
                                     attr)
6874 d61df03e Iustin Pop
      iname = self.cfg.ExpandInstanceName(self.op.name)
6875 d61df03e Iustin Pop
      if iname is not None:
6876 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' already in the cluster" %
6877 d61df03e Iustin Pop
                                   iname)
6878 d61df03e Iustin Pop
      if not isinstance(self.op.nics, list):
6879 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'nics'")
6880 d61df03e Iustin Pop
      for row in self.op.nics:
6881 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
6882 d61df03e Iustin Pop
            "mac" not in row or
6883 d61df03e Iustin Pop
            "ip" not in row or
6884 d61df03e Iustin Pop
            "bridge" not in row):
6885 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
6886 d61df03e Iustin Pop
                                     " 'nics' parameter")
6887 d61df03e Iustin Pop
      if not isinstance(self.op.disks, list):
6888 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'disks'")
6889 d61df03e Iustin Pop
      for row in self.op.disks:
6890 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
6891 d61df03e Iustin Pop
            "size" not in row or
6892 d61df03e Iustin Pop
            not isinstance(row["size"], int) or
6893 d61df03e Iustin Pop
            "mode" not in row or
6894 d61df03e Iustin Pop
            row["mode"] not in ['r', 'w']):
6895 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
6896 d61df03e Iustin Pop
                                     " 'disks' parameter")
6897 8901997e Iustin Pop
      if not hasattr(self.op, "hypervisor") or self.op.hypervisor is None:
6898 8cc7e742 Guido Trotter
        self.op.hypervisor = self.cfg.GetHypervisorType()
6899 298fe380 Iustin Pop
    elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
6900 d61df03e Iustin Pop
      if not hasattr(self.op, "name"):
6901 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing attribute 'name' on opcode input")
6902 d61df03e Iustin Pop
      fname = self.cfg.ExpandInstanceName(self.op.name)
6903 d61df03e Iustin Pop
      if fname is None:
6904 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' not found for relocation" %
6905 d61df03e Iustin Pop
                                   self.op.name)
6906 d61df03e Iustin Pop
      self.op.name = fname
6907 29859cb7 Iustin Pop
      self.relocate_from = self.cfg.GetInstanceInfo(fname).secondary_nodes
6908 d61df03e Iustin Pop
    else:
6909 d61df03e Iustin Pop
      raise errors.OpPrereqError("Invalid test allocator mode '%s'" %
6910 d61df03e Iustin Pop
                                 self.op.mode)
6911 d61df03e Iustin Pop
6912 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_OUT:
6913 298fe380 Iustin Pop
      if not hasattr(self.op, "allocator") or self.op.allocator is None:
6914 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing allocator name")
6915 298fe380 Iustin Pop
    elif self.op.direction != constants.IALLOCATOR_DIR_IN:
6916 d61df03e Iustin Pop
      raise errors.OpPrereqError("Wrong allocator test '%s'" %
6917 d61df03e Iustin Pop
                                 self.op.direction)
6918 d61df03e Iustin Pop
6919 d61df03e Iustin Pop
  def Exec(self, feedback_fn):
6920 d61df03e Iustin Pop
    """Run the allocator test.
6921 d61df03e Iustin Pop

6922 d61df03e Iustin Pop
    """
6923 29859cb7 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
6924 72737a7f Iustin Pop
      ial = IAllocator(self,
6925 29859cb7 Iustin Pop
                       mode=self.op.mode,
6926 29859cb7 Iustin Pop
                       name=self.op.name,
6927 29859cb7 Iustin Pop
                       mem_size=self.op.mem_size,
6928 29859cb7 Iustin Pop
                       disks=self.op.disks,
6929 29859cb7 Iustin Pop
                       disk_template=self.op.disk_template,
6930 29859cb7 Iustin Pop
                       os=self.op.os,
6931 29859cb7 Iustin Pop
                       tags=self.op.tags,
6932 29859cb7 Iustin Pop
                       nics=self.op.nics,
6933 29859cb7 Iustin Pop
                       vcpus=self.op.vcpus,
6934 8cc7e742 Guido Trotter
                       hypervisor=self.op.hypervisor,
6935 29859cb7 Iustin Pop
                       )
6936 29859cb7 Iustin Pop
    else:
6937 72737a7f Iustin Pop
      ial = IAllocator(self,
6938 29859cb7 Iustin Pop
                       mode=self.op.mode,
6939 29859cb7 Iustin Pop
                       name=self.op.name,
6940 29859cb7 Iustin Pop
                       relocate_from=list(self.relocate_from),
6941 29859cb7 Iustin Pop
                       )
6942 d61df03e Iustin Pop
6943 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_IN:
6944 d1c2dd75 Iustin Pop
      result = ial.in_text
6945 298fe380 Iustin Pop
    else:
6946 d1c2dd75 Iustin Pop
      ial.Run(self.op.allocator, validate=False)
6947 d1c2dd75 Iustin Pop
      result = ial.out_text
6948 298fe380 Iustin Pop
    return result