Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 295728df

History | View | Annotate | Download (237.3 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 396e1b78 Michael Hanselmann
                          memory, vcpus, nics):
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 e4376078 Iustin Pop
  @rtype: dict
480 e4376078 Iustin Pop
  @return: the hook environment for this instance
481 ecb215b5 Michael Hanselmann

482 396e1b78 Michael Hanselmann
  """
483 0d68c45d Iustin Pop
  if status:
484 0d68c45d Iustin Pop
    str_status = "up"
485 0d68c45d Iustin Pop
  else:
486 0d68c45d Iustin Pop
    str_status = "down"
487 396e1b78 Michael Hanselmann
  env = {
488 0e137c28 Iustin Pop
    "OP_TARGET": name,
489 396e1b78 Michael Hanselmann
    "INSTANCE_NAME": name,
490 396e1b78 Michael Hanselmann
    "INSTANCE_PRIMARY": primary_node,
491 396e1b78 Michael Hanselmann
    "INSTANCE_SECONDARIES": " ".join(secondary_nodes),
492 ecb215b5 Michael Hanselmann
    "INSTANCE_OS_TYPE": os_type,
493 0d68c45d Iustin Pop
    "INSTANCE_STATUS": str_status,
494 396e1b78 Michael Hanselmann
    "INSTANCE_MEMORY": memory,
495 396e1b78 Michael Hanselmann
    "INSTANCE_VCPUS": vcpus,
496 396e1b78 Michael Hanselmann
  }
497 396e1b78 Michael Hanselmann
498 396e1b78 Michael Hanselmann
  if nics:
499 396e1b78 Michael Hanselmann
    nic_count = len(nics)
500 53e4e875 Guido Trotter
    for idx, (ip, bridge, mac) in enumerate(nics):
501 396e1b78 Michael Hanselmann
      if ip is None:
502 396e1b78 Michael Hanselmann
        ip = ""
503 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_IP" % idx] = ip
504 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_BRIDGE" % idx] = bridge
505 53e4e875 Guido Trotter
      env["INSTANCE_NIC%d_HWADDR" % idx] = mac
506 396e1b78 Michael Hanselmann
  else:
507 396e1b78 Michael Hanselmann
    nic_count = 0
508 396e1b78 Michael Hanselmann
509 396e1b78 Michael Hanselmann
  env["INSTANCE_NIC_COUNT"] = nic_count
510 396e1b78 Michael Hanselmann
511 396e1b78 Michael Hanselmann
  return env
512 396e1b78 Michael Hanselmann
513 396e1b78 Michael Hanselmann
514 338e51e8 Iustin Pop
def _BuildInstanceHookEnvByObject(lu, instance, override=None):
515 ecb215b5 Michael Hanselmann
  """Builds instance related env variables for hooks from an object.
516 ecb215b5 Michael Hanselmann

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

528 ecb215b5 Michael Hanselmann
  """
529 338e51e8 Iustin Pop
  bep = lu.cfg.GetClusterInfo().FillBE(instance)
530 396e1b78 Michael Hanselmann
  args = {
531 396e1b78 Michael Hanselmann
    'name': instance.name,
532 396e1b78 Michael Hanselmann
    'primary_node': instance.primary_node,
533 396e1b78 Michael Hanselmann
    'secondary_nodes': instance.secondary_nodes,
534 ecb215b5 Michael Hanselmann
    'os_type': instance.os,
535 0d68c45d Iustin Pop
    'status': instance.admin_up,
536 338e51e8 Iustin Pop
    'memory': bep[constants.BE_MEMORY],
537 338e51e8 Iustin Pop
    'vcpus': bep[constants.BE_VCPUS],
538 53e4e875 Guido Trotter
    'nics': [(nic.ip, nic.bridge, nic.mac) for nic in instance.nics],
539 396e1b78 Michael Hanselmann
  }
540 396e1b78 Michael Hanselmann
  if override:
541 396e1b78 Michael Hanselmann
    args.update(override)
542 396e1b78 Michael Hanselmann
  return _BuildInstanceHookEnv(**args)
543 396e1b78 Michael Hanselmann
544 396e1b78 Michael Hanselmann
545 ec0292f1 Iustin Pop
def _AdjustCandidatePool(lu):
546 ec0292f1 Iustin Pop
  """Adjust the candidate pool after node operations.
547 ec0292f1 Iustin Pop

548 ec0292f1 Iustin Pop
  """
549 ec0292f1 Iustin Pop
  mod_list = lu.cfg.MaintainCandidatePool()
550 ec0292f1 Iustin Pop
  if mod_list:
551 ec0292f1 Iustin Pop
    lu.LogInfo("Promoted nodes to master candidate role: %s",
552 ee513a66 Iustin Pop
               ", ".join(node.name for node in mod_list))
553 ec0292f1 Iustin Pop
    for name in mod_list:
554 ec0292f1 Iustin Pop
      lu.context.ReaddNode(name)
555 ec0292f1 Iustin Pop
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
556 ec0292f1 Iustin Pop
  if mc_now > mc_max:
557 ec0292f1 Iustin Pop
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
558 ec0292f1 Iustin Pop
               (mc_now, mc_max))
559 ec0292f1 Iustin Pop
560 ec0292f1 Iustin Pop
561 b9bddb6b Iustin Pop
def _CheckInstanceBridgesExist(lu, instance):
562 bf6929a2 Alexander Schreiber
  """Check that the brigdes needed by an instance exist.
563 bf6929a2 Alexander Schreiber

564 bf6929a2 Alexander Schreiber
  """
565 bf6929a2 Alexander Schreiber
  # check bridges existance
566 bf6929a2 Alexander Schreiber
  brlist = [nic.bridge for nic in instance.nics]
567 781de953 Iustin Pop
  result = lu.rpc.call_bridges_exist(instance.primary_node, brlist)
568 781de953 Iustin Pop
  result.Raise()
569 781de953 Iustin Pop
  if not result.data:
570 781de953 Iustin Pop
    raise errors.OpPrereqError("One or more target bridges %s does not"
571 bf6929a2 Alexander Schreiber
                               " exist on destination node '%s'" %
572 bf6929a2 Alexander Schreiber
                               (brlist, instance.primary_node))
573 bf6929a2 Alexander Schreiber
574 bf6929a2 Alexander Schreiber
575 a8083063 Iustin Pop
class LUDestroyCluster(NoHooksLU):
576 a8083063 Iustin Pop
  """Logical unit for destroying the cluster.
577 a8083063 Iustin Pop

578 a8083063 Iustin Pop
  """
579 a8083063 Iustin Pop
  _OP_REQP = []
580 a8083063 Iustin Pop
581 a8083063 Iustin Pop
  def CheckPrereq(self):
582 a8083063 Iustin Pop
    """Check prerequisites.
583 a8083063 Iustin Pop

584 a8083063 Iustin Pop
    This checks whether the cluster is empty.
585 a8083063 Iustin Pop

586 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
587 a8083063 Iustin Pop

588 a8083063 Iustin Pop
    """
589 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
590 a8083063 Iustin Pop
591 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
592 db915bd1 Michael Hanselmann
    if len(nodelist) != 1 or nodelist[0] != master:
593 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d node(s) in"
594 3ecf6786 Iustin Pop
                                 " this cluster." % (len(nodelist) - 1))
595 db915bd1 Michael Hanselmann
    instancelist = self.cfg.GetInstanceList()
596 db915bd1 Michael Hanselmann
    if instancelist:
597 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d instance(s) in"
598 3ecf6786 Iustin Pop
                                 " this cluster." % len(instancelist))
599 a8083063 Iustin Pop
600 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
601 a8083063 Iustin Pop
    """Destroys the cluster.
602 a8083063 Iustin Pop

603 a8083063 Iustin Pop
    """
604 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
605 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
606 781de953 Iustin Pop
    result.Raise()
607 781de953 Iustin Pop
    if not result.data:
608 c9064964 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
609 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
610 70d9e3d8 Iustin Pop
    utils.CreateBackup(priv_key)
611 70d9e3d8 Iustin Pop
    utils.CreateBackup(pub_key)
612 140aa4a8 Iustin Pop
    return master
613 a8083063 Iustin Pop
614 a8083063 Iustin Pop
615 d8fff41c Guido Trotter
class LUVerifyCluster(LogicalUnit):
616 a8083063 Iustin Pop
  """Verifies the cluster status.
617 a8083063 Iustin Pop

618 a8083063 Iustin Pop
  """
619 d8fff41c Guido Trotter
  HPATH = "cluster-verify"
620 d8fff41c Guido Trotter
  HTYPE = constants.HTYPE_CLUSTER
621 e54c4c5e Guido Trotter
  _OP_REQP = ["skip_checks"]
622 d4b9d97f Guido Trotter
  REQ_BGL = False
623 d4b9d97f Guido Trotter
624 d4b9d97f Guido Trotter
  def ExpandNames(self):
625 d4b9d97f Guido Trotter
    self.needed_locks = {
626 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
627 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
628 d4b9d97f Guido Trotter
    }
629 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
630 a8083063 Iustin Pop
631 25361b9a Iustin Pop
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
632 6d2e83d5 Iustin Pop
                  node_result, feedback_fn, master_files,
633 6d2e83d5 Iustin Pop
                  drbd_map):
634 a8083063 Iustin Pop
    """Run multiple tests against a node.
635 a8083063 Iustin Pop

636 112f18a5 Iustin Pop
    Test list:
637 e4376078 Iustin Pop

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

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

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

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

779 a8083063 Iustin Pop
    """
780 a8083063 Iustin Pop
    bad = False
781 a8083063 Iustin Pop
782 a8083063 Iustin Pop
    node_current = instanceconfig.primary_node
783 a8083063 Iustin Pop
784 a8083063 Iustin Pop
    node_vol_should = {}
785 a8083063 Iustin Pop
    instanceconfig.MapLVsByNode(node_vol_should)
786 a8083063 Iustin Pop
787 a8083063 Iustin Pop
    for node in node_vol_should:
788 0a66c968 Iustin Pop
      if node in n_offline:
789 0a66c968 Iustin Pop
        # ignore missing volumes on offline nodes
790 0a66c968 Iustin Pop
        continue
791 a8083063 Iustin Pop
      for volume in node_vol_should[node]:
792 a8083063 Iustin Pop
        if node not in node_vol_is or volume not in node_vol_is[node]:
793 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s missing on node %s" %
794 a8083063 Iustin Pop
                          (volume, node))
795 a8083063 Iustin Pop
          bad = True
796 a8083063 Iustin Pop
797 0d68c45d Iustin Pop
    if instanceconfig.admin_up:
798 0a66c968 Iustin Pop
      if ((node_current not in node_instance or
799 0a66c968 Iustin Pop
          not instance in node_instance[node_current]) and
800 0a66c968 Iustin Pop
          node_current not in n_offline):
801 a8083063 Iustin Pop
        feedback_fn("  - ERROR: instance %s not running on node %s" %
802 a8083063 Iustin Pop
                        (instance, node_current))
803 a8083063 Iustin Pop
        bad = True
804 a8083063 Iustin Pop
805 a8083063 Iustin Pop
    for node in node_instance:
806 a8083063 Iustin Pop
      if (not node == node_current):
807 a8083063 Iustin Pop
        if instance in node_instance[node]:
808 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s should not run on node %s" %
809 a8083063 Iustin Pop
                          (instance, node))
810 a8083063 Iustin Pop
          bad = True
811 a8083063 Iustin Pop
812 6a438c98 Michael Hanselmann
    return bad
813 a8083063 Iustin Pop
814 a8083063 Iustin Pop
  def _VerifyOrphanVolumes(self, node_vol_should, node_vol_is, feedback_fn):
815 a8083063 Iustin Pop
    """Verify if there are any unknown volumes in the cluster.
816 a8083063 Iustin Pop

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

820 a8083063 Iustin Pop
    """
821 a8083063 Iustin Pop
    bad = False
822 a8083063 Iustin Pop
823 a8083063 Iustin Pop
    for node in node_vol_is:
824 a8083063 Iustin Pop
      for volume in node_vol_is[node]:
825 a8083063 Iustin Pop
        if node not in node_vol_should or volume not in node_vol_should[node]:
826 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
827 a8083063 Iustin Pop
                      (volume, node))
828 a8083063 Iustin Pop
          bad = True
829 a8083063 Iustin Pop
    return bad
830 a8083063 Iustin Pop
831 a8083063 Iustin Pop
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
832 a8083063 Iustin Pop
    """Verify the list of running instances.
833 a8083063 Iustin Pop

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

836 a8083063 Iustin Pop
    """
837 a8083063 Iustin Pop
    bad = False
838 a8083063 Iustin Pop
    for node in node_instance:
839 a8083063 Iustin Pop
      for runninginstance in node_instance[node]:
840 a8083063 Iustin Pop
        if runninginstance not in instancelist:
841 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
842 a8083063 Iustin Pop
                          (runninginstance, node))
843 a8083063 Iustin Pop
          bad = True
844 a8083063 Iustin Pop
    return bad
845 a8083063 Iustin Pop
846 2b3b6ddd Guido Trotter
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
847 2b3b6ddd Guido Trotter
    """Verify N+1 Memory Resilience.
848 2b3b6ddd Guido Trotter

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

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

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

882 a8083063 Iustin Pop
    """
883 e54c4c5e Guido Trotter
    self.skip_set = frozenset(self.op.skip_checks)
884 e54c4c5e Guido Trotter
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
885 e54c4c5e Guido Trotter
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
886 a8083063 Iustin Pop
887 d8fff41c Guido Trotter
  def BuildHooksEnv(self):
888 d8fff41c Guido Trotter
    """Build hooks env.
889 d8fff41c Guido Trotter

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

893 d8fff41c Guido Trotter
    """
894 d8fff41c Guido Trotter
    all_nodes = self.cfg.GetNodeList()
895 d8fff41c Guido Trotter
    # TODO: populate the environment with useful information for verify hooks
896 d8fff41c Guido Trotter
    env = {}
897 d8fff41c Guido Trotter
    return env, [], all_nodes
898 d8fff41c Guido Trotter
899 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
900 a8083063 Iustin Pop
    """Verify integrity of cluster, performing various test on nodes.
901 a8083063 Iustin Pop

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

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

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

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

1184 2c95a8d4 Iustin Pop
  """
1185 2c95a8d4 Iustin Pop
  _OP_REQP = []
1186 d4b9d97f Guido Trotter
  REQ_BGL = False
1187 d4b9d97f Guido Trotter
1188 d4b9d97f Guido Trotter
  def ExpandNames(self):
1189 d4b9d97f Guido Trotter
    self.needed_locks = {
1190 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1191 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1192 d4b9d97f Guido Trotter
    }
1193 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1194 2c95a8d4 Iustin Pop
1195 2c95a8d4 Iustin Pop
  def CheckPrereq(self):
1196 2c95a8d4 Iustin Pop
    """Check prerequisites.
1197 2c95a8d4 Iustin Pop

1198 2c95a8d4 Iustin Pop
    This has no prerequisites.
1199 2c95a8d4 Iustin Pop

1200 2c95a8d4 Iustin Pop
    """
1201 2c95a8d4 Iustin Pop
    pass
1202 2c95a8d4 Iustin Pop
1203 2c95a8d4 Iustin Pop
  def Exec(self, feedback_fn):
1204 2c95a8d4 Iustin Pop
    """Verify integrity of cluster disks.
1205 2c95a8d4 Iustin Pop

1206 2c95a8d4 Iustin Pop
    """
1207 b63ed789 Iustin Pop
    result = res_nodes, res_nlvm, res_instances, res_missing = [], {}, [], {}
1208 2c95a8d4 Iustin Pop
1209 2c95a8d4 Iustin Pop
    vg_name = self.cfg.GetVGName()
1210 2c95a8d4 Iustin Pop
    nodes = utils.NiceSort(self.cfg.GetNodeList())
1211 2c95a8d4 Iustin Pop
    instances = [self.cfg.GetInstanceInfo(name)
1212 2c95a8d4 Iustin Pop
                 for name in self.cfg.GetInstanceList()]
1213 2c95a8d4 Iustin Pop
1214 2c95a8d4 Iustin Pop
    nv_dict = {}
1215 2c95a8d4 Iustin Pop
    for inst in instances:
1216 2c95a8d4 Iustin Pop
      inst_lvs = {}
1217 0d68c45d Iustin Pop
      if (not inst.admin_up or
1218 2c95a8d4 Iustin Pop
          inst.disk_template not in constants.DTS_NET_MIRROR):
1219 2c95a8d4 Iustin Pop
        continue
1220 2c95a8d4 Iustin Pop
      inst.MapLVsByNode(inst_lvs)
1221 2c95a8d4 Iustin Pop
      # transform { iname: {node: [vol,],},} to {(node, vol): iname}
1222 2c95a8d4 Iustin Pop
      for node, vol_list in inst_lvs.iteritems():
1223 2c95a8d4 Iustin Pop
        for vol in vol_list:
1224 2c95a8d4 Iustin Pop
          nv_dict[(node, vol)] = inst
1225 2c95a8d4 Iustin Pop
1226 2c95a8d4 Iustin Pop
    if not nv_dict:
1227 2c95a8d4 Iustin Pop
      return result
1228 2c95a8d4 Iustin Pop
1229 72737a7f Iustin Pop
    node_lvs = self.rpc.call_volume_list(nodes, vg_name)
1230 2c95a8d4 Iustin Pop
1231 2c95a8d4 Iustin Pop
    to_act = set()
1232 2c95a8d4 Iustin Pop
    for node in nodes:
1233 2c95a8d4 Iustin Pop
      # node_volume
1234 2c95a8d4 Iustin Pop
      lvs = node_lvs[node]
1235 781de953 Iustin Pop
      if lvs.failed:
1236 0a66c968 Iustin Pop
        if not lvs.offline:
1237 0a66c968 Iustin Pop
          self.LogWarning("Connection to node %s failed: %s" %
1238 0a66c968 Iustin Pop
                          (node, lvs.data))
1239 781de953 Iustin Pop
        continue
1240 781de953 Iustin Pop
      lvs = lvs.data
1241 b63ed789 Iustin Pop
      if isinstance(lvs, basestring):
1242 9a4f63d1 Iustin Pop
        logging.warning("Error enumerating LVs on node %s: %s", node, lvs)
1243 b63ed789 Iustin Pop
        res_nlvm[node] = lvs
1244 b63ed789 Iustin Pop
      elif not isinstance(lvs, dict):
1245 9a4f63d1 Iustin Pop
        logging.warning("Connection to node %s failed or invalid data"
1246 9a4f63d1 Iustin Pop
                        " returned", node)
1247 2c95a8d4 Iustin Pop
        res_nodes.append(node)
1248 2c95a8d4 Iustin Pop
        continue
1249 2c95a8d4 Iustin Pop
1250 2c95a8d4 Iustin Pop
      for lv_name, (_, lv_inactive, lv_online) in lvs.iteritems():
1251 b63ed789 Iustin Pop
        inst = nv_dict.pop((node, lv_name), None)
1252 b63ed789 Iustin Pop
        if (not lv_online and inst is not None
1253 b63ed789 Iustin Pop
            and inst.name not in res_instances):
1254 b08d5a87 Iustin Pop
          res_instances.append(inst.name)
1255 2c95a8d4 Iustin Pop
1256 b63ed789 Iustin Pop
    # any leftover items in nv_dict are missing LVs, let's arrange the
1257 b63ed789 Iustin Pop
    # data better
1258 b63ed789 Iustin Pop
    for key, inst in nv_dict.iteritems():
1259 b63ed789 Iustin Pop
      if inst.name not in res_missing:
1260 b63ed789 Iustin Pop
        res_missing[inst.name] = []
1261 b63ed789 Iustin Pop
      res_missing[inst.name].append(key)
1262 b63ed789 Iustin Pop
1263 2c95a8d4 Iustin Pop
    return result
1264 2c95a8d4 Iustin Pop
1265 2c95a8d4 Iustin Pop
1266 07bd8a51 Iustin Pop
class LURenameCluster(LogicalUnit):
1267 07bd8a51 Iustin Pop
  """Rename the cluster.
1268 07bd8a51 Iustin Pop

1269 07bd8a51 Iustin Pop
  """
1270 07bd8a51 Iustin Pop
  HPATH = "cluster-rename"
1271 07bd8a51 Iustin Pop
  HTYPE = constants.HTYPE_CLUSTER
1272 07bd8a51 Iustin Pop
  _OP_REQP = ["name"]
1273 07bd8a51 Iustin Pop
1274 07bd8a51 Iustin Pop
  def BuildHooksEnv(self):
1275 07bd8a51 Iustin Pop
    """Build hooks env.
1276 07bd8a51 Iustin Pop

1277 07bd8a51 Iustin Pop
    """
1278 07bd8a51 Iustin Pop
    env = {
1279 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1280 07bd8a51 Iustin Pop
      "NEW_NAME": self.op.name,
1281 07bd8a51 Iustin Pop
      }
1282 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1283 07bd8a51 Iustin Pop
    return env, [mn], [mn]
1284 07bd8a51 Iustin Pop
1285 07bd8a51 Iustin Pop
  def CheckPrereq(self):
1286 07bd8a51 Iustin Pop
    """Verify that the passed name is a valid one.
1287 07bd8a51 Iustin Pop

1288 07bd8a51 Iustin Pop
    """
1289 89e1fc26 Iustin Pop
    hostname = utils.HostInfo(self.op.name)
1290 07bd8a51 Iustin Pop
1291 bcf043c9 Iustin Pop
    new_name = hostname.name
1292 bcf043c9 Iustin Pop
    self.ip = new_ip = hostname.ip
1293 d6a02168 Michael Hanselmann
    old_name = self.cfg.GetClusterName()
1294 d6a02168 Michael Hanselmann
    old_ip = self.cfg.GetMasterIP()
1295 07bd8a51 Iustin Pop
    if new_name == old_name and new_ip == old_ip:
1296 07bd8a51 Iustin Pop
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1297 07bd8a51 Iustin Pop
                                 " cluster has changed")
1298 07bd8a51 Iustin Pop
    if new_ip != old_ip:
1299 937f983d Guido Trotter
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1300 07bd8a51 Iustin Pop
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1301 07bd8a51 Iustin Pop
                                   " reachable on the network. Aborting." %
1302 07bd8a51 Iustin Pop
                                   new_ip)
1303 07bd8a51 Iustin Pop
1304 07bd8a51 Iustin Pop
    self.op.name = new_name
1305 07bd8a51 Iustin Pop
1306 07bd8a51 Iustin Pop
  def Exec(self, feedback_fn):
1307 07bd8a51 Iustin Pop
    """Rename the cluster.
1308 07bd8a51 Iustin Pop

1309 07bd8a51 Iustin Pop
    """
1310 07bd8a51 Iustin Pop
    clustername = self.op.name
1311 07bd8a51 Iustin Pop
    ip = self.ip
1312 07bd8a51 Iustin Pop
1313 07bd8a51 Iustin Pop
    # shutdown the master IP
1314 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
1315 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
1316 781de953 Iustin Pop
    if result.failed or not result.data:
1317 07bd8a51 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
1318 07bd8a51 Iustin Pop
1319 07bd8a51 Iustin Pop
    try:
1320 55cf7d83 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
1321 55cf7d83 Iustin Pop
      cluster.cluster_name = clustername
1322 55cf7d83 Iustin Pop
      cluster.master_ip = ip
1323 55cf7d83 Iustin Pop
      self.cfg.Update(cluster)
1324 ec85e3d5 Iustin Pop
1325 ec85e3d5 Iustin Pop
      # update the known hosts file
1326 ec85e3d5 Iustin Pop
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1327 ec85e3d5 Iustin Pop
      node_list = self.cfg.GetNodeList()
1328 ec85e3d5 Iustin Pop
      try:
1329 ec85e3d5 Iustin Pop
        node_list.remove(master)
1330 ec85e3d5 Iustin Pop
      except ValueError:
1331 ec85e3d5 Iustin Pop
        pass
1332 ec85e3d5 Iustin Pop
      result = self.rpc.call_upload_file(node_list,
1333 ec85e3d5 Iustin Pop
                                         constants.SSH_KNOWN_HOSTS_FILE)
1334 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
1335 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
1336 d1dc3548 Iustin Pop
          logging.error("Copy of file %s to node %s failed",
1337 d1dc3548 Iustin Pop
                        constants.SSH_KNOWN_HOSTS_FILE, to_node)
1338 ec85e3d5 Iustin Pop
1339 07bd8a51 Iustin Pop
    finally:
1340 781de953 Iustin Pop
      result = self.rpc.call_node_start_master(master, False)
1341 781de953 Iustin Pop
      if result.failed or not result.data:
1342 86d9d3bb Iustin Pop
        self.LogWarning("Could not re-enable the master role on"
1343 86d9d3bb Iustin Pop
                        " the master, please restart manually.")
1344 07bd8a51 Iustin Pop
1345 07bd8a51 Iustin Pop
1346 8084f9f6 Manuel Franceschini
def _RecursiveCheckIfLVMBased(disk):
1347 8084f9f6 Manuel Franceschini
  """Check if the given disk or its children are lvm-based.
1348 8084f9f6 Manuel Franceschini

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

1354 8084f9f6 Manuel Franceschini
  """
1355 8084f9f6 Manuel Franceschini
  if disk.children:
1356 8084f9f6 Manuel Franceschini
    for chdisk in disk.children:
1357 8084f9f6 Manuel Franceschini
      if _RecursiveCheckIfLVMBased(chdisk):
1358 8084f9f6 Manuel Franceschini
        return True
1359 8084f9f6 Manuel Franceschini
  return disk.dev_type == constants.LD_LV
1360 8084f9f6 Manuel Franceschini
1361 8084f9f6 Manuel Franceschini
1362 8084f9f6 Manuel Franceschini
class LUSetClusterParams(LogicalUnit):
1363 8084f9f6 Manuel Franceschini
  """Change the parameters of the cluster.
1364 8084f9f6 Manuel Franceschini

1365 8084f9f6 Manuel Franceschini
  """
1366 8084f9f6 Manuel Franceschini
  HPATH = "cluster-modify"
1367 8084f9f6 Manuel Franceschini
  HTYPE = constants.HTYPE_CLUSTER
1368 8084f9f6 Manuel Franceschini
  _OP_REQP = []
1369 c53279cf Guido Trotter
  REQ_BGL = False
1370 c53279cf Guido Trotter
1371 4b7735f9 Iustin Pop
  def CheckParameters(self):
1372 4b7735f9 Iustin Pop
    """Check parameters
1373 4b7735f9 Iustin Pop

1374 4b7735f9 Iustin Pop
    """
1375 4b7735f9 Iustin Pop
    if not hasattr(self.op, "candidate_pool_size"):
1376 4b7735f9 Iustin Pop
      self.op.candidate_pool_size = None
1377 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1378 4b7735f9 Iustin Pop
      try:
1379 4b7735f9 Iustin Pop
        self.op.candidate_pool_size = int(self.op.candidate_pool_size)
1380 4b7735f9 Iustin Pop
      except ValueError, err:
1381 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
1382 4b7735f9 Iustin Pop
                                   str(err))
1383 4b7735f9 Iustin Pop
      if self.op.candidate_pool_size < 1:
1384 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("At least one master candidate needed")
1385 4b7735f9 Iustin Pop
1386 c53279cf Guido Trotter
  def ExpandNames(self):
1387 c53279cf Guido Trotter
    # FIXME: in the future maybe other cluster params won't require checking on
1388 c53279cf Guido Trotter
    # all nodes to be modified.
1389 c53279cf Guido Trotter
    self.needed_locks = {
1390 c53279cf Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1391 c53279cf Guido Trotter
    }
1392 c53279cf Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1393 8084f9f6 Manuel Franceschini
1394 8084f9f6 Manuel Franceschini
  def BuildHooksEnv(self):
1395 8084f9f6 Manuel Franceschini
    """Build hooks env.
1396 8084f9f6 Manuel Franceschini

1397 8084f9f6 Manuel Franceschini
    """
1398 8084f9f6 Manuel Franceschini
    env = {
1399 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1400 8084f9f6 Manuel Franceschini
      "NEW_VG_NAME": self.op.vg_name,
1401 8084f9f6 Manuel Franceschini
      }
1402 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1403 8084f9f6 Manuel Franceschini
    return env, [mn], [mn]
1404 8084f9f6 Manuel Franceschini
1405 8084f9f6 Manuel Franceschini
  def CheckPrereq(self):
1406 8084f9f6 Manuel Franceschini
    """Check prerequisites.
1407 8084f9f6 Manuel Franceschini

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

1411 8084f9f6 Manuel Franceschini
    """
1412 779c15bb Iustin Pop
    if self.op.vg_name is not None and not self.op.vg_name:
1413 c53279cf Guido Trotter
      instances = self.cfg.GetAllInstancesInfo().values()
1414 8084f9f6 Manuel Franceschini
      for inst in instances:
1415 8084f9f6 Manuel Franceschini
        for disk in inst.disks:
1416 8084f9f6 Manuel Franceschini
          if _RecursiveCheckIfLVMBased(disk):
1417 8084f9f6 Manuel Franceschini
            raise errors.OpPrereqError("Cannot disable lvm storage while"
1418 8084f9f6 Manuel Franceschini
                                       " lvm-based instances exist")
1419 8084f9f6 Manuel Franceschini
1420 779c15bb Iustin Pop
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1421 779c15bb Iustin Pop
1422 8084f9f6 Manuel Franceschini
    # if vg_name not None, checks given volume group on all nodes
1423 8084f9f6 Manuel Franceschini
    if self.op.vg_name:
1424 72737a7f Iustin Pop
      vglist = self.rpc.call_vg_list(node_list)
1425 8084f9f6 Manuel Franceschini
      for node in node_list:
1426 781de953 Iustin Pop
        if vglist[node].failed:
1427 781de953 Iustin Pop
          # ignoring down node
1428 781de953 Iustin Pop
          self.LogWarning("Node %s unreachable/error, ignoring" % node)
1429 781de953 Iustin Pop
          continue
1430 781de953 Iustin Pop
        vgstatus = utils.CheckVolumeGroupSize(vglist[node].data,
1431 781de953 Iustin Pop
                                              self.op.vg_name,
1432 8d1a2a64 Michael Hanselmann
                                              constants.MIN_VG_SIZE)
1433 8084f9f6 Manuel Franceschini
        if vgstatus:
1434 8084f9f6 Manuel Franceschini
          raise errors.OpPrereqError("Error on node '%s': %s" %
1435 8084f9f6 Manuel Franceschini
                                     (node, vgstatus))
1436 8084f9f6 Manuel Franceschini
1437 779c15bb Iustin Pop
    self.cluster = cluster = self.cfg.GetClusterInfo()
1438 d4b72030 Guido Trotter
    # validate beparams changes
1439 779c15bb Iustin Pop
    if self.op.beparams:
1440 a5728081 Guido Trotter
      utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
1441 779c15bb Iustin Pop
      self.new_beparams = cluster.FillDict(
1442 779c15bb Iustin Pop
        cluster.beparams[constants.BEGR_DEFAULT], self.op.beparams)
1443 779c15bb Iustin Pop
1444 779c15bb Iustin Pop
    # hypervisor list/parameters
1445 779c15bb Iustin Pop
    self.new_hvparams = cluster.FillDict(cluster.hvparams, {})
1446 779c15bb Iustin Pop
    if self.op.hvparams:
1447 779c15bb Iustin Pop
      if not isinstance(self.op.hvparams, dict):
1448 779c15bb Iustin Pop
        raise errors.OpPrereqError("Invalid 'hvparams' parameter on input")
1449 779c15bb Iustin Pop
      for hv_name, hv_dict in self.op.hvparams.items():
1450 779c15bb Iustin Pop
        if hv_name not in self.new_hvparams:
1451 779c15bb Iustin Pop
          self.new_hvparams[hv_name] = hv_dict
1452 779c15bb Iustin Pop
        else:
1453 779c15bb Iustin Pop
          self.new_hvparams[hv_name].update(hv_dict)
1454 779c15bb Iustin Pop
1455 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1456 779c15bb Iustin Pop
      self.hv_list = self.op.enabled_hypervisors
1457 779c15bb Iustin Pop
    else:
1458 779c15bb Iustin Pop
      self.hv_list = cluster.enabled_hypervisors
1459 779c15bb Iustin Pop
1460 779c15bb Iustin Pop
    if self.op.hvparams or self.op.enabled_hypervisors is not None:
1461 779c15bb Iustin Pop
      # either the enabled list has changed, or the parameters have, validate
1462 779c15bb Iustin Pop
      for hv_name, hv_params in self.new_hvparams.items():
1463 779c15bb Iustin Pop
        if ((self.op.hvparams and hv_name in self.op.hvparams) or
1464 779c15bb Iustin Pop
            (self.op.enabled_hypervisors and
1465 779c15bb Iustin Pop
             hv_name in self.op.enabled_hypervisors)):
1466 779c15bb Iustin Pop
          # either this is a new hypervisor, or its parameters have changed
1467 779c15bb Iustin Pop
          hv_class = hypervisor.GetHypervisor(hv_name)
1468 a5728081 Guido Trotter
          utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
1469 779c15bb Iustin Pop
          hv_class.CheckParameterSyntax(hv_params)
1470 779c15bb Iustin Pop
          _CheckHVParams(self, node_list, hv_name, hv_params)
1471 779c15bb Iustin Pop
1472 8084f9f6 Manuel Franceschini
  def Exec(self, feedback_fn):
1473 8084f9f6 Manuel Franceschini
    """Change the parameters of the cluster.
1474 8084f9f6 Manuel Franceschini

1475 8084f9f6 Manuel Franceschini
    """
1476 779c15bb Iustin Pop
    if self.op.vg_name is not None:
1477 779c15bb Iustin Pop
      if self.op.vg_name != self.cfg.GetVGName():
1478 779c15bb Iustin Pop
        self.cfg.SetVGName(self.op.vg_name)
1479 779c15bb Iustin Pop
      else:
1480 779c15bb Iustin Pop
        feedback_fn("Cluster LVM configuration already in desired"
1481 779c15bb Iustin Pop
                    " state, not changing")
1482 779c15bb Iustin Pop
    if self.op.hvparams:
1483 779c15bb Iustin Pop
      self.cluster.hvparams = self.new_hvparams
1484 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1485 779c15bb Iustin Pop
      self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
1486 779c15bb Iustin Pop
    if self.op.beparams:
1487 779c15bb Iustin Pop
      self.cluster.beparams[constants.BEGR_DEFAULT] = self.new_beparams
1488 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1489 4b7735f9 Iustin Pop
      self.cluster.candidate_pool_size = self.op.candidate_pool_size
1490 4b7735f9 Iustin Pop
1491 779c15bb Iustin Pop
    self.cfg.Update(self.cluster)
1492 8084f9f6 Manuel Franceschini
1493 4b7735f9 Iustin Pop
    # we want to update nodes after the cluster so that if any errors
1494 4b7735f9 Iustin Pop
    # happen, we have recorded and saved the cluster info
1495 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1496 ec0292f1 Iustin Pop
      _AdjustCandidatePool(self)
1497 4b7735f9 Iustin Pop
1498 8084f9f6 Manuel Franceschini
1499 afee0879 Iustin Pop
class LURedistributeConfig(NoHooksLU):
1500 afee0879 Iustin Pop
  """Force the redistribution of cluster configuration.
1501 afee0879 Iustin Pop

1502 afee0879 Iustin Pop
  This is a very simple LU.
1503 afee0879 Iustin Pop

1504 afee0879 Iustin Pop
  """
1505 afee0879 Iustin Pop
  _OP_REQP = []
1506 afee0879 Iustin Pop
  REQ_BGL = False
1507 afee0879 Iustin Pop
1508 afee0879 Iustin Pop
  def ExpandNames(self):
1509 afee0879 Iustin Pop
    self.needed_locks = {
1510 afee0879 Iustin Pop
      locking.LEVEL_NODE: locking.ALL_SET,
1511 afee0879 Iustin Pop
    }
1512 afee0879 Iustin Pop
    self.share_locks[locking.LEVEL_NODE] = 1
1513 afee0879 Iustin Pop
1514 afee0879 Iustin Pop
  def CheckPrereq(self):
1515 afee0879 Iustin Pop
    """Check prerequisites.
1516 afee0879 Iustin Pop

1517 afee0879 Iustin Pop
    """
1518 afee0879 Iustin Pop
1519 afee0879 Iustin Pop
  def Exec(self, feedback_fn):
1520 afee0879 Iustin Pop
    """Redistribute the configuration.
1521 afee0879 Iustin Pop

1522 afee0879 Iustin Pop
    """
1523 afee0879 Iustin Pop
    self.cfg.Update(self.cfg.GetClusterInfo())
1524 afee0879 Iustin Pop
1525 afee0879 Iustin Pop
1526 b9bddb6b Iustin Pop
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1527 a8083063 Iustin Pop
  """Sleep and poll for an instance's disk to sync.
1528 a8083063 Iustin Pop

1529 a8083063 Iustin Pop
  """
1530 a8083063 Iustin Pop
  if not instance.disks:
1531 a8083063 Iustin Pop
    return True
1532 a8083063 Iustin Pop
1533 a8083063 Iustin Pop
  if not oneshot:
1534 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
1535 a8083063 Iustin Pop
1536 a8083063 Iustin Pop
  node = instance.primary_node
1537 a8083063 Iustin Pop
1538 a8083063 Iustin Pop
  for dev in instance.disks:
1539 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(dev, node)
1540 a8083063 Iustin Pop
1541 a8083063 Iustin Pop
  retries = 0
1542 a8083063 Iustin Pop
  while True:
1543 a8083063 Iustin Pop
    max_time = 0
1544 a8083063 Iustin Pop
    done = True
1545 a8083063 Iustin Pop
    cumul_degraded = False
1546 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
1547 781de953 Iustin Pop
    if rstats.failed or not rstats.data:
1548 86d9d3bb Iustin Pop
      lu.LogWarning("Can't get any data from node %s", node)
1549 a8083063 Iustin Pop
      retries += 1
1550 a8083063 Iustin Pop
      if retries >= 10:
1551 3ecf6786 Iustin Pop
        raise errors.RemoteError("Can't contact node %s for mirror data,"
1552 3ecf6786 Iustin Pop
                                 " aborting." % node)
1553 a8083063 Iustin Pop
      time.sleep(6)
1554 a8083063 Iustin Pop
      continue
1555 781de953 Iustin Pop
    rstats = rstats.data
1556 a8083063 Iustin Pop
    retries = 0
1557 1492cca7 Iustin Pop
    for i, mstat in enumerate(rstats):
1558 a8083063 Iustin Pop
      if mstat is None:
1559 86d9d3bb Iustin Pop
        lu.LogWarning("Can't compute data for node %s/%s",
1560 86d9d3bb Iustin Pop
                           node, instance.disks[i].iv_name)
1561 a8083063 Iustin Pop
        continue
1562 0834c866 Iustin Pop
      # we ignore the ldisk parameter
1563 0834c866 Iustin Pop
      perc_done, est_time, is_degraded, _ = mstat
1564 a8083063 Iustin Pop
      cumul_degraded = cumul_degraded or (is_degraded and perc_done is None)
1565 a8083063 Iustin Pop
      if perc_done is not None:
1566 a8083063 Iustin Pop
        done = False
1567 a8083063 Iustin Pop
        if est_time is not None:
1568 a8083063 Iustin Pop
          rem_time = "%d estimated seconds remaining" % est_time
1569 a8083063 Iustin Pop
          max_time = est_time
1570 a8083063 Iustin Pop
        else:
1571 a8083063 Iustin Pop
          rem_time = "no time estimate"
1572 b9bddb6b Iustin Pop
        lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
1573 b9bddb6b Iustin Pop
                        (instance.disks[i].iv_name, perc_done, rem_time))
1574 a8083063 Iustin Pop
    if done or oneshot:
1575 a8083063 Iustin Pop
      break
1576 a8083063 Iustin Pop
1577 d4fa5c23 Iustin Pop
    time.sleep(min(60, max_time))
1578 a8083063 Iustin Pop
1579 a8083063 Iustin Pop
  if done:
1580 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
1581 a8083063 Iustin Pop
  return not cumul_degraded
1582 a8083063 Iustin Pop
1583 a8083063 Iustin Pop
1584 b9bddb6b Iustin Pop
def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
1585 a8083063 Iustin Pop
  """Check that mirrors are not degraded.
1586 a8083063 Iustin Pop

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

1591 a8083063 Iustin Pop
  """
1592 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(dev, node)
1593 0834c866 Iustin Pop
  if ldisk:
1594 0834c866 Iustin Pop
    idx = 6
1595 0834c866 Iustin Pop
  else:
1596 0834c866 Iustin Pop
    idx = 5
1597 a8083063 Iustin Pop
1598 a8083063 Iustin Pop
  result = True
1599 a8083063 Iustin Pop
  if on_primary or dev.AssembleOnSecondary():
1600 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_find(node, dev)
1601 23829f6f Iustin Pop
    msg = rstats.RemoteFailMsg()
1602 23829f6f Iustin Pop
    if msg:
1603 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s: %s", node, msg)
1604 23829f6f Iustin Pop
      result = False
1605 23829f6f Iustin Pop
    elif not rstats.payload:
1606 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s", node)
1607 a8083063 Iustin Pop
      result = False
1608 a8083063 Iustin Pop
    else:
1609 23829f6f Iustin Pop
      result = result and (not rstats.payload[idx])
1610 a8083063 Iustin Pop
  if dev.children:
1611 a8083063 Iustin Pop
    for child in dev.children:
1612 b9bddb6b Iustin Pop
      result = result and _CheckDiskConsistency(lu, child, node, on_primary)
1613 a8083063 Iustin Pop
1614 a8083063 Iustin Pop
  return result
1615 a8083063 Iustin Pop
1616 a8083063 Iustin Pop
1617 a8083063 Iustin Pop
class LUDiagnoseOS(NoHooksLU):
1618 a8083063 Iustin Pop
  """Logical unit for OS diagnose/query.
1619 a8083063 Iustin Pop

1620 a8083063 Iustin Pop
  """
1621 1f9430d6 Iustin Pop
  _OP_REQP = ["output_fields", "names"]
1622 6bf01bbb Guido Trotter
  REQ_BGL = False
1623 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet()
1624 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status")
1625 a8083063 Iustin Pop
1626 6bf01bbb Guido Trotter
  def ExpandNames(self):
1627 1f9430d6 Iustin Pop
    if self.op.names:
1628 1f9430d6 Iustin Pop
      raise errors.OpPrereqError("Selective OS query not supported")
1629 1f9430d6 Iustin Pop
1630 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1631 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1632 1f9430d6 Iustin Pop
                       selected=self.op.output_fields)
1633 1f9430d6 Iustin Pop
1634 6bf01bbb Guido Trotter
    # Lock all nodes, in shared mode
1635 6bf01bbb Guido Trotter
    self.needed_locks = {}
1636 6bf01bbb Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1637 e310b019 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1638 6bf01bbb Guido Trotter
1639 6bf01bbb Guido Trotter
  def CheckPrereq(self):
1640 6bf01bbb Guido Trotter
    """Check prerequisites.
1641 6bf01bbb Guido Trotter

1642 6bf01bbb Guido Trotter
    """
1643 6bf01bbb Guido Trotter
1644 1f9430d6 Iustin Pop
  @staticmethod
1645 1f9430d6 Iustin Pop
  def _DiagnoseByOS(node_list, rlist):
1646 1f9430d6 Iustin Pop
    """Remaps a per-node return list into an a per-os per-node dictionary
1647 1f9430d6 Iustin Pop

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

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

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

1659 1f9430d6 Iustin Pop
    """
1660 1f9430d6 Iustin Pop
    all_os = {}
1661 1f9430d6 Iustin Pop
    for node_name, nr in rlist.iteritems():
1662 781de953 Iustin Pop
      if nr.failed or not nr.data:
1663 1f9430d6 Iustin Pop
        continue
1664 781de953 Iustin Pop
      for os_obj in nr.data:
1665 b4de68a9 Iustin Pop
        if os_obj.name not in all_os:
1666 1f9430d6 Iustin Pop
          # build a list of nodes for this os containing empty lists
1667 1f9430d6 Iustin Pop
          # for each node in node_list
1668 b4de68a9 Iustin Pop
          all_os[os_obj.name] = {}
1669 1f9430d6 Iustin Pop
          for nname in node_list:
1670 b4de68a9 Iustin Pop
            all_os[os_obj.name][nname] = []
1671 b4de68a9 Iustin Pop
        all_os[os_obj.name][node_name].append(os_obj)
1672 1f9430d6 Iustin Pop
    return all_os
1673 a8083063 Iustin Pop
1674 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1675 a8083063 Iustin Pop
    """Compute the list of OSes.
1676 a8083063 Iustin Pop

1677 a8083063 Iustin Pop
    """
1678 6bf01bbb Guido Trotter
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1679 94a02bb5 Iustin Pop
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()
1680 94a02bb5 Iustin Pop
                   if node in node_list]
1681 94a02bb5 Iustin Pop
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1682 a8083063 Iustin Pop
    if node_data == False:
1683 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't gather the list of OSes")
1684 94a02bb5 Iustin Pop
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1685 1f9430d6 Iustin Pop
    output = []
1686 1f9430d6 Iustin Pop
    for os_name, os_data in pol.iteritems():
1687 1f9430d6 Iustin Pop
      row = []
1688 1f9430d6 Iustin Pop
      for field in self.op.output_fields:
1689 1f9430d6 Iustin Pop
        if field == "name":
1690 1f9430d6 Iustin Pop
          val = os_name
1691 1f9430d6 Iustin Pop
        elif field == "valid":
1692 1f9430d6 Iustin Pop
          val = utils.all([osl and osl[0] for osl in os_data.values()])
1693 1f9430d6 Iustin Pop
        elif field == "node_status":
1694 1f9430d6 Iustin Pop
          val = {}
1695 1f9430d6 Iustin Pop
          for node_name, nos_list in os_data.iteritems():
1696 1f9430d6 Iustin Pop
            val[node_name] = [(v.status, v.path) for v in nos_list]
1697 1f9430d6 Iustin Pop
        else:
1698 1f9430d6 Iustin Pop
          raise errors.ParameterError(field)
1699 1f9430d6 Iustin Pop
        row.append(val)
1700 1f9430d6 Iustin Pop
      output.append(row)
1701 1f9430d6 Iustin Pop
1702 1f9430d6 Iustin Pop
    return output
1703 a8083063 Iustin Pop
1704 a8083063 Iustin Pop
1705 a8083063 Iustin Pop
class LURemoveNode(LogicalUnit):
1706 a8083063 Iustin Pop
  """Logical unit for removing a node.
1707 a8083063 Iustin Pop

1708 a8083063 Iustin Pop
  """
1709 a8083063 Iustin Pop
  HPATH = "node-remove"
1710 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1711 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1712 a8083063 Iustin Pop
1713 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1714 a8083063 Iustin Pop
    """Build hooks env.
1715 a8083063 Iustin Pop

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

1719 a8083063 Iustin Pop
    """
1720 396e1b78 Michael Hanselmann
    env = {
1721 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
1722 396e1b78 Michael Hanselmann
      "NODE_NAME": self.op.node_name,
1723 396e1b78 Michael Hanselmann
      }
1724 a8083063 Iustin Pop
    all_nodes = self.cfg.GetNodeList()
1725 a8083063 Iustin Pop
    all_nodes.remove(self.op.node_name)
1726 396e1b78 Michael Hanselmann
    return env, all_nodes, all_nodes
1727 a8083063 Iustin Pop
1728 a8083063 Iustin Pop
  def CheckPrereq(self):
1729 a8083063 Iustin Pop
    """Check prerequisites.
1730 a8083063 Iustin Pop

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

1736 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
1737 a8083063 Iustin Pop

1738 a8083063 Iustin Pop
    """
1739 a8083063 Iustin Pop
    node = self.cfg.GetNodeInfo(self.cfg.ExpandNodeName(self.op.node_name))
1740 a8083063 Iustin Pop
    if node is None:
1741 a02bc76e Iustin Pop
      raise errors.OpPrereqError, ("Node '%s' is unknown." % self.op.node_name)
1742 a8083063 Iustin Pop
1743 a8083063 Iustin Pop
    instance_list = self.cfg.GetInstanceList()
1744 a8083063 Iustin Pop
1745 d6a02168 Michael Hanselmann
    masternode = self.cfg.GetMasterNode()
1746 a8083063 Iustin Pop
    if node.name == masternode:
1747 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node is the master node,"
1748 3ecf6786 Iustin Pop
                                 " you need to failover first.")
1749 a8083063 Iustin Pop
1750 a8083063 Iustin Pop
    for instance_name in instance_list:
1751 a8083063 Iustin Pop
      instance = self.cfg.GetInstanceInfo(instance_name)
1752 6b12959c Iustin Pop
      if node.name in instance.all_nodes:
1753 6b12959c Iustin Pop
        raise errors.OpPrereqError("Instance %s is still running on the node,"
1754 3ecf6786 Iustin Pop
                                   " please remove first." % instance_name)
1755 a8083063 Iustin Pop
    self.op.node_name = node.name
1756 a8083063 Iustin Pop
    self.node = node
1757 a8083063 Iustin Pop
1758 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1759 a8083063 Iustin Pop
    """Removes the node from the cluster.
1760 a8083063 Iustin Pop

1761 a8083063 Iustin Pop
    """
1762 a8083063 Iustin Pop
    node = self.node
1763 9a4f63d1 Iustin Pop
    logging.info("Stopping the node daemon and removing configs from node %s",
1764 9a4f63d1 Iustin Pop
                 node.name)
1765 a8083063 Iustin Pop
1766 d8470559 Michael Hanselmann
    self.context.RemoveNode(node.name)
1767 a8083063 Iustin Pop
1768 72737a7f Iustin Pop
    self.rpc.call_node_leave_cluster(node.name)
1769 c8a0948f Michael Hanselmann
1770 eb1742d5 Guido Trotter
    # Promote nodes to master candidate as needed
1771 ec0292f1 Iustin Pop
    _AdjustCandidatePool(self)
1772 eb1742d5 Guido Trotter
1773 a8083063 Iustin Pop
1774 a8083063 Iustin Pop
class LUQueryNodes(NoHooksLU):
1775 a8083063 Iustin Pop
  """Logical unit for querying nodes.
1776 a8083063 Iustin Pop

1777 a8083063 Iustin Pop
  """
1778 bc8e4a1a Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
1779 35705d8f Guido Trotter
  REQ_BGL = False
1780 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet(
1781 31bf511f Iustin Pop
    "dtotal", "dfree",
1782 31bf511f Iustin Pop
    "mtotal", "mnode", "mfree",
1783 31bf511f Iustin Pop
    "bootid",
1784 0105bad3 Iustin Pop
    "ctotal", "cnodes", "csockets",
1785 31bf511f Iustin Pop
    )
1786 31bf511f Iustin Pop
1787 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(
1788 31bf511f Iustin Pop
    "name", "pinst_cnt", "sinst_cnt",
1789 31bf511f Iustin Pop
    "pinst_list", "sinst_list",
1790 31bf511f Iustin Pop
    "pip", "sip", "tags",
1791 31bf511f Iustin Pop
    "serial_no",
1792 0e67cdbe Iustin Pop
    "master_candidate",
1793 0e67cdbe Iustin Pop
    "master",
1794 9ddb5e45 Iustin Pop
    "offline",
1795 0b2454b9 Iustin Pop
    "drained",
1796 31bf511f Iustin Pop
    )
1797 a8083063 Iustin Pop
1798 35705d8f Guido Trotter
  def ExpandNames(self):
1799 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1800 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1801 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
1802 a8083063 Iustin Pop
1803 35705d8f Guido Trotter
    self.needed_locks = {}
1804 35705d8f Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1805 c8d8b4c8 Iustin Pop
1806 c8d8b4c8 Iustin Pop
    if self.op.names:
1807 c8d8b4c8 Iustin Pop
      self.wanted = _GetWantedNodes(self, self.op.names)
1808 35705d8f Guido Trotter
    else:
1809 c8d8b4c8 Iustin Pop
      self.wanted = locking.ALL_SET
1810 c8d8b4c8 Iustin Pop
1811 bc8e4a1a Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
1812 bc8e4a1a Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
1813 c8d8b4c8 Iustin Pop
    if self.do_locking:
1814 c8d8b4c8 Iustin Pop
      # if we don't request only static fields, we need to lock the nodes
1815 c8d8b4c8 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = self.wanted
1816 c8d8b4c8 Iustin Pop
1817 35705d8f Guido Trotter
1818 35705d8f Guido Trotter
  def CheckPrereq(self):
1819 35705d8f Guido Trotter
    """Check prerequisites.
1820 35705d8f Guido Trotter

1821 35705d8f Guido Trotter
    """
1822 c8d8b4c8 Iustin Pop
    # The validation of the node list is done in the _GetWantedNodes,
1823 c8d8b4c8 Iustin Pop
    # if non empty, and if empty, there's no validation to do
1824 c8d8b4c8 Iustin Pop
    pass
1825 a8083063 Iustin Pop
1826 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1827 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
1828 a8083063 Iustin Pop

1829 a8083063 Iustin Pop
    """
1830 c8d8b4c8 Iustin Pop
    all_info = self.cfg.GetAllNodesInfo()
1831 c8d8b4c8 Iustin Pop
    if self.do_locking:
1832 c8d8b4c8 Iustin Pop
      nodenames = self.acquired_locks[locking.LEVEL_NODE]
1833 3fa93523 Guido Trotter
    elif self.wanted != locking.ALL_SET:
1834 3fa93523 Guido Trotter
      nodenames = self.wanted
1835 3fa93523 Guido Trotter
      missing = set(nodenames).difference(all_info.keys())
1836 3fa93523 Guido Trotter
      if missing:
1837 7b3a8fb5 Iustin Pop
        raise errors.OpExecError(
1838 3fa93523 Guido Trotter
          "Some nodes were removed before retrieving their data: %s" % missing)
1839 c8d8b4c8 Iustin Pop
    else:
1840 c8d8b4c8 Iustin Pop
      nodenames = all_info.keys()
1841 c1f1cbb2 Iustin Pop
1842 c1f1cbb2 Iustin Pop
    nodenames = utils.NiceSort(nodenames)
1843 c8d8b4c8 Iustin Pop
    nodelist = [all_info[name] for name in nodenames]
1844 a8083063 Iustin Pop
1845 a8083063 Iustin Pop
    # begin data gathering
1846 a8083063 Iustin Pop
1847 bc8e4a1a Iustin Pop
    if self.do_node_query:
1848 a8083063 Iustin Pop
      live_data = {}
1849 72737a7f Iustin Pop
      node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
1850 72737a7f Iustin Pop
                                          self.cfg.GetHypervisorType())
1851 a8083063 Iustin Pop
      for name in nodenames:
1852 781de953 Iustin Pop
        nodeinfo = node_data[name]
1853 781de953 Iustin Pop
        if not nodeinfo.failed and nodeinfo.data:
1854 781de953 Iustin Pop
          nodeinfo = nodeinfo.data
1855 d599d686 Iustin Pop
          fn = utils.TryConvert
1856 a8083063 Iustin Pop
          live_data[name] = {
1857 d599d686 Iustin Pop
            "mtotal": fn(int, nodeinfo.get('memory_total', None)),
1858 d599d686 Iustin Pop
            "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
1859 d599d686 Iustin Pop
            "mfree": fn(int, nodeinfo.get('memory_free', None)),
1860 d599d686 Iustin Pop
            "dtotal": fn(int, nodeinfo.get('vg_size', None)),
1861 d599d686 Iustin Pop
            "dfree": fn(int, nodeinfo.get('vg_free', None)),
1862 d599d686 Iustin Pop
            "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
1863 d599d686 Iustin Pop
            "bootid": nodeinfo.get('bootid', None),
1864 0105bad3 Iustin Pop
            "cnodes": fn(int, nodeinfo.get('cpu_nodes', None)),
1865 0105bad3 Iustin Pop
            "csockets": fn(int, nodeinfo.get('cpu_sockets', None)),
1866 a8083063 Iustin Pop
            }
1867 a8083063 Iustin Pop
        else:
1868 a8083063 Iustin Pop
          live_data[name] = {}
1869 a8083063 Iustin Pop
    else:
1870 a8083063 Iustin Pop
      live_data = dict.fromkeys(nodenames, {})
1871 a8083063 Iustin Pop
1872 ec223efb Iustin Pop
    node_to_primary = dict([(name, set()) for name in nodenames])
1873 ec223efb Iustin Pop
    node_to_secondary = dict([(name, set()) for name in nodenames])
1874 a8083063 Iustin Pop
1875 ec223efb Iustin Pop
    inst_fields = frozenset(("pinst_cnt", "pinst_list",
1876 ec223efb Iustin Pop
                             "sinst_cnt", "sinst_list"))
1877 ec223efb Iustin Pop
    if inst_fields & frozenset(self.op.output_fields):
1878 a8083063 Iustin Pop
      instancelist = self.cfg.GetInstanceList()
1879 a8083063 Iustin Pop
1880 ec223efb Iustin Pop
      for instance_name in instancelist:
1881 ec223efb Iustin Pop
        inst = self.cfg.GetInstanceInfo(instance_name)
1882 ec223efb Iustin Pop
        if inst.primary_node in node_to_primary:
1883 ec223efb Iustin Pop
          node_to_primary[inst.primary_node].add(inst.name)
1884 ec223efb Iustin Pop
        for secnode in inst.secondary_nodes:
1885 ec223efb Iustin Pop
          if secnode in node_to_secondary:
1886 ec223efb Iustin Pop
            node_to_secondary[secnode].add(inst.name)
1887 a8083063 Iustin Pop
1888 0e67cdbe Iustin Pop
    master_node = self.cfg.GetMasterNode()
1889 0e67cdbe Iustin Pop
1890 a8083063 Iustin Pop
    # end data gathering
1891 a8083063 Iustin Pop
1892 a8083063 Iustin Pop
    output = []
1893 a8083063 Iustin Pop
    for node in nodelist:
1894 a8083063 Iustin Pop
      node_output = []
1895 a8083063 Iustin Pop
      for field in self.op.output_fields:
1896 a8083063 Iustin Pop
        if field == "name":
1897 a8083063 Iustin Pop
          val = node.name
1898 ec223efb Iustin Pop
        elif field == "pinst_list":
1899 ec223efb Iustin Pop
          val = list(node_to_primary[node.name])
1900 ec223efb Iustin Pop
        elif field == "sinst_list":
1901 ec223efb Iustin Pop
          val = list(node_to_secondary[node.name])
1902 ec223efb Iustin Pop
        elif field == "pinst_cnt":
1903 ec223efb Iustin Pop
          val = len(node_to_primary[node.name])
1904 ec223efb Iustin Pop
        elif field == "sinst_cnt":
1905 ec223efb Iustin Pop
          val = len(node_to_secondary[node.name])
1906 a8083063 Iustin Pop
        elif field == "pip":
1907 a8083063 Iustin Pop
          val = node.primary_ip
1908 a8083063 Iustin Pop
        elif field == "sip":
1909 a8083063 Iustin Pop
          val = node.secondary_ip
1910 130a6a6f Iustin Pop
        elif field == "tags":
1911 130a6a6f Iustin Pop
          val = list(node.GetTags())
1912 38d7239a Iustin Pop
        elif field == "serial_no":
1913 38d7239a Iustin Pop
          val = node.serial_no
1914 0e67cdbe Iustin Pop
        elif field == "master_candidate":
1915 0e67cdbe Iustin Pop
          val = node.master_candidate
1916 0e67cdbe Iustin Pop
        elif field == "master":
1917 0e67cdbe Iustin Pop
          val = node.name == master_node
1918 9ddb5e45 Iustin Pop
        elif field == "offline":
1919 9ddb5e45 Iustin Pop
          val = node.offline
1920 0b2454b9 Iustin Pop
        elif field == "drained":
1921 0b2454b9 Iustin Pop
          val = node.drained
1922 31bf511f Iustin Pop
        elif self._FIELDS_DYNAMIC.Matches(field):
1923 ec223efb Iustin Pop
          val = live_data[node.name].get(field, None)
1924 a8083063 Iustin Pop
        else:
1925 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
1926 a8083063 Iustin Pop
        node_output.append(val)
1927 a8083063 Iustin Pop
      output.append(node_output)
1928 a8083063 Iustin Pop
1929 a8083063 Iustin Pop
    return output
1930 a8083063 Iustin Pop
1931 a8083063 Iustin Pop
1932 dcb93971 Michael Hanselmann
class LUQueryNodeVolumes(NoHooksLU):
1933 dcb93971 Michael Hanselmann
  """Logical unit for getting volumes on node(s).
1934 dcb93971 Michael Hanselmann

1935 dcb93971 Michael Hanselmann
  """
1936 dcb93971 Michael Hanselmann
  _OP_REQP = ["nodes", "output_fields"]
1937 21a15682 Guido Trotter
  REQ_BGL = False
1938 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
1939 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("node")
1940 21a15682 Guido Trotter
1941 21a15682 Guido Trotter
  def ExpandNames(self):
1942 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1943 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1944 21a15682 Guido Trotter
                       selected=self.op.output_fields)
1945 21a15682 Guido Trotter
1946 21a15682 Guido Trotter
    self.needed_locks = {}
1947 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1948 21a15682 Guido Trotter
    if not self.op.nodes:
1949 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1950 21a15682 Guido Trotter
    else:
1951 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
1952 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
1953 dcb93971 Michael Hanselmann
1954 dcb93971 Michael Hanselmann
  def CheckPrereq(self):
1955 dcb93971 Michael Hanselmann
    """Check prerequisites.
1956 dcb93971 Michael Hanselmann

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

1959 dcb93971 Michael Hanselmann
    """
1960 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
1961 dcb93971 Michael Hanselmann
1962 dcb93971 Michael Hanselmann
  def Exec(self, feedback_fn):
1963 dcb93971 Michael Hanselmann
    """Computes the list of nodes and their attributes.
1964 dcb93971 Michael Hanselmann

1965 dcb93971 Michael Hanselmann
    """
1966 a7ba5e53 Iustin Pop
    nodenames = self.nodes
1967 72737a7f Iustin Pop
    volumes = self.rpc.call_node_volumes(nodenames)
1968 dcb93971 Michael Hanselmann
1969 dcb93971 Michael Hanselmann
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
1970 dcb93971 Michael Hanselmann
             in self.cfg.GetInstanceList()]
1971 dcb93971 Michael Hanselmann
1972 dcb93971 Michael Hanselmann
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
1973 dcb93971 Michael Hanselmann
1974 dcb93971 Michael Hanselmann
    output = []
1975 dcb93971 Michael Hanselmann
    for node in nodenames:
1976 781de953 Iustin Pop
      if node not in volumes or volumes[node].failed or not volumes[node].data:
1977 37d19eb2 Michael Hanselmann
        continue
1978 37d19eb2 Michael Hanselmann
1979 781de953 Iustin Pop
      node_vols = volumes[node].data[:]
1980 dcb93971 Michael Hanselmann
      node_vols.sort(key=lambda vol: vol['dev'])
1981 dcb93971 Michael Hanselmann
1982 dcb93971 Michael Hanselmann
      for vol in node_vols:
1983 dcb93971 Michael Hanselmann
        node_output = []
1984 dcb93971 Michael Hanselmann
        for field in self.op.output_fields:
1985 dcb93971 Michael Hanselmann
          if field == "node":
1986 dcb93971 Michael Hanselmann
            val = node
1987 dcb93971 Michael Hanselmann
          elif field == "phys":
1988 dcb93971 Michael Hanselmann
            val = vol['dev']
1989 dcb93971 Michael Hanselmann
          elif field == "vg":
1990 dcb93971 Michael Hanselmann
            val = vol['vg']
1991 dcb93971 Michael Hanselmann
          elif field == "name":
1992 dcb93971 Michael Hanselmann
            val = vol['name']
1993 dcb93971 Michael Hanselmann
          elif field == "size":
1994 dcb93971 Michael Hanselmann
            val = int(float(vol['size']))
1995 dcb93971 Michael Hanselmann
          elif field == "instance":
1996 dcb93971 Michael Hanselmann
            for inst in ilist:
1997 dcb93971 Michael Hanselmann
              if node not in lv_by_node[inst]:
1998 dcb93971 Michael Hanselmann
                continue
1999 dcb93971 Michael Hanselmann
              if vol['name'] in lv_by_node[inst][node]:
2000 dcb93971 Michael Hanselmann
                val = inst.name
2001 dcb93971 Michael Hanselmann
                break
2002 dcb93971 Michael Hanselmann
            else:
2003 dcb93971 Michael Hanselmann
              val = '-'
2004 dcb93971 Michael Hanselmann
          else:
2005 3ecf6786 Iustin Pop
            raise errors.ParameterError(field)
2006 dcb93971 Michael Hanselmann
          node_output.append(str(val))
2007 dcb93971 Michael Hanselmann
2008 dcb93971 Michael Hanselmann
        output.append(node_output)
2009 dcb93971 Michael Hanselmann
2010 dcb93971 Michael Hanselmann
    return output
2011 dcb93971 Michael Hanselmann
2012 dcb93971 Michael Hanselmann
2013 a8083063 Iustin Pop
class LUAddNode(LogicalUnit):
2014 a8083063 Iustin Pop
  """Logical unit for adding node to the cluster.
2015 a8083063 Iustin Pop

2016 a8083063 Iustin Pop
  """
2017 a8083063 Iustin Pop
  HPATH = "node-add"
2018 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2019 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
2020 a8083063 Iustin Pop
2021 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2022 a8083063 Iustin Pop
    """Build hooks env.
2023 a8083063 Iustin Pop

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

2026 a8083063 Iustin Pop
    """
2027 a8083063 Iustin Pop
    env = {
2028 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
2029 a8083063 Iustin Pop
      "NODE_NAME": self.op.node_name,
2030 a8083063 Iustin Pop
      "NODE_PIP": self.op.primary_ip,
2031 a8083063 Iustin Pop
      "NODE_SIP": self.op.secondary_ip,
2032 a8083063 Iustin Pop
      }
2033 a8083063 Iustin Pop
    nodes_0 = self.cfg.GetNodeList()
2034 a8083063 Iustin Pop
    nodes_1 = nodes_0 + [self.op.node_name, ]
2035 a8083063 Iustin Pop
    return env, nodes_0, nodes_1
2036 a8083063 Iustin Pop
2037 a8083063 Iustin Pop
  def CheckPrereq(self):
2038 a8083063 Iustin Pop
    """Check prerequisites.
2039 a8083063 Iustin Pop

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

2045 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
2046 a8083063 Iustin Pop

2047 a8083063 Iustin Pop
    """
2048 a8083063 Iustin Pop
    node_name = self.op.node_name
2049 a8083063 Iustin Pop
    cfg = self.cfg
2050 a8083063 Iustin Pop
2051 89e1fc26 Iustin Pop
    dns_data = utils.HostInfo(node_name)
2052 a8083063 Iustin Pop
2053 bcf043c9 Iustin Pop
    node = dns_data.name
2054 bcf043c9 Iustin Pop
    primary_ip = self.op.primary_ip = dns_data.ip
2055 a8083063 Iustin Pop
    secondary_ip = getattr(self.op, "secondary_ip", None)
2056 a8083063 Iustin Pop
    if secondary_ip is None:
2057 a8083063 Iustin Pop
      secondary_ip = primary_ip
2058 a8083063 Iustin Pop
    if not utils.IsValidIP(secondary_ip):
2059 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Invalid secondary IP given")
2060 a8083063 Iustin Pop
    self.op.secondary_ip = secondary_ip
2061 e7c6e02b Michael Hanselmann
2062 a8083063 Iustin Pop
    node_list = cfg.GetNodeList()
2063 e7c6e02b Michael Hanselmann
    if not self.op.readd and node in node_list:
2064 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is already in the configuration" %
2065 e7c6e02b Michael Hanselmann
                                 node)
2066 e7c6e02b Michael Hanselmann
    elif self.op.readd and node not in node_list:
2067 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is not in the configuration" % node)
2068 a8083063 Iustin Pop
2069 a8083063 Iustin Pop
    for existing_node_name in node_list:
2070 a8083063 Iustin Pop
      existing_node = cfg.GetNodeInfo(existing_node_name)
2071 e7c6e02b Michael Hanselmann
2072 e7c6e02b Michael Hanselmann
      if self.op.readd and node == existing_node_name:
2073 e7c6e02b Michael Hanselmann
        if (existing_node.primary_ip != primary_ip or
2074 e7c6e02b Michael Hanselmann
            existing_node.secondary_ip != secondary_ip):
2075 e7c6e02b Michael Hanselmann
          raise errors.OpPrereqError("Readded node doesn't have the same IP"
2076 e7c6e02b Michael Hanselmann
                                     " address configuration as before")
2077 e7c6e02b Michael Hanselmann
        continue
2078 e7c6e02b Michael Hanselmann
2079 a8083063 Iustin Pop
      if (existing_node.primary_ip == primary_ip or
2080 a8083063 Iustin Pop
          existing_node.secondary_ip == primary_ip or
2081 a8083063 Iustin Pop
          existing_node.primary_ip == secondary_ip or
2082 a8083063 Iustin Pop
          existing_node.secondary_ip == secondary_ip):
2083 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("New node ip address(es) conflict with"
2084 3ecf6786 Iustin Pop
                                   " existing node %s" % existing_node.name)
2085 a8083063 Iustin Pop
2086 a8083063 Iustin Pop
    # check that the type of the node (single versus dual homed) is the
2087 a8083063 Iustin Pop
    # same as for the master
2088 d6a02168 Michael Hanselmann
    myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
2089 a8083063 Iustin Pop
    master_singlehomed = myself.secondary_ip == myself.primary_ip
2090 a8083063 Iustin Pop
    newbie_singlehomed = secondary_ip == primary_ip
2091 a8083063 Iustin Pop
    if master_singlehomed != newbie_singlehomed:
2092 a8083063 Iustin Pop
      if master_singlehomed:
2093 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has no private ip but the"
2094 3ecf6786 Iustin Pop
                                   " new node has one")
2095 a8083063 Iustin Pop
      else:
2096 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has a private ip but the"
2097 3ecf6786 Iustin Pop
                                   " new node doesn't have one")
2098 a8083063 Iustin Pop
2099 a8083063 Iustin Pop
    # checks reachablity
2100 b15d625f Iustin Pop
    if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
2101 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node not reachable by ping")
2102 a8083063 Iustin Pop
2103 a8083063 Iustin Pop
    if not newbie_singlehomed:
2104 a8083063 Iustin Pop
      # check reachability from my secondary ip to newbie's secondary ip
2105 b15d625f Iustin Pop
      if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
2106 b15d625f Iustin Pop
                           source=myself.secondary_ip):
2107 f4bc1f2c Michael Hanselmann
        raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
2108 f4bc1f2c Michael Hanselmann
                                   " based ping to noded port")
2109 a8083063 Iustin Pop
2110 0fff97e9 Guido Trotter
    cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2111 ec0292f1 Iustin Pop
    mc_now, _ = self.cfg.GetMasterCandidateStats()
2112 ec0292f1 Iustin Pop
    master_candidate = mc_now < cp_size
2113 0fff97e9 Guido Trotter
2114 a8083063 Iustin Pop
    self.new_node = objects.Node(name=node,
2115 a8083063 Iustin Pop
                                 primary_ip=primary_ip,
2116 0fff97e9 Guido Trotter
                                 secondary_ip=secondary_ip,
2117 fc0fe88c Iustin Pop
                                 master_candidate=master_candidate,
2118 af64c0ea Iustin Pop
                                 offline=False, drained=False)
2119 a8083063 Iustin Pop
2120 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2121 a8083063 Iustin Pop
    """Adds the new node to the cluster.
2122 a8083063 Iustin Pop

2123 a8083063 Iustin Pop
    """
2124 a8083063 Iustin Pop
    new_node = self.new_node
2125 a8083063 Iustin Pop
    node = new_node.name
2126 a8083063 Iustin Pop
2127 a8083063 Iustin Pop
    # check connectivity
2128 72737a7f Iustin Pop
    result = self.rpc.call_version([node])[node]
2129 781de953 Iustin Pop
    result.Raise()
2130 781de953 Iustin Pop
    if result.data:
2131 781de953 Iustin Pop
      if constants.PROTOCOL_VERSION == result.data:
2132 9a4f63d1 Iustin Pop
        logging.info("Communication to node %s fine, sw version %s match",
2133 781de953 Iustin Pop
                     node, result.data)
2134 a8083063 Iustin Pop
      else:
2135 3ecf6786 Iustin Pop
        raise errors.OpExecError("Version mismatch master version %s,"
2136 3ecf6786 Iustin Pop
                                 " node version %s" %
2137 781de953 Iustin Pop
                                 (constants.PROTOCOL_VERSION, result.data))
2138 a8083063 Iustin Pop
    else:
2139 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot get version from the new node")
2140 a8083063 Iustin Pop
2141 a8083063 Iustin Pop
    # setup ssh on node
2142 9a4f63d1 Iustin Pop
    logging.info("Copy ssh key to node %s", node)
2143 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
2144 a8083063 Iustin Pop
    keyarray = []
2145 70d9e3d8 Iustin Pop
    keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
2146 70d9e3d8 Iustin Pop
                constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
2147 70d9e3d8 Iustin Pop
                priv_key, pub_key]
2148 a8083063 Iustin Pop
2149 a8083063 Iustin Pop
    for i in keyfiles:
2150 a8083063 Iustin Pop
      f = open(i, 'r')
2151 a8083063 Iustin Pop
      try:
2152 a8083063 Iustin Pop
        keyarray.append(f.read())
2153 a8083063 Iustin Pop
      finally:
2154 a8083063 Iustin Pop
        f.close()
2155 a8083063 Iustin Pop
2156 72737a7f Iustin Pop
    result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
2157 72737a7f Iustin Pop
                                    keyarray[2],
2158 72737a7f Iustin Pop
                                    keyarray[3], keyarray[4], keyarray[5])
2159 a8083063 Iustin Pop
2160 a1b805fb Iustin Pop
    msg = result.RemoteFailMsg()
2161 a1b805fb Iustin Pop
    if msg:
2162 a1b805fb Iustin Pop
      raise errors.OpExecError("Cannot transfer ssh keys to the"
2163 a1b805fb Iustin Pop
                               " new node: %s" % msg)
2164 a8083063 Iustin Pop
2165 a8083063 Iustin Pop
    # Add node to our /etc/hosts, and add key to known_hosts
2166 d9c02ca6 Michael Hanselmann
    utils.AddHostToEtcHosts(new_node.name)
2167 c8a0948f Michael Hanselmann
2168 a8083063 Iustin Pop
    if new_node.secondary_ip != new_node.primary_ip:
2169 781de953 Iustin Pop
      result = self.rpc.call_node_has_ip_address(new_node.name,
2170 781de953 Iustin Pop
                                                 new_node.secondary_ip)
2171 781de953 Iustin Pop
      if result.failed or not result.data:
2172 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Node claims it doesn't have the secondary ip"
2173 f4bc1f2c Michael Hanselmann
                                 " you gave (%s). Please fix and re-run this"
2174 f4bc1f2c Michael Hanselmann
                                 " command." % new_node.secondary_ip)
2175 a8083063 Iustin Pop
2176 d6a02168 Michael Hanselmann
    node_verify_list = [self.cfg.GetMasterNode()]
2177 5c0527ed Guido Trotter
    node_verify_param = {
2178 5c0527ed Guido Trotter
      'nodelist': [node],
2179 5c0527ed Guido Trotter
      # TODO: do a node-net-test as well?
2180 5c0527ed Guido Trotter
    }
2181 5c0527ed Guido Trotter
2182 72737a7f Iustin Pop
    result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
2183 72737a7f Iustin Pop
                                       self.cfg.GetClusterName())
2184 5c0527ed Guido Trotter
    for verifier in node_verify_list:
2185 f08ce603 Guido Trotter
      if result[verifier].failed or not result[verifier].data:
2186 5c0527ed Guido Trotter
        raise errors.OpExecError("Cannot communicate with %s's node daemon"
2187 5c0527ed Guido Trotter
                                 " for remote verification" % verifier)
2188 781de953 Iustin Pop
      if result[verifier].data['nodelist']:
2189 781de953 Iustin Pop
        for failed in result[verifier].data['nodelist']:
2190 5c0527ed Guido Trotter
          feedback_fn("ssh/hostname verification failed %s -> %s" %
2191 bafc1d90 Iustin Pop
                      (verifier, result[verifier].data['nodelist'][failed]))
2192 5c0527ed Guido Trotter
        raise errors.OpExecError("ssh/hostname verification failed.")
2193 ff98055b Iustin Pop
2194 a8083063 Iustin Pop
    # Distribute updated /etc/hosts and known_hosts to all nodes,
2195 a8083063 Iustin Pop
    # including the node just added
2196 d6a02168 Michael Hanselmann
    myself = self.cfg.GetNodeInfo(self.cfg.GetMasterNode())
2197 102b115b Michael Hanselmann
    dist_nodes = self.cfg.GetNodeList()
2198 102b115b Michael Hanselmann
    if not self.op.readd:
2199 102b115b Michael Hanselmann
      dist_nodes.append(node)
2200 a8083063 Iustin Pop
    if myself.name in dist_nodes:
2201 a8083063 Iustin Pop
      dist_nodes.remove(myself.name)
2202 a8083063 Iustin Pop
2203 9a4f63d1 Iustin Pop
    logging.debug("Copying hosts and known_hosts to all nodes")
2204 107711b0 Michael Hanselmann
    for fname in (constants.ETC_HOSTS, constants.SSH_KNOWN_HOSTS_FILE):
2205 72737a7f Iustin Pop
      result = self.rpc.call_upload_file(dist_nodes, fname)
2206 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
2207 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
2208 9a4f63d1 Iustin Pop
          logging.error("Copy of file %s to node %s failed", fname, to_node)
2209 a8083063 Iustin Pop
2210 d6a02168 Michael Hanselmann
    to_copy = []
2211 2928f08d Guido Trotter
    enabled_hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
2212 ccd905ac Guido Trotter
    if constants.HTS_COPY_VNC_PASSWORD.intersection(enabled_hypervisors):
2213 2a6469d5 Alexander Schreiber
      to_copy.append(constants.VNC_PASSWORD_FILE)
2214 2928f08d Guido Trotter
2215 a8083063 Iustin Pop
    for fname in to_copy:
2216 72737a7f Iustin Pop
      result = self.rpc.call_upload_file([node], fname)
2217 781de953 Iustin Pop
      if result[node].failed or not result[node]:
2218 9a4f63d1 Iustin Pop
        logging.error("Could not copy file %s to node %s", fname, node)
2219 a8083063 Iustin Pop
2220 d8470559 Michael Hanselmann
    if self.op.readd:
2221 d8470559 Michael Hanselmann
      self.context.ReaddNode(new_node)
2222 d8470559 Michael Hanselmann
    else:
2223 d8470559 Michael Hanselmann
      self.context.AddNode(new_node)
2224 a8083063 Iustin Pop
2225 a8083063 Iustin Pop
2226 b31c8676 Iustin Pop
class LUSetNodeParams(LogicalUnit):
2227 b31c8676 Iustin Pop
  """Modifies the parameters of a node.
2228 b31c8676 Iustin Pop

2229 b31c8676 Iustin Pop
  """
2230 b31c8676 Iustin Pop
  HPATH = "node-modify"
2231 b31c8676 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2232 b31c8676 Iustin Pop
  _OP_REQP = ["node_name"]
2233 b31c8676 Iustin Pop
  REQ_BGL = False
2234 b31c8676 Iustin Pop
2235 b31c8676 Iustin Pop
  def CheckArguments(self):
2236 b31c8676 Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2237 b31c8676 Iustin Pop
    if node_name is None:
2238 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2239 b31c8676 Iustin Pop
    self.op.node_name = node_name
2240 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'master_candidate')
2241 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'offline')
2242 c9d443ea Iustin Pop
    _CheckBooleanOpField(self.op, 'drained')
2243 c9d443ea Iustin Pop
    all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
2244 c9d443ea Iustin Pop
    if all_mods.count(None) == 3:
2245 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Please pass at least one modification")
2246 c9d443ea Iustin Pop
    if all_mods.count(True) > 1:
2247 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Can't set the node into more than one"
2248 c9d443ea Iustin Pop
                                 " state at the same time")
2249 b31c8676 Iustin Pop
2250 b31c8676 Iustin Pop
  def ExpandNames(self):
2251 b31c8676 Iustin Pop
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2252 b31c8676 Iustin Pop
2253 b31c8676 Iustin Pop
  def BuildHooksEnv(self):
2254 b31c8676 Iustin Pop
    """Build hooks env.
2255 b31c8676 Iustin Pop

2256 b31c8676 Iustin Pop
    This runs on the master node.
2257 b31c8676 Iustin Pop

2258 b31c8676 Iustin Pop
    """
2259 b31c8676 Iustin Pop
    env = {
2260 b31c8676 Iustin Pop
      "OP_TARGET": self.op.node_name,
2261 b31c8676 Iustin Pop
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2262 3a5ba66a Iustin Pop
      "OFFLINE": str(self.op.offline),
2263 c9d443ea Iustin Pop
      "DRAINED": str(self.op.drained),
2264 b31c8676 Iustin Pop
      }
2265 b31c8676 Iustin Pop
    nl = [self.cfg.GetMasterNode(),
2266 b31c8676 Iustin Pop
          self.op.node_name]
2267 b31c8676 Iustin Pop
    return env, nl, nl
2268 b31c8676 Iustin Pop
2269 b31c8676 Iustin Pop
  def CheckPrereq(self):
2270 b31c8676 Iustin Pop
    """Check prerequisites.
2271 b31c8676 Iustin Pop

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

2274 b31c8676 Iustin Pop
    """
2275 3a5ba66a Iustin Pop
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2276 b31c8676 Iustin Pop
2277 c9d443ea Iustin Pop
    if ((self.op.master_candidate == False or self.op.offline == True or
2278 c9d443ea Iustin Pop
         self.op.drained == True) and node.master_candidate):
2279 3a5ba66a Iustin Pop
      # we will demote the node from master_candidate
2280 3a26773f Iustin Pop
      if self.op.node_name == self.cfg.GetMasterNode():
2281 3a26773f Iustin Pop
        raise errors.OpPrereqError("The master node has to be a"
2282 c9d443ea Iustin Pop
                                   " master candidate, online and not drained")
2283 3e83dd48 Iustin Pop
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2284 3a5ba66a Iustin Pop
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2285 3e83dd48 Iustin Pop
      if num_candidates <= cp_size:
2286 3e83dd48 Iustin Pop
        msg = ("Not enough master candidates (desired"
2287 3e83dd48 Iustin Pop
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2288 3a5ba66a Iustin Pop
        if self.op.force:
2289 3e83dd48 Iustin Pop
          self.LogWarning(msg)
2290 3e83dd48 Iustin Pop
        else:
2291 3e83dd48 Iustin Pop
          raise errors.OpPrereqError(msg)
2292 3e83dd48 Iustin Pop
2293 c9d443ea Iustin Pop
    if (self.op.master_candidate == True and
2294 c9d443ea Iustin Pop
        ((node.offline and not self.op.offline == False) or
2295 c9d443ea Iustin Pop
         (node.drained and not self.op.drained == False))):
2296 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
2297 c9d443ea Iustin Pop
                                 " to master_candidate")
2298 3a5ba66a Iustin Pop
2299 b31c8676 Iustin Pop
    return
2300 b31c8676 Iustin Pop
2301 b31c8676 Iustin Pop
  def Exec(self, feedback_fn):
2302 b31c8676 Iustin Pop
    """Modifies a node.
2303 b31c8676 Iustin Pop

2304 b31c8676 Iustin Pop
    """
2305 3a5ba66a Iustin Pop
    node = self.node
2306 b31c8676 Iustin Pop
2307 b31c8676 Iustin Pop
    result = []
2308 c9d443ea Iustin Pop
    changed_mc = False
2309 b31c8676 Iustin Pop
2310 3a5ba66a Iustin Pop
    if self.op.offline is not None:
2311 3a5ba66a Iustin Pop
      node.offline = self.op.offline
2312 3a5ba66a Iustin Pop
      result.append(("offline", str(self.op.offline)))
2313 c9d443ea Iustin Pop
      if self.op.offline == True:
2314 c9d443ea Iustin Pop
        if node.master_candidate:
2315 c9d443ea Iustin Pop
          node.master_candidate = False
2316 c9d443ea Iustin Pop
          changed_mc = True
2317 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to offline"))
2318 c9d443ea Iustin Pop
        if node.drained:
2319 c9d443ea Iustin Pop
          node.drained = False
2320 c9d443ea Iustin Pop
          result.append(("drained", "clear drained status due to offline"))
2321 3a5ba66a Iustin Pop
2322 b31c8676 Iustin Pop
    if self.op.master_candidate is not None:
2323 b31c8676 Iustin Pop
      node.master_candidate = self.op.master_candidate
2324 c9d443ea Iustin Pop
      changed_mc = True
2325 b31c8676 Iustin Pop
      result.append(("master_candidate", str(self.op.master_candidate)))
2326 56aa9fd5 Iustin Pop
      if self.op.master_candidate == False:
2327 56aa9fd5 Iustin Pop
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2328 0959c824 Iustin Pop
        msg = rrc.RemoteFailMsg()
2329 0959c824 Iustin Pop
        if msg:
2330 0959c824 Iustin Pop
          self.LogWarning("Node failed to demote itself: %s" % msg)
2331 b31c8676 Iustin Pop
2332 c9d443ea Iustin Pop
    if self.op.drained is not None:
2333 c9d443ea Iustin Pop
      node.drained = self.op.drained
2334 82e12743 Iustin Pop
      result.append(("drained", str(self.op.drained)))
2335 c9d443ea Iustin Pop
      if self.op.drained == True:
2336 c9d443ea Iustin Pop
        if node.master_candidate:
2337 c9d443ea Iustin Pop
          node.master_candidate = False
2338 c9d443ea Iustin Pop
          changed_mc = True
2339 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to drain"))
2340 c9d443ea Iustin Pop
        if node.offline:
2341 c9d443ea Iustin Pop
          node.offline = False
2342 c9d443ea Iustin Pop
          result.append(("offline", "clear offline status due to drain"))
2343 c9d443ea Iustin Pop
2344 b31c8676 Iustin Pop
    # this will trigger configuration file update, if needed
2345 b31c8676 Iustin Pop
    self.cfg.Update(node)
2346 b31c8676 Iustin Pop
    # this will trigger job queue propagation or cleanup
2347 c9d443ea Iustin Pop
    if changed_mc:
2348 3a26773f Iustin Pop
      self.context.ReaddNode(node)
2349 b31c8676 Iustin Pop
2350 b31c8676 Iustin Pop
    return result
2351 b31c8676 Iustin Pop
2352 b31c8676 Iustin Pop
2353 a8083063 Iustin Pop
class LUQueryClusterInfo(NoHooksLU):
2354 a8083063 Iustin Pop
  """Query cluster configuration.
2355 a8083063 Iustin Pop

2356 a8083063 Iustin Pop
  """
2357 a8083063 Iustin Pop
  _OP_REQP = []
2358 642339cf Guido Trotter
  REQ_BGL = False
2359 642339cf Guido Trotter
2360 642339cf Guido Trotter
  def ExpandNames(self):
2361 642339cf Guido Trotter
    self.needed_locks = {}
2362 a8083063 Iustin Pop
2363 a8083063 Iustin Pop
  def CheckPrereq(self):
2364 a8083063 Iustin Pop
    """No prerequsites needed for this LU.
2365 a8083063 Iustin Pop

2366 a8083063 Iustin Pop
    """
2367 a8083063 Iustin Pop
    pass
2368 a8083063 Iustin Pop
2369 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2370 a8083063 Iustin Pop
    """Return cluster config.
2371 a8083063 Iustin Pop

2372 a8083063 Iustin Pop
    """
2373 469f88e1 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
2374 a8083063 Iustin Pop
    result = {
2375 a8083063 Iustin Pop
      "software_version": constants.RELEASE_VERSION,
2376 a8083063 Iustin Pop
      "protocol_version": constants.PROTOCOL_VERSION,
2377 a8083063 Iustin Pop
      "config_version": constants.CONFIG_VERSION,
2378 a8083063 Iustin Pop
      "os_api_version": constants.OS_API_VERSION,
2379 a8083063 Iustin Pop
      "export_version": constants.EXPORT_VERSION,
2380 a8083063 Iustin Pop
      "architecture": (platform.architecture()[0], platform.machine()),
2381 469f88e1 Iustin Pop
      "name": cluster.cluster_name,
2382 469f88e1 Iustin Pop
      "master": cluster.master_node,
2383 02691904 Alexander Schreiber
      "default_hypervisor": cluster.default_hypervisor,
2384 469f88e1 Iustin Pop
      "enabled_hypervisors": cluster.enabled_hypervisors,
2385 7a735d6a Guido Trotter
      "hvparams": dict([(hypervisor, cluster.hvparams[hypervisor])
2386 7a735d6a Guido Trotter
                        for hypervisor in cluster.enabled_hypervisors]),
2387 469f88e1 Iustin Pop
      "beparams": cluster.beparams,
2388 4b7735f9 Iustin Pop
      "candidate_pool_size": cluster.candidate_pool_size,
2389 a8083063 Iustin Pop
      }
2390 a8083063 Iustin Pop
2391 a8083063 Iustin Pop
    return result
2392 a8083063 Iustin Pop
2393 a8083063 Iustin Pop
2394 ae5849b5 Michael Hanselmann
class LUQueryConfigValues(NoHooksLU):
2395 ae5849b5 Michael Hanselmann
  """Return configuration values.
2396 a8083063 Iustin Pop

2397 a8083063 Iustin Pop
  """
2398 a8083063 Iustin Pop
  _OP_REQP = []
2399 642339cf Guido Trotter
  REQ_BGL = False
2400 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet()
2401 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2402 642339cf Guido Trotter
2403 642339cf Guido Trotter
  def ExpandNames(self):
2404 642339cf Guido Trotter
    self.needed_locks = {}
2405 a8083063 Iustin Pop
2406 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2407 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2408 ae5849b5 Michael Hanselmann
                       selected=self.op.output_fields)
2409 ae5849b5 Michael Hanselmann
2410 a8083063 Iustin Pop
  def CheckPrereq(self):
2411 a8083063 Iustin Pop
    """No prerequisites.
2412 a8083063 Iustin Pop

2413 a8083063 Iustin Pop
    """
2414 a8083063 Iustin Pop
    pass
2415 a8083063 Iustin Pop
2416 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2417 a8083063 Iustin Pop
    """Dump a representation of the cluster config to the standard output.
2418 a8083063 Iustin Pop

2419 a8083063 Iustin Pop
    """
2420 ae5849b5 Michael Hanselmann
    values = []
2421 ae5849b5 Michael Hanselmann
    for field in self.op.output_fields:
2422 ae5849b5 Michael Hanselmann
      if field == "cluster_name":
2423 3ccafd0e Iustin Pop
        entry = self.cfg.GetClusterName()
2424 ae5849b5 Michael Hanselmann
      elif field == "master_node":
2425 3ccafd0e Iustin Pop
        entry = self.cfg.GetMasterNode()
2426 3ccafd0e Iustin Pop
      elif field == "drain_flag":
2427 3ccafd0e Iustin Pop
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2428 ae5849b5 Michael Hanselmann
      else:
2429 ae5849b5 Michael Hanselmann
        raise errors.ParameterError(field)
2430 3ccafd0e Iustin Pop
      values.append(entry)
2431 ae5849b5 Michael Hanselmann
    return values
2432 a8083063 Iustin Pop
2433 a8083063 Iustin Pop
2434 a8083063 Iustin Pop
class LUActivateInstanceDisks(NoHooksLU):
2435 a8083063 Iustin Pop
  """Bring up an instance's disks.
2436 a8083063 Iustin Pop

2437 a8083063 Iustin Pop
  """
2438 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2439 f22a8ba3 Guido Trotter
  REQ_BGL = False
2440 f22a8ba3 Guido Trotter
2441 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2442 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2443 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2444 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2445 f22a8ba3 Guido Trotter
2446 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2447 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2448 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2449 a8083063 Iustin Pop
2450 a8083063 Iustin Pop
  def CheckPrereq(self):
2451 a8083063 Iustin Pop
    """Check prerequisites.
2452 a8083063 Iustin Pop

2453 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2454 a8083063 Iustin Pop

2455 a8083063 Iustin Pop
    """
2456 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2457 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2458 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2459 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2460 a8083063 Iustin Pop
2461 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2462 a8083063 Iustin Pop
    """Activate the disks.
2463 a8083063 Iustin Pop

2464 a8083063 Iustin Pop
    """
2465 b9bddb6b Iustin Pop
    disks_ok, disks_info = _AssembleInstanceDisks(self, self.instance)
2466 a8083063 Iustin Pop
    if not disks_ok:
2467 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot activate block devices")
2468 a8083063 Iustin Pop
2469 a8083063 Iustin Pop
    return disks_info
2470 a8083063 Iustin Pop
2471 a8083063 Iustin Pop
2472 b9bddb6b Iustin Pop
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False):
2473 a8083063 Iustin Pop
  """Prepare the block devices for an instance.
2474 a8083063 Iustin Pop

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

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

2488 a8083063 Iustin Pop
  """
2489 a8083063 Iustin Pop
  device_info = []
2490 a8083063 Iustin Pop
  disks_ok = True
2491 fdbd668d Iustin Pop
  iname = instance.name
2492 fdbd668d Iustin Pop
  # With the two passes mechanism we try to reduce the window of
2493 fdbd668d Iustin Pop
  # opportunity for the race condition of switching DRBD to primary
2494 fdbd668d Iustin Pop
  # before handshaking occured, but we do not eliminate it
2495 fdbd668d Iustin Pop
2496 fdbd668d Iustin Pop
  # The proper fix would be to wait (with some limits) until the
2497 fdbd668d Iustin Pop
  # connection has been made and drbd transitions from WFConnection
2498 fdbd668d Iustin Pop
  # into any other network-connected state (Connected, SyncTarget,
2499 fdbd668d Iustin Pop
  # SyncSource, etc.)
2500 fdbd668d Iustin Pop
2501 fdbd668d Iustin Pop
  # 1st pass, assemble on all nodes in secondary mode
2502 a8083063 Iustin Pop
  for inst_disk in instance.disks:
2503 a8083063 Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2504 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2505 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
2506 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2507 53c14ef1 Iustin Pop
      if msg:
2508 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2509 53c14ef1 Iustin Pop
                           " (is_primary=False, pass=1): %s",
2510 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2511 fdbd668d Iustin Pop
        if not ignore_secondaries:
2512 a8083063 Iustin Pop
          disks_ok = False
2513 fdbd668d Iustin Pop
2514 fdbd668d Iustin Pop
  # FIXME: race condition on drbd migration to primary
2515 fdbd668d Iustin Pop
2516 fdbd668d Iustin Pop
  # 2nd pass, do only the primary node
2517 fdbd668d Iustin Pop
  for inst_disk in instance.disks:
2518 fdbd668d Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2519 fdbd668d Iustin Pop
      if node != instance.primary_node:
2520 fdbd668d Iustin Pop
        continue
2521 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2522 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
2523 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2524 53c14ef1 Iustin Pop
      if msg:
2525 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2526 53c14ef1 Iustin Pop
                           " (is_primary=True, pass=2): %s",
2527 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2528 fdbd668d Iustin Pop
        disks_ok = False
2529 1dff8e07 Iustin Pop
    device_info.append((instance.primary_node, inst_disk.iv_name,
2530 1dff8e07 Iustin Pop
                        result.payload))
2531 a8083063 Iustin Pop
2532 b352ab5b Iustin Pop
  # leave the disks configured for the primary node
2533 b352ab5b Iustin Pop
  # this is a workaround that would be fixed better by
2534 b352ab5b Iustin Pop
  # improving the logical/physical id handling
2535 b352ab5b Iustin Pop
  for disk in instance.disks:
2536 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(disk, instance.primary_node)
2537 b352ab5b Iustin Pop
2538 a8083063 Iustin Pop
  return disks_ok, device_info
2539 a8083063 Iustin Pop
2540 a8083063 Iustin Pop
2541 b9bddb6b Iustin Pop
def _StartInstanceDisks(lu, instance, force):
2542 3ecf6786 Iustin Pop
  """Start the disks of an instance.
2543 3ecf6786 Iustin Pop

2544 3ecf6786 Iustin Pop
  """
2545 b9bddb6b Iustin Pop
  disks_ok, dummy = _AssembleInstanceDisks(lu, instance,
2546 fe7b0351 Michael Hanselmann
                                           ignore_secondaries=force)
2547 fe7b0351 Michael Hanselmann
  if not disks_ok:
2548 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(lu, instance)
2549 fe7b0351 Michael Hanselmann
    if force is not None and not force:
2550 86d9d3bb Iustin Pop
      lu.proc.LogWarning("", hint="If the message above refers to a"
2551 86d9d3bb Iustin Pop
                         " secondary node,"
2552 86d9d3bb Iustin Pop
                         " you can retry the operation using '--force'.")
2553 3ecf6786 Iustin Pop
    raise errors.OpExecError("Disk consistency error")
2554 fe7b0351 Michael Hanselmann
2555 fe7b0351 Michael Hanselmann
2556 a8083063 Iustin Pop
class LUDeactivateInstanceDisks(NoHooksLU):
2557 a8083063 Iustin Pop
  """Shutdown an instance's disks.
2558 a8083063 Iustin Pop

2559 a8083063 Iustin Pop
  """
2560 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2561 f22a8ba3 Guido Trotter
  REQ_BGL = False
2562 f22a8ba3 Guido Trotter
2563 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2564 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2565 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2566 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2567 f22a8ba3 Guido Trotter
2568 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2569 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2570 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2571 a8083063 Iustin Pop
2572 a8083063 Iustin Pop
  def CheckPrereq(self):
2573 a8083063 Iustin Pop
    """Check prerequisites.
2574 a8083063 Iustin Pop

2575 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2576 a8083063 Iustin Pop

2577 a8083063 Iustin Pop
    """
2578 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2579 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2580 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2581 a8083063 Iustin Pop
2582 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2583 a8083063 Iustin Pop
    """Deactivate the disks
2584 a8083063 Iustin Pop

2585 a8083063 Iustin Pop
    """
2586 a8083063 Iustin Pop
    instance = self.instance
2587 b9bddb6b Iustin Pop
    _SafeShutdownInstanceDisks(self, instance)
2588 a8083063 Iustin Pop
2589 a8083063 Iustin Pop
2590 b9bddb6b Iustin Pop
def _SafeShutdownInstanceDisks(lu, instance):
2591 155d6c75 Guido Trotter
  """Shutdown block devices of an instance.
2592 155d6c75 Guido Trotter

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

2596 155d6c75 Guido Trotter
  """
2597 72737a7f Iustin Pop
  ins_l = lu.rpc.call_instance_list([instance.primary_node],
2598 72737a7f Iustin Pop
                                      [instance.hypervisor])
2599 155d6c75 Guido Trotter
  ins_l = ins_l[instance.primary_node]
2600 781de953 Iustin Pop
  if ins_l.failed or not isinstance(ins_l.data, list):
2601 155d6c75 Guido Trotter
    raise errors.OpExecError("Can't contact node '%s'" %
2602 155d6c75 Guido Trotter
                             instance.primary_node)
2603 155d6c75 Guido Trotter
2604 781de953 Iustin Pop
  if instance.name in ins_l.data:
2605 155d6c75 Guido Trotter
    raise errors.OpExecError("Instance is running, can't shutdown"
2606 155d6c75 Guido Trotter
                             " block devices.")
2607 155d6c75 Guido Trotter
2608 b9bddb6b Iustin Pop
  _ShutdownInstanceDisks(lu, instance)
2609 a8083063 Iustin Pop
2610 a8083063 Iustin Pop
2611 b9bddb6b Iustin Pop
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2612 a8083063 Iustin Pop
  """Shutdown block devices of an instance.
2613 a8083063 Iustin Pop

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

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

2619 a8083063 Iustin Pop
  """
2620 cacfd1fd Iustin Pop
  all_result = True
2621 a8083063 Iustin Pop
  for disk in instance.disks:
2622 a8083063 Iustin Pop
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2623 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(top_disk, node)
2624 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2625 cacfd1fd Iustin Pop
      msg = result.RemoteFailMsg()
2626 cacfd1fd Iustin Pop
      if msg:
2627 cacfd1fd Iustin Pop
        lu.LogWarning("Could not shutdown block device %s on node %s: %s",
2628 cacfd1fd Iustin Pop
                      disk.iv_name, node, msg)
2629 a8083063 Iustin Pop
        if not ignore_primary or node != instance.primary_node:
2630 cacfd1fd Iustin Pop
          all_result = False
2631 cacfd1fd Iustin Pop
  return all_result
2632 a8083063 Iustin Pop
2633 a8083063 Iustin Pop
2634 9ca87a96 Iustin Pop
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2635 d4f16fd9 Iustin Pop
  """Checks if a node has enough free memory.
2636 d4f16fd9 Iustin Pop

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

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

2655 d4f16fd9 Iustin Pop
  """
2656 9ca87a96 Iustin Pop
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2657 781de953 Iustin Pop
  nodeinfo[node].Raise()
2658 781de953 Iustin Pop
  free_mem = nodeinfo[node].data.get('memory_free')
2659 d4f16fd9 Iustin Pop
  if not isinstance(free_mem, int):
2660 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2661 d4f16fd9 Iustin Pop
                             " was '%s'" % (node, free_mem))
2662 d4f16fd9 Iustin Pop
  if requested > free_mem:
2663 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2664 d4f16fd9 Iustin Pop
                             " needed %s MiB, available %s MiB" %
2665 d4f16fd9 Iustin Pop
                             (node, reason, requested, free_mem))
2666 d4f16fd9 Iustin Pop
2667 d4f16fd9 Iustin Pop
2668 a8083063 Iustin Pop
class LUStartupInstance(LogicalUnit):
2669 a8083063 Iustin Pop
  """Starts an instance.
2670 a8083063 Iustin Pop

2671 a8083063 Iustin Pop
  """
2672 a8083063 Iustin Pop
  HPATH = "instance-start"
2673 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2674 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "force"]
2675 e873317a Guido Trotter
  REQ_BGL = False
2676 e873317a Guido Trotter
2677 e873317a Guido Trotter
  def ExpandNames(self):
2678 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2679 a8083063 Iustin Pop
2680 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2681 a8083063 Iustin Pop
    """Build hooks env.
2682 a8083063 Iustin Pop

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

2685 a8083063 Iustin Pop
    """
2686 a8083063 Iustin Pop
    env = {
2687 a8083063 Iustin Pop
      "FORCE": self.op.force,
2688 a8083063 Iustin Pop
      }
2689 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2690 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2691 a8083063 Iustin Pop
    return env, nl, nl
2692 a8083063 Iustin Pop
2693 a8083063 Iustin Pop
  def CheckPrereq(self):
2694 a8083063 Iustin Pop
    """Check prerequisites.
2695 a8083063 Iustin Pop

2696 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2697 a8083063 Iustin Pop

2698 a8083063 Iustin Pop
    """
2699 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2700 e873317a Guido Trotter
    assert self.instance is not None, \
2701 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2702 a8083063 Iustin Pop
2703 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2704 7527a8a4 Iustin Pop
2705 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
2706 a8083063 Iustin Pop
    # check bridges existance
2707 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2708 a8083063 Iustin Pop
2709 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, instance.primary_node,
2710 d4f16fd9 Iustin Pop
                         "starting instance %s" % instance.name,
2711 338e51e8 Iustin Pop
                         bep[constants.BE_MEMORY], instance.hypervisor)
2712 d4f16fd9 Iustin Pop
2713 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2714 a8083063 Iustin Pop
    """Start the instance.
2715 a8083063 Iustin Pop

2716 a8083063 Iustin Pop
    """
2717 a8083063 Iustin Pop
    instance = self.instance
2718 a8083063 Iustin Pop
    force = self.op.force
2719 a8083063 Iustin Pop
    extra_args = getattr(self.op, "extra_args", "")
2720 a8083063 Iustin Pop
2721 fe482621 Iustin Pop
    self.cfg.MarkInstanceUp(instance.name)
2722 fe482621 Iustin Pop
2723 a8083063 Iustin Pop
    node_current = instance.primary_node
2724 a8083063 Iustin Pop
2725 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, instance, force)
2726 a8083063 Iustin Pop
2727 781de953 Iustin Pop
    result = self.rpc.call_instance_start(node_current, instance, extra_args)
2728 dd279568 Iustin Pop
    msg = result.RemoteFailMsg()
2729 dd279568 Iustin Pop
    if msg:
2730 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2731 dd279568 Iustin Pop
      raise errors.OpExecError("Could not start instance: %s" % msg)
2732 a8083063 Iustin Pop
2733 a8083063 Iustin Pop
2734 bf6929a2 Alexander Schreiber
class LURebootInstance(LogicalUnit):
2735 bf6929a2 Alexander Schreiber
  """Reboot an instance.
2736 bf6929a2 Alexander Schreiber

2737 bf6929a2 Alexander Schreiber
  """
2738 bf6929a2 Alexander Schreiber
  HPATH = "instance-reboot"
2739 bf6929a2 Alexander Schreiber
  HTYPE = constants.HTYPE_INSTANCE
2740 bf6929a2 Alexander Schreiber
  _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
2741 e873317a Guido Trotter
  REQ_BGL = False
2742 e873317a Guido Trotter
2743 e873317a Guido Trotter
  def ExpandNames(self):
2744 0fcc5db3 Guido Trotter
    if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
2745 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2746 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL]:
2747 0fcc5db3 Guido Trotter
      raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
2748 0fcc5db3 Guido Trotter
                                  (constants.INSTANCE_REBOOT_SOFT,
2749 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2750 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL))
2751 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2752 bf6929a2 Alexander Schreiber
2753 bf6929a2 Alexander Schreiber
  def BuildHooksEnv(self):
2754 bf6929a2 Alexander Schreiber
    """Build hooks env.
2755 bf6929a2 Alexander Schreiber

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

2758 bf6929a2 Alexander Schreiber
    """
2759 bf6929a2 Alexander Schreiber
    env = {
2760 bf6929a2 Alexander Schreiber
      "IGNORE_SECONDARIES": self.op.ignore_secondaries,
2761 bf6929a2 Alexander Schreiber
      }
2762 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2763 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2764 bf6929a2 Alexander Schreiber
    return env, nl, nl
2765 bf6929a2 Alexander Schreiber
2766 bf6929a2 Alexander Schreiber
  def CheckPrereq(self):
2767 bf6929a2 Alexander Schreiber
    """Check prerequisites.
2768 bf6929a2 Alexander Schreiber

2769 bf6929a2 Alexander Schreiber
    This checks that the instance is in the cluster.
2770 bf6929a2 Alexander Schreiber

2771 bf6929a2 Alexander Schreiber
    """
2772 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2773 e873317a Guido Trotter
    assert self.instance is not None, \
2774 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2775 bf6929a2 Alexander Schreiber
2776 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2777 7527a8a4 Iustin Pop
2778 bf6929a2 Alexander Schreiber
    # check bridges existance
2779 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2780 bf6929a2 Alexander Schreiber
2781 bf6929a2 Alexander Schreiber
  def Exec(self, feedback_fn):
2782 bf6929a2 Alexander Schreiber
    """Reboot the instance.
2783 bf6929a2 Alexander Schreiber

2784 bf6929a2 Alexander Schreiber
    """
2785 bf6929a2 Alexander Schreiber
    instance = self.instance
2786 bf6929a2 Alexander Schreiber
    ignore_secondaries = self.op.ignore_secondaries
2787 bf6929a2 Alexander Schreiber
    reboot_type = self.op.reboot_type
2788 bf6929a2 Alexander Schreiber
    extra_args = getattr(self.op, "extra_args", "")
2789 bf6929a2 Alexander Schreiber
2790 bf6929a2 Alexander Schreiber
    node_current = instance.primary_node
2791 bf6929a2 Alexander Schreiber
2792 bf6929a2 Alexander Schreiber
    if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
2793 bf6929a2 Alexander Schreiber
                       constants.INSTANCE_REBOOT_HARD]:
2794 781de953 Iustin Pop
      result = self.rpc.call_instance_reboot(node_current, instance,
2795 781de953 Iustin Pop
                                             reboot_type, extra_args)
2796 489fcbe9 Iustin Pop
      msg = result.RemoteFailMsg()
2797 489fcbe9 Iustin Pop
      if msg:
2798 489fcbe9 Iustin Pop
        raise errors.OpExecError("Could not reboot instance: %s" % msg)
2799 bf6929a2 Alexander Schreiber
    else:
2800 1fae010f Iustin Pop
      result = self.rpc.call_instance_shutdown(node_current, instance)
2801 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
2802 1fae010f Iustin Pop
      if msg:
2803 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance for"
2804 1fae010f Iustin Pop
                                 " full reboot: %s" % msg)
2805 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2806 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, ignore_secondaries)
2807 781de953 Iustin Pop
      result = self.rpc.call_instance_start(node_current, instance, extra_args)
2808 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
2809 dd279568 Iustin Pop
      if msg:
2810 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
2811 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance for"
2812 dd279568 Iustin Pop
                                 " full reboot: %s" % msg)
2813 bf6929a2 Alexander Schreiber
2814 bf6929a2 Alexander Schreiber
    self.cfg.MarkInstanceUp(instance.name)
2815 bf6929a2 Alexander Schreiber
2816 bf6929a2 Alexander Schreiber
2817 a8083063 Iustin Pop
class LUShutdownInstance(LogicalUnit):
2818 a8083063 Iustin Pop
  """Shutdown an instance.
2819 a8083063 Iustin Pop

2820 a8083063 Iustin Pop
  """
2821 a8083063 Iustin Pop
  HPATH = "instance-stop"
2822 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2823 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2824 e873317a Guido Trotter
  REQ_BGL = False
2825 e873317a Guido Trotter
2826 e873317a Guido Trotter
  def ExpandNames(self):
2827 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2828 a8083063 Iustin Pop
2829 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2830 a8083063 Iustin Pop
    """Build hooks env.
2831 a8083063 Iustin Pop

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

2834 a8083063 Iustin Pop
    """
2835 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2836 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2837 a8083063 Iustin Pop
    return env, nl, nl
2838 a8083063 Iustin Pop
2839 a8083063 Iustin Pop
  def CheckPrereq(self):
2840 a8083063 Iustin Pop
    """Check prerequisites.
2841 a8083063 Iustin Pop

2842 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2843 a8083063 Iustin Pop

2844 a8083063 Iustin Pop
    """
2845 e873317a Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2846 e873317a Guido Trotter
    assert self.instance is not None, \
2847 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2848 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2849 a8083063 Iustin Pop
2850 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2851 a8083063 Iustin Pop
    """Shutdown the instance.
2852 a8083063 Iustin Pop

2853 a8083063 Iustin Pop
    """
2854 a8083063 Iustin Pop
    instance = self.instance
2855 a8083063 Iustin Pop
    node_current = instance.primary_node
2856 fe482621 Iustin Pop
    self.cfg.MarkInstanceDown(instance.name)
2857 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(node_current, instance)
2858 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
2859 1fae010f Iustin Pop
    if msg:
2860 1fae010f Iustin Pop
      self.proc.LogWarning("Could not shutdown instance: %s" % msg)
2861 a8083063 Iustin Pop
2862 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(self, instance)
2863 a8083063 Iustin Pop
2864 a8083063 Iustin Pop
2865 fe7b0351 Michael Hanselmann
class LUReinstallInstance(LogicalUnit):
2866 fe7b0351 Michael Hanselmann
  """Reinstall an instance.
2867 fe7b0351 Michael Hanselmann

2868 fe7b0351 Michael Hanselmann
  """
2869 fe7b0351 Michael Hanselmann
  HPATH = "instance-reinstall"
2870 fe7b0351 Michael Hanselmann
  HTYPE = constants.HTYPE_INSTANCE
2871 fe7b0351 Michael Hanselmann
  _OP_REQP = ["instance_name"]
2872 4e0b4d2d Guido Trotter
  REQ_BGL = False
2873 4e0b4d2d Guido Trotter
2874 4e0b4d2d Guido Trotter
  def ExpandNames(self):
2875 4e0b4d2d Guido Trotter
    self._ExpandAndLockInstance()
2876 fe7b0351 Michael Hanselmann
2877 fe7b0351 Michael Hanselmann
  def BuildHooksEnv(self):
2878 fe7b0351 Michael Hanselmann
    """Build hooks env.
2879 fe7b0351 Michael Hanselmann

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

2882 fe7b0351 Michael Hanselmann
    """
2883 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2884 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2885 fe7b0351 Michael Hanselmann
    return env, nl, nl
2886 fe7b0351 Michael Hanselmann
2887 fe7b0351 Michael Hanselmann
  def CheckPrereq(self):
2888 fe7b0351 Michael Hanselmann
    """Check prerequisites.
2889 fe7b0351 Michael Hanselmann

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

2892 fe7b0351 Michael Hanselmann
    """
2893 4e0b4d2d Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2894 4e0b4d2d Guido Trotter
    assert instance is not None, \
2895 4e0b4d2d Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2896 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2897 4e0b4d2d Guido Trotter
2898 fe7b0351 Michael Hanselmann
    if instance.disk_template == constants.DT_DISKLESS:
2899 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' has no disks" %
2900 3ecf6786 Iustin Pop
                                 self.op.instance_name)
2901 0d68c45d Iustin Pop
    if instance.admin_up:
2902 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2903 3ecf6786 Iustin Pop
                                 self.op.instance_name)
2904 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2905 72737a7f Iustin Pop
                                              instance.name,
2906 72737a7f Iustin Pop
                                              instance.hypervisor)
2907 781de953 Iustin Pop
    if remote_info.failed or remote_info.data:
2908 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2909 3ecf6786 Iustin Pop
                                 (self.op.instance_name,
2910 3ecf6786 Iustin Pop
                                  instance.primary_node))
2911 d0834de3 Michael Hanselmann
2912 d0834de3 Michael Hanselmann
    self.op.os_type = getattr(self.op, "os_type", None)
2913 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
2914 d0834de3 Michael Hanselmann
      # OS verification
2915 d0834de3 Michael Hanselmann
      pnode = self.cfg.GetNodeInfo(
2916 d0834de3 Michael Hanselmann
        self.cfg.ExpandNodeName(instance.primary_node))
2917 d0834de3 Michael Hanselmann
      if pnode is None:
2918 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Primary node '%s' is unknown" %
2919 3ecf6786 Iustin Pop
                                   self.op.pnode)
2920 781de953 Iustin Pop
      result = self.rpc.call_os_get(pnode.name, self.op.os_type)
2921 781de953 Iustin Pop
      result.Raise()
2922 781de953 Iustin Pop
      if not isinstance(result.data, objects.OS):
2923 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("OS '%s' not in supported OS list for"
2924 3ecf6786 Iustin Pop
                                   " primary node"  % self.op.os_type)
2925 d0834de3 Michael Hanselmann
2926 fe7b0351 Michael Hanselmann
    self.instance = instance
2927 fe7b0351 Michael Hanselmann
2928 fe7b0351 Michael Hanselmann
  def Exec(self, feedback_fn):
2929 fe7b0351 Michael Hanselmann
    """Reinstall the instance.
2930 fe7b0351 Michael Hanselmann

2931 fe7b0351 Michael Hanselmann
    """
2932 fe7b0351 Michael Hanselmann
    inst = self.instance
2933 fe7b0351 Michael Hanselmann
2934 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
2935 d0834de3 Michael Hanselmann
      feedback_fn("Changing OS to '%s'..." % self.op.os_type)
2936 d0834de3 Michael Hanselmann
      inst.os = self.op.os_type
2937 97abc79f Iustin Pop
      self.cfg.Update(inst)
2938 d0834de3 Michael Hanselmann
2939 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
2940 fe7b0351 Michael Hanselmann
    try:
2941 fe7b0351 Michael Hanselmann
      feedback_fn("Running the instance OS create scripts...")
2942 781de953 Iustin Pop
      result = self.rpc.call_instance_os_add(inst.primary_node, inst)
2943 20e01edd Iustin Pop
      msg = result.RemoteFailMsg()
2944 20e01edd Iustin Pop
      if msg:
2945 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Could not install OS for instance %s"
2946 20e01edd Iustin Pop
                                 " on node %s: %s" %
2947 20e01edd Iustin Pop
                                 (inst.name, inst.primary_node, msg))
2948 fe7b0351 Michael Hanselmann
    finally:
2949 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
2950 fe7b0351 Michael Hanselmann
2951 fe7b0351 Michael Hanselmann
2952 decd5f45 Iustin Pop
class LURenameInstance(LogicalUnit):
2953 decd5f45 Iustin Pop
  """Rename an instance.
2954 decd5f45 Iustin Pop

2955 decd5f45 Iustin Pop
  """
2956 decd5f45 Iustin Pop
  HPATH = "instance-rename"
2957 decd5f45 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2958 decd5f45 Iustin Pop
  _OP_REQP = ["instance_name", "new_name"]
2959 decd5f45 Iustin Pop
2960 decd5f45 Iustin Pop
  def BuildHooksEnv(self):
2961 decd5f45 Iustin Pop
    """Build hooks env.
2962 decd5f45 Iustin Pop

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

2965 decd5f45 Iustin Pop
    """
2966 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2967 decd5f45 Iustin Pop
    env["INSTANCE_NEW_NAME"] = self.op.new_name
2968 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2969 decd5f45 Iustin Pop
    return env, nl, nl
2970 decd5f45 Iustin Pop
2971 decd5f45 Iustin Pop
  def CheckPrereq(self):
2972 decd5f45 Iustin Pop
    """Check prerequisites.
2973 decd5f45 Iustin Pop

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

2976 decd5f45 Iustin Pop
    """
2977 decd5f45 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
2978 decd5f45 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
2979 decd5f45 Iustin Pop
    if instance is None:
2980 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
2981 decd5f45 Iustin Pop
                                 self.op.instance_name)
2982 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2983 7527a8a4 Iustin Pop
2984 0d68c45d Iustin Pop
    if instance.admin_up:
2985 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2986 decd5f45 Iustin Pop
                                 self.op.instance_name)
2987 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2988 72737a7f Iustin Pop
                                              instance.name,
2989 72737a7f Iustin Pop
                                              instance.hypervisor)
2990 781de953 Iustin Pop
    remote_info.Raise()
2991 781de953 Iustin Pop
    if remote_info.data:
2992 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2993 decd5f45 Iustin Pop
                                 (self.op.instance_name,
2994 decd5f45 Iustin Pop
                                  instance.primary_node))
2995 decd5f45 Iustin Pop
    self.instance = instance
2996 decd5f45 Iustin Pop
2997 decd5f45 Iustin Pop
    # new name verification
2998 89e1fc26 Iustin Pop
    name_info = utils.HostInfo(self.op.new_name)
2999 decd5f45 Iustin Pop
3000 89e1fc26 Iustin Pop
    self.op.new_name = new_name = name_info.name
3001 7bde3275 Guido Trotter
    instance_list = self.cfg.GetInstanceList()
3002 7bde3275 Guido Trotter
    if new_name in instance_list:
3003 7bde3275 Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
3004 c09f363f Manuel Franceschini
                                 new_name)
3005 7bde3275 Guido Trotter
3006 decd5f45 Iustin Pop
    if not getattr(self.op, "ignore_ip", False):
3007 937f983d Guido Trotter
      if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
3008 decd5f45 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
3009 89e1fc26 Iustin Pop
                                   (name_info.ip, new_name))
3010 decd5f45 Iustin Pop
3011 decd5f45 Iustin Pop
3012 decd5f45 Iustin Pop
  def Exec(self, feedback_fn):
3013 decd5f45 Iustin Pop
    """Reinstall the instance.
3014 decd5f45 Iustin Pop

3015 decd5f45 Iustin Pop
    """
3016 decd5f45 Iustin Pop
    inst = self.instance
3017 decd5f45 Iustin Pop
    old_name = inst.name
3018 decd5f45 Iustin Pop
3019 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3020 b23c4333 Manuel Franceschini
      old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3021 b23c4333 Manuel Franceschini
3022 decd5f45 Iustin Pop
    self.cfg.RenameInstance(inst.name, self.op.new_name)
3023 74b5913f Guido Trotter
    # Change the instance lock. This is definitely safe while we hold the BGL
3024 cb4e8387 Iustin Pop
    self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
3025 74b5913f Guido Trotter
    self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
3026 decd5f45 Iustin Pop
3027 decd5f45 Iustin Pop
    # re-read the instance from the configuration after rename
3028 decd5f45 Iustin Pop
    inst = self.cfg.GetInstanceInfo(self.op.new_name)
3029 decd5f45 Iustin Pop
3030 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3031 b23c4333 Manuel Franceschini
      new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3032 72737a7f Iustin Pop
      result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
3033 72737a7f Iustin Pop
                                                     old_file_storage_dir,
3034 72737a7f Iustin Pop
                                                     new_file_storage_dir)
3035 781de953 Iustin Pop
      result.Raise()
3036 781de953 Iustin Pop
      if not result.data:
3037 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not connect to node '%s' to rename"
3038 b23c4333 Manuel Franceschini
                                 " directory '%s' to '%s' (but the instance"
3039 b23c4333 Manuel Franceschini
                                 " has been renamed in Ganeti)" % (
3040 b23c4333 Manuel Franceschini
                                 inst.primary_node, old_file_storage_dir,
3041 b23c4333 Manuel Franceschini
                                 new_file_storage_dir))
3042 b23c4333 Manuel Franceschini
3043 781de953 Iustin Pop
      if not result.data[0]:
3044 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not rename directory '%s' to '%s'"
3045 b23c4333 Manuel Franceschini
                                 " (but the instance has been renamed in"
3046 b23c4333 Manuel Franceschini
                                 " Ganeti)" % (old_file_storage_dir,
3047 b23c4333 Manuel Franceschini
                                               new_file_storage_dir))
3048 b23c4333 Manuel Franceschini
3049 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
3050 decd5f45 Iustin Pop
    try:
3051 781de953 Iustin Pop
      result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
3052 781de953 Iustin Pop
                                                 old_name)
3053 96841384 Iustin Pop
      msg = result.RemoteFailMsg()
3054 96841384 Iustin Pop
      if msg:
3055 6291574d Alexander Schreiber
        msg = ("Could not run OS rename script for instance %s on node %s"
3056 96841384 Iustin Pop
               " (but the instance has been renamed in Ganeti): %s" %
3057 96841384 Iustin Pop
               (inst.name, inst.primary_node, msg))
3058 86d9d3bb Iustin Pop
        self.proc.LogWarning(msg)
3059 decd5f45 Iustin Pop
    finally:
3060 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3061 decd5f45 Iustin Pop
3062 decd5f45 Iustin Pop
3063 a8083063 Iustin Pop
class LURemoveInstance(LogicalUnit):
3064 a8083063 Iustin Pop
  """Remove an instance.
3065 a8083063 Iustin Pop

3066 a8083063 Iustin Pop
  """
3067 a8083063 Iustin Pop
  HPATH = "instance-remove"
3068 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3069 5c54b832 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_failures"]
3070 cf472233 Guido Trotter
  REQ_BGL = False
3071 cf472233 Guido Trotter
3072 cf472233 Guido Trotter
  def ExpandNames(self):
3073 cf472233 Guido Trotter
    self._ExpandAndLockInstance()
3074 cf472233 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3075 cf472233 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3076 cf472233 Guido Trotter
3077 cf472233 Guido Trotter
  def DeclareLocks(self, level):
3078 cf472233 Guido Trotter
    if level == locking.LEVEL_NODE:
3079 cf472233 Guido Trotter
      self._LockInstancesNodes()
3080 a8083063 Iustin Pop
3081 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3082 a8083063 Iustin Pop
    """Build hooks env.
3083 a8083063 Iustin Pop

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

3086 a8083063 Iustin Pop
    """
3087 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3088 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()]
3089 a8083063 Iustin Pop
    return env, nl, nl
3090 a8083063 Iustin Pop
3091 a8083063 Iustin Pop
  def CheckPrereq(self):
3092 a8083063 Iustin Pop
    """Check prerequisites.
3093 a8083063 Iustin Pop

3094 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3095 a8083063 Iustin Pop

3096 a8083063 Iustin Pop
    """
3097 cf472233 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3098 cf472233 Guido Trotter
    assert self.instance is not None, \
3099 cf472233 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3100 a8083063 Iustin Pop
3101 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3102 a8083063 Iustin Pop
    """Remove the instance.
3103 a8083063 Iustin Pop

3104 a8083063 Iustin Pop
    """
3105 a8083063 Iustin Pop
    instance = self.instance
3106 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3107 9a4f63d1 Iustin Pop
                 instance.name, instance.primary_node)
3108 a8083063 Iustin Pop
3109 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
3110 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3111 1fae010f Iustin Pop
    if msg:
3112 1d67656e Iustin Pop
      if self.op.ignore_failures:
3113 1fae010f Iustin Pop
        feedback_fn("Warning: can't shutdown instance: %s" % msg)
3114 1d67656e Iustin Pop
      else:
3115 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3116 1fae010f Iustin Pop
                                 " node %s: %s" %
3117 1fae010f Iustin Pop
                                 (instance.name, instance.primary_node, msg))
3118 a8083063 Iustin Pop
3119 9a4f63d1 Iustin Pop
    logging.info("Removing block devices for instance %s", instance.name)
3120 a8083063 Iustin Pop
3121 b9bddb6b Iustin Pop
    if not _RemoveDisks(self, instance):
3122 1d67656e Iustin Pop
      if self.op.ignore_failures:
3123 1d67656e Iustin Pop
        feedback_fn("Warning: can't remove instance's disks")
3124 1d67656e Iustin Pop
      else:
3125 1d67656e Iustin Pop
        raise errors.OpExecError("Can't remove instance's disks")
3126 a8083063 Iustin Pop
3127 9a4f63d1 Iustin Pop
    logging.info("Removing instance %s out of cluster config", instance.name)
3128 a8083063 Iustin Pop
3129 a8083063 Iustin Pop
    self.cfg.RemoveInstance(instance.name)
3130 cf472233 Guido Trotter
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3131 a8083063 Iustin Pop
3132 a8083063 Iustin Pop
3133 a8083063 Iustin Pop
class LUQueryInstances(NoHooksLU):
3134 a8083063 Iustin Pop
  """Logical unit for querying instances.
3135 a8083063 Iustin Pop

3136 a8083063 Iustin Pop
  """
3137 ec79568d Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
3138 7eb9d8f7 Guido Trotter
  REQ_BGL = False
3139 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3140 5b460366 Iustin Pop
                                    "admin_state",
3141 a2d2e1a7 Iustin Pop
                                    "disk_template", "ip", "mac", "bridge",
3142 a2d2e1a7 Iustin Pop
                                    "sda_size", "sdb_size", "vcpus", "tags",
3143 a2d2e1a7 Iustin Pop
                                    "network_port", "beparams",
3144 8aec325c Iustin Pop
                                    r"(disk)\.(size)/([0-9]+)",
3145 8aec325c Iustin Pop
                                    r"(disk)\.(sizes)", "disk_usage",
3146 8aec325c Iustin Pop
                                    r"(nic)\.(mac|ip|bridge)/([0-9]+)",
3147 8aec325c Iustin Pop
                                    r"(nic)\.(macs|ips|bridges)",
3148 8aec325c Iustin Pop
                                    r"(disk|nic)\.(count)",
3149 a2d2e1a7 Iustin Pop
                                    "serial_no", "hypervisor", "hvparams",] +
3150 a2d2e1a7 Iustin Pop
                                  ["hv/%s" % name
3151 a2d2e1a7 Iustin Pop
                                   for name in constants.HVS_PARAMETERS] +
3152 a2d2e1a7 Iustin Pop
                                  ["be/%s" % name
3153 a2d2e1a7 Iustin Pop
                                   for name in constants.BES_PARAMETERS])
3154 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3155 31bf511f Iustin Pop
3156 a8083063 Iustin Pop
3157 7eb9d8f7 Guido Trotter
  def ExpandNames(self):
3158 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
3159 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
3160 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
3161 a8083063 Iustin Pop
3162 7eb9d8f7 Guido Trotter
    self.needed_locks = {}
3163 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3164 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
3165 7eb9d8f7 Guido Trotter
3166 57a2fb91 Iustin Pop
    if self.op.names:
3167 57a2fb91 Iustin Pop
      self.wanted = _GetWantedInstances(self, self.op.names)
3168 7eb9d8f7 Guido Trotter
    else:
3169 57a2fb91 Iustin Pop
      self.wanted = locking.ALL_SET
3170 7eb9d8f7 Guido Trotter
3171 ec79568d Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3172 ec79568d Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
3173 57a2fb91 Iustin Pop
    if self.do_locking:
3174 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3175 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = []
3176 57a2fb91 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3177 7eb9d8f7 Guido Trotter
3178 7eb9d8f7 Guido Trotter
  def DeclareLocks(self, level):
3179 57a2fb91 Iustin Pop
    if level == locking.LEVEL_NODE and self.do_locking:
3180 7eb9d8f7 Guido Trotter
      self._LockInstancesNodes()
3181 7eb9d8f7 Guido Trotter
3182 7eb9d8f7 Guido Trotter
  def CheckPrereq(self):
3183 7eb9d8f7 Guido Trotter
    """Check prerequisites.
3184 7eb9d8f7 Guido Trotter

3185 7eb9d8f7 Guido Trotter
    """
3186 57a2fb91 Iustin Pop
    pass
3187 069dcc86 Iustin Pop
3188 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3189 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
3190 a8083063 Iustin Pop

3191 a8083063 Iustin Pop
    """
3192 57a2fb91 Iustin Pop
    all_info = self.cfg.GetAllInstancesInfo()
3193 a7f5dc98 Iustin Pop
    if self.wanted == locking.ALL_SET:
3194 a7f5dc98 Iustin Pop
      # caller didn't specify instance names, so ordering is not important
3195 a7f5dc98 Iustin Pop
      if self.do_locking:
3196 a7f5dc98 Iustin Pop
        instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
3197 a7f5dc98 Iustin Pop
      else:
3198 a7f5dc98 Iustin Pop
        instance_names = all_info.keys()
3199 a7f5dc98 Iustin Pop
      instance_names = utils.NiceSort(instance_names)
3200 57a2fb91 Iustin Pop
    else:
3201 a7f5dc98 Iustin Pop
      # caller did specify names, so we must keep the ordering
3202 a7f5dc98 Iustin Pop
      if self.do_locking:
3203 a7f5dc98 Iustin Pop
        tgt_set = self.acquired_locks[locking.LEVEL_INSTANCE]
3204 a7f5dc98 Iustin Pop
      else:
3205 a7f5dc98 Iustin Pop
        tgt_set = all_info.keys()
3206 a7f5dc98 Iustin Pop
      missing = set(self.wanted).difference(tgt_set)
3207 a7f5dc98 Iustin Pop
      if missing:
3208 a7f5dc98 Iustin Pop
        raise errors.OpExecError("Some instances were removed before"
3209 a7f5dc98 Iustin Pop
                                 " retrieving their data: %s" % missing)
3210 a7f5dc98 Iustin Pop
      instance_names = self.wanted
3211 c1f1cbb2 Iustin Pop
3212 57a2fb91 Iustin Pop
    instance_list = [all_info[iname] for iname in instance_names]
3213 a8083063 Iustin Pop
3214 a8083063 Iustin Pop
    # begin data gathering
3215 a8083063 Iustin Pop
3216 a8083063 Iustin Pop
    nodes = frozenset([inst.primary_node for inst in instance_list])
3217 e69d05fd Iustin Pop
    hv_list = list(set([inst.hypervisor for inst in instance_list]))
3218 a8083063 Iustin Pop
3219 a8083063 Iustin Pop
    bad_nodes = []
3220 cbfc4681 Iustin Pop
    off_nodes = []
3221 ec79568d Iustin Pop
    if self.do_node_query:
3222 a8083063 Iustin Pop
      live_data = {}
3223 72737a7f Iustin Pop
      node_data = self.rpc.call_all_instances_info(nodes, hv_list)
3224 a8083063 Iustin Pop
      for name in nodes:
3225 a8083063 Iustin Pop
        result = node_data[name]
3226 cbfc4681 Iustin Pop
        if result.offline:
3227 cbfc4681 Iustin Pop
          # offline nodes will be in both lists
3228 cbfc4681 Iustin Pop
          off_nodes.append(name)
3229 781de953 Iustin Pop
        if result.failed:
3230 a8083063 Iustin Pop
          bad_nodes.append(name)
3231 781de953 Iustin Pop
        else:
3232 781de953 Iustin Pop
          if result.data:
3233 781de953 Iustin Pop
            live_data.update(result.data)
3234 781de953 Iustin Pop
            # else no instance is alive
3235 a8083063 Iustin Pop
    else:
3236 a8083063 Iustin Pop
      live_data = dict([(name, {}) for name in instance_names])
3237 a8083063 Iustin Pop
3238 a8083063 Iustin Pop
    # end data gathering
3239 a8083063 Iustin Pop
3240 5018a335 Iustin Pop
    HVPREFIX = "hv/"
3241 338e51e8 Iustin Pop
    BEPREFIX = "be/"
3242 a8083063 Iustin Pop
    output = []
3243 a8083063 Iustin Pop
    for instance in instance_list:
3244 a8083063 Iustin Pop
      iout = []
3245 5018a335 Iustin Pop
      i_hv = self.cfg.GetClusterInfo().FillHV(instance)
3246 338e51e8 Iustin Pop
      i_be = self.cfg.GetClusterInfo().FillBE(instance)
3247 a8083063 Iustin Pop
      for field in self.op.output_fields:
3248 71c1af58 Iustin Pop
        st_match = self._FIELDS_STATIC.Matches(field)
3249 a8083063 Iustin Pop
        if field == "name":
3250 a8083063 Iustin Pop
          val = instance.name
3251 a8083063 Iustin Pop
        elif field == "os":
3252 a8083063 Iustin Pop
          val = instance.os
3253 a8083063 Iustin Pop
        elif field == "pnode":
3254 a8083063 Iustin Pop
          val = instance.primary_node
3255 a8083063 Iustin Pop
        elif field == "snodes":
3256 8a23d2d3 Iustin Pop
          val = list(instance.secondary_nodes)
3257 a8083063 Iustin Pop
        elif field == "admin_state":
3258 0d68c45d Iustin Pop
          val = instance.admin_up
3259 a8083063 Iustin Pop
        elif field == "oper_state":
3260 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3261 8a23d2d3 Iustin Pop
            val = None
3262 a8083063 Iustin Pop
          else:
3263 8a23d2d3 Iustin Pop
            val = bool(live_data.get(instance.name))
3264 d8052456 Iustin Pop
        elif field == "status":
3265 cbfc4681 Iustin Pop
          if instance.primary_node in off_nodes:
3266 cbfc4681 Iustin Pop
            val = "ERROR_nodeoffline"
3267 cbfc4681 Iustin Pop
          elif instance.primary_node in bad_nodes:
3268 d8052456 Iustin Pop
            val = "ERROR_nodedown"
3269 d8052456 Iustin Pop
          else:
3270 d8052456 Iustin Pop
            running = bool(live_data.get(instance.name))
3271 d8052456 Iustin Pop
            if running:
3272 0d68c45d Iustin Pop
              if instance.admin_up:
3273 d8052456 Iustin Pop
                val = "running"
3274 d8052456 Iustin Pop
              else:
3275 d8052456 Iustin Pop
                val = "ERROR_up"
3276 d8052456 Iustin Pop
            else:
3277 0d68c45d Iustin Pop
              if instance.admin_up:
3278 d8052456 Iustin Pop
                val = "ERROR_down"
3279 d8052456 Iustin Pop
              else:
3280 d8052456 Iustin Pop
                val = "ADMIN_down"
3281 a8083063 Iustin Pop
        elif field == "oper_ram":
3282 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3283 8a23d2d3 Iustin Pop
            val = None
3284 a8083063 Iustin Pop
          elif instance.name in live_data:
3285 a8083063 Iustin Pop
            val = live_data[instance.name].get("memory", "?")
3286 a8083063 Iustin Pop
          else:
3287 a8083063 Iustin Pop
            val = "-"
3288 a8083063 Iustin Pop
        elif field == "disk_template":
3289 a8083063 Iustin Pop
          val = instance.disk_template
3290 a8083063 Iustin Pop
        elif field == "ip":
3291 a8083063 Iustin Pop
          val = instance.nics[0].ip
3292 a8083063 Iustin Pop
        elif field == "bridge":
3293 a8083063 Iustin Pop
          val = instance.nics[0].bridge
3294 a8083063 Iustin Pop
        elif field == "mac":
3295 a8083063 Iustin Pop
          val = instance.nics[0].mac
3296 644eeef9 Iustin Pop
        elif field == "sda_size" or field == "sdb_size":
3297 ad24e046 Iustin Pop
          idx = ord(field[2]) - ord('a')
3298 ad24e046 Iustin Pop
          try:
3299 ad24e046 Iustin Pop
            val = instance.FindDisk(idx).size
3300 ad24e046 Iustin Pop
          except errors.OpPrereqError:
3301 8a23d2d3 Iustin Pop
            val = None
3302 024e157f Iustin Pop
        elif field == "disk_usage": # total disk usage per node
3303 024e157f Iustin Pop
          disk_sizes = [{'size': disk.size} for disk in instance.disks]
3304 024e157f Iustin Pop
          val = _ComputeDiskSize(instance.disk_template, disk_sizes)
3305 130a6a6f Iustin Pop
        elif field == "tags":
3306 130a6a6f Iustin Pop
          val = list(instance.GetTags())
3307 38d7239a Iustin Pop
        elif field == "serial_no":
3308 38d7239a Iustin Pop
          val = instance.serial_no
3309 5018a335 Iustin Pop
        elif field == "network_port":
3310 5018a335 Iustin Pop
          val = instance.network_port
3311 338e51e8 Iustin Pop
        elif field == "hypervisor":
3312 338e51e8 Iustin Pop
          val = instance.hypervisor
3313 338e51e8 Iustin Pop
        elif field == "hvparams":
3314 338e51e8 Iustin Pop
          val = i_hv
3315 5018a335 Iustin Pop
        elif (field.startswith(HVPREFIX) and
3316 5018a335 Iustin Pop
              field[len(HVPREFIX):] in constants.HVS_PARAMETERS):
3317 5018a335 Iustin Pop
          val = i_hv.get(field[len(HVPREFIX):], None)
3318 338e51e8 Iustin Pop
        elif field == "beparams":
3319 338e51e8 Iustin Pop
          val = i_be
3320 338e51e8 Iustin Pop
        elif (field.startswith(BEPREFIX) and
3321 338e51e8 Iustin Pop
              field[len(BEPREFIX):] in constants.BES_PARAMETERS):
3322 338e51e8 Iustin Pop
          val = i_be.get(field[len(BEPREFIX):], None)
3323 71c1af58 Iustin Pop
        elif st_match and st_match.groups():
3324 71c1af58 Iustin Pop
          # matches a variable list
3325 71c1af58 Iustin Pop
          st_groups = st_match.groups()
3326 71c1af58 Iustin Pop
          if st_groups and st_groups[0] == "disk":
3327 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3328 71c1af58 Iustin Pop
              val = len(instance.disks)
3329 41a776da Iustin Pop
            elif st_groups[1] == "sizes":
3330 41a776da Iustin Pop
              val = [disk.size for disk in instance.disks]
3331 71c1af58 Iustin Pop
            elif st_groups[1] == "size":
3332 3e0cea06 Iustin Pop
              try:
3333 3e0cea06 Iustin Pop
                val = instance.FindDisk(st_groups[2]).size
3334 3e0cea06 Iustin Pop
              except errors.OpPrereqError:
3335 71c1af58 Iustin Pop
                val = None
3336 71c1af58 Iustin Pop
            else:
3337 71c1af58 Iustin Pop
              assert False, "Unhandled disk parameter"
3338 71c1af58 Iustin Pop
          elif st_groups[0] == "nic":
3339 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3340 71c1af58 Iustin Pop
              val = len(instance.nics)
3341 41a776da Iustin Pop
            elif st_groups[1] == "macs":
3342 41a776da Iustin Pop
              val = [nic.mac for nic in instance.nics]
3343 41a776da Iustin Pop
            elif st_groups[1] == "ips":
3344 41a776da Iustin Pop
              val = [nic.ip for nic in instance.nics]
3345 41a776da Iustin Pop
            elif st_groups[1] == "bridges":
3346 41a776da Iustin Pop
              val = [nic.bridge for nic in instance.nics]
3347 71c1af58 Iustin Pop
            else:
3348 71c1af58 Iustin Pop
              # index-based item
3349 71c1af58 Iustin Pop
              nic_idx = int(st_groups[2])
3350 71c1af58 Iustin Pop
              if nic_idx >= len(instance.nics):
3351 71c1af58 Iustin Pop
                val = None
3352 71c1af58 Iustin Pop
              else:
3353 71c1af58 Iustin Pop
                if st_groups[1] == "mac":
3354 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].mac
3355 71c1af58 Iustin Pop
                elif st_groups[1] == "ip":
3356 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].ip
3357 71c1af58 Iustin Pop
                elif st_groups[1] == "bridge":
3358 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].bridge
3359 71c1af58 Iustin Pop
                else:
3360 71c1af58 Iustin Pop
                  assert False, "Unhandled NIC parameter"
3361 71c1af58 Iustin Pop
          else:
3362 71c1af58 Iustin Pop
            assert False, "Unhandled variable parameter"
3363 a8083063 Iustin Pop
        else:
3364 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
3365 a8083063 Iustin Pop
        iout.append(val)
3366 a8083063 Iustin Pop
      output.append(iout)
3367 a8083063 Iustin Pop
3368 a8083063 Iustin Pop
    return output
3369 a8083063 Iustin Pop
3370 a8083063 Iustin Pop
3371 a8083063 Iustin Pop
class LUFailoverInstance(LogicalUnit):
3372 a8083063 Iustin Pop
  """Failover an instance.
3373 a8083063 Iustin Pop

3374 a8083063 Iustin Pop
  """
3375 a8083063 Iustin Pop
  HPATH = "instance-failover"
3376 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3377 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_consistency"]
3378 c9e5c064 Guido Trotter
  REQ_BGL = False
3379 c9e5c064 Guido Trotter
3380 c9e5c064 Guido Trotter
  def ExpandNames(self):
3381 c9e5c064 Guido Trotter
    self._ExpandAndLockInstance()
3382 c9e5c064 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3383 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3384 c9e5c064 Guido Trotter
3385 c9e5c064 Guido Trotter
  def DeclareLocks(self, level):
3386 c9e5c064 Guido Trotter
    if level == locking.LEVEL_NODE:
3387 c9e5c064 Guido Trotter
      self._LockInstancesNodes()
3388 a8083063 Iustin Pop
3389 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3390 a8083063 Iustin Pop
    """Build hooks env.
3391 a8083063 Iustin Pop

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

3394 a8083063 Iustin Pop
    """
3395 a8083063 Iustin Pop
    env = {
3396 a8083063 Iustin Pop
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3397 a8083063 Iustin Pop
      }
3398 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3399 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3400 a8083063 Iustin Pop
    return env, nl, nl
3401 a8083063 Iustin Pop
3402 a8083063 Iustin Pop
  def CheckPrereq(self):
3403 a8083063 Iustin Pop
    """Check prerequisites.
3404 a8083063 Iustin Pop

3405 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3406 a8083063 Iustin Pop

3407 a8083063 Iustin Pop
    """
3408 c9e5c064 Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3409 c9e5c064 Guido Trotter
    assert self.instance is not None, \
3410 c9e5c064 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3411 a8083063 Iustin Pop
3412 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3413 a1f445d3 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3414 2a710df1 Michael Hanselmann
      raise errors.OpPrereqError("Instance's disk layout is not"
3415 a1f445d3 Iustin Pop
                                 " network mirrored, cannot failover.")
3416 2a710df1 Michael Hanselmann
3417 2a710df1 Michael Hanselmann
    secondary_nodes = instance.secondary_nodes
3418 2a710df1 Michael Hanselmann
    if not secondary_nodes:
3419 2a710df1 Michael Hanselmann
      raise errors.ProgrammerError("no secondary node but using "
3420 abdf0113 Iustin Pop
                                   "a mirrored disk template")
3421 2a710df1 Michael Hanselmann
3422 2a710df1 Michael Hanselmann
    target_node = secondary_nodes[0]
3423 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, target_node)
3424 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, target_node)
3425 d4f16fd9 Iustin Pop
    # check memory requirements on the secondary node
3426 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3427 338e51e8 Iustin Pop
                         instance.name, bep[constants.BE_MEMORY],
3428 e69d05fd Iustin Pop
                         instance.hypervisor)
3429 3a7c308e Guido Trotter
3430 a8083063 Iustin Pop
    # check bridge existance
3431 a8083063 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3432 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3433 781de953 Iustin Pop
    result.Raise()
3434 781de953 Iustin Pop
    if not result.data:
3435 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3436 3ecf6786 Iustin Pop
                                 " exist on destination node '%s'" %
3437 50ff9a7a Iustin Pop
                                 (brlist, target_node))
3438 a8083063 Iustin Pop
3439 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3440 a8083063 Iustin Pop
    """Failover an instance.
3441 a8083063 Iustin Pop

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

3445 a8083063 Iustin Pop
    """
3446 a8083063 Iustin Pop
    instance = self.instance
3447 a8083063 Iustin Pop
3448 a8083063 Iustin Pop
    source_node = instance.primary_node
3449 a8083063 Iustin Pop
    target_node = instance.secondary_nodes[0]
3450 a8083063 Iustin Pop
3451 a8083063 Iustin Pop
    feedback_fn("* checking disk consistency between source and target")
3452 a8083063 Iustin Pop
    for dev in instance.disks:
3453 abdf0113 Iustin Pop
      # for drbd, these are drbd over lvm
3454 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3455 0d68c45d Iustin Pop
        if instance.admin_up and not self.op.ignore_consistency:
3456 3ecf6786 Iustin Pop
          raise errors.OpExecError("Disk %s is degraded on target node,"
3457 3ecf6786 Iustin Pop
                                   " aborting failover." % dev.iv_name)
3458 a8083063 Iustin Pop
3459 a8083063 Iustin Pop
    feedback_fn("* shutting down instance on source node")
3460 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3461 9a4f63d1 Iustin Pop
                 instance.name, source_node)
3462 a8083063 Iustin Pop
3463 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(source_node, instance)
3464 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3465 1fae010f Iustin Pop
    if msg:
3466 24a40d57 Iustin Pop
      if self.op.ignore_consistency:
3467 86d9d3bb Iustin Pop
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3468 1fae010f Iustin Pop
                             " Proceeding anyway. Please make sure node"
3469 1fae010f Iustin Pop
                             " %s is down. Error details: %s",
3470 1fae010f Iustin Pop
                             instance.name, source_node, source_node, msg)
3471 24a40d57 Iustin Pop
      else:
3472 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3473 1fae010f Iustin Pop
                                 " node %s: %s" %
3474 1fae010f Iustin Pop
                                 (instance.name, source_node, msg))
3475 a8083063 Iustin Pop
3476 a8083063 Iustin Pop
    feedback_fn("* deactivating the instance's disks on source node")
3477 b9bddb6b Iustin Pop
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3478 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't shut down the instance's disks.")
3479 a8083063 Iustin Pop
3480 a8083063 Iustin Pop
    instance.primary_node = target_node
3481 a8083063 Iustin Pop
    # distribute new instance config to the other nodes
3482 b6102dab Guido Trotter
    self.cfg.Update(instance)
3483 a8083063 Iustin Pop
3484 12a0cfbe Guido Trotter
    # Only start the instance if it's marked as up
3485 0d68c45d Iustin Pop
    if instance.admin_up:
3486 12a0cfbe Guido Trotter
      feedback_fn("* activating the instance's disks on target node")
3487 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s",
3488 9a4f63d1 Iustin Pop
                   instance.name, target_node)
3489 12a0cfbe Guido Trotter
3490 b9bddb6b Iustin Pop
      disks_ok, dummy = _AssembleInstanceDisks(self, instance,
3491 12a0cfbe Guido Trotter
                                               ignore_secondaries=True)
3492 12a0cfbe Guido Trotter
      if not disks_ok:
3493 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3494 12a0cfbe Guido Trotter
        raise errors.OpExecError("Can't activate the instance's disks")
3495 a8083063 Iustin Pop
3496 12a0cfbe Guido Trotter
      feedback_fn("* starting the instance on the target node")
3497 781de953 Iustin Pop
      result = self.rpc.call_instance_start(target_node, instance, None)
3498 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
3499 dd279568 Iustin Pop
      if msg:
3500 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3501 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance %s on node %s: %s" %
3502 dd279568 Iustin Pop
                                 (instance.name, target_node, msg))
3503 a8083063 Iustin Pop
3504 a8083063 Iustin Pop
3505 53c776b5 Iustin Pop
class LUMigrateInstance(LogicalUnit):
3506 53c776b5 Iustin Pop
  """Migrate an instance.
3507 53c776b5 Iustin Pop

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

3511 53c776b5 Iustin Pop
  """
3512 53c776b5 Iustin Pop
  HPATH = "instance-migrate"
3513 53c776b5 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3514 53c776b5 Iustin Pop
  _OP_REQP = ["instance_name", "live", "cleanup"]
3515 53c776b5 Iustin Pop
3516 53c776b5 Iustin Pop
  REQ_BGL = False
3517 53c776b5 Iustin Pop
3518 53c776b5 Iustin Pop
  def ExpandNames(self):
3519 53c776b5 Iustin Pop
    self._ExpandAndLockInstance()
3520 53c776b5 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
3521 53c776b5 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3522 53c776b5 Iustin Pop
3523 53c776b5 Iustin Pop
  def DeclareLocks(self, level):
3524 53c776b5 Iustin Pop
    if level == locking.LEVEL_NODE:
3525 53c776b5 Iustin Pop
      self._LockInstancesNodes()
3526 53c776b5 Iustin Pop
3527 53c776b5 Iustin Pop
  def BuildHooksEnv(self):
3528 53c776b5 Iustin Pop
    """Build hooks env.
3529 53c776b5 Iustin Pop

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

3532 53c776b5 Iustin Pop
    """
3533 53c776b5 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3534 53c776b5 Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3535 53c776b5 Iustin Pop
    return env, nl, nl
3536 53c776b5 Iustin Pop
3537 53c776b5 Iustin Pop
  def CheckPrereq(self):
3538 53c776b5 Iustin Pop
    """Check prerequisites.
3539 53c776b5 Iustin Pop

3540 53c776b5 Iustin Pop
    This checks that the instance is in the cluster.
3541 53c776b5 Iustin Pop

3542 53c776b5 Iustin Pop
    """
3543 53c776b5 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3544 53c776b5 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3545 53c776b5 Iustin Pop
    if instance is None:
3546 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3547 53c776b5 Iustin Pop
                                 self.op.instance_name)
3548 53c776b5 Iustin Pop
3549 53c776b5 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
3550 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout is not"
3551 53c776b5 Iustin Pop
                                 " drbd8, cannot migrate.")
3552 53c776b5 Iustin Pop
3553 53c776b5 Iustin Pop
    secondary_nodes = instance.secondary_nodes
3554 53c776b5 Iustin Pop
    if not secondary_nodes:
3555 733a2b6a Iustin Pop
      raise errors.ConfigurationError("No secondary node but using"
3556 733a2b6a Iustin Pop
                                      " drbd8 disk template")
3557 53c776b5 Iustin Pop
3558 53c776b5 Iustin Pop
    i_be = self.cfg.GetClusterInfo().FillBE(instance)
3559 53c776b5 Iustin Pop
3560 53c776b5 Iustin Pop
    target_node = secondary_nodes[0]
3561 53c776b5 Iustin Pop
    # check memory requirements on the secondary node
3562 53c776b5 Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
3563 53c776b5 Iustin Pop
                         instance.name, i_be[constants.BE_MEMORY],
3564 53c776b5 Iustin Pop
                         instance.hypervisor)
3565 53c776b5 Iustin Pop
3566 53c776b5 Iustin Pop
    # check bridge existance
3567 53c776b5 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3568 53c776b5 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3569 53c776b5 Iustin Pop
    if result.failed or not result.data:
3570 53c776b5 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3571 53c776b5 Iustin Pop
                                 " exist on destination node '%s'" %
3572 53c776b5 Iustin Pop
                                 (brlist, target_node))
3573 53c776b5 Iustin Pop
3574 53c776b5 Iustin Pop
    if not self.op.cleanup:
3575 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, target_node)
3576 53c776b5 Iustin Pop
      result = self.rpc.call_instance_migratable(instance.primary_node,
3577 53c776b5 Iustin Pop
                                                 instance)
3578 53c776b5 Iustin Pop
      msg = result.RemoteFailMsg()
3579 53c776b5 Iustin Pop
      if msg:
3580 53c776b5 Iustin Pop
        raise errors.OpPrereqError("Can't migrate: %s - please use failover" %
3581 53c776b5 Iustin Pop
                                   msg)
3582 53c776b5 Iustin Pop
3583 53c776b5 Iustin Pop
    self.instance = instance
3584 53c776b5 Iustin Pop
3585 53c776b5 Iustin Pop
  def _WaitUntilSync(self):
3586 53c776b5 Iustin Pop
    """Poll with custom rpc for disk sync.
3587 53c776b5 Iustin Pop

3588 53c776b5 Iustin Pop
    This uses our own step-based rpc call.
3589 53c776b5 Iustin Pop

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

3616 53c776b5 Iustin Pop
    """
3617 53c776b5 Iustin Pop
    self.feedback_fn("* switching node %s to secondary mode" % node)
3618 53c776b5 Iustin Pop
3619 53c776b5 Iustin Pop
    for dev in self.instance.disks:
3620 53c776b5 Iustin Pop
      self.cfg.SetDiskID(dev, node)
3621 53c776b5 Iustin Pop
3622 53c776b5 Iustin Pop
    result = self.rpc.call_blockdev_close(node, self.instance.name,
3623 53c776b5 Iustin Pop
                                          self.instance.disks)
3624 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
3625 53c776b5 Iustin Pop
    if msg:
3626 53c776b5 Iustin Pop
      raise errors.OpExecError("Cannot change disk to secondary on node %s,"
3627 53c776b5 Iustin Pop
                               " error %s" % (node, msg))
3628 53c776b5 Iustin Pop
3629 53c776b5 Iustin Pop
  def _GoStandalone(self):
3630 53c776b5 Iustin Pop
    """Disconnect from the network.
3631 53c776b5 Iustin Pop

3632 53c776b5 Iustin Pop
    """
3633 53c776b5 Iustin Pop
    self.feedback_fn("* changing into standalone mode")
3634 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
3635 53c776b5 Iustin Pop
                                               self.instance.disks)
3636 53c776b5 Iustin Pop
    for node, nres in result.items():
3637 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3638 53c776b5 Iustin Pop
      if msg:
3639 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot disconnect disks node %s,"
3640 53c776b5 Iustin Pop
                                 " error %s" % (node, msg))
3641 53c776b5 Iustin Pop
3642 53c776b5 Iustin Pop
  def _GoReconnect(self, multimaster):
3643 53c776b5 Iustin Pop
    """Reconnect to the network.
3644 53c776b5 Iustin Pop

3645 53c776b5 Iustin Pop
    """
3646 53c776b5 Iustin Pop
    if multimaster:
3647 53c776b5 Iustin Pop
      msg = "dual-master"
3648 53c776b5 Iustin Pop
    else:
3649 53c776b5 Iustin Pop
      msg = "single-master"
3650 53c776b5 Iustin Pop
    self.feedback_fn("* changing disks into %s mode" % msg)
3651 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
3652 53c776b5 Iustin Pop
                                           self.instance.disks,
3653 53c776b5 Iustin Pop
                                           self.instance.name, multimaster)
3654 53c776b5 Iustin Pop
    for node, nres in result.items():
3655 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3656 53c776b5 Iustin Pop
      if msg:
3657 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot change disks config on node %s,"
3658 53c776b5 Iustin Pop
                                 " error: %s" % (node, msg))
3659 53c776b5 Iustin Pop
3660 53c776b5 Iustin Pop
  def _ExecCleanup(self):
3661 53c776b5 Iustin Pop
    """Try to cleanup after a failed migration.
3662 53c776b5 Iustin Pop

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

3672 53c776b5 Iustin Pop
    """
3673 53c776b5 Iustin Pop
    instance = self.instance
3674 53c776b5 Iustin Pop
    target_node = self.target_node
3675 53c776b5 Iustin Pop
    source_node = self.source_node
3676 53c776b5 Iustin Pop
3677 53c776b5 Iustin Pop
    # check running on only one node
3678 53c776b5 Iustin Pop
    self.feedback_fn("* checking where the instance actually runs"
3679 53c776b5 Iustin Pop
                     " (if this hangs, the hypervisor might be in"
3680 53c776b5 Iustin Pop
                     " a bad state)")
3681 53c776b5 Iustin Pop
    ins_l = self.rpc.call_instance_list(self.all_nodes, [instance.hypervisor])
3682 53c776b5 Iustin Pop
    for node, result in ins_l.items():
3683 53c776b5 Iustin Pop
      result.Raise()
3684 53c776b5 Iustin Pop
      if not isinstance(result.data, list):
3685 53c776b5 Iustin Pop
        raise errors.OpExecError("Can't contact node '%s'" % node)
3686 53c776b5 Iustin Pop
3687 53c776b5 Iustin Pop
    runningon_source = instance.name in ins_l[source_node].data
3688 53c776b5 Iustin Pop
    runningon_target = instance.name in ins_l[target_node].data
3689 53c776b5 Iustin Pop
3690 53c776b5 Iustin Pop
    if runningon_source and runningon_target:
3691 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance seems to be running on two nodes,"
3692 53c776b5 Iustin Pop
                               " or the hypervisor is confused. You will have"
3693 53c776b5 Iustin Pop
                               " to ensure manually that it runs only on one"
3694 53c776b5 Iustin Pop
                               " and restart this operation.")
3695 53c776b5 Iustin Pop
3696 53c776b5 Iustin Pop
    if not (runningon_source or runningon_target):
3697 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance does not seem to be running at all."
3698 53c776b5 Iustin Pop
                               " In this case, it's safer to repair by"
3699 53c776b5 Iustin Pop
                               " running 'gnt-instance stop' to ensure disk"
3700 53c776b5 Iustin Pop
                               " shutdown, and then restarting it.")
3701 53c776b5 Iustin Pop
3702 53c776b5 Iustin Pop
    if runningon_target:
3703 53c776b5 Iustin Pop
      # the migration has actually succeeded, we need to update the config
3704 53c776b5 Iustin Pop
      self.feedback_fn("* instance running on secondary node (%s),"
3705 53c776b5 Iustin Pop
                       " updating config" % target_node)
3706 53c776b5 Iustin Pop
      instance.primary_node = target_node
3707 53c776b5 Iustin Pop
      self.cfg.Update(instance)
3708 53c776b5 Iustin Pop
      demoted_node = source_node
3709 53c776b5 Iustin Pop
    else:
3710 53c776b5 Iustin Pop
      self.feedback_fn("* instance confirmed to be running on its"
3711 53c776b5 Iustin Pop
                       " primary node (%s)" % source_node)
3712 53c776b5 Iustin Pop
      demoted_node = target_node
3713 53c776b5 Iustin Pop
3714 53c776b5 Iustin Pop
    self._EnsureSecondary(demoted_node)
3715 53c776b5 Iustin Pop
    try:
3716 53c776b5 Iustin Pop
      self._WaitUntilSync()
3717 53c776b5 Iustin Pop
    except errors.OpExecError:
3718 53c776b5 Iustin Pop
      # we ignore here errors, since if the device is standalone, it
3719 53c776b5 Iustin Pop
      # won't be able to sync
3720 53c776b5 Iustin Pop
      pass
3721 53c776b5 Iustin Pop
    self._GoStandalone()
3722 53c776b5 Iustin Pop
    self._GoReconnect(False)
3723 53c776b5 Iustin Pop
    self._WaitUntilSync()
3724 53c776b5 Iustin Pop
3725 53c776b5 Iustin Pop
    self.feedback_fn("* done")
3726 53c776b5 Iustin Pop
3727 6906a9d8 Guido Trotter
  def _RevertDiskStatus(self):
3728 6906a9d8 Guido Trotter
    """Try to revert the disk status after a failed migration.
3729 6906a9d8 Guido Trotter

3730 6906a9d8 Guido Trotter
    """
3731 6906a9d8 Guido Trotter
    target_node = self.target_node
3732 6906a9d8 Guido Trotter
    try:
3733 6906a9d8 Guido Trotter
      self._EnsureSecondary(target_node)
3734 6906a9d8 Guido Trotter
      self._GoStandalone()
3735 6906a9d8 Guido Trotter
      self._GoReconnect(False)
3736 6906a9d8 Guido Trotter
      self._WaitUntilSync()
3737 6906a9d8 Guido Trotter
    except errors.OpExecError, err:
3738 6906a9d8 Guido Trotter
      self.LogWarning("Migration failed and I can't reconnect the"
3739 6906a9d8 Guido Trotter
                      " drives: error '%s'\n"
3740 6906a9d8 Guido Trotter
                      "Please look and recover the instance status" %
3741 6906a9d8 Guido Trotter
                      str(err))
3742 6906a9d8 Guido Trotter
3743 6906a9d8 Guido Trotter
  def _AbortMigration(self):
3744 6906a9d8 Guido Trotter
    """Call the hypervisor code to abort a started migration.
3745 6906a9d8 Guido Trotter

3746 6906a9d8 Guido Trotter
    """
3747 6906a9d8 Guido Trotter
    instance = self.instance
3748 6906a9d8 Guido Trotter
    target_node = self.target_node
3749 6906a9d8 Guido Trotter
    migration_info = self.migration_info
3750 6906a9d8 Guido Trotter
3751 6906a9d8 Guido Trotter
    abort_result = self.rpc.call_finalize_migration(target_node,
3752 6906a9d8 Guido Trotter
                                                    instance,
3753 6906a9d8 Guido Trotter
                                                    migration_info,
3754 6906a9d8 Guido Trotter
                                                    False)
3755 6906a9d8 Guido Trotter
    abort_msg = abort_result.RemoteFailMsg()
3756 6906a9d8 Guido Trotter
    if abort_msg:
3757 6906a9d8 Guido Trotter
      logging.error("Aborting migration failed on target node %s: %s" %
3758 6906a9d8 Guido Trotter
                    (target_node, abort_msg))
3759 6906a9d8 Guido Trotter
      # Don't raise an exception here, as we stil have to try to revert the
3760 6906a9d8 Guido Trotter
      # disk status, even if this step failed.
3761 6906a9d8 Guido Trotter
3762 53c776b5 Iustin Pop
  def _ExecMigration(self):
3763 53c776b5 Iustin Pop
    """Migrate an instance.
3764 53c776b5 Iustin Pop

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

3773 53c776b5 Iustin Pop
    """
3774 53c776b5 Iustin Pop
    instance = self.instance
3775 53c776b5 Iustin Pop
    target_node = self.target_node
3776 53c776b5 Iustin Pop
    source_node = self.source_node
3777 53c776b5 Iustin Pop
3778 53c776b5 Iustin Pop
    self.feedback_fn("* checking disk consistency between source and target")
3779 53c776b5 Iustin Pop
    for dev in instance.disks:
3780 53c776b5 Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3781 53c776b5 Iustin Pop
        raise errors.OpExecError("Disk %s is degraded or not fully"
3782 53c776b5 Iustin Pop
                                 " synchronized on target node,"
3783 53c776b5 Iustin Pop
                                 " aborting migrate." % dev.iv_name)
3784 53c776b5 Iustin Pop
3785 6906a9d8 Guido Trotter
    # First get the migration information from the remote node
3786 6906a9d8 Guido Trotter
    result = self.rpc.call_migration_info(source_node, instance)
3787 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
3788 6906a9d8 Guido Trotter
    if msg:
3789 6906a9d8 Guido Trotter
      log_err = ("Failed fetching source migration information from %s: %s" %
3790 0959c824 Iustin Pop
                 (source_node, msg))
3791 6906a9d8 Guido Trotter
      logging.error(log_err)
3792 6906a9d8 Guido Trotter
      raise errors.OpExecError(log_err)
3793 6906a9d8 Guido Trotter
3794 0959c824 Iustin Pop
    self.migration_info = migration_info = result.payload
3795 6906a9d8 Guido Trotter
3796 6906a9d8 Guido Trotter
    # Then switch the disks to master/master mode
3797 53c776b5 Iustin Pop
    self._EnsureSecondary(target_node)
3798 53c776b5 Iustin Pop
    self._GoStandalone()
3799 53c776b5 Iustin Pop
    self._GoReconnect(True)
3800 53c776b5 Iustin Pop
    self._WaitUntilSync()
3801 53c776b5 Iustin Pop
3802 6906a9d8 Guido Trotter
    self.feedback_fn("* preparing %s to accept the instance" % target_node)
3803 6906a9d8 Guido Trotter
    result = self.rpc.call_accept_instance(target_node,
3804 6906a9d8 Guido Trotter
                                           instance,
3805 6906a9d8 Guido Trotter
                                           migration_info,
3806 6906a9d8 Guido Trotter
                                           self.nodes_ip[target_node])
3807 6906a9d8 Guido Trotter
3808 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
3809 6906a9d8 Guido Trotter
    if msg:
3810 6906a9d8 Guido Trotter
      logging.error("Instance pre-migration failed, trying to revert"
3811 6906a9d8 Guido Trotter
                    " disk status: %s", msg)
3812 6906a9d8 Guido Trotter
      self._AbortMigration()
3813 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
3814 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not pre-migrate instance %s: %s" %
3815 6906a9d8 Guido Trotter
                               (instance.name, msg))
3816 6906a9d8 Guido Trotter
3817 53c776b5 Iustin Pop
    self.feedback_fn("* migrating instance to %s" % target_node)
3818 53c776b5 Iustin Pop
    time.sleep(10)
3819 53c776b5 Iustin Pop
    result = self.rpc.call_instance_migrate(source_node, instance,
3820 53c776b5 Iustin Pop
                                            self.nodes_ip[target_node],
3821 53c776b5 Iustin Pop
                                            self.op.live)
3822 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
3823 53c776b5 Iustin Pop
    if msg:
3824 53c776b5 Iustin Pop
      logging.error("Instance migration failed, trying to revert"
3825 53c776b5 Iustin Pop
                    " disk status: %s", msg)
3826 6906a9d8 Guido Trotter
      self._AbortMigration()
3827 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
3828 53c776b5 Iustin Pop
      raise errors.OpExecError("Could not migrate instance %s: %s" %
3829 53c776b5 Iustin Pop
                               (instance.name, msg))
3830 53c776b5 Iustin Pop
    time.sleep(10)
3831 53c776b5 Iustin Pop
3832 53c776b5 Iustin Pop
    instance.primary_node = target_node
3833 53c776b5 Iustin Pop
    # distribute new instance config to the other nodes
3834 53c776b5 Iustin Pop
    self.cfg.Update(instance)
3835 53c776b5 Iustin Pop
3836 6906a9d8 Guido Trotter
    result = self.rpc.call_finalize_migration(target_node,
3837 6906a9d8 Guido Trotter
                                              instance,
3838 6906a9d8 Guido Trotter
                                              migration_info,
3839 6906a9d8 Guido Trotter
                                              True)
3840 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
3841 6906a9d8 Guido Trotter
    if msg:
3842 6906a9d8 Guido Trotter
      logging.error("Instance migration succeeded, but finalization failed:"
3843 6906a9d8 Guido Trotter
                    " %s" % msg)
3844 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not finalize instance migration: %s" %
3845 6906a9d8 Guido Trotter
                               msg)
3846 6906a9d8 Guido Trotter
3847 53c776b5 Iustin Pop
    self._EnsureSecondary(source_node)
3848 53c776b5 Iustin Pop
    self._WaitUntilSync()
3849 53c776b5 Iustin Pop
    self._GoStandalone()
3850 53c776b5 Iustin Pop
    self._GoReconnect(False)
3851 53c776b5 Iustin Pop
    self._WaitUntilSync()
3852 53c776b5 Iustin Pop
3853 53c776b5 Iustin Pop
    self.feedback_fn("* done")
3854 53c776b5 Iustin Pop
3855 53c776b5 Iustin Pop
  def Exec(self, feedback_fn):
3856 53c776b5 Iustin Pop
    """Perform the migration.
3857 53c776b5 Iustin Pop

3858 53c776b5 Iustin Pop
    """
3859 53c776b5 Iustin Pop
    self.feedback_fn = feedback_fn
3860 53c776b5 Iustin Pop
3861 53c776b5 Iustin Pop
    self.source_node = self.instance.primary_node
3862 53c776b5 Iustin Pop
    self.target_node = self.instance.secondary_nodes[0]
3863 53c776b5 Iustin Pop
    self.all_nodes = [self.source_node, self.target_node]
3864 53c776b5 Iustin Pop
    self.nodes_ip = {
3865 53c776b5 Iustin Pop
      self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
3866 53c776b5 Iustin Pop
      self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
3867 53c776b5 Iustin Pop
      }
3868 53c776b5 Iustin Pop
    if self.op.cleanup:
3869 53c776b5 Iustin Pop
      return self._ExecCleanup()
3870 53c776b5 Iustin Pop
    else:
3871 53c776b5 Iustin Pop
      return self._ExecMigration()
3872 53c776b5 Iustin Pop
3873 53c776b5 Iustin Pop
3874 428958aa Iustin Pop
def _CreateBlockDev(lu, node, instance, device, force_create,
3875 428958aa Iustin Pop
                    info, force_open):
3876 428958aa Iustin Pop
  """Create a tree of block devices on a given node.
3877 a8083063 Iustin Pop

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

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

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

3901 a8083063 Iustin Pop
  """
3902 a8083063 Iustin Pop
  if device.CreateOnSecondary():
3903 428958aa Iustin Pop
    force_create = True
3904 796cab27 Iustin Pop
3905 a8083063 Iustin Pop
  if device.children:
3906 a8083063 Iustin Pop
    for child in device.children:
3907 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, child, force_create,
3908 428958aa Iustin Pop
                      info, force_open)
3909 a8083063 Iustin Pop
3910 428958aa Iustin Pop
  if not force_create:
3911 796cab27 Iustin Pop
    return
3912 796cab27 Iustin Pop
3913 de12473a Iustin Pop
  _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
3914 de12473a Iustin Pop
3915 de12473a Iustin Pop
3916 de12473a Iustin Pop
def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
3917 de12473a Iustin Pop
  """Create a single block device on a given node.
3918 de12473a Iustin Pop

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

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

3936 de12473a Iustin Pop
  """
3937 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
3938 7d81697f Iustin Pop
  result = lu.rpc.call_blockdev_create(node, device, device.size,
3939 428958aa Iustin Pop
                                       instance.name, force_open, info)
3940 7d81697f Iustin Pop
  msg = result.RemoteFailMsg()
3941 7d81697f Iustin Pop
  if msg:
3942 428958aa Iustin Pop
    raise errors.OpExecError("Can't create block device %s on"
3943 7d81697f Iustin Pop
                             " node %s for instance %s: %s" %
3944 7d81697f Iustin Pop
                             (device, node, instance.name, msg))
3945 a8083063 Iustin Pop
  if device.physical_id is None:
3946 0959c824 Iustin Pop
    device.physical_id = result.payload
3947 a8083063 Iustin Pop
3948 a8083063 Iustin Pop
3949 b9bddb6b Iustin Pop
def _GenerateUniqueNames(lu, exts):
3950 923b1523 Iustin Pop
  """Generate a suitable LV name.
3951 923b1523 Iustin Pop

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

3954 923b1523 Iustin Pop
  """
3955 923b1523 Iustin Pop
  results = []
3956 923b1523 Iustin Pop
  for val in exts:
3957 b9bddb6b Iustin Pop
    new_id = lu.cfg.GenerateUniqueID()
3958 923b1523 Iustin Pop
    results.append("%s%s" % (new_id, val))
3959 923b1523 Iustin Pop
  return results
3960 923b1523 Iustin Pop
3961 923b1523 Iustin Pop
3962 b9bddb6b Iustin Pop
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
3963 ffa1c0dc Iustin Pop
                         p_minor, s_minor):
3964 a1f445d3 Iustin Pop
  """Generate a drbd8 device complete with its children.
3965 a1f445d3 Iustin Pop

3966 a1f445d3 Iustin Pop
  """
3967 b9bddb6b Iustin Pop
  port = lu.cfg.AllocatePort()
3968 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
3969 b9bddb6b Iustin Pop
  shared_secret = lu.cfg.GenerateDRBDSecret()
3970 a1f445d3 Iustin Pop
  dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
3971 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[0]))
3972 a1f445d3 Iustin Pop
  dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
3973 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[1]))
3974 a1f445d3 Iustin Pop
  drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
3975 ffa1c0dc Iustin Pop
                          logical_id=(primary, secondary, port,
3976 f9518d38 Iustin Pop
                                      p_minor, s_minor,
3977 f9518d38 Iustin Pop
                                      shared_secret),
3978 ffa1c0dc Iustin Pop
                          children=[dev_data, dev_meta],
3979 a1f445d3 Iustin Pop
                          iv_name=iv_name)
3980 a1f445d3 Iustin Pop
  return drbd_dev
3981 a1f445d3 Iustin Pop
3982 7c0d6283 Michael Hanselmann
3983 b9bddb6b Iustin Pop
def _GenerateDiskTemplate(lu, template_name,
3984 a8083063 Iustin Pop
                          instance_name, primary_node,
3985 08db7c5c Iustin Pop
                          secondary_nodes, disk_info,
3986 e2a65344 Iustin Pop
                          file_storage_dir, file_driver,
3987 e2a65344 Iustin Pop
                          base_index):
3988 a8083063 Iustin Pop
  """Generate the entire disk layout for a given template type.
3989 a8083063 Iustin Pop

3990 a8083063 Iustin Pop
  """
3991 a8083063 Iustin Pop
  #TODO: compute space requirements
3992 a8083063 Iustin Pop
3993 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
3994 08db7c5c Iustin Pop
  disk_count = len(disk_info)
3995 08db7c5c Iustin Pop
  disks = []
3996 3517d9b9 Manuel Franceschini
  if template_name == constants.DT_DISKLESS:
3997 08db7c5c Iustin Pop
    pass
3998 3517d9b9 Manuel Franceschini
  elif template_name == constants.DT_PLAIN:
3999 a8083063 Iustin Pop
    if len(secondary_nodes) != 0:
4000 a8083063 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4001 923b1523 Iustin Pop
4002 08db7c5c Iustin Pop
    names = _GenerateUniqueNames(lu, [".disk%d" % i
4003 08db7c5c Iustin Pop
                                      for i in range(disk_count)])
4004 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4005 e2a65344 Iustin Pop
      disk_index = idx + base_index
4006 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
4007 08db7c5c Iustin Pop
                              logical_id=(vgname, names[idx]),
4008 6ec66eae Iustin Pop
                              iv_name="disk/%d" % disk_index,
4009 6ec66eae Iustin Pop
                              mode=disk["mode"])
4010 08db7c5c Iustin Pop
      disks.append(disk_dev)
4011 a1f445d3 Iustin Pop
  elif template_name == constants.DT_DRBD8:
4012 a1f445d3 Iustin Pop
    if len(secondary_nodes) != 1:
4013 a1f445d3 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4014 a1f445d3 Iustin Pop
    remote_node = secondary_nodes[0]
4015 08db7c5c Iustin Pop
    minors = lu.cfg.AllocateDRBDMinor(
4016 08db7c5c Iustin Pop
      [primary_node, remote_node] * len(disk_info), instance_name)
4017 08db7c5c Iustin Pop
4018 e6c1ff2f Iustin Pop
    names = []
4019 e6c1ff2f Iustin Pop
    for lv_prefix in _GenerateUniqueNames(lu, [".disk%d" % i
4020 e6c1ff2f Iustin Pop
                                               for i in range(disk_count)]):
4021 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_data")
4022 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_meta")
4023 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4024 112050d9 Iustin Pop
      disk_index = idx + base_index
4025 08db7c5c Iustin Pop
      disk_dev = _GenerateDRBD8Branch(lu, primary_node, remote_node,
4026 08db7c5c Iustin Pop
                                      disk["size"], names[idx*2:idx*2+2],
4027 e2a65344 Iustin Pop
                                      "disk/%d" % disk_index,
4028 08db7c5c Iustin Pop
                                      minors[idx*2], minors[idx*2+1])
4029 6ec66eae Iustin Pop
      disk_dev.mode = disk["mode"]
4030 08db7c5c Iustin Pop
      disks.append(disk_dev)
4031 0f1a06e3 Manuel Franceschini
  elif template_name == constants.DT_FILE:
4032 0f1a06e3 Manuel Franceschini
    if len(secondary_nodes) != 0:
4033 0f1a06e3 Manuel Franceschini
      raise errors.ProgrammerError("Wrong template configuration")
4034 0f1a06e3 Manuel Franceschini
4035 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4036 112050d9 Iustin Pop
      disk_index = idx + base_index
4037 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_FILE, size=disk["size"],
4038 e2a65344 Iustin Pop
                              iv_name="disk/%d" % disk_index,
4039 08db7c5c Iustin Pop
                              logical_id=(file_driver,
4040 08db7c5c Iustin Pop
                                          "%s/disk%d" % (file_storage_dir,
4041 43e99cff Guido Trotter
                                                         disk_index)),
4042 6ec66eae Iustin Pop
                              mode=disk["mode"])
4043 08db7c5c Iustin Pop
      disks.append(disk_dev)
4044 a8083063 Iustin Pop
  else:
4045 a8083063 Iustin Pop
    raise errors.ProgrammerError("Invalid disk template '%s'" % template_name)
4046 a8083063 Iustin Pop
  return disks
4047 a8083063 Iustin Pop
4048 a8083063 Iustin Pop
4049 a0c3fea1 Michael Hanselmann
def _GetInstanceInfoText(instance):
4050 3ecf6786 Iustin Pop
  """Compute that text that should be added to the disk's metadata.
4051 3ecf6786 Iustin Pop

4052 3ecf6786 Iustin Pop
  """
4053 a0c3fea1 Michael Hanselmann
  return "originstname+%s" % instance.name
4054 a0c3fea1 Michael Hanselmann
4055 a0c3fea1 Michael Hanselmann
4056 b9bddb6b Iustin Pop
def _CreateDisks(lu, instance):
4057 a8083063 Iustin Pop
  """Create all disks for an instance.
4058 a8083063 Iustin Pop

4059 a8083063 Iustin Pop
  This abstracts away some work from AddInstance.
4060 a8083063 Iustin Pop

4061 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4062 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4063 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4064 e4376078 Iustin Pop
  @param instance: the instance whose disks we should create
4065 e4376078 Iustin Pop
  @rtype: boolean
4066 e4376078 Iustin Pop
  @return: the success of the creation
4067 a8083063 Iustin Pop

4068 a8083063 Iustin Pop
  """
4069 a0c3fea1 Michael Hanselmann
  info = _GetInstanceInfoText(instance)
4070 428958aa Iustin Pop
  pnode = instance.primary_node
4071 a0c3fea1 Michael Hanselmann
4072 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4073 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4074 428958aa Iustin Pop
    result = lu.rpc.call_file_storage_dir_create(pnode, file_storage_dir)
4075 0f1a06e3 Manuel Franceschini
4076 781de953 Iustin Pop
    if result.failed or not result.data:
4077 428958aa Iustin Pop
      raise errors.OpExecError("Could not connect to node '%s'" % pnode)
4078 0f1a06e3 Manuel Franceschini
4079 781de953 Iustin Pop
    if not result.data[0]:
4080 796cab27 Iustin Pop
      raise errors.OpExecError("Failed to create directory '%s'" %
4081 796cab27 Iustin Pop
                               file_storage_dir)
4082 0f1a06e3 Manuel Franceschini
4083 24991749 Iustin Pop
  # Note: this needs to be kept in sync with adding of disks in
4084 24991749 Iustin Pop
  # LUSetInstanceParams
4085 a8083063 Iustin Pop
  for device in instance.disks:
4086 9a4f63d1 Iustin Pop
    logging.info("Creating volume %s for instance %s",
4087 9a4f63d1 Iustin Pop
                 device.iv_name, instance.name)
4088 a8083063 Iustin Pop
    #HARDCODE
4089 428958aa Iustin Pop
    for node in instance.all_nodes:
4090 428958aa Iustin Pop
      f_create = node == pnode
4091 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, device, f_create, info, f_create)
4092 a8083063 Iustin Pop
4093 a8083063 Iustin Pop
4094 b9bddb6b Iustin Pop
def _RemoveDisks(lu, instance):
4095 a8083063 Iustin Pop
  """Remove all disks for an instance.
4096 a8083063 Iustin Pop

4097 a8083063 Iustin Pop
  This abstracts away some work from `AddInstance()` and
4098 a8083063 Iustin Pop
  `RemoveInstance()`. Note that in case some of the devices couldn't
4099 1d67656e Iustin Pop
  be removed, the removal will continue with the other ones (compare
4100 a8083063 Iustin Pop
  with `_CreateDisks()`).
4101 a8083063 Iustin Pop

4102 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4103 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4104 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4105 e4376078 Iustin Pop
  @param instance: the instance whose disks we should remove
4106 e4376078 Iustin Pop
  @rtype: boolean
4107 e4376078 Iustin Pop
  @return: the success of the removal
4108 a8083063 Iustin Pop

4109 a8083063 Iustin Pop
  """
4110 9a4f63d1 Iustin Pop
  logging.info("Removing block devices for instance %s", instance.name)
4111 a8083063 Iustin Pop
4112 e1bc0878 Iustin Pop
  all_result = True
4113 a8083063 Iustin Pop
  for device in instance.disks:
4114 a8083063 Iustin Pop
    for node, disk in device.ComputeNodeTree(instance.primary_node):
4115 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(disk, node)
4116 e1bc0878 Iustin Pop
      msg = lu.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
4117 e1bc0878 Iustin Pop
      if msg:
4118 e1bc0878 Iustin Pop
        lu.LogWarning("Could not remove block device %s on node %s,"
4119 e1bc0878 Iustin Pop
                      " continuing anyway: %s", device.iv_name, node, msg)
4120 e1bc0878 Iustin Pop
        all_result = False
4121 0f1a06e3 Manuel Franceschini
4122 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4123 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4124 781de953 Iustin Pop
    result = lu.rpc.call_file_storage_dir_remove(instance.primary_node,
4125 781de953 Iustin Pop
                                                 file_storage_dir)
4126 781de953 Iustin Pop
    if result.failed or not result.data:
4127 9a4f63d1 Iustin Pop
      logging.error("Could not remove directory '%s'", file_storage_dir)
4128 e1bc0878 Iustin Pop
      all_result = False
4129 0f1a06e3 Manuel Franceschini
4130 e1bc0878 Iustin Pop
  return all_result
4131 a8083063 Iustin Pop
4132 a8083063 Iustin Pop
4133 08db7c5c Iustin Pop
def _ComputeDiskSize(disk_template, disks):
4134 e2fe6369 Iustin Pop
  """Compute disk size requirements in the volume group
4135 e2fe6369 Iustin Pop

4136 e2fe6369 Iustin Pop
  """
4137 e2fe6369 Iustin Pop
  # Required free disk space as a function of disk and swap space
4138 e2fe6369 Iustin Pop
  req_size_dict = {
4139 e2fe6369 Iustin Pop
    constants.DT_DISKLESS: None,
4140 08db7c5c Iustin Pop
    constants.DT_PLAIN: sum(d["size"] for d in disks),
4141 08db7c5c Iustin Pop
    # 128 MB are added for drbd metadata for each disk
4142 08db7c5c Iustin Pop
    constants.DT_DRBD8: sum(d["size"] + 128 for d in disks),
4143 e2fe6369 Iustin Pop
    constants.DT_FILE: None,
4144 e2fe6369 Iustin Pop
  }
4145 e2fe6369 Iustin Pop
4146 e2fe6369 Iustin Pop
  if disk_template not in req_size_dict:
4147 e2fe6369 Iustin Pop
    raise errors.ProgrammerError("Disk template '%s' size requirement"
4148 e2fe6369 Iustin Pop
                                 " is unknown" %  disk_template)
4149 e2fe6369 Iustin Pop
4150 e2fe6369 Iustin Pop
  return req_size_dict[disk_template]
4151 e2fe6369 Iustin Pop
4152 e2fe6369 Iustin Pop
4153 74409b12 Iustin Pop
def _CheckHVParams(lu, nodenames, hvname, hvparams):
4154 74409b12 Iustin Pop
  """Hypervisor parameter validation.
4155 74409b12 Iustin Pop

4156 74409b12 Iustin Pop
  This function abstract the hypervisor parameter validation to be
4157 74409b12 Iustin Pop
  used in both instance create and instance modify.
4158 74409b12 Iustin Pop

4159 74409b12 Iustin Pop
  @type lu: L{LogicalUnit}
4160 74409b12 Iustin Pop
  @param lu: the logical unit for which we check
4161 74409b12 Iustin Pop
  @type nodenames: list
4162 74409b12 Iustin Pop
  @param nodenames: the list of nodes on which we should check
4163 74409b12 Iustin Pop
  @type hvname: string
4164 74409b12 Iustin Pop
  @param hvname: the name of the hypervisor we should use
4165 74409b12 Iustin Pop
  @type hvparams: dict
4166 74409b12 Iustin Pop
  @param hvparams: the parameters which we need to check
4167 74409b12 Iustin Pop
  @raise errors.OpPrereqError: if the parameters are not valid
4168 74409b12 Iustin Pop

4169 74409b12 Iustin Pop
  """
4170 74409b12 Iustin Pop
  hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
4171 74409b12 Iustin Pop
                                                  hvname,
4172 74409b12 Iustin Pop
                                                  hvparams)
4173 74409b12 Iustin Pop
  for node in nodenames:
4174 781de953 Iustin Pop
    info = hvinfo[node]
4175 68c6f21c Iustin Pop
    if info.offline:
4176 68c6f21c Iustin Pop
      continue
4177 0959c824 Iustin Pop
    msg = info.RemoteFailMsg()
4178 0959c824 Iustin Pop
    if msg:
4179 74409b12 Iustin Pop
      raise errors.OpPrereqError("Hypervisor parameter validation failed:"
4180 0959c824 Iustin Pop
                                 " %s" % msg)
4181 74409b12 Iustin Pop
4182 74409b12 Iustin Pop
4183 a8083063 Iustin Pop
class LUCreateInstance(LogicalUnit):
4184 a8083063 Iustin Pop
  """Create an instance.
4185 a8083063 Iustin Pop

4186 a8083063 Iustin Pop
  """
4187 a8083063 Iustin Pop
  HPATH = "instance-add"
4188 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4189 08db7c5c Iustin Pop
  _OP_REQP = ["instance_name", "disks", "disk_template",
4190 08db7c5c Iustin Pop
              "mode", "start",
4191 08db7c5c Iustin Pop
              "wait_for_sync", "ip_check", "nics",
4192 338e51e8 Iustin Pop
              "hvparams", "beparams"]
4193 7baf741d Guido Trotter
  REQ_BGL = False
4194 7baf741d Guido Trotter
4195 7baf741d Guido Trotter
  def _ExpandNode(self, node):
4196 7baf741d Guido Trotter
    """Expands and checks one node name.
4197 7baf741d Guido Trotter

4198 7baf741d Guido Trotter
    """
4199 7baf741d Guido Trotter
    node_full = self.cfg.ExpandNodeName(node)
4200 7baf741d Guido Trotter
    if node_full is None:
4201 7baf741d Guido Trotter
      raise errors.OpPrereqError("Unknown node %s" % node)
4202 7baf741d Guido Trotter
    return node_full
4203 7baf741d Guido Trotter
4204 7baf741d Guido Trotter
  def ExpandNames(self):
4205 7baf741d Guido Trotter
    """ExpandNames for CreateInstance.
4206 7baf741d Guido Trotter

4207 7baf741d Guido Trotter
    Figure out the right locks for instance creation.
4208 7baf741d Guido Trotter

4209 7baf741d Guido Trotter
    """
4210 7baf741d Guido Trotter
    self.needed_locks = {}
4211 7baf741d Guido Trotter
4212 7baf741d Guido Trotter
    # set optional parameters to none if they don't exist
4213 6785674e Iustin Pop
    for attr in ["pnode", "snode", "iallocator", "hypervisor"]:
4214 7baf741d Guido Trotter
      if not hasattr(self.op, attr):
4215 7baf741d Guido Trotter
        setattr(self.op, attr, None)
4216 7baf741d Guido Trotter
4217 4b2f38dd Iustin Pop
    # cheap checks, mostly valid constants given
4218 4b2f38dd Iustin Pop
4219 7baf741d Guido Trotter
    # verify creation mode
4220 7baf741d Guido Trotter
    if self.op.mode not in (constants.INSTANCE_CREATE,
4221 7baf741d Guido Trotter
                            constants.INSTANCE_IMPORT):
4222 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid instance creation mode '%s'" %
4223 7baf741d Guido Trotter
                                 self.op.mode)
4224 4b2f38dd Iustin Pop
4225 7baf741d Guido Trotter
    # disk template and mirror node verification
4226 7baf741d Guido Trotter
    if self.op.disk_template not in constants.DISK_TEMPLATES:
4227 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid disk template name")
4228 7baf741d Guido Trotter
4229 4b2f38dd Iustin Pop
    if self.op.hypervisor is None:
4230 4b2f38dd Iustin Pop
      self.op.hypervisor = self.cfg.GetHypervisorType()
4231 4b2f38dd Iustin Pop
4232 8705eb96 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
4233 8705eb96 Iustin Pop
    enabled_hvs = cluster.enabled_hypervisors
4234 4b2f38dd Iustin Pop
    if self.op.hypervisor not in enabled_hvs:
4235 4b2f38dd Iustin Pop
      raise errors.OpPrereqError("Selected hypervisor (%s) not enabled in the"
4236 4b2f38dd Iustin Pop
                                 " cluster (%s)" % (self.op.hypervisor,
4237 4b2f38dd Iustin Pop
                                  ",".join(enabled_hvs)))
4238 4b2f38dd Iustin Pop
4239 6785674e Iustin Pop
    # check hypervisor parameter syntax (locally)
4240 a5728081 Guido Trotter
    utils.ForceDictType(self.op.hvparams, constants.HVS_PARAMETER_TYPES)
4241 8705eb96 Iustin Pop
    filled_hvp = cluster.FillDict(cluster.hvparams[self.op.hypervisor],
4242 8705eb96 Iustin Pop
                                  self.op.hvparams)
4243 6785674e Iustin Pop
    hv_type = hypervisor.GetHypervisor(self.op.hypervisor)
4244 8705eb96 Iustin Pop
    hv_type.CheckParameterSyntax(filled_hvp)
4245 6785674e Iustin Pop
4246 338e51e8 Iustin Pop
    # fill and remember the beparams dict
4247 a5728081 Guido Trotter
    utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
4248 338e51e8 Iustin Pop
    self.be_full = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
4249 338e51e8 Iustin Pop
                                    self.op.beparams)
4250 338e51e8 Iustin Pop
4251 7baf741d Guido Trotter
    #### instance parameters check
4252 7baf741d Guido Trotter
4253 7baf741d Guido Trotter
    # instance name verification
4254 7baf741d Guido Trotter
    hostname1 = utils.HostInfo(self.op.instance_name)
4255 7baf741d Guido Trotter
    self.op.instance_name = instance_name = hostname1.name
4256 7baf741d Guido Trotter
4257 7baf741d Guido Trotter
    # this is just a preventive check, but someone might still add this
4258 7baf741d Guido Trotter
    # instance in the meantime, and creation will fail at lock-add time
4259 7baf741d Guido Trotter
    if instance_name in self.cfg.GetInstanceList():
4260 7baf741d Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
4261 7baf741d Guido Trotter
                                 instance_name)
4262 7baf741d Guido Trotter
4263 7baf741d Guido Trotter
    self.add_locks[locking.LEVEL_INSTANCE] = instance_name
4264 7baf741d Guido Trotter
4265 08db7c5c Iustin Pop
    # NIC buildup
4266 08db7c5c Iustin Pop
    self.nics = []
4267 08db7c5c Iustin Pop
    for nic in self.op.nics:
4268 08db7c5c Iustin Pop
      # ip validity checks
4269 08db7c5c Iustin Pop
      ip = nic.get("ip", None)
4270 08db7c5c Iustin Pop
      if ip is None or ip.lower() == "none":
4271 08db7c5c Iustin Pop
        nic_ip = None
4272 08db7c5c Iustin Pop
      elif ip.lower() == constants.VALUE_AUTO:
4273 08db7c5c Iustin Pop
        nic_ip = hostname1.ip
4274 08db7c5c Iustin Pop
      else:
4275 08db7c5c Iustin Pop
        if not utils.IsValidIP(ip):
4276 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Given IP address '%s' doesn't look"
4277 08db7c5c Iustin Pop
                                     " like a valid IP" % ip)
4278 08db7c5c Iustin Pop
        nic_ip = ip
4279 08db7c5c Iustin Pop
4280 08db7c5c Iustin Pop
      # MAC address verification
4281 08db7c5c Iustin Pop
      mac = nic.get("mac", constants.VALUE_AUTO)
4282 08db7c5c Iustin Pop
      if mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4283 08db7c5c Iustin Pop
        if not utils.IsValidMac(mac.lower()):
4284 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Invalid MAC address specified: %s" %
4285 08db7c5c Iustin Pop
                                     mac)
4286 08db7c5c Iustin Pop
      # bridge verification
4287 9939547b Iustin Pop
      bridge = nic.get("bridge", None)
4288 9939547b Iustin Pop
      if bridge is None:
4289 9939547b Iustin Pop
        bridge = self.cfg.GetDefBridge()
4290 08db7c5c Iustin Pop
      self.nics.append(objects.NIC(mac=mac, ip=nic_ip, bridge=bridge))
4291 08db7c5c Iustin Pop
4292 08db7c5c Iustin Pop
    # disk checks/pre-build
4293 08db7c5c Iustin Pop
    self.disks = []
4294 08db7c5c Iustin Pop
    for disk in self.op.disks:
4295 08db7c5c Iustin Pop
      mode = disk.get("mode", constants.DISK_RDWR)
4296 08db7c5c Iustin Pop
      if mode not in constants.DISK_ACCESS_SET:
4297 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk access mode '%s'" %
4298 08db7c5c Iustin Pop
                                   mode)
4299 08db7c5c Iustin Pop
      size = disk.get("size", None)
4300 08db7c5c Iustin Pop
      if size is None:
4301 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Missing disk size")
4302 08db7c5c Iustin Pop
      try:
4303 08db7c5c Iustin Pop
        size = int(size)
4304 08db7c5c Iustin Pop
      except ValueError:
4305 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk size '%s'" % size)
4306 08db7c5c Iustin Pop
      self.disks.append({"size": size, "mode": mode})
4307 08db7c5c Iustin Pop
4308 7baf741d Guido Trotter
    # used in CheckPrereq for ip ping check
4309 7baf741d Guido Trotter
    self.check_ip = hostname1.ip
4310 7baf741d Guido Trotter
4311 7baf741d Guido Trotter
    # file storage checks
4312 7baf741d Guido Trotter
    if (self.op.file_driver and
4313 7baf741d Guido Trotter
        not self.op.file_driver in constants.FILE_DRIVER):
4314 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid file driver name '%s'" %
4315 7baf741d Guido Trotter
                                 self.op.file_driver)
4316 7baf741d Guido Trotter
4317 7baf741d Guido Trotter
    if self.op.file_storage_dir and os.path.isabs(self.op.file_storage_dir):
4318 7baf741d Guido Trotter
      raise errors.OpPrereqError("File storage directory path not absolute")
4319 7baf741d Guido Trotter
4320 7baf741d Guido Trotter
    ### Node/iallocator related checks
4321 7baf741d Guido Trotter
    if [self.op.iallocator, self.op.pnode].count(None) != 1:
4322 7baf741d Guido Trotter
      raise errors.OpPrereqError("One and only one of iallocator and primary"
4323 7baf741d Guido Trotter
                                 " node must be given")
4324 7baf741d Guido Trotter
4325 7baf741d Guido Trotter
    if self.op.iallocator:
4326 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4327 7baf741d Guido Trotter
    else:
4328 7baf741d Guido Trotter
      self.op.pnode = self._ExpandNode(self.op.pnode)
4329 7baf741d Guido Trotter
      nodelist = [self.op.pnode]
4330 7baf741d Guido Trotter
      if self.op.snode is not None:
4331 7baf741d Guido Trotter
        self.op.snode = self._ExpandNode(self.op.snode)
4332 7baf741d Guido Trotter
        nodelist.append(self.op.snode)
4333 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = nodelist
4334 7baf741d Guido Trotter
4335 7baf741d Guido Trotter
    # in case of import lock the source node too
4336 7baf741d Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4337 7baf741d Guido Trotter
      src_node = getattr(self.op, "src_node", None)
4338 7baf741d Guido Trotter
      src_path = getattr(self.op, "src_path", None)
4339 7baf741d Guido Trotter
4340 b9322a9f Guido Trotter
      if src_path is None:
4341 b9322a9f Guido Trotter
        self.op.src_path = src_path = self.op.instance_name
4342 b9322a9f Guido Trotter
4343 b9322a9f Guido Trotter
      if src_node is None:
4344 b9322a9f Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4345 b9322a9f Guido Trotter
        self.op.src_node = None
4346 b9322a9f Guido Trotter
        if os.path.isabs(src_path):
4347 b9322a9f Guido Trotter
          raise errors.OpPrereqError("Importing an instance from an absolute"
4348 b9322a9f Guido Trotter
                                     " path requires a source node option.")
4349 b9322a9f Guido Trotter
      else:
4350 b9322a9f Guido Trotter
        self.op.src_node = src_node = self._ExpandNode(src_node)
4351 b9322a9f Guido Trotter
        if self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET:
4352 b9322a9f Guido Trotter
          self.needed_locks[locking.LEVEL_NODE].append(src_node)
4353 b9322a9f Guido Trotter
        if not os.path.isabs(src_path):
4354 b9322a9f Guido Trotter
          self.op.src_path = src_path = \
4355 b9322a9f Guido Trotter
            os.path.join(constants.EXPORT_DIR, src_path)
4356 7baf741d Guido Trotter
4357 7baf741d Guido Trotter
    else: # INSTANCE_CREATE
4358 7baf741d Guido Trotter
      if getattr(self.op, "os_type", None) is None:
4359 7baf741d Guido Trotter
        raise errors.OpPrereqError("No guest OS specified")
4360 a8083063 Iustin Pop
4361 538475ca Iustin Pop
  def _RunAllocator(self):
4362 538475ca Iustin Pop
    """Run the allocator based on input opcode.
4363 538475ca Iustin Pop

4364 538475ca Iustin Pop
    """
4365 08db7c5c Iustin Pop
    nics = [n.ToDict() for n in self.nics]
4366 72737a7f Iustin Pop
    ial = IAllocator(self,
4367 29859cb7 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_ALLOC,
4368 d1c2dd75 Iustin Pop
                     name=self.op.instance_name,
4369 d1c2dd75 Iustin Pop
                     disk_template=self.op.disk_template,
4370 d1c2dd75 Iustin Pop
                     tags=[],
4371 d1c2dd75 Iustin Pop
                     os=self.op.os_type,
4372 338e51e8 Iustin Pop
                     vcpus=self.be_full[constants.BE_VCPUS],
4373 338e51e8 Iustin Pop
                     mem_size=self.be_full[constants.BE_MEMORY],
4374 08db7c5c Iustin Pop
                     disks=self.disks,
4375 d1c2dd75 Iustin Pop
                     nics=nics,
4376 8cc7e742 Guido Trotter
                     hypervisor=self.op.hypervisor,
4377 29859cb7 Iustin Pop
                     )
4378 d1c2dd75 Iustin Pop
4379 d1c2dd75 Iustin Pop
    ial.Run(self.op.iallocator)
4380 d1c2dd75 Iustin Pop
4381 d1c2dd75 Iustin Pop
    if not ial.success:
4382 538475ca Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4383 538475ca Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4384 d1c2dd75 Iustin Pop
                                                           ial.info))
4385 27579978 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4386 538475ca Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4387 538475ca Iustin Pop
                                 " of nodes (%s), required %s" %
4388 97abc79f Iustin Pop
                                 (self.op.iallocator, len(ial.nodes),
4389 1ce4bbe3 René Nussbaumer
                                  ial.required_nodes))
4390 d1c2dd75 Iustin Pop
    self.op.pnode = ial.nodes[0]
4391 86d9d3bb Iustin Pop
    self.LogInfo("Selected nodes for instance %s via iallocator %s: %s",
4392 86d9d3bb Iustin Pop
                 self.op.instance_name, self.op.iallocator,
4393 86d9d3bb Iustin Pop
                 ", ".join(ial.nodes))
4394 27579978 Iustin Pop
    if ial.required_nodes == 2:
4395 d1c2dd75 Iustin Pop
      self.op.snode = ial.nodes[1]
4396 538475ca Iustin Pop
4397 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4398 a8083063 Iustin Pop
    """Build hooks env.
4399 a8083063 Iustin Pop

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

4402 a8083063 Iustin Pop
    """
4403 a8083063 Iustin Pop
    env = {
4404 396e1b78 Michael Hanselmann
      "INSTANCE_DISK_TEMPLATE": self.op.disk_template,
4405 08db7c5c Iustin Pop
      "INSTANCE_DISK_SIZE": ",".join(str(d["size"]) for d in self.disks),
4406 a8083063 Iustin Pop
      "INSTANCE_ADD_MODE": self.op.mode,
4407 a8083063 Iustin Pop
      }
4408 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4409 396e1b78 Michael Hanselmann
      env["INSTANCE_SRC_NODE"] = self.op.src_node
4410 396e1b78 Michael Hanselmann
      env["INSTANCE_SRC_PATH"] = self.op.src_path
4411 09acf207 Guido Trotter
      env["INSTANCE_SRC_IMAGES"] = self.src_images
4412 396e1b78 Michael Hanselmann
4413 396e1b78 Michael Hanselmann
    env.update(_BuildInstanceHookEnv(name=self.op.instance_name,
4414 396e1b78 Michael Hanselmann
      primary_node=self.op.pnode,
4415 396e1b78 Michael Hanselmann
      secondary_nodes=self.secondaries,
4416 4978db17 Iustin Pop
      status=self.op.start,
4417 ecb215b5 Michael Hanselmann
      os_type=self.op.os_type,
4418 338e51e8 Iustin Pop
      memory=self.be_full[constants.BE_MEMORY],
4419 338e51e8 Iustin Pop
      vcpus=self.be_full[constants.BE_VCPUS],
4420 08db7c5c Iustin Pop
      nics=[(n.ip, n.bridge, n.mac) for n in self.nics],
4421 396e1b78 Michael Hanselmann
    ))
4422 a8083063 Iustin Pop
4423 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
4424 a8083063 Iustin Pop
          self.secondaries)
4425 a8083063 Iustin Pop
    return env, nl, nl
4426 a8083063 Iustin Pop
4427 a8083063 Iustin Pop
4428 a8083063 Iustin Pop
  def CheckPrereq(self):
4429 a8083063 Iustin Pop
    """Check prerequisites.
4430 a8083063 Iustin Pop

4431 a8083063 Iustin Pop
    """
4432 eedc99de Manuel Franceschini
    if (not self.cfg.GetVGName() and
4433 eedc99de Manuel Franceschini
        self.op.disk_template not in constants.DTS_NOT_LVM):
4434 eedc99de Manuel Franceschini
      raise errors.OpPrereqError("Cluster does not support lvm-based"
4435 eedc99de Manuel Franceschini
                                 " instances")
4436 eedc99de Manuel Franceschini
4437 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4438 7baf741d Guido Trotter
      src_node = self.op.src_node
4439 7baf741d Guido Trotter
      src_path = self.op.src_path
4440 a8083063 Iustin Pop
4441 c0cbdc67 Guido Trotter
      if src_node is None:
4442 c0cbdc67 Guido Trotter
        exp_list = self.rpc.call_export_list(
4443 781de953 Iustin Pop
          self.acquired_locks[locking.LEVEL_NODE])
4444 c0cbdc67 Guido Trotter
        found = False
4445 c0cbdc67 Guido Trotter
        for node in exp_list:
4446 781de953 Iustin Pop
          if not exp_list[node].failed and src_path in exp_list[node].data:
4447 c0cbdc67 Guido Trotter
            found = True
4448 c0cbdc67 Guido Trotter
            self.op.src_node = src_node = node
4449 c0cbdc67 Guido Trotter
            self.op.src_path = src_path = os.path.join(constants.EXPORT_DIR,
4450 c0cbdc67 Guido Trotter
                                                       src_path)
4451 c0cbdc67 Guido Trotter
            break
4452 c0cbdc67 Guido Trotter
        if not found:
4453 c0cbdc67 Guido Trotter
          raise errors.OpPrereqError("No export found for relative path %s" %
4454 c0cbdc67 Guido Trotter
                                      src_path)
4455 c0cbdc67 Guido Trotter
4456 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, src_node)
4457 781de953 Iustin Pop
      result = self.rpc.call_export_info(src_node, src_path)
4458 781de953 Iustin Pop
      result.Raise()
4459 781de953 Iustin Pop
      if not result.data:
4460 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("No export found in dir %s" % src_path)
4461 a8083063 Iustin Pop
4462 781de953 Iustin Pop
      export_info = result.data
4463 a8083063 Iustin Pop
      if not export_info.has_section(constants.INISECT_EXP):
4464 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Corrupted export config")
4465 a8083063 Iustin Pop
4466 a8083063 Iustin Pop
      ei_version = export_info.get(constants.INISECT_EXP, 'version')
4467 a8083063 Iustin Pop
      if (int(ei_version) != constants.EXPORT_VERSION):
4468 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Wrong export version %s (wanted %d)" %
4469 3ecf6786 Iustin Pop
                                   (ei_version, constants.EXPORT_VERSION))
4470 a8083063 Iustin Pop
4471 09acf207 Guido Trotter
      # Check that the new instance doesn't have less disks than the export
4472 08db7c5c Iustin Pop
      instance_disks = len(self.disks)
4473 09acf207 Guido Trotter
      export_disks = export_info.getint(constants.INISECT_INS, 'disk_count')
4474 09acf207 Guido Trotter
      if instance_disks < export_disks:
4475 09acf207 Guido Trotter
        raise errors.OpPrereqError("Not enough disks to import."
4476 09acf207 Guido Trotter
                                   " (instance: %d, export: %d)" %
4477 726d7d68 Iustin Pop
                                   (instance_disks, export_disks))
4478 a8083063 Iustin Pop
4479 a8083063 Iustin Pop
      self.op.os_type = export_info.get(constants.INISECT_EXP, 'os')
4480 09acf207 Guido Trotter
      disk_images = []
4481 09acf207 Guido Trotter
      for idx in range(export_disks):
4482 09acf207 Guido Trotter
        option = 'disk%d_dump' % idx
4483 09acf207 Guido Trotter
        if export_info.has_option(constants.INISECT_INS, option):
4484 09acf207 Guido Trotter
          # FIXME: are the old os-es, disk sizes, etc. useful?
4485 09acf207 Guido Trotter
          export_name = export_info.get(constants.INISECT_INS, option)
4486 09acf207 Guido Trotter
          image = os.path.join(src_path, export_name)
4487 09acf207 Guido Trotter
          disk_images.append(image)
4488 09acf207 Guido Trotter
        else:
4489 09acf207 Guido Trotter
          disk_images.append(False)
4490 09acf207 Guido Trotter
4491 09acf207 Guido Trotter
      self.src_images = disk_images
4492 901a65c1 Iustin Pop
4493 b4364a6b Guido Trotter
      old_name = export_info.get(constants.INISECT_INS, 'name')
4494 b4364a6b Guido Trotter
      # FIXME: int() here could throw a ValueError on broken exports
4495 b4364a6b Guido Trotter
      exp_nic_count = int(export_info.get(constants.INISECT_INS, 'nic_count'))
4496 b4364a6b Guido Trotter
      if self.op.instance_name == old_name:
4497 b4364a6b Guido Trotter
        for idx, nic in enumerate(self.nics):
4498 b4364a6b Guido Trotter
          if nic.mac == constants.VALUE_AUTO and exp_nic_count >= idx:
4499 b4364a6b Guido Trotter
            nic_mac_ini = 'nic%d_mac' % idx
4500 b4364a6b Guido Trotter
            nic.mac = export_info.get(constants.INISECT_INS, nic_mac_ini)
4501 bc89efc3 Guido Trotter
4502 295728df Guido Trotter
    # ENDIF: self.op.mode == constants.INSTANCE_IMPORT
4503 7baf741d Guido Trotter
    # ip ping checks (we use the same ip that was resolved in ExpandNames)
4504 901a65c1 Iustin Pop
    if self.op.start and not self.op.ip_check:
4505 901a65c1 Iustin Pop
      raise errors.OpPrereqError("Cannot ignore IP address conflicts when"
4506 901a65c1 Iustin Pop
                                 " adding an instance in start mode")
4507 901a65c1 Iustin Pop
4508 901a65c1 Iustin Pop
    if self.op.ip_check:
4509 7baf741d Guido Trotter
      if utils.TcpPing(self.check_ip, constants.DEFAULT_NODED_PORT):
4510 901a65c1 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
4511 7b3a8fb5 Iustin Pop
                                   (self.check_ip, self.op.instance_name))
4512 901a65c1 Iustin Pop
4513 295728df Guido Trotter
    #### mac address generation
4514 295728df Guido Trotter
    # By generating here the mac address both the allocator and the hooks get
4515 295728df Guido Trotter
    # the real final mac address rather than the 'auto' or 'generate' value.
4516 295728df Guido Trotter
    # There is a race condition between the generation and the instance object
4517 295728df Guido Trotter
    # creation, which means that we know the mac is valid now, but we're not
4518 295728df Guido Trotter
    # sure it will be when we actually add the instance. If things go bad
4519 295728df Guido Trotter
    # adding the instance will abort because of a duplicate mac, and the
4520 295728df Guido Trotter
    # creation job will fail.
4521 295728df Guido Trotter
    for nic in self.nics:
4522 295728df Guido Trotter
      if nic.mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4523 295728df Guido Trotter
        nic.mac = self.cfg.GenerateMAC()
4524 295728df Guido Trotter
4525 538475ca Iustin Pop
    #### allocator run
4526 538475ca Iustin Pop
4527 538475ca Iustin Pop
    if self.op.iallocator is not None:
4528 538475ca Iustin Pop
      self._RunAllocator()
4529 0f1a06e3 Manuel Franceschini
4530 901a65c1 Iustin Pop
    #### node related checks
4531 901a65c1 Iustin Pop
4532 901a65c1 Iustin Pop
    # check primary node
4533 7baf741d Guido Trotter
    self.pnode = pnode = self.cfg.GetNodeInfo(self.op.pnode)
4534 7baf741d Guido Trotter
    assert self.pnode is not None, \
4535 7baf741d Guido Trotter
      "Cannot retrieve locked node %s" % self.op.pnode
4536 7527a8a4 Iustin Pop
    if pnode.offline:
4537 7527a8a4 Iustin Pop
      raise errors.OpPrereqError("Cannot use offline primary node '%s'" %
4538 7527a8a4 Iustin Pop
                                 pnode.name)
4539 733a2b6a Iustin Pop
    if pnode.drained:
4540 733a2b6a Iustin Pop
      raise errors.OpPrereqError("Cannot use drained primary node '%s'" %
4541 733a2b6a Iustin Pop
                                 pnode.name)
4542 7527a8a4 Iustin Pop
4543 901a65c1 Iustin Pop
    self.secondaries = []
4544 901a65c1 Iustin Pop
4545 901a65c1 Iustin Pop
    # mirror node verification
4546 a1f445d3 Iustin Pop
    if self.op.disk_template in constants.DTS_NET_MIRROR:
4547 7baf741d Guido Trotter
      if self.op.snode is None:
4548 a1f445d3 Iustin Pop
        raise errors.OpPrereqError("The networked disk templates need"
4549 3ecf6786 Iustin Pop
                                   " a mirror node")
4550 7baf741d Guido Trotter
      if self.op.snode == pnode.name:
4551 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The secondary node cannot be"
4552 3ecf6786 Iustin Pop
                                   " the primary node.")
4553 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, self.op.snode)
4554 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, self.op.snode)
4555 733a2b6a Iustin Pop
      self.secondaries.append(self.op.snode)
4556 a8083063 Iustin Pop
4557 6785674e Iustin Pop
    nodenames = [pnode.name] + self.secondaries
4558 6785674e Iustin Pop
4559 e2fe6369 Iustin Pop
    req_size = _ComputeDiskSize(self.op.disk_template,
4560 08db7c5c Iustin Pop
                                self.disks)
4561 ed1ebc60 Guido Trotter
4562 8d75db10 Iustin Pop
    # Check lv size requirements
4563 8d75db10 Iustin Pop
    if req_size is not None:
4564 72737a7f Iustin Pop
      nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
4565 72737a7f Iustin Pop
                                         self.op.hypervisor)
4566 8d75db10 Iustin Pop
      for node in nodenames:
4567 781de953 Iustin Pop
        info = nodeinfo[node]
4568 781de953 Iustin Pop
        info.Raise()
4569 781de953 Iustin Pop
        info = info.data
4570 8d75db10 Iustin Pop
        if not info:
4571 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Cannot get current information"
4572 3e91897b Iustin Pop
                                     " from node '%s'" % node)
4573 8d75db10 Iustin Pop
        vg_free = info.get('vg_free', None)
4574 8d75db10 Iustin Pop
        if not isinstance(vg_free, int):
4575 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Can't compute free disk space on"
4576 8d75db10 Iustin Pop
                                     " node %s" % node)
4577 8d75db10 Iustin Pop
        if req_size > info['vg_free']:
4578 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Not enough disk space on target node %s."
4579 8d75db10 Iustin Pop
                                     " %d MB available, %d MB required" %
4580 8d75db10 Iustin Pop
                                     (node, info['vg_free'], req_size))
4581 ed1ebc60 Guido Trotter
4582 74409b12 Iustin Pop
    _CheckHVParams(self, nodenames, self.op.hypervisor, self.op.hvparams)
4583 6785674e Iustin Pop
4584 a8083063 Iustin Pop
    # os verification
4585 781de953 Iustin Pop
    result = self.rpc.call_os_get(pnode.name, self.op.os_type)
4586 781de953 Iustin Pop
    result.Raise()
4587 781de953 Iustin Pop
    if not isinstance(result.data, objects.OS):
4588 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("OS '%s' not in supported os list for"
4589 3ecf6786 Iustin Pop
                                 " primary node"  % self.op.os_type)
4590 a8083063 Iustin Pop
4591 901a65c1 Iustin Pop
    # bridge check on primary node
4592 08db7c5c Iustin Pop
    bridges = [n.bridge for n in self.nics]
4593 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(self.pnode.name, bridges)
4594 781de953 Iustin Pop
    result.Raise()
4595 781de953 Iustin Pop
    if not result.data:
4596 781de953 Iustin Pop
      raise errors.OpPrereqError("One of the target bridges '%s' does not"
4597 781de953 Iustin Pop
                                 " exist on destination node '%s'" %
4598 08db7c5c Iustin Pop
                                 (",".join(bridges), pnode.name))
4599 a8083063 Iustin Pop
4600 49ce1563 Iustin Pop
    # memory check on primary node
4601 49ce1563 Iustin Pop
    if self.op.start:
4602 b9bddb6b Iustin Pop
      _CheckNodeFreeMemory(self, self.pnode.name,
4603 49ce1563 Iustin Pop
                           "creating instance %s" % self.op.instance_name,
4604 338e51e8 Iustin Pop
                           self.be_full[constants.BE_MEMORY],
4605 338e51e8 Iustin Pop
                           self.op.hypervisor)
4606 49ce1563 Iustin Pop
4607 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4608 a8083063 Iustin Pop
    """Create and add the instance to the cluster.
4609 a8083063 Iustin Pop

4610 a8083063 Iustin Pop
    """
4611 a8083063 Iustin Pop
    instance = self.op.instance_name
4612 a8083063 Iustin Pop
    pnode_name = self.pnode.name
4613 a8083063 Iustin Pop
4614 e69d05fd Iustin Pop
    ht_kind = self.op.hypervisor
4615 2a6469d5 Alexander Schreiber
    if ht_kind in constants.HTS_REQ_PORT:
4616 2a6469d5 Alexander Schreiber
      network_port = self.cfg.AllocatePort()
4617 2a6469d5 Alexander Schreiber
    else:
4618 2a6469d5 Alexander Schreiber
      network_port = None
4619 58acb49d Alexander Schreiber
4620 6785674e Iustin Pop
    ##if self.op.vnc_bind_address is None:
4621 6785674e Iustin Pop
    ##  self.op.vnc_bind_address = constants.VNC_DEFAULT_BIND_ADDRESS
4622 31a853d2 Iustin Pop
4623 2c313123 Manuel Franceschini
    # this is needed because os.path.join does not accept None arguments
4624 2c313123 Manuel Franceschini
    if self.op.file_storage_dir is None:
4625 2c313123 Manuel Franceschini
      string_file_storage_dir = ""
4626 2c313123 Manuel Franceschini
    else:
4627 2c313123 Manuel Franceschini
      string_file_storage_dir = self.op.file_storage_dir
4628 2c313123 Manuel Franceschini
4629 0f1a06e3 Manuel Franceschini
    # build the full file storage dir path
4630 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.normpath(os.path.join(
4631 d6a02168 Michael Hanselmann
                                        self.cfg.GetFileStorageDir(),
4632 2c313123 Manuel Franceschini
                                        string_file_storage_dir, instance))
4633 0f1a06e3 Manuel Franceschini
4634 0f1a06e3 Manuel Franceschini
4635 b9bddb6b Iustin Pop
    disks = _GenerateDiskTemplate(self,
4636 a8083063 Iustin Pop
                                  self.op.disk_template,
4637 a8083063 Iustin Pop
                                  instance, pnode_name,
4638 08db7c5c Iustin Pop
                                  self.secondaries,
4639 08db7c5c Iustin Pop
                                  self.disks,
4640 0f1a06e3 Manuel Franceschini
                                  file_storage_dir,
4641 e2a65344 Iustin Pop
                                  self.op.file_driver,
4642 e2a65344 Iustin Pop
                                  0)
4643 a8083063 Iustin Pop
4644 a8083063 Iustin Pop
    iobj = objects.Instance(name=instance, os=self.op.os_type,
4645 a8083063 Iustin Pop
                            primary_node=pnode_name,
4646 08db7c5c Iustin Pop
                            nics=self.nics, disks=disks,
4647 a8083063 Iustin Pop
                            disk_template=self.op.disk_template,
4648 4978db17 Iustin Pop
                            admin_up=False,
4649 58acb49d Alexander Schreiber
                            network_port=network_port,
4650 338e51e8 Iustin Pop
                            beparams=self.op.beparams,
4651 6785674e Iustin Pop
                            hvparams=self.op.hvparams,
4652 e69d05fd Iustin Pop
                            hypervisor=self.op.hypervisor,
4653 a8083063 Iustin Pop
                            )
4654 a8083063 Iustin Pop
4655 a8083063 Iustin Pop
    feedback_fn("* creating instance disks...")
4656 796cab27 Iustin Pop
    try:
4657 796cab27 Iustin Pop
      _CreateDisks(self, iobj)
4658 796cab27 Iustin Pop
    except errors.OpExecError:
4659 796cab27 Iustin Pop
      self.LogWarning("Device creation failed, reverting...")
4660 796cab27 Iustin Pop
      try:
4661 796cab27 Iustin Pop
        _RemoveDisks(self, iobj)
4662 796cab27 Iustin Pop
      finally:
4663 796cab27 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance)
4664 796cab27 Iustin Pop
        raise
4665 a8083063 Iustin Pop
4666 a8083063 Iustin Pop
    feedback_fn("adding instance %s to cluster config" % instance)
4667 a8083063 Iustin Pop
4668 a8083063 Iustin Pop
    self.cfg.AddInstance(iobj)
4669 7baf741d Guido Trotter
    # Declare that we don't want to remove the instance lock anymore, as we've
4670 7baf741d Guido Trotter
    # added the instance to the config
4671 7baf741d Guido Trotter
    del self.remove_locks[locking.LEVEL_INSTANCE]
4672 e36e96b4 Guido Trotter
    # Unlock all the nodes
4673 9c8971d7 Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4674 9c8971d7 Guido Trotter
      nodes_keep = [self.op.src_node]
4675 9c8971d7 Guido Trotter
      nodes_release = [node for node in self.acquired_locks[locking.LEVEL_NODE]
4676 9c8971d7 Guido Trotter
                       if node != self.op.src_node]
4677 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE, nodes_release)
4678 9c8971d7 Guido Trotter
      self.acquired_locks[locking.LEVEL_NODE] = nodes_keep
4679 9c8971d7 Guido Trotter
    else:
4680 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE)
4681 9c8971d7 Guido Trotter
      del self.acquired_locks[locking.LEVEL_NODE]
4682 a8083063 Iustin Pop
4683 a8083063 Iustin Pop
    if self.op.wait_for_sync:
4684 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj)
4685 a1f445d3 Iustin Pop
    elif iobj.disk_template in constants.DTS_NET_MIRROR:
4686 a8083063 Iustin Pop
      # make sure the disks are not degraded (still sync-ing is ok)
4687 a8083063 Iustin Pop
      time.sleep(15)
4688 a8083063 Iustin Pop
      feedback_fn("* checking mirrors status")
4689 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj, oneshot=True)
4690 a8083063 Iustin Pop
    else:
4691 a8083063 Iustin Pop
      disk_abort = False
4692 a8083063 Iustin Pop
4693 a8083063 Iustin Pop
    if disk_abort:
4694 b9bddb6b Iustin Pop
      _RemoveDisks(self, iobj)
4695 a8083063 Iustin Pop
      self.cfg.RemoveInstance(iobj.name)
4696 7baf741d Guido Trotter
      # Make sure the instance lock gets removed
4697 7baf741d Guido Trotter
      self.remove_locks[locking.LEVEL_INSTANCE] = iobj.name
4698 3ecf6786 Iustin Pop
      raise errors.OpExecError("There are some degraded disks for"
4699 3ecf6786 Iustin Pop
                               " this instance")
4700 a8083063 Iustin Pop
4701 a8083063 Iustin Pop
    feedback_fn("creating os for instance %s on node %s" %
4702 a8083063 Iustin Pop
                (instance, pnode_name))
4703 a8083063 Iustin Pop
4704 a8083063 Iustin Pop
    if iobj.disk_template != constants.DT_DISKLESS:
4705 a8083063 Iustin Pop
      if self.op.mode == constants.INSTANCE_CREATE:
4706 a8083063 Iustin Pop
        feedback_fn("* running the instance OS create scripts...")
4707 781de953 Iustin Pop
        result = self.rpc.call_instance_os_add(pnode_name, iobj)
4708 20e01edd Iustin Pop
        msg = result.RemoteFailMsg()
4709 20e01edd Iustin Pop
        if msg:
4710 781de953 Iustin Pop
          raise errors.OpExecError("Could not add os for instance %s"
4711 20e01edd Iustin Pop
                                   " on node %s: %s" %
4712 20e01edd Iustin Pop
                                   (instance, pnode_name, msg))
4713 a8083063 Iustin Pop
4714 a8083063 Iustin Pop
      elif self.op.mode == constants.INSTANCE_IMPORT:
4715 a8083063 Iustin Pop
        feedback_fn("* running the instance OS import scripts...")
4716 a8083063 Iustin Pop
        src_node = self.op.src_node
4717 09acf207 Guido Trotter
        src_images = self.src_images
4718 62c9ec92 Iustin Pop
        cluster_name = self.cfg.GetClusterName()
4719 6c0af70e Guido Trotter
        import_result = self.rpc.call_instance_os_import(pnode_name, iobj,
4720 09acf207 Guido Trotter
                                                         src_node, src_images,
4721 6c0af70e Guido Trotter
                                                         cluster_name)
4722 781de953 Iustin Pop
        import_result.Raise()
4723 781de953 Iustin Pop
        for idx, result in enumerate(import_result.data):
4724 09acf207 Guido Trotter
          if not result:
4725 726d7d68 Iustin Pop
            self.LogWarning("Could not import the image %s for instance"
4726 726d7d68 Iustin Pop
                            " %s, disk %d, on node %s" %
4727 726d7d68 Iustin Pop
                            (src_images[idx], instance, idx, pnode_name))
4728 a8083063 Iustin Pop
      else:
4729 a8083063 Iustin Pop
        # also checked in the prereq part
4730 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Unknown OS initialization mode '%s'"
4731 3ecf6786 Iustin Pop
                                     % self.op.mode)
4732 a8083063 Iustin Pop
4733 a8083063 Iustin Pop
    if self.op.start:
4734 4978db17 Iustin Pop
      iobj.admin_up = True
4735 4978db17 Iustin Pop
      self.cfg.Update(iobj)
4736 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s", instance, pnode_name)
4737 a8083063 Iustin Pop
      feedback_fn("* starting instance...")
4738 781de953 Iustin Pop
      result = self.rpc.call_instance_start(pnode_name, iobj, None)
4739 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
4740 dd279568 Iustin Pop
      if msg:
4741 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance: %s" % msg)
4742 a8083063 Iustin Pop
4743 a8083063 Iustin Pop
4744 a8083063 Iustin Pop
class LUConnectConsole(NoHooksLU):
4745 a8083063 Iustin Pop
  """Connect to an instance's console.
4746 a8083063 Iustin Pop

4747 a8083063 Iustin Pop
  This is somewhat special in that it returns the command line that
4748 a8083063 Iustin Pop
  you need to run on the master node in order to connect to the
4749 a8083063 Iustin Pop
  console.
4750 a8083063 Iustin Pop

4751 a8083063 Iustin Pop
  """
4752 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
4753 8659b73e Guido Trotter
  REQ_BGL = False
4754 8659b73e Guido Trotter
4755 8659b73e Guido Trotter
  def ExpandNames(self):
4756 8659b73e Guido Trotter
    self._ExpandAndLockInstance()
4757 a8083063 Iustin Pop
4758 a8083063 Iustin Pop
  def CheckPrereq(self):
4759 a8083063 Iustin Pop
    """Check prerequisites.
4760 a8083063 Iustin Pop

4761 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
4762 a8083063 Iustin Pop

4763 a8083063 Iustin Pop
    """
4764 8659b73e Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4765 8659b73e Guido Trotter
    assert self.instance is not None, \
4766 8659b73e Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4767 513e896d Guido Trotter
    _CheckNodeOnline(self, self.instance.primary_node)
4768 a8083063 Iustin Pop
4769 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4770 a8083063 Iustin Pop
    """Connect to the console of an instance
4771 a8083063 Iustin Pop

4772 a8083063 Iustin Pop
    """
4773 a8083063 Iustin Pop
    instance = self.instance
4774 a8083063 Iustin Pop
    node = instance.primary_node
4775 a8083063 Iustin Pop
4776 72737a7f Iustin Pop
    node_insts = self.rpc.call_instance_list([node],
4777 72737a7f Iustin Pop
                                             [instance.hypervisor])[node]
4778 781de953 Iustin Pop
    node_insts.Raise()
4779 a8083063 Iustin Pop
4780 781de953 Iustin Pop
    if instance.name not in node_insts.data:
4781 3ecf6786 Iustin Pop
      raise errors.OpExecError("Instance %s is not running." % instance.name)
4782 a8083063 Iustin Pop
4783 9a4f63d1 Iustin Pop
    logging.debug("Connecting to console of %s on %s", instance.name, node)
4784 a8083063 Iustin Pop
4785 e69d05fd Iustin Pop
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
4786 5431b2e4 Guido Trotter
    cluster = self.cfg.GetClusterInfo()
4787 5431b2e4 Guido Trotter
    # beparams and hvparams are passed separately, to avoid editing the
4788 5431b2e4 Guido Trotter
    # instance and then saving the defaults in the instance itself.
4789 5431b2e4 Guido Trotter
    hvparams = cluster.FillHV(instance)
4790 5431b2e4 Guido Trotter
    beparams = cluster.FillBE(instance)
4791 5431b2e4 Guido Trotter
    console_cmd = hyper.GetShellCommandForConsole(instance, hvparams, beparams)
4792 b047857b Michael Hanselmann
4793 82122173 Iustin Pop
    # build ssh cmdline
4794 0a80a26f Michael Hanselmann
    return self.ssh.BuildCmd(node, "root", console_cmd, batch=True, tty=True)
4795 a8083063 Iustin Pop
4796 a8083063 Iustin Pop
4797 a8083063 Iustin Pop
class LUReplaceDisks(LogicalUnit):
4798 a8083063 Iustin Pop
  """Replace the disks of an instance.
4799 a8083063 Iustin Pop

4800 a8083063 Iustin Pop
  """
4801 a8083063 Iustin Pop
  HPATH = "mirrors-replace"
4802 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4803 a9e0c397 Iustin Pop
  _OP_REQP = ["instance_name", "mode", "disks"]
4804 efd990e4 Guido Trotter
  REQ_BGL = False
4805 efd990e4 Guido Trotter
4806 7e9366f7 Iustin Pop
  def CheckArguments(self):
4807 efd990e4 Guido Trotter
    if not hasattr(self.op, "remote_node"):
4808 efd990e4 Guido Trotter
      self.op.remote_node = None
4809 7e9366f7 Iustin Pop
    if not hasattr(self.op, "iallocator"):
4810 7e9366f7 Iustin Pop
      self.op.iallocator = None
4811 7e9366f7 Iustin Pop
4812 7e9366f7 Iustin Pop
    # check for valid parameter combination
4813 7e9366f7 Iustin Pop
    cnt = [self.op.remote_node, self.op.iallocator].count(None)
4814 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
4815 7e9366f7 Iustin Pop
      if cnt == 2:
4816 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("When changing the secondary either an"
4817 7e9366f7 Iustin Pop
                                   " iallocator script must be used or the"
4818 7e9366f7 Iustin Pop
                                   " new node given")
4819 7e9366f7 Iustin Pop
      elif cnt == 0:
4820 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Give either the iallocator or the new"
4821 efd990e4 Guido Trotter
                                   " secondary, not both")
4822 7e9366f7 Iustin Pop
    else: # not replacing the secondary
4823 7e9366f7 Iustin Pop
      if cnt != 2:
4824 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("The iallocator and new node options can"
4825 7e9366f7 Iustin Pop
                                   " be used only when changing the"
4826 7e9366f7 Iustin Pop
                                   " secondary node")
4827 7e9366f7 Iustin Pop
4828 7e9366f7 Iustin Pop
  def ExpandNames(self):
4829 7e9366f7 Iustin Pop
    self._ExpandAndLockInstance()
4830 7e9366f7 Iustin Pop
4831 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
4832 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4833 efd990e4 Guido Trotter
    elif self.op.remote_node is not None:
4834 efd990e4 Guido Trotter
      remote_node = self.cfg.ExpandNodeName(self.op.remote_node)
4835 efd990e4 Guido Trotter
      if remote_node is None:
4836 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Node '%s' not known" %
4837 efd990e4 Guido Trotter
                                   self.op.remote_node)
4838 efd990e4 Guido Trotter
      self.op.remote_node = remote_node
4839 3b559640 Iustin Pop
      # Warning: do not remove the locking of the new secondary here
4840 3b559640 Iustin Pop
      # unless DRBD8.AddChildren is changed to work in parallel;
4841 3b559640 Iustin Pop
      # currently it doesn't since parallel invocations of
4842 3b559640 Iustin Pop
      # FindUnusedMinor will conflict
4843 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = [remote_node]
4844 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
4845 efd990e4 Guido Trotter
    else:
4846 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = []
4847 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4848 efd990e4 Guido Trotter
4849 efd990e4 Guido Trotter
  def DeclareLocks(self, level):
4850 efd990e4 Guido Trotter
    # If we're not already locking all nodes in the set we have to declare the
4851 efd990e4 Guido Trotter
    # instance's primary/secondary nodes.
4852 efd990e4 Guido Trotter
    if (level == locking.LEVEL_NODE and
4853 efd990e4 Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
4854 efd990e4 Guido Trotter
      self._LockInstancesNodes()
4855 a8083063 Iustin Pop
4856 b6e82a65 Iustin Pop
  def _RunAllocator(self):
4857 b6e82a65 Iustin Pop
    """Compute a new secondary node using an IAllocator.
4858 b6e82a65 Iustin Pop

4859 b6e82a65 Iustin Pop
    """
4860 72737a7f Iustin Pop
    ial = IAllocator(self,
4861 b6e82a65 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_RELOC,
4862 b6e82a65 Iustin Pop
                     name=self.op.instance_name,
4863 b6e82a65 Iustin Pop
                     relocate_from=[self.sec_node])
4864 b6e82a65 Iustin Pop
4865 b6e82a65 Iustin Pop
    ial.Run(self.op.iallocator)
4866 b6e82a65 Iustin Pop
4867 b6e82a65 Iustin Pop
    if not ial.success:
4868 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4869 b6e82a65 Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4870 b6e82a65 Iustin Pop
                                                           ial.info))
4871 b6e82a65 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4872 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4873 b6e82a65 Iustin Pop
                                 " of nodes (%s), required %s" %
4874 b6e82a65 Iustin Pop
                                 (len(ial.nodes), ial.required_nodes))
4875 b6e82a65 Iustin Pop
    self.op.remote_node = ial.nodes[0]
4876 86d9d3bb Iustin Pop
    self.LogInfo("Selected new secondary for the instance: %s",
4877 86d9d3bb Iustin Pop
                 self.op.remote_node)
4878 b6e82a65 Iustin Pop
4879 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4880 a8083063 Iustin Pop
    """Build hooks env.
4881 a8083063 Iustin Pop

4882 a8083063 Iustin Pop
    This runs on the master, the primary and all the secondaries.
4883 a8083063 Iustin Pop

4884 a8083063 Iustin Pop
    """
4885 a8083063 Iustin Pop
    env = {
4886 a9e0c397 Iustin Pop
      "MODE": self.op.mode,
4887 a8083063 Iustin Pop
      "NEW_SECONDARY": self.op.remote_node,
4888 a8083063 Iustin Pop
      "OLD_SECONDARY": self.instance.secondary_nodes[0],
4889 a8083063 Iustin Pop
      }
4890 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
4891 0834c866 Iustin Pop
    nl = [
4892 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
4893 0834c866 Iustin Pop
      self.instance.primary_node,
4894 0834c866 Iustin Pop
      ]
4895 0834c866 Iustin Pop
    if self.op.remote_node is not None:
4896 0834c866 Iustin Pop
      nl.append(self.op.remote_node)
4897 a8083063 Iustin Pop
    return env, nl, nl
4898 a8083063 Iustin Pop
4899 a8083063 Iustin Pop
  def CheckPrereq(self):
4900 a8083063 Iustin Pop
    """Check prerequisites.
4901 a8083063 Iustin Pop

4902 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
4903 a8083063 Iustin Pop

4904 a8083063 Iustin Pop
    """
4905 efd990e4 Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4906 efd990e4 Guido Trotter
    assert instance is not None, \
4907 efd990e4 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4908 a8083063 Iustin Pop
    self.instance = instance
4909 a8083063 Iustin Pop
4910 7e9366f7 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
4911 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("Can only run replace disks for DRBD8-based"
4912 7e9366f7 Iustin Pop
                                 " instances")
4913 a8083063 Iustin Pop
4914 a8083063 Iustin Pop
    if len(instance.secondary_nodes) != 1:
4915 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The instance has a strange layout,"
4916 3ecf6786 Iustin Pop
                                 " expected one secondary but found %d" %
4917 3ecf6786 Iustin Pop
                                 len(instance.secondary_nodes))
4918 a8083063 Iustin Pop
4919 a9e0c397 Iustin Pop
    self.sec_node = instance.secondary_nodes[0]
4920 a9e0c397 Iustin Pop
4921 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
4922 de8c7666 Guido Trotter
      self._RunAllocator()
4923 b6e82a65 Iustin Pop
4924 b6e82a65 Iustin Pop
    remote_node = self.op.remote_node
4925 a9e0c397 Iustin Pop
    if remote_node is not None:
4926 a9e0c397 Iustin Pop
      self.remote_node_info = self.cfg.GetNodeInfo(remote_node)
4927 efd990e4 Guido Trotter
      assert self.remote_node_info is not None, \
4928 efd990e4 Guido Trotter
        "Cannot retrieve locked node %s" % remote_node
4929 a9e0c397 Iustin Pop
    else:
4930 a9e0c397 Iustin Pop
      self.remote_node_info = None
4931 a8083063 Iustin Pop
    if remote_node == instance.primary_node:
4932 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The specified node is the primary node of"
4933 3ecf6786 Iustin Pop
                                 " the instance.")
4934 a9e0c397 Iustin Pop
    elif remote_node == self.sec_node:
4935 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("The specified node is already the"
4936 7e9366f7 Iustin Pop
                                 " secondary node of the instance.")
4937 7e9366f7 Iustin Pop
4938 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_PRI:
4939 7e9366f7 Iustin Pop
      n1 = self.tgt_node = instance.primary_node
4940 7e9366f7 Iustin Pop
      n2 = self.oth_node = self.sec_node
4941 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_SEC:
4942 7e9366f7 Iustin Pop
      n1 = self.tgt_node = self.sec_node
4943 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
4944 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_CHG:
4945 7e9366f7 Iustin Pop
      n1 = self.new_node = remote_node
4946 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
4947 7e9366f7 Iustin Pop
      self.tgt_node = self.sec_node
4948 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, remote_node)
4949 7e9366f7 Iustin Pop
    else:
4950 7e9366f7 Iustin Pop
      raise errors.ProgrammerError("Unhandled disk replace mode")
4951 7e9366f7 Iustin Pop
4952 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n1)
4953 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n2)
4954 a9e0c397 Iustin Pop
4955 54155f52 Iustin Pop
    if not self.op.disks:
4956 54155f52 Iustin Pop
      self.op.disks = range(len(instance.disks))
4957 54155f52 Iustin Pop
4958 54155f52 Iustin Pop
    for disk_idx in self.op.disks:
4959 3e0cea06 Iustin Pop
      instance.FindDisk(disk_idx)
4960 a8083063 Iustin Pop
4961 a9e0c397 Iustin Pop
  def _ExecD8DiskOnly(self, feedback_fn):
4962 a9e0c397 Iustin Pop
    """Replace a disk on the primary or secondary for dbrd8.
4963 a9e0c397 Iustin Pop

4964 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
4965 e4376078 Iustin Pop

4966 e4376078 Iustin Pop
      1. for each disk to be replaced:
4967 e4376078 Iustin Pop

4968 e4376078 Iustin Pop
        1. create new LVs on the target node with unique names
4969 e4376078 Iustin Pop
        1. detach old LVs from the drbd device
4970 e4376078 Iustin Pop
        1. rename old LVs to name_replaced.<time_t>
4971 e4376078 Iustin Pop
        1. rename new LVs to old LVs
4972 e4376078 Iustin Pop
        1. attach the new LVs (with the old names now) to the drbd device
4973 e4376078 Iustin Pop

4974 e4376078 Iustin Pop
      1. wait for sync across all devices
4975 e4376078 Iustin Pop

4976 e4376078 Iustin Pop
      1. for each modified disk:
4977 e4376078 Iustin Pop

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

4980 a9e0c397 Iustin Pop
    Failures are not very well handled.
4981 cff90b79 Iustin Pop

4982 a9e0c397 Iustin Pop
    """
4983 cff90b79 Iustin Pop
    steps_total = 6
4984 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
4985 a9e0c397 Iustin Pop
    instance = self.instance
4986 a9e0c397 Iustin Pop
    iv_names = {}
4987 a9e0c397 Iustin Pop
    vgname = self.cfg.GetVGName()
4988 a9e0c397 Iustin Pop
    # start of work
4989 a9e0c397 Iustin Pop
    cfg = self.cfg
4990 a9e0c397 Iustin Pop
    tgt_node = self.tgt_node
4991 cff90b79 Iustin Pop
    oth_node = self.oth_node
4992 cff90b79 Iustin Pop
4993 cff90b79 Iustin Pop
    # Step: check device activation
4994 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
4995 cff90b79 Iustin Pop
    info("checking volume groups")
4996 cff90b79 Iustin Pop
    my_vg = cfg.GetVGName()
4997 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([oth_node, tgt_node])
4998 cff90b79 Iustin Pop
    if not results:
4999 cff90b79 Iustin Pop
      raise errors.OpExecError("Can't list volume groups on the nodes")
5000 cff90b79 Iustin Pop
    for node in oth_node, tgt_node:
5001 781de953 Iustin Pop
      res = results[node]
5002 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
5003 cff90b79 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5004 cff90b79 Iustin Pop
                                 (my_vg, node))
5005 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5006 54155f52 Iustin Pop
      if idx not in self.op.disks:
5007 cff90b79 Iustin Pop
        continue
5008 cff90b79 Iustin Pop
      for node in tgt_node, oth_node:
5009 54155f52 Iustin Pop
        info("checking disk/%d on %s" % (idx, node))
5010 cff90b79 Iustin Pop
        cfg.SetDiskID(dev, node)
5011 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(node, dev)
5012 23829f6f Iustin Pop
        msg = result.RemoteFailMsg()
5013 23829f6f Iustin Pop
        if not msg and not result.payload:
5014 23829f6f Iustin Pop
          msg = "disk not found"
5015 23829f6f Iustin Pop
        if msg:
5016 23829f6f Iustin Pop
          raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5017 23829f6f Iustin Pop
                                   (idx, node, msg))
5018 cff90b79 Iustin Pop
5019 cff90b79 Iustin Pop
    # Step: check other node consistency
5020 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5021 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5022 54155f52 Iustin Pop
      if idx not in self.op.disks:
5023 cff90b79 Iustin Pop
        continue
5024 54155f52 Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, oth_node))
5025 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, oth_node,
5026 cff90b79 Iustin Pop
                                   oth_node==instance.primary_node):
5027 cff90b79 Iustin Pop
        raise errors.OpExecError("Peer node (%s) has degraded storage, unsafe"
5028 cff90b79 Iustin Pop
                                 " to replace disks on this node (%s)" %
5029 cff90b79 Iustin Pop
                                 (oth_node, tgt_node))
5030 cff90b79 Iustin Pop
5031 cff90b79 Iustin Pop
    # Step: create new storage
5032 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5033 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5034 54155f52 Iustin Pop
      if idx not in self.op.disks:
5035 a9e0c397 Iustin Pop
        continue
5036 a9e0c397 Iustin Pop
      size = dev.size
5037 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, tgt_node)
5038 54155f52 Iustin Pop
      lv_names = [".disk%d_%s" % (idx, suf)
5039 54155f52 Iustin Pop
                  for suf in ["data", "meta"]]
5040 b9bddb6b Iustin Pop
      names = _GenerateUniqueNames(self, lv_names)
5041 a9e0c397 Iustin Pop
      lv_data = objects.Disk(dev_type=constants.LD_LV, size=size,
5042 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[0]))
5043 a9e0c397 Iustin Pop
      lv_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
5044 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[1]))
5045 a9e0c397 Iustin Pop
      new_lvs = [lv_data, lv_meta]
5046 a9e0c397 Iustin Pop
      old_lvs = dev.children
5047 a9e0c397 Iustin Pop
      iv_names[dev.iv_name] = (dev, old_lvs, new_lvs)
5048 cff90b79 Iustin Pop
      info("creating new local storage on %s for %s" %
5049 cff90b79 Iustin Pop
           (tgt_node, dev.iv_name))
5050 428958aa Iustin Pop
      # we pass force_create=True to force the LVM creation
5051 a9e0c397 Iustin Pop
      for new_lv in new_lvs:
5052 428958aa Iustin Pop
        _CreateBlockDev(self, tgt_node, instance, new_lv, True,
5053 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5054 a9e0c397 Iustin Pop
5055 cff90b79 Iustin Pop
    # Step: for each lv, detach+rename*2+attach
5056 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "change drbd configuration")
5057 cff90b79 Iustin Pop
    for dev, old_lvs, new_lvs in iv_names.itervalues():
5058 cff90b79 Iustin Pop
      info("detaching %s drbd from local storage" % dev.iv_name)
5059 781de953 Iustin Pop
      result = self.rpc.call_blockdev_removechildren(tgt_node, dev, old_lvs)
5060 781de953 Iustin Pop
      result.Raise()
5061 781de953 Iustin Pop
      if not result.data:
5062 a9e0c397 Iustin Pop
        raise errors.OpExecError("Can't detach drbd from local storage on node"
5063 a9e0c397 Iustin Pop
                                 " %s for device %s" % (tgt_node, dev.iv_name))
5064 cff90b79 Iustin Pop
      #dev.children = []
5065 cff90b79 Iustin Pop
      #cfg.Update(instance)
5066 a9e0c397 Iustin Pop
5067 a9e0c397 Iustin Pop
      # ok, we created the new LVs, so now we know we have the needed
5068 a9e0c397 Iustin Pop
      # storage; as such, we proceed on the target node to rename
5069 a9e0c397 Iustin Pop
      # old_lv to _old, and new_lv to old_lv; note that we rename LVs
5070 c99a3cc0 Manuel Franceschini
      # using the assumption that logical_id == physical_id (which in
5071 a9e0c397 Iustin Pop
      # turn is the unique_id on that node)
5072 cff90b79 Iustin Pop
5073 cff90b79 Iustin Pop
      # FIXME(iustin): use a better name for the replaced LVs
5074 a9e0c397 Iustin Pop
      temp_suffix = int(time.time())
5075 a9e0c397 Iustin Pop
      ren_fn = lambda d, suff: (d.physical_id[0],
5076 a9e0c397 Iustin Pop
                                d.physical_id[1] + "_replaced-%s" % suff)
5077 cff90b79 Iustin Pop
      # build the rename list based on what LVs exist on the node
5078 cff90b79 Iustin Pop
      rlist = []
5079 cff90b79 Iustin Pop
      for to_ren in old_lvs:
5080 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(tgt_node, to_ren)
5081 23829f6f Iustin Pop
        if not result.RemoteFailMsg() and result.payload:
5082 23829f6f Iustin Pop
          # device exists
5083 cff90b79 Iustin Pop
          rlist.append((to_ren, ren_fn(to_ren, temp_suffix)))
5084 cff90b79 Iustin Pop
5085 cff90b79 Iustin Pop
      info("renaming the old LVs on the target node")
5086 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5087 781de953 Iustin Pop
      result.Raise()
5088 781de953 Iustin Pop
      if not result.data:
5089 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename old LVs on node %s" % tgt_node)
5090 a9e0c397 Iustin Pop
      # now we rename the new LVs to the old LVs
5091 cff90b79 Iustin Pop
      info("renaming the new LVs on the target node")
5092 a9e0c397 Iustin Pop
      rlist = [(new, old.physical_id) for old, new in zip(old_lvs, new_lvs)]
5093 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5094 781de953 Iustin Pop
      result.Raise()
5095 781de953 Iustin Pop
      if not result.data:
5096 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename new LVs on node %s" % tgt_node)
5097 cff90b79 Iustin Pop
5098 cff90b79 Iustin Pop
      for old, new in zip(old_lvs, new_lvs):
5099 cff90b79 Iustin Pop
        new.logical_id = old.logical_id
5100 cff90b79 Iustin Pop
        cfg.SetDiskID(new, tgt_node)
5101 a9e0c397 Iustin Pop
5102 cff90b79 Iustin Pop
      for disk in old_lvs:
5103 cff90b79 Iustin Pop
        disk.logical_id = ren_fn(disk, temp_suffix)
5104 cff90b79 Iustin Pop
        cfg.SetDiskID(disk, tgt_node)
5105 a9e0c397 Iustin Pop
5106 a9e0c397 Iustin Pop
      # now that the new lvs have the old name, we can add them to the device
5107 cff90b79 Iustin Pop
      info("adding new mirror component on %s" % tgt_node)
5108 4504c3d6 Iustin Pop
      result = self.rpc.call_blockdev_addchildren(tgt_node, dev, new_lvs)
5109 781de953 Iustin Pop
      if result.failed or not result.data:
5110 a9e0c397 Iustin Pop
        for new_lv in new_lvs:
5111 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(tgt_node, new_lv).RemoteFailMsg()
5112 e1bc0878 Iustin Pop
          if msg:
5113 e1bc0878 Iustin Pop
            warning("Can't rollback device %s: %s", dev, msg,
5114 e1bc0878 Iustin Pop
                    hint="cleanup manually the unused logical volumes")
5115 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't add local storage to drbd")
5116 a9e0c397 Iustin Pop
5117 a9e0c397 Iustin Pop
      dev.children = new_lvs
5118 a9e0c397 Iustin Pop
      cfg.Update(instance)
5119 a9e0c397 Iustin Pop
5120 cff90b79 Iustin Pop
    # Step: wait for sync
5121 a9e0c397 Iustin Pop
5122 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5123 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5124 a9e0c397 Iustin Pop
    # return value
5125 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5126 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5127 a9e0c397 Iustin Pop
5128 a9e0c397 Iustin Pop
    # so check manually all the devices
5129 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5130 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, instance.primary_node)
5131 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(instance.primary_node, dev)
5132 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5133 23829f6f Iustin Pop
      if not msg and not result.payload:
5134 23829f6f Iustin Pop
        msg = "disk not found"
5135 23829f6f Iustin Pop
      if msg:
5136 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device %s: %s" %
5137 23829f6f Iustin Pop
                                 (name, msg))
5138 23829f6f Iustin Pop
      if result.payload[5]:
5139 a9e0c397 Iustin Pop
        raise errors.OpExecError("DRBD device %s is degraded!" % name)
5140 a9e0c397 Iustin Pop
5141 cff90b79 Iustin Pop
    # Step: remove old storage
5142 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5143 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5144 cff90b79 Iustin Pop
      info("remove logical volumes for %s" % name)
5145 a9e0c397 Iustin Pop
      for lv in old_lvs:
5146 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, tgt_node)
5147 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(tgt_node, lv).RemoteFailMsg()
5148 e1bc0878 Iustin Pop
        if msg:
5149 e1bc0878 Iustin Pop
          warning("Can't remove old LV: %s" % msg,
5150 e1bc0878 Iustin Pop
                  hint="manually remove unused LVs")
5151 a9e0c397 Iustin Pop
          continue
5152 a9e0c397 Iustin Pop
5153 a9e0c397 Iustin Pop
  def _ExecD8Secondary(self, feedback_fn):
5154 a9e0c397 Iustin Pop
    """Replace the secondary node for drbd8.
5155 a9e0c397 Iustin Pop

5156 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5157 a9e0c397 Iustin Pop
      - for all disks of the instance:
5158 a9e0c397 Iustin Pop
        - create new LVs on the new node with same names
5159 a9e0c397 Iustin Pop
        - shutdown the drbd device on the old secondary
5160 a9e0c397 Iustin Pop
        - disconnect the drbd network on the primary
5161 a9e0c397 Iustin Pop
        - create the drbd device on the new secondary
5162 a9e0c397 Iustin Pop
        - network attach the drbd on the primary, using an artifice:
5163 a9e0c397 Iustin Pop
          the drbd code for Attach() will connect to the network if it
5164 a9e0c397 Iustin Pop
          finds a device which is connected to the good local disks but
5165 a9e0c397 Iustin Pop
          not network enabled
5166 a9e0c397 Iustin Pop
      - wait for sync across all devices
5167 a9e0c397 Iustin Pop
      - remove all disks from the old secondary
5168 a9e0c397 Iustin Pop

5169 a9e0c397 Iustin Pop
    Failures are not very well handled.
5170 0834c866 Iustin Pop

5171 a9e0c397 Iustin Pop
    """
5172 0834c866 Iustin Pop
    steps_total = 6
5173 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5174 a9e0c397 Iustin Pop
    instance = self.instance
5175 a9e0c397 Iustin Pop
    iv_names = {}
5176 a9e0c397 Iustin Pop
    # start of work
5177 a9e0c397 Iustin Pop
    cfg = self.cfg
5178 a9e0c397 Iustin Pop
    old_node = self.tgt_node
5179 a9e0c397 Iustin Pop
    new_node = self.new_node
5180 a9e0c397 Iustin Pop
    pri_node = instance.primary_node
5181 a2d59d8b Iustin Pop
    nodes_ip = {
5182 a2d59d8b Iustin Pop
      old_node: self.cfg.GetNodeInfo(old_node).secondary_ip,
5183 a2d59d8b Iustin Pop
      new_node: self.cfg.GetNodeInfo(new_node).secondary_ip,
5184 a2d59d8b Iustin Pop
      pri_node: self.cfg.GetNodeInfo(pri_node).secondary_ip,
5185 a2d59d8b Iustin Pop
      }
5186 0834c866 Iustin Pop
5187 0834c866 Iustin Pop
    # Step: check device activation
5188 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5189 0834c866 Iustin Pop
    info("checking volume groups")
5190 0834c866 Iustin Pop
    my_vg = cfg.GetVGName()
5191 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([pri_node, new_node])
5192 0834c866 Iustin Pop
    for node in pri_node, new_node:
5193 781de953 Iustin Pop
      res = results[node]
5194 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
5195 0834c866 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5196 0834c866 Iustin Pop
                                 (my_vg, node))
5197 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5198 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5199 0834c866 Iustin Pop
        continue
5200 d418ebfb Iustin Pop
      info("checking disk/%d on %s" % (idx, pri_node))
5201 0834c866 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5202 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5203 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5204 23829f6f Iustin Pop
      if not msg and not result.payload:
5205 23829f6f Iustin Pop
        msg = "disk not found"
5206 23829f6f Iustin Pop
      if msg:
5207 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5208 23829f6f Iustin Pop
                                 (idx, pri_node, msg))
5209 0834c866 Iustin Pop
5210 0834c866 Iustin Pop
    # Step: check other node consistency
5211 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5212 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5213 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5214 0834c866 Iustin Pop
        continue
5215 d418ebfb Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, pri_node))
5216 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, pri_node, True, ldisk=True):
5217 0834c866 Iustin Pop
        raise errors.OpExecError("Primary node (%s) has degraded storage,"
5218 0834c866 Iustin Pop
                                 " unsafe to replace the secondary" %
5219 0834c866 Iustin Pop
                                 pri_node)
5220 0834c866 Iustin Pop
5221 0834c866 Iustin Pop
    # Step: create new storage
5222 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5223 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5224 d418ebfb Iustin Pop
      info("adding new local storage on %s for disk/%d" %
5225 d418ebfb Iustin Pop
           (new_node, idx))
5226 428958aa Iustin Pop
      # we pass force_create=True to force LVM creation
5227 a9e0c397 Iustin Pop
      for new_lv in dev.children:
5228 428958aa Iustin Pop
        _CreateBlockDev(self, new_node, instance, new_lv, True,
5229 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5230 a9e0c397 Iustin Pop
5231 468b46f9 Iustin Pop
    # Step 4: dbrd minors and drbd setups changes
5232 a1578d63 Iustin Pop
    # after this, we must manually remove the drbd minors on both the
5233 a1578d63 Iustin Pop
    # error and the success paths
5234 a1578d63 Iustin Pop
    minors = cfg.AllocateDRBDMinor([new_node for dev in instance.disks],
5235 a1578d63 Iustin Pop
                                   instance.name)
5236 468b46f9 Iustin Pop
    logging.debug("Allocated minors %s" % (minors,))
5237 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "changing drbd configuration")
5238 d418ebfb Iustin Pop
    for idx, (dev, new_minor) in enumerate(zip(instance.disks, minors)):
5239 0834c866 Iustin Pop
      size = dev.size
5240 d418ebfb Iustin Pop
      info("activating a new drbd on %s for disk/%d" % (new_node, idx))
5241 a2d59d8b Iustin Pop
      # create new devices on new_node; note that we create two IDs:
5242 a2d59d8b Iustin Pop
      # one without port, so the drbd will be activated without
5243 a2d59d8b Iustin Pop
      # networking information on the new node at this stage, and one
5244 a2d59d8b Iustin Pop
      # with network, for the latter activation in step 4
5245 a2d59d8b Iustin Pop
      (o_node1, o_node2, o_port, o_minor1, o_minor2, o_secret) = dev.logical_id
5246 a2d59d8b Iustin Pop
      if pri_node == o_node1:
5247 a2d59d8b Iustin Pop
        p_minor = o_minor1
5248 ffa1c0dc Iustin Pop
      else:
5249 a2d59d8b Iustin Pop
        p_minor = o_minor2
5250 a2d59d8b Iustin Pop
5251 a2d59d8b Iustin Pop
      new_alone_id = (pri_node, new_node, None, p_minor, new_minor, o_secret)
5252 a2d59d8b Iustin Pop
      new_net_id = (pri_node, new_node, o_port, p_minor, new_minor, o_secret)
5253 a2d59d8b Iustin Pop
5254 a2d59d8b Iustin Pop
      iv_names[idx] = (dev, dev.children, new_net_id)
5255 a1578d63 Iustin Pop
      logging.debug("Allocated new_minor: %s, new_logical_id: %s", new_minor,
5256 a2d59d8b Iustin Pop
                    new_net_id)
5257 a9e0c397 Iustin Pop
      new_drbd = objects.Disk(dev_type=constants.LD_DRBD8,
5258 a2d59d8b Iustin Pop
                              logical_id=new_alone_id,
5259 a9e0c397 Iustin Pop
                              children=dev.children)
5260 796cab27 Iustin Pop
      try:
5261 de12473a Iustin Pop
        _CreateSingleBlockDev(self, new_node, instance, new_drbd,
5262 de12473a Iustin Pop
                              _GetInstanceInfoText(instance), False)
5263 1492cca7 Iustin Pop
      except errors.BlockDeviceError:
5264 a1578d63 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance.name)
5265 796cab27 Iustin Pop
        raise
5266 a9e0c397 Iustin Pop
5267 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5268 a9e0c397 Iustin Pop
      # we have new devices, shutdown the drbd on the old secondary
5269 d418ebfb Iustin Pop
      info("shutting down drbd for disk/%d on old node" % idx)
5270 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, old_node)
5271 cacfd1fd Iustin Pop
      msg = self.rpc.call_blockdev_shutdown(old_node, dev).RemoteFailMsg()
5272 cacfd1fd Iustin Pop
      if msg:
5273 cacfd1fd Iustin Pop
        warning("Failed to shutdown drbd for disk/%d on old node: %s" %
5274 cacfd1fd Iustin Pop
                (idx, msg),
5275 79caa9ed Guido Trotter
                hint="Please cleanup this device manually as soon as possible")
5276 a9e0c397 Iustin Pop
5277 642445d9 Iustin Pop
    info("detaching primary drbds from the network (=> standalone)")
5278 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_disconnect_net([pri_node], nodes_ip,
5279 a2d59d8b Iustin Pop
                                               instance.disks)[pri_node]
5280 642445d9 Iustin Pop
5281 a2d59d8b Iustin Pop
    msg = result.RemoteFailMsg()
5282 a2d59d8b Iustin Pop
    if msg:
5283 a2d59d8b Iustin Pop
      # detaches didn't succeed (unlikely)
5284 a1578d63 Iustin Pop
      self.cfg.ReleaseDRBDMinors(instance.name)
5285 a2d59d8b Iustin Pop
      raise errors.OpExecError("Can't detach the disks from the network on"
5286 a2d59d8b Iustin Pop
                               " old node: %s" % (msg,))
5287 642445d9 Iustin Pop
5288 642445d9 Iustin Pop
    # if we managed to detach at least one, we update all the disks of
5289 642445d9 Iustin Pop
    # the instance to point to the new secondary
5290 642445d9 Iustin Pop
    info("updating instance configuration")
5291 468b46f9 Iustin Pop
    for dev, _, new_logical_id in iv_names.itervalues():
5292 468b46f9 Iustin Pop
      dev.logical_id = new_logical_id
5293 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5294 642445d9 Iustin Pop
    cfg.Update(instance)
5295 a9e0c397 Iustin Pop
5296 642445d9 Iustin Pop
    # and now perform the drbd attach
5297 642445d9 Iustin Pop
    info("attaching primary drbds to new secondary (standalone => connected)")
5298 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_attach_net([pri_node, new_node], nodes_ip,
5299 a2d59d8b Iustin Pop
                                           instance.disks, instance.name,
5300 a2d59d8b Iustin Pop
                                           False)
5301 a2d59d8b Iustin Pop
    for to_node, to_result in result.items():
5302 a2d59d8b Iustin Pop
      msg = to_result.RemoteFailMsg()
5303 a2d59d8b Iustin Pop
      if msg:
5304 a2d59d8b Iustin Pop
        warning("can't attach drbd disks on node %s: %s", to_node, msg,
5305 a2d59d8b Iustin Pop
                hint="please do a gnt-instance info to see the"
5306 a2d59d8b Iustin Pop
                " status of disks")
5307 a9e0c397 Iustin Pop
5308 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5309 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5310 a9e0c397 Iustin Pop
    # return value
5311 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5312 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5313 a9e0c397 Iustin Pop
5314 a9e0c397 Iustin Pop
    # so check manually all the devices
5315 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5316 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5317 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5318 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5319 23829f6f Iustin Pop
      if not msg and not result.payload:
5320 23829f6f Iustin Pop
        msg = "disk not found"
5321 23829f6f Iustin Pop
      if msg:
5322 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device disk/%d: %s" %
5323 23829f6f Iustin Pop
                                 (idx, msg))
5324 23829f6f Iustin Pop
      if result.payload[5]:
5325 d418ebfb Iustin Pop
        raise errors.OpExecError("DRBD device disk/%d is degraded!" % idx)
5326 a9e0c397 Iustin Pop
5327 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5328 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5329 d418ebfb Iustin Pop
      info("remove logical volumes for disk/%d" % idx)
5330 a9e0c397 Iustin Pop
      for lv in old_lvs:
5331 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, old_node)
5332 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(old_node, lv).RemoteFailMsg()
5333 e1bc0878 Iustin Pop
        if msg:
5334 e1bc0878 Iustin Pop
          warning("Can't remove LV on old secondary: %s", msg,
5335 79caa9ed Guido Trotter
                  hint="Cleanup stale volumes by hand")
5336 a9e0c397 Iustin Pop
5337 a9e0c397 Iustin Pop
  def Exec(self, feedback_fn):
5338 a9e0c397 Iustin Pop
    """Execute disk replacement.
5339 a9e0c397 Iustin Pop

5340 a9e0c397 Iustin Pop
    This dispatches the disk replacement to the appropriate handler.
5341 a9e0c397 Iustin Pop

5342 a9e0c397 Iustin Pop
    """
5343 a9e0c397 Iustin Pop
    instance = self.instance
5344 22985314 Guido Trotter
5345 22985314 Guido Trotter
    # Activate the instance disks if we're replacing them on a down instance
5346 0d68c45d Iustin Pop
    if not instance.admin_up:
5347 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, True)
5348 22985314 Guido Trotter
5349 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5350 7e9366f7 Iustin Pop
      fn = self._ExecD8Secondary
5351 a9e0c397 Iustin Pop
    else:
5352 7e9366f7 Iustin Pop
      fn = self._ExecD8DiskOnly
5353 22985314 Guido Trotter
5354 22985314 Guido Trotter
    ret = fn(feedback_fn)
5355 22985314 Guido Trotter
5356 22985314 Guido Trotter
    # Deactivate the instance disks if we're replacing them on a down instance
5357 0d68c45d Iustin Pop
    if not instance.admin_up:
5358 b9bddb6b Iustin Pop
      _SafeShutdownInstanceDisks(self, instance)
5359 22985314 Guido Trotter
5360 22985314 Guido Trotter
    return ret
5361 a9e0c397 Iustin Pop
5362 a8083063 Iustin Pop
5363 8729e0d7 Iustin Pop
class LUGrowDisk(LogicalUnit):
5364 8729e0d7 Iustin Pop
  """Grow a disk of an instance.
5365 8729e0d7 Iustin Pop

5366 8729e0d7 Iustin Pop
  """
5367 8729e0d7 Iustin Pop
  HPATH = "disk-grow"
5368 8729e0d7 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5369 6605411d Iustin Pop
  _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
5370 31e63dbf Guido Trotter
  REQ_BGL = False
5371 31e63dbf Guido Trotter
5372 31e63dbf Guido Trotter
  def ExpandNames(self):
5373 31e63dbf Guido Trotter
    self._ExpandAndLockInstance()
5374 31e63dbf Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5375 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5376 31e63dbf Guido Trotter
5377 31e63dbf Guido Trotter
  def DeclareLocks(self, level):
5378 31e63dbf Guido Trotter
    if level == locking.LEVEL_NODE:
5379 31e63dbf Guido Trotter
      self._LockInstancesNodes()
5380 8729e0d7 Iustin Pop
5381 8729e0d7 Iustin Pop
  def BuildHooksEnv(self):
5382 8729e0d7 Iustin Pop
    """Build hooks env.
5383 8729e0d7 Iustin Pop

5384 8729e0d7 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5385 8729e0d7 Iustin Pop

5386 8729e0d7 Iustin Pop
    """
5387 8729e0d7 Iustin Pop
    env = {
5388 8729e0d7 Iustin Pop
      "DISK": self.op.disk,
5389 8729e0d7 Iustin Pop
      "AMOUNT": self.op.amount,
5390 8729e0d7 Iustin Pop
      }
5391 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5392 8729e0d7 Iustin Pop
    nl = [
5393 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5394 8729e0d7 Iustin Pop
      self.instance.primary_node,
5395 8729e0d7 Iustin Pop
      ]
5396 8729e0d7 Iustin Pop
    return env, nl, nl
5397 8729e0d7 Iustin Pop
5398 8729e0d7 Iustin Pop
  def CheckPrereq(self):
5399 8729e0d7 Iustin Pop
    """Check prerequisites.
5400 8729e0d7 Iustin Pop

5401 8729e0d7 Iustin Pop
    This checks that the instance is in the cluster.
5402 8729e0d7 Iustin Pop

5403 8729e0d7 Iustin Pop
    """
5404 31e63dbf Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5405 31e63dbf Guido Trotter
    assert instance is not None, \
5406 31e63dbf Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5407 6b12959c Iustin Pop
    nodenames = list(instance.all_nodes)
5408 6b12959c Iustin Pop
    for node in nodenames:
5409 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, node)
5410 7527a8a4 Iustin Pop
5411 31e63dbf Guido Trotter
5412 8729e0d7 Iustin Pop
    self.instance = instance
5413 8729e0d7 Iustin Pop
5414 8729e0d7 Iustin Pop
    if instance.disk_template not in (constants.DT_PLAIN, constants.DT_DRBD8):
5415 8729e0d7 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout does not support"
5416 8729e0d7 Iustin Pop
                                 " growing.")
5417 8729e0d7 Iustin Pop
5418 ad24e046 Iustin Pop
    self.disk = instance.FindDisk(self.op.disk)
5419 8729e0d7 Iustin Pop
5420 72737a7f Iustin Pop
    nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
5421 72737a7f Iustin Pop
                                       instance.hypervisor)
5422 8729e0d7 Iustin Pop
    for node in nodenames:
5423 781de953 Iustin Pop
      info = nodeinfo[node]
5424 781de953 Iustin Pop
      if info.failed or not info.data:
5425 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Cannot get current information"
5426 8729e0d7 Iustin Pop
                                   " from node '%s'" % node)
5427 781de953 Iustin Pop
      vg_free = info.data.get('vg_free', None)
5428 8729e0d7 Iustin Pop
      if not isinstance(vg_free, int):
5429 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Can't compute free disk space on"
5430 8729e0d7 Iustin Pop
                                   " node %s" % node)
5431 781de953 Iustin Pop
      if self.op.amount > vg_free:
5432 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Not enough disk space on target node %s:"
5433 8729e0d7 Iustin Pop
                                   " %d MiB available, %d MiB required" %
5434 781de953 Iustin Pop
                                   (node, vg_free, self.op.amount))
5435 8729e0d7 Iustin Pop
5436 8729e0d7 Iustin Pop
  def Exec(self, feedback_fn):
5437 8729e0d7 Iustin Pop
    """Execute disk grow.
5438 8729e0d7 Iustin Pop

5439 8729e0d7 Iustin Pop
    """
5440 8729e0d7 Iustin Pop
    instance = self.instance
5441 ad24e046 Iustin Pop
    disk = self.disk
5442 6b12959c Iustin Pop
    for node in instance.all_nodes:
5443 8729e0d7 Iustin Pop
      self.cfg.SetDiskID(disk, node)
5444 72737a7f Iustin Pop
      result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
5445 0959c824 Iustin Pop
      msg = result.RemoteFailMsg()
5446 0959c824 Iustin Pop
      if msg:
5447 781de953 Iustin Pop
        raise errors.OpExecError("Grow request failed to node %s: %s" %
5448 0959c824 Iustin Pop
                                 (node, msg))
5449 8729e0d7 Iustin Pop
    disk.RecordGrow(self.op.amount)
5450 8729e0d7 Iustin Pop
    self.cfg.Update(instance)
5451 6605411d Iustin Pop
    if self.op.wait_for_sync:
5452 cd4d138f Guido Trotter
      disk_abort = not _WaitForSync(self, instance)
5453 6605411d Iustin Pop
      if disk_abort:
5454 86d9d3bb Iustin Pop
        self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
5455 86d9d3bb Iustin Pop
                             " status.\nPlease check the instance.")
5456 8729e0d7 Iustin Pop
5457 8729e0d7 Iustin Pop
5458 a8083063 Iustin Pop
class LUQueryInstanceData(NoHooksLU):
5459 a8083063 Iustin Pop
  """Query runtime instance data.
5460 a8083063 Iustin Pop

5461 a8083063 Iustin Pop
  """
5462 57821cac Iustin Pop
  _OP_REQP = ["instances", "static"]
5463 a987fa48 Guido Trotter
  REQ_BGL = False
5464 ae5849b5 Michael Hanselmann
5465 a987fa48 Guido Trotter
  def ExpandNames(self):
5466 a987fa48 Guido Trotter
    self.needed_locks = {}
5467 a987fa48 Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
5468 a987fa48 Guido Trotter
5469 a987fa48 Guido Trotter
    if not isinstance(self.op.instances, list):
5470 a987fa48 Guido Trotter
      raise errors.OpPrereqError("Invalid argument type 'instances'")
5471 a987fa48 Guido Trotter
5472 a987fa48 Guido Trotter
    if self.op.instances:
5473 a987fa48 Guido Trotter
      self.wanted_names = []
5474 a987fa48 Guido Trotter
      for name in self.op.instances:
5475 a987fa48 Guido Trotter
        full_name = self.cfg.ExpandInstanceName(name)
5476 a987fa48 Guido Trotter
        if full_name is None:
5477 f57c76e4 Iustin Pop
          raise errors.OpPrereqError("Instance '%s' not known" % name)
5478 a987fa48 Guido Trotter
        self.wanted_names.append(full_name)
5479 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
5480 a987fa48 Guido Trotter
    else:
5481 a987fa48 Guido Trotter
      self.wanted_names = None
5482 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
5483 a987fa48 Guido Trotter
5484 a987fa48 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5485 a987fa48 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5486 a987fa48 Guido Trotter
5487 a987fa48 Guido Trotter
  def DeclareLocks(self, level):
5488 a987fa48 Guido Trotter
    if level == locking.LEVEL_NODE:
5489 a987fa48 Guido Trotter
      self._LockInstancesNodes()
5490 a8083063 Iustin Pop
5491 a8083063 Iustin Pop
  def CheckPrereq(self):
5492 a8083063 Iustin Pop
    """Check prerequisites.
5493 a8083063 Iustin Pop

5494 a8083063 Iustin Pop
    This only checks the optional instance list against the existing names.
5495 a8083063 Iustin Pop

5496 a8083063 Iustin Pop
    """
5497 a987fa48 Guido Trotter
    if self.wanted_names is None:
5498 a987fa48 Guido Trotter
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
5499 a8083063 Iustin Pop
5500 a987fa48 Guido Trotter
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
5501 a987fa48 Guido Trotter
                             in self.wanted_names]
5502 a987fa48 Guido Trotter
    return
5503 a8083063 Iustin Pop
5504 a8083063 Iustin Pop
  def _ComputeDiskStatus(self, instance, snode, dev):
5505 a8083063 Iustin Pop
    """Compute block device status.
5506 a8083063 Iustin Pop

5507 a8083063 Iustin Pop
    """
5508 57821cac Iustin Pop
    static = self.op.static
5509 57821cac Iustin Pop
    if not static:
5510 57821cac Iustin Pop
      self.cfg.SetDiskID(dev, instance.primary_node)
5511 57821cac Iustin Pop
      dev_pstatus = self.rpc.call_blockdev_find(instance.primary_node, dev)
5512 23829f6f Iustin Pop
      msg = dev_pstatus.RemoteFailMsg()
5513 23829f6f Iustin Pop
      if msg:
5514 23829f6f Iustin Pop
        raise errors.OpExecError("Can't compute disk status for %s: %s" %
5515 23829f6f Iustin Pop
                                 (instance.name, msg))
5516 23829f6f Iustin Pop
      dev_pstatus = dev_pstatus.payload
5517 57821cac Iustin Pop
    else:
5518 57821cac Iustin Pop
      dev_pstatus = None
5519 57821cac Iustin Pop
5520 a1f445d3 Iustin Pop
    if dev.dev_type in constants.LDS_DRBD:
5521 a8083063 Iustin Pop
      # we change the snode then (otherwise we use the one passed in)
5522 a8083063 Iustin Pop
      if dev.logical_id[0] == instance.primary_node:
5523 a8083063 Iustin Pop
        snode = dev.logical_id[1]
5524 a8083063 Iustin Pop
      else:
5525 a8083063 Iustin Pop
        snode = dev.logical_id[0]
5526 a8083063 Iustin Pop
5527 57821cac Iustin Pop
    if snode and not static:
5528 a8083063 Iustin Pop
      self.cfg.SetDiskID(dev, snode)
5529 72737a7f Iustin Pop
      dev_sstatus = self.rpc.call_blockdev_find(snode, dev)
5530 23829f6f Iustin Pop
      msg = dev_sstatus.RemoteFailMsg()
5531 23829f6f Iustin Pop
      if msg:
5532 23829f6f Iustin Pop
        raise errors.OpExecError("Can't compute disk status for %s: %s" %
5533 23829f6f Iustin Pop
                                 (instance.name, msg))
5534 23829f6f Iustin Pop
      dev_sstatus = dev_sstatus.payload
5535 a8083063 Iustin Pop
    else:
5536 a8083063 Iustin Pop
      dev_sstatus = None
5537 a8083063 Iustin Pop
5538 a8083063 Iustin Pop
    if dev.children:
5539 a8083063 Iustin Pop
      dev_children = [self._ComputeDiskStatus(instance, snode, child)
5540 a8083063 Iustin Pop
                      for child in dev.children]
5541 a8083063 Iustin Pop
    else:
5542 a8083063 Iustin Pop
      dev_children = []
5543 a8083063 Iustin Pop
5544 a8083063 Iustin Pop
    data = {
5545 a8083063 Iustin Pop
      "iv_name": dev.iv_name,
5546 a8083063 Iustin Pop
      "dev_type": dev.dev_type,
5547 a8083063 Iustin Pop
      "logical_id": dev.logical_id,
5548 a8083063 Iustin Pop
      "physical_id": dev.physical_id,
5549 a8083063 Iustin Pop
      "pstatus": dev_pstatus,
5550 a8083063 Iustin Pop
      "sstatus": dev_sstatus,
5551 a8083063 Iustin Pop
      "children": dev_children,
5552 b6fdf8b8 Iustin Pop
      "mode": dev.mode,
5553 a8083063 Iustin Pop
      }
5554 a8083063 Iustin Pop
5555 a8083063 Iustin Pop
    return data
5556 a8083063 Iustin Pop
5557 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5558 a8083063 Iustin Pop
    """Gather and return data"""
5559 a8083063 Iustin Pop
    result = {}
5560 338e51e8 Iustin Pop
5561 338e51e8 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
5562 338e51e8 Iustin Pop
5563 a8083063 Iustin Pop
    for instance in self.wanted_instances:
5564 57821cac Iustin Pop
      if not self.op.static:
5565 57821cac Iustin Pop
        remote_info = self.rpc.call_instance_info(instance.primary_node,
5566 57821cac Iustin Pop
                                                  instance.name,
5567 57821cac Iustin Pop
                                                  instance.hypervisor)
5568 781de953 Iustin Pop
        remote_info.Raise()
5569 781de953 Iustin Pop
        remote_info = remote_info.data
5570 57821cac Iustin Pop
        if remote_info and "state" in remote_info:
5571 57821cac Iustin Pop
          remote_state = "up"
5572 57821cac Iustin Pop
        else:
5573 57821cac Iustin Pop
          remote_state = "down"
5574 a8083063 Iustin Pop
      else:
5575 57821cac Iustin Pop
        remote_state = None
5576 0d68c45d Iustin Pop
      if instance.admin_up:
5577 a8083063 Iustin Pop
        config_state = "up"
5578 0d68c45d Iustin Pop
      else:
5579 0d68c45d Iustin Pop
        config_state = "down"
5580 a8083063 Iustin Pop
5581 a8083063 Iustin Pop
      disks = [self._ComputeDiskStatus(instance, None, device)
5582 a8083063 Iustin Pop
               for device in instance.disks]
5583 a8083063 Iustin Pop
5584 a8083063 Iustin Pop
      idict = {
5585 a8083063 Iustin Pop
        "name": instance.name,
5586 a8083063 Iustin Pop
        "config_state": config_state,
5587 a8083063 Iustin Pop
        "run_state": remote_state,
5588 a8083063 Iustin Pop
        "pnode": instance.primary_node,
5589 a8083063 Iustin Pop
        "snodes": instance.secondary_nodes,
5590 a8083063 Iustin Pop
        "os": instance.os,
5591 a8083063 Iustin Pop
        "nics": [(nic.mac, nic.ip, nic.bridge) for nic in instance.nics],
5592 a8083063 Iustin Pop
        "disks": disks,
5593 e69d05fd Iustin Pop
        "hypervisor": instance.hypervisor,
5594 24838135 Iustin Pop
        "network_port": instance.network_port,
5595 24838135 Iustin Pop
        "hv_instance": instance.hvparams,
5596 338e51e8 Iustin Pop
        "hv_actual": cluster.FillHV(instance),
5597 338e51e8 Iustin Pop
        "be_instance": instance.beparams,
5598 338e51e8 Iustin Pop
        "be_actual": cluster.FillBE(instance),
5599 a8083063 Iustin Pop
        }
5600 a8083063 Iustin Pop
5601 a8083063 Iustin Pop
      result[instance.name] = idict
5602 a8083063 Iustin Pop
5603 a8083063 Iustin Pop
    return result
5604 a8083063 Iustin Pop
5605 a8083063 Iustin Pop
5606 7767bbf5 Manuel Franceschini
class LUSetInstanceParams(LogicalUnit):
5607 a8083063 Iustin Pop
  """Modifies an instances's parameters.
5608 a8083063 Iustin Pop

5609 a8083063 Iustin Pop
  """
5610 a8083063 Iustin Pop
  HPATH = "instance-modify"
5611 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5612 24991749 Iustin Pop
  _OP_REQP = ["instance_name"]
5613 1a5c7281 Guido Trotter
  REQ_BGL = False
5614 1a5c7281 Guido Trotter
5615 24991749 Iustin Pop
  def CheckArguments(self):
5616 24991749 Iustin Pop
    if not hasattr(self.op, 'nics'):
5617 24991749 Iustin Pop
      self.op.nics = []
5618 24991749 Iustin Pop
    if not hasattr(self.op, 'disks'):
5619 24991749 Iustin Pop
      self.op.disks = []
5620 24991749 Iustin Pop
    if not hasattr(self.op, 'beparams'):
5621 24991749 Iustin Pop
      self.op.beparams = {}
5622 24991749 Iustin Pop
    if not hasattr(self.op, 'hvparams'):
5623 24991749 Iustin Pop
      self.op.hvparams = {}
5624 24991749 Iustin Pop
    self.op.force = getattr(self.op, "force", False)
5625 24991749 Iustin Pop
    if not (self.op.nics or self.op.disks or
5626 24991749 Iustin Pop
            self.op.hvparams or self.op.beparams):
5627 24991749 Iustin Pop
      raise errors.OpPrereqError("No changes submitted")
5628 24991749 Iustin Pop
5629 24991749 Iustin Pop
    # Disk validation
5630 24991749 Iustin Pop
    disk_addremove = 0
5631 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5632 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5633 24991749 Iustin Pop
        disk_addremove += 1
5634 24991749 Iustin Pop
        continue
5635 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5636 24991749 Iustin Pop
        disk_addremove += 1
5637 24991749 Iustin Pop
      else:
5638 24991749 Iustin Pop
        if not isinstance(disk_op, int):
5639 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index")
5640 24991749 Iustin Pop
      if disk_op == constants.DDM_ADD:
5641 24991749 Iustin Pop
        mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
5642 6ec66eae Iustin Pop
        if mode not in constants.DISK_ACCESS_SET:
5643 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode)
5644 24991749 Iustin Pop
        size = disk_dict.get('size', None)
5645 24991749 Iustin Pop
        if size is None:
5646 24991749 Iustin Pop
          raise errors.OpPrereqError("Required disk parameter size missing")
5647 24991749 Iustin Pop
        try:
5648 24991749 Iustin Pop
          size = int(size)
5649 24991749 Iustin Pop
        except ValueError, err:
5650 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size parameter: %s" %
5651 24991749 Iustin Pop
                                     str(err))
5652 24991749 Iustin Pop
        disk_dict['size'] = size
5653 24991749 Iustin Pop
      else:
5654 24991749 Iustin Pop
        # modification of disk
5655 24991749 Iustin Pop
        if 'size' in disk_dict:
5656 24991749 Iustin Pop
          raise errors.OpPrereqError("Disk size change not possible, use"
5657 24991749 Iustin Pop
                                     " grow-disk")
5658 24991749 Iustin Pop
5659 24991749 Iustin Pop
    if disk_addremove > 1:
5660 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one disk add or remove operation"
5661 24991749 Iustin Pop
                                 " supported at a time")
5662 24991749 Iustin Pop
5663 24991749 Iustin Pop
    # NIC validation
5664 24991749 Iustin Pop
    nic_addremove = 0
5665 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5666 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5667 24991749 Iustin Pop
        nic_addremove += 1
5668 24991749 Iustin Pop
        continue
5669 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5670 24991749 Iustin Pop
        nic_addremove += 1
5671 24991749 Iustin Pop
      else:
5672 24991749 Iustin Pop
        if not isinstance(nic_op, int):
5673 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid nic index")
5674 24991749 Iustin Pop
5675 24991749 Iustin Pop
      # nic_dict should be a dict
5676 24991749 Iustin Pop
      nic_ip = nic_dict.get('ip', None)
5677 24991749 Iustin Pop
      if nic_ip is not None:
5678 24991749 Iustin Pop
        if nic_ip.lower() == "none":
5679 24991749 Iustin Pop
          nic_dict['ip'] = None
5680 24991749 Iustin Pop
        else:
5681 24991749 Iustin Pop
          if not utils.IsValidIP(nic_ip):
5682 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip)
5683 24991749 Iustin Pop
      # we can only check None bridges and assign the default one
5684 24991749 Iustin Pop
      nic_bridge = nic_dict.get('bridge', None)
5685 24991749 Iustin Pop
      if nic_bridge is None:
5686 24991749 Iustin Pop
        nic_dict['bridge'] = self.cfg.GetDefBridge()
5687 24991749 Iustin Pop
      # but we can validate MACs
5688 24991749 Iustin Pop
      nic_mac = nic_dict.get('mac', None)
5689 24991749 Iustin Pop
      if nic_mac is not None:
5690 24991749 Iustin Pop
        if self.cfg.IsMacInUse(nic_mac):
5691 24991749 Iustin Pop
          raise errors.OpPrereqError("MAC address %s already in use"
5692 24991749 Iustin Pop
                                     " in cluster" % nic_mac)
5693 24991749 Iustin Pop
        if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5694 24991749 Iustin Pop
          if not utils.IsValidMac(nic_mac):
5695 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid MAC address %s" % nic_mac)
5696 24991749 Iustin Pop
    if nic_addremove > 1:
5697 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one NIC add or remove operation"
5698 24991749 Iustin Pop
                                 " supported at a time")
5699 24991749 Iustin Pop
5700 1a5c7281 Guido Trotter
  def ExpandNames(self):
5701 1a5c7281 Guido Trotter
    self._ExpandAndLockInstance()
5702 74409b12 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
5703 74409b12 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5704 74409b12 Iustin Pop
5705 74409b12 Iustin Pop
  def DeclareLocks(self, level):
5706 74409b12 Iustin Pop
    if level == locking.LEVEL_NODE:
5707 74409b12 Iustin Pop
      self._LockInstancesNodes()
5708 a8083063 Iustin Pop
5709 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5710 a8083063 Iustin Pop
    """Build hooks env.
5711 a8083063 Iustin Pop

5712 a8083063 Iustin Pop
    This runs on the master, primary and secondaries.
5713 a8083063 Iustin Pop

5714 a8083063 Iustin Pop
    """
5715 396e1b78 Michael Hanselmann
    args = dict()
5716 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.be_new:
5717 338e51e8 Iustin Pop
      args['memory'] = self.be_new[constants.BE_MEMORY]
5718 338e51e8 Iustin Pop
    if constants.BE_VCPUS in self.be_new:
5719 61be6ba4 Iustin Pop
      args['vcpus'] = self.be_new[constants.BE_VCPUS]
5720 24991749 Iustin Pop
    # FIXME: readd disk/nic changes
5721 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
5722 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
5723 a8083063 Iustin Pop
    return env, nl, nl
5724 a8083063 Iustin Pop
5725 a8083063 Iustin Pop
  def CheckPrereq(self):
5726 a8083063 Iustin Pop
    """Check prerequisites.
5727 a8083063 Iustin Pop

5728 a8083063 Iustin Pop
    This only checks the instance list against the existing names.
5729 a8083063 Iustin Pop

5730 a8083063 Iustin Pop
    """
5731 24991749 Iustin Pop
    force = self.force = self.op.force
5732 a8083063 Iustin Pop
5733 74409b12 Iustin Pop
    # checking the new params on the primary/secondary nodes
5734 31a853d2 Iustin Pop
5735 cfefe007 Guido Trotter
    instance = self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5736 1a5c7281 Guido Trotter
    assert self.instance is not None, \
5737 1a5c7281 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5738 6b12959c Iustin Pop
    pnode = instance.primary_node
5739 6b12959c Iustin Pop
    nodelist = list(instance.all_nodes)
5740 74409b12 Iustin Pop
5741 338e51e8 Iustin Pop
    # hvparams processing
5742 74409b12 Iustin Pop
    if self.op.hvparams:
5743 74409b12 Iustin Pop
      i_hvdict = copy.deepcopy(instance.hvparams)
5744 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
5745 8edcd611 Guido Trotter
        if val == constants.VALUE_DEFAULT:
5746 74409b12 Iustin Pop
          try:
5747 74409b12 Iustin Pop
            del i_hvdict[key]
5748 74409b12 Iustin Pop
          except KeyError:
5749 74409b12 Iustin Pop
            pass
5750 74409b12 Iustin Pop
        else:
5751 74409b12 Iustin Pop
          i_hvdict[key] = val
5752 74409b12 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
5753 a5728081 Guido Trotter
      utils.ForceDictType(i_hvdict, constants.HVS_PARAMETER_TYPES)
5754 74409b12 Iustin Pop
      hv_new = cluster.FillDict(cluster.hvparams[instance.hypervisor],
5755 74409b12 Iustin Pop
                                i_hvdict)
5756 74409b12 Iustin Pop
      # local check
5757 74409b12 Iustin Pop
      hypervisor.GetHypervisor(
5758 74409b12 Iustin Pop
        instance.hypervisor).CheckParameterSyntax(hv_new)
5759 74409b12 Iustin Pop
      _CheckHVParams(self, nodelist, instance.hypervisor, hv_new)
5760 338e51e8 Iustin Pop
      self.hv_new = hv_new # the new actual values
5761 338e51e8 Iustin Pop
      self.hv_inst = i_hvdict # the new dict (without defaults)
5762 338e51e8 Iustin Pop
    else:
5763 338e51e8 Iustin Pop
      self.hv_new = self.hv_inst = {}
5764 338e51e8 Iustin Pop
5765 338e51e8 Iustin Pop
    # beparams processing
5766 338e51e8 Iustin Pop
    if self.op.beparams:
5767 338e51e8 Iustin Pop
      i_bedict = copy.deepcopy(instance.beparams)
5768 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
5769 8edcd611 Guido Trotter
        if val == constants.VALUE_DEFAULT:
5770 338e51e8 Iustin Pop
          try:
5771 338e51e8 Iustin Pop
            del i_bedict[key]
5772 338e51e8 Iustin Pop
          except KeyError:
5773 338e51e8 Iustin Pop
            pass
5774 338e51e8 Iustin Pop
        else:
5775 338e51e8 Iustin Pop
          i_bedict[key] = val
5776 338e51e8 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
5777 a5728081 Guido Trotter
      utils.ForceDictType(i_bedict, constants.BES_PARAMETER_TYPES)
5778 338e51e8 Iustin Pop
      be_new = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
5779 338e51e8 Iustin Pop
                                i_bedict)
5780 338e51e8 Iustin Pop
      self.be_new = be_new # the new actual values
5781 338e51e8 Iustin Pop
      self.be_inst = i_bedict # the new dict (without defaults)
5782 338e51e8 Iustin Pop
    else:
5783 b637ae4d Iustin Pop
      self.be_new = self.be_inst = {}
5784 74409b12 Iustin Pop
5785 cfefe007 Guido Trotter
    self.warn = []
5786 647a5d80 Iustin Pop
5787 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.op.beparams and not self.force:
5788 647a5d80 Iustin Pop
      mem_check_list = [pnode]
5789 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
5790 c0f2b229 Iustin Pop
        # either we changed auto_balance to yes or it was from before
5791 647a5d80 Iustin Pop
        mem_check_list.extend(instance.secondary_nodes)
5792 72737a7f Iustin Pop
      instance_info = self.rpc.call_instance_info(pnode, instance.name,
5793 72737a7f Iustin Pop
                                                  instance.hypervisor)
5794 647a5d80 Iustin Pop
      nodeinfo = self.rpc.call_node_info(mem_check_list, self.cfg.GetVGName(),
5795 72737a7f Iustin Pop
                                         instance.hypervisor)
5796 781de953 Iustin Pop
      if nodeinfo[pnode].failed or not isinstance(nodeinfo[pnode].data, dict):
5797 cfefe007 Guido Trotter
        # Assume the primary node is unreachable and go ahead
5798 cfefe007 Guido Trotter
        self.warn.append("Can't get info from primary node %s" % pnode)
5799 cfefe007 Guido Trotter
      else:
5800 781de953 Iustin Pop
        if not instance_info.failed and instance_info.data:
5801 781de953 Iustin Pop
          current_mem = instance_info.data['memory']
5802 cfefe007 Guido Trotter
        else:
5803 cfefe007 Guido Trotter
          # Assume instance not running
5804 cfefe007 Guido Trotter
          # (there is a slight race condition here, but it's not very probable,
5805 cfefe007 Guido Trotter
          # and we have no other way to check)
5806 cfefe007 Guido Trotter
          current_mem = 0
5807 338e51e8 Iustin Pop
        miss_mem = (be_new[constants.BE_MEMORY] - current_mem -
5808 781de953 Iustin Pop
                    nodeinfo[pnode].data['memory_free'])
5809 cfefe007 Guido Trotter
        if miss_mem > 0:
5810 cfefe007 Guido Trotter
          raise errors.OpPrereqError("This change will prevent the instance"
5811 cfefe007 Guido Trotter
                                     " from starting, due to %d MB of memory"
5812 cfefe007 Guido Trotter
                                     " missing on its primary node" % miss_mem)
5813 cfefe007 Guido Trotter
5814 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
5815 ea33068f Iustin Pop
        for node, nres in nodeinfo.iteritems():
5816 ea33068f Iustin Pop
          if node not in instance.secondary_nodes:
5817 ea33068f Iustin Pop
            continue
5818 781de953 Iustin Pop
          if nres.failed or not isinstance(nres.data, dict):
5819 647a5d80 Iustin Pop
            self.warn.append("Can't get info from secondary node %s" % node)
5820 781de953 Iustin Pop
          elif be_new[constants.BE_MEMORY] > nres.data['memory_free']:
5821 647a5d80 Iustin Pop
            self.warn.append("Not enough memory to failover instance to"
5822 647a5d80 Iustin Pop
                             " secondary node %s" % node)
5823 5bc84f33 Alexander Schreiber
5824 24991749 Iustin Pop
    # NIC processing
5825 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5826 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5827 24991749 Iustin Pop
        if not instance.nics:
5828 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance has no NICs, cannot remove")
5829 24991749 Iustin Pop
        continue
5830 24991749 Iustin Pop
      if nic_op != constants.DDM_ADD:
5831 24991749 Iustin Pop
        # an existing nic
5832 24991749 Iustin Pop
        if nic_op < 0 or nic_op >= len(instance.nics):
5833 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid NIC index %s, valid values"
5834 24991749 Iustin Pop
                                     " are 0 to %d" %
5835 24991749 Iustin Pop
                                     (nic_op, len(instance.nics)))
5836 24991749 Iustin Pop
      nic_bridge = nic_dict.get('bridge', None)
5837 24991749 Iustin Pop
      if nic_bridge is not None:
5838 24991749 Iustin Pop
        if not self.rpc.call_bridges_exist(pnode, [nic_bridge]):
5839 24991749 Iustin Pop
          msg = ("Bridge '%s' doesn't exist on one of"
5840 24991749 Iustin Pop
                 " the instance nodes" % nic_bridge)
5841 24991749 Iustin Pop
          if self.force:
5842 24991749 Iustin Pop
            self.warn.append(msg)
5843 24991749 Iustin Pop
          else:
5844 24991749 Iustin Pop
            raise errors.OpPrereqError(msg)
5845 24991749 Iustin Pop
5846 24991749 Iustin Pop
    # DISK processing
5847 24991749 Iustin Pop
    if self.op.disks and instance.disk_template == constants.DT_DISKLESS:
5848 24991749 Iustin Pop
      raise errors.OpPrereqError("Disk operations not supported for"
5849 24991749 Iustin Pop
                                 " diskless instances")
5850 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5851 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5852 24991749 Iustin Pop
        if len(instance.disks) == 1:
5853 24991749 Iustin Pop
          raise errors.OpPrereqError("Cannot remove the last disk of"
5854 24991749 Iustin Pop
                                     " an instance")
5855 24991749 Iustin Pop
        ins_l = self.rpc.call_instance_list([pnode], [instance.hypervisor])
5856 24991749 Iustin Pop
        ins_l = ins_l[pnode]
5857 4cfb9426 Iustin Pop
        if ins_l.failed or not isinstance(ins_l.data, list):
5858 24991749 Iustin Pop
          raise errors.OpPrereqError("Can't contact node '%s'" % pnode)
5859 4cfb9426 Iustin Pop
        if instance.name in ins_l.data:
5860 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance is running, can't remove"
5861 24991749 Iustin Pop
                                     " disks.")
5862 24991749 Iustin Pop
5863 24991749 Iustin Pop
      if (disk_op == constants.DDM_ADD and
5864 24991749 Iustin Pop
          len(instance.nics) >= constants.MAX_DISKS):
5865 24991749 Iustin Pop
        raise errors.OpPrereqError("Instance has too many disks (%d), cannot"
5866 24991749 Iustin Pop
                                   " add more" % constants.MAX_DISKS)
5867 24991749 Iustin Pop
      if disk_op not in (constants.DDM_ADD, constants.DDM_REMOVE):
5868 24991749 Iustin Pop
        # an existing disk
5869 24991749 Iustin Pop
        if disk_op < 0 or disk_op >= len(instance.disks):
5870 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index %s, valid values"
5871 24991749 Iustin Pop
                                     " are 0 to %d" %
5872 24991749 Iustin Pop
                                     (disk_op, len(instance.disks)))
5873 24991749 Iustin Pop
5874 a8083063 Iustin Pop
    return
5875 a8083063 Iustin Pop
5876 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5877 a8083063 Iustin Pop
    """Modifies an instance.
5878 a8083063 Iustin Pop

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

5881 a8083063 Iustin Pop
    """
5882 cfefe007 Guido Trotter
    # Process here the warnings from CheckPrereq, as we don't have a
5883 cfefe007 Guido Trotter
    # feedback_fn there.
5884 cfefe007 Guido Trotter
    for warn in self.warn:
5885 cfefe007 Guido Trotter
      feedback_fn("WARNING: %s" % warn)
5886 cfefe007 Guido Trotter
5887 a8083063 Iustin Pop
    result = []
5888 a8083063 Iustin Pop
    instance = self.instance
5889 24991749 Iustin Pop
    # disk changes
5890 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5891 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5892 24991749 Iustin Pop
        # remove the last disk
5893 24991749 Iustin Pop
        device = instance.disks.pop()
5894 24991749 Iustin Pop
        device_idx = len(instance.disks)
5895 24991749 Iustin Pop
        for node, disk in device.ComputeNodeTree(instance.primary_node):
5896 24991749 Iustin Pop
          self.cfg.SetDiskID(disk, node)
5897 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
5898 e1bc0878 Iustin Pop
          if msg:
5899 e1bc0878 Iustin Pop
            self.LogWarning("Could not remove disk/%d on node %s: %s,"
5900 e1bc0878 Iustin Pop
                            " continuing anyway", device_idx, node, msg)
5901 24991749 Iustin Pop
        result.append(("disk/%d" % device_idx, "remove"))
5902 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5903 24991749 Iustin Pop
        # add a new disk
5904 24991749 Iustin Pop
        if instance.disk_template == constants.DT_FILE:
5905 24991749 Iustin Pop
          file_driver, file_path = instance.disks[0].logical_id
5906 24991749 Iustin Pop
          file_path = os.path.dirname(file_path)
5907 24991749 Iustin Pop
        else:
5908 24991749 Iustin Pop
          file_driver = file_path = None
5909 24991749 Iustin Pop
        disk_idx_base = len(instance.disks)
5910 24991749 Iustin Pop
        new_disk = _GenerateDiskTemplate(self,
5911 24991749 Iustin Pop
                                         instance.disk_template,
5912 32388e6d Iustin Pop
                                         instance.name, instance.primary_node,
5913 24991749 Iustin Pop
                                         instance.secondary_nodes,
5914 24991749 Iustin Pop
                                         [disk_dict],
5915 24991749 Iustin Pop
                                         file_path,
5916 24991749 Iustin Pop
                                         file_driver,
5917 24991749 Iustin Pop
                                         disk_idx_base)[0]
5918 24991749 Iustin Pop
        instance.disks.append(new_disk)
5919 24991749 Iustin Pop
        info = _GetInstanceInfoText(instance)
5920 24991749 Iustin Pop
5921 24991749 Iustin Pop
        logging.info("Creating volume %s for instance %s",
5922 24991749 Iustin Pop
                     new_disk.iv_name, instance.name)
5923 24991749 Iustin Pop
        # Note: this needs to be kept in sync with _CreateDisks
5924 24991749 Iustin Pop
        #HARDCODE
5925 428958aa Iustin Pop
        for node in instance.all_nodes:
5926 428958aa Iustin Pop
          f_create = node == instance.primary_node
5927 796cab27 Iustin Pop
          try:
5928 428958aa Iustin Pop
            _CreateBlockDev(self, node, instance, new_disk,
5929 428958aa Iustin Pop
                            f_create, info, f_create)
5930 1492cca7 Iustin Pop
          except errors.OpExecError, err:
5931 24991749 Iustin Pop
            self.LogWarning("Failed to create volume %s (%s) on"
5932 428958aa Iustin Pop
                            " node %s: %s",
5933 428958aa Iustin Pop
                            new_disk.iv_name, new_disk, node, err)
5934 24991749 Iustin Pop
        result.append(("disk/%d" % disk_idx_base, "add:size=%s,mode=%s" %
5935 24991749 Iustin Pop
                       (new_disk.size, new_disk.mode)))
5936 24991749 Iustin Pop
      else:
5937 24991749 Iustin Pop
        # change a given disk
5938 24991749 Iustin Pop
        instance.disks[disk_op].mode = disk_dict['mode']
5939 24991749 Iustin Pop
        result.append(("disk.mode/%d" % disk_op, disk_dict['mode']))
5940 24991749 Iustin Pop
    # NIC changes
5941 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5942 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5943 24991749 Iustin Pop
        # remove the last nic
5944 24991749 Iustin Pop
        del instance.nics[-1]
5945 24991749 Iustin Pop
        result.append(("nic.%d" % len(instance.nics), "remove"))
5946 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5947 24991749 Iustin Pop
        # add a new nic
5948 24991749 Iustin Pop
        if 'mac' not in nic_dict:
5949 24991749 Iustin Pop
          mac = constants.VALUE_GENERATE
5950 24991749 Iustin Pop
        else:
5951 24991749 Iustin Pop
          mac = nic_dict['mac']
5952 24991749 Iustin Pop
        if mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5953 24991749 Iustin Pop
          mac = self.cfg.GenerateMAC()
5954 24991749 Iustin Pop
        new_nic = objects.NIC(mac=mac, ip=nic_dict.get('ip', None),
5955 24991749 Iustin Pop
                              bridge=nic_dict.get('bridge', None))
5956 24991749 Iustin Pop
        instance.nics.append(new_nic)
5957 24991749 Iustin Pop
        result.append(("nic.%d" % (len(instance.nics) - 1),
5958 24991749 Iustin Pop
                       "add:mac=%s,ip=%s,bridge=%s" %
5959 24991749 Iustin Pop
                       (new_nic.mac, new_nic.ip, new_nic.bridge)))
5960 24991749 Iustin Pop
      else:
5961 24991749 Iustin Pop
        # change a given nic
5962 24991749 Iustin Pop
        for key in 'mac', 'ip', 'bridge':
5963 24991749 Iustin Pop
          if key in nic_dict:
5964 24991749 Iustin Pop
            setattr(instance.nics[nic_op], key, nic_dict[key])
5965 24991749 Iustin Pop
            result.append(("nic.%s/%d" % (key, nic_op), nic_dict[key]))
5966 24991749 Iustin Pop
5967 24991749 Iustin Pop
    # hvparams changes
5968 74409b12 Iustin Pop
    if self.op.hvparams:
5969 12649e35 Guido Trotter
      instance.hvparams = self.hv_inst
5970 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
5971 74409b12 Iustin Pop
        result.append(("hv/%s" % key, val))
5972 24991749 Iustin Pop
5973 24991749 Iustin Pop
    # beparams changes
5974 338e51e8 Iustin Pop
    if self.op.beparams:
5975 338e51e8 Iustin Pop
      instance.beparams = self.be_inst
5976 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
5977 338e51e8 Iustin Pop
        result.append(("be/%s" % key, val))
5978 a8083063 Iustin Pop
5979 ea94e1cd Guido Trotter
    self.cfg.Update(instance)
5980 a8083063 Iustin Pop
5981 a8083063 Iustin Pop
    return result
5982 a8083063 Iustin Pop
5983 a8083063 Iustin Pop
5984 a8083063 Iustin Pop
class LUQueryExports(NoHooksLU):
5985 a8083063 Iustin Pop
  """Query the exports list
5986 a8083063 Iustin Pop

5987 a8083063 Iustin Pop
  """
5988 895ecd9c Guido Trotter
  _OP_REQP = ['nodes']
5989 21a15682 Guido Trotter
  REQ_BGL = False
5990 21a15682 Guido Trotter
5991 21a15682 Guido Trotter
  def ExpandNames(self):
5992 21a15682 Guido Trotter
    self.needed_locks = {}
5993 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
5994 21a15682 Guido Trotter
    if not self.op.nodes:
5995 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
5996 21a15682 Guido Trotter
    else:
5997 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
5998 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
5999 a8083063 Iustin Pop
6000 a8083063 Iustin Pop
  def CheckPrereq(self):
6001 21a15682 Guido Trotter
    """Check prerequisites.
6002 a8083063 Iustin Pop

6003 a8083063 Iustin Pop
    """
6004 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
6005 a8083063 Iustin Pop
6006 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6007 a8083063 Iustin Pop
    """Compute the list of all the exported system images.
6008 a8083063 Iustin Pop

6009 e4376078 Iustin Pop
    @rtype: dict
6010 e4376078 Iustin Pop
    @return: a dictionary with the structure node->(export-list)
6011 e4376078 Iustin Pop
        where export-list is a list of the instances exported on
6012 e4376078 Iustin Pop
        that node.
6013 a8083063 Iustin Pop

6014 a8083063 Iustin Pop
    """
6015 b04285f2 Guido Trotter
    rpcresult = self.rpc.call_export_list(self.nodes)
6016 b04285f2 Guido Trotter
    result = {}
6017 b04285f2 Guido Trotter
    for node in rpcresult:
6018 b04285f2 Guido Trotter
      if rpcresult[node].failed:
6019 b04285f2 Guido Trotter
        result[node] = False
6020 b04285f2 Guido Trotter
      else:
6021 b04285f2 Guido Trotter
        result[node] = rpcresult[node].data
6022 b04285f2 Guido Trotter
6023 b04285f2 Guido Trotter
    return result
6024 a8083063 Iustin Pop
6025 a8083063 Iustin Pop
6026 a8083063 Iustin Pop
class LUExportInstance(LogicalUnit):
6027 a8083063 Iustin Pop
  """Export an instance to an image in the cluster.
6028 a8083063 Iustin Pop

6029 a8083063 Iustin Pop
  """
6030 a8083063 Iustin Pop
  HPATH = "instance-export"
6031 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
6032 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "target_node", "shutdown"]
6033 6657590e Guido Trotter
  REQ_BGL = False
6034 6657590e Guido Trotter
6035 6657590e Guido Trotter
  def ExpandNames(self):
6036 6657590e Guido Trotter
    self._ExpandAndLockInstance()
6037 6657590e Guido Trotter
    # FIXME: lock only instance primary and destination node
6038 6657590e Guido Trotter
    #
6039 6657590e Guido Trotter
    # Sad but true, for now we have do lock all nodes, as we don't know where
6040 6657590e Guido Trotter
    # the previous export might be, and and in this LU we search for it and
6041 6657590e Guido Trotter
    # remove it from its current node. In the future we could fix this by:
6042 6657590e Guido Trotter
    #  - making a tasklet to search (share-lock all), then create the new one,
6043 6657590e Guido Trotter
    #    then one to remove, after
6044 6657590e Guido Trotter
    #  - removing the removal operation altoghether
6045 6657590e Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6046 6657590e Guido Trotter
6047 6657590e Guido Trotter
  def DeclareLocks(self, level):
6048 6657590e Guido Trotter
    """Last minute lock declaration."""
6049 6657590e Guido Trotter
    # All nodes are locked anyway, so nothing to do here.
6050 a8083063 Iustin Pop
6051 a8083063 Iustin Pop
  def BuildHooksEnv(self):
6052 a8083063 Iustin Pop
    """Build hooks env.
6053 a8083063 Iustin Pop

6054 a8083063 Iustin Pop
    This will run on the master, primary node and target node.
6055 a8083063 Iustin Pop

6056 a8083063 Iustin Pop
    """
6057 a8083063 Iustin Pop
    env = {
6058 a8083063 Iustin Pop
      "EXPORT_NODE": self.op.target_node,
6059 a8083063 Iustin Pop
      "EXPORT_DO_SHUTDOWN": self.op.shutdown,
6060 a8083063 Iustin Pop
      }
6061 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
6062 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode(), self.instance.primary_node,
6063 a8083063 Iustin Pop
          self.op.target_node]
6064 a8083063 Iustin Pop
    return env, nl, nl
6065 a8083063 Iustin Pop
6066 a8083063 Iustin Pop
  def CheckPrereq(self):
6067 a8083063 Iustin Pop
    """Check prerequisites.
6068 a8083063 Iustin Pop

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

6071 a8083063 Iustin Pop
    """
6072 6657590e Guido Trotter
    instance_name = self.op.instance_name
6073 a8083063 Iustin Pop
    self.instance = self.cfg.GetInstanceInfo(instance_name)
6074 6657590e Guido Trotter
    assert self.instance is not None, \
6075 6657590e Guido Trotter
          "Cannot retrieve locked instance %s" % self.op.instance_name
6076 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
6077 a8083063 Iustin Pop
6078 6657590e Guido Trotter
    self.dst_node = self.cfg.GetNodeInfo(
6079 6657590e Guido Trotter
      self.cfg.ExpandNodeName(self.op.target_node))
6080 a8083063 Iustin Pop
6081 268b8e42 Iustin Pop
    if self.dst_node is None:
6082 268b8e42 Iustin Pop
      # This is wrong node name, not a non-locked node
6083 268b8e42 Iustin Pop
      raise errors.OpPrereqError("Wrong node name %s" % self.op.target_node)
6084 aeb83a2b Iustin Pop
    _CheckNodeOnline(self, self.dst_node.name)
6085 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, self.dst_node.name)
6086 a8083063 Iustin Pop
6087 b6023d6c Manuel Franceschini
    # instance disk type verification
6088 b6023d6c Manuel Franceschini
    for disk in self.instance.disks:
6089 b6023d6c Manuel Franceschini
      if disk.dev_type == constants.LD_FILE:
6090 b6023d6c Manuel Franceschini
        raise errors.OpPrereqError("Export not supported for instances with"
6091 b6023d6c Manuel Franceschini
                                   " file-based disks")
6092 b6023d6c Manuel Franceschini
6093 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6094 a8083063 Iustin Pop
    """Export an instance to an image in the cluster.
6095 a8083063 Iustin Pop

6096 a8083063 Iustin Pop
    """
6097 a8083063 Iustin Pop
    instance = self.instance
6098 a8083063 Iustin Pop
    dst_node = self.dst_node
6099 a8083063 Iustin Pop
    src_node = instance.primary_node
6100 a8083063 Iustin Pop
    if self.op.shutdown:
6101 fb300fb7 Guido Trotter
      # shutdown the instance, but not the disks
6102 781de953 Iustin Pop
      result = self.rpc.call_instance_shutdown(src_node, instance)
6103 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
6104 1fae010f Iustin Pop
      if msg:
6105 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
6106 1fae010f Iustin Pop
                                 " node %s: %s" %
6107 1fae010f Iustin Pop
                                 (instance.name, src_node, msg))
6108 a8083063 Iustin Pop
6109 a8083063 Iustin Pop
    vgname = self.cfg.GetVGName()
6110 a8083063 Iustin Pop
6111 a8083063 Iustin Pop
    snap_disks = []
6112 a8083063 Iustin Pop
6113 998c712c Iustin Pop
    # set the disks ID correctly since call_instance_start needs the
6114 998c712c Iustin Pop
    # correct drbd minor to create the symlinks
6115 998c712c Iustin Pop
    for disk in instance.disks:
6116 998c712c Iustin Pop
      self.cfg.SetDiskID(disk, src_node)
6117 998c712c Iustin Pop
6118 a8083063 Iustin Pop
    try:
6119 a8083063 Iustin Pop
      for disk in instance.disks:
6120 19d7f90a Guido Trotter
        # new_dev_name will be a snapshot of an lvm leaf of the one we passed
6121 19d7f90a Guido Trotter
        new_dev_name = self.rpc.call_blockdev_snapshot(src_node, disk)
6122 781de953 Iustin Pop
        if new_dev_name.failed or not new_dev_name.data:
6123 19d7f90a Guido Trotter
          self.LogWarning("Could not snapshot block device %s on node %s",
6124 9a4f63d1 Iustin Pop
                          disk.logical_id[1], src_node)
6125 19d7f90a Guido Trotter
          snap_disks.append(False)
6126 19d7f90a Guido Trotter
        else:
6127 19d7f90a Guido Trotter
          new_dev = objects.Disk(dev_type=constants.LD_LV, size=disk.size,
6128 781de953 Iustin Pop
                                 logical_id=(vgname, new_dev_name.data),
6129 781de953 Iustin Pop
                                 physical_id=(vgname, new_dev_name.data),
6130 19d7f90a Guido Trotter
                                 iv_name=disk.iv_name)
6131 19d7f90a Guido Trotter
          snap_disks.append(new_dev)
6132 a8083063 Iustin Pop
6133 a8083063 Iustin Pop
    finally:
6134 0d68c45d Iustin Pop
      if self.op.shutdown and instance.admin_up:
6135 781de953 Iustin Pop
        result = self.rpc.call_instance_start(src_node, instance, None)
6136 dd279568 Iustin Pop
        msg = result.RemoteFailMsg()
6137 dd279568 Iustin Pop
        if msg:
6138 b9bddb6b Iustin Pop
          _ShutdownInstanceDisks(self, instance)
6139 dd279568 Iustin Pop
          raise errors.OpExecError("Could not start instance: %s" % msg)
6140 a8083063 Iustin Pop
6141 a8083063 Iustin Pop
    # TODO: check for size
6142 a8083063 Iustin Pop
6143 62c9ec92 Iustin Pop
    cluster_name = self.cfg.GetClusterName()
6144 74c47259 Iustin Pop
    for idx, dev in enumerate(snap_disks):
6145 19d7f90a Guido Trotter
      if dev:
6146 781de953 Iustin Pop
        result = self.rpc.call_snapshot_export(src_node, dev, dst_node.name,
6147 781de953 Iustin Pop
                                               instance, cluster_name, idx)
6148 781de953 Iustin Pop
        if result.failed or not result.data:
6149 19d7f90a Guido Trotter
          self.LogWarning("Could not export block device %s from node %s to"
6150 19d7f90a Guido Trotter
                          " node %s", dev.logical_id[1], src_node,
6151 19d7f90a Guido Trotter
                          dst_node.name)
6152 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(src_node, dev).RemoteFailMsg()
6153 e1bc0878 Iustin Pop
        if msg:
6154 19d7f90a Guido Trotter
          self.LogWarning("Could not remove snapshot block device %s from node"
6155 e1bc0878 Iustin Pop
                          " %s: %s", dev.logical_id[1], src_node, msg)
6156 a8083063 Iustin Pop
6157 781de953 Iustin Pop
    result = self.rpc.call_finalize_export(dst_node.name, instance, snap_disks)
6158 781de953 Iustin Pop
    if result.failed or not result.data:
6159 19d7f90a Guido Trotter
      self.LogWarning("Could not finalize export for instance %s on node %s",
6160 19d7f90a Guido Trotter
                      instance.name, dst_node.name)
6161 a8083063 Iustin Pop
6162 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
6163 a8083063 Iustin Pop
    nodelist.remove(dst_node.name)
6164 a8083063 Iustin Pop
6165 a8083063 Iustin Pop
    # on one-node clusters nodelist will be empty after the removal
6166 a8083063 Iustin Pop
    # if we proceed the backup would be removed because OpQueryExports
6167 a8083063 Iustin Pop
    # substitutes an empty list with the full cluster node list.
6168 a8083063 Iustin Pop
    if nodelist:
6169 72737a7f Iustin Pop
      exportlist = self.rpc.call_export_list(nodelist)
6170 a8083063 Iustin Pop
      for node in exportlist:
6171 781de953 Iustin Pop
        if exportlist[node].failed:
6172 781de953 Iustin Pop
          continue
6173 781de953 Iustin Pop
        if instance.name in exportlist[node].data:
6174 72737a7f Iustin Pop
          if not self.rpc.call_export_remove(node, instance.name):
6175 19d7f90a Guido Trotter
            self.LogWarning("Could not remove older export for instance %s"
6176 19d7f90a Guido Trotter
                            " on node %s", instance.name, node)
6177 5c947f38 Iustin Pop
6178 5c947f38 Iustin Pop
6179 9ac99fda Guido Trotter
class LURemoveExport(NoHooksLU):
6180 9ac99fda Guido Trotter
  """Remove exports related to the named instance.
6181 9ac99fda Guido Trotter

6182 9ac99fda Guido Trotter
  """
6183 9ac99fda Guido Trotter
  _OP_REQP = ["instance_name"]
6184 3656b3af Guido Trotter
  REQ_BGL = False
6185 3656b3af Guido Trotter
6186 3656b3af Guido Trotter
  def ExpandNames(self):
6187 3656b3af Guido Trotter
    self.needed_locks = {}
6188 3656b3af Guido Trotter
    # We need all nodes to be locked in order for RemoveExport to work, but we
6189 3656b3af Guido Trotter
    # don't need to lock the instance itself, as nothing will happen to it (and
6190 3656b3af Guido Trotter
    # we can remove exports also for a removed instance)
6191 3656b3af Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6192 9ac99fda Guido Trotter
6193 9ac99fda Guido Trotter
  def CheckPrereq(self):
6194 9ac99fda Guido Trotter
    """Check prerequisites.
6195 9ac99fda Guido Trotter
    """
6196 9ac99fda Guido Trotter
    pass
6197 9ac99fda Guido Trotter
6198 9ac99fda Guido Trotter
  def Exec(self, feedback_fn):
6199 9ac99fda Guido Trotter
    """Remove any export.
6200 9ac99fda Guido Trotter

6201 9ac99fda Guido Trotter
    """
6202 9ac99fda Guido Trotter
    instance_name = self.cfg.ExpandInstanceName(self.op.instance_name)
6203 9ac99fda Guido Trotter
    # If the instance was not found we'll try with the name that was passed in.
6204 9ac99fda Guido Trotter
    # This will only work if it was an FQDN, though.
6205 9ac99fda Guido Trotter
    fqdn_warn = False
6206 9ac99fda Guido Trotter
    if not instance_name:
6207 9ac99fda Guido Trotter
      fqdn_warn = True
6208 9ac99fda Guido Trotter
      instance_name = self.op.instance_name
6209 9ac99fda Guido Trotter
6210 72737a7f Iustin Pop
    exportlist = self.rpc.call_export_list(self.acquired_locks[
6211 72737a7f Iustin Pop
      locking.LEVEL_NODE])
6212 9ac99fda Guido Trotter
    found = False
6213 9ac99fda Guido Trotter
    for node in exportlist:
6214 781de953 Iustin Pop
      if exportlist[node].failed:
6215 25361b9a Iustin Pop
        self.LogWarning("Failed to query node %s, continuing" % node)
6216 781de953 Iustin Pop
        continue
6217 781de953 Iustin Pop
      if instance_name in exportlist[node].data:
6218 9ac99fda Guido Trotter
        found = True
6219 781de953 Iustin Pop
        result = self.rpc.call_export_remove(node, instance_name)
6220 781de953 Iustin Pop
        if result.failed or not result.data:
6221 9a4f63d1 Iustin Pop
          logging.error("Could not remove export for instance %s"
6222 9a4f63d1 Iustin Pop
                        " on node %s", instance_name, node)
6223 9ac99fda Guido Trotter
6224 9ac99fda Guido Trotter
    if fqdn_warn and not found:
6225 9ac99fda Guido Trotter
      feedback_fn("Export not found. If trying to remove an export belonging"
6226 9ac99fda Guido Trotter
                  " to a deleted instance please use its Fully Qualified"
6227 9ac99fda Guido Trotter
                  " Domain Name.")
6228 9ac99fda Guido Trotter
6229 9ac99fda Guido Trotter
6230 5c947f38 Iustin Pop
class TagsLU(NoHooksLU):
6231 5c947f38 Iustin Pop
  """Generic tags LU.
6232 5c947f38 Iustin Pop

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

6235 5c947f38 Iustin Pop
  """
6236 5c947f38 Iustin Pop
6237 8646adce Guido Trotter
  def ExpandNames(self):
6238 8646adce Guido Trotter
    self.needed_locks = {}
6239 8646adce Guido Trotter
    if self.op.kind == constants.TAG_NODE:
6240 5c947f38 Iustin Pop
      name = self.cfg.ExpandNodeName(self.op.name)
6241 5c947f38 Iustin Pop
      if name is None:
6242 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid node name (%s)" %
6243 3ecf6786 Iustin Pop
                                   (self.op.name,))
6244 5c947f38 Iustin Pop
      self.op.name = name
6245 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = name
6246 5c947f38 Iustin Pop
    elif self.op.kind == constants.TAG_INSTANCE:
6247 8f684e16 Iustin Pop
      name = self.cfg.ExpandInstanceName(self.op.name)
6248 5c947f38 Iustin Pop
      if name is None:
6249 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid instance name (%s)" %
6250 3ecf6786 Iustin Pop
                                   (self.op.name,))
6251 5c947f38 Iustin Pop
      self.op.name = name
6252 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = name
6253 8646adce Guido Trotter
6254 8646adce Guido Trotter
  def CheckPrereq(self):
6255 8646adce Guido Trotter
    """Check prerequisites.
6256 8646adce Guido Trotter

6257 8646adce Guido Trotter
    """
6258 8646adce Guido Trotter
    if self.op.kind == constants.TAG_CLUSTER:
6259 8646adce Guido Trotter
      self.target = self.cfg.GetClusterInfo()
6260 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_NODE:
6261 8646adce Guido Trotter
      self.target = self.cfg.GetNodeInfo(self.op.name)
6262 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_INSTANCE:
6263 8646adce Guido Trotter
      self.target = self.cfg.GetInstanceInfo(self.op.name)
6264 5c947f38 Iustin Pop
    else:
6265 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Wrong tag type requested (%s)" %
6266 3ecf6786 Iustin Pop
                                 str(self.op.kind))
6267 5c947f38 Iustin Pop
6268 5c947f38 Iustin Pop
6269 5c947f38 Iustin Pop
class LUGetTags(TagsLU):
6270 5c947f38 Iustin Pop
  """Returns the tags of a given object.
6271 5c947f38 Iustin Pop

6272 5c947f38 Iustin Pop
  """
6273 5c947f38 Iustin Pop
  _OP_REQP = ["kind", "name"]
6274 8646adce Guido Trotter
  REQ_BGL = False
6275 5c947f38 Iustin Pop
6276 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6277 5c947f38 Iustin Pop
    """Returns the tag list.
6278 5c947f38 Iustin Pop

6279 5c947f38 Iustin Pop
    """
6280 5d414478 Oleksiy Mishchenko
    return list(self.target.GetTags())
6281 5c947f38 Iustin Pop
6282 5c947f38 Iustin Pop
6283 73415719 Iustin Pop
class LUSearchTags(NoHooksLU):
6284 73415719 Iustin Pop
  """Searches the tags for a given pattern.
6285 73415719 Iustin Pop

6286 73415719 Iustin Pop
  """
6287 73415719 Iustin Pop
  _OP_REQP = ["pattern"]
6288 8646adce Guido Trotter
  REQ_BGL = False
6289 8646adce Guido Trotter
6290 8646adce Guido Trotter
  def ExpandNames(self):
6291 8646adce Guido Trotter
    self.needed_locks = {}
6292 73415719 Iustin Pop
6293 73415719 Iustin Pop
  def CheckPrereq(self):
6294 73415719 Iustin Pop
    """Check prerequisites.
6295 73415719 Iustin Pop

6296 73415719 Iustin Pop
    This checks the pattern passed for validity by compiling it.
6297 73415719 Iustin Pop

6298 73415719 Iustin Pop
    """
6299 73415719 Iustin Pop
    try:
6300 73415719 Iustin Pop
      self.re = re.compile(self.op.pattern)
6301 73415719 Iustin Pop
    except re.error, err:
6302 73415719 Iustin Pop
      raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
6303 73415719 Iustin Pop
                                 (self.op.pattern, err))
6304 73415719 Iustin Pop
6305 73415719 Iustin Pop
  def Exec(self, feedback_fn):
6306 73415719 Iustin Pop
    """Returns the tag list.
6307 73415719 Iustin Pop

6308 73415719 Iustin Pop
    """
6309 73415719 Iustin Pop
    cfg = self.cfg
6310 73415719 Iustin Pop
    tgts = [("/cluster", cfg.GetClusterInfo())]
6311 8646adce Guido Trotter
    ilist = cfg.GetAllInstancesInfo().values()
6312 73415719 Iustin Pop
    tgts.extend([("/instances/%s" % i.name, i) for i in ilist])
6313 8646adce Guido Trotter
    nlist = cfg.GetAllNodesInfo().values()
6314 73415719 Iustin Pop
    tgts.extend([("/nodes/%s" % n.name, n) for n in nlist])
6315 73415719 Iustin Pop
    results = []
6316 73415719 Iustin Pop
    for path, target in tgts:
6317 73415719 Iustin Pop
      for tag in target.GetTags():
6318 73415719 Iustin Pop
        if self.re.search(tag):
6319 73415719 Iustin Pop
          results.append((path, tag))
6320 73415719 Iustin Pop
    return results
6321 73415719 Iustin Pop
6322 73415719 Iustin Pop
6323 f27302fa Iustin Pop
class LUAddTags(TagsLU):
6324 5c947f38 Iustin Pop
  """Sets a tag on a given object.
6325 5c947f38 Iustin Pop

6326 5c947f38 Iustin Pop
  """
6327 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6328 8646adce Guido Trotter
  REQ_BGL = False
6329 5c947f38 Iustin Pop
6330 5c947f38 Iustin Pop
  def CheckPrereq(self):
6331 5c947f38 Iustin Pop
    """Check prerequisites.
6332 5c947f38 Iustin Pop

6333 5c947f38 Iustin Pop
    This checks the type and length of the tag name and value.
6334 5c947f38 Iustin Pop

6335 5c947f38 Iustin Pop
    """
6336 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6337 f27302fa Iustin Pop
    for tag in self.op.tags:
6338 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6339 5c947f38 Iustin Pop
6340 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6341 5c947f38 Iustin Pop
    """Sets the tag.
6342 5c947f38 Iustin Pop

6343 5c947f38 Iustin Pop
    """
6344 5c947f38 Iustin Pop
    try:
6345 f27302fa Iustin Pop
      for tag in self.op.tags:
6346 f27302fa Iustin Pop
        self.target.AddTag(tag)
6347 5c947f38 Iustin Pop
    except errors.TagError, err:
6348 3ecf6786 Iustin Pop
      raise errors.OpExecError("Error while setting tag: %s" % str(err))
6349 5c947f38 Iustin Pop
    try:
6350 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6351 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6352 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6353 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6354 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6355 5c947f38 Iustin Pop
6356 5c947f38 Iustin Pop
6357 f27302fa Iustin Pop
class LUDelTags(TagsLU):
6358 f27302fa Iustin Pop
  """Delete a list of tags from a given object.
6359 5c947f38 Iustin Pop

6360 5c947f38 Iustin Pop
  """
6361 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6362 8646adce Guido Trotter
  REQ_BGL = False
6363 5c947f38 Iustin Pop
6364 5c947f38 Iustin Pop
  def CheckPrereq(self):
6365 5c947f38 Iustin Pop
    """Check prerequisites.
6366 5c947f38 Iustin Pop

6367 5c947f38 Iustin Pop
    This checks that we have the given tag.
6368 5c947f38 Iustin Pop

6369 5c947f38 Iustin Pop
    """
6370 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6371 f27302fa Iustin Pop
    for tag in self.op.tags:
6372 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6373 f27302fa Iustin Pop
    del_tags = frozenset(self.op.tags)
6374 f27302fa Iustin Pop
    cur_tags = self.target.GetTags()
6375 f27302fa Iustin Pop
    if not del_tags <= cur_tags:
6376 f27302fa Iustin Pop
      diff_tags = del_tags - cur_tags
6377 f27302fa Iustin Pop
      diff_names = ["'%s'" % tag for tag in diff_tags]
6378 f27302fa Iustin Pop
      diff_names.sort()
6379 f27302fa Iustin Pop
      raise errors.OpPrereqError("Tag(s) %s not found" %
6380 f27302fa Iustin Pop
                                 (",".join(diff_names)))
6381 5c947f38 Iustin Pop
6382 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6383 5c947f38 Iustin Pop
    """Remove the tag from the object.
6384 5c947f38 Iustin Pop

6385 5c947f38 Iustin Pop
    """
6386 f27302fa Iustin Pop
    for tag in self.op.tags:
6387 f27302fa Iustin Pop
      self.target.RemoveTag(tag)
6388 5c947f38 Iustin Pop
    try:
6389 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6390 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6391 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6392 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6393 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6394 06009e27 Iustin Pop
6395 0eed6e61 Guido Trotter
6396 06009e27 Iustin Pop
class LUTestDelay(NoHooksLU):
6397 06009e27 Iustin Pop
  """Sleep for a specified amount of time.
6398 06009e27 Iustin Pop

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

6402 06009e27 Iustin Pop
  """
6403 06009e27 Iustin Pop
  _OP_REQP = ["duration", "on_master", "on_nodes"]
6404 fbe9022f Guido Trotter
  REQ_BGL = False
6405 06009e27 Iustin Pop
6406 fbe9022f Guido Trotter
  def ExpandNames(self):
6407 fbe9022f Guido Trotter
    """Expand names and set required locks.
6408 06009e27 Iustin Pop

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

6411 06009e27 Iustin Pop
    """
6412 fbe9022f Guido Trotter
    self.needed_locks = {}
6413 06009e27 Iustin Pop
    if self.op.on_nodes:
6414 fbe9022f Guido Trotter
      # _GetWantedNodes can be used here, but is not always appropriate to use
6415 fbe9022f Guido Trotter
      # this way in ExpandNames. Check LogicalUnit.ExpandNames docstring for
6416 fbe9022f Guido Trotter
      # more information.
6417 06009e27 Iustin Pop
      self.op.on_nodes = _GetWantedNodes(self, self.op.on_nodes)
6418 fbe9022f Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = self.op.on_nodes
6419 fbe9022f Guido Trotter
6420 fbe9022f Guido Trotter
  def CheckPrereq(self):
6421 fbe9022f Guido Trotter
    """Check prerequisites.
6422 fbe9022f Guido Trotter

6423 fbe9022f Guido Trotter
    """
6424 06009e27 Iustin Pop
6425 06009e27 Iustin Pop
  def Exec(self, feedback_fn):
6426 06009e27 Iustin Pop
    """Do the actual sleep.
6427 06009e27 Iustin Pop

6428 06009e27 Iustin Pop
    """
6429 06009e27 Iustin Pop
    if self.op.on_master:
6430 06009e27 Iustin Pop
      if not utils.TestDelay(self.op.duration):
6431 06009e27 Iustin Pop
        raise errors.OpExecError("Error during master delay test")
6432 06009e27 Iustin Pop
    if self.op.on_nodes:
6433 72737a7f Iustin Pop
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
6434 06009e27 Iustin Pop
      if not result:
6435 06009e27 Iustin Pop
        raise errors.OpExecError("Complete failure from rpc call")
6436 06009e27 Iustin Pop
      for node, node_result in result.items():
6437 781de953 Iustin Pop
        node_result.Raise()
6438 781de953 Iustin Pop
        if not node_result.data:
6439 06009e27 Iustin Pop
          raise errors.OpExecError("Failure during rpc call to node %s,"
6440 781de953 Iustin Pop
                                   " result: %s" % (node, node_result.data))
6441 d61df03e Iustin Pop
6442 d61df03e Iustin Pop
6443 d1c2dd75 Iustin Pop
class IAllocator(object):
6444 d1c2dd75 Iustin Pop
  """IAllocator framework.
6445 d61df03e Iustin Pop

6446 d1c2dd75 Iustin Pop
  An IAllocator instance has three sets of attributes:
6447 d6a02168 Michael Hanselmann
    - cfg that is needed to query the cluster
6448 d1c2dd75 Iustin Pop
    - input data (all members of the _KEYS class attribute are required)
6449 d1c2dd75 Iustin Pop
    - four buffer attributes (in|out_data|text), that represent the
6450 d1c2dd75 Iustin Pop
      input (to the external script) in text and data structure format,
6451 d1c2dd75 Iustin Pop
      and the output from it, again in two formats
6452 d1c2dd75 Iustin Pop
    - the result variables from the script (success, info, nodes) for
6453 d1c2dd75 Iustin Pop
      easy usage
6454 d61df03e Iustin Pop

6455 d61df03e Iustin Pop
  """
6456 29859cb7 Iustin Pop
  _ALLO_KEYS = [
6457 d1c2dd75 Iustin Pop
    "mem_size", "disks", "disk_template",
6458 8cc7e742 Guido Trotter
    "os", "tags", "nics", "vcpus", "hypervisor",
6459 d1c2dd75 Iustin Pop
    ]
6460 29859cb7 Iustin Pop
  _RELO_KEYS = [
6461 29859cb7 Iustin Pop
    "relocate_from",
6462 29859cb7 Iustin Pop
    ]
6463 d1c2dd75 Iustin Pop
6464 72737a7f Iustin Pop
  def __init__(self, lu, mode, name, **kwargs):
6465 72737a7f Iustin Pop
    self.lu = lu
6466 d1c2dd75 Iustin Pop
    # init buffer variables
6467 d1c2dd75 Iustin Pop
    self.in_text = self.out_text = self.in_data = self.out_data = None
6468 d1c2dd75 Iustin Pop
    # init all input fields so that pylint is happy
6469 29859cb7 Iustin Pop
    self.mode = mode
6470 29859cb7 Iustin Pop
    self.name = name
6471 d1c2dd75 Iustin Pop
    self.mem_size = self.disks = self.disk_template = None
6472 d1c2dd75 Iustin Pop
    self.os = self.tags = self.nics = self.vcpus = None
6473 a0add446 Iustin Pop
    self.hypervisor = None
6474 29859cb7 Iustin Pop
    self.relocate_from = None
6475 27579978 Iustin Pop
    # computed fields
6476 27579978 Iustin Pop
    self.required_nodes = None
6477 d1c2dd75 Iustin Pop
    # init result fields
6478 d1c2dd75 Iustin Pop
    self.success = self.info = self.nodes = None
6479 29859cb7 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6480 29859cb7 Iustin Pop
      keyset = self._ALLO_KEYS
6481 29859cb7 Iustin Pop
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6482 29859cb7 Iustin Pop
      keyset = self._RELO_KEYS
6483 29859cb7 Iustin Pop
    else:
6484 29859cb7 Iustin Pop
      raise errors.ProgrammerError("Unknown mode '%s' passed to the"
6485 29859cb7 Iustin Pop
                                   " IAllocator" % self.mode)
6486 d1c2dd75 Iustin Pop
    for key in kwargs:
6487 29859cb7 Iustin Pop
      if key not in keyset:
6488 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Invalid input parameter '%s' to"
6489 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6490 d1c2dd75 Iustin Pop
      setattr(self, key, kwargs[key])
6491 29859cb7 Iustin Pop
    for key in keyset:
6492 d1c2dd75 Iustin Pop
      if key not in kwargs:
6493 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Missing input parameter '%s' to"
6494 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6495 d1c2dd75 Iustin Pop
    self._BuildInputData()
6496 d1c2dd75 Iustin Pop
6497 d1c2dd75 Iustin Pop
  def _ComputeClusterData(self):
6498 d1c2dd75 Iustin Pop
    """Compute the generic allocator input data.
6499 d1c2dd75 Iustin Pop

6500 d1c2dd75 Iustin Pop
    This is the data that is independent of the actual operation.
6501 d1c2dd75 Iustin Pop

6502 d1c2dd75 Iustin Pop
    """
6503 72737a7f Iustin Pop
    cfg = self.lu.cfg
6504 e69d05fd Iustin Pop
    cluster_info = cfg.GetClusterInfo()
6505 d1c2dd75 Iustin Pop
    # cluster data
6506 d1c2dd75 Iustin Pop
    data = {
6507 d1c2dd75 Iustin Pop
      "version": 1,
6508 72737a7f Iustin Pop
      "cluster_name": cfg.GetClusterName(),
6509 e69d05fd Iustin Pop
      "cluster_tags": list(cluster_info.GetTags()),
6510 1325da74 Iustin Pop
      "enabled_hypervisors": list(cluster_info.enabled_hypervisors),
6511 d1c2dd75 Iustin Pop
      # we don't have job IDs
6512 d61df03e Iustin Pop
      }
6513 b57e9819 Guido Trotter
    iinfo = cfg.GetAllInstancesInfo().values()
6514 b57e9819 Guido Trotter
    i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
6515 6286519f Iustin Pop
6516 d1c2dd75 Iustin Pop
    # node data
6517 d1c2dd75 Iustin Pop
    node_results = {}
6518 d1c2dd75 Iustin Pop
    node_list = cfg.GetNodeList()
6519 8cc7e742 Guido Trotter
6520 8cc7e742 Guido Trotter
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6521 a0add446 Iustin Pop
      hypervisor_name = self.hypervisor
6522 8cc7e742 Guido Trotter
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6523 a0add446 Iustin Pop
      hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
6524 8cc7e742 Guido Trotter
6525 72737a7f Iustin Pop
    node_data = self.lu.rpc.call_node_info(node_list, cfg.GetVGName(),
6526 a0add446 Iustin Pop
                                           hypervisor_name)
6527 18640d69 Guido Trotter
    node_iinfo = self.lu.rpc.call_all_instances_info(node_list,
6528 18640d69 Guido Trotter
                       cluster_info.enabled_hypervisors)
6529 1325da74 Iustin Pop
    for nname, nresult in node_data.items():
6530 1325da74 Iustin Pop
      # first fill in static (config-based) values
6531 d1c2dd75 Iustin Pop
      ninfo = cfg.GetNodeInfo(nname)
6532 d1c2dd75 Iustin Pop
      pnr = {
6533 d1c2dd75 Iustin Pop
        "tags": list(ninfo.GetTags()),
6534 d1c2dd75 Iustin Pop
        "primary_ip": ninfo.primary_ip,
6535 d1c2dd75 Iustin Pop
        "secondary_ip": ninfo.secondary_ip,
6536 fc0fe88c Iustin Pop
        "offline": ninfo.offline,
6537 0b2454b9 Iustin Pop
        "drained": ninfo.drained,
6538 1325da74 Iustin Pop
        "master_candidate": ninfo.master_candidate,
6539 d1c2dd75 Iustin Pop
        }
6540 1325da74 Iustin Pop
6541 1325da74 Iustin Pop
      if not ninfo.offline:
6542 1325da74 Iustin Pop
        nresult.Raise()
6543 1325da74 Iustin Pop
        if not isinstance(nresult.data, dict):
6544 1325da74 Iustin Pop
          raise errors.OpExecError("Can't get data for node %s" % nname)
6545 1325da74 Iustin Pop
        remote_info = nresult.data
6546 1325da74 Iustin Pop
        for attr in ['memory_total', 'memory_free', 'memory_dom0',
6547 1325da74 Iustin Pop
                     'vg_size', 'vg_free', 'cpu_total']:
6548 1325da74 Iustin Pop
          if attr not in remote_info:
6549 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' didn't return attribute"
6550 1325da74 Iustin Pop
                                     " '%s'" % (nname, attr))
6551 1325da74 Iustin Pop
          try:
6552 1325da74 Iustin Pop
            remote_info[attr] = int(remote_info[attr])
6553 1325da74 Iustin Pop
          except ValueError, err:
6554 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' returned invalid value"
6555 1325da74 Iustin Pop
                                     " for '%s': %s" % (nname, attr, err))
6556 1325da74 Iustin Pop
        # compute memory used by primary instances
6557 1325da74 Iustin Pop
        i_p_mem = i_p_up_mem = 0
6558 1325da74 Iustin Pop
        for iinfo, beinfo in i_list:
6559 1325da74 Iustin Pop
          if iinfo.primary_node == nname:
6560 1325da74 Iustin Pop
            i_p_mem += beinfo[constants.BE_MEMORY]
6561 1325da74 Iustin Pop
            if iinfo.name not in node_iinfo[nname].data:
6562 1325da74 Iustin Pop
              i_used_mem = 0
6563 1325da74 Iustin Pop
            else:
6564 1325da74 Iustin Pop
              i_used_mem = int(node_iinfo[nname].data[iinfo.name]['memory'])
6565 1325da74 Iustin Pop
            i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
6566 1325da74 Iustin Pop
            remote_info['memory_free'] -= max(0, i_mem_diff)
6567 1325da74 Iustin Pop
6568 1325da74 Iustin Pop
            if iinfo.admin_up:
6569 1325da74 Iustin Pop
              i_p_up_mem += beinfo[constants.BE_MEMORY]
6570 1325da74 Iustin Pop
6571 1325da74 Iustin Pop
        # compute memory used by instances
6572 1325da74 Iustin Pop
        pnr_dyn = {
6573 1325da74 Iustin Pop
          "total_memory": remote_info['memory_total'],
6574 1325da74 Iustin Pop
          "reserved_memory": remote_info['memory_dom0'],
6575 1325da74 Iustin Pop
          "free_memory": remote_info['memory_free'],
6576 1325da74 Iustin Pop
          "total_disk": remote_info['vg_size'],
6577 1325da74 Iustin Pop
          "free_disk": remote_info['vg_free'],
6578 1325da74 Iustin Pop
          "total_cpus": remote_info['cpu_total'],
6579 1325da74 Iustin Pop
          "i_pri_memory": i_p_mem,
6580 1325da74 Iustin Pop
          "i_pri_up_memory": i_p_up_mem,
6581 1325da74 Iustin Pop
          }
6582 1325da74 Iustin Pop
        pnr.update(pnr_dyn)
6583 1325da74 Iustin Pop
6584 d1c2dd75 Iustin Pop
      node_results[nname] = pnr
6585 d1c2dd75 Iustin Pop
    data["nodes"] = node_results
6586 d1c2dd75 Iustin Pop
6587 d1c2dd75 Iustin Pop
    # instance data
6588 d1c2dd75 Iustin Pop
    instance_data = {}
6589 338e51e8 Iustin Pop
    for iinfo, beinfo in i_list:
6590 d1c2dd75 Iustin Pop
      nic_data = [{"mac": n.mac, "ip": n.ip, "bridge": n.bridge}
6591 d1c2dd75 Iustin Pop
                  for n in iinfo.nics]
6592 d1c2dd75 Iustin Pop
      pir = {
6593 d1c2dd75 Iustin Pop
        "tags": list(iinfo.GetTags()),
6594 1325da74 Iustin Pop
        "admin_up": iinfo.admin_up,
6595 338e51e8 Iustin Pop
        "vcpus": beinfo[constants.BE_VCPUS],
6596 338e51e8 Iustin Pop
        "memory": beinfo[constants.BE_MEMORY],
6597 d1c2dd75 Iustin Pop
        "os": iinfo.os,
6598 1325da74 Iustin Pop
        "nodes": [iinfo.primary_node] + list(iinfo.secondary_nodes),
6599 d1c2dd75 Iustin Pop
        "nics": nic_data,
6600 1325da74 Iustin Pop
        "disks": [{"size": dsk.size, "mode": dsk.mode} for dsk in iinfo.disks],
6601 d1c2dd75 Iustin Pop
        "disk_template": iinfo.disk_template,
6602 e69d05fd Iustin Pop
        "hypervisor": iinfo.hypervisor,
6603 d1c2dd75 Iustin Pop
        }
6604 768f0a80 Iustin Pop
      instance_data[iinfo.name] = pir
6605 d61df03e Iustin Pop
6606 d1c2dd75 Iustin Pop
    data["instances"] = instance_data
6607 d61df03e Iustin Pop
6608 d1c2dd75 Iustin Pop
    self.in_data = data
6609 d61df03e Iustin Pop
6610 d1c2dd75 Iustin Pop
  def _AddNewInstance(self):
6611 d1c2dd75 Iustin Pop
    """Add new instance data to allocator structure.
6612 d61df03e Iustin Pop

6613 d1c2dd75 Iustin Pop
    This in combination with _AllocatorGetClusterData will create the
6614 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6615 d61df03e Iustin Pop

6616 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6617 d1c2dd75 Iustin Pop
    done.
6618 d61df03e Iustin Pop

6619 d1c2dd75 Iustin Pop
    """
6620 d1c2dd75 Iustin Pop
    data = self.in_data
6621 d1c2dd75 Iustin Pop
6622 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(self.disk_template, self.disks)
6623 d1c2dd75 Iustin Pop
6624 27579978 Iustin Pop
    if self.disk_template in constants.DTS_NET_MIRROR:
6625 27579978 Iustin Pop
      self.required_nodes = 2
6626 27579978 Iustin Pop
    else:
6627 27579978 Iustin Pop
      self.required_nodes = 1
6628 d1c2dd75 Iustin Pop
    request = {
6629 d1c2dd75 Iustin Pop
      "type": "allocate",
6630 d1c2dd75 Iustin Pop
      "name": self.name,
6631 d1c2dd75 Iustin Pop
      "disk_template": self.disk_template,
6632 d1c2dd75 Iustin Pop
      "tags": self.tags,
6633 d1c2dd75 Iustin Pop
      "os": self.os,
6634 d1c2dd75 Iustin Pop
      "vcpus": self.vcpus,
6635 d1c2dd75 Iustin Pop
      "memory": self.mem_size,
6636 d1c2dd75 Iustin Pop
      "disks": self.disks,
6637 d1c2dd75 Iustin Pop
      "disk_space_total": disk_space,
6638 d1c2dd75 Iustin Pop
      "nics": self.nics,
6639 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
6640 d1c2dd75 Iustin Pop
      }
6641 d1c2dd75 Iustin Pop
    data["request"] = request
6642 298fe380 Iustin Pop
6643 d1c2dd75 Iustin Pop
  def _AddRelocateInstance(self):
6644 d1c2dd75 Iustin Pop
    """Add relocate instance data to allocator structure.
6645 298fe380 Iustin Pop

6646 d1c2dd75 Iustin Pop
    This in combination with _IAllocatorGetClusterData will create the
6647 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6648 d61df03e Iustin Pop

6649 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6650 d1c2dd75 Iustin Pop
    done.
6651 d61df03e Iustin Pop

6652 d1c2dd75 Iustin Pop
    """
6653 72737a7f Iustin Pop
    instance = self.lu.cfg.GetInstanceInfo(self.name)
6654 27579978 Iustin Pop
    if instance is None:
6655 27579978 Iustin Pop
      raise errors.ProgrammerError("Unknown instance '%s' passed to"
6656 27579978 Iustin Pop
                                   " IAllocator" % self.name)
6657 27579978 Iustin Pop
6658 27579978 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
6659 27579978 Iustin Pop
      raise errors.OpPrereqError("Can't relocate non-mirrored instances")
6660 27579978 Iustin Pop
6661 2a139bb0 Iustin Pop
    if len(instance.secondary_nodes) != 1:
6662 2a139bb0 Iustin Pop
      raise errors.OpPrereqError("Instance has not exactly one secondary node")
6663 2a139bb0 Iustin Pop
6664 27579978 Iustin Pop
    self.required_nodes = 1
6665 dafc7302 Guido Trotter
    disk_sizes = [{'size': disk.size} for disk in instance.disks]
6666 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(instance.disk_template, disk_sizes)
6667 27579978 Iustin Pop
6668 d1c2dd75 Iustin Pop
    request = {
6669 2a139bb0 Iustin Pop
      "type": "relocate",
6670 d1c2dd75 Iustin Pop
      "name": self.name,
6671 27579978 Iustin Pop
      "disk_space_total": disk_space,
6672 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
6673 29859cb7 Iustin Pop
      "relocate_from": self.relocate_from,
6674 d1c2dd75 Iustin Pop
      }
6675 27579978 Iustin Pop
    self.in_data["request"] = request
6676 d61df03e Iustin Pop
6677 d1c2dd75 Iustin Pop
  def _BuildInputData(self):
6678 d1c2dd75 Iustin Pop
    """Build input data structures.
6679 d61df03e Iustin Pop

6680 d1c2dd75 Iustin Pop
    """
6681 d1c2dd75 Iustin Pop
    self._ComputeClusterData()
6682 d61df03e Iustin Pop
6683 d1c2dd75 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6684 d1c2dd75 Iustin Pop
      self._AddNewInstance()
6685 d1c2dd75 Iustin Pop
    else:
6686 d1c2dd75 Iustin Pop
      self._AddRelocateInstance()
6687 d61df03e Iustin Pop
6688 d1c2dd75 Iustin Pop
    self.in_text = serializer.Dump(self.in_data)
6689 d61df03e Iustin Pop
6690 72737a7f Iustin Pop
  def Run(self, name, validate=True, call_fn=None):
6691 d1c2dd75 Iustin Pop
    """Run an instance allocator and return the results.
6692 298fe380 Iustin Pop

6693 d1c2dd75 Iustin Pop
    """
6694 72737a7f Iustin Pop
    if call_fn is None:
6695 72737a7f Iustin Pop
      call_fn = self.lu.rpc.call_iallocator_runner
6696 d1c2dd75 Iustin Pop
    data = self.in_text
6697 298fe380 Iustin Pop
6698 72737a7f Iustin Pop
    result = call_fn(self.lu.cfg.GetMasterNode(), name, self.in_text)
6699 781de953 Iustin Pop
    result.Raise()
6700 298fe380 Iustin Pop
6701 781de953 Iustin Pop
    if not isinstance(result.data, (list, tuple)) or len(result.data) != 4:
6702 8d528b7c Iustin Pop
      raise errors.OpExecError("Invalid result from master iallocator runner")
6703 8d528b7c Iustin Pop
6704 781de953 Iustin Pop
    rcode, stdout, stderr, fail = result.data
6705 8d528b7c Iustin Pop
6706 8d528b7c Iustin Pop
    if rcode == constants.IARUN_NOTFOUND:
6707 8d528b7c Iustin Pop
      raise errors.OpExecError("Can't find allocator '%s'" % name)
6708 8d528b7c Iustin Pop
    elif rcode == constants.IARUN_FAILURE:
6709 38206f3c Iustin Pop
      raise errors.OpExecError("Instance allocator call failed: %s,"
6710 38206f3c Iustin Pop
                               " output: %s" % (fail, stdout+stderr))
6711 8d528b7c Iustin Pop
    self.out_text = stdout
6712 d1c2dd75 Iustin Pop
    if validate:
6713 d1c2dd75 Iustin Pop
      self._ValidateResult()
6714 298fe380 Iustin Pop
6715 d1c2dd75 Iustin Pop
  def _ValidateResult(self):
6716 d1c2dd75 Iustin Pop
    """Process the allocator results.
6717 538475ca Iustin Pop

6718 d1c2dd75 Iustin Pop
    This will process and if successful save the result in
6719 d1c2dd75 Iustin Pop
    self.out_data and the other parameters.
6720 538475ca Iustin Pop

6721 d1c2dd75 Iustin Pop
    """
6722 d1c2dd75 Iustin Pop
    try:
6723 d1c2dd75 Iustin Pop
      rdict = serializer.Load(self.out_text)
6724 d1c2dd75 Iustin Pop
    except Exception, err:
6725 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: %s" % str(err))
6726 d1c2dd75 Iustin Pop
6727 d1c2dd75 Iustin Pop
    if not isinstance(rdict, dict):
6728 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: not a dict")
6729 538475ca Iustin Pop
6730 d1c2dd75 Iustin Pop
    for key in "success", "info", "nodes":
6731 d1c2dd75 Iustin Pop
      if key not in rdict:
6732 d1c2dd75 Iustin Pop
        raise errors.OpExecError("Can't parse iallocator results:"
6733 d1c2dd75 Iustin Pop
                                 " missing key '%s'" % key)
6734 d1c2dd75 Iustin Pop
      setattr(self, key, rdict[key])
6735 538475ca Iustin Pop
6736 d1c2dd75 Iustin Pop
    if not isinstance(rdict["nodes"], list):
6737 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: 'nodes' key"
6738 d1c2dd75 Iustin Pop
                               " is not a list")
6739 d1c2dd75 Iustin Pop
    self.out_data = rdict
6740 538475ca Iustin Pop
6741 538475ca Iustin Pop
6742 d61df03e Iustin Pop
class LUTestAllocator(NoHooksLU):
6743 d61df03e Iustin Pop
  """Run allocator tests.
6744 d61df03e Iustin Pop

6745 d61df03e Iustin Pop
  This LU runs the allocator tests
6746 d61df03e Iustin Pop

6747 d61df03e Iustin Pop
  """
6748 d61df03e Iustin Pop
  _OP_REQP = ["direction", "mode", "name"]
6749 d61df03e Iustin Pop
6750 d61df03e Iustin Pop
  def CheckPrereq(self):
6751 d61df03e Iustin Pop
    """Check prerequisites.
6752 d61df03e Iustin Pop

6753 d61df03e Iustin Pop
    This checks the opcode parameters depending on the director and mode test.
6754 d61df03e Iustin Pop

6755 d61df03e Iustin Pop
    """
6756 298fe380 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
6757 d61df03e Iustin Pop
      for attr in ["name", "mem_size", "disks", "disk_template",
6758 d61df03e Iustin Pop
                   "os", "tags", "nics", "vcpus"]:
6759 d61df03e Iustin Pop
        if not hasattr(self.op, attr):
6760 d61df03e Iustin Pop
          raise errors.OpPrereqError("Missing attribute '%s' on opcode input" %
6761 d61df03e Iustin Pop
                                     attr)
6762 d61df03e Iustin Pop
      iname = self.cfg.ExpandInstanceName(self.op.name)
6763 d61df03e Iustin Pop
      if iname is not None:
6764 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' already in the cluster" %
6765 d61df03e Iustin Pop
                                   iname)
6766 d61df03e Iustin Pop
      if not isinstance(self.op.nics, list):
6767 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'nics'")
6768 d61df03e Iustin Pop
      for row in self.op.nics:
6769 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
6770 d61df03e Iustin Pop
            "mac" not in row or
6771 d61df03e Iustin Pop
            "ip" not in row or
6772 d61df03e Iustin Pop
            "bridge" not in row):
6773 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
6774 d61df03e Iustin Pop
                                     " 'nics' parameter")
6775 d61df03e Iustin Pop
      if not isinstance(self.op.disks, list):
6776 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'disks'")
6777 d61df03e Iustin Pop
      for row in self.op.disks:
6778 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
6779 d61df03e Iustin Pop
            "size" not in row or
6780 d61df03e Iustin Pop
            not isinstance(row["size"], int) or
6781 d61df03e Iustin Pop
            "mode" not in row or
6782 d61df03e Iustin Pop
            row["mode"] not in ['r', 'w']):
6783 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
6784 d61df03e Iustin Pop
                                     " 'disks' parameter")
6785 8901997e Iustin Pop
      if not hasattr(self.op, "hypervisor") or self.op.hypervisor is None:
6786 8cc7e742 Guido Trotter
        self.op.hypervisor = self.cfg.GetHypervisorType()
6787 298fe380 Iustin Pop
    elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
6788 d61df03e Iustin Pop
      if not hasattr(self.op, "name"):
6789 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing attribute 'name' on opcode input")
6790 d61df03e Iustin Pop
      fname = self.cfg.ExpandInstanceName(self.op.name)
6791 d61df03e Iustin Pop
      if fname is None:
6792 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' not found for relocation" %
6793 d61df03e Iustin Pop
                                   self.op.name)
6794 d61df03e Iustin Pop
      self.op.name = fname
6795 29859cb7 Iustin Pop
      self.relocate_from = self.cfg.GetInstanceInfo(fname).secondary_nodes
6796 d61df03e Iustin Pop
    else:
6797 d61df03e Iustin Pop
      raise errors.OpPrereqError("Invalid test allocator mode '%s'" %
6798 d61df03e Iustin Pop
                                 self.op.mode)
6799 d61df03e Iustin Pop
6800 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_OUT:
6801 298fe380 Iustin Pop
      if not hasattr(self.op, "allocator") or self.op.allocator is None:
6802 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing allocator name")
6803 298fe380 Iustin Pop
    elif self.op.direction != constants.IALLOCATOR_DIR_IN:
6804 d61df03e Iustin Pop
      raise errors.OpPrereqError("Wrong allocator test '%s'" %
6805 d61df03e Iustin Pop
                                 self.op.direction)
6806 d61df03e Iustin Pop
6807 d61df03e Iustin Pop
  def Exec(self, feedback_fn):
6808 d61df03e Iustin Pop
    """Run the allocator test.
6809 d61df03e Iustin Pop

6810 d61df03e Iustin Pop
    """
6811 29859cb7 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
6812 72737a7f Iustin Pop
      ial = IAllocator(self,
6813 29859cb7 Iustin Pop
                       mode=self.op.mode,
6814 29859cb7 Iustin Pop
                       name=self.op.name,
6815 29859cb7 Iustin Pop
                       mem_size=self.op.mem_size,
6816 29859cb7 Iustin Pop
                       disks=self.op.disks,
6817 29859cb7 Iustin Pop
                       disk_template=self.op.disk_template,
6818 29859cb7 Iustin Pop
                       os=self.op.os,
6819 29859cb7 Iustin Pop
                       tags=self.op.tags,
6820 29859cb7 Iustin Pop
                       nics=self.op.nics,
6821 29859cb7 Iustin Pop
                       vcpus=self.op.vcpus,
6822 8cc7e742 Guido Trotter
                       hypervisor=self.op.hypervisor,
6823 29859cb7 Iustin Pop
                       )
6824 29859cb7 Iustin Pop
    else:
6825 72737a7f Iustin Pop
      ial = IAllocator(self,
6826 29859cb7 Iustin Pop
                       mode=self.op.mode,
6827 29859cb7 Iustin Pop
                       name=self.op.name,
6828 29859cb7 Iustin Pop
                       relocate_from=list(self.relocate_from),
6829 29859cb7 Iustin Pop
                       )
6830 d61df03e Iustin Pop
6831 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_IN:
6832 d1c2dd75 Iustin Pop
      result = ial.in_text
6833 298fe380 Iustin Pop
    else:
6834 d1c2dd75 Iustin Pop
      ial.Run(self.op.allocator, validate=False)
6835 d1c2dd75 Iustin Pop
      result = ial.out_text
6836 298fe380 Iustin Pop
    return result