Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 94a02bb5

History | View | Annotate | Download (217.8 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 a7ba5e53 Iustin Pop
    wanted = lu.cfg.GetInstanceList()
396 a7ba5e53 Iustin Pop
  return utils.NiceSort(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 a5961235 Iustin Pop
  @raise errors.OpPrereqError: if the nodes 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 ecb215b5 Michael Hanselmann
def _BuildInstanceHookEnv(name, primary_node, secondary_nodes, os_type, status,
445 396e1b78 Michael Hanselmann
                          memory, vcpus, nics):
446 e4376078 Iustin Pop
  """Builds instance related env variables for hooks
447 e4376078 Iustin Pop

448 e4376078 Iustin Pop
  This builds the hook environment from individual variables.
449 e4376078 Iustin Pop

450 e4376078 Iustin Pop
  @type name: string
451 e4376078 Iustin Pop
  @param name: the name of the instance
452 e4376078 Iustin Pop
  @type primary_node: string
453 e4376078 Iustin Pop
  @param primary_node: the name of the instance's primary node
454 e4376078 Iustin Pop
  @type secondary_nodes: list
455 e4376078 Iustin Pop
  @param secondary_nodes: list of secondary nodes as strings
456 e4376078 Iustin Pop
  @type os_type: string
457 e4376078 Iustin Pop
  @param os_type: the name of the instance's OS
458 e4376078 Iustin Pop
  @type status: string
459 e4376078 Iustin Pop
  @param status: the desired status of the instances
460 e4376078 Iustin Pop
  @type memory: string
461 e4376078 Iustin Pop
  @param memory: the memory size of the instance
462 e4376078 Iustin Pop
  @type vcpus: string
463 e4376078 Iustin Pop
  @param vcpus: the count of VCPUs the instance has
464 e4376078 Iustin Pop
  @type nics: list
465 e4376078 Iustin Pop
  @param nics: list of tuples (ip, bridge, mac) representing
466 e4376078 Iustin Pop
      the NICs the instance  has
467 e4376078 Iustin Pop
  @rtype: dict
468 e4376078 Iustin Pop
  @return: the hook environment for this instance
469 ecb215b5 Michael Hanselmann

470 396e1b78 Michael Hanselmann
  """
471 396e1b78 Michael Hanselmann
  env = {
472 0e137c28 Iustin Pop
    "OP_TARGET": name,
473 396e1b78 Michael Hanselmann
    "INSTANCE_NAME": name,
474 396e1b78 Michael Hanselmann
    "INSTANCE_PRIMARY": primary_node,
475 396e1b78 Michael Hanselmann
    "INSTANCE_SECONDARIES": " ".join(secondary_nodes),
476 ecb215b5 Michael Hanselmann
    "INSTANCE_OS_TYPE": os_type,
477 396e1b78 Michael Hanselmann
    "INSTANCE_STATUS": status,
478 396e1b78 Michael Hanselmann
    "INSTANCE_MEMORY": memory,
479 396e1b78 Michael Hanselmann
    "INSTANCE_VCPUS": vcpus,
480 396e1b78 Michael Hanselmann
  }
481 396e1b78 Michael Hanselmann
482 396e1b78 Michael Hanselmann
  if nics:
483 396e1b78 Michael Hanselmann
    nic_count = len(nics)
484 53e4e875 Guido Trotter
    for idx, (ip, bridge, mac) in enumerate(nics):
485 396e1b78 Michael Hanselmann
      if ip is None:
486 396e1b78 Michael Hanselmann
        ip = ""
487 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_IP" % idx] = ip
488 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_BRIDGE" % idx] = bridge
489 53e4e875 Guido Trotter
      env["INSTANCE_NIC%d_HWADDR" % idx] = mac
490 396e1b78 Michael Hanselmann
  else:
491 396e1b78 Michael Hanselmann
    nic_count = 0
492 396e1b78 Michael Hanselmann
493 396e1b78 Michael Hanselmann
  env["INSTANCE_NIC_COUNT"] = nic_count
494 396e1b78 Michael Hanselmann
495 396e1b78 Michael Hanselmann
  return env
496 396e1b78 Michael Hanselmann
497 396e1b78 Michael Hanselmann
498 338e51e8 Iustin Pop
def _BuildInstanceHookEnvByObject(lu, instance, override=None):
499 ecb215b5 Michael Hanselmann
  """Builds instance related env variables for hooks from an object.
500 ecb215b5 Michael Hanselmann

501 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
502 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
503 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
504 e4376078 Iustin Pop
  @param instance: the instance for which we should build the
505 e4376078 Iustin Pop
      environment
506 e4376078 Iustin Pop
  @type override: dict
507 e4376078 Iustin Pop
  @param override: dictionary with key/values that will override
508 e4376078 Iustin Pop
      our values
509 e4376078 Iustin Pop
  @rtype: dict
510 e4376078 Iustin Pop
  @return: the hook environment dictionary
511 e4376078 Iustin Pop

512 ecb215b5 Michael Hanselmann
  """
513 338e51e8 Iustin Pop
  bep = lu.cfg.GetClusterInfo().FillBE(instance)
514 396e1b78 Michael Hanselmann
  args = {
515 396e1b78 Michael Hanselmann
    'name': instance.name,
516 396e1b78 Michael Hanselmann
    'primary_node': instance.primary_node,
517 396e1b78 Michael Hanselmann
    'secondary_nodes': instance.secondary_nodes,
518 ecb215b5 Michael Hanselmann
    'os_type': instance.os,
519 396e1b78 Michael Hanselmann
    'status': instance.os,
520 338e51e8 Iustin Pop
    'memory': bep[constants.BE_MEMORY],
521 338e51e8 Iustin Pop
    'vcpus': bep[constants.BE_VCPUS],
522 53e4e875 Guido Trotter
    'nics': [(nic.ip, nic.bridge, nic.mac) for nic in instance.nics],
523 396e1b78 Michael Hanselmann
  }
524 396e1b78 Michael Hanselmann
  if override:
525 396e1b78 Michael Hanselmann
    args.update(override)
526 396e1b78 Michael Hanselmann
  return _BuildInstanceHookEnv(**args)
527 396e1b78 Michael Hanselmann
528 396e1b78 Michael Hanselmann
529 ec0292f1 Iustin Pop
def _AdjustCandidatePool(lu):
530 ec0292f1 Iustin Pop
  """Adjust the candidate pool after node operations.
531 ec0292f1 Iustin Pop

532 ec0292f1 Iustin Pop
  """
533 ec0292f1 Iustin Pop
  mod_list = lu.cfg.MaintainCandidatePool()
534 ec0292f1 Iustin Pop
  if mod_list:
535 ec0292f1 Iustin Pop
    lu.LogInfo("Promoted nodes to master candidate role: %s",
536 ee513a66 Iustin Pop
               ", ".join(node.name for node in mod_list))
537 ec0292f1 Iustin Pop
    for name in mod_list:
538 ec0292f1 Iustin Pop
      lu.context.ReaddNode(name)
539 ec0292f1 Iustin Pop
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
540 ec0292f1 Iustin Pop
  if mc_now > mc_max:
541 ec0292f1 Iustin Pop
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
542 ec0292f1 Iustin Pop
               (mc_now, mc_max))
543 ec0292f1 Iustin Pop
544 ec0292f1 Iustin Pop
545 b9bddb6b Iustin Pop
def _CheckInstanceBridgesExist(lu, instance):
546 bf6929a2 Alexander Schreiber
  """Check that the brigdes needed by an instance exist.
547 bf6929a2 Alexander Schreiber

548 bf6929a2 Alexander Schreiber
  """
549 bf6929a2 Alexander Schreiber
  # check bridges existance
550 bf6929a2 Alexander Schreiber
  brlist = [nic.bridge for nic in instance.nics]
551 781de953 Iustin Pop
  result = lu.rpc.call_bridges_exist(instance.primary_node, brlist)
552 781de953 Iustin Pop
  result.Raise()
553 781de953 Iustin Pop
  if not result.data:
554 781de953 Iustin Pop
    raise errors.OpPrereqError("One or more target bridges %s does not"
555 bf6929a2 Alexander Schreiber
                               " exist on destination node '%s'" %
556 bf6929a2 Alexander Schreiber
                               (brlist, instance.primary_node))
557 bf6929a2 Alexander Schreiber
558 bf6929a2 Alexander Schreiber
559 a8083063 Iustin Pop
class LUDestroyCluster(NoHooksLU):
560 a8083063 Iustin Pop
  """Logical unit for destroying the cluster.
561 a8083063 Iustin Pop

562 a8083063 Iustin Pop
  """
563 a8083063 Iustin Pop
  _OP_REQP = []
564 a8083063 Iustin Pop
565 a8083063 Iustin Pop
  def CheckPrereq(self):
566 a8083063 Iustin Pop
    """Check prerequisites.
567 a8083063 Iustin Pop

568 a8083063 Iustin Pop
    This checks whether the cluster is empty.
569 a8083063 Iustin Pop

570 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
571 a8083063 Iustin Pop

572 a8083063 Iustin Pop
    """
573 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
574 a8083063 Iustin Pop
575 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
576 db915bd1 Michael Hanselmann
    if len(nodelist) != 1 or nodelist[0] != master:
577 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d node(s) in"
578 3ecf6786 Iustin Pop
                                 " this cluster." % (len(nodelist) - 1))
579 db915bd1 Michael Hanselmann
    instancelist = self.cfg.GetInstanceList()
580 db915bd1 Michael Hanselmann
    if instancelist:
581 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d instance(s) in"
582 3ecf6786 Iustin Pop
                                 " this cluster." % len(instancelist))
583 a8083063 Iustin Pop
584 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
585 a8083063 Iustin Pop
    """Destroys the cluster.
586 a8083063 Iustin Pop

587 a8083063 Iustin Pop
    """
588 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
589 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
590 781de953 Iustin Pop
    result.Raise()
591 781de953 Iustin Pop
    if not result.data:
592 c9064964 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
593 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
594 70d9e3d8 Iustin Pop
    utils.CreateBackup(priv_key)
595 70d9e3d8 Iustin Pop
    utils.CreateBackup(pub_key)
596 140aa4a8 Iustin Pop
    return master
597 a8083063 Iustin Pop
598 a8083063 Iustin Pop
599 d8fff41c Guido Trotter
class LUVerifyCluster(LogicalUnit):
600 a8083063 Iustin Pop
  """Verifies the cluster status.
601 a8083063 Iustin Pop

602 a8083063 Iustin Pop
  """
603 d8fff41c Guido Trotter
  HPATH = "cluster-verify"
604 d8fff41c Guido Trotter
  HTYPE = constants.HTYPE_CLUSTER
605 e54c4c5e Guido Trotter
  _OP_REQP = ["skip_checks"]
606 d4b9d97f Guido Trotter
  REQ_BGL = False
607 d4b9d97f Guido Trotter
608 d4b9d97f Guido Trotter
  def ExpandNames(self):
609 d4b9d97f Guido Trotter
    self.needed_locks = {
610 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
611 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
612 d4b9d97f Guido Trotter
    }
613 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
614 a8083063 Iustin Pop
615 25361b9a Iustin Pop
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
616 25361b9a Iustin Pop
                  node_result, feedback_fn, master_files):
617 a8083063 Iustin Pop
    """Run multiple tests against a node.
618 a8083063 Iustin Pop

619 112f18a5 Iustin Pop
    Test list:
620 e4376078 Iustin Pop

621 a8083063 Iustin Pop
      - compares ganeti version
622 a8083063 Iustin Pop
      - checks vg existance and size > 20G
623 a8083063 Iustin Pop
      - checks config file checksum
624 a8083063 Iustin Pop
      - checks ssh to other nodes
625 a8083063 Iustin Pop

626 112f18a5 Iustin Pop
    @type nodeinfo: L{objects.Node}
627 112f18a5 Iustin Pop
    @param nodeinfo: the node to check
628 e4376078 Iustin Pop
    @param file_list: required list of files
629 e4376078 Iustin Pop
    @param local_cksum: dictionary of local files and their checksums
630 e4376078 Iustin Pop
    @param node_result: the results from the node
631 e4376078 Iustin Pop
    @param feedback_fn: function used to accumulate results
632 112f18a5 Iustin Pop
    @param master_files: list of files that only masters should have
633 098c0958 Michael Hanselmann

634 a8083063 Iustin Pop
    """
635 112f18a5 Iustin Pop
    node = nodeinfo.name
636 25361b9a Iustin Pop
637 25361b9a Iustin Pop
    # main result, node_result should be a non-empty dict
638 25361b9a Iustin Pop
    if not node_result or not isinstance(node_result, dict):
639 25361b9a Iustin Pop
      feedback_fn("  - ERROR: unable to verify node %s." % (node,))
640 25361b9a Iustin Pop
      return True
641 25361b9a Iustin Pop
642 a8083063 Iustin Pop
    # compares ganeti version
643 a8083063 Iustin Pop
    local_version = constants.PROTOCOL_VERSION
644 25361b9a Iustin Pop
    remote_version = node_result.get('version', None)
645 a8083063 Iustin Pop
    if not remote_version:
646 c840ae6f Guido Trotter
      feedback_fn("  - ERROR: connection to %s failed" % (node))
647 a8083063 Iustin Pop
      return True
648 a8083063 Iustin Pop
649 a8083063 Iustin Pop
    if local_version != remote_version:
650 a8083063 Iustin Pop
      feedback_fn("  - ERROR: sw version mismatch: master %s, node(%s) %s" %
651 a8083063 Iustin Pop
                      (local_version, node, remote_version))
652 a8083063 Iustin Pop
      return True
653 a8083063 Iustin Pop
654 a8083063 Iustin Pop
    # checks vg existance and size > 20G
655 a8083063 Iustin Pop
656 a8083063 Iustin Pop
    bad = False
657 25361b9a Iustin Pop
    vglist = node_result.get(constants.NV_VGLIST, None)
658 a8083063 Iustin Pop
    if not vglist:
659 a8083063 Iustin Pop
      feedback_fn("  - ERROR: unable to check volume groups on node %s." %
660 a8083063 Iustin Pop
                      (node,))
661 a8083063 Iustin Pop
      bad = True
662 a8083063 Iustin Pop
    else:
663 8d1a2a64 Michael Hanselmann
      vgstatus = utils.CheckVolumeGroupSize(vglist, self.cfg.GetVGName(),
664 8d1a2a64 Michael Hanselmann
                                            constants.MIN_VG_SIZE)
665 a8083063 Iustin Pop
      if vgstatus:
666 a8083063 Iustin Pop
        feedback_fn("  - ERROR: %s on node %s" % (vgstatus, node))
667 a8083063 Iustin Pop
        bad = True
668 a8083063 Iustin Pop
669 a8083063 Iustin Pop
    # checks config file checksum
670 a8083063 Iustin Pop
671 25361b9a Iustin Pop
    remote_cksum = node_result.get(constants.NV_FILELIST, None)
672 25361b9a Iustin Pop
    if not isinstance(remote_cksum, dict):
673 a8083063 Iustin Pop
      bad = True
674 a8083063 Iustin Pop
      feedback_fn("  - ERROR: node hasn't returned file checksum data")
675 a8083063 Iustin Pop
    else:
676 a8083063 Iustin Pop
      for file_name in file_list:
677 112f18a5 Iustin Pop
        node_is_mc = nodeinfo.master_candidate
678 112f18a5 Iustin Pop
        must_have_file = file_name not in master_files
679 a8083063 Iustin Pop
        if file_name not in remote_cksum:
680 112f18a5 Iustin Pop
          if node_is_mc or must_have_file:
681 112f18a5 Iustin Pop
            bad = True
682 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: file '%s' missing" % file_name)
683 a8083063 Iustin Pop
        elif remote_cksum[file_name] != local_cksum[file_name]:
684 112f18a5 Iustin Pop
          if node_is_mc or must_have_file:
685 112f18a5 Iustin Pop
            bad = True
686 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: file '%s' has wrong checksum" % file_name)
687 112f18a5 Iustin Pop
          else:
688 112f18a5 Iustin Pop
            # not candidate and this is not a must-have file
689 112f18a5 Iustin Pop
            bad = True
690 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: non master-candidate has old/wrong file"
691 112f18a5 Iustin Pop
                        " '%s'" % file_name)
692 112f18a5 Iustin Pop
        else:
693 112f18a5 Iustin Pop
          # all good, except non-master/non-must have combination
694 112f18a5 Iustin Pop
          if not node_is_mc and not must_have_file:
695 112f18a5 Iustin Pop
            feedback_fn("  - ERROR: file '%s' should not exist on non master"
696 112f18a5 Iustin Pop
                        " candidates" % file_name)
697 a8083063 Iustin Pop
698 25361b9a Iustin Pop
    # checks ssh to any
699 25361b9a Iustin Pop
700 25361b9a Iustin Pop
    if constants.NV_NODELIST not in node_result:
701 a8083063 Iustin Pop
      bad = True
702 9d4bfc96 Iustin Pop
      feedback_fn("  - ERROR: node hasn't returned node ssh connectivity data")
703 a8083063 Iustin Pop
    else:
704 25361b9a Iustin Pop
      if node_result[constants.NV_NODELIST]:
705 a8083063 Iustin Pop
        bad = True
706 25361b9a Iustin Pop
        for node in node_result[constants.NV_NODELIST]:
707 9d4bfc96 Iustin Pop
          feedback_fn("  - ERROR: ssh communication with node '%s': %s" %
708 25361b9a Iustin Pop
                          (node, node_result[constants.NV_NODELIST][node]))
709 25361b9a Iustin Pop
710 25361b9a Iustin Pop
    if constants.NV_NODENETTEST not in node_result:
711 9d4bfc96 Iustin Pop
      bad = True
712 9d4bfc96 Iustin Pop
      feedback_fn("  - ERROR: node hasn't returned node tcp connectivity data")
713 9d4bfc96 Iustin Pop
    else:
714 25361b9a Iustin Pop
      if node_result[constants.NV_NODENETTEST]:
715 9d4bfc96 Iustin Pop
        bad = True
716 25361b9a Iustin Pop
        nlist = utils.NiceSort(node_result[constants.NV_NODENETTEST].keys())
717 9d4bfc96 Iustin Pop
        for node in nlist:
718 9d4bfc96 Iustin Pop
          feedback_fn("  - ERROR: tcp communication with node '%s': %s" %
719 25361b9a Iustin Pop
                          (node, node_result[constants.NV_NODENETTEST][node]))
720 9d4bfc96 Iustin Pop
721 25361b9a Iustin Pop
    hyp_result = node_result.get(constants.NV_HYPERVISOR, None)
722 e69d05fd Iustin Pop
    if isinstance(hyp_result, dict):
723 e69d05fd Iustin Pop
      for hv_name, hv_result in hyp_result.iteritems():
724 e69d05fd Iustin Pop
        if hv_result is not None:
725 e69d05fd Iustin Pop
          feedback_fn("  - ERROR: hypervisor %s verify failure: '%s'" %
726 e69d05fd Iustin Pop
                      (hv_name, hv_result))
727 a8083063 Iustin Pop
    return bad
728 a8083063 Iustin Pop
729 c5705f58 Guido Trotter
  def _VerifyInstance(self, instance, instanceconfig, node_vol_is,
730 0a66c968 Iustin Pop
                      node_instance, feedback_fn, n_offline):
731 a8083063 Iustin Pop
    """Verify an instance.
732 a8083063 Iustin Pop

733 a8083063 Iustin Pop
    This function checks to see if the required block devices are
734 a8083063 Iustin Pop
    available on the instance's node.
735 a8083063 Iustin Pop

736 a8083063 Iustin Pop
    """
737 a8083063 Iustin Pop
    bad = False
738 a8083063 Iustin Pop
739 a8083063 Iustin Pop
    node_current = instanceconfig.primary_node
740 a8083063 Iustin Pop
741 a8083063 Iustin Pop
    node_vol_should = {}
742 a8083063 Iustin Pop
    instanceconfig.MapLVsByNode(node_vol_should)
743 a8083063 Iustin Pop
744 a8083063 Iustin Pop
    for node in node_vol_should:
745 0a66c968 Iustin Pop
      if node in n_offline:
746 0a66c968 Iustin Pop
        # ignore missing volumes on offline nodes
747 0a66c968 Iustin Pop
        continue
748 a8083063 Iustin Pop
      for volume in node_vol_should[node]:
749 a8083063 Iustin Pop
        if node not in node_vol_is or volume not in node_vol_is[node]:
750 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s missing on node %s" %
751 a8083063 Iustin Pop
                          (volume, node))
752 a8083063 Iustin Pop
          bad = True
753 a8083063 Iustin Pop
754 a8083063 Iustin Pop
    if not instanceconfig.status == 'down':
755 0a66c968 Iustin Pop
      if ((node_current not in node_instance or
756 0a66c968 Iustin Pop
          not instance in node_instance[node_current]) and
757 0a66c968 Iustin Pop
          node_current not in n_offline):
758 a8083063 Iustin Pop
        feedback_fn("  - ERROR: instance %s not running on node %s" %
759 a8083063 Iustin Pop
                        (instance, node_current))
760 a8083063 Iustin Pop
        bad = True
761 a8083063 Iustin Pop
762 a8083063 Iustin Pop
    for node in node_instance:
763 a8083063 Iustin Pop
      if (not node == node_current):
764 a8083063 Iustin Pop
        if instance in node_instance[node]:
765 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s should not run on node %s" %
766 a8083063 Iustin Pop
                          (instance, node))
767 a8083063 Iustin Pop
          bad = True
768 a8083063 Iustin Pop
769 6a438c98 Michael Hanselmann
    return bad
770 a8083063 Iustin Pop
771 a8083063 Iustin Pop
  def _VerifyOrphanVolumes(self, node_vol_should, node_vol_is, feedback_fn):
772 a8083063 Iustin Pop
    """Verify if there are any unknown volumes in the cluster.
773 a8083063 Iustin Pop

774 a8083063 Iustin Pop
    The .os, .swap and backup volumes are ignored. All other volumes are
775 a8083063 Iustin Pop
    reported as unknown.
776 a8083063 Iustin Pop

777 a8083063 Iustin Pop
    """
778 a8083063 Iustin Pop
    bad = False
779 a8083063 Iustin Pop
780 a8083063 Iustin Pop
    for node in node_vol_is:
781 a8083063 Iustin Pop
      for volume in node_vol_is[node]:
782 a8083063 Iustin Pop
        if node not in node_vol_should or volume not in node_vol_should[node]:
783 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
784 a8083063 Iustin Pop
                      (volume, node))
785 a8083063 Iustin Pop
          bad = True
786 a8083063 Iustin Pop
    return bad
787 a8083063 Iustin Pop
788 a8083063 Iustin Pop
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
789 a8083063 Iustin Pop
    """Verify the list of running instances.
790 a8083063 Iustin Pop

791 a8083063 Iustin Pop
    This checks what instances are running but unknown to the cluster.
792 a8083063 Iustin Pop

793 a8083063 Iustin Pop
    """
794 a8083063 Iustin Pop
    bad = False
795 a8083063 Iustin Pop
    for node in node_instance:
796 a8083063 Iustin Pop
      for runninginstance in node_instance[node]:
797 a8083063 Iustin Pop
        if runninginstance not in instancelist:
798 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
799 a8083063 Iustin Pop
                          (runninginstance, node))
800 a8083063 Iustin Pop
          bad = True
801 a8083063 Iustin Pop
    return bad
802 a8083063 Iustin Pop
803 2b3b6ddd Guido Trotter
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
804 2b3b6ddd Guido Trotter
    """Verify N+1 Memory Resilience.
805 2b3b6ddd Guido Trotter

806 2b3b6ddd Guido Trotter
    Check that if one single node dies we can still start all the instances it
807 2b3b6ddd Guido Trotter
    was primary for.
808 2b3b6ddd Guido Trotter

809 2b3b6ddd Guido Trotter
    """
810 2b3b6ddd Guido Trotter
    bad = False
811 2b3b6ddd Guido Trotter
812 2b3b6ddd Guido Trotter
    for node, nodeinfo in node_info.iteritems():
813 2b3b6ddd Guido Trotter
      # This code checks that every node which is now listed as secondary has
814 2b3b6ddd Guido Trotter
      # enough memory to host all instances it is supposed to should a single
815 2b3b6ddd Guido Trotter
      # other node in the cluster fail.
816 2b3b6ddd Guido Trotter
      # FIXME: not ready for failover to an arbitrary node
817 2b3b6ddd Guido Trotter
      # FIXME: does not support file-backed instances
818 2b3b6ddd Guido Trotter
      # WARNING: we currently take into account down instances as well as up
819 2b3b6ddd Guido Trotter
      # ones, considering that even if they're down someone might want to start
820 2b3b6ddd Guido Trotter
      # them even in the event of a node failure.
821 2b3b6ddd Guido Trotter
      for prinode, instances in nodeinfo['sinst-by-pnode'].iteritems():
822 2b3b6ddd Guido Trotter
        needed_mem = 0
823 2b3b6ddd Guido Trotter
        for instance in instances:
824 338e51e8 Iustin Pop
          bep = self.cfg.GetClusterInfo().FillBE(instance_cfg[instance])
825 c0f2b229 Iustin Pop
          if bep[constants.BE_AUTO_BALANCE]:
826 3924700f Iustin Pop
            needed_mem += bep[constants.BE_MEMORY]
827 2b3b6ddd Guido Trotter
        if nodeinfo['mfree'] < needed_mem:
828 2b3b6ddd Guido Trotter
          feedback_fn("  - ERROR: not enough memory on node %s to accomodate"
829 2b3b6ddd Guido Trotter
                      " failovers should node %s fail" % (node, prinode))
830 2b3b6ddd Guido Trotter
          bad = True
831 2b3b6ddd Guido Trotter
    return bad
832 2b3b6ddd Guido Trotter
833 a8083063 Iustin Pop
  def CheckPrereq(self):
834 a8083063 Iustin Pop
    """Check prerequisites.
835 a8083063 Iustin Pop

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

839 a8083063 Iustin Pop
    """
840 e54c4c5e Guido Trotter
    self.skip_set = frozenset(self.op.skip_checks)
841 e54c4c5e Guido Trotter
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
842 e54c4c5e Guido Trotter
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
843 a8083063 Iustin Pop
844 d8fff41c Guido Trotter
  def BuildHooksEnv(self):
845 d8fff41c Guido Trotter
    """Build hooks env.
846 d8fff41c Guido Trotter

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

850 d8fff41c Guido Trotter
    """
851 d8fff41c Guido Trotter
    all_nodes = self.cfg.GetNodeList()
852 d8fff41c Guido Trotter
    # TODO: populate the environment with useful information for verify hooks
853 d8fff41c Guido Trotter
    env = {}
854 d8fff41c Guido Trotter
    return env, [], all_nodes
855 d8fff41c Guido Trotter
856 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
857 a8083063 Iustin Pop
    """Verify integrity of cluster, performing various test on nodes.
858 a8083063 Iustin Pop

859 a8083063 Iustin Pop
    """
860 a8083063 Iustin Pop
    bad = False
861 a8083063 Iustin Pop
    feedback_fn("* Verifying global settings")
862 8522ceeb Iustin Pop
    for msg in self.cfg.VerifyConfig():
863 8522ceeb Iustin Pop
      feedback_fn("  - ERROR: %s" % msg)
864 a8083063 Iustin Pop
865 a8083063 Iustin Pop
    vg_name = self.cfg.GetVGName()
866 e69d05fd Iustin Pop
    hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
867 a8083063 Iustin Pop
    nodelist = utils.NiceSort(self.cfg.GetNodeList())
868 9d4bfc96 Iustin Pop
    nodeinfo = [self.cfg.GetNodeInfo(nname) for nname in nodelist]
869 a8083063 Iustin Pop
    instancelist = utils.NiceSort(self.cfg.GetInstanceList())
870 93e4c50b Guido Trotter
    i_non_redundant = [] # Non redundant instances
871 3924700f Iustin Pop
    i_non_a_balanced = [] # Non auto-balanced instances
872 0a66c968 Iustin Pop
    n_offline = [] # List of offline nodes
873 a8083063 Iustin Pop
    node_volume = {}
874 a8083063 Iustin Pop
    node_instance = {}
875 9c9c7d30 Guido Trotter
    node_info = {}
876 26b6af5e Guido Trotter
    instance_cfg = {}
877 a8083063 Iustin Pop
878 a8083063 Iustin Pop
    # FIXME: verify OS list
879 a8083063 Iustin Pop
    # do local checksums
880 112f18a5 Iustin Pop
    master_files = [constants.CLUSTER_CONF_FILE]
881 112f18a5 Iustin Pop
882 112f18a5 Iustin Pop
    file_names = ssconf.SimpleStore().GetFileList()
883 cb91d46e Iustin Pop
    file_names.append(constants.SSL_CERT_FILE)
884 699777f2 Michael Hanselmann
    file_names.append(constants.RAPI_CERT_FILE)
885 112f18a5 Iustin Pop
    file_names.extend(master_files)
886 112f18a5 Iustin Pop
887 a8083063 Iustin Pop
    local_checksums = utils.FingerprintFiles(file_names)
888 a8083063 Iustin Pop
889 a8083063 Iustin Pop
    feedback_fn("* Gathering data (%d nodes)" % len(nodelist))
890 a8083063 Iustin Pop
    node_verify_param = {
891 25361b9a Iustin Pop
      constants.NV_FILELIST: file_names,
892 82e37788 Iustin Pop
      constants.NV_NODELIST: [node.name for node in nodeinfo
893 82e37788 Iustin Pop
                              if not node.offline],
894 25361b9a Iustin Pop
      constants.NV_HYPERVISOR: hypervisors,
895 25361b9a Iustin Pop
      constants.NV_NODENETTEST: [(node.name, node.primary_ip,
896 82e37788 Iustin Pop
                                  node.secondary_ip) for node in nodeinfo
897 82e37788 Iustin Pop
                                 if not node.offline],
898 25361b9a Iustin Pop
      constants.NV_LVLIST: vg_name,
899 25361b9a Iustin Pop
      constants.NV_INSTANCELIST: hypervisors,
900 25361b9a Iustin Pop
      constants.NV_VGLIST: None,
901 25361b9a Iustin Pop
      constants.NV_VERSION: None,
902 25361b9a Iustin Pop
      constants.NV_HVINFO: self.cfg.GetHypervisorType(),
903 a8083063 Iustin Pop
      }
904 72737a7f Iustin Pop
    all_nvinfo = self.rpc.call_node_verify(nodelist, node_verify_param,
905 72737a7f Iustin Pop
                                           self.cfg.GetClusterName())
906 a8083063 Iustin Pop
907 3924700f Iustin Pop
    cluster = self.cfg.GetClusterInfo()
908 112f18a5 Iustin Pop
    master_node = self.cfg.GetMasterNode()
909 112f18a5 Iustin Pop
    for node_i in nodeinfo:
910 112f18a5 Iustin Pop
      node = node_i.name
911 25361b9a Iustin Pop
      nresult = all_nvinfo[node].data
912 25361b9a Iustin Pop
913 0a66c968 Iustin Pop
      if node_i.offline:
914 0a66c968 Iustin Pop
        feedback_fn("* Skipping offline node %s" % (node,))
915 0a66c968 Iustin Pop
        n_offline.append(node)
916 0a66c968 Iustin Pop
        continue
917 0a66c968 Iustin Pop
918 112f18a5 Iustin Pop
      if node == master_node:
919 25361b9a Iustin Pop
        ntype = "master"
920 112f18a5 Iustin Pop
      elif node_i.master_candidate:
921 25361b9a Iustin Pop
        ntype = "master candidate"
922 112f18a5 Iustin Pop
      else:
923 25361b9a Iustin Pop
        ntype = "regular"
924 112f18a5 Iustin Pop
      feedback_fn("* Verifying node %s (%s)" % (node, ntype))
925 25361b9a Iustin Pop
926 25361b9a Iustin Pop
      if all_nvinfo[node].failed or not isinstance(nresult, dict):
927 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed" % (node,))
928 25361b9a Iustin Pop
        bad = True
929 25361b9a Iustin Pop
        continue
930 25361b9a Iustin Pop
931 112f18a5 Iustin Pop
      result = self._VerifyNode(node_i, file_names, local_checksums,
932 25361b9a Iustin Pop
                                nresult, feedback_fn, master_files)
933 a8083063 Iustin Pop
      bad = bad or result
934 a8083063 Iustin Pop
935 25361b9a Iustin Pop
      lvdata = nresult.get(constants.NV_LVLIST, "Missing LV data")
936 25361b9a Iustin Pop
      if isinstance(lvdata, basestring):
937 b63ed789 Iustin Pop
        feedback_fn("  - ERROR: LVM problem on node %s: %s" %
938 25361b9a Iustin Pop
                    (node, lvdata.encode('string_escape')))
939 b63ed789 Iustin Pop
        bad = True
940 b63ed789 Iustin Pop
        node_volume[node] = {}
941 25361b9a Iustin Pop
      elif not isinstance(lvdata, dict):
942 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed (lvlist)" % (node,))
943 a8083063 Iustin Pop
        bad = True
944 a8083063 Iustin Pop
        continue
945 b63ed789 Iustin Pop
      else:
946 25361b9a Iustin Pop
        node_volume[node] = lvdata
947 a8083063 Iustin Pop
948 a8083063 Iustin Pop
      # node_instance
949 25361b9a Iustin Pop
      idata = nresult.get(constants.NV_INSTANCELIST, None)
950 25361b9a Iustin Pop
      if not isinstance(idata, list):
951 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed (instancelist)" %
952 25361b9a Iustin Pop
                    (node,))
953 a8083063 Iustin Pop
        bad = True
954 a8083063 Iustin Pop
        continue
955 a8083063 Iustin Pop
956 25361b9a Iustin Pop
      node_instance[node] = idata
957 a8083063 Iustin Pop
958 9c9c7d30 Guido Trotter
      # node_info
959 25361b9a Iustin Pop
      nodeinfo = nresult.get(constants.NV_HVINFO, None)
960 9c9c7d30 Guido Trotter
      if not isinstance(nodeinfo, dict):
961 25361b9a Iustin Pop
        feedback_fn("  - ERROR: connection to %s failed (hvinfo)" % (node,))
962 9c9c7d30 Guido Trotter
        bad = True
963 9c9c7d30 Guido Trotter
        continue
964 9c9c7d30 Guido Trotter
965 9c9c7d30 Guido Trotter
      try:
966 9c9c7d30 Guido Trotter
        node_info[node] = {
967 9c9c7d30 Guido Trotter
          "mfree": int(nodeinfo['memory_free']),
968 25361b9a Iustin Pop
          "dfree": int(nresult[constants.NV_VGLIST][vg_name]),
969 93e4c50b Guido Trotter
          "pinst": [],
970 93e4c50b Guido Trotter
          "sinst": [],
971 36e7da50 Guido Trotter
          # dictionary holding all instances this node is secondary for,
972 36e7da50 Guido Trotter
          # grouped by their primary node. Each key is a cluster node, and each
973 36e7da50 Guido Trotter
          # value is a list of instances which have the key as primary and the
974 36e7da50 Guido Trotter
          # current node as secondary.  this is handy to calculate N+1 memory
975 36e7da50 Guido Trotter
          # availability if you can only failover from a primary to its
976 36e7da50 Guido Trotter
          # secondary.
977 36e7da50 Guido Trotter
          "sinst-by-pnode": {},
978 9c9c7d30 Guido Trotter
        }
979 9c9c7d30 Guido Trotter
      except ValueError:
980 9c9c7d30 Guido Trotter
        feedback_fn("  - ERROR: invalid value returned from node %s" % (node,))
981 9c9c7d30 Guido Trotter
        bad = True
982 9c9c7d30 Guido Trotter
        continue
983 9c9c7d30 Guido Trotter
984 a8083063 Iustin Pop
    node_vol_should = {}
985 a8083063 Iustin Pop
986 a8083063 Iustin Pop
    for instance in instancelist:
987 a8083063 Iustin Pop
      feedback_fn("* Verifying instance %s" % instance)
988 a8083063 Iustin Pop
      inst_config = self.cfg.GetInstanceInfo(instance)
989 c5705f58 Guido Trotter
      result =  self._VerifyInstance(instance, inst_config, node_volume,
990 0a66c968 Iustin Pop
                                     node_instance, feedback_fn, n_offline)
991 c5705f58 Guido Trotter
      bad = bad or result
992 832261fd Iustin Pop
      inst_nodes_offline = []
993 a8083063 Iustin Pop
994 a8083063 Iustin Pop
      inst_config.MapLVsByNode(node_vol_should)
995 a8083063 Iustin Pop
996 26b6af5e Guido Trotter
      instance_cfg[instance] = inst_config
997 26b6af5e Guido Trotter
998 93e4c50b Guido Trotter
      pnode = inst_config.primary_node
999 93e4c50b Guido Trotter
      if pnode in node_info:
1000 93e4c50b Guido Trotter
        node_info[pnode]['pinst'].append(instance)
1001 0a66c968 Iustin Pop
      elif pnode not in n_offline:
1002 93e4c50b Guido Trotter
        feedback_fn("  - ERROR: instance %s, connection to primary node"
1003 93e4c50b Guido Trotter
                    " %s failed" % (instance, pnode))
1004 93e4c50b Guido Trotter
        bad = True
1005 93e4c50b Guido Trotter
1006 832261fd Iustin Pop
      if pnode in n_offline:
1007 832261fd Iustin Pop
        inst_nodes_offline.append(pnode)
1008 832261fd Iustin Pop
1009 93e4c50b Guido Trotter
      # If the instance is non-redundant we cannot survive losing its primary
1010 93e4c50b Guido Trotter
      # node, so we are not N+1 compliant. On the other hand we have no disk
1011 93e4c50b Guido Trotter
      # templates with more than one secondary so that situation is not well
1012 93e4c50b Guido Trotter
      # supported either.
1013 93e4c50b Guido Trotter
      # FIXME: does not support file-backed instances
1014 93e4c50b Guido Trotter
      if len(inst_config.secondary_nodes) == 0:
1015 93e4c50b Guido Trotter
        i_non_redundant.append(instance)
1016 93e4c50b Guido Trotter
      elif len(inst_config.secondary_nodes) > 1:
1017 93e4c50b Guido Trotter
        feedback_fn("  - WARNING: multiple secondaries for instance %s"
1018 93e4c50b Guido Trotter
                    % instance)
1019 93e4c50b Guido Trotter
1020 c0f2b229 Iustin Pop
      if not cluster.FillBE(inst_config)[constants.BE_AUTO_BALANCE]:
1021 3924700f Iustin Pop
        i_non_a_balanced.append(instance)
1022 3924700f Iustin Pop
1023 93e4c50b Guido Trotter
      for snode in inst_config.secondary_nodes:
1024 93e4c50b Guido Trotter
        if snode in node_info:
1025 93e4c50b Guido Trotter
          node_info[snode]['sinst'].append(instance)
1026 36e7da50 Guido Trotter
          if pnode not in node_info[snode]['sinst-by-pnode']:
1027 36e7da50 Guido Trotter
            node_info[snode]['sinst-by-pnode'][pnode] = []
1028 36e7da50 Guido Trotter
          node_info[snode]['sinst-by-pnode'][pnode].append(instance)
1029 0a66c968 Iustin Pop
        elif snode not in n_offline:
1030 93e4c50b Guido Trotter
          feedback_fn("  - ERROR: instance %s, connection to secondary node"
1031 93e4c50b Guido Trotter
                      " %s failed" % (instance, snode))
1032 832261fd Iustin Pop
          bad = True
1033 832261fd Iustin Pop
        if snode in n_offline:
1034 832261fd Iustin Pop
          inst_nodes_offline.append(snode)
1035 832261fd Iustin Pop
1036 832261fd Iustin Pop
      if inst_nodes_offline:
1037 832261fd Iustin Pop
        # warn that the instance lives on offline nodes, and set bad=True
1038 832261fd Iustin Pop
        feedback_fn("  - ERROR: instance lives on offline node(s) %s" %
1039 832261fd Iustin Pop
                    ", ".join(inst_nodes_offline))
1040 832261fd Iustin Pop
        bad = True
1041 93e4c50b Guido Trotter
1042 a8083063 Iustin Pop
    feedback_fn("* Verifying orphan volumes")
1043 a8083063 Iustin Pop
    result = self._VerifyOrphanVolumes(node_vol_should, node_volume,
1044 a8083063 Iustin Pop
                                       feedback_fn)
1045 a8083063 Iustin Pop
    bad = bad or result
1046 a8083063 Iustin Pop
1047 a8083063 Iustin Pop
    feedback_fn("* Verifying remaining instances")
1048 a8083063 Iustin Pop
    result = self._VerifyOrphanInstances(instancelist, node_instance,
1049 a8083063 Iustin Pop
                                         feedback_fn)
1050 a8083063 Iustin Pop
    bad = bad or result
1051 a8083063 Iustin Pop
1052 e54c4c5e Guido Trotter
    if constants.VERIFY_NPLUSONE_MEM not in self.skip_set:
1053 e54c4c5e Guido Trotter
      feedback_fn("* Verifying N+1 Memory redundancy")
1054 e54c4c5e Guido Trotter
      result = self._VerifyNPlusOneMemory(node_info, instance_cfg, feedback_fn)
1055 e54c4c5e Guido Trotter
      bad = bad or result
1056 2b3b6ddd Guido Trotter
1057 2b3b6ddd Guido Trotter
    feedback_fn("* Other Notes")
1058 2b3b6ddd Guido Trotter
    if i_non_redundant:
1059 2b3b6ddd Guido Trotter
      feedback_fn("  - NOTICE: %d non-redundant instance(s) found."
1060 2b3b6ddd Guido Trotter
                  % len(i_non_redundant))
1061 2b3b6ddd Guido Trotter
1062 3924700f Iustin Pop
    if i_non_a_balanced:
1063 3924700f Iustin Pop
      feedback_fn("  - NOTICE: %d non-auto-balanced instance(s) found."
1064 3924700f Iustin Pop
                  % len(i_non_a_balanced))
1065 3924700f Iustin Pop
1066 0a66c968 Iustin Pop
    if n_offline:
1067 0a66c968 Iustin Pop
      feedback_fn("  - NOTICE: %d offline node(s) found." % len(n_offline))
1068 0a66c968 Iustin Pop
1069 34290825 Michael Hanselmann
    return not bad
1070 a8083063 Iustin Pop
1071 d8fff41c Guido Trotter
  def HooksCallBack(self, phase, hooks_results, feedback_fn, lu_result):
1072 e4376078 Iustin Pop
    """Analize the post-hooks' result
1073 e4376078 Iustin Pop

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

1077 e4376078 Iustin Pop
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
1078 e4376078 Iustin Pop
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1079 e4376078 Iustin Pop
    @param hooks_results: the results of the multi-node hooks rpc call
1080 e4376078 Iustin Pop
    @param feedback_fn: function used send feedback back to the caller
1081 e4376078 Iustin Pop
    @param lu_result: previous Exec result
1082 e4376078 Iustin Pop
    @return: the new Exec result, based on the previous result
1083 e4376078 Iustin Pop
        and hook results
1084 d8fff41c Guido Trotter

1085 d8fff41c Guido Trotter
    """
1086 38206f3c Iustin Pop
    # We only really run POST phase hooks, and are only interested in
1087 38206f3c Iustin Pop
    # their results
1088 d8fff41c Guido Trotter
    if phase == constants.HOOKS_PHASE_POST:
1089 d8fff41c Guido Trotter
      # Used to change hooks' output to proper indentation
1090 d8fff41c Guido Trotter
      indent_re = re.compile('^', re.M)
1091 d8fff41c Guido Trotter
      feedback_fn("* Hooks Results")
1092 d8fff41c Guido Trotter
      if not hooks_results:
1093 d8fff41c Guido Trotter
        feedback_fn("  - ERROR: general communication failure")
1094 d8fff41c Guido Trotter
        lu_result = 1
1095 d8fff41c Guido Trotter
      else:
1096 d8fff41c Guido Trotter
        for node_name in hooks_results:
1097 d8fff41c Guido Trotter
          show_node_header = True
1098 d8fff41c Guido Trotter
          res = hooks_results[node_name]
1099 25361b9a Iustin Pop
          if res.failed or res.data is False or not isinstance(res.data, list):
1100 0a66c968 Iustin Pop
            if res.offline:
1101 0a66c968 Iustin Pop
              # no need to warn or set fail return value
1102 0a66c968 Iustin Pop
              continue
1103 25361b9a Iustin Pop
            feedback_fn("    Communication failure in hooks execution")
1104 d8fff41c Guido Trotter
            lu_result = 1
1105 d8fff41c Guido Trotter
            continue
1106 25361b9a Iustin Pop
          for script, hkr, output in res.data:
1107 d8fff41c Guido Trotter
            if hkr == constants.HKR_FAIL:
1108 d8fff41c Guido Trotter
              # The node header is only shown once, if there are
1109 d8fff41c Guido Trotter
              # failing hooks on that node
1110 d8fff41c Guido Trotter
              if show_node_header:
1111 d8fff41c Guido Trotter
                feedback_fn("  Node %s:" % node_name)
1112 d8fff41c Guido Trotter
                show_node_header = False
1113 d8fff41c Guido Trotter
              feedback_fn("    ERROR: Script %s failed, output:" % script)
1114 d8fff41c Guido Trotter
              output = indent_re.sub('      ', output)
1115 d8fff41c Guido Trotter
              feedback_fn("%s" % output)
1116 d8fff41c Guido Trotter
              lu_result = 1
1117 d8fff41c Guido Trotter
1118 d8fff41c Guido Trotter
      return lu_result
1119 d8fff41c Guido Trotter
1120 a8083063 Iustin Pop
1121 2c95a8d4 Iustin Pop
class LUVerifyDisks(NoHooksLU):
1122 2c95a8d4 Iustin Pop
  """Verifies the cluster disks status.
1123 2c95a8d4 Iustin Pop

1124 2c95a8d4 Iustin Pop
  """
1125 2c95a8d4 Iustin Pop
  _OP_REQP = []
1126 d4b9d97f Guido Trotter
  REQ_BGL = False
1127 d4b9d97f Guido Trotter
1128 d4b9d97f Guido Trotter
  def ExpandNames(self):
1129 d4b9d97f Guido Trotter
    self.needed_locks = {
1130 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1131 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1132 d4b9d97f Guido Trotter
    }
1133 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1134 2c95a8d4 Iustin Pop
1135 2c95a8d4 Iustin Pop
  def CheckPrereq(self):
1136 2c95a8d4 Iustin Pop
    """Check prerequisites.
1137 2c95a8d4 Iustin Pop

1138 2c95a8d4 Iustin Pop
    This has no prerequisites.
1139 2c95a8d4 Iustin Pop

1140 2c95a8d4 Iustin Pop
    """
1141 2c95a8d4 Iustin Pop
    pass
1142 2c95a8d4 Iustin Pop
1143 2c95a8d4 Iustin Pop
  def Exec(self, feedback_fn):
1144 2c95a8d4 Iustin Pop
    """Verify integrity of cluster disks.
1145 2c95a8d4 Iustin Pop

1146 2c95a8d4 Iustin Pop
    """
1147 b63ed789 Iustin Pop
    result = res_nodes, res_nlvm, res_instances, res_missing = [], {}, [], {}
1148 2c95a8d4 Iustin Pop
1149 2c95a8d4 Iustin Pop
    vg_name = self.cfg.GetVGName()
1150 2c95a8d4 Iustin Pop
    nodes = utils.NiceSort(self.cfg.GetNodeList())
1151 2c95a8d4 Iustin Pop
    instances = [self.cfg.GetInstanceInfo(name)
1152 2c95a8d4 Iustin Pop
                 for name in self.cfg.GetInstanceList()]
1153 2c95a8d4 Iustin Pop
1154 2c95a8d4 Iustin Pop
    nv_dict = {}
1155 2c95a8d4 Iustin Pop
    for inst in instances:
1156 2c95a8d4 Iustin Pop
      inst_lvs = {}
1157 2c95a8d4 Iustin Pop
      if (inst.status != "up" or
1158 2c95a8d4 Iustin Pop
          inst.disk_template not in constants.DTS_NET_MIRROR):
1159 2c95a8d4 Iustin Pop
        continue
1160 2c95a8d4 Iustin Pop
      inst.MapLVsByNode(inst_lvs)
1161 2c95a8d4 Iustin Pop
      # transform { iname: {node: [vol,],},} to {(node, vol): iname}
1162 2c95a8d4 Iustin Pop
      for node, vol_list in inst_lvs.iteritems():
1163 2c95a8d4 Iustin Pop
        for vol in vol_list:
1164 2c95a8d4 Iustin Pop
          nv_dict[(node, vol)] = inst
1165 2c95a8d4 Iustin Pop
1166 2c95a8d4 Iustin Pop
    if not nv_dict:
1167 2c95a8d4 Iustin Pop
      return result
1168 2c95a8d4 Iustin Pop
1169 72737a7f Iustin Pop
    node_lvs = self.rpc.call_volume_list(nodes, vg_name)
1170 2c95a8d4 Iustin Pop
1171 2c95a8d4 Iustin Pop
    to_act = set()
1172 2c95a8d4 Iustin Pop
    for node in nodes:
1173 2c95a8d4 Iustin Pop
      # node_volume
1174 2c95a8d4 Iustin Pop
      lvs = node_lvs[node]
1175 781de953 Iustin Pop
      if lvs.failed:
1176 0a66c968 Iustin Pop
        if not lvs.offline:
1177 0a66c968 Iustin Pop
          self.LogWarning("Connection to node %s failed: %s" %
1178 0a66c968 Iustin Pop
                          (node, lvs.data))
1179 781de953 Iustin Pop
        continue
1180 781de953 Iustin Pop
      lvs = lvs.data
1181 b63ed789 Iustin Pop
      if isinstance(lvs, basestring):
1182 9a4f63d1 Iustin Pop
        logging.warning("Error enumerating LVs on node %s: %s", node, lvs)
1183 b63ed789 Iustin Pop
        res_nlvm[node] = lvs
1184 b63ed789 Iustin Pop
      elif not isinstance(lvs, dict):
1185 9a4f63d1 Iustin Pop
        logging.warning("Connection to node %s failed or invalid data"
1186 9a4f63d1 Iustin Pop
                        " returned", node)
1187 2c95a8d4 Iustin Pop
        res_nodes.append(node)
1188 2c95a8d4 Iustin Pop
        continue
1189 2c95a8d4 Iustin Pop
1190 2c95a8d4 Iustin Pop
      for lv_name, (_, lv_inactive, lv_online) in lvs.iteritems():
1191 b63ed789 Iustin Pop
        inst = nv_dict.pop((node, lv_name), None)
1192 b63ed789 Iustin Pop
        if (not lv_online and inst is not None
1193 b63ed789 Iustin Pop
            and inst.name not in res_instances):
1194 b08d5a87 Iustin Pop
          res_instances.append(inst.name)
1195 2c95a8d4 Iustin Pop
1196 b63ed789 Iustin Pop
    # any leftover items in nv_dict are missing LVs, let's arrange the
1197 b63ed789 Iustin Pop
    # data better
1198 b63ed789 Iustin Pop
    for key, inst in nv_dict.iteritems():
1199 b63ed789 Iustin Pop
      if inst.name not in res_missing:
1200 b63ed789 Iustin Pop
        res_missing[inst.name] = []
1201 b63ed789 Iustin Pop
      res_missing[inst.name].append(key)
1202 b63ed789 Iustin Pop
1203 2c95a8d4 Iustin Pop
    return result
1204 2c95a8d4 Iustin Pop
1205 2c95a8d4 Iustin Pop
1206 07bd8a51 Iustin Pop
class LURenameCluster(LogicalUnit):
1207 07bd8a51 Iustin Pop
  """Rename the cluster.
1208 07bd8a51 Iustin Pop

1209 07bd8a51 Iustin Pop
  """
1210 07bd8a51 Iustin Pop
  HPATH = "cluster-rename"
1211 07bd8a51 Iustin Pop
  HTYPE = constants.HTYPE_CLUSTER
1212 07bd8a51 Iustin Pop
  _OP_REQP = ["name"]
1213 07bd8a51 Iustin Pop
1214 07bd8a51 Iustin Pop
  def BuildHooksEnv(self):
1215 07bd8a51 Iustin Pop
    """Build hooks env.
1216 07bd8a51 Iustin Pop

1217 07bd8a51 Iustin Pop
    """
1218 07bd8a51 Iustin Pop
    env = {
1219 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1220 07bd8a51 Iustin Pop
      "NEW_NAME": self.op.name,
1221 07bd8a51 Iustin Pop
      }
1222 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1223 07bd8a51 Iustin Pop
    return env, [mn], [mn]
1224 07bd8a51 Iustin Pop
1225 07bd8a51 Iustin Pop
  def CheckPrereq(self):
1226 07bd8a51 Iustin Pop
    """Verify that the passed name is a valid one.
1227 07bd8a51 Iustin Pop

1228 07bd8a51 Iustin Pop
    """
1229 89e1fc26 Iustin Pop
    hostname = utils.HostInfo(self.op.name)
1230 07bd8a51 Iustin Pop
1231 bcf043c9 Iustin Pop
    new_name = hostname.name
1232 bcf043c9 Iustin Pop
    self.ip = new_ip = hostname.ip
1233 d6a02168 Michael Hanselmann
    old_name = self.cfg.GetClusterName()
1234 d6a02168 Michael Hanselmann
    old_ip = self.cfg.GetMasterIP()
1235 07bd8a51 Iustin Pop
    if new_name == old_name and new_ip == old_ip:
1236 07bd8a51 Iustin Pop
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1237 07bd8a51 Iustin Pop
                                 " cluster has changed")
1238 07bd8a51 Iustin Pop
    if new_ip != old_ip:
1239 937f983d Guido Trotter
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1240 07bd8a51 Iustin Pop
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1241 07bd8a51 Iustin Pop
                                   " reachable on the network. Aborting." %
1242 07bd8a51 Iustin Pop
                                   new_ip)
1243 07bd8a51 Iustin Pop
1244 07bd8a51 Iustin Pop
    self.op.name = new_name
1245 07bd8a51 Iustin Pop
1246 07bd8a51 Iustin Pop
  def Exec(self, feedback_fn):
1247 07bd8a51 Iustin Pop
    """Rename the cluster.
1248 07bd8a51 Iustin Pop

1249 07bd8a51 Iustin Pop
    """
1250 07bd8a51 Iustin Pop
    clustername = self.op.name
1251 07bd8a51 Iustin Pop
    ip = self.ip
1252 07bd8a51 Iustin Pop
1253 07bd8a51 Iustin Pop
    # shutdown the master IP
1254 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
1255 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
1256 781de953 Iustin Pop
    if result.failed or not result.data:
1257 07bd8a51 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
1258 07bd8a51 Iustin Pop
1259 07bd8a51 Iustin Pop
    try:
1260 55cf7d83 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
1261 55cf7d83 Iustin Pop
      cluster.cluster_name = clustername
1262 55cf7d83 Iustin Pop
      cluster.master_ip = ip
1263 55cf7d83 Iustin Pop
      self.cfg.Update(cluster)
1264 ec85e3d5 Iustin Pop
1265 ec85e3d5 Iustin Pop
      # update the known hosts file
1266 ec85e3d5 Iustin Pop
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1267 ec85e3d5 Iustin Pop
      node_list = self.cfg.GetNodeList()
1268 ec85e3d5 Iustin Pop
      try:
1269 ec85e3d5 Iustin Pop
        node_list.remove(master)
1270 ec85e3d5 Iustin Pop
      except ValueError:
1271 ec85e3d5 Iustin Pop
        pass
1272 ec85e3d5 Iustin Pop
      result = self.rpc.call_upload_file(node_list,
1273 ec85e3d5 Iustin Pop
                                         constants.SSH_KNOWN_HOSTS_FILE)
1274 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
1275 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
1276 d1dc3548 Iustin Pop
          logging.error("Copy of file %s to node %s failed",
1277 d1dc3548 Iustin Pop
                        constants.SSH_KNOWN_HOSTS_FILE, to_node)
1278 ec85e3d5 Iustin Pop
1279 07bd8a51 Iustin Pop
    finally:
1280 781de953 Iustin Pop
      result = self.rpc.call_node_start_master(master, False)
1281 781de953 Iustin Pop
      if result.failed or not result.data:
1282 86d9d3bb Iustin Pop
        self.LogWarning("Could not re-enable the master role on"
1283 86d9d3bb Iustin Pop
                        " the master, please restart manually.")
1284 07bd8a51 Iustin Pop
1285 07bd8a51 Iustin Pop
1286 8084f9f6 Manuel Franceschini
def _RecursiveCheckIfLVMBased(disk):
1287 8084f9f6 Manuel Franceschini
  """Check if the given disk or its children are lvm-based.
1288 8084f9f6 Manuel Franceschini

1289 e4376078 Iustin Pop
  @type disk: L{objects.Disk}
1290 e4376078 Iustin Pop
  @param disk: the disk to check
1291 e4376078 Iustin Pop
  @rtype: booleean
1292 e4376078 Iustin Pop
  @return: boolean indicating whether a LD_LV dev_type was found or not
1293 8084f9f6 Manuel Franceschini

1294 8084f9f6 Manuel Franceschini
  """
1295 8084f9f6 Manuel Franceschini
  if disk.children:
1296 8084f9f6 Manuel Franceschini
    for chdisk in disk.children:
1297 8084f9f6 Manuel Franceschini
      if _RecursiveCheckIfLVMBased(chdisk):
1298 8084f9f6 Manuel Franceschini
        return True
1299 8084f9f6 Manuel Franceschini
  return disk.dev_type == constants.LD_LV
1300 8084f9f6 Manuel Franceschini
1301 8084f9f6 Manuel Franceschini
1302 8084f9f6 Manuel Franceschini
class LUSetClusterParams(LogicalUnit):
1303 8084f9f6 Manuel Franceschini
  """Change the parameters of the cluster.
1304 8084f9f6 Manuel Franceschini

1305 8084f9f6 Manuel Franceschini
  """
1306 8084f9f6 Manuel Franceschini
  HPATH = "cluster-modify"
1307 8084f9f6 Manuel Franceschini
  HTYPE = constants.HTYPE_CLUSTER
1308 8084f9f6 Manuel Franceschini
  _OP_REQP = []
1309 c53279cf Guido Trotter
  REQ_BGL = False
1310 c53279cf Guido Trotter
1311 4b7735f9 Iustin Pop
  def CheckParameters(self):
1312 4b7735f9 Iustin Pop
    """Check parameters
1313 4b7735f9 Iustin Pop

1314 4b7735f9 Iustin Pop
    """
1315 4b7735f9 Iustin Pop
    if not hasattr(self.op, "candidate_pool_size"):
1316 4b7735f9 Iustin Pop
      self.op.candidate_pool_size = None
1317 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1318 4b7735f9 Iustin Pop
      try:
1319 4b7735f9 Iustin Pop
        self.op.candidate_pool_size = int(self.op.candidate_pool_size)
1320 4b7735f9 Iustin Pop
      except ValueError, err:
1321 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
1322 4b7735f9 Iustin Pop
                                   str(err))
1323 4b7735f9 Iustin Pop
      if self.op.candidate_pool_size < 1:
1324 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("At least one master candidate needed")
1325 4b7735f9 Iustin Pop
1326 c53279cf Guido Trotter
  def ExpandNames(self):
1327 c53279cf Guido Trotter
    # FIXME: in the future maybe other cluster params won't require checking on
1328 c53279cf Guido Trotter
    # all nodes to be modified.
1329 c53279cf Guido Trotter
    self.needed_locks = {
1330 c53279cf Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1331 c53279cf Guido Trotter
    }
1332 c53279cf Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1333 8084f9f6 Manuel Franceschini
1334 8084f9f6 Manuel Franceschini
  def BuildHooksEnv(self):
1335 8084f9f6 Manuel Franceschini
    """Build hooks env.
1336 8084f9f6 Manuel Franceschini

1337 8084f9f6 Manuel Franceschini
    """
1338 8084f9f6 Manuel Franceschini
    env = {
1339 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1340 8084f9f6 Manuel Franceschini
      "NEW_VG_NAME": self.op.vg_name,
1341 8084f9f6 Manuel Franceschini
      }
1342 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1343 8084f9f6 Manuel Franceschini
    return env, [mn], [mn]
1344 8084f9f6 Manuel Franceschini
1345 8084f9f6 Manuel Franceschini
  def CheckPrereq(self):
1346 8084f9f6 Manuel Franceschini
    """Check prerequisites.
1347 8084f9f6 Manuel Franceschini

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

1351 8084f9f6 Manuel Franceschini
    """
1352 c53279cf Guido Trotter
    # FIXME: This only works because there is only one parameter that can be
1353 c53279cf Guido Trotter
    # changed or removed.
1354 779c15bb Iustin Pop
    if self.op.vg_name is not None and not self.op.vg_name:
1355 c53279cf Guido Trotter
      instances = self.cfg.GetAllInstancesInfo().values()
1356 8084f9f6 Manuel Franceschini
      for inst in instances:
1357 8084f9f6 Manuel Franceschini
        for disk in inst.disks:
1358 8084f9f6 Manuel Franceschini
          if _RecursiveCheckIfLVMBased(disk):
1359 8084f9f6 Manuel Franceschini
            raise errors.OpPrereqError("Cannot disable lvm storage while"
1360 8084f9f6 Manuel Franceschini
                                       " lvm-based instances exist")
1361 8084f9f6 Manuel Franceschini
1362 779c15bb Iustin Pop
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1363 779c15bb Iustin Pop
1364 8084f9f6 Manuel Franceschini
    # if vg_name not None, checks given volume group on all nodes
1365 8084f9f6 Manuel Franceschini
    if self.op.vg_name:
1366 72737a7f Iustin Pop
      vglist = self.rpc.call_vg_list(node_list)
1367 8084f9f6 Manuel Franceschini
      for node in node_list:
1368 781de953 Iustin Pop
        if vglist[node].failed:
1369 781de953 Iustin Pop
          # ignoring down node
1370 781de953 Iustin Pop
          self.LogWarning("Node %s unreachable/error, ignoring" % node)
1371 781de953 Iustin Pop
          continue
1372 781de953 Iustin Pop
        vgstatus = utils.CheckVolumeGroupSize(vglist[node].data,
1373 781de953 Iustin Pop
                                              self.op.vg_name,
1374 8d1a2a64 Michael Hanselmann
                                              constants.MIN_VG_SIZE)
1375 8084f9f6 Manuel Franceschini
        if vgstatus:
1376 8084f9f6 Manuel Franceschini
          raise errors.OpPrereqError("Error on node '%s': %s" %
1377 8084f9f6 Manuel Franceschini
                                     (node, vgstatus))
1378 8084f9f6 Manuel Franceschini
1379 779c15bb Iustin Pop
    self.cluster = cluster = self.cfg.GetClusterInfo()
1380 d4b72030 Guido Trotter
    # validate beparams changes
1381 779c15bb Iustin Pop
    if self.op.beparams:
1382 d4b72030 Guido Trotter
      utils.CheckBEParams(self.op.beparams)
1383 779c15bb Iustin Pop
      self.new_beparams = cluster.FillDict(
1384 779c15bb Iustin Pop
        cluster.beparams[constants.BEGR_DEFAULT], self.op.beparams)
1385 779c15bb Iustin Pop
1386 779c15bb Iustin Pop
    # hypervisor list/parameters
1387 779c15bb Iustin Pop
    self.new_hvparams = cluster.FillDict(cluster.hvparams, {})
1388 779c15bb Iustin Pop
    if self.op.hvparams:
1389 779c15bb Iustin Pop
      if not isinstance(self.op.hvparams, dict):
1390 779c15bb Iustin Pop
        raise errors.OpPrereqError("Invalid 'hvparams' parameter on input")
1391 779c15bb Iustin Pop
      for hv_name, hv_dict in self.op.hvparams.items():
1392 779c15bb Iustin Pop
        if hv_name not in self.new_hvparams:
1393 779c15bb Iustin Pop
          self.new_hvparams[hv_name] = hv_dict
1394 779c15bb Iustin Pop
        else:
1395 779c15bb Iustin Pop
          self.new_hvparams[hv_name].update(hv_dict)
1396 779c15bb Iustin Pop
1397 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1398 779c15bb Iustin Pop
      self.hv_list = self.op.enabled_hypervisors
1399 779c15bb Iustin Pop
    else:
1400 779c15bb Iustin Pop
      self.hv_list = cluster.enabled_hypervisors
1401 779c15bb Iustin Pop
1402 779c15bb Iustin Pop
    if self.op.hvparams or self.op.enabled_hypervisors is not None:
1403 779c15bb Iustin Pop
      # either the enabled list has changed, or the parameters have, validate
1404 779c15bb Iustin Pop
      for hv_name, hv_params in self.new_hvparams.items():
1405 779c15bb Iustin Pop
        if ((self.op.hvparams and hv_name in self.op.hvparams) or
1406 779c15bb Iustin Pop
            (self.op.enabled_hypervisors and
1407 779c15bb Iustin Pop
             hv_name in self.op.enabled_hypervisors)):
1408 779c15bb Iustin Pop
          # either this is a new hypervisor, or its parameters have changed
1409 779c15bb Iustin Pop
          hv_class = hypervisor.GetHypervisor(hv_name)
1410 779c15bb Iustin Pop
          hv_class.CheckParameterSyntax(hv_params)
1411 779c15bb Iustin Pop
          _CheckHVParams(self, node_list, hv_name, hv_params)
1412 779c15bb Iustin Pop
1413 8084f9f6 Manuel Franceschini
  def Exec(self, feedback_fn):
1414 8084f9f6 Manuel Franceschini
    """Change the parameters of the cluster.
1415 8084f9f6 Manuel Franceschini

1416 8084f9f6 Manuel Franceschini
    """
1417 779c15bb Iustin Pop
    if self.op.vg_name is not None:
1418 779c15bb Iustin Pop
      if self.op.vg_name != self.cfg.GetVGName():
1419 779c15bb Iustin Pop
        self.cfg.SetVGName(self.op.vg_name)
1420 779c15bb Iustin Pop
      else:
1421 779c15bb Iustin Pop
        feedback_fn("Cluster LVM configuration already in desired"
1422 779c15bb Iustin Pop
                    " state, not changing")
1423 779c15bb Iustin Pop
    if self.op.hvparams:
1424 779c15bb Iustin Pop
      self.cluster.hvparams = self.new_hvparams
1425 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1426 779c15bb Iustin Pop
      self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
1427 779c15bb Iustin Pop
    if self.op.beparams:
1428 779c15bb Iustin Pop
      self.cluster.beparams[constants.BEGR_DEFAULT] = self.new_beparams
1429 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1430 4b7735f9 Iustin Pop
      self.cluster.candidate_pool_size = self.op.candidate_pool_size
1431 4b7735f9 Iustin Pop
1432 779c15bb Iustin Pop
    self.cfg.Update(self.cluster)
1433 8084f9f6 Manuel Franceschini
1434 4b7735f9 Iustin Pop
    # we want to update nodes after the cluster so that if any errors
1435 4b7735f9 Iustin Pop
    # happen, we have recorded and saved the cluster info
1436 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1437 ec0292f1 Iustin Pop
      _AdjustCandidatePool(self)
1438 4b7735f9 Iustin Pop
1439 8084f9f6 Manuel Franceschini
1440 b9bddb6b Iustin Pop
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1441 a8083063 Iustin Pop
  """Sleep and poll for an instance's disk to sync.
1442 a8083063 Iustin Pop

1443 a8083063 Iustin Pop
  """
1444 a8083063 Iustin Pop
  if not instance.disks:
1445 a8083063 Iustin Pop
    return True
1446 a8083063 Iustin Pop
1447 a8083063 Iustin Pop
  if not oneshot:
1448 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
1449 a8083063 Iustin Pop
1450 a8083063 Iustin Pop
  node = instance.primary_node
1451 a8083063 Iustin Pop
1452 a8083063 Iustin Pop
  for dev in instance.disks:
1453 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(dev, node)
1454 a8083063 Iustin Pop
1455 a8083063 Iustin Pop
  retries = 0
1456 a8083063 Iustin Pop
  while True:
1457 a8083063 Iustin Pop
    max_time = 0
1458 a8083063 Iustin Pop
    done = True
1459 a8083063 Iustin Pop
    cumul_degraded = False
1460 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
1461 781de953 Iustin Pop
    if rstats.failed or not rstats.data:
1462 86d9d3bb Iustin Pop
      lu.LogWarning("Can't get any data from node %s", node)
1463 a8083063 Iustin Pop
      retries += 1
1464 a8083063 Iustin Pop
      if retries >= 10:
1465 3ecf6786 Iustin Pop
        raise errors.RemoteError("Can't contact node %s for mirror data,"
1466 3ecf6786 Iustin Pop
                                 " aborting." % node)
1467 a8083063 Iustin Pop
      time.sleep(6)
1468 a8083063 Iustin Pop
      continue
1469 781de953 Iustin Pop
    rstats = rstats.data
1470 a8083063 Iustin Pop
    retries = 0
1471 a8083063 Iustin Pop
    for i in range(len(rstats)):
1472 a8083063 Iustin Pop
      mstat = rstats[i]
1473 a8083063 Iustin Pop
      if mstat is None:
1474 86d9d3bb Iustin Pop
        lu.LogWarning("Can't compute data for node %s/%s",
1475 86d9d3bb Iustin Pop
                           node, instance.disks[i].iv_name)
1476 a8083063 Iustin Pop
        continue
1477 0834c866 Iustin Pop
      # we ignore the ldisk parameter
1478 0834c866 Iustin Pop
      perc_done, est_time, is_degraded, _ = mstat
1479 a8083063 Iustin Pop
      cumul_degraded = cumul_degraded or (is_degraded and perc_done is None)
1480 a8083063 Iustin Pop
      if perc_done is not None:
1481 a8083063 Iustin Pop
        done = False
1482 a8083063 Iustin Pop
        if est_time is not None:
1483 a8083063 Iustin Pop
          rem_time = "%d estimated seconds remaining" % est_time
1484 a8083063 Iustin Pop
          max_time = est_time
1485 a8083063 Iustin Pop
        else:
1486 a8083063 Iustin Pop
          rem_time = "no time estimate"
1487 b9bddb6b Iustin Pop
        lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
1488 b9bddb6b Iustin Pop
                        (instance.disks[i].iv_name, perc_done, rem_time))
1489 a8083063 Iustin Pop
    if done or oneshot:
1490 a8083063 Iustin Pop
      break
1491 a8083063 Iustin Pop
1492 d4fa5c23 Iustin Pop
    time.sleep(min(60, max_time))
1493 a8083063 Iustin Pop
1494 a8083063 Iustin Pop
  if done:
1495 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
1496 a8083063 Iustin Pop
  return not cumul_degraded
1497 a8083063 Iustin Pop
1498 a8083063 Iustin Pop
1499 b9bddb6b Iustin Pop
def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
1500 a8083063 Iustin Pop
  """Check that mirrors are not degraded.
1501 a8083063 Iustin Pop

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

1506 a8083063 Iustin Pop
  """
1507 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(dev, node)
1508 0834c866 Iustin Pop
  if ldisk:
1509 0834c866 Iustin Pop
    idx = 6
1510 0834c866 Iustin Pop
  else:
1511 0834c866 Iustin Pop
    idx = 5
1512 a8083063 Iustin Pop
1513 a8083063 Iustin Pop
  result = True
1514 a8083063 Iustin Pop
  if on_primary or dev.AssembleOnSecondary():
1515 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_find(node, dev)
1516 781de953 Iustin Pop
    if rstats.failed or not rstats.data:
1517 9a4f63d1 Iustin Pop
      logging.warning("Node %s: disk degraded, not found or node down", node)
1518 a8083063 Iustin Pop
      result = False
1519 a8083063 Iustin Pop
    else:
1520 781de953 Iustin Pop
      result = result and (not rstats.data[idx])
1521 a8083063 Iustin Pop
  if dev.children:
1522 a8083063 Iustin Pop
    for child in dev.children:
1523 b9bddb6b Iustin Pop
      result = result and _CheckDiskConsistency(lu, child, node, on_primary)
1524 a8083063 Iustin Pop
1525 a8083063 Iustin Pop
  return result
1526 a8083063 Iustin Pop
1527 a8083063 Iustin Pop
1528 a8083063 Iustin Pop
class LUDiagnoseOS(NoHooksLU):
1529 a8083063 Iustin Pop
  """Logical unit for OS diagnose/query.
1530 a8083063 Iustin Pop

1531 a8083063 Iustin Pop
  """
1532 1f9430d6 Iustin Pop
  _OP_REQP = ["output_fields", "names"]
1533 6bf01bbb Guido Trotter
  REQ_BGL = False
1534 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet()
1535 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status")
1536 a8083063 Iustin Pop
1537 6bf01bbb Guido Trotter
  def ExpandNames(self):
1538 1f9430d6 Iustin Pop
    if self.op.names:
1539 1f9430d6 Iustin Pop
      raise errors.OpPrereqError("Selective OS query not supported")
1540 1f9430d6 Iustin Pop
1541 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1542 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1543 1f9430d6 Iustin Pop
                       selected=self.op.output_fields)
1544 1f9430d6 Iustin Pop
1545 6bf01bbb Guido Trotter
    # Lock all nodes, in shared mode
1546 6bf01bbb Guido Trotter
    self.needed_locks = {}
1547 6bf01bbb Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1548 e310b019 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1549 6bf01bbb Guido Trotter
1550 6bf01bbb Guido Trotter
  def CheckPrereq(self):
1551 6bf01bbb Guido Trotter
    """Check prerequisites.
1552 6bf01bbb Guido Trotter

1553 6bf01bbb Guido Trotter
    """
1554 6bf01bbb Guido Trotter
1555 1f9430d6 Iustin Pop
  @staticmethod
1556 1f9430d6 Iustin Pop
  def _DiagnoseByOS(node_list, rlist):
1557 1f9430d6 Iustin Pop
    """Remaps a per-node return list into an a per-os per-node dictionary
1558 1f9430d6 Iustin Pop

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

1562 e4376078 Iustin Pop
    @rtype: dict
1563 e4376078 Iustin Pop
    @returns: a dictionary with osnames as keys and as value another map, with
1564 e4376078 Iustin Pop
        nodes as keys and list of OS objects as values, eg::
1565 e4376078 Iustin Pop

1566 e4376078 Iustin Pop
          {"debian-etch": {"node1": [<object>,...],
1567 e4376078 Iustin Pop
                           "node2": [<object>,]}
1568 e4376078 Iustin Pop
          }
1569 1f9430d6 Iustin Pop

1570 1f9430d6 Iustin Pop
    """
1571 1f9430d6 Iustin Pop
    all_os = {}
1572 1f9430d6 Iustin Pop
    for node_name, nr in rlist.iteritems():
1573 781de953 Iustin Pop
      if nr.failed or not nr.data:
1574 1f9430d6 Iustin Pop
        continue
1575 781de953 Iustin Pop
      for os_obj in nr.data:
1576 b4de68a9 Iustin Pop
        if os_obj.name not in all_os:
1577 1f9430d6 Iustin Pop
          # build a list of nodes for this os containing empty lists
1578 1f9430d6 Iustin Pop
          # for each node in node_list
1579 b4de68a9 Iustin Pop
          all_os[os_obj.name] = {}
1580 1f9430d6 Iustin Pop
          for nname in node_list:
1581 b4de68a9 Iustin Pop
            all_os[os_obj.name][nname] = []
1582 b4de68a9 Iustin Pop
        all_os[os_obj.name][node_name].append(os_obj)
1583 1f9430d6 Iustin Pop
    return all_os
1584 a8083063 Iustin Pop
1585 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1586 a8083063 Iustin Pop
    """Compute the list of OSes.
1587 a8083063 Iustin Pop

1588 a8083063 Iustin Pop
    """
1589 6bf01bbb Guido Trotter
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1590 94a02bb5 Iustin Pop
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()
1591 94a02bb5 Iustin Pop
                   if node in node_list]
1592 94a02bb5 Iustin Pop
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1593 a8083063 Iustin Pop
    if node_data == False:
1594 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't gather the list of OSes")
1595 94a02bb5 Iustin Pop
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1596 1f9430d6 Iustin Pop
    output = []
1597 1f9430d6 Iustin Pop
    for os_name, os_data in pol.iteritems():
1598 1f9430d6 Iustin Pop
      row = []
1599 1f9430d6 Iustin Pop
      for field in self.op.output_fields:
1600 1f9430d6 Iustin Pop
        if field == "name":
1601 1f9430d6 Iustin Pop
          val = os_name
1602 1f9430d6 Iustin Pop
        elif field == "valid":
1603 1f9430d6 Iustin Pop
          val = utils.all([osl and osl[0] for osl in os_data.values()])
1604 1f9430d6 Iustin Pop
        elif field == "node_status":
1605 1f9430d6 Iustin Pop
          val = {}
1606 1f9430d6 Iustin Pop
          for node_name, nos_list in os_data.iteritems():
1607 1f9430d6 Iustin Pop
            val[node_name] = [(v.status, v.path) for v in nos_list]
1608 1f9430d6 Iustin Pop
        else:
1609 1f9430d6 Iustin Pop
          raise errors.ParameterError(field)
1610 1f9430d6 Iustin Pop
        row.append(val)
1611 1f9430d6 Iustin Pop
      output.append(row)
1612 1f9430d6 Iustin Pop
1613 1f9430d6 Iustin Pop
    return output
1614 a8083063 Iustin Pop
1615 a8083063 Iustin Pop
1616 a8083063 Iustin Pop
class LURemoveNode(LogicalUnit):
1617 a8083063 Iustin Pop
  """Logical unit for removing a node.
1618 a8083063 Iustin Pop

1619 a8083063 Iustin Pop
  """
1620 a8083063 Iustin Pop
  HPATH = "node-remove"
1621 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1622 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1623 a8083063 Iustin Pop
1624 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1625 a8083063 Iustin Pop
    """Build hooks env.
1626 a8083063 Iustin Pop

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

1630 a8083063 Iustin Pop
    """
1631 396e1b78 Michael Hanselmann
    env = {
1632 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
1633 396e1b78 Michael Hanselmann
      "NODE_NAME": self.op.node_name,
1634 396e1b78 Michael Hanselmann
      }
1635 a8083063 Iustin Pop
    all_nodes = self.cfg.GetNodeList()
1636 a8083063 Iustin Pop
    all_nodes.remove(self.op.node_name)
1637 396e1b78 Michael Hanselmann
    return env, all_nodes, all_nodes
1638 a8083063 Iustin Pop
1639 a8083063 Iustin Pop
  def CheckPrereq(self):
1640 a8083063 Iustin Pop
    """Check prerequisites.
1641 a8083063 Iustin Pop

1642 a8083063 Iustin Pop
    This checks:
1643 a8083063 Iustin Pop
     - the node exists in the configuration
1644 a8083063 Iustin Pop
     - it does not have primary or secondary instances
1645 a8083063 Iustin Pop
     - it's not the master
1646 a8083063 Iustin Pop

1647 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
1648 a8083063 Iustin Pop

1649 a8083063 Iustin Pop
    """
1650 a8083063 Iustin Pop
    node = self.cfg.GetNodeInfo(self.cfg.ExpandNodeName(self.op.node_name))
1651 a8083063 Iustin Pop
    if node is None:
1652 a02bc76e Iustin Pop
      raise errors.OpPrereqError, ("Node '%s' is unknown." % self.op.node_name)
1653 a8083063 Iustin Pop
1654 a8083063 Iustin Pop
    instance_list = self.cfg.GetInstanceList()
1655 a8083063 Iustin Pop
1656 d6a02168 Michael Hanselmann
    masternode = self.cfg.GetMasterNode()
1657 a8083063 Iustin Pop
    if node.name == masternode:
1658 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node is the master node,"
1659 3ecf6786 Iustin Pop
                                 " you need to failover first.")
1660 a8083063 Iustin Pop
1661 a8083063 Iustin Pop
    for instance_name in instance_list:
1662 a8083063 Iustin Pop
      instance = self.cfg.GetInstanceInfo(instance_name)
1663 a8083063 Iustin Pop
      if node.name == instance.primary_node:
1664 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Instance %s still running on the node,"
1665 3ecf6786 Iustin Pop
                                   " please remove first." % instance_name)
1666 a8083063 Iustin Pop
      if node.name in instance.secondary_nodes:
1667 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Instance %s has node as a secondary,"
1668 3ecf6786 Iustin Pop
                                   " please remove first." % instance_name)
1669 a8083063 Iustin Pop
    self.op.node_name = node.name
1670 a8083063 Iustin Pop
    self.node = node
1671 a8083063 Iustin Pop
1672 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1673 a8083063 Iustin Pop
    """Removes the node from the cluster.
1674 a8083063 Iustin Pop

1675 a8083063 Iustin Pop
    """
1676 a8083063 Iustin Pop
    node = self.node
1677 9a4f63d1 Iustin Pop
    logging.info("Stopping the node daemon and removing configs from node %s",
1678 9a4f63d1 Iustin Pop
                 node.name)
1679 a8083063 Iustin Pop
1680 d8470559 Michael Hanselmann
    self.context.RemoveNode(node.name)
1681 a8083063 Iustin Pop
1682 72737a7f Iustin Pop
    self.rpc.call_node_leave_cluster(node.name)
1683 c8a0948f Michael Hanselmann
1684 eb1742d5 Guido Trotter
    # Promote nodes to master candidate as needed
1685 ec0292f1 Iustin Pop
    _AdjustCandidatePool(self)
1686 eb1742d5 Guido Trotter
1687 a8083063 Iustin Pop
1688 a8083063 Iustin Pop
class LUQueryNodes(NoHooksLU):
1689 a8083063 Iustin Pop
  """Logical unit for querying nodes.
1690 a8083063 Iustin Pop

1691 a8083063 Iustin Pop
  """
1692 246e180a Iustin Pop
  _OP_REQP = ["output_fields", "names"]
1693 35705d8f Guido Trotter
  REQ_BGL = False
1694 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet(
1695 31bf511f Iustin Pop
    "dtotal", "dfree",
1696 31bf511f Iustin Pop
    "mtotal", "mnode", "mfree",
1697 31bf511f Iustin Pop
    "bootid",
1698 31bf511f Iustin Pop
    "ctotal",
1699 31bf511f Iustin Pop
    )
1700 31bf511f Iustin Pop
1701 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(
1702 31bf511f Iustin Pop
    "name", "pinst_cnt", "sinst_cnt",
1703 31bf511f Iustin Pop
    "pinst_list", "sinst_list",
1704 31bf511f Iustin Pop
    "pip", "sip", "tags",
1705 31bf511f Iustin Pop
    "serial_no",
1706 0e67cdbe Iustin Pop
    "master_candidate",
1707 0e67cdbe Iustin Pop
    "master",
1708 9ddb5e45 Iustin Pop
    "offline",
1709 31bf511f Iustin Pop
    )
1710 a8083063 Iustin Pop
1711 35705d8f Guido Trotter
  def ExpandNames(self):
1712 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1713 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1714 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
1715 a8083063 Iustin Pop
1716 35705d8f Guido Trotter
    self.needed_locks = {}
1717 35705d8f Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1718 c8d8b4c8 Iustin Pop
1719 c8d8b4c8 Iustin Pop
    if self.op.names:
1720 c8d8b4c8 Iustin Pop
      self.wanted = _GetWantedNodes(self, self.op.names)
1721 35705d8f Guido Trotter
    else:
1722 c8d8b4c8 Iustin Pop
      self.wanted = locking.ALL_SET
1723 c8d8b4c8 Iustin Pop
1724 31bf511f Iustin Pop
    self.do_locking = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
1725 c8d8b4c8 Iustin Pop
    if self.do_locking:
1726 c8d8b4c8 Iustin Pop
      # if we don't request only static fields, we need to lock the nodes
1727 c8d8b4c8 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = self.wanted
1728 c8d8b4c8 Iustin Pop
1729 35705d8f Guido Trotter
1730 35705d8f Guido Trotter
  def CheckPrereq(self):
1731 35705d8f Guido Trotter
    """Check prerequisites.
1732 35705d8f Guido Trotter

1733 35705d8f Guido Trotter
    """
1734 c8d8b4c8 Iustin Pop
    # The validation of the node list is done in the _GetWantedNodes,
1735 c8d8b4c8 Iustin Pop
    # if non empty, and if empty, there's no validation to do
1736 c8d8b4c8 Iustin Pop
    pass
1737 a8083063 Iustin Pop
1738 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1739 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
1740 a8083063 Iustin Pop

1741 a8083063 Iustin Pop
    """
1742 c8d8b4c8 Iustin Pop
    all_info = self.cfg.GetAllNodesInfo()
1743 c8d8b4c8 Iustin Pop
    if self.do_locking:
1744 c8d8b4c8 Iustin Pop
      nodenames = self.acquired_locks[locking.LEVEL_NODE]
1745 3fa93523 Guido Trotter
    elif self.wanted != locking.ALL_SET:
1746 3fa93523 Guido Trotter
      nodenames = self.wanted
1747 3fa93523 Guido Trotter
      missing = set(nodenames).difference(all_info.keys())
1748 3fa93523 Guido Trotter
      if missing:
1749 7b3a8fb5 Iustin Pop
        raise errors.OpExecError(
1750 3fa93523 Guido Trotter
          "Some nodes were removed before retrieving their data: %s" % missing)
1751 c8d8b4c8 Iustin Pop
    else:
1752 c8d8b4c8 Iustin Pop
      nodenames = all_info.keys()
1753 c1f1cbb2 Iustin Pop
1754 c1f1cbb2 Iustin Pop
    nodenames = utils.NiceSort(nodenames)
1755 c8d8b4c8 Iustin Pop
    nodelist = [all_info[name] for name in nodenames]
1756 a8083063 Iustin Pop
1757 a8083063 Iustin Pop
    # begin data gathering
1758 a8083063 Iustin Pop
1759 31bf511f Iustin Pop
    if self.do_locking:
1760 a8083063 Iustin Pop
      live_data = {}
1761 72737a7f Iustin Pop
      node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
1762 72737a7f Iustin Pop
                                          self.cfg.GetHypervisorType())
1763 a8083063 Iustin Pop
      for name in nodenames:
1764 781de953 Iustin Pop
        nodeinfo = node_data[name]
1765 781de953 Iustin Pop
        if not nodeinfo.failed and nodeinfo.data:
1766 781de953 Iustin Pop
          nodeinfo = nodeinfo.data
1767 d599d686 Iustin Pop
          fn = utils.TryConvert
1768 a8083063 Iustin Pop
          live_data[name] = {
1769 d599d686 Iustin Pop
            "mtotal": fn(int, nodeinfo.get('memory_total', None)),
1770 d599d686 Iustin Pop
            "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
1771 d599d686 Iustin Pop
            "mfree": fn(int, nodeinfo.get('memory_free', None)),
1772 d599d686 Iustin Pop
            "dtotal": fn(int, nodeinfo.get('vg_size', None)),
1773 d599d686 Iustin Pop
            "dfree": fn(int, nodeinfo.get('vg_free', None)),
1774 d599d686 Iustin Pop
            "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
1775 d599d686 Iustin Pop
            "bootid": nodeinfo.get('bootid', None),
1776 a8083063 Iustin Pop
            }
1777 a8083063 Iustin Pop
        else:
1778 a8083063 Iustin Pop
          live_data[name] = {}
1779 a8083063 Iustin Pop
    else:
1780 a8083063 Iustin Pop
      live_data = dict.fromkeys(nodenames, {})
1781 a8083063 Iustin Pop
1782 ec223efb Iustin Pop
    node_to_primary = dict([(name, set()) for name in nodenames])
1783 ec223efb Iustin Pop
    node_to_secondary = dict([(name, set()) for name in nodenames])
1784 a8083063 Iustin Pop
1785 ec223efb Iustin Pop
    inst_fields = frozenset(("pinst_cnt", "pinst_list",
1786 ec223efb Iustin Pop
                             "sinst_cnt", "sinst_list"))
1787 ec223efb Iustin Pop
    if inst_fields & frozenset(self.op.output_fields):
1788 a8083063 Iustin Pop
      instancelist = self.cfg.GetInstanceList()
1789 a8083063 Iustin Pop
1790 ec223efb Iustin Pop
      for instance_name in instancelist:
1791 ec223efb Iustin Pop
        inst = self.cfg.GetInstanceInfo(instance_name)
1792 ec223efb Iustin Pop
        if inst.primary_node in node_to_primary:
1793 ec223efb Iustin Pop
          node_to_primary[inst.primary_node].add(inst.name)
1794 ec223efb Iustin Pop
        for secnode in inst.secondary_nodes:
1795 ec223efb Iustin Pop
          if secnode in node_to_secondary:
1796 ec223efb Iustin Pop
            node_to_secondary[secnode].add(inst.name)
1797 a8083063 Iustin Pop
1798 0e67cdbe Iustin Pop
    master_node = self.cfg.GetMasterNode()
1799 0e67cdbe Iustin Pop
1800 a8083063 Iustin Pop
    # end data gathering
1801 a8083063 Iustin Pop
1802 a8083063 Iustin Pop
    output = []
1803 a8083063 Iustin Pop
    for node in nodelist:
1804 a8083063 Iustin Pop
      node_output = []
1805 a8083063 Iustin Pop
      for field in self.op.output_fields:
1806 a8083063 Iustin Pop
        if field == "name":
1807 a8083063 Iustin Pop
          val = node.name
1808 ec223efb Iustin Pop
        elif field == "pinst_list":
1809 ec223efb Iustin Pop
          val = list(node_to_primary[node.name])
1810 ec223efb Iustin Pop
        elif field == "sinst_list":
1811 ec223efb Iustin Pop
          val = list(node_to_secondary[node.name])
1812 ec223efb Iustin Pop
        elif field == "pinst_cnt":
1813 ec223efb Iustin Pop
          val = len(node_to_primary[node.name])
1814 ec223efb Iustin Pop
        elif field == "sinst_cnt":
1815 ec223efb Iustin Pop
          val = len(node_to_secondary[node.name])
1816 a8083063 Iustin Pop
        elif field == "pip":
1817 a8083063 Iustin Pop
          val = node.primary_ip
1818 a8083063 Iustin Pop
        elif field == "sip":
1819 a8083063 Iustin Pop
          val = node.secondary_ip
1820 130a6a6f Iustin Pop
        elif field == "tags":
1821 130a6a6f Iustin Pop
          val = list(node.GetTags())
1822 38d7239a Iustin Pop
        elif field == "serial_no":
1823 38d7239a Iustin Pop
          val = node.serial_no
1824 0e67cdbe Iustin Pop
        elif field == "master_candidate":
1825 0e67cdbe Iustin Pop
          val = node.master_candidate
1826 0e67cdbe Iustin Pop
        elif field == "master":
1827 0e67cdbe Iustin Pop
          val = node.name == master_node
1828 9ddb5e45 Iustin Pop
        elif field == "offline":
1829 9ddb5e45 Iustin Pop
          val = node.offline
1830 31bf511f Iustin Pop
        elif self._FIELDS_DYNAMIC.Matches(field):
1831 ec223efb Iustin Pop
          val = live_data[node.name].get(field, None)
1832 a8083063 Iustin Pop
        else:
1833 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
1834 a8083063 Iustin Pop
        node_output.append(val)
1835 a8083063 Iustin Pop
      output.append(node_output)
1836 a8083063 Iustin Pop
1837 a8083063 Iustin Pop
    return output
1838 a8083063 Iustin Pop
1839 a8083063 Iustin Pop
1840 dcb93971 Michael Hanselmann
class LUQueryNodeVolumes(NoHooksLU):
1841 dcb93971 Michael Hanselmann
  """Logical unit for getting volumes on node(s).
1842 dcb93971 Michael Hanselmann

1843 dcb93971 Michael Hanselmann
  """
1844 dcb93971 Michael Hanselmann
  _OP_REQP = ["nodes", "output_fields"]
1845 21a15682 Guido Trotter
  REQ_BGL = False
1846 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
1847 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("node")
1848 21a15682 Guido Trotter
1849 21a15682 Guido Trotter
  def ExpandNames(self):
1850 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1851 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1852 21a15682 Guido Trotter
                       selected=self.op.output_fields)
1853 21a15682 Guido Trotter
1854 21a15682 Guido Trotter
    self.needed_locks = {}
1855 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1856 21a15682 Guido Trotter
    if not self.op.nodes:
1857 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1858 21a15682 Guido Trotter
    else:
1859 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
1860 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
1861 dcb93971 Michael Hanselmann
1862 dcb93971 Michael Hanselmann
  def CheckPrereq(self):
1863 dcb93971 Michael Hanselmann
    """Check prerequisites.
1864 dcb93971 Michael Hanselmann

1865 dcb93971 Michael Hanselmann
    This checks that the fields required are valid output fields.
1866 dcb93971 Michael Hanselmann

1867 dcb93971 Michael Hanselmann
    """
1868 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
1869 dcb93971 Michael Hanselmann
1870 dcb93971 Michael Hanselmann
  def Exec(self, feedback_fn):
1871 dcb93971 Michael Hanselmann
    """Computes the list of nodes and their attributes.
1872 dcb93971 Michael Hanselmann

1873 dcb93971 Michael Hanselmann
    """
1874 a7ba5e53 Iustin Pop
    nodenames = self.nodes
1875 72737a7f Iustin Pop
    volumes = self.rpc.call_node_volumes(nodenames)
1876 dcb93971 Michael Hanselmann
1877 dcb93971 Michael Hanselmann
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
1878 dcb93971 Michael Hanselmann
             in self.cfg.GetInstanceList()]
1879 dcb93971 Michael Hanselmann
1880 dcb93971 Michael Hanselmann
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
1881 dcb93971 Michael Hanselmann
1882 dcb93971 Michael Hanselmann
    output = []
1883 dcb93971 Michael Hanselmann
    for node in nodenames:
1884 781de953 Iustin Pop
      if node not in volumes or volumes[node].failed or not volumes[node].data:
1885 37d19eb2 Michael Hanselmann
        continue
1886 37d19eb2 Michael Hanselmann
1887 781de953 Iustin Pop
      node_vols = volumes[node].data[:]
1888 dcb93971 Michael Hanselmann
      node_vols.sort(key=lambda vol: vol['dev'])
1889 dcb93971 Michael Hanselmann
1890 dcb93971 Michael Hanselmann
      for vol in node_vols:
1891 dcb93971 Michael Hanselmann
        node_output = []
1892 dcb93971 Michael Hanselmann
        for field in self.op.output_fields:
1893 dcb93971 Michael Hanselmann
          if field == "node":
1894 dcb93971 Michael Hanselmann
            val = node
1895 dcb93971 Michael Hanselmann
          elif field == "phys":
1896 dcb93971 Michael Hanselmann
            val = vol['dev']
1897 dcb93971 Michael Hanselmann
          elif field == "vg":
1898 dcb93971 Michael Hanselmann
            val = vol['vg']
1899 dcb93971 Michael Hanselmann
          elif field == "name":
1900 dcb93971 Michael Hanselmann
            val = vol['name']
1901 dcb93971 Michael Hanselmann
          elif field == "size":
1902 dcb93971 Michael Hanselmann
            val = int(float(vol['size']))
1903 dcb93971 Michael Hanselmann
          elif field == "instance":
1904 dcb93971 Michael Hanselmann
            for inst in ilist:
1905 dcb93971 Michael Hanselmann
              if node not in lv_by_node[inst]:
1906 dcb93971 Michael Hanselmann
                continue
1907 dcb93971 Michael Hanselmann
              if vol['name'] in lv_by_node[inst][node]:
1908 dcb93971 Michael Hanselmann
                val = inst.name
1909 dcb93971 Michael Hanselmann
                break
1910 dcb93971 Michael Hanselmann
            else:
1911 dcb93971 Michael Hanselmann
              val = '-'
1912 dcb93971 Michael Hanselmann
          else:
1913 3ecf6786 Iustin Pop
            raise errors.ParameterError(field)
1914 dcb93971 Michael Hanselmann
          node_output.append(str(val))
1915 dcb93971 Michael Hanselmann
1916 dcb93971 Michael Hanselmann
        output.append(node_output)
1917 dcb93971 Michael Hanselmann
1918 dcb93971 Michael Hanselmann
    return output
1919 dcb93971 Michael Hanselmann
1920 dcb93971 Michael Hanselmann
1921 a8083063 Iustin Pop
class LUAddNode(LogicalUnit):
1922 a8083063 Iustin Pop
  """Logical unit for adding node to the cluster.
1923 a8083063 Iustin Pop

1924 a8083063 Iustin Pop
  """
1925 a8083063 Iustin Pop
  HPATH = "node-add"
1926 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1927 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1928 a8083063 Iustin Pop
1929 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1930 a8083063 Iustin Pop
    """Build hooks env.
1931 a8083063 Iustin Pop

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

1934 a8083063 Iustin Pop
    """
1935 a8083063 Iustin Pop
    env = {
1936 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
1937 a8083063 Iustin Pop
      "NODE_NAME": self.op.node_name,
1938 a8083063 Iustin Pop
      "NODE_PIP": self.op.primary_ip,
1939 a8083063 Iustin Pop
      "NODE_SIP": self.op.secondary_ip,
1940 a8083063 Iustin Pop
      }
1941 a8083063 Iustin Pop
    nodes_0 = self.cfg.GetNodeList()
1942 a8083063 Iustin Pop
    nodes_1 = nodes_0 + [self.op.node_name, ]
1943 a8083063 Iustin Pop
    return env, nodes_0, nodes_1
1944 a8083063 Iustin Pop
1945 a8083063 Iustin Pop
  def CheckPrereq(self):
1946 a8083063 Iustin Pop
    """Check prerequisites.
1947 a8083063 Iustin Pop

1948 a8083063 Iustin Pop
    This checks:
1949 a8083063 Iustin Pop
     - the new node is not already in the config
1950 a8083063 Iustin Pop
     - it is resolvable
1951 a8083063 Iustin Pop
     - its parameters (single/dual homed) matches the cluster
1952 a8083063 Iustin Pop

1953 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
1954 a8083063 Iustin Pop

1955 a8083063 Iustin Pop
    """
1956 a8083063 Iustin Pop
    node_name = self.op.node_name
1957 a8083063 Iustin Pop
    cfg = self.cfg
1958 a8083063 Iustin Pop
1959 89e1fc26 Iustin Pop
    dns_data = utils.HostInfo(node_name)
1960 a8083063 Iustin Pop
1961 bcf043c9 Iustin Pop
    node = dns_data.name
1962 bcf043c9 Iustin Pop
    primary_ip = self.op.primary_ip = dns_data.ip
1963 a8083063 Iustin Pop
    secondary_ip = getattr(self.op, "secondary_ip", None)
1964 a8083063 Iustin Pop
    if secondary_ip is None:
1965 a8083063 Iustin Pop
      secondary_ip = primary_ip
1966 a8083063 Iustin Pop
    if not utils.IsValidIP(secondary_ip):
1967 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Invalid secondary IP given")
1968 a8083063 Iustin Pop
    self.op.secondary_ip = secondary_ip
1969 e7c6e02b Michael Hanselmann
1970 a8083063 Iustin Pop
    node_list = cfg.GetNodeList()
1971 e7c6e02b Michael Hanselmann
    if not self.op.readd and node in node_list:
1972 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is already in the configuration" %
1973 e7c6e02b Michael Hanselmann
                                 node)
1974 e7c6e02b Michael Hanselmann
    elif self.op.readd and node not in node_list:
1975 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is not in the configuration" % node)
1976 a8083063 Iustin Pop
1977 a8083063 Iustin Pop
    for existing_node_name in node_list:
1978 a8083063 Iustin Pop
      existing_node = cfg.GetNodeInfo(existing_node_name)
1979 e7c6e02b Michael Hanselmann
1980 e7c6e02b Michael Hanselmann
      if self.op.readd and node == existing_node_name:
1981 e7c6e02b Michael Hanselmann
        if (existing_node.primary_ip != primary_ip or
1982 e7c6e02b Michael Hanselmann
            existing_node.secondary_ip != secondary_ip):
1983 e7c6e02b Michael Hanselmann
          raise errors.OpPrereqError("Readded node doesn't have the same IP"
1984 e7c6e02b Michael Hanselmann
                                     " address configuration as before")
1985 e7c6e02b Michael Hanselmann
        continue
1986 e7c6e02b Michael Hanselmann
1987 a8083063 Iustin Pop
      if (existing_node.primary_ip == primary_ip or
1988 a8083063 Iustin Pop
          existing_node.secondary_ip == primary_ip or
1989 a8083063 Iustin Pop
          existing_node.primary_ip == secondary_ip or
1990 a8083063 Iustin Pop
          existing_node.secondary_ip == secondary_ip):
1991 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("New node ip address(es) conflict with"
1992 3ecf6786 Iustin Pop
                                   " existing node %s" % existing_node.name)
1993 a8083063 Iustin Pop
1994 a8083063 Iustin Pop
    # check that the type of the node (single versus dual homed) is the
1995 a8083063 Iustin Pop
    # same as for the master
1996 d6a02168 Michael Hanselmann
    myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
1997 a8083063 Iustin Pop
    master_singlehomed = myself.secondary_ip == myself.primary_ip
1998 a8083063 Iustin Pop
    newbie_singlehomed = secondary_ip == primary_ip
1999 a8083063 Iustin Pop
    if master_singlehomed != newbie_singlehomed:
2000 a8083063 Iustin Pop
      if master_singlehomed:
2001 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has no private ip but the"
2002 3ecf6786 Iustin Pop
                                   " new node has one")
2003 a8083063 Iustin Pop
      else:
2004 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has a private ip but the"
2005 3ecf6786 Iustin Pop
                                   " new node doesn't have one")
2006 a8083063 Iustin Pop
2007 a8083063 Iustin Pop
    # checks reachablity
2008 b15d625f Iustin Pop
    if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
2009 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node not reachable by ping")
2010 a8083063 Iustin Pop
2011 a8083063 Iustin Pop
    if not newbie_singlehomed:
2012 a8083063 Iustin Pop
      # check reachability from my secondary ip to newbie's secondary ip
2013 b15d625f Iustin Pop
      if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
2014 b15d625f Iustin Pop
                           source=myself.secondary_ip):
2015 f4bc1f2c Michael Hanselmann
        raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
2016 f4bc1f2c Michael Hanselmann
                                   " based ping to noded port")
2017 a8083063 Iustin Pop
2018 0fff97e9 Guido Trotter
    cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2019 ec0292f1 Iustin Pop
    mc_now, _ = self.cfg.GetMasterCandidateStats()
2020 ec0292f1 Iustin Pop
    master_candidate = mc_now < cp_size
2021 0fff97e9 Guido Trotter
2022 a8083063 Iustin Pop
    self.new_node = objects.Node(name=node,
2023 a8083063 Iustin Pop
                                 primary_ip=primary_ip,
2024 0fff97e9 Guido Trotter
                                 secondary_ip=secondary_ip,
2025 fc0fe88c Iustin Pop
                                 master_candidate=master_candidate,
2026 fc0fe88c Iustin Pop
                                 offline=False)
2027 a8083063 Iustin Pop
2028 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2029 a8083063 Iustin Pop
    """Adds the new node to the cluster.
2030 a8083063 Iustin Pop

2031 a8083063 Iustin Pop
    """
2032 a8083063 Iustin Pop
    new_node = self.new_node
2033 a8083063 Iustin Pop
    node = new_node.name
2034 a8083063 Iustin Pop
2035 a8083063 Iustin Pop
    # check connectivity
2036 72737a7f Iustin Pop
    result = self.rpc.call_version([node])[node]
2037 781de953 Iustin Pop
    result.Raise()
2038 781de953 Iustin Pop
    if result.data:
2039 781de953 Iustin Pop
      if constants.PROTOCOL_VERSION == result.data:
2040 9a4f63d1 Iustin Pop
        logging.info("Communication to node %s fine, sw version %s match",
2041 781de953 Iustin Pop
                     node, result.data)
2042 a8083063 Iustin Pop
      else:
2043 3ecf6786 Iustin Pop
        raise errors.OpExecError("Version mismatch master version %s,"
2044 3ecf6786 Iustin Pop
                                 " node version %s" %
2045 781de953 Iustin Pop
                                 (constants.PROTOCOL_VERSION, result.data))
2046 a8083063 Iustin Pop
    else:
2047 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot get version from the new node")
2048 a8083063 Iustin Pop
2049 a8083063 Iustin Pop
    # setup ssh on node
2050 9a4f63d1 Iustin Pop
    logging.info("Copy ssh key to node %s", node)
2051 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
2052 a8083063 Iustin Pop
    keyarray = []
2053 70d9e3d8 Iustin Pop
    keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
2054 70d9e3d8 Iustin Pop
                constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
2055 70d9e3d8 Iustin Pop
                priv_key, pub_key]
2056 a8083063 Iustin Pop
2057 a8083063 Iustin Pop
    for i in keyfiles:
2058 a8083063 Iustin Pop
      f = open(i, 'r')
2059 a8083063 Iustin Pop
      try:
2060 a8083063 Iustin Pop
        keyarray.append(f.read())
2061 a8083063 Iustin Pop
      finally:
2062 a8083063 Iustin Pop
        f.close()
2063 a8083063 Iustin Pop
2064 72737a7f Iustin Pop
    result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
2065 72737a7f Iustin Pop
                                    keyarray[2],
2066 72737a7f Iustin Pop
                                    keyarray[3], keyarray[4], keyarray[5])
2067 a8083063 Iustin Pop
2068 781de953 Iustin Pop
    if result.failed or not result.data:
2069 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot transfer ssh keys to the new node")
2070 a8083063 Iustin Pop
2071 a8083063 Iustin Pop
    # Add node to our /etc/hosts, and add key to known_hosts
2072 d9c02ca6 Michael Hanselmann
    utils.AddHostToEtcHosts(new_node.name)
2073 c8a0948f Michael Hanselmann
2074 a8083063 Iustin Pop
    if new_node.secondary_ip != new_node.primary_ip:
2075 781de953 Iustin Pop
      result = self.rpc.call_node_has_ip_address(new_node.name,
2076 781de953 Iustin Pop
                                                 new_node.secondary_ip)
2077 781de953 Iustin Pop
      if result.failed or not result.data:
2078 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Node claims it doesn't have the secondary ip"
2079 f4bc1f2c Michael Hanselmann
                                 " you gave (%s). Please fix and re-run this"
2080 f4bc1f2c Michael Hanselmann
                                 " command." % new_node.secondary_ip)
2081 a8083063 Iustin Pop
2082 d6a02168 Michael Hanselmann
    node_verify_list = [self.cfg.GetMasterNode()]
2083 5c0527ed Guido Trotter
    node_verify_param = {
2084 5c0527ed Guido Trotter
      'nodelist': [node],
2085 5c0527ed Guido Trotter
      # TODO: do a node-net-test as well?
2086 5c0527ed Guido Trotter
    }
2087 5c0527ed Guido Trotter
2088 72737a7f Iustin Pop
    result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
2089 72737a7f Iustin Pop
                                       self.cfg.GetClusterName())
2090 5c0527ed Guido Trotter
    for verifier in node_verify_list:
2091 f08ce603 Guido Trotter
      if result[verifier].failed or not result[verifier].data:
2092 5c0527ed Guido Trotter
        raise errors.OpExecError("Cannot communicate with %s's node daemon"
2093 5c0527ed Guido Trotter
                                 " for remote verification" % verifier)
2094 781de953 Iustin Pop
      if result[verifier].data['nodelist']:
2095 781de953 Iustin Pop
        for failed in result[verifier].data['nodelist']:
2096 5c0527ed Guido Trotter
          feedback_fn("ssh/hostname verification failed %s -> %s" %
2097 5c0527ed Guido Trotter
                      (verifier, result[verifier]['nodelist'][failed]))
2098 5c0527ed Guido Trotter
        raise errors.OpExecError("ssh/hostname verification failed.")
2099 ff98055b Iustin Pop
2100 a8083063 Iustin Pop
    # Distribute updated /etc/hosts and known_hosts to all nodes,
2101 a8083063 Iustin Pop
    # including the node just added
2102 d6a02168 Michael Hanselmann
    myself = self.cfg.GetNodeInfo(self.cfg.GetMasterNode())
2103 102b115b Michael Hanselmann
    dist_nodes = self.cfg.GetNodeList()
2104 102b115b Michael Hanselmann
    if not self.op.readd:
2105 102b115b Michael Hanselmann
      dist_nodes.append(node)
2106 a8083063 Iustin Pop
    if myself.name in dist_nodes:
2107 a8083063 Iustin Pop
      dist_nodes.remove(myself.name)
2108 a8083063 Iustin Pop
2109 9a4f63d1 Iustin Pop
    logging.debug("Copying hosts and known_hosts to all nodes")
2110 107711b0 Michael Hanselmann
    for fname in (constants.ETC_HOSTS, constants.SSH_KNOWN_HOSTS_FILE):
2111 72737a7f Iustin Pop
      result = self.rpc.call_upload_file(dist_nodes, fname)
2112 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
2113 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
2114 9a4f63d1 Iustin Pop
          logging.error("Copy of file %s to node %s failed", fname, to_node)
2115 a8083063 Iustin Pop
2116 d6a02168 Michael Hanselmann
    to_copy = []
2117 00cd937c Iustin Pop
    if constants.HT_XEN_HVM in self.cfg.GetClusterInfo().enabled_hypervisors:
2118 2a6469d5 Alexander Schreiber
      to_copy.append(constants.VNC_PASSWORD_FILE)
2119 a8083063 Iustin Pop
    for fname in to_copy:
2120 72737a7f Iustin Pop
      result = self.rpc.call_upload_file([node], fname)
2121 781de953 Iustin Pop
      if result[node].failed or not result[node]:
2122 9a4f63d1 Iustin Pop
        logging.error("Could not copy file %s to node %s", fname, node)
2123 a8083063 Iustin Pop
2124 d8470559 Michael Hanselmann
    if self.op.readd:
2125 d8470559 Michael Hanselmann
      self.context.ReaddNode(new_node)
2126 d8470559 Michael Hanselmann
    else:
2127 d8470559 Michael Hanselmann
      self.context.AddNode(new_node)
2128 a8083063 Iustin Pop
2129 a8083063 Iustin Pop
2130 b31c8676 Iustin Pop
class LUSetNodeParams(LogicalUnit):
2131 b31c8676 Iustin Pop
  """Modifies the parameters of a node.
2132 b31c8676 Iustin Pop

2133 b31c8676 Iustin Pop
  """
2134 b31c8676 Iustin Pop
  HPATH = "node-modify"
2135 b31c8676 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2136 b31c8676 Iustin Pop
  _OP_REQP = ["node_name"]
2137 b31c8676 Iustin Pop
  REQ_BGL = False
2138 b31c8676 Iustin Pop
2139 b31c8676 Iustin Pop
  def CheckArguments(self):
2140 b31c8676 Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2141 b31c8676 Iustin Pop
    if node_name is None:
2142 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2143 b31c8676 Iustin Pop
    self.op.node_name = node_name
2144 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'master_candidate')
2145 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'offline')
2146 3a5ba66a Iustin Pop
    if self.op.master_candidate is None and self.op.offline is None:
2147 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Please pass at least one modification")
2148 3a5ba66a Iustin Pop
    if self.op.offline == True and self.op.master_candidate == True:
2149 3a5ba66a Iustin Pop
      raise errors.OpPrereqError("Can't set the node into offline and"
2150 3a5ba66a Iustin Pop
                                 " master_candidate at the same time")
2151 b31c8676 Iustin Pop
2152 b31c8676 Iustin Pop
  def ExpandNames(self):
2153 b31c8676 Iustin Pop
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2154 b31c8676 Iustin Pop
2155 b31c8676 Iustin Pop
  def BuildHooksEnv(self):
2156 b31c8676 Iustin Pop
    """Build hooks env.
2157 b31c8676 Iustin Pop

2158 b31c8676 Iustin Pop
    This runs on the master node.
2159 b31c8676 Iustin Pop

2160 b31c8676 Iustin Pop
    """
2161 b31c8676 Iustin Pop
    env = {
2162 b31c8676 Iustin Pop
      "OP_TARGET": self.op.node_name,
2163 b31c8676 Iustin Pop
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2164 3a5ba66a Iustin Pop
      "OFFLINE": str(self.op.offline),
2165 b31c8676 Iustin Pop
      }
2166 b31c8676 Iustin Pop
    nl = [self.cfg.GetMasterNode(),
2167 b31c8676 Iustin Pop
          self.op.node_name]
2168 b31c8676 Iustin Pop
    return env, nl, nl
2169 b31c8676 Iustin Pop
2170 b31c8676 Iustin Pop
  def CheckPrereq(self):
2171 b31c8676 Iustin Pop
    """Check prerequisites.
2172 b31c8676 Iustin Pop

2173 b31c8676 Iustin Pop
    This only checks the instance list against the existing names.
2174 b31c8676 Iustin Pop

2175 b31c8676 Iustin Pop
    """
2176 3a5ba66a Iustin Pop
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2177 b31c8676 Iustin Pop
2178 3a5ba66a Iustin Pop
    if ((self.op.master_candidate == False or self.op.offline == True)
2179 3a5ba66a Iustin Pop
        and node.master_candidate):
2180 3a5ba66a Iustin Pop
      # we will demote the node from master_candidate
2181 3a26773f Iustin Pop
      if self.op.node_name == self.cfg.GetMasterNode():
2182 3a26773f Iustin Pop
        raise errors.OpPrereqError("The master node has to be a"
2183 3a5ba66a Iustin Pop
                                   " master candidate and online")
2184 3e83dd48 Iustin Pop
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2185 3a5ba66a Iustin Pop
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2186 3e83dd48 Iustin Pop
      if num_candidates <= cp_size:
2187 3e83dd48 Iustin Pop
        msg = ("Not enough master candidates (desired"
2188 3e83dd48 Iustin Pop
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2189 3a5ba66a Iustin Pop
        if self.op.force:
2190 3e83dd48 Iustin Pop
          self.LogWarning(msg)
2191 3e83dd48 Iustin Pop
        else:
2192 3e83dd48 Iustin Pop
          raise errors.OpPrereqError(msg)
2193 3e83dd48 Iustin Pop
2194 3a5ba66a Iustin Pop
    if (self.op.master_candidate == True and node.offline and
2195 3a5ba66a Iustin Pop
        not self.op.offline == False):
2196 3a5ba66a Iustin Pop
      raise errors.OpPrereqError("Can't set an offline node to"
2197 3a5ba66a Iustin Pop
                                 " master_candidate")
2198 3a5ba66a Iustin Pop
2199 b31c8676 Iustin Pop
    return
2200 b31c8676 Iustin Pop
2201 b31c8676 Iustin Pop
  def Exec(self, feedback_fn):
2202 b31c8676 Iustin Pop
    """Modifies a node.
2203 b31c8676 Iustin Pop

2204 b31c8676 Iustin Pop
    """
2205 3a5ba66a Iustin Pop
    node = self.node
2206 b31c8676 Iustin Pop
2207 b31c8676 Iustin Pop
    result = []
2208 b31c8676 Iustin Pop
2209 3a5ba66a Iustin Pop
    if self.op.offline is not None:
2210 3a5ba66a Iustin Pop
      node.offline = self.op.offline
2211 3a5ba66a Iustin Pop
      result.append(("offline", str(self.op.offline)))
2212 3a5ba66a Iustin Pop
      if self.op.offline == True and node.master_candidate:
2213 3a5ba66a Iustin Pop
        node.master_candidate = False
2214 3a5ba66a Iustin Pop
        result.append(("master_candidate", "auto-demotion due to offline"))
2215 3a5ba66a Iustin Pop
2216 b31c8676 Iustin Pop
    if self.op.master_candidate is not None:
2217 b31c8676 Iustin Pop
      node.master_candidate = self.op.master_candidate
2218 b31c8676 Iustin Pop
      result.append(("master_candidate", str(self.op.master_candidate)))
2219 56aa9fd5 Iustin Pop
      if self.op.master_candidate == False:
2220 56aa9fd5 Iustin Pop
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2221 56aa9fd5 Iustin Pop
        if (rrc.failed or not isinstance(rrc.data, (tuple, list))
2222 56aa9fd5 Iustin Pop
            or len(rrc.data) != 2):
2223 56aa9fd5 Iustin Pop
          self.LogWarning("Node rpc error: %s" % rrc.error)
2224 56aa9fd5 Iustin Pop
        elif not rrc.data[0]:
2225 56aa9fd5 Iustin Pop
          self.LogWarning("Node failed to demote itself: %s" % rrc.data[1])
2226 b31c8676 Iustin Pop
2227 b31c8676 Iustin Pop
    # this will trigger configuration file update, if needed
2228 b31c8676 Iustin Pop
    self.cfg.Update(node)
2229 b31c8676 Iustin Pop
    # this will trigger job queue propagation or cleanup
2230 3a26773f Iustin Pop
    if self.op.node_name != self.cfg.GetMasterNode():
2231 3a26773f Iustin Pop
      self.context.ReaddNode(node)
2232 b31c8676 Iustin Pop
2233 b31c8676 Iustin Pop
    return result
2234 b31c8676 Iustin Pop
2235 b31c8676 Iustin Pop
2236 a8083063 Iustin Pop
class LUQueryClusterInfo(NoHooksLU):
2237 a8083063 Iustin Pop
  """Query cluster configuration.
2238 a8083063 Iustin Pop

2239 a8083063 Iustin Pop
  """
2240 a8083063 Iustin Pop
  _OP_REQP = []
2241 642339cf Guido Trotter
  REQ_BGL = False
2242 642339cf Guido Trotter
2243 642339cf Guido Trotter
  def ExpandNames(self):
2244 642339cf Guido Trotter
    self.needed_locks = {}
2245 a8083063 Iustin Pop
2246 a8083063 Iustin Pop
  def CheckPrereq(self):
2247 a8083063 Iustin Pop
    """No prerequsites needed for this LU.
2248 a8083063 Iustin Pop

2249 a8083063 Iustin Pop
    """
2250 a8083063 Iustin Pop
    pass
2251 a8083063 Iustin Pop
2252 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2253 a8083063 Iustin Pop
    """Return cluster config.
2254 a8083063 Iustin Pop

2255 a8083063 Iustin Pop
    """
2256 469f88e1 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
2257 a8083063 Iustin Pop
    result = {
2258 a8083063 Iustin Pop
      "software_version": constants.RELEASE_VERSION,
2259 a8083063 Iustin Pop
      "protocol_version": constants.PROTOCOL_VERSION,
2260 a8083063 Iustin Pop
      "config_version": constants.CONFIG_VERSION,
2261 a8083063 Iustin Pop
      "os_api_version": constants.OS_API_VERSION,
2262 a8083063 Iustin Pop
      "export_version": constants.EXPORT_VERSION,
2263 a8083063 Iustin Pop
      "architecture": (platform.architecture()[0], platform.machine()),
2264 469f88e1 Iustin Pop
      "name": cluster.cluster_name,
2265 469f88e1 Iustin Pop
      "master": cluster.master_node,
2266 02691904 Alexander Schreiber
      "default_hypervisor": cluster.default_hypervisor,
2267 469f88e1 Iustin Pop
      "enabled_hypervisors": cluster.enabled_hypervisors,
2268 469f88e1 Iustin Pop
      "hvparams": cluster.hvparams,
2269 469f88e1 Iustin Pop
      "beparams": cluster.beparams,
2270 4b7735f9 Iustin Pop
      "candidate_pool_size": cluster.candidate_pool_size,
2271 a8083063 Iustin Pop
      }
2272 a8083063 Iustin Pop
2273 a8083063 Iustin Pop
    return result
2274 a8083063 Iustin Pop
2275 a8083063 Iustin Pop
2276 ae5849b5 Michael Hanselmann
class LUQueryConfigValues(NoHooksLU):
2277 ae5849b5 Michael Hanselmann
  """Return configuration values.
2278 a8083063 Iustin Pop

2279 a8083063 Iustin Pop
  """
2280 a8083063 Iustin Pop
  _OP_REQP = []
2281 642339cf Guido Trotter
  REQ_BGL = False
2282 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet()
2283 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2284 642339cf Guido Trotter
2285 642339cf Guido Trotter
  def ExpandNames(self):
2286 642339cf Guido Trotter
    self.needed_locks = {}
2287 a8083063 Iustin Pop
2288 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2289 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2290 ae5849b5 Michael Hanselmann
                       selected=self.op.output_fields)
2291 ae5849b5 Michael Hanselmann
2292 a8083063 Iustin Pop
  def CheckPrereq(self):
2293 a8083063 Iustin Pop
    """No prerequisites.
2294 a8083063 Iustin Pop

2295 a8083063 Iustin Pop
    """
2296 a8083063 Iustin Pop
    pass
2297 a8083063 Iustin Pop
2298 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2299 a8083063 Iustin Pop
    """Dump a representation of the cluster config to the standard output.
2300 a8083063 Iustin Pop

2301 a8083063 Iustin Pop
    """
2302 ae5849b5 Michael Hanselmann
    values = []
2303 ae5849b5 Michael Hanselmann
    for field in self.op.output_fields:
2304 ae5849b5 Michael Hanselmann
      if field == "cluster_name":
2305 3ccafd0e Iustin Pop
        entry = self.cfg.GetClusterName()
2306 ae5849b5 Michael Hanselmann
      elif field == "master_node":
2307 3ccafd0e Iustin Pop
        entry = self.cfg.GetMasterNode()
2308 3ccafd0e Iustin Pop
      elif field == "drain_flag":
2309 3ccafd0e Iustin Pop
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2310 ae5849b5 Michael Hanselmann
      else:
2311 ae5849b5 Michael Hanselmann
        raise errors.ParameterError(field)
2312 3ccafd0e Iustin Pop
      values.append(entry)
2313 ae5849b5 Michael Hanselmann
    return values
2314 a8083063 Iustin Pop
2315 a8083063 Iustin Pop
2316 a8083063 Iustin Pop
class LUActivateInstanceDisks(NoHooksLU):
2317 a8083063 Iustin Pop
  """Bring up an instance's disks.
2318 a8083063 Iustin Pop

2319 a8083063 Iustin Pop
  """
2320 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2321 f22a8ba3 Guido Trotter
  REQ_BGL = False
2322 f22a8ba3 Guido Trotter
2323 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2324 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2325 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2326 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2327 f22a8ba3 Guido Trotter
2328 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2329 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2330 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2331 a8083063 Iustin Pop
2332 a8083063 Iustin Pop
  def CheckPrereq(self):
2333 a8083063 Iustin Pop
    """Check prerequisites.
2334 a8083063 Iustin Pop

2335 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2336 a8083063 Iustin Pop

2337 a8083063 Iustin Pop
    """
2338 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2339 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2340 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2341 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2342 a8083063 Iustin Pop
2343 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2344 a8083063 Iustin Pop
    """Activate the disks.
2345 a8083063 Iustin Pop

2346 a8083063 Iustin Pop
    """
2347 b9bddb6b Iustin Pop
    disks_ok, disks_info = _AssembleInstanceDisks(self, self.instance)
2348 a8083063 Iustin Pop
    if not disks_ok:
2349 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot activate block devices")
2350 a8083063 Iustin Pop
2351 a8083063 Iustin Pop
    return disks_info
2352 a8083063 Iustin Pop
2353 a8083063 Iustin Pop
2354 b9bddb6b Iustin Pop
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False):
2355 a8083063 Iustin Pop
  """Prepare the block devices for an instance.
2356 a8083063 Iustin Pop

2357 a8083063 Iustin Pop
  This sets up the block devices on all nodes.
2358 a8083063 Iustin Pop

2359 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
2360 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
2361 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
2362 e4376078 Iustin Pop
  @param instance: the instance for whose disks we assemble
2363 e4376078 Iustin Pop
  @type ignore_secondaries: boolean
2364 e4376078 Iustin Pop
  @param ignore_secondaries: if true, errors on secondary nodes
2365 e4376078 Iustin Pop
      won't result in an error return from the function
2366 e4376078 Iustin Pop
  @return: False if the operation failed, otherwise a list of
2367 e4376078 Iustin Pop
      (host, instance_visible_name, node_visible_name)
2368 e4376078 Iustin Pop
      with the mapping from node devices to instance devices
2369 a8083063 Iustin Pop

2370 a8083063 Iustin Pop
  """
2371 a8083063 Iustin Pop
  device_info = []
2372 a8083063 Iustin Pop
  disks_ok = True
2373 fdbd668d Iustin Pop
  iname = instance.name
2374 fdbd668d Iustin Pop
  # With the two passes mechanism we try to reduce the window of
2375 fdbd668d Iustin Pop
  # opportunity for the race condition of switching DRBD to primary
2376 fdbd668d Iustin Pop
  # before handshaking occured, but we do not eliminate it
2377 fdbd668d Iustin Pop
2378 fdbd668d Iustin Pop
  # The proper fix would be to wait (with some limits) until the
2379 fdbd668d Iustin Pop
  # connection has been made and drbd transitions from WFConnection
2380 fdbd668d Iustin Pop
  # into any other network-connected state (Connected, SyncTarget,
2381 fdbd668d Iustin Pop
  # SyncSource, etc.)
2382 fdbd668d Iustin Pop
2383 fdbd668d Iustin Pop
  # 1st pass, assemble on all nodes in secondary mode
2384 a8083063 Iustin Pop
  for inst_disk in instance.disks:
2385 a8083063 Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2386 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2387 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
2388 781de953 Iustin Pop
      if result.failed or not result:
2389 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2390 86d9d3bb Iustin Pop
                           " (is_primary=False, pass=1)",
2391 86d9d3bb Iustin Pop
                           inst_disk.iv_name, node)
2392 fdbd668d Iustin Pop
        if not ignore_secondaries:
2393 a8083063 Iustin Pop
          disks_ok = False
2394 fdbd668d Iustin Pop
2395 fdbd668d Iustin Pop
  # FIXME: race condition on drbd migration to primary
2396 fdbd668d Iustin Pop
2397 fdbd668d Iustin Pop
  # 2nd pass, do only the primary node
2398 fdbd668d Iustin Pop
  for inst_disk in instance.disks:
2399 fdbd668d Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2400 fdbd668d Iustin Pop
      if node != instance.primary_node:
2401 fdbd668d Iustin Pop
        continue
2402 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2403 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
2404 781de953 Iustin Pop
      if result.failed or not result:
2405 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2406 86d9d3bb Iustin Pop
                           " (is_primary=True, pass=2)",
2407 86d9d3bb Iustin Pop
                           inst_disk.iv_name, node)
2408 fdbd668d Iustin Pop
        disks_ok = False
2409 2b17c3c4 Iustin Pop
    device_info.append((instance.primary_node, inst_disk.iv_name, result.data))
2410 a8083063 Iustin Pop
2411 b352ab5b Iustin Pop
  # leave the disks configured for the primary node
2412 b352ab5b Iustin Pop
  # this is a workaround that would be fixed better by
2413 b352ab5b Iustin Pop
  # improving the logical/physical id handling
2414 b352ab5b Iustin Pop
  for disk in instance.disks:
2415 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(disk, instance.primary_node)
2416 b352ab5b Iustin Pop
2417 a8083063 Iustin Pop
  return disks_ok, device_info
2418 a8083063 Iustin Pop
2419 a8083063 Iustin Pop
2420 b9bddb6b Iustin Pop
def _StartInstanceDisks(lu, instance, force):
2421 3ecf6786 Iustin Pop
  """Start the disks of an instance.
2422 3ecf6786 Iustin Pop

2423 3ecf6786 Iustin Pop
  """
2424 b9bddb6b Iustin Pop
  disks_ok, dummy = _AssembleInstanceDisks(lu, instance,
2425 fe7b0351 Michael Hanselmann
                                           ignore_secondaries=force)
2426 fe7b0351 Michael Hanselmann
  if not disks_ok:
2427 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(lu, instance)
2428 fe7b0351 Michael Hanselmann
    if force is not None and not force:
2429 86d9d3bb Iustin Pop
      lu.proc.LogWarning("", hint="If the message above refers to a"
2430 86d9d3bb Iustin Pop
                         " secondary node,"
2431 86d9d3bb Iustin Pop
                         " you can retry the operation using '--force'.")
2432 3ecf6786 Iustin Pop
    raise errors.OpExecError("Disk consistency error")
2433 fe7b0351 Michael Hanselmann
2434 fe7b0351 Michael Hanselmann
2435 a8083063 Iustin Pop
class LUDeactivateInstanceDisks(NoHooksLU):
2436 a8083063 Iustin Pop
  """Shutdown an instance's disks.
2437 a8083063 Iustin Pop

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

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

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

2464 a8083063 Iustin Pop
    """
2465 a8083063 Iustin Pop
    instance = self.instance
2466 b9bddb6b Iustin Pop
    _SafeShutdownInstanceDisks(self, instance)
2467 a8083063 Iustin Pop
2468 a8083063 Iustin Pop
2469 b9bddb6b Iustin Pop
def _SafeShutdownInstanceDisks(lu, instance):
2470 155d6c75 Guido Trotter
  """Shutdown block devices of an instance.
2471 155d6c75 Guido Trotter

2472 155d6c75 Guido Trotter
  This function checks if an instance is running, before calling
2473 155d6c75 Guido Trotter
  _ShutdownInstanceDisks.
2474 155d6c75 Guido Trotter

2475 155d6c75 Guido Trotter
  """
2476 72737a7f Iustin Pop
  ins_l = lu.rpc.call_instance_list([instance.primary_node],
2477 72737a7f Iustin Pop
                                      [instance.hypervisor])
2478 155d6c75 Guido Trotter
  ins_l = ins_l[instance.primary_node]
2479 781de953 Iustin Pop
  if ins_l.failed or not isinstance(ins_l.data, list):
2480 155d6c75 Guido Trotter
    raise errors.OpExecError("Can't contact node '%s'" %
2481 155d6c75 Guido Trotter
                             instance.primary_node)
2482 155d6c75 Guido Trotter
2483 781de953 Iustin Pop
  if instance.name in ins_l.data:
2484 155d6c75 Guido Trotter
    raise errors.OpExecError("Instance is running, can't shutdown"
2485 155d6c75 Guido Trotter
                             " block devices.")
2486 155d6c75 Guido Trotter
2487 b9bddb6b Iustin Pop
  _ShutdownInstanceDisks(lu, instance)
2488 a8083063 Iustin Pop
2489 a8083063 Iustin Pop
2490 b9bddb6b Iustin Pop
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2491 a8083063 Iustin Pop
  """Shutdown block devices of an instance.
2492 a8083063 Iustin Pop

2493 a8083063 Iustin Pop
  This does the shutdown on all nodes of the instance.
2494 a8083063 Iustin Pop

2495 a8083063 Iustin Pop
  If the ignore_primary is false, errors on the primary node are
2496 a8083063 Iustin Pop
  ignored.
2497 a8083063 Iustin Pop

2498 a8083063 Iustin Pop
  """
2499 a8083063 Iustin Pop
  result = True
2500 a8083063 Iustin Pop
  for disk in instance.disks:
2501 a8083063 Iustin Pop
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2502 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(top_disk, node)
2503 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2504 781de953 Iustin Pop
      if result.failed or not result.data:
2505 9a4f63d1 Iustin Pop
        logging.error("Could not shutdown block device %s on node %s",
2506 9a4f63d1 Iustin Pop
                      disk.iv_name, node)
2507 a8083063 Iustin Pop
        if not ignore_primary or node != instance.primary_node:
2508 a8083063 Iustin Pop
          result = False
2509 a8083063 Iustin Pop
  return result
2510 a8083063 Iustin Pop
2511 a8083063 Iustin Pop
2512 9ca87a96 Iustin Pop
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2513 d4f16fd9 Iustin Pop
  """Checks if a node has enough free memory.
2514 d4f16fd9 Iustin Pop

2515 d4f16fd9 Iustin Pop
  This function check if a given node has the needed amount of free
2516 d4f16fd9 Iustin Pop
  memory. In case the node has less memory or we cannot get the
2517 d4f16fd9 Iustin Pop
  information from the node, this function raise an OpPrereqError
2518 d4f16fd9 Iustin Pop
  exception.
2519 d4f16fd9 Iustin Pop

2520 b9bddb6b Iustin Pop
  @type lu: C{LogicalUnit}
2521 b9bddb6b Iustin Pop
  @param lu: a logical unit from which we get configuration data
2522 e69d05fd Iustin Pop
  @type node: C{str}
2523 e69d05fd Iustin Pop
  @param node: the node to check
2524 e69d05fd Iustin Pop
  @type reason: C{str}
2525 e69d05fd Iustin Pop
  @param reason: string to use in the error message
2526 e69d05fd Iustin Pop
  @type requested: C{int}
2527 e69d05fd Iustin Pop
  @param requested: the amount of memory in MiB to check for
2528 9ca87a96 Iustin Pop
  @type hypervisor_name: C{str}
2529 9ca87a96 Iustin Pop
  @param hypervisor_name: the hypervisor to ask for memory stats
2530 e69d05fd Iustin Pop
  @raise errors.OpPrereqError: if the node doesn't have enough memory, or
2531 e69d05fd Iustin Pop
      we cannot check the node
2532 d4f16fd9 Iustin Pop

2533 d4f16fd9 Iustin Pop
  """
2534 9ca87a96 Iustin Pop
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2535 781de953 Iustin Pop
  nodeinfo[node].Raise()
2536 781de953 Iustin Pop
  free_mem = nodeinfo[node].data.get('memory_free')
2537 d4f16fd9 Iustin Pop
  if not isinstance(free_mem, int):
2538 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2539 d4f16fd9 Iustin Pop
                             " was '%s'" % (node, free_mem))
2540 d4f16fd9 Iustin Pop
  if requested > free_mem:
2541 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2542 d4f16fd9 Iustin Pop
                             " needed %s MiB, available %s MiB" %
2543 d4f16fd9 Iustin Pop
                             (node, reason, requested, free_mem))
2544 d4f16fd9 Iustin Pop
2545 d4f16fd9 Iustin Pop
2546 a8083063 Iustin Pop
class LUStartupInstance(LogicalUnit):
2547 a8083063 Iustin Pop
  """Starts an instance.
2548 a8083063 Iustin Pop

2549 a8083063 Iustin Pop
  """
2550 a8083063 Iustin Pop
  HPATH = "instance-start"
2551 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2552 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "force"]
2553 e873317a Guido Trotter
  REQ_BGL = False
2554 e873317a Guido Trotter
2555 e873317a Guido Trotter
  def ExpandNames(self):
2556 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2557 a8083063 Iustin Pop
2558 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2559 a8083063 Iustin Pop
    """Build hooks env.
2560 a8083063 Iustin Pop

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

2563 a8083063 Iustin Pop
    """
2564 a8083063 Iustin Pop
    env = {
2565 a8083063 Iustin Pop
      "FORCE": self.op.force,
2566 a8083063 Iustin Pop
      }
2567 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2568 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.instance.primary_node] +
2569 a8083063 Iustin Pop
          list(self.instance.secondary_nodes))
2570 a8083063 Iustin Pop
    return env, nl, nl
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 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2579 e873317a Guido Trotter
    assert self.instance is not None, \
2580 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2581 a8083063 Iustin Pop
2582 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2583 7527a8a4 Iustin Pop
2584 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
2585 a8083063 Iustin Pop
    # check bridges existance
2586 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2587 a8083063 Iustin Pop
2588 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, instance.primary_node,
2589 d4f16fd9 Iustin Pop
                         "starting instance %s" % instance.name,
2590 338e51e8 Iustin Pop
                         bep[constants.BE_MEMORY], instance.hypervisor)
2591 d4f16fd9 Iustin Pop
2592 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2593 a8083063 Iustin Pop
    """Start the instance.
2594 a8083063 Iustin Pop

2595 a8083063 Iustin Pop
    """
2596 a8083063 Iustin Pop
    instance = self.instance
2597 a8083063 Iustin Pop
    force = self.op.force
2598 a8083063 Iustin Pop
    extra_args = getattr(self.op, "extra_args", "")
2599 a8083063 Iustin Pop
2600 fe482621 Iustin Pop
    self.cfg.MarkInstanceUp(instance.name)
2601 fe482621 Iustin Pop
2602 a8083063 Iustin Pop
    node_current = instance.primary_node
2603 a8083063 Iustin Pop
2604 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, instance, force)
2605 a8083063 Iustin Pop
2606 781de953 Iustin Pop
    result = self.rpc.call_instance_start(node_current, instance, extra_args)
2607 781de953 Iustin Pop
    if result.failed or not result.data:
2608 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2609 3ecf6786 Iustin Pop
      raise errors.OpExecError("Could not start instance")
2610 a8083063 Iustin Pop
2611 a8083063 Iustin Pop
2612 bf6929a2 Alexander Schreiber
class LURebootInstance(LogicalUnit):
2613 bf6929a2 Alexander Schreiber
  """Reboot an instance.
2614 bf6929a2 Alexander Schreiber

2615 bf6929a2 Alexander Schreiber
  """
2616 bf6929a2 Alexander Schreiber
  HPATH = "instance-reboot"
2617 bf6929a2 Alexander Schreiber
  HTYPE = constants.HTYPE_INSTANCE
2618 bf6929a2 Alexander Schreiber
  _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
2619 e873317a Guido Trotter
  REQ_BGL = False
2620 e873317a Guido Trotter
2621 e873317a Guido Trotter
  def ExpandNames(self):
2622 0fcc5db3 Guido Trotter
    if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
2623 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2624 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL]:
2625 0fcc5db3 Guido Trotter
      raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
2626 0fcc5db3 Guido Trotter
                                  (constants.INSTANCE_REBOOT_SOFT,
2627 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2628 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL))
2629 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2630 bf6929a2 Alexander Schreiber
2631 bf6929a2 Alexander Schreiber
  def BuildHooksEnv(self):
2632 bf6929a2 Alexander Schreiber
    """Build hooks env.
2633 bf6929a2 Alexander Schreiber

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

2636 bf6929a2 Alexander Schreiber
    """
2637 bf6929a2 Alexander Schreiber
    env = {
2638 bf6929a2 Alexander Schreiber
      "IGNORE_SECONDARIES": self.op.ignore_secondaries,
2639 bf6929a2 Alexander Schreiber
      }
2640 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2641 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.instance.primary_node] +
2642 bf6929a2 Alexander Schreiber
          list(self.instance.secondary_nodes))
2643 bf6929a2 Alexander Schreiber
    return env, nl, nl
2644 bf6929a2 Alexander Schreiber
2645 bf6929a2 Alexander Schreiber
  def CheckPrereq(self):
2646 bf6929a2 Alexander Schreiber
    """Check prerequisites.
2647 bf6929a2 Alexander Schreiber

2648 bf6929a2 Alexander Schreiber
    This checks that the instance is in the cluster.
2649 bf6929a2 Alexander Schreiber

2650 bf6929a2 Alexander Schreiber
    """
2651 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2652 e873317a Guido Trotter
    assert self.instance is not None, \
2653 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2654 bf6929a2 Alexander Schreiber
2655 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2656 7527a8a4 Iustin Pop
2657 bf6929a2 Alexander Schreiber
    # check bridges existance
2658 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2659 bf6929a2 Alexander Schreiber
2660 bf6929a2 Alexander Schreiber
  def Exec(self, feedback_fn):
2661 bf6929a2 Alexander Schreiber
    """Reboot the instance.
2662 bf6929a2 Alexander Schreiber

2663 bf6929a2 Alexander Schreiber
    """
2664 bf6929a2 Alexander Schreiber
    instance = self.instance
2665 bf6929a2 Alexander Schreiber
    ignore_secondaries = self.op.ignore_secondaries
2666 bf6929a2 Alexander Schreiber
    reboot_type = self.op.reboot_type
2667 bf6929a2 Alexander Schreiber
    extra_args = getattr(self.op, "extra_args", "")
2668 bf6929a2 Alexander Schreiber
2669 bf6929a2 Alexander Schreiber
    node_current = instance.primary_node
2670 bf6929a2 Alexander Schreiber
2671 bf6929a2 Alexander Schreiber
    if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
2672 bf6929a2 Alexander Schreiber
                       constants.INSTANCE_REBOOT_HARD]:
2673 781de953 Iustin Pop
      result = self.rpc.call_instance_reboot(node_current, instance,
2674 781de953 Iustin Pop
                                             reboot_type, extra_args)
2675 781de953 Iustin Pop
      if result.failed or not result.data:
2676 bf6929a2 Alexander Schreiber
        raise errors.OpExecError("Could not reboot instance")
2677 bf6929a2 Alexander Schreiber
    else:
2678 72737a7f Iustin Pop
      if not self.rpc.call_instance_shutdown(node_current, instance):
2679 bf6929a2 Alexander Schreiber
        raise errors.OpExecError("could not shutdown instance for full reboot")
2680 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2681 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, ignore_secondaries)
2682 781de953 Iustin Pop
      result = self.rpc.call_instance_start(node_current, instance, extra_args)
2683 781de953 Iustin Pop
      if result.failed or not result.data:
2684 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
2685 bf6929a2 Alexander Schreiber
        raise errors.OpExecError("Could not start instance for full reboot")
2686 bf6929a2 Alexander Schreiber
2687 bf6929a2 Alexander Schreiber
    self.cfg.MarkInstanceUp(instance.name)
2688 bf6929a2 Alexander Schreiber
2689 bf6929a2 Alexander Schreiber
2690 a8083063 Iustin Pop
class LUShutdownInstance(LogicalUnit):
2691 a8083063 Iustin Pop
  """Shutdown an instance.
2692 a8083063 Iustin Pop

2693 a8083063 Iustin Pop
  """
2694 a8083063 Iustin Pop
  HPATH = "instance-stop"
2695 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2696 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2697 e873317a Guido Trotter
  REQ_BGL = False
2698 e873317a Guido Trotter
2699 e873317a Guido Trotter
  def ExpandNames(self):
2700 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2701 a8083063 Iustin Pop
2702 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2703 a8083063 Iustin Pop
    """Build hooks env.
2704 a8083063 Iustin Pop

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

2707 a8083063 Iustin Pop
    """
2708 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2709 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.instance.primary_node] +
2710 a8083063 Iustin Pop
          list(self.instance.secondary_nodes))
2711 a8083063 Iustin Pop
    return env, nl, nl
2712 a8083063 Iustin Pop
2713 a8083063 Iustin Pop
  def CheckPrereq(self):
2714 a8083063 Iustin Pop
    """Check prerequisites.
2715 a8083063 Iustin Pop

2716 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2717 a8083063 Iustin Pop

2718 a8083063 Iustin Pop
    """
2719 e873317a Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2720 e873317a Guido Trotter
    assert self.instance is not None, \
2721 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2722 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2723 a8083063 Iustin Pop
2724 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2725 a8083063 Iustin Pop
    """Shutdown the instance.
2726 a8083063 Iustin Pop

2727 a8083063 Iustin Pop
    """
2728 a8083063 Iustin Pop
    instance = self.instance
2729 a8083063 Iustin Pop
    node_current = instance.primary_node
2730 fe482621 Iustin Pop
    self.cfg.MarkInstanceDown(instance.name)
2731 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(node_current, instance)
2732 781de953 Iustin Pop
    if result.failed or not result.data:
2733 86d9d3bb Iustin Pop
      self.proc.LogWarning("Could not shutdown instance")
2734 a8083063 Iustin Pop
2735 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(self, instance)
2736 a8083063 Iustin Pop
2737 a8083063 Iustin Pop
2738 fe7b0351 Michael Hanselmann
class LUReinstallInstance(LogicalUnit):
2739 fe7b0351 Michael Hanselmann
  """Reinstall an instance.
2740 fe7b0351 Michael Hanselmann

2741 fe7b0351 Michael Hanselmann
  """
2742 fe7b0351 Michael Hanselmann
  HPATH = "instance-reinstall"
2743 fe7b0351 Michael Hanselmann
  HTYPE = constants.HTYPE_INSTANCE
2744 fe7b0351 Michael Hanselmann
  _OP_REQP = ["instance_name"]
2745 4e0b4d2d Guido Trotter
  REQ_BGL = False
2746 4e0b4d2d Guido Trotter
2747 4e0b4d2d Guido Trotter
  def ExpandNames(self):
2748 4e0b4d2d Guido Trotter
    self._ExpandAndLockInstance()
2749 fe7b0351 Michael Hanselmann
2750 fe7b0351 Michael Hanselmann
  def BuildHooksEnv(self):
2751 fe7b0351 Michael Hanselmann
    """Build hooks env.
2752 fe7b0351 Michael Hanselmann

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

2755 fe7b0351 Michael Hanselmann
    """
2756 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2757 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.instance.primary_node] +
2758 fe7b0351 Michael Hanselmann
          list(self.instance.secondary_nodes))
2759 fe7b0351 Michael Hanselmann
    return env, nl, nl
2760 fe7b0351 Michael Hanselmann
2761 fe7b0351 Michael Hanselmann
  def CheckPrereq(self):
2762 fe7b0351 Michael Hanselmann
    """Check prerequisites.
2763 fe7b0351 Michael Hanselmann

2764 fe7b0351 Michael Hanselmann
    This checks that the instance is in the cluster and is not running.
2765 fe7b0351 Michael Hanselmann

2766 fe7b0351 Michael Hanselmann
    """
2767 4e0b4d2d Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2768 4e0b4d2d Guido Trotter
    assert instance is not None, \
2769 4e0b4d2d Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2770 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2771 4e0b4d2d Guido Trotter
2772 fe7b0351 Michael Hanselmann
    if instance.disk_template == constants.DT_DISKLESS:
2773 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' has no disks" %
2774 3ecf6786 Iustin Pop
                                 self.op.instance_name)
2775 fe7b0351 Michael Hanselmann
    if instance.status != "down":
2776 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2777 3ecf6786 Iustin Pop
                                 self.op.instance_name)
2778 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2779 72737a7f Iustin Pop
                                              instance.name,
2780 72737a7f Iustin Pop
                                              instance.hypervisor)
2781 781de953 Iustin Pop
    if remote_info.failed or remote_info.data:
2782 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2783 3ecf6786 Iustin Pop
                                 (self.op.instance_name,
2784 3ecf6786 Iustin Pop
                                  instance.primary_node))
2785 d0834de3 Michael Hanselmann
2786 d0834de3 Michael Hanselmann
    self.op.os_type = getattr(self.op, "os_type", None)
2787 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
2788 d0834de3 Michael Hanselmann
      # OS verification
2789 d0834de3 Michael Hanselmann
      pnode = self.cfg.GetNodeInfo(
2790 d0834de3 Michael Hanselmann
        self.cfg.ExpandNodeName(instance.primary_node))
2791 d0834de3 Michael Hanselmann
      if pnode is None:
2792 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Primary node '%s' is unknown" %
2793 3ecf6786 Iustin Pop
                                   self.op.pnode)
2794 781de953 Iustin Pop
      result = self.rpc.call_os_get(pnode.name, self.op.os_type)
2795 781de953 Iustin Pop
      result.Raise()
2796 781de953 Iustin Pop
      if not isinstance(result.data, objects.OS):
2797 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("OS '%s' not in supported OS list for"
2798 3ecf6786 Iustin Pop
                                   " primary node"  % self.op.os_type)
2799 d0834de3 Michael Hanselmann
2800 fe7b0351 Michael Hanselmann
    self.instance = instance
2801 fe7b0351 Michael Hanselmann
2802 fe7b0351 Michael Hanselmann
  def Exec(self, feedback_fn):
2803 fe7b0351 Michael Hanselmann
    """Reinstall the instance.
2804 fe7b0351 Michael Hanselmann

2805 fe7b0351 Michael Hanselmann
    """
2806 fe7b0351 Michael Hanselmann
    inst = self.instance
2807 fe7b0351 Michael Hanselmann
2808 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
2809 d0834de3 Michael Hanselmann
      feedback_fn("Changing OS to '%s'..." % self.op.os_type)
2810 d0834de3 Michael Hanselmann
      inst.os = self.op.os_type
2811 97abc79f Iustin Pop
      self.cfg.Update(inst)
2812 d0834de3 Michael Hanselmann
2813 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
2814 fe7b0351 Michael Hanselmann
    try:
2815 fe7b0351 Michael Hanselmann
      feedback_fn("Running the instance OS create scripts...")
2816 781de953 Iustin Pop
      result = self.rpc.call_instance_os_add(inst.primary_node, inst)
2817 781de953 Iustin Pop
      result.Raise()
2818 781de953 Iustin Pop
      if not result.data:
2819 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Could not install OS for instance %s"
2820 f4bc1f2c Michael Hanselmann
                                 " on node %s" %
2821 3ecf6786 Iustin Pop
                                 (inst.name, inst.primary_node))
2822 fe7b0351 Michael Hanselmann
    finally:
2823 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
2824 fe7b0351 Michael Hanselmann
2825 fe7b0351 Michael Hanselmann
2826 decd5f45 Iustin Pop
class LURenameInstance(LogicalUnit):
2827 decd5f45 Iustin Pop
  """Rename an instance.
2828 decd5f45 Iustin Pop

2829 decd5f45 Iustin Pop
  """
2830 decd5f45 Iustin Pop
  HPATH = "instance-rename"
2831 decd5f45 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2832 decd5f45 Iustin Pop
  _OP_REQP = ["instance_name", "new_name"]
2833 decd5f45 Iustin Pop
2834 decd5f45 Iustin Pop
  def BuildHooksEnv(self):
2835 decd5f45 Iustin Pop
    """Build hooks env.
2836 decd5f45 Iustin Pop

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

2839 decd5f45 Iustin Pop
    """
2840 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2841 decd5f45 Iustin Pop
    env["INSTANCE_NEW_NAME"] = self.op.new_name
2842 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.instance.primary_node] +
2843 decd5f45 Iustin Pop
          list(self.instance.secondary_nodes))
2844 decd5f45 Iustin Pop
    return env, nl, nl
2845 decd5f45 Iustin Pop
2846 decd5f45 Iustin Pop
  def CheckPrereq(self):
2847 decd5f45 Iustin Pop
    """Check prerequisites.
2848 decd5f45 Iustin Pop

2849 decd5f45 Iustin Pop
    This checks that the instance is in the cluster and is not running.
2850 decd5f45 Iustin Pop

2851 decd5f45 Iustin Pop
    """
2852 decd5f45 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
2853 decd5f45 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
2854 decd5f45 Iustin Pop
    if instance is None:
2855 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
2856 decd5f45 Iustin Pop
                                 self.op.instance_name)
2857 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2858 7527a8a4 Iustin Pop
2859 decd5f45 Iustin Pop
    if instance.status != "down":
2860 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
2861 decd5f45 Iustin Pop
                                 self.op.instance_name)
2862 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2863 72737a7f Iustin Pop
                                              instance.name,
2864 72737a7f Iustin Pop
                                              instance.hypervisor)
2865 781de953 Iustin Pop
    remote_info.Raise()
2866 781de953 Iustin Pop
    if remote_info.data:
2867 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
2868 decd5f45 Iustin Pop
                                 (self.op.instance_name,
2869 decd5f45 Iustin Pop
                                  instance.primary_node))
2870 decd5f45 Iustin Pop
    self.instance = instance
2871 decd5f45 Iustin Pop
2872 decd5f45 Iustin Pop
    # new name verification
2873 89e1fc26 Iustin Pop
    name_info = utils.HostInfo(self.op.new_name)
2874 decd5f45 Iustin Pop
2875 89e1fc26 Iustin Pop
    self.op.new_name = new_name = name_info.name
2876 7bde3275 Guido Trotter
    instance_list = self.cfg.GetInstanceList()
2877 7bde3275 Guido Trotter
    if new_name in instance_list:
2878 7bde3275 Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
2879 c09f363f Manuel Franceschini
                                 new_name)
2880 7bde3275 Guido Trotter
2881 decd5f45 Iustin Pop
    if not getattr(self.op, "ignore_ip", False):
2882 937f983d Guido Trotter
      if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
2883 decd5f45 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
2884 89e1fc26 Iustin Pop
                                   (name_info.ip, new_name))
2885 decd5f45 Iustin Pop
2886 decd5f45 Iustin Pop
2887 decd5f45 Iustin Pop
  def Exec(self, feedback_fn):
2888 decd5f45 Iustin Pop
    """Reinstall the instance.
2889 decd5f45 Iustin Pop

2890 decd5f45 Iustin Pop
    """
2891 decd5f45 Iustin Pop
    inst = self.instance
2892 decd5f45 Iustin Pop
    old_name = inst.name
2893 decd5f45 Iustin Pop
2894 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
2895 b23c4333 Manuel Franceschini
      old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
2896 b23c4333 Manuel Franceschini
2897 decd5f45 Iustin Pop
    self.cfg.RenameInstance(inst.name, self.op.new_name)
2898 74b5913f Guido Trotter
    # Change the instance lock. This is definitely safe while we hold the BGL
2899 cb4e8387 Iustin Pop
    self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
2900 74b5913f Guido Trotter
    self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
2901 decd5f45 Iustin Pop
2902 decd5f45 Iustin Pop
    # re-read the instance from the configuration after rename
2903 decd5f45 Iustin Pop
    inst = self.cfg.GetInstanceInfo(self.op.new_name)
2904 decd5f45 Iustin Pop
2905 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
2906 b23c4333 Manuel Franceschini
      new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
2907 72737a7f Iustin Pop
      result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
2908 72737a7f Iustin Pop
                                                     old_file_storage_dir,
2909 72737a7f Iustin Pop
                                                     new_file_storage_dir)
2910 781de953 Iustin Pop
      result.Raise()
2911 781de953 Iustin Pop
      if not result.data:
2912 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not connect to node '%s' to rename"
2913 b23c4333 Manuel Franceschini
                                 " directory '%s' to '%s' (but the instance"
2914 b23c4333 Manuel Franceschini
                                 " has been renamed in Ganeti)" % (
2915 b23c4333 Manuel Franceschini
                                 inst.primary_node, old_file_storage_dir,
2916 b23c4333 Manuel Franceschini
                                 new_file_storage_dir))
2917 b23c4333 Manuel Franceschini
2918 781de953 Iustin Pop
      if not result.data[0]:
2919 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not rename directory '%s' to '%s'"
2920 b23c4333 Manuel Franceschini
                                 " (but the instance has been renamed in"
2921 b23c4333 Manuel Franceschini
                                 " Ganeti)" % (old_file_storage_dir,
2922 b23c4333 Manuel Franceschini
                                               new_file_storage_dir))
2923 b23c4333 Manuel Franceschini
2924 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
2925 decd5f45 Iustin Pop
    try:
2926 781de953 Iustin Pop
      result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
2927 781de953 Iustin Pop
                                                 old_name)
2928 781de953 Iustin Pop
      if result.failed or not result.data:
2929 6291574d Alexander Schreiber
        msg = ("Could not run OS rename script for instance %s on node %s"
2930 6291574d Alexander Schreiber
               " (but the instance has been renamed in Ganeti)" %
2931 decd5f45 Iustin Pop
               (inst.name, inst.primary_node))
2932 86d9d3bb Iustin Pop
        self.proc.LogWarning(msg)
2933 decd5f45 Iustin Pop
    finally:
2934 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
2935 decd5f45 Iustin Pop
2936 decd5f45 Iustin Pop
2937 a8083063 Iustin Pop
class LURemoveInstance(LogicalUnit):
2938 a8083063 Iustin Pop
  """Remove an instance.
2939 a8083063 Iustin Pop

2940 a8083063 Iustin Pop
  """
2941 a8083063 Iustin Pop
  HPATH = "instance-remove"
2942 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2943 5c54b832 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_failures"]
2944 cf472233 Guido Trotter
  REQ_BGL = False
2945 cf472233 Guido Trotter
2946 cf472233 Guido Trotter
  def ExpandNames(self):
2947 cf472233 Guido Trotter
    self._ExpandAndLockInstance()
2948 cf472233 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2949 cf472233 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2950 cf472233 Guido Trotter
2951 cf472233 Guido Trotter
  def DeclareLocks(self, level):
2952 cf472233 Guido Trotter
    if level == locking.LEVEL_NODE:
2953 cf472233 Guido Trotter
      self._LockInstancesNodes()
2954 a8083063 Iustin Pop
2955 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2956 a8083063 Iustin Pop
    """Build hooks env.
2957 a8083063 Iustin Pop

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

2960 a8083063 Iustin Pop
    """
2961 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
2962 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()]
2963 a8083063 Iustin Pop
    return env, nl, nl
2964 a8083063 Iustin Pop
2965 a8083063 Iustin Pop
  def CheckPrereq(self):
2966 a8083063 Iustin Pop
    """Check prerequisites.
2967 a8083063 Iustin Pop

2968 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2969 a8083063 Iustin Pop

2970 a8083063 Iustin Pop
    """
2971 cf472233 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2972 cf472233 Guido Trotter
    assert self.instance is not None, \
2973 cf472233 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2974 a8083063 Iustin Pop
2975 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2976 a8083063 Iustin Pop
    """Remove the instance.
2977 a8083063 Iustin Pop

2978 a8083063 Iustin Pop
    """
2979 a8083063 Iustin Pop
    instance = self.instance
2980 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
2981 9a4f63d1 Iustin Pop
                 instance.name, instance.primary_node)
2982 a8083063 Iustin Pop
2983 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
2984 781de953 Iustin Pop
    if result.failed or not result.data:
2985 1d67656e Iustin Pop
      if self.op.ignore_failures:
2986 1d67656e Iustin Pop
        feedback_fn("Warning: can't shutdown instance")
2987 1d67656e Iustin Pop
      else:
2988 1d67656e Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on node %s" %
2989 1d67656e Iustin Pop
                                 (instance.name, instance.primary_node))
2990 a8083063 Iustin Pop
2991 9a4f63d1 Iustin Pop
    logging.info("Removing block devices for instance %s", instance.name)
2992 a8083063 Iustin Pop
2993 b9bddb6b Iustin Pop
    if not _RemoveDisks(self, instance):
2994 1d67656e Iustin Pop
      if self.op.ignore_failures:
2995 1d67656e Iustin Pop
        feedback_fn("Warning: can't remove instance's disks")
2996 1d67656e Iustin Pop
      else:
2997 1d67656e Iustin Pop
        raise errors.OpExecError("Can't remove instance's disks")
2998 a8083063 Iustin Pop
2999 9a4f63d1 Iustin Pop
    logging.info("Removing instance %s out of cluster config", instance.name)
3000 a8083063 Iustin Pop
3001 a8083063 Iustin Pop
    self.cfg.RemoveInstance(instance.name)
3002 cf472233 Guido Trotter
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3003 a8083063 Iustin Pop
3004 a8083063 Iustin Pop
3005 a8083063 Iustin Pop
class LUQueryInstances(NoHooksLU):
3006 a8083063 Iustin Pop
  """Logical unit for querying instances.
3007 a8083063 Iustin Pop

3008 a8083063 Iustin Pop
  """
3009 069dcc86 Iustin Pop
  _OP_REQP = ["output_fields", "names"]
3010 7eb9d8f7 Guido Trotter
  REQ_BGL = False
3011 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3012 a2d2e1a7 Iustin Pop
                                    "admin_state", "admin_ram",
3013 a2d2e1a7 Iustin Pop
                                    "disk_template", "ip", "mac", "bridge",
3014 a2d2e1a7 Iustin Pop
                                    "sda_size", "sdb_size", "vcpus", "tags",
3015 a2d2e1a7 Iustin Pop
                                    "network_port", "beparams",
3016 a2d2e1a7 Iustin Pop
                                    "(disk).(size)/([0-9]+)",
3017 a2d2e1a7 Iustin Pop
                                    "(disk).(sizes)",
3018 a2d2e1a7 Iustin Pop
                                    "(nic).(mac|ip|bridge)/([0-9]+)",
3019 a2d2e1a7 Iustin Pop
                                    "(nic).(macs|ips|bridges)",
3020 a2d2e1a7 Iustin Pop
                                    "(disk|nic).(count)",
3021 a2d2e1a7 Iustin Pop
                                    "serial_no", "hypervisor", "hvparams",] +
3022 a2d2e1a7 Iustin Pop
                                  ["hv/%s" % name
3023 a2d2e1a7 Iustin Pop
                                   for name in constants.HVS_PARAMETERS] +
3024 a2d2e1a7 Iustin Pop
                                  ["be/%s" % name
3025 a2d2e1a7 Iustin Pop
                                   for name in constants.BES_PARAMETERS])
3026 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3027 31bf511f Iustin Pop
3028 a8083063 Iustin Pop
3029 7eb9d8f7 Guido Trotter
  def ExpandNames(self):
3030 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
3031 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
3032 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
3033 a8083063 Iustin Pop
3034 7eb9d8f7 Guido Trotter
    self.needed_locks = {}
3035 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3036 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
3037 7eb9d8f7 Guido Trotter
3038 57a2fb91 Iustin Pop
    if self.op.names:
3039 57a2fb91 Iustin Pop
      self.wanted = _GetWantedInstances(self, self.op.names)
3040 7eb9d8f7 Guido Trotter
    else:
3041 57a2fb91 Iustin Pop
      self.wanted = locking.ALL_SET
3042 7eb9d8f7 Guido Trotter
3043 31bf511f Iustin Pop
    self.do_locking = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3044 57a2fb91 Iustin Pop
    if self.do_locking:
3045 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3046 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = []
3047 57a2fb91 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3048 7eb9d8f7 Guido Trotter
3049 7eb9d8f7 Guido Trotter
  def DeclareLocks(self, level):
3050 57a2fb91 Iustin Pop
    if level == locking.LEVEL_NODE and self.do_locking:
3051 7eb9d8f7 Guido Trotter
      self._LockInstancesNodes()
3052 7eb9d8f7 Guido Trotter
3053 7eb9d8f7 Guido Trotter
  def CheckPrereq(self):
3054 7eb9d8f7 Guido Trotter
    """Check prerequisites.
3055 7eb9d8f7 Guido Trotter

3056 7eb9d8f7 Guido Trotter
    """
3057 57a2fb91 Iustin Pop
    pass
3058 069dcc86 Iustin Pop
3059 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3060 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
3061 a8083063 Iustin Pop

3062 a8083063 Iustin Pop
    """
3063 57a2fb91 Iustin Pop
    all_info = self.cfg.GetAllInstancesInfo()
3064 57a2fb91 Iustin Pop
    if self.do_locking:
3065 57a2fb91 Iustin Pop
      instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
3066 3fa93523 Guido Trotter
    elif self.wanted != locking.ALL_SET:
3067 3fa93523 Guido Trotter
      instance_names = self.wanted
3068 3fa93523 Guido Trotter
      missing = set(instance_names).difference(all_info.keys())
3069 3fa93523 Guido Trotter
      if missing:
3070 7b3a8fb5 Iustin Pop
        raise errors.OpExecError(
3071 3fa93523 Guido Trotter
          "Some instances were removed before retrieving their data: %s"
3072 3fa93523 Guido Trotter
          % missing)
3073 57a2fb91 Iustin Pop
    else:
3074 57a2fb91 Iustin Pop
      instance_names = all_info.keys()
3075 c1f1cbb2 Iustin Pop
3076 c1f1cbb2 Iustin Pop
    instance_names = utils.NiceSort(instance_names)
3077 57a2fb91 Iustin Pop
    instance_list = [all_info[iname] for iname in instance_names]
3078 a8083063 Iustin Pop
3079 a8083063 Iustin Pop
    # begin data gathering
3080 a8083063 Iustin Pop
3081 a8083063 Iustin Pop
    nodes = frozenset([inst.primary_node for inst in instance_list])
3082 e69d05fd Iustin Pop
    hv_list = list(set([inst.hypervisor for inst in instance_list]))
3083 a8083063 Iustin Pop
3084 a8083063 Iustin Pop
    bad_nodes = []
3085 cbfc4681 Iustin Pop
    off_nodes = []
3086 31bf511f Iustin Pop
    if self.do_locking:
3087 a8083063 Iustin Pop
      live_data = {}
3088 72737a7f Iustin Pop
      node_data = self.rpc.call_all_instances_info(nodes, hv_list)
3089 a8083063 Iustin Pop
      for name in nodes:
3090 a8083063 Iustin Pop
        result = node_data[name]
3091 cbfc4681 Iustin Pop
        if result.offline:
3092 cbfc4681 Iustin Pop
          # offline nodes will be in both lists
3093 cbfc4681 Iustin Pop
          off_nodes.append(name)
3094 781de953 Iustin Pop
        if result.failed:
3095 a8083063 Iustin Pop
          bad_nodes.append(name)
3096 781de953 Iustin Pop
        else:
3097 781de953 Iustin Pop
          if result.data:
3098 781de953 Iustin Pop
            live_data.update(result.data)
3099 781de953 Iustin Pop
            # else no instance is alive
3100 a8083063 Iustin Pop
    else:
3101 a8083063 Iustin Pop
      live_data = dict([(name, {}) for name in instance_names])
3102 a8083063 Iustin Pop
3103 a8083063 Iustin Pop
    # end data gathering
3104 a8083063 Iustin Pop
3105 5018a335 Iustin Pop
    HVPREFIX = "hv/"
3106 338e51e8 Iustin Pop
    BEPREFIX = "be/"
3107 a8083063 Iustin Pop
    output = []
3108 a8083063 Iustin Pop
    for instance in instance_list:
3109 a8083063 Iustin Pop
      iout = []
3110 5018a335 Iustin Pop
      i_hv = self.cfg.GetClusterInfo().FillHV(instance)
3111 338e51e8 Iustin Pop
      i_be = self.cfg.GetClusterInfo().FillBE(instance)
3112 a8083063 Iustin Pop
      for field in self.op.output_fields:
3113 71c1af58 Iustin Pop
        st_match = self._FIELDS_STATIC.Matches(field)
3114 a8083063 Iustin Pop
        if field == "name":
3115 a8083063 Iustin Pop
          val = instance.name
3116 a8083063 Iustin Pop
        elif field == "os":
3117 a8083063 Iustin Pop
          val = instance.os
3118 a8083063 Iustin Pop
        elif field == "pnode":
3119 a8083063 Iustin Pop
          val = instance.primary_node
3120 a8083063 Iustin Pop
        elif field == "snodes":
3121 8a23d2d3 Iustin Pop
          val = list(instance.secondary_nodes)
3122 a8083063 Iustin Pop
        elif field == "admin_state":
3123 8a23d2d3 Iustin Pop
          val = (instance.status != "down")
3124 a8083063 Iustin Pop
        elif field == "oper_state":
3125 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3126 8a23d2d3 Iustin Pop
            val = None
3127 a8083063 Iustin Pop
          else:
3128 8a23d2d3 Iustin Pop
            val = bool(live_data.get(instance.name))
3129 d8052456 Iustin Pop
        elif field == "status":
3130 cbfc4681 Iustin Pop
          if instance.primary_node in off_nodes:
3131 cbfc4681 Iustin Pop
            val = "ERROR_nodeoffline"
3132 cbfc4681 Iustin Pop
          elif instance.primary_node in bad_nodes:
3133 d8052456 Iustin Pop
            val = "ERROR_nodedown"
3134 d8052456 Iustin Pop
          else:
3135 d8052456 Iustin Pop
            running = bool(live_data.get(instance.name))
3136 d8052456 Iustin Pop
            if running:
3137 d8052456 Iustin Pop
              if instance.status != "down":
3138 d8052456 Iustin Pop
                val = "running"
3139 d8052456 Iustin Pop
              else:
3140 d8052456 Iustin Pop
                val = "ERROR_up"
3141 d8052456 Iustin Pop
            else:
3142 d8052456 Iustin Pop
              if instance.status != "down":
3143 d8052456 Iustin Pop
                val = "ERROR_down"
3144 d8052456 Iustin Pop
              else:
3145 d8052456 Iustin Pop
                val = "ADMIN_down"
3146 a8083063 Iustin Pop
        elif field == "oper_ram":
3147 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3148 8a23d2d3 Iustin Pop
            val = None
3149 a8083063 Iustin Pop
          elif instance.name in live_data:
3150 a8083063 Iustin Pop
            val = live_data[instance.name].get("memory", "?")
3151 a8083063 Iustin Pop
          else:
3152 a8083063 Iustin Pop
            val = "-"
3153 a8083063 Iustin Pop
        elif field == "disk_template":
3154 a8083063 Iustin Pop
          val = instance.disk_template
3155 a8083063 Iustin Pop
        elif field == "ip":
3156 a8083063 Iustin Pop
          val = instance.nics[0].ip
3157 a8083063 Iustin Pop
        elif field == "bridge":
3158 a8083063 Iustin Pop
          val = instance.nics[0].bridge
3159 a8083063 Iustin Pop
        elif field == "mac":
3160 a8083063 Iustin Pop
          val = instance.nics[0].mac
3161 644eeef9 Iustin Pop
        elif field == "sda_size" or field == "sdb_size":
3162 ad24e046 Iustin Pop
          idx = ord(field[2]) - ord('a')
3163 ad24e046 Iustin Pop
          try:
3164 ad24e046 Iustin Pop
            val = instance.FindDisk(idx).size
3165 ad24e046 Iustin Pop
          except errors.OpPrereqError:
3166 8a23d2d3 Iustin Pop
            val = None
3167 130a6a6f Iustin Pop
        elif field == "tags":
3168 130a6a6f Iustin Pop
          val = list(instance.GetTags())
3169 38d7239a Iustin Pop
        elif field == "serial_no":
3170 38d7239a Iustin Pop
          val = instance.serial_no
3171 5018a335 Iustin Pop
        elif field == "network_port":
3172 5018a335 Iustin Pop
          val = instance.network_port
3173 338e51e8 Iustin Pop
        elif field == "hypervisor":
3174 338e51e8 Iustin Pop
          val = instance.hypervisor
3175 338e51e8 Iustin Pop
        elif field == "hvparams":
3176 338e51e8 Iustin Pop
          val = i_hv
3177 5018a335 Iustin Pop
        elif (field.startswith(HVPREFIX) and
3178 5018a335 Iustin Pop
              field[len(HVPREFIX):] in constants.HVS_PARAMETERS):
3179 5018a335 Iustin Pop
          val = i_hv.get(field[len(HVPREFIX):], None)
3180 338e51e8 Iustin Pop
        elif field == "beparams":
3181 338e51e8 Iustin Pop
          val = i_be
3182 338e51e8 Iustin Pop
        elif (field.startswith(BEPREFIX) and
3183 338e51e8 Iustin Pop
              field[len(BEPREFIX):] in constants.BES_PARAMETERS):
3184 338e51e8 Iustin Pop
          val = i_be.get(field[len(BEPREFIX):], None)
3185 71c1af58 Iustin Pop
        elif st_match and st_match.groups():
3186 71c1af58 Iustin Pop
          # matches a variable list
3187 71c1af58 Iustin Pop
          st_groups = st_match.groups()
3188 71c1af58 Iustin Pop
          if st_groups and st_groups[0] == "disk":
3189 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3190 71c1af58 Iustin Pop
              val = len(instance.disks)
3191 41a776da Iustin Pop
            elif st_groups[1] == "sizes":
3192 41a776da Iustin Pop
              val = [disk.size for disk in instance.disks]
3193 71c1af58 Iustin Pop
            elif st_groups[1] == "size":
3194 3e0cea06 Iustin Pop
              try:
3195 3e0cea06 Iustin Pop
                val = instance.FindDisk(st_groups[2]).size
3196 3e0cea06 Iustin Pop
              except errors.OpPrereqError:
3197 71c1af58 Iustin Pop
                val = None
3198 71c1af58 Iustin Pop
            else:
3199 71c1af58 Iustin Pop
              assert False, "Unhandled disk parameter"
3200 71c1af58 Iustin Pop
          elif st_groups[0] == "nic":
3201 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3202 71c1af58 Iustin Pop
              val = len(instance.nics)
3203 41a776da Iustin Pop
            elif st_groups[1] == "macs":
3204 41a776da Iustin Pop
              val = [nic.mac for nic in instance.nics]
3205 41a776da Iustin Pop
            elif st_groups[1] == "ips":
3206 41a776da Iustin Pop
              val = [nic.ip for nic in instance.nics]
3207 41a776da Iustin Pop
            elif st_groups[1] == "bridges":
3208 41a776da Iustin Pop
              val = [nic.bridge for nic in instance.nics]
3209 71c1af58 Iustin Pop
            else:
3210 71c1af58 Iustin Pop
              # index-based item
3211 71c1af58 Iustin Pop
              nic_idx = int(st_groups[2])
3212 71c1af58 Iustin Pop
              if nic_idx >= len(instance.nics):
3213 71c1af58 Iustin Pop
                val = None
3214 71c1af58 Iustin Pop
              else:
3215 71c1af58 Iustin Pop
                if st_groups[1] == "mac":
3216 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].mac
3217 71c1af58 Iustin Pop
                elif st_groups[1] == "ip":
3218 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].ip
3219 71c1af58 Iustin Pop
                elif st_groups[1] == "bridge":
3220 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].bridge
3221 71c1af58 Iustin Pop
                else:
3222 71c1af58 Iustin Pop
                  assert False, "Unhandled NIC parameter"
3223 71c1af58 Iustin Pop
          else:
3224 71c1af58 Iustin Pop
            assert False, "Unhandled variable parameter"
3225 a8083063 Iustin Pop
        else:
3226 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
3227 a8083063 Iustin Pop
        iout.append(val)
3228 a8083063 Iustin Pop
      output.append(iout)
3229 a8083063 Iustin Pop
3230 a8083063 Iustin Pop
    return output
3231 a8083063 Iustin Pop
3232 a8083063 Iustin Pop
3233 a8083063 Iustin Pop
class LUFailoverInstance(LogicalUnit):
3234 a8083063 Iustin Pop
  """Failover an instance.
3235 a8083063 Iustin Pop

3236 a8083063 Iustin Pop
  """
3237 a8083063 Iustin Pop
  HPATH = "instance-failover"
3238 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3239 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_consistency"]
3240 c9e5c064 Guido Trotter
  REQ_BGL = False
3241 c9e5c064 Guido Trotter
3242 c9e5c064 Guido Trotter
  def ExpandNames(self):
3243 c9e5c064 Guido Trotter
    self._ExpandAndLockInstance()
3244 c9e5c064 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3245 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3246 c9e5c064 Guido Trotter
3247 c9e5c064 Guido Trotter
  def DeclareLocks(self, level):
3248 c9e5c064 Guido Trotter
    if level == locking.LEVEL_NODE:
3249 c9e5c064 Guido Trotter
      self._LockInstancesNodes()
3250 a8083063 Iustin Pop
3251 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3252 a8083063 Iustin Pop
    """Build hooks env.
3253 a8083063 Iustin Pop

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

3256 a8083063 Iustin Pop
    """
3257 a8083063 Iustin Pop
    env = {
3258 a8083063 Iustin Pop
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3259 a8083063 Iustin Pop
      }
3260 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3261 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3262 a8083063 Iustin Pop
    return env, nl, nl
3263 a8083063 Iustin Pop
3264 a8083063 Iustin Pop
  def CheckPrereq(self):
3265 a8083063 Iustin Pop
    """Check prerequisites.
3266 a8083063 Iustin Pop

3267 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3268 a8083063 Iustin Pop

3269 a8083063 Iustin Pop
    """
3270 c9e5c064 Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3271 c9e5c064 Guido Trotter
    assert self.instance is not None, \
3272 c9e5c064 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3273 a8083063 Iustin Pop
3274 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3275 a1f445d3 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3276 2a710df1 Michael Hanselmann
      raise errors.OpPrereqError("Instance's disk layout is not"
3277 a1f445d3 Iustin Pop
                                 " network mirrored, cannot failover.")
3278 2a710df1 Michael Hanselmann
3279 2a710df1 Michael Hanselmann
    secondary_nodes = instance.secondary_nodes
3280 2a710df1 Michael Hanselmann
    if not secondary_nodes:
3281 2a710df1 Michael Hanselmann
      raise errors.ProgrammerError("no secondary node but using "
3282 abdf0113 Iustin Pop
                                   "a mirrored disk template")
3283 2a710df1 Michael Hanselmann
3284 2a710df1 Michael Hanselmann
    target_node = secondary_nodes[0]
3285 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, target_node)
3286 d4f16fd9 Iustin Pop
    # check memory requirements on the secondary node
3287 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3288 338e51e8 Iustin Pop
                         instance.name, bep[constants.BE_MEMORY],
3289 e69d05fd Iustin Pop
                         instance.hypervisor)
3290 3a7c308e Guido Trotter
3291 a8083063 Iustin Pop
    # check bridge existance
3292 a8083063 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3293 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3294 781de953 Iustin Pop
    result.Raise()
3295 781de953 Iustin Pop
    if not result.data:
3296 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3297 3ecf6786 Iustin Pop
                                 " exist on destination node '%s'" %
3298 50ff9a7a Iustin Pop
                                 (brlist, target_node))
3299 a8083063 Iustin Pop
3300 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3301 a8083063 Iustin Pop
    """Failover an instance.
3302 a8083063 Iustin Pop

3303 a8083063 Iustin Pop
    The failover is done by shutting it down on its present node and
3304 a8083063 Iustin Pop
    starting it on the secondary.
3305 a8083063 Iustin Pop

3306 a8083063 Iustin Pop
    """
3307 a8083063 Iustin Pop
    instance = self.instance
3308 a8083063 Iustin Pop
3309 a8083063 Iustin Pop
    source_node = instance.primary_node
3310 a8083063 Iustin Pop
    target_node = instance.secondary_nodes[0]
3311 a8083063 Iustin Pop
3312 a8083063 Iustin Pop
    feedback_fn("* checking disk consistency between source and target")
3313 a8083063 Iustin Pop
    for dev in instance.disks:
3314 abdf0113 Iustin Pop
      # for drbd, these are drbd over lvm
3315 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3316 a0aaa0d0 Guido Trotter
        if instance.status == "up" and not self.op.ignore_consistency:
3317 3ecf6786 Iustin Pop
          raise errors.OpExecError("Disk %s is degraded on target node,"
3318 3ecf6786 Iustin Pop
                                   " aborting failover." % dev.iv_name)
3319 a8083063 Iustin Pop
3320 a8083063 Iustin Pop
    feedback_fn("* shutting down instance on source node")
3321 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3322 9a4f63d1 Iustin Pop
                 instance.name, source_node)
3323 a8083063 Iustin Pop
3324 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(source_node, instance)
3325 781de953 Iustin Pop
    if result.failed or not result.data:
3326 24a40d57 Iustin Pop
      if self.op.ignore_consistency:
3327 86d9d3bb Iustin Pop
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3328 86d9d3bb Iustin Pop
                             " Proceeding"
3329 86d9d3bb Iustin Pop
                             " anyway. Please make sure node %s is down",
3330 86d9d3bb Iustin Pop
                             instance.name, source_node, source_node)
3331 24a40d57 Iustin Pop
      else:
3332 24a40d57 Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on node %s" %
3333 24a40d57 Iustin Pop
                                 (instance.name, source_node))
3334 a8083063 Iustin Pop
3335 a8083063 Iustin Pop
    feedback_fn("* deactivating the instance's disks on source node")
3336 b9bddb6b Iustin Pop
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3337 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't shut down the instance's disks.")
3338 a8083063 Iustin Pop
3339 a8083063 Iustin Pop
    instance.primary_node = target_node
3340 a8083063 Iustin Pop
    # distribute new instance config to the other nodes
3341 b6102dab Guido Trotter
    self.cfg.Update(instance)
3342 a8083063 Iustin Pop
3343 12a0cfbe Guido Trotter
    # Only start the instance if it's marked as up
3344 12a0cfbe Guido Trotter
    if instance.status == "up":
3345 12a0cfbe Guido Trotter
      feedback_fn("* activating the instance's disks on target node")
3346 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s",
3347 9a4f63d1 Iustin Pop
                   instance.name, target_node)
3348 12a0cfbe Guido Trotter
3349 b9bddb6b Iustin Pop
      disks_ok, dummy = _AssembleInstanceDisks(self, instance,
3350 12a0cfbe Guido Trotter
                                               ignore_secondaries=True)
3351 12a0cfbe Guido Trotter
      if not disks_ok:
3352 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3353 12a0cfbe Guido Trotter
        raise errors.OpExecError("Can't activate the instance's disks")
3354 a8083063 Iustin Pop
3355 12a0cfbe Guido Trotter
      feedback_fn("* starting the instance on the target node")
3356 781de953 Iustin Pop
      result = self.rpc.call_instance_start(target_node, instance, None)
3357 781de953 Iustin Pop
      if result.failed or not result.data:
3358 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3359 12a0cfbe Guido Trotter
        raise errors.OpExecError("Could not start instance %s on node %s." %
3360 12a0cfbe Guido Trotter
                                 (instance.name, target_node))
3361 a8083063 Iustin Pop
3362 a8083063 Iustin Pop
3363 b9bddb6b Iustin Pop
def _CreateBlockDevOnPrimary(lu, node, instance, device, info):
3364 a8083063 Iustin Pop
  """Create a tree of block devices on the primary node.
3365 a8083063 Iustin Pop

3366 a8083063 Iustin Pop
  This always creates all devices.
3367 a8083063 Iustin Pop

3368 a8083063 Iustin Pop
  """
3369 a8083063 Iustin Pop
  if device.children:
3370 a8083063 Iustin Pop
    for child in device.children:
3371 b9bddb6b Iustin Pop
      if not _CreateBlockDevOnPrimary(lu, node, instance, child, info):
3372 a8083063 Iustin Pop
        return False
3373 a8083063 Iustin Pop
3374 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
3375 72737a7f Iustin Pop
  new_id = lu.rpc.call_blockdev_create(node, device, device.size,
3376 72737a7f Iustin Pop
                                       instance.name, True, info)
3377 781de953 Iustin Pop
  if new_id.failed or not new_id.data:
3378 a8083063 Iustin Pop
    return False
3379 a8083063 Iustin Pop
  if device.physical_id is None:
3380 a8083063 Iustin Pop
    device.physical_id = new_id
3381 a8083063 Iustin Pop
  return True
3382 a8083063 Iustin Pop
3383 a8083063 Iustin Pop
3384 b9bddb6b Iustin Pop
def _CreateBlockDevOnSecondary(lu, node, instance, device, force, info):
3385 a8083063 Iustin Pop
  """Create a tree of block devices on a secondary node.
3386 a8083063 Iustin Pop

3387 a8083063 Iustin Pop
  If this device type has to be created on secondaries, create it and
3388 a8083063 Iustin Pop
  all its children.
3389 a8083063 Iustin Pop

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

3392 a8083063 Iustin Pop
  """
3393 a8083063 Iustin Pop
  if device.CreateOnSecondary():
3394 a8083063 Iustin Pop
    force = True
3395 a8083063 Iustin Pop
  if device.children:
3396 a8083063 Iustin Pop
    for child in device.children:
3397 b9bddb6b Iustin Pop
      if not _CreateBlockDevOnSecondary(lu, node, instance,
3398 3f78eef2 Iustin Pop
                                        child, force, info):
3399 a8083063 Iustin Pop
        return False
3400 a8083063 Iustin Pop
3401 a8083063 Iustin Pop
  if not force:
3402 a8083063 Iustin Pop
    return True
3403 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
3404 72737a7f Iustin Pop
  new_id = lu.rpc.call_blockdev_create(node, device, device.size,
3405 72737a7f Iustin Pop
                                       instance.name, False, info)
3406 781de953 Iustin Pop
  if new_id.failed or not new_id.data:
3407 a8083063 Iustin Pop
    return False
3408 a8083063 Iustin Pop
  if device.physical_id is None:
3409 a8083063 Iustin Pop
    device.physical_id = new_id
3410 a8083063 Iustin Pop
  return True
3411 a8083063 Iustin Pop
3412 a8083063 Iustin Pop
3413 b9bddb6b Iustin Pop
def _GenerateUniqueNames(lu, exts):
3414 923b1523 Iustin Pop
  """Generate a suitable LV name.
3415 923b1523 Iustin Pop

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

3418 923b1523 Iustin Pop
  """
3419 923b1523 Iustin Pop
  results = []
3420 923b1523 Iustin Pop
  for val in exts:
3421 b9bddb6b Iustin Pop
    new_id = lu.cfg.GenerateUniqueID()
3422 923b1523 Iustin Pop
    results.append("%s%s" % (new_id, val))
3423 923b1523 Iustin Pop
  return results
3424 923b1523 Iustin Pop
3425 923b1523 Iustin Pop
3426 b9bddb6b Iustin Pop
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
3427 ffa1c0dc Iustin Pop
                         p_minor, s_minor):
3428 a1f445d3 Iustin Pop
  """Generate a drbd8 device complete with its children.
3429 a1f445d3 Iustin Pop

3430 a1f445d3 Iustin Pop
  """
3431 b9bddb6b Iustin Pop
  port = lu.cfg.AllocatePort()
3432 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
3433 b9bddb6b Iustin Pop
  shared_secret = lu.cfg.GenerateDRBDSecret()
3434 a1f445d3 Iustin Pop
  dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
3435 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[0]))
3436 a1f445d3 Iustin Pop
  dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
3437 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[1]))
3438 a1f445d3 Iustin Pop
  drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
3439 ffa1c0dc Iustin Pop
                          logical_id=(primary, secondary, port,
3440 f9518d38 Iustin Pop
                                      p_minor, s_minor,
3441 f9518d38 Iustin Pop
                                      shared_secret),
3442 ffa1c0dc Iustin Pop
                          children=[dev_data, dev_meta],
3443 a1f445d3 Iustin Pop
                          iv_name=iv_name)
3444 a1f445d3 Iustin Pop
  return drbd_dev
3445 a1f445d3 Iustin Pop
3446 7c0d6283 Michael Hanselmann
3447 b9bddb6b Iustin Pop
def _GenerateDiskTemplate(lu, template_name,
3448 a8083063 Iustin Pop
                          instance_name, primary_node,
3449 08db7c5c Iustin Pop
                          secondary_nodes, disk_info,
3450 e2a65344 Iustin Pop
                          file_storage_dir, file_driver,
3451 e2a65344 Iustin Pop
                          base_index):
3452 a8083063 Iustin Pop
  """Generate the entire disk layout for a given template type.
3453 a8083063 Iustin Pop

3454 a8083063 Iustin Pop
  """
3455 a8083063 Iustin Pop
  #TODO: compute space requirements
3456 a8083063 Iustin Pop
3457 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
3458 08db7c5c Iustin Pop
  disk_count = len(disk_info)
3459 08db7c5c Iustin Pop
  disks = []
3460 3517d9b9 Manuel Franceschini
  if template_name == constants.DT_DISKLESS:
3461 08db7c5c Iustin Pop
    pass
3462 3517d9b9 Manuel Franceschini
  elif template_name == constants.DT_PLAIN:
3463 a8083063 Iustin Pop
    if len(secondary_nodes) != 0:
3464 a8083063 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
3465 923b1523 Iustin Pop
3466 08db7c5c Iustin Pop
    names = _GenerateUniqueNames(lu, [".disk%d" % i
3467 08db7c5c Iustin Pop
                                      for i in range(disk_count)])
3468 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
3469 e2a65344 Iustin Pop
      disk_index = idx + base_index
3470 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
3471 08db7c5c Iustin Pop
                              logical_id=(vgname, names[idx]),
3472 e2a65344 Iustin Pop
                              iv_name="disk/%d" % disk_index)
3473 08db7c5c Iustin Pop
      disks.append(disk_dev)
3474 a1f445d3 Iustin Pop
  elif template_name == constants.DT_DRBD8:
3475 a1f445d3 Iustin Pop
    if len(secondary_nodes) != 1:
3476 a1f445d3 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
3477 a1f445d3 Iustin Pop
    remote_node = secondary_nodes[0]
3478 08db7c5c Iustin Pop
    minors = lu.cfg.AllocateDRBDMinor(
3479 08db7c5c Iustin Pop
      [primary_node, remote_node] * len(disk_info), instance_name)
3480 08db7c5c Iustin Pop
3481 08db7c5c Iustin Pop
    names = _GenerateUniqueNames(lu,
3482 08db7c5c Iustin Pop
                                 [".disk%d_%s" % (i, s)
3483 08db7c5c Iustin Pop
                                  for i in range(disk_count)
3484 08db7c5c Iustin Pop
                                  for s in ("data", "meta")
3485 08db7c5c Iustin Pop
                                  ])
3486 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
3487 112050d9 Iustin Pop
      disk_index = idx + base_index
3488 08db7c5c Iustin Pop
      disk_dev = _GenerateDRBD8Branch(lu, primary_node, remote_node,
3489 08db7c5c Iustin Pop
                                      disk["size"], names[idx*2:idx*2+2],
3490 e2a65344 Iustin Pop
                                      "disk/%d" % disk_index,
3491 08db7c5c Iustin Pop
                                      minors[idx*2], minors[idx*2+1])
3492 08db7c5c Iustin Pop
      disks.append(disk_dev)
3493 0f1a06e3 Manuel Franceschini
  elif template_name == constants.DT_FILE:
3494 0f1a06e3 Manuel Franceschini
    if len(secondary_nodes) != 0:
3495 0f1a06e3 Manuel Franceschini
      raise errors.ProgrammerError("Wrong template configuration")
3496 0f1a06e3 Manuel Franceschini
3497 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
3498 112050d9 Iustin Pop
      disk_index = idx + base_index
3499 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_FILE, size=disk["size"],
3500 e2a65344 Iustin Pop
                              iv_name="disk/%d" % disk_index,
3501 08db7c5c Iustin Pop
                              logical_id=(file_driver,
3502 08db7c5c Iustin Pop
                                          "%s/disk%d" % (file_storage_dir,
3503 08db7c5c Iustin Pop
                                                         idx)))
3504 08db7c5c Iustin Pop
      disks.append(disk_dev)
3505 a8083063 Iustin Pop
  else:
3506 a8083063 Iustin Pop
    raise errors.ProgrammerError("Invalid disk template '%s'" % template_name)
3507 a8083063 Iustin Pop
  return disks
3508 a8083063 Iustin Pop
3509 a8083063 Iustin Pop
3510 a0c3fea1 Michael Hanselmann
def _GetInstanceInfoText(instance):
3511 3ecf6786 Iustin Pop
  """Compute that text that should be added to the disk's metadata.
3512 3ecf6786 Iustin Pop

3513 3ecf6786 Iustin Pop
  """
3514 a0c3fea1 Michael Hanselmann
  return "originstname+%s" % instance.name
3515 a0c3fea1 Michael Hanselmann
3516 a0c3fea1 Michael Hanselmann
3517 b9bddb6b Iustin Pop
def _CreateDisks(lu, instance):
3518 a8083063 Iustin Pop
  """Create all disks for an instance.
3519 a8083063 Iustin Pop

3520 a8083063 Iustin Pop
  This abstracts away some work from AddInstance.
3521 a8083063 Iustin Pop

3522 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
3523 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
3524 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
3525 e4376078 Iustin Pop
  @param instance: the instance whose disks we should create
3526 e4376078 Iustin Pop
  @rtype: boolean
3527 e4376078 Iustin Pop
  @return: the success of the creation
3528 a8083063 Iustin Pop

3529 a8083063 Iustin Pop
  """
3530 a0c3fea1 Michael Hanselmann
  info = _GetInstanceInfoText(instance)
3531 a0c3fea1 Michael Hanselmann
3532 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
3533 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
3534 72737a7f Iustin Pop
    result = lu.rpc.call_file_storage_dir_create(instance.primary_node,
3535 72737a7f Iustin Pop
                                                 file_storage_dir)
3536 0f1a06e3 Manuel Franceschini
3537 781de953 Iustin Pop
    if result.failed or not result.data:
3538 9a4f63d1 Iustin Pop
      logging.error("Could not connect to node '%s'", instance.primary_node)
3539 0f1a06e3 Manuel Franceschini
      return False
3540 0f1a06e3 Manuel Franceschini
3541 781de953 Iustin Pop
    if not result.data[0]:
3542 9a4f63d1 Iustin Pop
      logging.error("Failed to create directory '%s'", file_storage_dir)
3543 0f1a06e3 Manuel Franceschini
      return False
3544 0f1a06e3 Manuel Franceschini
3545 24991749 Iustin Pop
  # Note: this needs to be kept in sync with adding of disks in
3546 24991749 Iustin Pop
  # LUSetInstanceParams
3547 a8083063 Iustin Pop
  for device in instance.disks:
3548 9a4f63d1 Iustin Pop
    logging.info("Creating volume %s for instance %s",
3549 9a4f63d1 Iustin Pop
                 device.iv_name, instance.name)
3550 a8083063 Iustin Pop
    #HARDCODE
3551 a8083063 Iustin Pop
    for secondary_node in instance.secondary_nodes:
3552 b9bddb6b Iustin Pop
      if not _CreateBlockDevOnSecondary(lu, secondary_node, instance,
3553 3f78eef2 Iustin Pop
                                        device, False, info):
3554 9a4f63d1 Iustin Pop
        logging.error("Failed to create volume %s (%s) on secondary node %s!",
3555 9a4f63d1 Iustin Pop
                      device.iv_name, device, secondary_node)
3556 a8083063 Iustin Pop
        return False
3557 a8083063 Iustin Pop
    #HARDCODE
3558 b9bddb6b Iustin Pop
    if not _CreateBlockDevOnPrimary(lu, instance.primary_node,
3559 3f78eef2 Iustin Pop
                                    instance, device, info):
3560 9a4f63d1 Iustin Pop
      logging.error("Failed to create volume %s on primary!", device.iv_name)
3561 a8083063 Iustin Pop
      return False
3562 1c6e3627 Manuel Franceschini
3563 a8083063 Iustin Pop
  return True
3564 a8083063 Iustin Pop
3565 a8083063 Iustin Pop
3566 b9bddb6b Iustin Pop
def _RemoveDisks(lu, instance):
3567 a8083063 Iustin Pop
  """Remove all disks for an instance.
3568 a8083063 Iustin Pop

3569 a8083063 Iustin Pop
  This abstracts away some work from `AddInstance()` and
3570 a8083063 Iustin Pop
  `RemoveInstance()`. Note that in case some of the devices couldn't
3571 1d67656e Iustin Pop
  be removed, the removal will continue with the other ones (compare
3572 a8083063 Iustin Pop
  with `_CreateDisks()`).
3573 a8083063 Iustin Pop

3574 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
3575 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
3576 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
3577 e4376078 Iustin Pop
  @param instance: the instance whose disks we should remove
3578 e4376078 Iustin Pop
  @rtype: boolean
3579 e4376078 Iustin Pop
  @return: the success of the removal
3580 a8083063 Iustin Pop

3581 a8083063 Iustin Pop
  """
3582 9a4f63d1 Iustin Pop
  logging.info("Removing block devices for instance %s", instance.name)
3583 a8083063 Iustin Pop
3584 a8083063 Iustin Pop
  result = True
3585 a8083063 Iustin Pop
  for device in instance.disks:
3586 a8083063 Iustin Pop
    for node, disk in device.ComputeNodeTree(instance.primary_node):
3587 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(disk, node)
3588 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_remove(node, disk)
3589 781de953 Iustin Pop
      if result.failed or not result.data:
3590 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not remove block device %s on node %s,"
3591 86d9d3bb Iustin Pop
                           " continuing anyway", device.iv_name, node)
3592 a8083063 Iustin Pop
        result = False
3593 0f1a06e3 Manuel Franceschini
3594 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
3595 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
3596 781de953 Iustin Pop
    result = lu.rpc.call_file_storage_dir_remove(instance.primary_node,
3597 781de953 Iustin Pop
                                                 file_storage_dir)
3598 781de953 Iustin Pop
    if result.failed or not result.data:
3599 9a4f63d1 Iustin Pop
      logging.error("Could not remove directory '%s'", file_storage_dir)
3600 0f1a06e3 Manuel Franceschini
      result = False
3601 0f1a06e3 Manuel Franceschini
3602 a8083063 Iustin Pop
  return result
3603 a8083063 Iustin Pop
3604 a8083063 Iustin Pop
3605 08db7c5c Iustin Pop
def _ComputeDiskSize(disk_template, disks):
3606 e2fe6369 Iustin Pop
  """Compute disk size requirements in the volume group
3607 e2fe6369 Iustin Pop

3608 e2fe6369 Iustin Pop
  """
3609 e2fe6369 Iustin Pop
  # Required free disk space as a function of disk and swap space
3610 e2fe6369 Iustin Pop
  req_size_dict = {
3611 e2fe6369 Iustin Pop
    constants.DT_DISKLESS: None,
3612 08db7c5c Iustin Pop
    constants.DT_PLAIN: sum(d["size"] for d in disks),
3613 08db7c5c Iustin Pop
    # 128 MB are added for drbd metadata for each disk
3614 08db7c5c Iustin Pop
    constants.DT_DRBD8: sum(d["size"] + 128 for d in disks),
3615 e2fe6369 Iustin Pop
    constants.DT_FILE: None,
3616 e2fe6369 Iustin Pop
  }
3617 e2fe6369 Iustin Pop
3618 e2fe6369 Iustin Pop
  if disk_template not in req_size_dict:
3619 e2fe6369 Iustin Pop
    raise errors.ProgrammerError("Disk template '%s' size requirement"
3620 e2fe6369 Iustin Pop
                                 " is unknown" %  disk_template)
3621 e2fe6369 Iustin Pop
3622 e2fe6369 Iustin Pop
  return req_size_dict[disk_template]
3623 e2fe6369 Iustin Pop
3624 e2fe6369 Iustin Pop
3625 74409b12 Iustin Pop
def _CheckHVParams(lu, nodenames, hvname, hvparams):
3626 74409b12 Iustin Pop
  """Hypervisor parameter validation.
3627 74409b12 Iustin Pop

3628 74409b12 Iustin Pop
  This function abstract the hypervisor parameter validation to be
3629 74409b12 Iustin Pop
  used in both instance create and instance modify.
3630 74409b12 Iustin Pop

3631 74409b12 Iustin Pop
  @type lu: L{LogicalUnit}
3632 74409b12 Iustin Pop
  @param lu: the logical unit for which we check
3633 74409b12 Iustin Pop
  @type nodenames: list
3634 74409b12 Iustin Pop
  @param nodenames: the list of nodes on which we should check
3635 74409b12 Iustin Pop
  @type hvname: string
3636 74409b12 Iustin Pop
  @param hvname: the name of the hypervisor we should use
3637 74409b12 Iustin Pop
  @type hvparams: dict
3638 74409b12 Iustin Pop
  @param hvparams: the parameters which we need to check
3639 74409b12 Iustin Pop
  @raise errors.OpPrereqError: if the parameters are not valid
3640 74409b12 Iustin Pop

3641 74409b12 Iustin Pop
  """
3642 74409b12 Iustin Pop
  hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
3643 74409b12 Iustin Pop
                                                  hvname,
3644 74409b12 Iustin Pop
                                                  hvparams)
3645 74409b12 Iustin Pop
  for node in nodenames:
3646 781de953 Iustin Pop
    info = hvinfo[node]
3647 781de953 Iustin Pop
    info.Raise()
3648 781de953 Iustin Pop
    if not info.data or not isinstance(info.data, (tuple, list)):
3649 74409b12 Iustin Pop
      raise errors.OpPrereqError("Cannot get current information"
3650 781de953 Iustin Pop
                                 " from node '%s' (%s)" % (node, info.data))
3651 781de953 Iustin Pop
    if not info.data[0]:
3652 74409b12 Iustin Pop
      raise errors.OpPrereqError("Hypervisor parameter validation failed:"
3653 781de953 Iustin Pop
                                 " %s" % info.data[1])
3654 74409b12 Iustin Pop
3655 74409b12 Iustin Pop
3656 a8083063 Iustin Pop
class LUCreateInstance(LogicalUnit):
3657 a8083063 Iustin Pop
  """Create an instance.
3658 a8083063 Iustin Pop

3659 a8083063 Iustin Pop
  """
3660 a8083063 Iustin Pop
  HPATH = "instance-add"
3661 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3662 08db7c5c Iustin Pop
  _OP_REQP = ["instance_name", "disks", "disk_template",
3663 08db7c5c Iustin Pop
              "mode", "start",
3664 08db7c5c Iustin Pop
              "wait_for_sync", "ip_check", "nics",
3665 338e51e8 Iustin Pop
              "hvparams", "beparams"]
3666 7baf741d Guido Trotter
  REQ_BGL = False
3667 7baf741d Guido Trotter
3668 7baf741d Guido Trotter
  def _ExpandNode(self, node):
3669 7baf741d Guido Trotter
    """Expands and checks one node name.
3670 7baf741d Guido Trotter

3671 7baf741d Guido Trotter
    """
3672 7baf741d Guido Trotter
    node_full = self.cfg.ExpandNodeName(node)
3673 7baf741d Guido Trotter
    if node_full is None:
3674 7baf741d Guido Trotter
      raise errors.OpPrereqError("Unknown node %s" % node)
3675 7baf741d Guido Trotter
    return node_full
3676 7baf741d Guido Trotter
3677 7baf741d Guido Trotter
  def ExpandNames(self):
3678 7baf741d Guido Trotter
    """ExpandNames for CreateInstance.
3679 7baf741d Guido Trotter

3680 7baf741d Guido Trotter
    Figure out the right locks for instance creation.
3681 7baf741d Guido Trotter

3682 7baf741d Guido Trotter
    """
3683 7baf741d Guido Trotter
    self.needed_locks = {}
3684 7baf741d Guido Trotter
3685 7baf741d Guido Trotter
    # set optional parameters to none if they don't exist
3686 6785674e Iustin Pop
    for attr in ["pnode", "snode", "iallocator", "hypervisor"]:
3687 7baf741d Guido Trotter
      if not hasattr(self.op, attr):
3688 7baf741d Guido Trotter
        setattr(self.op, attr, None)
3689 7baf741d Guido Trotter
3690 4b2f38dd Iustin Pop
    # cheap checks, mostly valid constants given
3691 4b2f38dd Iustin Pop
3692 7baf741d Guido Trotter
    # verify creation mode
3693 7baf741d Guido Trotter
    if self.op.mode not in (constants.INSTANCE_CREATE,
3694 7baf741d Guido Trotter
                            constants.INSTANCE_IMPORT):
3695 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid instance creation mode '%s'" %
3696 7baf741d Guido Trotter
                                 self.op.mode)
3697 4b2f38dd Iustin Pop
3698 7baf741d Guido Trotter
    # disk template and mirror node verification
3699 7baf741d Guido Trotter
    if self.op.disk_template not in constants.DISK_TEMPLATES:
3700 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid disk template name")
3701 7baf741d Guido Trotter
3702 4b2f38dd Iustin Pop
    if self.op.hypervisor is None:
3703 4b2f38dd Iustin Pop
      self.op.hypervisor = self.cfg.GetHypervisorType()
3704 4b2f38dd Iustin Pop
3705 8705eb96 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
3706 8705eb96 Iustin Pop
    enabled_hvs = cluster.enabled_hypervisors
3707 4b2f38dd Iustin Pop
    if self.op.hypervisor not in enabled_hvs:
3708 4b2f38dd Iustin Pop
      raise errors.OpPrereqError("Selected hypervisor (%s) not enabled in the"
3709 4b2f38dd Iustin Pop
                                 " cluster (%s)" % (self.op.hypervisor,
3710 4b2f38dd Iustin Pop
                                  ",".join(enabled_hvs)))
3711 4b2f38dd Iustin Pop
3712 6785674e Iustin Pop
    # check hypervisor parameter syntax (locally)
3713 6785674e Iustin Pop
3714 8705eb96 Iustin Pop
    filled_hvp = cluster.FillDict(cluster.hvparams[self.op.hypervisor],
3715 8705eb96 Iustin Pop
                                  self.op.hvparams)
3716 6785674e Iustin Pop
    hv_type = hypervisor.GetHypervisor(self.op.hypervisor)
3717 8705eb96 Iustin Pop
    hv_type.CheckParameterSyntax(filled_hvp)
3718 6785674e Iustin Pop
3719 338e51e8 Iustin Pop
    # fill and remember the beparams dict
3720 d4b72030 Guido Trotter
    utils.CheckBEParams(self.op.beparams)
3721 338e51e8 Iustin Pop
    self.be_full = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
3722 338e51e8 Iustin Pop
                                    self.op.beparams)
3723 338e51e8 Iustin Pop
3724 7baf741d Guido Trotter
    #### instance parameters check
3725 7baf741d Guido Trotter
3726 7baf741d Guido Trotter
    # instance name verification
3727 7baf741d Guido Trotter
    hostname1 = utils.HostInfo(self.op.instance_name)
3728 7baf741d Guido Trotter
    self.op.instance_name = instance_name = hostname1.name
3729 7baf741d Guido Trotter
3730 7baf741d Guido Trotter
    # this is just a preventive check, but someone might still add this
3731 7baf741d Guido Trotter
    # instance in the meantime, and creation will fail at lock-add time
3732 7baf741d Guido Trotter
    if instance_name in self.cfg.GetInstanceList():
3733 7baf741d Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
3734 7baf741d Guido Trotter
                                 instance_name)
3735 7baf741d Guido Trotter
3736 7baf741d Guido Trotter
    self.add_locks[locking.LEVEL_INSTANCE] = instance_name
3737 7baf741d Guido Trotter
3738 08db7c5c Iustin Pop
    # NIC buildup
3739 08db7c5c Iustin Pop
    self.nics = []
3740 08db7c5c Iustin Pop
    for nic in self.op.nics:
3741 08db7c5c Iustin Pop
      # ip validity checks
3742 08db7c5c Iustin Pop
      ip = nic.get("ip", None)
3743 08db7c5c Iustin Pop
      if ip is None or ip.lower() == "none":
3744 08db7c5c Iustin Pop
        nic_ip = None
3745 08db7c5c Iustin Pop
      elif ip.lower() == constants.VALUE_AUTO:
3746 08db7c5c Iustin Pop
        nic_ip = hostname1.ip
3747 08db7c5c Iustin Pop
      else:
3748 08db7c5c Iustin Pop
        if not utils.IsValidIP(ip):
3749 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Given IP address '%s' doesn't look"
3750 08db7c5c Iustin Pop
                                     " like a valid IP" % ip)
3751 08db7c5c Iustin Pop
        nic_ip = ip
3752 08db7c5c Iustin Pop
3753 08db7c5c Iustin Pop
      # MAC address verification
3754 08db7c5c Iustin Pop
      mac = nic.get("mac", constants.VALUE_AUTO)
3755 08db7c5c Iustin Pop
      if mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
3756 08db7c5c Iustin Pop
        if not utils.IsValidMac(mac.lower()):
3757 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Invalid MAC address specified: %s" %
3758 08db7c5c Iustin Pop
                                     mac)
3759 08db7c5c Iustin Pop
      # bridge verification
3760 08db7c5c Iustin Pop
      bridge = nic.get("bridge", self.cfg.GetDefBridge())
3761 08db7c5c Iustin Pop
      self.nics.append(objects.NIC(mac=mac, ip=nic_ip, bridge=bridge))
3762 08db7c5c Iustin Pop
3763 08db7c5c Iustin Pop
    # disk checks/pre-build
3764 08db7c5c Iustin Pop
    self.disks = []
3765 08db7c5c Iustin Pop
    for disk in self.op.disks:
3766 08db7c5c Iustin Pop
      mode = disk.get("mode", constants.DISK_RDWR)
3767 08db7c5c Iustin Pop
      if mode not in constants.DISK_ACCESS_SET:
3768 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk access mode '%s'" %
3769 08db7c5c Iustin Pop
                                   mode)
3770 08db7c5c Iustin Pop
      size = disk.get("size", None)
3771 08db7c5c Iustin Pop
      if size is None:
3772 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Missing disk size")
3773 08db7c5c Iustin Pop
      try:
3774 08db7c5c Iustin Pop
        size = int(size)
3775 08db7c5c Iustin Pop
      except ValueError:
3776 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk size '%s'" % size)
3777 08db7c5c Iustin Pop
      self.disks.append({"size": size, "mode": mode})
3778 08db7c5c Iustin Pop
3779 7baf741d Guido Trotter
    # used in CheckPrereq for ip ping check
3780 7baf741d Guido Trotter
    self.check_ip = hostname1.ip
3781 7baf741d Guido Trotter
3782 7baf741d Guido Trotter
    # file storage checks
3783 7baf741d Guido Trotter
    if (self.op.file_driver and
3784 7baf741d Guido Trotter
        not self.op.file_driver in constants.FILE_DRIVER):
3785 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid file driver name '%s'" %
3786 7baf741d Guido Trotter
                                 self.op.file_driver)
3787 7baf741d Guido Trotter
3788 7baf741d Guido Trotter
    if self.op.file_storage_dir and os.path.isabs(self.op.file_storage_dir):
3789 7baf741d Guido Trotter
      raise errors.OpPrereqError("File storage directory path not absolute")
3790 7baf741d Guido Trotter
3791 7baf741d Guido Trotter
    ### Node/iallocator related checks
3792 7baf741d Guido Trotter
    if [self.op.iallocator, self.op.pnode].count(None) != 1:
3793 7baf741d Guido Trotter
      raise errors.OpPrereqError("One and only one of iallocator and primary"
3794 7baf741d Guido Trotter
                                 " node must be given")
3795 7baf741d Guido Trotter
3796 7baf741d Guido Trotter
    if self.op.iallocator:
3797 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
3798 7baf741d Guido Trotter
    else:
3799 7baf741d Guido Trotter
      self.op.pnode = self._ExpandNode(self.op.pnode)
3800 7baf741d Guido Trotter
      nodelist = [self.op.pnode]
3801 7baf741d Guido Trotter
      if self.op.snode is not None:
3802 7baf741d Guido Trotter
        self.op.snode = self._ExpandNode(self.op.snode)
3803 7baf741d Guido Trotter
        nodelist.append(self.op.snode)
3804 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = nodelist
3805 7baf741d Guido Trotter
3806 7baf741d Guido Trotter
    # in case of import lock the source node too
3807 7baf741d Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
3808 7baf741d Guido Trotter
      src_node = getattr(self.op, "src_node", None)
3809 7baf741d Guido Trotter
      src_path = getattr(self.op, "src_path", None)
3810 7baf741d Guido Trotter
3811 b9322a9f Guido Trotter
      if src_path is None:
3812 b9322a9f Guido Trotter
        self.op.src_path = src_path = self.op.instance_name
3813 b9322a9f Guido Trotter
3814 b9322a9f Guido Trotter
      if src_node is None:
3815 b9322a9f Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
3816 b9322a9f Guido Trotter
        self.op.src_node = None
3817 b9322a9f Guido Trotter
        if os.path.isabs(src_path):
3818 b9322a9f Guido Trotter
          raise errors.OpPrereqError("Importing an instance from an absolute"
3819 b9322a9f Guido Trotter
                                     " path requires a source node option.")
3820 b9322a9f Guido Trotter
      else:
3821 b9322a9f Guido Trotter
        self.op.src_node = src_node = self._ExpandNode(src_node)
3822 b9322a9f Guido Trotter
        if self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET:
3823 b9322a9f Guido Trotter
          self.needed_locks[locking.LEVEL_NODE].append(src_node)
3824 b9322a9f Guido Trotter
        if not os.path.isabs(src_path):
3825 b9322a9f Guido Trotter
          self.op.src_path = src_path = \
3826 b9322a9f Guido Trotter
            os.path.join(constants.EXPORT_DIR, src_path)
3827 7baf741d Guido Trotter
3828 7baf741d Guido Trotter
    else: # INSTANCE_CREATE
3829 7baf741d Guido Trotter
      if getattr(self.op, "os_type", None) is None:
3830 7baf741d Guido Trotter
        raise errors.OpPrereqError("No guest OS specified")
3831 a8083063 Iustin Pop
3832 538475ca Iustin Pop
  def _RunAllocator(self):
3833 538475ca Iustin Pop
    """Run the allocator based on input opcode.
3834 538475ca Iustin Pop

3835 538475ca Iustin Pop
    """
3836 08db7c5c Iustin Pop
    nics = [n.ToDict() for n in self.nics]
3837 72737a7f Iustin Pop
    ial = IAllocator(self,
3838 29859cb7 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_ALLOC,
3839 d1c2dd75 Iustin Pop
                     name=self.op.instance_name,
3840 d1c2dd75 Iustin Pop
                     disk_template=self.op.disk_template,
3841 d1c2dd75 Iustin Pop
                     tags=[],
3842 d1c2dd75 Iustin Pop
                     os=self.op.os_type,
3843 338e51e8 Iustin Pop
                     vcpus=self.be_full[constants.BE_VCPUS],
3844 338e51e8 Iustin Pop
                     mem_size=self.be_full[constants.BE_MEMORY],
3845 08db7c5c Iustin Pop
                     disks=self.disks,
3846 d1c2dd75 Iustin Pop
                     nics=nics,
3847 8cc7e742 Guido Trotter
                     hypervisor=self.op.hypervisor,
3848 29859cb7 Iustin Pop
                     )
3849 d1c2dd75 Iustin Pop
3850 d1c2dd75 Iustin Pop
    ial.Run(self.op.iallocator)
3851 d1c2dd75 Iustin Pop
3852 d1c2dd75 Iustin Pop
    if not ial.success:
3853 538475ca Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
3854 538475ca Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
3855 d1c2dd75 Iustin Pop
                                                           ial.info))
3856 27579978 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
3857 538475ca Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
3858 538475ca Iustin Pop
                                 " of nodes (%s), required %s" %
3859 97abc79f Iustin Pop
                                 (self.op.iallocator, len(ial.nodes),
3860 1ce4bbe3 Renรฉ Nussbaumer
                                  ial.required_nodes))
3861 d1c2dd75 Iustin Pop
    self.op.pnode = ial.nodes[0]
3862 86d9d3bb Iustin Pop
    self.LogInfo("Selected nodes for instance %s via iallocator %s: %s",
3863 86d9d3bb Iustin Pop
                 self.op.instance_name, self.op.iallocator,
3864 86d9d3bb Iustin Pop
                 ", ".join(ial.nodes))
3865 27579978 Iustin Pop
    if ial.required_nodes == 2:
3866 d1c2dd75 Iustin Pop
      self.op.snode = ial.nodes[1]
3867 538475ca Iustin Pop
3868 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3869 a8083063 Iustin Pop
    """Build hooks env.
3870 a8083063 Iustin Pop

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

3873 a8083063 Iustin Pop
    """
3874 a8083063 Iustin Pop
    env = {
3875 396e1b78 Michael Hanselmann
      "INSTANCE_DISK_TEMPLATE": self.op.disk_template,
3876 08db7c5c Iustin Pop
      "INSTANCE_DISK_SIZE": ",".join(str(d["size"]) for d in self.disks),
3877 a8083063 Iustin Pop
      "INSTANCE_ADD_MODE": self.op.mode,
3878 a8083063 Iustin Pop
      }
3879 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
3880 396e1b78 Michael Hanselmann
      env["INSTANCE_SRC_NODE"] = self.op.src_node
3881 396e1b78 Michael Hanselmann
      env["INSTANCE_SRC_PATH"] = self.op.src_path
3882 09acf207 Guido Trotter
      env["INSTANCE_SRC_IMAGES"] = self.src_images
3883 396e1b78 Michael Hanselmann
3884 396e1b78 Michael Hanselmann
    env.update(_BuildInstanceHookEnv(name=self.op.instance_name,
3885 396e1b78 Michael Hanselmann
      primary_node=self.op.pnode,
3886 396e1b78 Michael Hanselmann
      secondary_nodes=self.secondaries,
3887 396e1b78 Michael Hanselmann
      status=self.instance_status,
3888 ecb215b5 Michael Hanselmann
      os_type=self.op.os_type,
3889 338e51e8 Iustin Pop
      memory=self.be_full[constants.BE_MEMORY],
3890 338e51e8 Iustin Pop
      vcpus=self.be_full[constants.BE_VCPUS],
3891 08db7c5c Iustin Pop
      nics=[(n.ip, n.bridge, n.mac) for n in self.nics],
3892 396e1b78 Michael Hanselmann
    ))
3893 a8083063 Iustin Pop
3894 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
3895 a8083063 Iustin Pop
          self.secondaries)
3896 a8083063 Iustin Pop
    return env, nl, nl
3897 a8083063 Iustin Pop
3898 a8083063 Iustin Pop
3899 a8083063 Iustin Pop
  def CheckPrereq(self):
3900 a8083063 Iustin Pop
    """Check prerequisites.
3901 a8083063 Iustin Pop

3902 a8083063 Iustin Pop
    """
3903 eedc99de Manuel Franceschini
    if (not self.cfg.GetVGName() and
3904 eedc99de Manuel Franceschini
        self.op.disk_template not in constants.DTS_NOT_LVM):
3905 eedc99de Manuel Franceschini
      raise errors.OpPrereqError("Cluster does not support lvm-based"
3906 eedc99de Manuel Franceschini
                                 " instances")
3907 eedc99de Manuel Franceschini
3908 e69d05fd Iustin Pop
3909 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
3910 7baf741d Guido Trotter
      src_node = self.op.src_node
3911 7baf741d Guido Trotter
      src_path = self.op.src_path
3912 a8083063 Iustin Pop
3913 c0cbdc67 Guido Trotter
      if src_node is None:
3914 c0cbdc67 Guido Trotter
        exp_list = self.rpc.call_export_list(
3915 781de953 Iustin Pop
          self.acquired_locks[locking.LEVEL_NODE])
3916 c0cbdc67 Guido Trotter
        found = False
3917 c0cbdc67 Guido Trotter
        for node in exp_list:
3918 781de953 Iustin Pop
          if not exp_list[node].failed and src_path in exp_list[node].data:
3919 c0cbdc67 Guido Trotter
            found = True
3920 c0cbdc67 Guido Trotter
            self.op.src_node = src_node = node
3921 c0cbdc67 Guido Trotter
            self.op.src_path = src_path = os.path.join(constants.EXPORT_DIR,
3922 c0cbdc67 Guido Trotter
                                                       src_path)
3923 c0cbdc67 Guido Trotter
            break
3924 c0cbdc67 Guido Trotter
        if not found:
3925 c0cbdc67 Guido Trotter
          raise errors.OpPrereqError("No export found for relative path %s" %
3926 c0cbdc67 Guido Trotter
                                      src_path)
3927 c0cbdc67 Guido Trotter
3928 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, src_node)
3929 781de953 Iustin Pop
      result = self.rpc.call_export_info(src_node, src_path)
3930 781de953 Iustin Pop
      result.Raise()
3931 781de953 Iustin Pop
      if not result.data:
3932 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("No export found in dir %s" % src_path)
3933 a8083063 Iustin Pop
3934 781de953 Iustin Pop
      export_info = result.data
3935 a8083063 Iustin Pop
      if not export_info.has_section(constants.INISECT_EXP):
3936 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Corrupted export config")
3937 a8083063 Iustin Pop
3938 a8083063 Iustin Pop
      ei_version = export_info.get(constants.INISECT_EXP, 'version')
3939 a8083063 Iustin Pop
      if (int(ei_version) != constants.EXPORT_VERSION):
3940 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Wrong export version %s (wanted %d)" %
3941 3ecf6786 Iustin Pop
                                   (ei_version, constants.EXPORT_VERSION))
3942 a8083063 Iustin Pop
3943 09acf207 Guido Trotter
      # Check that the new instance doesn't have less disks than the export
3944 08db7c5c Iustin Pop
      instance_disks = len(self.disks)
3945 09acf207 Guido Trotter
      export_disks = export_info.getint(constants.INISECT_INS, 'disk_count')
3946 09acf207 Guido Trotter
      if instance_disks < export_disks:
3947 09acf207 Guido Trotter
        raise errors.OpPrereqError("Not enough disks to import."
3948 09acf207 Guido Trotter
                                   " (instance: %d, export: %d)" %
3949 726d7d68 Iustin Pop
                                   (instance_disks, export_disks))
3950 a8083063 Iustin Pop
3951 a8083063 Iustin Pop
      self.op.os_type = export_info.get(constants.INISECT_EXP, 'os')
3952 09acf207 Guido Trotter
      disk_images = []
3953 09acf207 Guido Trotter
      for idx in range(export_disks):
3954 09acf207 Guido Trotter
        option = 'disk%d_dump' % idx
3955 09acf207 Guido Trotter
        if export_info.has_option(constants.INISECT_INS, option):
3956 09acf207 Guido Trotter
          # FIXME: are the old os-es, disk sizes, etc. useful?
3957 09acf207 Guido Trotter
          export_name = export_info.get(constants.INISECT_INS, option)
3958 09acf207 Guido Trotter
          image = os.path.join(src_path, export_name)
3959 09acf207 Guido Trotter
          disk_images.append(image)
3960 09acf207 Guido Trotter
        else:
3961 09acf207 Guido Trotter
          disk_images.append(False)
3962 09acf207 Guido Trotter
3963 09acf207 Guido Trotter
      self.src_images = disk_images
3964 901a65c1 Iustin Pop
3965 b4364a6b Guido Trotter
      old_name = export_info.get(constants.INISECT_INS, 'name')
3966 b4364a6b Guido Trotter
      # FIXME: int() here could throw a ValueError on broken exports
3967 b4364a6b Guido Trotter
      exp_nic_count = int(export_info.get(constants.INISECT_INS, 'nic_count'))
3968 b4364a6b Guido Trotter
      if self.op.instance_name == old_name:
3969 b4364a6b Guido Trotter
        for idx, nic in enumerate(self.nics):
3970 b4364a6b Guido Trotter
          if nic.mac == constants.VALUE_AUTO and exp_nic_count >= idx:
3971 b4364a6b Guido Trotter
            nic_mac_ini = 'nic%d_mac' % idx
3972 b4364a6b Guido Trotter
            nic.mac = export_info.get(constants.INISECT_INS, nic_mac_ini)
3973 bc89efc3 Guido Trotter
3974 7baf741d Guido Trotter
    # ip ping checks (we use the same ip that was resolved in ExpandNames)
3975 901a65c1 Iustin Pop
    if self.op.start and not self.op.ip_check:
3976 901a65c1 Iustin Pop
      raise errors.OpPrereqError("Cannot ignore IP address conflicts when"
3977 901a65c1 Iustin Pop
                                 " adding an instance in start mode")
3978 901a65c1 Iustin Pop
3979 901a65c1 Iustin Pop
    if self.op.ip_check:
3980 7baf741d Guido Trotter
      if utils.TcpPing(self.check_ip, constants.DEFAULT_NODED_PORT):
3981 901a65c1 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
3982 7b3a8fb5 Iustin Pop
                                   (self.check_ip, self.op.instance_name))
3983 901a65c1 Iustin Pop
3984 538475ca Iustin Pop
    #### allocator run
3985 538475ca Iustin Pop
3986 538475ca Iustin Pop
    if self.op.iallocator is not None:
3987 538475ca Iustin Pop
      self._RunAllocator()
3988 0f1a06e3 Manuel Franceschini
3989 901a65c1 Iustin Pop
    #### node related checks
3990 901a65c1 Iustin Pop
3991 901a65c1 Iustin Pop
    # check primary node
3992 7baf741d Guido Trotter
    self.pnode = pnode = self.cfg.GetNodeInfo(self.op.pnode)
3993 7baf741d Guido Trotter
    assert self.pnode is not None, \
3994 7baf741d Guido Trotter
      "Cannot retrieve locked node %s" % self.op.pnode
3995 7527a8a4 Iustin Pop
    if pnode.offline:
3996 7527a8a4 Iustin Pop
      raise errors.OpPrereqError("Cannot use offline primary node '%s'" %
3997 7527a8a4 Iustin Pop
                                 pnode.name)
3998 7527a8a4 Iustin Pop
3999 901a65c1 Iustin Pop
    self.secondaries = []
4000 901a65c1 Iustin Pop
4001 901a65c1 Iustin Pop
    # mirror node verification
4002 a1f445d3 Iustin Pop
    if self.op.disk_template in constants.DTS_NET_MIRROR:
4003 7baf741d Guido Trotter
      if self.op.snode is None:
4004 a1f445d3 Iustin Pop
        raise errors.OpPrereqError("The networked disk templates need"
4005 3ecf6786 Iustin Pop
                                   " a mirror node")
4006 7baf741d Guido Trotter
      if self.op.snode == pnode.name:
4007 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The secondary node cannot be"
4008 3ecf6786 Iustin Pop
                                   " the primary node.")
4009 7baf741d Guido Trotter
      self.secondaries.append(self.op.snode)
4010 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, self.op.snode)
4011 a8083063 Iustin Pop
4012 6785674e Iustin Pop
    nodenames = [pnode.name] + self.secondaries
4013 6785674e Iustin Pop
4014 e2fe6369 Iustin Pop
    req_size = _ComputeDiskSize(self.op.disk_template,
4015 08db7c5c Iustin Pop
                                self.disks)
4016 ed1ebc60 Guido Trotter
4017 8d75db10 Iustin Pop
    # Check lv size requirements
4018 8d75db10 Iustin Pop
    if req_size is not None:
4019 72737a7f Iustin Pop
      nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
4020 72737a7f Iustin Pop
                                         self.op.hypervisor)
4021 8d75db10 Iustin Pop
      for node in nodenames:
4022 781de953 Iustin Pop
        info = nodeinfo[node]
4023 781de953 Iustin Pop
        info.Raise()
4024 781de953 Iustin Pop
        info = info.data
4025 8d75db10 Iustin Pop
        if not info:
4026 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Cannot get current information"
4027 3e91897b Iustin Pop
                                     " from node '%s'" % node)
4028 8d75db10 Iustin Pop
        vg_free = info.get('vg_free', None)
4029 8d75db10 Iustin Pop
        if not isinstance(vg_free, int):
4030 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Can't compute free disk space on"
4031 8d75db10 Iustin Pop
                                     " node %s" % node)
4032 8d75db10 Iustin Pop
        if req_size > info['vg_free']:
4033 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Not enough disk space on target node %s."
4034 8d75db10 Iustin Pop
                                     " %d MB available, %d MB required" %
4035 8d75db10 Iustin Pop
                                     (node, info['vg_free'], req_size))
4036 ed1ebc60 Guido Trotter
4037 74409b12 Iustin Pop
    _CheckHVParams(self, nodenames, self.op.hypervisor, self.op.hvparams)
4038 6785674e Iustin Pop
4039 a8083063 Iustin Pop
    # os verification
4040 781de953 Iustin Pop
    result = self.rpc.call_os_get(pnode.name, self.op.os_type)
4041 781de953 Iustin Pop
    result.Raise()
4042 781de953 Iustin Pop
    if not isinstance(result.data, objects.OS):
4043 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("OS '%s' not in supported os list for"
4044 3ecf6786 Iustin Pop
                                 " primary node"  % self.op.os_type)
4045 a8083063 Iustin Pop
4046 901a65c1 Iustin Pop
    # bridge check on primary node
4047 08db7c5c Iustin Pop
    bridges = [n.bridge for n in self.nics]
4048 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(self.pnode.name, bridges)
4049 781de953 Iustin Pop
    result.Raise()
4050 781de953 Iustin Pop
    if not result.data:
4051 781de953 Iustin Pop
      raise errors.OpPrereqError("One of the target bridges '%s' does not"
4052 781de953 Iustin Pop
                                 " exist on destination node '%s'" %
4053 08db7c5c Iustin Pop
                                 (",".join(bridges), pnode.name))
4054 a8083063 Iustin Pop
4055 49ce1563 Iustin Pop
    # memory check on primary node
4056 49ce1563 Iustin Pop
    if self.op.start:
4057 b9bddb6b Iustin Pop
      _CheckNodeFreeMemory(self, self.pnode.name,
4058 49ce1563 Iustin Pop
                           "creating instance %s" % self.op.instance_name,
4059 338e51e8 Iustin Pop
                           self.be_full[constants.BE_MEMORY],
4060 338e51e8 Iustin Pop
                           self.op.hypervisor)
4061 49ce1563 Iustin Pop
4062 a8083063 Iustin Pop
    if self.op.start:
4063 a8083063 Iustin Pop
      self.instance_status = 'up'
4064 a8083063 Iustin Pop
    else:
4065 a8083063 Iustin Pop
      self.instance_status = 'down'
4066 a8083063 Iustin Pop
4067 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4068 a8083063 Iustin Pop
    """Create and add the instance to the cluster.
4069 a8083063 Iustin Pop

4070 a8083063 Iustin Pop
    """
4071 a8083063 Iustin Pop
    instance = self.op.instance_name
4072 a8083063 Iustin Pop
    pnode_name = self.pnode.name
4073 a8083063 Iustin Pop
4074 08db7c5c Iustin Pop
    for nic in self.nics:
4075 08db7c5c Iustin Pop
      if nic.mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4076 08db7c5c Iustin Pop
        nic.mac = self.cfg.GenerateMAC()
4077 a8083063 Iustin Pop
4078 e69d05fd Iustin Pop
    ht_kind = self.op.hypervisor
4079 2a6469d5 Alexander Schreiber
    if ht_kind in constants.HTS_REQ_PORT:
4080 2a6469d5 Alexander Schreiber
      network_port = self.cfg.AllocatePort()
4081 2a6469d5 Alexander Schreiber
    else:
4082 2a6469d5 Alexander Schreiber
      network_port = None
4083 58acb49d Alexander Schreiber
4084 6785674e Iustin Pop
    ##if self.op.vnc_bind_address is None:
4085 6785674e Iustin Pop
    ##  self.op.vnc_bind_address = constants.VNC_DEFAULT_BIND_ADDRESS
4086 31a853d2 Iustin Pop
4087 2c313123 Manuel Franceschini
    # this is needed because os.path.join does not accept None arguments
4088 2c313123 Manuel Franceschini
    if self.op.file_storage_dir is None:
4089 2c313123 Manuel Franceschini
      string_file_storage_dir = ""
4090 2c313123 Manuel Franceschini
    else:
4091 2c313123 Manuel Franceschini
      string_file_storage_dir = self.op.file_storage_dir
4092 2c313123 Manuel Franceschini
4093 0f1a06e3 Manuel Franceschini
    # build the full file storage dir path
4094 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.normpath(os.path.join(
4095 d6a02168 Michael Hanselmann
                                        self.cfg.GetFileStorageDir(),
4096 2c313123 Manuel Franceschini
                                        string_file_storage_dir, instance))
4097 0f1a06e3 Manuel Franceschini
4098 0f1a06e3 Manuel Franceschini
4099 b9bddb6b Iustin Pop
    disks = _GenerateDiskTemplate(self,
4100 a8083063 Iustin Pop
                                  self.op.disk_template,
4101 a8083063 Iustin Pop
                                  instance, pnode_name,
4102 08db7c5c Iustin Pop
                                  self.secondaries,
4103 08db7c5c Iustin Pop
                                  self.disks,
4104 0f1a06e3 Manuel Franceschini
                                  file_storage_dir,
4105 e2a65344 Iustin Pop
                                  self.op.file_driver,
4106 e2a65344 Iustin Pop
                                  0)
4107 a8083063 Iustin Pop
4108 a8083063 Iustin Pop
    iobj = objects.Instance(name=instance, os=self.op.os_type,
4109 a8083063 Iustin Pop
                            primary_node=pnode_name,
4110 08db7c5c Iustin Pop
                            nics=self.nics, disks=disks,
4111 a8083063 Iustin Pop
                            disk_template=self.op.disk_template,
4112 a8083063 Iustin Pop
                            status=self.instance_status,
4113 58acb49d Alexander Schreiber
                            network_port=network_port,
4114 338e51e8 Iustin Pop
                            beparams=self.op.beparams,
4115 6785674e Iustin Pop
                            hvparams=self.op.hvparams,
4116 e69d05fd Iustin Pop
                            hypervisor=self.op.hypervisor,
4117 a8083063 Iustin Pop
                            )
4118 a8083063 Iustin Pop
4119 a8083063 Iustin Pop
    feedback_fn("* creating instance disks...")
4120 b9bddb6b Iustin Pop
    if not _CreateDisks(self, iobj):
4121 b9bddb6b Iustin Pop
      _RemoveDisks(self, iobj)
4122 a1578d63 Iustin Pop
      self.cfg.ReleaseDRBDMinors(instance)
4123 3ecf6786 Iustin Pop
      raise errors.OpExecError("Device creation failed, reverting...")
4124 a8083063 Iustin Pop
4125 a8083063 Iustin Pop
    feedback_fn("adding instance %s to cluster config" % instance)
4126 a8083063 Iustin Pop
4127 a8083063 Iustin Pop
    self.cfg.AddInstance(iobj)
4128 7baf741d Guido Trotter
    # Declare that we don't want to remove the instance lock anymore, as we've
4129 7baf741d Guido Trotter
    # added the instance to the config
4130 7baf741d Guido Trotter
    del self.remove_locks[locking.LEVEL_INSTANCE]
4131 a1578d63 Iustin Pop
    # Remove the temp. assignements for the instance's drbds
4132 a1578d63 Iustin Pop
    self.cfg.ReleaseDRBDMinors(instance)
4133 e36e96b4 Guido Trotter
    # Unlock all the nodes
4134 9c8971d7 Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4135 9c8971d7 Guido Trotter
      nodes_keep = [self.op.src_node]
4136 9c8971d7 Guido Trotter
      nodes_release = [node for node in self.acquired_locks[locking.LEVEL_NODE]
4137 9c8971d7 Guido Trotter
                       if node != self.op.src_node]
4138 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE, nodes_release)
4139 9c8971d7 Guido Trotter
      self.acquired_locks[locking.LEVEL_NODE] = nodes_keep
4140 9c8971d7 Guido Trotter
    else:
4141 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE)
4142 9c8971d7 Guido Trotter
      del self.acquired_locks[locking.LEVEL_NODE]
4143 a8083063 Iustin Pop
4144 a8083063 Iustin Pop
    if self.op.wait_for_sync:
4145 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj)
4146 a1f445d3 Iustin Pop
    elif iobj.disk_template in constants.DTS_NET_MIRROR:
4147 a8083063 Iustin Pop
      # make sure the disks are not degraded (still sync-ing is ok)
4148 a8083063 Iustin Pop
      time.sleep(15)
4149 a8083063 Iustin Pop
      feedback_fn("* checking mirrors status")
4150 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj, oneshot=True)
4151 a8083063 Iustin Pop
    else:
4152 a8083063 Iustin Pop
      disk_abort = False
4153 a8083063 Iustin Pop
4154 a8083063 Iustin Pop
    if disk_abort:
4155 b9bddb6b Iustin Pop
      _RemoveDisks(self, iobj)
4156 a8083063 Iustin Pop
      self.cfg.RemoveInstance(iobj.name)
4157 7baf741d Guido Trotter
      # Make sure the instance lock gets removed
4158 7baf741d Guido Trotter
      self.remove_locks[locking.LEVEL_INSTANCE] = iobj.name
4159 3ecf6786 Iustin Pop
      raise errors.OpExecError("There are some degraded disks for"
4160 3ecf6786 Iustin Pop
                               " this instance")
4161 a8083063 Iustin Pop
4162 a8083063 Iustin Pop
    feedback_fn("creating os for instance %s on node %s" %
4163 a8083063 Iustin Pop
                (instance, pnode_name))
4164 a8083063 Iustin Pop
4165 a8083063 Iustin Pop
    if iobj.disk_template != constants.DT_DISKLESS:
4166 a8083063 Iustin Pop
      if self.op.mode == constants.INSTANCE_CREATE:
4167 a8083063 Iustin Pop
        feedback_fn("* running the instance OS create scripts...")
4168 781de953 Iustin Pop
        result = self.rpc.call_instance_os_add(pnode_name, iobj)
4169 781de953 Iustin Pop
        result.Raise()
4170 781de953 Iustin Pop
        if not result.data:
4171 781de953 Iustin Pop
          raise errors.OpExecError("Could not add os for instance %s"
4172 3ecf6786 Iustin Pop
                                   " on node %s" %
4173 3ecf6786 Iustin Pop
                                   (instance, pnode_name))
4174 a8083063 Iustin Pop
4175 a8083063 Iustin Pop
      elif self.op.mode == constants.INSTANCE_IMPORT:
4176 a8083063 Iustin Pop
        feedback_fn("* running the instance OS import scripts...")
4177 a8083063 Iustin Pop
        src_node = self.op.src_node
4178 09acf207 Guido Trotter
        src_images = self.src_images
4179 62c9ec92 Iustin Pop
        cluster_name = self.cfg.GetClusterName()
4180 6c0af70e Guido Trotter
        import_result = self.rpc.call_instance_os_import(pnode_name, iobj,
4181 09acf207 Guido Trotter
                                                         src_node, src_images,
4182 6c0af70e Guido Trotter
                                                         cluster_name)
4183 781de953 Iustin Pop
        import_result.Raise()
4184 781de953 Iustin Pop
        for idx, result in enumerate(import_result.data):
4185 09acf207 Guido Trotter
          if not result:
4186 726d7d68 Iustin Pop
            self.LogWarning("Could not import the image %s for instance"
4187 726d7d68 Iustin Pop
                            " %s, disk %d, on node %s" %
4188 726d7d68 Iustin Pop
                            (src_images[idx], instance, idx, pnode_name))
4189 a8083063 Iustin Pop
      else:
4190 a8083063 Iustin Pop
        # also checked in the prereq part
4191 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Unknown OS initialization mode '%s'"
4192 3ecf6786 Iustin Pop
                                     % self.op.mode)
4193 a8083063 Iustin Pop
4194 a8083063 Iustin Pop
    if self.op.start:
4195 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s", instance, pnode_name)
4196 a8083063 Iustin Pop
      feedback_fn("* starting instance...")
4197 781de953 Iustin Pop
      result = self.rpc.call_instance_start(pnode_name, iobj, None)
4198 781de953 Iustin Pop
      result.Raise()
4199 781de953 Iustin Pop
      if not result.data:
4200 3ecf6786 Iustin Pop
        raise errors.OpExecError("Could not start instance")
4201 a8083063 Iustin Pop
4202 a8083063 Iustin Pop
4203 a8083063 Iustin Pop
class LUConnectConsole(NoHooksLU):
4204 a8083063 Iustin Pop
  """Connect to an instance's console.
4205 a8083063 Iustin Pop

4206 a8083063 Iustin Pop
  This is somewhat special in that it returns the command line that
4207 a8083063 Iustin Pop
  you need to run on the master node in order to connect to the
4208 a8083063 Iustin Pop
  console.
4209 a8083063 Iustin Pop

4210 a8083063 Iustin Pop
  """
4211 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
4212 8659b73e Guido Trotter
  REQ_BGL = False
4213 8659b73e Guido Trotter
4214 8659b73e Guido Trotter
  def ExpandNames(self):
4215 8659b73e Guido Trotter
    self._ExpandAndLockInstance()
4216 a8083063 Iustin Pop
4217 a8083063 Iustin Pop
  def CheckPrereq(self):
4218 a8083063 Iustin Pop
    """Check prerequisites.
4219 a8083063 Iustin Pop

4220 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
4221 a8083063 Iustin Pop

4222 a8083063 Iustin Pop
    """
4223 8659b73e Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4224 8659b73e Guido Trotter
    assert self.instance is not None, \
4225 8659b73e Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4226 513e896d Guido Trotter
    _CheckNodeOnline(self, self.instance.primary_node)
4227 a8083063 Iustin Pop
4228 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4229 a8083063 Iustin Pop
    """Connect to the console of an instance
4230 a8083063 Iustin Pop

4231 a8083063 Iustin Pop
    """
4232 a8083063 Iustin Pop
    instance = self.instance
4233 a8083063 Iustin Pop
    node = instance.primary_node
4234 a8083063 Iustin Pop
4235 72737a7f Iustin Pop
    node_insts = self.rpc.call_instance_list([node],
4236 72737a7f Iustin Pop
                                             [instance.hypervisor])[node]
4237 781de953 Iustin Pop
    node_insts.Raise()
4238 a8083063 Iustin Pop
4239 781de953 Iustin Pop
    if instance.name not in node_insts.data:
4240 3ecf6786 Iustin Pop
      raise errors.OpExecError("Instance %s is not running." % instance.name)
4241 a8083063 Iustin Pop
4242 9a4f63d1 Iustin Pop
    logging.debug("Connecting to console of %s on %s", instance.name, node)
4243 a8083063 Iustin Pop
4244 e69d05fd Iustin Pop
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
4245 30989e69 Alexander Schreiber
    console_cmd = hyper.GetShellCommandForConsole(instance)
4246 b047857b Michael Hanselmann
4247 82122173 Iustin Pop
    # build ssh cmdline
4248 0a80a26f Michael Hanselmann
    return self.ssh.BuildCmd(node, "root", console_cmd, batch=True, tty=True)
4249 a8083063 Iustin Pop
4250 a8083063 Iustin Pop
4251 a8083063 Iustin Pop
class LUReplaceDisks(LogicalUnit):
4252 a8083063 Iustin Pop
  """Replace the disks of an instance.
4253 a8083063 Iustin Pop

4254 a8083063 Iustin Pop
  """
4255 a8083063 Iustin Pop
  HPATH = "mirrors-replace"
4256 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4257 a9e0c397 Iustin Pop
  _OP_REQP = ["instance_name", "mode", "disks"]
4258 efd990e4 Guido Trotter
  REQ_BGL = False
4259 efd990e4 Guido Trotter
4260 7e9366f7 Iustin Pop
  def CheckArguments(self):
4261 efd990e4 Guido Trotter
    if not hasattr(self.op, "remote_node"):
4262 efd990e4 Guido Trotter
      self.op.remote_node = None
4263 7e9366f7 Iustin Pop
    if not hasattr(self.op, "iallocator"):
4264 7e9366f7 Iustin Pop
      self.op.iallocator = None
4265 7e9366f7 Iustin Pop
4266 7e9366f7 Iustin Pop
    # check for valid parameter combination
4267 7e9366f7 Iustin Pop
    cnt = [self.op.remote_node, self.op.iallocator].count(None)
4268 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
4269 7e9366f7 Iustin Pop
      if cnt == 2:
4270 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("When changing the secondary either an"
4271 7e9366f7 Iustin Pop
                                   " iallocator script must be used or the"
4272 7e9366f7 Iustin Pop
                                   " new node given")
4273 7e9366f7 Iustin Pop
      elif cnt == 0:
4274 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Give either the iallocator or the new"
4275 efd990e4 Guido Trotter
                                   " secondary, not both")
4276 7e9366f7 Iustin Pop
    else: # not replacing the secondary
4277 7e9366f7 Iustin Pop
      if cnt != 2:
4278 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("The iallocator and new node options can"
4279 7e9366f7 Iustin Pop
                                   " be used only when changing the"
4280 7e9366f7 Iustin Pop
                                   " secondary node")
4281 7e9366f7 Iustin Pop
4282 7e9366f7 Iustin Pop
  def ExpandNames(self):
4283 7e9366f7 Iustin Pop
    self._ExpandAndLockInstance()
4284 7e9366f7 Iustin Pop
4285 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
4286 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4287 efd990e4 Guido Trotter
    elif self.op.remote_node is not None:
4288 efd990e4 Guido Trotter
      remote_node = self.cfg.ExpandNodeName(self.op.remote_node)
4289 efd990e4 Guido Trotter
      if remote_node is None:
4290 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Node '%s' not known" %
4291 efd990e4 Guido Trotter
                                   self.op.remote_node)
4292 efd990e4 Guido Trotter
      self.op.remote_node = remote_node
4293 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = [remote_node]
4294 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
4295 efd990e4 Guido Trotter
    else:
4296 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = []
4297 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4298 efd990e4 Guido Trotter
4299 efd990e4 Guido Trotter
  def DeclareLocks(self, level):
4300 efd990e4 Guido Trotter
    # If we're not already locking all nodes in the set we have to declare the
4301 efd990e4 Guido Trotter
    # instance's primary/secondary nodes.
4302 efd990e4 Guido Trotter
    if (level == locking.LEVEL_NODE and
4303 efd990e4 Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
4304 efd990e4 Guido Trotter
      self._LockInstancesNodes()
4305 a8083063 Iustin Pop
4306 b6e82a65 Iustin Pop
  def _RunAllocator(self):
4307 b6e82a65 Iustin Pop
    """Compute a new secondary node using an IAllocator.
4308 b6e82a65 Iustin Pop

4309 b6e82a65 Iustin Pop
    """
4310 72737a7f Iustin Pop
    ial = IAllocator(self,
4311 b6e82a65 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_RELOC,
4312 b6e82a65 Iustin Pop
                     name=self.op.instance_name,
4313 b6e82a65 Iustin Pop
                     relocate_from=[self.sec_node])
4314 b6e82a65 Iustin Pop
4315 b6e82a65 Iustin Pop
    ial.Run(self.op.iallocator)
4316 b6e82a65 Iustin Pop
4317 b6e82a65 Iustin Pop
    if not ial.success:
4318 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4319 b6e82a65 Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4320 b6e82a65 Iustin Pop
                                                           ial.info))
4321 b6e82a65 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4322 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4323 b6e82a65 Iustin Pop
                                 " of nodes (%s), required %s" %
4324 b6e82a65 Iustin Pop
                                 (len(ial.nodes), ial.required_nodes))
4325 b6e82a65 Iustin Pop
    self.op.remote_node = ial.nodes[0]
4326 86d9d3bb Iustin Pop
    self.LogInfo("Selected new secondary for the instance: %s",
4327 86d9d3bb Iustin Pop
                 self.op.remote_node)
4328 b6e82a65 Iustin Pop
4329 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4330 a8083063 Iustin Pop
    """Build hooks env.
4331 a8083063 Iustin Pop

4332 a8083063 Iustin Pop
    This runs on the master, the primary and all the secondaries.
4333 a8083063 Iustin Pop

4334 a8083063 Iustin Pop
    """
4335 a8083063 Iustin Pop
    env = {
4336 a9e0c397 Iustin Pop
      "MODE": self.op.mode,
4337 a8083063 Iustin Pop
      "NEW_SECONDARY": self.op.remote_node,
4338 a8083063 Iustin Pop
      "OLD_SECONDARY": self.instance.secondary_nodes[0],
4339 a8083063 Iustin Pop
      }
4340 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
4341 0834c866 Iustin Pop
    nl = [
4342 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
4343 0834c866 Iustin Pop
      self.instance.primary_node,
4344 0834c866 Iustin Pop
      ]
4345 0834c866 Iustin Pop
    if self.op.remote_node is not None:
4346 0834c866 Iustin Pop
      nl.append(self.op.remote_node)
4347 a8083063 Iustin Pop
    return env, nl, nl
4348 a8083063 Iustin Pop
4349 a8083063 Iustin Pop
  def CheckPrereq(self):
4350 a8083063 Iustin Pop
    """Check prerequisites.
4351 a8083063 Iustin Pop

4352 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
4353 a8083063 Iustin Pop

4354 a8083063 Iustin Pop
    """
4355 efd990e4 Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4356 efd990e4 Guido Trotter
    assert instance is not None, \
4357 efd990e4 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4358 a8083063 Iustin Pop
    self.instance = instance
4359 a8083063 Iustin Pop
4360 7e9366f7 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
4361 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("Can only run replace disks for DRBD8-based"
4362 7e9366f7 Iustin Pop
                                 " instances")
4363 a8083063 Iustin Pop
4364 a8083063 Iustin Pop
    if len(instance.secondary_nodes) != 1:
4365 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The instance has a strange layout,"
4366 3ecf6786 Iustin Pop
                                 " expected one secondary but found %d" %
4367 3ecf6786 Iustin Pop
                                 len(instance.secondary_nodes))
4368 a8083063 Iustin Pop
4369 a9e0c397 Iustin Pop
    self.sec_node = instance.secondary_nodes[0]
4370 a9e0c397 Iustin Pop
4371 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
4372 de8c7666 Guido Trotter
      self._RunAllocator()
4373 b6e82a65 Iustin Pop
4374 b6e82a65 Iustin Pop
    remote_node = self.op.remote_node
4375 a9e0c397 Iustin Pop
    if remote_node is not None:
4376 a9e0c397 Iustin Pop
      self.remote_node_info = self.cfg.GetNodeInfo(remote_node)
4377 efd990e4 Guido Trotter
      assert self.remote_node_info is not None, \
4378 efd990e4 Guido Trotter
        "Cannot retrieve locked node %s" % remote_node
4379 a9e0c397 Iustin Pop
    else:
4380 a9e0c397 Iustin Pop
      self.remote_node_info = None
4381 a8083063 Iustin Pop
    if remote_node == instance.primary_node:
4382 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The specified node is the primary node of"
4383 3ecf6786 Iustin Pop
                                 " the instance.")
4384 a9e0c397 Iustin Pop
    elif remote_node == self.sec_node:
4385 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("The specified node is already the"
4386 7e9366f7 Iustin Pop
                                 " secondary node of the instance.")
4387 7e9366f7 Iustin Pop
4388 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_PRI:
4389 7e9366f7 Iustin Pop
      n1 = self.tgt_node = instance.primary_node
4390 7e9366f7 Iustin Pop
      n2 = self.oth_node = self.sec_node
4391 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_SEC:
4392 7e9366f7 Iustin Pop
      n1 = self.tgt_node = self.sec_node
4393 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
4394 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_CHG:
4395 7e9366f7 Iustin Pop
      n1 = self.new_node = remote_node
4396 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
4397 7e9366f7 Iustin Pop
      self.tgt_node = self.sec_node
4398 7e9366f7 Iustin Pop
    else:
4399 7e9366f7 Iustin Pop
      raise errors.ProgrammerError("Unhandled disk replace mode")
4400 7e9366f7 Iustin Pop
4401 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n1)
4402 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n2)
4403 a9e0c397 Iustin Pop
4404 54155f52 Iustin Pop
    if not self.op.disks:
4405 54155f52 Iustin Pop
      self.op.disks = range(len(instance.disks))
4406 54155f52 Iustin Pop
4407 54155f52 Iustin Pop
    for disk_idx in self.op.disks:
4408 3e0cea06 Iustin Pop
      instance.FindDisk(disk_idx)
4409 a8083063 Iustin Pop
4410 a9e0c397 Iustin Pop
  def _ExecD8DiskOnly(self, feedback_fn):
4411 a9e0c397 Iustin Pop
    """Replace a disk on the primary or secondary for dbrd8.
4412 a9e0c397 Iustin Pop

4413 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
4414 e4376078 Iustin Pop

4415 e4376078 Iustin Pop
      1. for each disk to be replaced:
4416 e4376078 Iustin Pop

4417 e4376078 Iustin Pop
        1. create new LVs on the target node with unique names
4418 e4376078 Iustin Pop
        1. detach old LVs from the drbd device
4419 e4376078 Iustin Pop
        1. rename old LVs to name_replaced.<time_t>
4420 e4376078 Iustin Pop
        1. rename new LVs to old LVs
4421 e4376078 Iustin Pop
        1. attach the new LVs (with the old names now) to the drbd device
4422 e4376078 Iustin Pop

4423 e4376078 Iustin Pop
      1. wait for sync across all devices
4424 e4376078 Iustin Pop

4425 e4376078 Iustin Pop
      1. for each modified disk:
4426 e4376078 Iustin Pop

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

4429 a9e0c397 Iustin Pop
    Failures are not very well handled.
4430 cff90b79 Iustin Pop

4431 a9e0c397 Iustin Pop
    """
4432 cff90b79 Iustin Pop
    steps_total = 6
4433 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
4434 a9e0c397 Iustin Pop
    instance = self.instance
4435 a9e0c397 Iustin Pop
    iv_names = {}
4436 a9e0c397 Iustin Pop
    vgname = self.cfg.GetVGName()
4437 a9e0c397 Iustin Pop
    # start of work
4438 a9e0c397 Iustin Pop
    cfg = self.cfg
4439 a9e0c397 Iustin Pop
    tgt_node = self.tgt_node
4440 cff90b79 Iustin Pop
    oth_node = self.oth_node
4441 cff90b79 Iustin Pop
4442 cff90b79 Iustin Pop
    # Step: check device activation
4443 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
4444 cff90b79 Iustin Pop
    info("checking volume groups")
4445 cff90b79 Iustin Pop
    my_vg = cfg.GetVGName()
4446 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([oth_node, tgt_node])
4447 cff90b79 Iustin Pop
    if not results:
4448 cff90b79 Iustin Pop
      raise errors.OpExecError("Can't list volume groups on the nodes")
4449 cff90b79 Iustin Pop
    for node in oth_node, tgt_node:
4450 781de953 Iustin Pop
      res = results[node]
4451 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
4452 cff90b79 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
4453 cff90b79 Iustin Pop
                                 (my_vg, node))
4454 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
4455 54155f52 Iustin Pop
      if idx not in self.op.disks:
4456 cff90b79 Iustin Pop
        continue
4457 cff90b79 Iustin Pop
      for node in tgt_node, oth_node:
4458 54155f52 Iustin Pop
        info("checking disk/%d on %s" % (idx, node))
4459 cff90b79 Iustin Pop
        cfg.SetDiskID(dev, node)
4460 72737a7f Iustin Pop
        if not self.rpc.call_blockdev_find(node, dev):
4461 54155f52 Iustin Pop
          raise errors.OpExecError("Can't find disk/%d on node %s" %
4462 54155f52 Iustin Pop
                                   (idx, node))
4463 cff90b79 Iustin Pop
4464 cff90b79 Iustin Pop
    # Step: check other node consistency
4465 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
4466 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
4467 54155f52 Iustin Pop
      if idx not in self.op.disks:
4468 cff90b79 Iustin Pop
        continue
4469 54155f52 Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, oth_node))
4470 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, oth_node,
4471 cff90b79 Iustin Pop
                                   oth_node==instance.primary_node):
4472 cff90b79 Iustin Pop
        raise errors.OpExecError("Peer node (%s) has degraded storage, unsafe"
4473 cff90b79 Iustin Pop
                                 " to replace disks on this node (%s)" %
4474 cff90b79 Iustin Pop
                                 (oth_node, tgt_node))
4475 cff90b79 Iustin Pop
4476 cff90b79 Iustin Pop
    # Step: create new storage
4477 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
4478 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
4479 54155f52 Iustin Pop
      if idx not in self.op.disks:
4480 a9e0c397 Iustin Pop
        continue
4481 a9e0c397 Iustin Pop
      size = dev.size
4482 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, tgt_node)
4483 54155f52 Iustin Pop
      lv_names = [".disk%d_%s" % (idx, suf)
4484 54155f52 Iustin Pop
                  for suf in ["data", "meta"]]
4485 b9bddb6b Iustin Pop
      names = _GenerateUniqueNames(self, lv_names)
4486 a9e0c397 Iustin Pop
      lv_data = objects.Disk(dev_type=constants.LD_LV, size=size,
4487 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[0]))
4488 a9e0c397 Iustin Pop
      lv_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
4489 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[1]))
4490 a9e0c397 Iustin Pop
      new_lvs = [lv_data, lv_meta]
4491 a9e0c397 Iustin Pop
      old_lvs = dev.children
4492 a9e0c397 Iustin Pop
      iv_names[dev.iv_name] = (dev, old_lvs, new_lvs)
4493 cff90b79 Iustin Pop
      info("creating new local storage on %s for %s" %
4494 cff90b79 Iustin Pop
           (tgt_node, dev.iv_name))
4495 a9e0c397 Iustin Pop
      # since we *always* want to create this LV, we use the
4496 a9e0c397 Iustin Pop
      # _Create...OnPrimary (which forces the creation), even if we
4497 a9e0c397 Iustin Pop
      # are talking about the secondary node
4498 a9e0c397 Iustin Pop
      for new_lv in new_lvs:
4499 b9bddb6b Iustin Pop
        if not _CreateBlockDevOnPrimary(self, tgt_node, instance, new_lv,
4500 a9e0c397 Iustin Pop
                                        _GetInstanceInfoText(instance)):
4501 a9e0c397 Iustin Pop
          raise errors.OpExecError("Failed to create new LV named '%s' on"
4502 a9e0c397 Iustin Pop
                                   " node '%s'" %
4503 a9e0c397 Iustin Pop
                                   (new_lv.logical_id[1], tgt_node))
4504 a9e0c397 Iustin Pop
4505 cff90b79 Iustin Pop
    # Step: for each lv, detach+rename*2+attach
4506 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "change drbd configuration")
4507 cff90b79 Iustin Pop
    for dev, old_lvs, new_lvs in iv_names.itervalues():
4508 cff90b79 Iustin Pop
      info("detaching %s drbd from local storage" % dev.iv_name)
4509 781de953 Iustin Pop
      result = self.rpc.call_blockdev_removechildren(tgt_node, dev, old_lvs)
4510 781de953 Iustin Pop
      result.Raise()
4511 781de953 Iustin Pop
      if not result.data:
4512 a9e0c397 Iustin Pop
        raise errors.OpExecError("Can't detach drbd from local storage on node"
4513 a9e0c397 Iustin Pop
                                 " %s for device %s" % (tgt_node, dev.iv_name))
4514 cff90b79 Iustin Pop
      #dev.children = []
4515 cff90b79 Iustin Pop
      #cfg.Update(instance)
4516 a9e0c397 Iustin Pop
4517 a9e0c397 Iustin Pop
      # ok, we created the new LVs, so now we know we have the needed
4518 a9e0c397 Iustin Pop
      # storage; as such, we proceed on the target node to rename
4519 a9e0c397 Iustin Pop
      # old_lv to _old, and new_lv to old_lv; note that we rename LVs
4520 c99a3cc0 Manuel Franceschini
      # using the assumption that logical_id == physical_id (which in
4521 a9e0c397 Iustin Pop
      # turn is the unique_id on that node)
4522 cff90b79 Iustin Pop
4523 cff90b79 Iustin Pop
      # FIXME(iustin): use a better name for the replaced LVs
4524 a9e0c397 Iustin Pop
      temp_suffix = int(time.time())
4525 a9e0c397 Iustin Pop
      ren_fn = lambda d, suff: (d.physical_id[0],
4526 a9e0c397 Iustin Pop
                                d.physical_id[1] + "_replaced-%s" % suff)
4527 cff90b79 Iustin Pop
      # build the rename list based on what LVs exist on the node
4528 cff90b79 Iustin Pop
      rlist = []
4529 cff90b79 Iustin Pop
      for to_ren in old_lvs:
4530 72737a7f Iustin Pop
        find_res = self.rpc.call_blockdev_find(tgt_node, to_ren)
4531 781de953 Iustin Pop
        if not find_res.failed and find_res.data is not None: # device exists
4532 cff90b79 Iustin Pop
          rlist.append((to_ren, ren_fn(to_ren, temp_suffix)))
4533 cff90b79 Iustin Pop
4534 cff90b79 Iustin Pop
      info("renaming the old LVs on the target node")
4535 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
4536 781de953 Iustin Pop
      result.Raise()
4537 781de953 Iustin Pop
      if not result.data:
4538 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename old LVs on node %s" % tgt_node)
4539 a9e0c397 Iustin Pop
      # now we rename the new LVs to the old LVs
4540 cff90b79 Iustin Pop
      info("renaming the new LVs on the target node")
4541 a9e0c397 Iustin Pop
      rlist = [(new, old.physical_id) for old, new in zip(old_lvs, new_lvs)]
4542 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
4543 781de953 Iustin Pop
      result.Raise()
4544 781de953 Iustin Pop
      if not result.data:
4545 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename new LVs on node %s" % tgt_node)
4546 cff90b79 Iustin Pop
4547 cff90b79 Iustin Pop
      for old, new in zip(old_lvs, new_lvs):
4548 cff90b79 Iustin Pop
        new.logical_id = old.logical_id
4549 cff90b79 Iustin Pop
        cfg.SetDiskID(new, tgt_node)
4550 a9e0c397 Iustin Pop
4551 cff90b79 Iustin Pop
      for disk in old_lvs:
4552 cff90b79 Iustin Pop
        disk.logical_id = ren_fn(disk, temp_suffix)
4553 cff90b79 Iustin Pop
        cfg.SetDiskID(disk, tgt_node)
4554 a9e0c397 Iustin Pop
4555 a9e0c397 Iustin Pop
      # now that the new lvs have the old name, we can add them to the device
4556 cff90b79 Iustin Pop
      info("adding new mirror component on %s" % tgt_node)
4557 4504c3d6 Iustin Pop
      result = self.rpc.call_blockdev_addchildren(tgt_node, dev, new_lvs)
4558 781de953 Iustin Pop
      if result.failed or not result.data:
4559 a9e0c397 Iustin Pop
        for new_lv in new_lvs:
4560 781de953 Iustin Pop
          result = self.rpc.call_blockdev_remove(tgt_node, new_lv)
4561 781de953 Iustin Pop
          if result.failed or not result.data:
4562 79caa9ed Guido Trotter
            warning("Can't rollback device %s", hint="manually cleanup unused"
4563 cff90b79 Iustin Pop
                    " logical volumes")
4564 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't add local storage to drbd")
4565 a9e0c397 Iustin Pop
4566 a9e0c397 Iustin Pop
      dev.children = new_lvs
4567 a9e0c397 Iustin Pop
      cfg.Update(instance)
4568 a9e0c397 Iustin Pop
4569 cff90b79 Iustin Pop
    # Step: wait for sync
4570 a9e0c397 Iustin Pop
4571 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
4572 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
4573 a9e0c397 Iustin Pop
    # return value
4574 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
4575 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
4576 a9e0c397 Iustin Pop
4577 a9e0c397 Iustin Pop
    # so check manually all the devices
4578 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
4579 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, instance.primary_node)
4580 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(instance.primary_node, dev)
4581 781de953 Iustin Pop
      if result.failed or result.data[5]:
4582 a9e0c397 Iustin Pop
        raise errors.OpExecError("DRBD device %s is degraded!" % name)
4583 a9e0c397 Iustin Pop
4584 cff90b79 Iustin Pop
    # Step: remove old storage
4585 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
4586 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
4587 cff90b79 Iustin Pop
      info("remove logical volumes for %s" % name)
4588 a9e0c397 Iustin Pop
      for lv in old_lvs:
4589 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, tgt_node)
4590 781de953 Iustin Pop
        result = self.rpc.call_blockdev_remove(tgt_node, lv)
4591 781de953 Iustin Pop
        if result.failed or not result.data:
4592 79caa9ed Guido Trotter
          warning("Can't remove old LV", hint="manually remove unused LVs")
4593 a9e0c397 Iustin Pop
          continue
4594 a9e0c397 Iustin Pop
4595 a9e0c397 Iustin Pop
  def _ExecD8Secondary(self, feedback_fn):
4596 a9e0c397 Iustin Pop
    """Replace the secondary node for drbd8.
4597 a9e0c397 Iustin Pop

4598 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
4599 a9e0c397 Iustin Pop
      - for all disks of the instance:
4600 a9e0c397 Iustin Pop
        - create new LVs on the new node with same names
4601 a9e0c397 Iustin Pop
        - shutdown the drbd device on the old secondary
4602 a9e0c397 Iustin Pop
        - disconnect the drbd network on the primary
4603 a9e0c397 Iustin Pop
        - create the drbd device on the new secondary
4604 a9e0c397 Iustin Pop
        - network attach the drbd on the primary, using an artifice:
4605 a9e0c397 Iustin Pop
          the drbd code for Attach() will connect to the network if it
4606 a9e0c397 Iustin Pop
          finds a device which is connected to the good local disks but
4607 a9e0c397 Iustin Pop
          not network enabled
4608 a9e0c397 Iustin Pop
      - wait for sync across all devices
4609 a9e0c397 Iustin Pop
      - remove all disks from the old secondary
4610 a9e0c397 Iustin Pop

4611 a9e0c397 Iustin Pop
    Failures are not very well handled.
4612 0834c866 Iustin Pop

4613 a9e0c397 Iustin Pop
    """
4614 0834c866 Iustin Pop
    steps_total = 6
4615 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
4616 a9e0c397 Iustin Pop
    instance = self.instance
4617 a9e0c397 Iustin Pop
    iv_names = {}
4618 a9e0c397 Iustin Pop
    # start of work
4619 a9e0c397 Iustin Pop
    cfg = self.cfg
4620 a9e0c397 Iustin Pop
    old_node = self.tgt_node
4621 a9e0c397 Iustin Pop
    new_node = self.new_node
4622 a9e0c397 Iustin Pop
    pri_node = instance.primary_node
4623 0834c866 Iustin Pop
4624 0834c866 Iustin Pop
    # Step: check device activation
4625 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
4626 0834c866 Iustin Pop
    info("checking volume groups")
4627 0834c866 Iustin Pop
    my_vg = cfg.GetVGName()
4628 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([pri_node, new_node])
4629 0834c866 Iustin Pop
    for node in pri_node, new_node:
4630 781de953 Iustin Pop
      res = results[node]
4631 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
4632 0834c866 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
4633 0834c866 Iustin Pop
                                 (my_vg, node))
4634 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
4635 d418ebfb Iustin Pop
      if idx not in self.op.disks:
4636 0834c866 Iustin Pop
        continue
4637 d418ebfb Iustin Pop
      info("checking disk/%d on %s" % (idx, pri_node))
4638 0834c866 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
4639 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
4640 781de953 Iustin Pop
      result.Raise()
4641 781de953 Iustin Pop
      if not result.data:
4642 d418ebfb Iustin Pop
        raise errors.OpExecError("Can't find disk/%d on node %s" %
4643 d418ebfb Iustin Pop
                                 (idx, pri_node))
4644 0834c866 Iustin Pop
4645 0834c866 Iustin Pop
    # Step: check other node consistency
4646 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
4647 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
4648 d418ebfb Iustin Pop
      if idx not in self.op.disks:
4649 0834c866 Iustin Pop
        continue
4650 d418ebfb Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, pri_node))
4651 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, pri_node, True, ldisk=True):
4652 0834c866 Iustin Pop
        raise errors.OpExecError("Primary node (%s) has degraded storage,"
4653 0834c866 Iustin Pop
                                 " unsafe to replace the secondary" %
4654 0834c866 Iustin Pop
                                 pri_node)
4655 0834c866 Iustin Pop
4656 0834c866 Iustin Pop
    # Step: create new storage
4657 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
4658 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
4659 d418ebfb Iustin Pop
      info("adding new local storage on %s for disk/%d" %
4660 d418ebfb Iustin Pop
           (new_node, idx))
4661 a9e0c397 Iustin Pop
      # since we *always* want to create this LV, we use the
4662 a9e0c397 Iustin Pop
      # _Create...OnPrimary (which forces the creation), even if we
4663 a9e0c397 Iustin Pop
      # are talking about the secondary node
4664 a9e0c397 Iustin Pop
      for new_lv in dev.children:
4665 b9bddb6b Iustin Pop
        if not _CreateBlockDevOnPrimary(self, new_node, instance, new_lv,
4666 a9e0c397 Iustin Pop
                                        _GetInstanceInfoText(instance)):
4667 a9e0c397 Iustin Pop
          raise errors.OpExecError("Failed to create new LV named '%s' on"
4668 a9e0c397 Iustin Pop
                                   " node '%s'" %
4669 a9e0c397 Iustin Pop
                                   (new_lv.logical_id[1], new_node))
4670 a9e0c397 Iustin Pop
4671 468b46f9 Iustin Pop
    # Step 4: dbrd minors and drbd setups changes
4672 a1578d63 Iustin Pop
    # after this, we must manually remove the drbd minors on both the
4673 a1578d63 Iustin Pop
    # error and the success paths
4674 a1578d63 Iustin Pop
    minors = cfg.AllocateDRBDMinor([new_node for dev in instance.disks],
4675 a1578d63 Iustin Pop
                                   instance.name)
4676 468b46f9 Iustin Pop
    logging.debug("Allocated minors %s" % (minors,))
4677 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "changing drbd configuration")
4678 d418ebfb Iustin Pop
    for idx, (dev, new_minor) in enumerate(zip(instance.disks, minors)):
4679 0834c866 Iustin Pop
      size = dev.size
4680 d418ebfb Iustin Pop
      info("activating a new drbd on %s for disk/%d" % (new_node, idx))
4681 a9e0c397 Iustin Pop
      # create new devices on new_node
4682 ffa1c0dc Iustin Pop
      if pri_node == dev.logical_id[0]:
4683 ffa1c0dc Iustin Pop
        new_logical_id = (pri_node, new_node,
4684 f9518d38 Iustin Pop
                          dev.logical_id[2], dev.logical_id[3], new_minor,
4685 f9518d38 Iustin Pop
                          dev.logical_id[5])
4686 ffa1c0dc Iustin Pop
      else:
4687 ffa1c0dc Iustin Pop
        new_logical_id = (new_node, pri_node,
4688 f9518d38 Iustin Pop
                          dev.logical_id[2], new_minor, dev.logical_id[4],
4689 f9518d38 Iustin Pop
                          dev.logical_id[5])
4690 d418ebfb Iustin Pop
      iv_names[idx] = (dev, dev.children, new_logical_id)
4691 a1578d63 Iustin Pop
      logging.debug("Allocated new_minor: %s, new_logical_id: %s", new_minor,
4692 a1578d63 Iustin Pop
                    new_logical_id)
4693 a9e0c397 Iustin Pop
      new_drbd = objects.Disk(dev_type=constants.LD_DRBD8,
4694 ffa1c0dc Iustin Pop
                              logical_id=new_logical_id,
4695 a9e0c397 Iustin Pop
                              children=dev.children)
4696 b9bddb6b Iustin Pop
      if not _CreateBlockDevOnSecondary(self, new_node, instance,
4697 3f78eef2 Iustin Pop
                                        new_drbd, False,
4698 b9bddb6b Iustin Pop
                                        _GetInstanceInfoText(instance)):
4699 a1578d63 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance.name)
4700 a9e0c397 Iustin Pop
        raise errors.OpExecError("Failed to create new DRBD on"
4701 a9e0c397 Iustin Pop
                                 " node '%s'" % new_node)
4702 a9e0c397 Iustin Pop
4703 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
4704 a9e0c397 Iustin Pop
      # we have new devices, shutdown the drbd on the old secondary
4705 d418ebfb Iustin Pop
      info("shutting down drbd for disk/%d on old node" % idx)
4706 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, old_node)
4707 781de953 Iustin Pop
      result = self.rpc.call_blockdev_shutdown(old_node, dev)
4708 781de953 Iustin Pop
      if result.failed or not result.data:
4709 d418ebfb Iustin Pop
        warning("Failed to shutdown drbd for disk/%d on old node" % idx,
4710 79caa9ed Guido Trotter
                hint="Please cleanup this device manually as soon as possible")
4711 a9e0c397 Iustin Pop
4712 642445d9 Iustin Pop
    info("detaching primary drbds from the network (=> standalone)")
4713 642445d9 Iustin Pop
    done = 0
4714 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
4715 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
4716 f9518d38 Iustin Pop
      # set the network part of the physical (unique in bdev terms) id
4717 f9518d38 Iustin Pop
      # to None, meaning detach from network
4718 f9518d38 Iustin Pop
      dev.physical_id = (None, None, None, None) + dev.physical_id[4:]
4719 642445d9 Iustin Pop
      # and 'find' the device, which will 'fix' it to match the
4720 642445d9 Iustin Pop
      # standalone state
4721 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
4722 781de953 Iustin Pop
      if not result.failed and result.data:
4723 642445d9 Iustin Pop
        done += 1
4724 642445d9 Iustin Pop
      else:
4725 d418ebfb Iustin Pop
        warning("Failed to detach drbd disk/%d from network, unusual case" %
4726 d418ebfb Iustin Pop
                idx)
4727 642445d9 Iustin Pop
4728 642445d9 Iustin Pop
    if not done:
4729 642445d9 Iustin Pop
      # no detaches succeeded (very unlikely)
4730 a1578d63 Iustin Pop
      self.cfg.ReleaseDRBDMinors(instance.name)
4731 642445d9 Iustin Pop
      raise errors.OpExecError("Can't detach at least one DRBD from old node")
4732 642445d9 Iustin Pop
4733 642445d9 Iustin Pop
    # if we managed to detach at least one, we update all the disks of
4734 642445d9 Iustin Pop
    # the instance to point to the new secondary
4735 642445d9 Iustin Pop
    info("updating instance configuration")
4736 468b46f9 Iustin Pop
    for dev, _, new_logical_id in iv_names.itervalues():
4737 468b46f9 Iustin Pop
      dev.logical_id = new_logical_id
4738 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
4739 642445d9 Iustin Pop
    cfg.Update(instance)
4740 a1578d63 Iustin Pop
    # we can remove now the temp minors as now the new values are
4741 a1578d63 Iustin Pop
    # written to the config file (and therefore stable)
4742 a1578d63 Iustin Pop
    self.cfg.ReleaseDRBDMinors(instance.name)
4743 a9e0c397 Iustin Pop
4744 642445d9 Iustin Pop
    # and now perform the drbd attach
4745 642445d9 Iustin Pop
    info("attaching primary drbds to new secondary (standalone => connected)")
4746 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
4747 d418ebfb Iustin Pop
      info("attaching primary drbd for disk/%d to new secondary node" % idx)
4748 642445d9 Iustin Pop
      # since the attach is smart, it's enough to 'find' the device,
4749 642445d9 Iustin Pop
      # it will automatically activate the network, if the physical_id
4750 642445d9 Iustin Pop
      # is correct
4751 642445d9 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
4752 ffa1c0dc Iustin Pop
      logging.debug("Disk to attach: %s", dev)
4753 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
4754 781de953 Iustin Pop
      if result.failed or not result.data:
4755 d418ebfb Iustin Pop
        warning("can't attach drbd disk/%d to new secondary!" % idx,
4756 642445d9 Iustin Pop
                "please do a gnt-instance info to see the status of disks")
4757 a9e0c397 Iustin Pop
4758 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
4759 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
4760 a9e0c397 Iustin Pop
    # return value
4761 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
4762 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
4763 a9e0c397 Iustin Pop
4764 a9e0c397 Iustin Pop
    # so check manually all the devices
4765 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
4766 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
4767 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
4768 781de953 Iustin Pop
      result.Raise()
4769 781de953 Iustin Pop
      if result.data[5]:
4770 d418ebfb Iustin Pop
        raise errors.OpExecError("DRBD device disk/%d is degraded!" % idx)
4771 a9e0c397 Iustin Pop
4772 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
4773 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
4774 d418ebfb Iustin Pop
      info("remove logical volumes for disk/%d" % idx)
4775 a9e0c397 Iustin Pop
      for lv in old_lvs:
4776 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, old_node)
4777 781de953 Iustin Pop
        result = self.rpc.call_blockdev_remove(old_node, lv)
4778 781de953 Iustin Pop
        if result.failed or not result.data:
4779 0834c866 Iustin Pop
          warning("Can't remove LV on old secondary",
4780 79caa9ed Guido Trotter
                  hint="Cleanup stale volumes by hand")
4781 a9e0c397 Iustin Pop
4782 a9e0c397 Iustin Pop
  def Exec(self, feedback_fn):
4783 a9e0c397 Iustin Pop
    """Execute disk replacement.
4784 a9e0c397 Iustin Pop

4785 a9e0c397 Iustin Pop
    This dispatches the disk replacement to the appropriate handler.
4786 a9e0c397 Iustin Pop

4787 a9e0c397 Iustin Pop
    """
4788 a9e0c397 Iustin Pop
    instance = self.instance
4789 22985314 Guido Trotter
4790 22985314 Guido Trotter
    # Activate the instance disks if we're replacing them on a down instance
4791 22985314 Guido Trotter
    if instance.status == "down":
4792 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, True)
4793 22985314 Guido Trotter
4794 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
4795 7e9366f7 Iustin Pop
      fn = self._ExecD8Secondary
4796 a9e0c397 Iustin Pop
    else:
4797 7e9366f7 Iustin Pop
      fn = self._ExecD8DiskOnly
4798 22985314 Guido Trotter
4799 22985314 Guido Trotter
    ret = fn(feedback_fn)
4800 22985314 Guido Trotter
4801 22985314 Guido Trotter
    # Deactivate the instance disks if we're replacing them on a down instance
4802 22985314 Guido Trotter
    if instance.status == "down":
4803 b9bddb6b Iustin Pop
      _SafeShutdownInstanceDisks(self, instance)
4804 22985314 Guido Trotter
4805 22985314 Guido Trotter
    return ret
4806 a9e0c397 Iustin Pop
4807 a8083063 Iustin Pop
4808 8729e0d7 Iustin Pop
class LUGrowDisk(LogicalUnit):
4809 8729e0d7 Iustin Pop
  """Grow a disk of an instance.
4810 8729e0d7 Iustin Pop

4811 8729e0d7 Iustin Pop
  """
4812 8729e0d7 Iustin Pop
  HPATH = "disk-grow"
4813 8729e0d7 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4814 6605411d Iustin Pop
  _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
4815 31e63dbf Guido Trotter
  REQ_BGL = False
4816 31e63dbf Guido Trotter
4817 31e63dbf Guido Trotter
  def ExpandNames(self):
4818 31e63dbf Guido Trotter
    self._ExpandAndLockInstance()
4819 31e63dbf Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
4820 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4821 31e63dbf Guido Trotter
4822 31e63dbf Guido Trotter
  def DeclareLocks(self, level):
4823 31e63dbf Guido Trotter
    if level == locking.LEVEL_NODE:
4824 31e63dbf Guido Trotter
      self._LockInstancesNodes()
4825 8729e0d7 Iustin Pop
4826 8729e0d7 Iustin Pop
  def BuildHooksEnv(self):
4827 8729e0d7 Iustin Pop
    """Build hooks env.
4828 8729e0d7 Iustin Pop

4829 8729e0d7 Iustin Pop
    This runs on the master, the primary and all the secondaries.
4830 8729e0d7 Iustin Pop

4831 8729e0d7 Iustin Pop
    """
4832 8729e0d7 Iustin Pop
    env = {
4833 8729e0d7 Iustin Pop
      "DISK": self.op.disk,
4834 8729e0d7 Iustin Pop
      "AMOUNT": self.op.amount,
4835 8729e0d7 Iustin Pop
      }
4836 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
4837 8729e0d7 Iustin Pop
    nl = [
4838 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
4839 8729e0d7 Iustin Pop
      self.instance.primary_node,
4840 8729e0d7 Iustin Pop
      ]
4841 8729e0d7 Iustin Pop
    return env, nl, nl
4842 8729e0d7 Iustin Pop
4843 8729e0d7 Iustin Pop
  def CheckPrereq(self):
4844 8729e0d7 Iustin Pop
    """Check prerequisites.
4845 8729e0d7 Iustin Pop

4846 8729e0d7 Iustin Pop
    This checks that the instance is in the cluster.
4847 8729e0d7 Iustin Pop

4848 8729e0d7 Iustin Pop
    """
4849 31e63dbf Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
4850 31e63dbf Guido Trotter
    assert instance is not None, \
4851 31e63dbf Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
4852 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
4853 7527a8a4 Iustin Pop
    for node in instance.secondary_nodes:
4854 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, node)
4855 7527a8a4 Iustin Pop
4856 31e63dbf Guido Trotter
4857 8729e0d7 Iustin Pop
    self.instance = instance
4858 8729e0d7 Iustin Pop
4859 8729e0d7 Iustin Pop
    if instance.disk_template not in (constants.DT_PLAIN, constants.DT_DRBD8):
4860 8729e0d7 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout does not support"
4861 8729e0d7 Iustin Pop
                                 " growing.")
4862 8729e0d7 Iustin Pop
4863 ad24e046 Iustin Pop
    self.disk = instance.FindDisk(self.op.disk)
4864 8729e0d7 Iustin Pop
4865 8729e0d7 Iustin Pop
    nodenames = [instance.primary_node] + list(instance.secondary_nodes)
4866 72737a7f Iustin Pop
    nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
4867 72737a7f Iustin Pop
                                       instance.hypervisor)
4868 8729e0d7 Iustin Pop
    for node in nodenames:
4869 781de953 Iustin Pop
      info = nodeinfo[node]
4870 781de953 Iustin Pop
      if info.failed or not info.data:
4871 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Cannot get current information"
4872 8729e0d7 Iustin Pop
                                   " from node '%s'" % node)
4873 781de953 Iustin Pop
      vg_free = info.data.get('vg_free', None)
4874 8729e0d7 Iustin Pop
      if not isinstance(vg_free, int):
4875 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Can't compute free disk space on"
4876 8729e0d7 Iustin Pop
                                   " node %s" % node)
4877 781de953 Iustin Pop
      if self.op.amount > vg_free:
4878 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Not enough disk space on target node %s:"
4879 8729e0d7 Iustin Pop
                                   " %d MiB available, %d MiB required" %
4880 781de953 Iustin Pop
                                   (node, vg_free, self.op.amount))
4881 8729e0d7 Iustin Pop
4882 8729e0d7 Iustin Pop
  def Exec(self, feedback_fn):
4883 8729e0d7 Iustin Pop
    """Execute disk grow.
4884 8729e0d7 Iustin Pop

4885 8729e0d7 Iustin Pop
    """
4886 8729e0d7 Iustin Pop
    instance = self.instance
4887 ad24e046 Iustin Pop
    disk = self.disk
4888 8729e0d7 Iustin Pop
    for node in (instance.secondary_nodes + (instance.primary_node,)):
4889 8729e0d7 Iustin Pop
      self.cfg.SetDiskID(disk, node)
4890 72737a7f Iustin Pop
      result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
4891 781de953 Iustin Pop
      result.Raise()
4892 781de953 Iustin Pop
      if (not result.data or not isinstance(result.data, (list, tuple)) or
4893 781de953 Iustin Pop
          len(result.data) != 2):
4894 781de953 Iustin Pop
        raise errors.OpExecError("Grow request failed to node %s" % node)
4895 781de953 Iustin Pop
      elif not result.data[0]:
4896 781de953 Iustin Pop
        raise errors.OpExecError("Grow request failed to node %s: %s" %
4897 781de953 Iustin Pop
                                 (node, result.data[1]))
4898 8729e0d7 Iustin Pop
    disk.RecordGrow(self.op.amount)
4899 8729e0d7 Iustin Pop
    self.cfg.Update(instance)
4900 6605411d Iustin Pop
    if self.op.wait_for_sync:
4901 cd4d138f Guido Trotter
      disk_abort = not _WaitForSync(self, instance)
4902 6605411d Iustin Pop
      if disk_abort:
4903 86d9d3bb Iustin Pop
        self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
4904 86d9d3bb Iustin Pop
                             " status.\nPlease check the instance.")
4905 8729e0d7 Iustin Pop
4906 8729e0d7 Iustin Pop
4907 a8083063 Iustin Pop
class LUQueryInstanceData(NoHooksLU):
4908 a8083063 Iustin Pop
  """Query runtime instance data.
4909 a8083063 Iustin Pop

4910 a8083063 Iustin Pop
  """
4911 57821cac Iustin Pop
  _OP_REQP = ["instances", "static"]
4912 a987fa48 Guido Trotter
  REQ_BGL = False
4913 ae5849b5 Michael Hanselmann
4914 a987fa48 Guido Trotter
  def ExpandNames(self):
4915 a987fa48 Guido Trotter
    self.needed_locks = {}
4916 a987fa48 Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
4917 a987fa48 Guido Trotter
4918 a987fa48 Guido Trotter
    if not isinstance(self.op.instances, list):
4919 a987fa48 Guido Trotter
      raise errors.OpPrereqError("Invalid argument type 'instances'")
4920 a987fa48 Guido Trotter
4921 a987fa48 Guido Trotter
    if self.op.instances:
4922 a987fa48 Guido Trotter
      self.wanted_names = []
4923 a987fa48 Guido Trotter
      for name in self.op.instances:
4924 a987fa48 Guido Trotter
        full_name = self.cfg.ExpandInstanceName(name)
4925 a987fa48 Guido Trotter
        if full_name is None:
4926 a987fa48 Guido Trotter
          raise errors.OpPrereqError("Instance '%s' not known" %
4927 a987fa48 Guido Trotter
                                     self.op.instance_name)
4928 a987fa48 Guido Trotter
        self.wanted_names.append(full_name)
4929 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
4930 a987fa48 Guido Trotter
    else:
4931 a987fa48 Guido Trotter
      self.wanted_names = None
4932 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
4933 a987fa48 Guido Trotter
4934 a987fa48 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
4935 a987fa48 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
4936 a987fa48 Guido Trotter
4937 a987fa48 Guido Trotter
  def DeclareLocks(self, level):
4938 a987fa48 Guido Trotter
    if level == locking.LEVEL_NODE:
4939 a987fa48 Guido Trotter
      self._LockInstancesNodes()
4940 a8083063 Iustin Pop
4941 a8083063 Iustin Pop
  def CheckPrereq(self):
4942 a8083063 Iustin Pop
    """Check prerequisites.
4943 a8083063 Iustin Pop

4944 a8083063 Iustin Pop
    This only checks the optional instance list against the existing names.
4945 a8083063 Iustin Pop

4946 a8083063 Iustin Pop
    """
4947 a987fa48 Guido Trotter
    if self.wanted_names is None:
4948 a987fa48 Guido Trotter
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
4949 a8083063 Iustin Pop
4950 a987fa48 Guido Trotter
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
4951 a987fa48 Guido Trotter
                             in self.wanted_names]
4952 a987fa48 Guido Trotter
    return
4953 a8083063 Iustin Pop
4954 a8083063 Iustin Pop
  def _ComputeDiskStatus(self, instance, snode, dev):
4955 a8083063 Iustin Pop
    """Compute block device status.
4956 a8083063 Iustin Pop

4957 a8083063 Iustin Pop
    """
4958 57821cac Iustin Pop
    static = self.op.static
4959 57821cac Iustin Pop
    if not static:
4960 57821cac Iustin Pop
      self.cfg.SetDiskID(dev, instance.primary_node)
4961 57821cac Iustin Pop
      dev_pstatus = self.rpc.call_blockdev_find(instance.primary_node, dev)
4962 781de953 Iustin Pop
      dev_pstatus.Raise()
4963 781de953 Iustin Pop
      dev_pstatus = dev_pstatus.data
4964 57821cac Iustin Pop
    else:
4965 57821cac Iustin Pop
      dev_pstatus = None
4966 57821cac Iustin Pop
4967 a1f445d3 Iustin Pop
    if dev.dev_type in constants.LDS_DRBD:
4968 a8083063 Iustin Pop
      # we change the snode then (otherwise we use the one passed in)
4969 a8083063 Iustin Pop
      if dev.logical_id[0] == instance.primary_node:
4970 a8083063 Iustin Pop
        snode = dev.logical_id[1]
4971 a8083063 Iustin Pop
      else:
4972 a8083063 Iustin Pop
        snode = dev.logical_id[0]
4973 a8083063 Iustin Pop
4974 57821cac Iustin Pop
    if snode and not static:
4975 a8083063 Iustin Pop
      self.cfg.SetDiskID(dev, snode)
4976 72737a7f Iustin Pop
      dev_sstatus = self.rpc.call_blockdev_find(snode, dev)
4977 781de953 Iustin Pop
      dev_sstatus.Raise()
4978 781de953 Iustin Pop
      dev_sstatus = dev_sstatus.data
4979 a8083063 Iustin Pop
    else:
4980 a8083063 Iustin Pop
      dev_sstatus = None
4981 a8083063 Iustin Pop
4982 a8083063 Iustin Pop
    if dev.children:
4983 a8083063 Iustin Pop
      dev_children = [self._ComputeDiskStatus(instance, snode, child)
4984 a8083063 Iustin Pop
                      for child in dev.children]
4985 a8083063 Iustin Pop
    else:
4986 a8083063 Iustin Pop
      dev_children = []
4987 a8083063 Iustin Pop
4988 a8083063 Iustin Pop
    data = {
4989 a8083063 Iustin Pop
      "iv_name": dev.iv_name,
4990 a8083063 Iustin Pop
      "dev_type": dev.dev_type,
4991 a8083063 Iustin Pop
      "logical_id": dev.logical_id,
4992 a8083063 Iustin Pop
      "physical_id": dev.physical_id,
4993 a8083063 Iustin Pop
      "pstatus": dev_pstatus,
4994 a8083063 Iustin Pop
      "sstatus": dev_sstatus,
4995 a8083063 Iustin Pop
      "children": dev_children,
4996 b6fdf8b8 Iustin Pop
      "mode": dev.mode,
4997 a8083063 Iustin Pop
      }
4998 a8083063 Iustin Pop
4999 a8083063 Iustin Pop
    return data
5000 a8083063 Iustin Pop
5001 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5002 a8083063 Iustin Pop
    """Gather and return data"""
5003 a8083063 Iustin Pop
    result = {}
5004 338e51e8 Iustin Pop
5005 338e51e8 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
5006 338e51e8 Iustin Pop
5007 a8083063 Iustin Pop
    for instance in self.wanted_instances:
5008 57821cac Iustin Pop
      if not self.op.static:
5009 57821cac Iustin Pop
        remote_info = self.rpc.call_instance_info(instance.primary_node,
5010 57821cac Iustin Pop
                                                  instance.name,
5011 57821cac Iustin Pop
                                                  instance.hypervisor)
5012 781de953 Iustin Pop
        remote_info.Raise()
5013 781de953 Iustin Pop
        remote_info = remote_info.data
5014 57821cac Iustin Pop
        if remote_info and "state" in remote_info:
5015 57821cac Iustin Pop
          remote_state = "up"
5016 57821cac Iustin Pop
        else:
5017 57821cac Iustin Pop
          remote_state = "down"
5018 a8083063 Iustin Pop
      else:
5019 57821cac Iustin Pop
        remote_state = None
5020 a8083063 Iustin Pop
      if instance.status == "down":
5021 a8083063 Iustin Pop
        config_state = "down"
5022 a8083063 Iustin Pop
      else:
5023 a8083063 Iustin Pop
        config_state = "up"
5024 a8083063 Iustin Pop
5025 a8083063 Iustin Pop
      disks = [self._ComputeDiskStatus(instance, None, device)
5026 a8083063 Iustin Pop
               for device in instance.disks]
5027 a8083063 Iustin Pop
5028 a8083063 Iustin Pop
      idict = {
5029 a8083063 Iustin Pop
        "name": instance.name,
5030 a8083063 Iustin Pop
        "config_state": config_state,
5031 a8083063 Iustin Pop
        "run_state": remote_state,
5032 a8083063 Iustin Pop
        "pnode": instance.primary_node,
5033 a8083063 Iustin Pop
        "snodes": instance.secondary_nodes,
5034 a8083063 Iustin Pop
        "os": instance.os,
5035 a8083063 Iustin Pop
        "nics": [(nic.mac, nic.ip, nic.bridge) for nic in instance.nics],
5036 a8083063 Iustin Pop
        "disks": disks,
5037 e69d05fd Iustin Pop
        "hypervisor": instance.hypervisor,
5038 24838135 Iustin Pop
        "network_port": instance.network_port,
5039 24838135 Iustin Pop
        "hv_instance": instance.hvparams,
5040 338e51e8 Iustin Pop
        "hv_actual": cluster.FillHV(instance),
5041 338e51e8 Iustin Pop
        "be_instance": instance.beparams,
5042 338e51e8 Iustin Pop
        "be_actual": cluster.FillBE(instance),
5043 a8083063 Iustin Pop
        }
5044 a8083063 Iustin Pop
5045 a8083063 Iustin Pop
      result[instance.name] = idict
5046 a8083063 Iustin Pop
5047 a8083063 Iustin Pop
    return result
5048 a8083063 Iustin Pop
5049 a8083063 Iustin Pop
5050 7767bbf5 Manuel Franceschini
class LUSetInstanceParams(LogicalUnit):
5051 a8083063 Iustin Pop
  """Modifies an instances's parameters.
5052 a8083063 Iustin Pop

5053 a8083063 Iustin Pop
  """
5054 a8083063 Iustin Pop
  HPATH = "instance-modify"
5055 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5056 24991749 Iustin Pop
  _OP_REQP = ["instance_name"]
5057 1a5c7281 Guido Trotter
  REQ_BGL = False
5058 1a5c7281 Guido Trotter
5059 24991749 Iustin Pop
  def CheckArguments(self):
5060 24991749 Iustin Pop
    if not hasattr(self.op, 'nics'):
5061 24991749 Iustin Pop
      self.op.nics = []
5062 24991749 Iustin Pop
    if not hasattr(self.op, 'disks'):
5063 24991749 Iustin Pop
      self.op.disks = []
5064 24991749 Iustin Pop
    if not hasattr(self.op, 'beparams'):
5065 24991749 Iustin Pop
      self.op.beparams = {}
5066 24991749 Iustin Pop
    if not hasattr(self.op, 'hvparams'):
5067 24991749 Iustin Pop
      self.op.hvparams = {}
5068 24991749 Iustin Pop
    self.op.force = getattr(self.op, "force", False)
5069 24991749 Iustin Pop
    if not (self.op.nics or self.op.disks or
5070 24991749 Iustin Pop
            self.op.hvparams or self.op.beparams):
5071 24991749 Iustin Pop
      raise errors.OpPrereqError("No changes submitted")
5072 24991749 Iustin Pop
5073 d4b72030 Guido Trotter
    utils.CheckBEParams(self.op.beparams)
5074 d4b72030 Guido Trotter
5075 24991749 Iustin Pop
    # Disk validation
5076 24991749 Iustin Pop
    disk_addremove = 0
5077 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5078 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5079 24991749 Iustin Pop
        disk_addremove += 1
5080 24991749 Iustin Pop
        continue
5081 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5082 24991749 Iustin Pop
        disk_addremove += 1
5083 24991749 Iustin Pop
      else:
5084 24991749 Iustin Pop
        if not isinstance(disk_op, int):
5085 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index")
5086 24991749 Iustin Pop
      if disk_op == constants.DDM_ADD:
5087 24991749 Iustin Pop
        mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
5088 24991749 Iustin Pop
        if mode not in (constants.DISK_RDONLY, constants.DISK_RDWR):
5089 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode)
5090 24991749 Iustin Pop
        size = disk_dict.get('size', None)
5091 24991749 Iustin Pop
        if size is None:
5092 24991749 Iustin Pop
          raise errors.OpPrereqError("Required disk parameter size missing")
5093 24991749 Iustin Pop
        try:
5094 24991749 Iustin Pop
          size = int(size)
5095 24991749 Iustin Pop
        except ValueError, err:
5096 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size parameter: %s" %
5097 24991749 Iustin Pop
                                     str(err))
5098 24991749 Iustin Pop
        disk_dict['size'] = size
5099 24991749 Iustin Pop
      else:
5100 24991749 Iustin Pop
        # modification of disk
5101 24991749 Iustin Pop
        if 'size' in disk_dict:
5102 24991749 Iustin Pop
          raise errors.OpPrereqError("Disk size change not possible, use"
5103 24991749 Iustin Pop
                                     " grow-disk")
5104 24991749 Iustin Pop
5105 24991749 Iustin Pop
    if disk_addremove > 1:
5106 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one disk add or remove operation"
5107 24991749 Iustin Pop
                                 " supported at a time")
5108 24991749 Iustin Pop
5109 24991749 Iustin Pop
    # NIC validation
5110 24991749 Iustin Pop
    nic_addremove = 0
5111 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5112 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5113 24991749 Iustin Pop
        nic_addremove += 1
5114 24991749 Iustin Pop
        continue
5115 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5116 24991749 Iustin Pop
        nic_addremove += 1
5117 24991749 Iustin Pop
      else:
5118 24991749 Iustin Pop
        if not isinstance(nic_op, int):
5119 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid nic index")
5120 24991749 Iustin Pop
5121 24991749 Iustin Pop
      # nic_dict should be a dict
5122 24991749 Iustin Pop
      nic_ip = nic_dict.get('ip', None)
5123 24991749 Iustin Pop
      if nic_ip is not None:
5124 24991749 Iustin Pop
        if nic_ip.lower() == "none":
5125 24991749 Iustin Pop
          nic_dict['ip'] = None
5126 24991749 Iustin Pop
        else:
5127 24991749 Iustin Pop
          if not utils.IsValidIP(nic_ip):
5128 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip)
5129 24991749 Iustin Pop
      # we can only check None bridges and assign the default one
5130 24991749 Iustin Pop
      nic_bridge = nic_dict.get('bridge', None)
5131 24991749 Iustin Pop
      if nic_bridge is None:
5132 24991749 Iustin Pop
        nic_dict['bridge'] = self.cfg.GetDefBridge()
5133 24991749 Iustin Pop
      # but we can validate MACs
5134 24991749 Iustin Pop
      nic_mac = nic_dict.get('mac', None)
5135 24991749 Iustin Pop
      if nic_mac is not None:
5136 24991749 Iustin Pop
        if self.cfg.IsMacInUse(nic_mac):
5137 24991749 Iustin Pop
          raise errors.OpPrereqError("MAC address %s already in use"
5138 24991749 Iustin Pop
                                     " in cluster" % nic_mac)
5139 24991749 Iustin Pop
        if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5140 24991749 Iustin Pop
          if not utils.IsValidMac(nic_mac):
5141 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid MAC address %s" % nic_mac)
5142 24991749 Iustin Pop
    if nic_addremove > 1:
5143 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one NIC add or remove operation"
5144 24991749 Iustin Pop
                                 " supported at a time")
5145 24991749 Iustin Pop
5146 1a5c7281 Guido Trotter
  def ExpandNames(self):
5147 1a5c7281 Guido Trotter
    self._ExpandAndLockInstance()
5148 74409b12 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
5149 74409b12 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5150 74409b12 Iustin Pop
5151 74409b12 Iustin Pop
  def DeclareLocks(self, level):
5152 74409b12 Iustin Pop
    if level == locking.LEVEL_NODE:
5153 74409b12 Iustin Pop
      self._LockInstancesNodes()
5154 a8083063 Iustin Pop
5155 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5156 a8083063 Iustin Pop
    """Build hooks env.
5157 a8083063 Iustin Pop

5158 a8083063 Iustin Pop
    This runs on the master, primary and secondaries.
5159 a8083063 Iustin Pop

5160 a8083063 Iustin Pop
    """
5161 396e1b78 Michael Hanselmann
    args = dict()
5162 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.be_new:
5163 338e51e8 Iustin Pop
      args['memory'] = self.be_new[constants.BE_MEMORY]
5164 338e51e8 Iustin Pop
    if constants.BE_VCPUS in self.be_new:
5165 61be6ba4 Iustin Pop
      args['vcpus'] = self.be_new[constants.BE_VCPUS]
5166 24991749 Iustin Pop
    # FIXME: readd disk/nic changes
5167 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
5168 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode(),
5169 a8083063 Iustin Pop
          self.instance.primary_node] + list(self.instance.secondary_nodes)
5170 a8083063 Iustin Pop
    return env, nl, nl
5171 a8083063 Iustin Pop
5172 a8083063 Iustin Pop
  def CheckPrereq(self):
5173 a8083063 Iustin Pop
    """Check prerequisites.
5174 a8083063 Iustin Pop

5175 a8083063 Iustin Pop
    This only checks the instance list against the existing names.
5176 a8083063 Iustin Pop

5177 a8083063 Iustin Pop
    """
5178 24991749 Iustin Pop
    force = self.force = self.op.force
5179 a8083063 Iustin Pop
5180 74409b12 Iustin Pop
    # checking the new params on the primary/secondary nodes
5181 31a853d2 Iustin Pop
5182 cfefe007 Guido Trotter
    instance = self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5183 1a5c7281 Guido Trotter
    assert self.instance is not None, \
5184 1a5c7281 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5185 74409b12 Iustin Pop
    pnode = self.instance.primary_node
5186 74409b12 Iustin Pop
    nodelist = [pnode]
5187 74409b12 Iustin Pop
    nodelist.extend(instance.secondary_nodes)
5188 74409b12 Iustin Pop
5189 338e51e8 Iustin Pop
    # hvparams processing
5190 74409b12 Iustin Pop
    if self.op.hvparams:
5191 74409b12 Iustin Pop
      i_hvdict = copy.deepcopy(instance.hvparams)
5192 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
5193 8edcd611 Guido Trotter
        if val == constants.VALUE_DEFAULT:
5194 74409b12 Iustin Pop
          try:
5195 74409b12 Iustin Pop
            del i_hvdict[key]
5196 74409b12 Iustin Pop
          except KeyError:
5197 74409b12 Iustin Pop
            pass
5198 8edcd611 Guido Trotter
        elif val == constants.VALUE_NONE:
5199 8edcd611 Guido Trotter
          i_hvdict[key] = None
5200 74409b12 Iustin Pop
        else:
5201 74409b12 Iustin Pop
          i_hvdict[key] = val
5202 74409b12 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
5203 74409b12 Iustin Pop
      hv_new = cluster.FillDict(cluster.hvparams[instance.hypervisor],
5204 74409b12 Iustin Pop
                                i_hvdict)
5205 74409b12 Iustin Pop
      # local check
5206 74409b12 Iustin Pop
      hypervisor.GetHypervisor(
5207 74409b12 Iustin Pop
        instance.hypervisor).CheckParameterSyntax(hv_new)
5208 74409b12 Iustin Pop
      _CheckHVParams(self, nodelist, instance.hypervisor, hv_new)
5209 338e51e8 Iustin Pop
      self.hv_new = hv_new # the new actual values
5210 338e51e8 Iustin Pop
      self.hv_inst = i_hvdict # the new dict (without defaults)
5211 338e51e8 Iustin Pop
    else:
5212 338e51e8 Iustin Pop
      self.hv_new = self.hv_inst = {}
5213 338e51e8 Iustin Pop
5214 338e51e8 Iustin Pop
    # beparams processing
5215 338e51e8 Iustin Pop
    if self.op.beparams:
5216 338e51e8 Iustin Pop
      i_bedict = copy.deepcopy(instance.beparams)
5217 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
5218 8edcd611 Guido Trotter
        if val == constants.VALUE_DEFAULT:
5219 338e51e8 Iustin Pop
          try:
5220 338e51e8 Iustin Pop
            del i_bedict[key]
5221 338e51e8 Iustin Pop
          except KeyError:
5222 338e51e8 Iustin Pop
            pass
5223 338e51e8 Iustin Pop
        else:
5224 338e51e8 Iustin Pop
          i_bedict[key] = val
5225 338e51e8 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
5226 338e51e8 Iustin Pop
      be_new = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
5227 338e51e8 Iustin Pop
                                i_bedict)
5228 338e51e8 Iustin Pop
      self.be_new = be_new # the new actual values
5229 338e51e8 Iustin Pop
      self.be_inst = i_bedict # the new dict (without defaults)
5230 338e51e8 Iustin Pop
    else:
5231 b637ae4d Iustin Pop
      self.be_new = self.be_inst = {}
5232 74409b12 Iustin Pop
5233 cfefe007 Guido Trotter
    self.warn = []
5234 647a5d80 Iustin Pop
5235 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.op.beparams and not self.force:
5236 647a5d80 Iustin Pop
      mem_check_list = [pnode]
5237 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
5238 c0f2b229 Iustin Pop
        # either we changed auto_balance to yes or it was from before
5239 647a5d80 Iustin Pop
        mem_check_list.extend(instance.secondary_nodes)
5240 72737a7f Iustin Pop
      instance_info = self.rpc.call_instance_info(pnode, instance.name,
5241 72737a7f Iustin Pop
                                                  instance.hypervisor)
5242 647a5d80 Iustin Pop
      nodeinfo = self.rpc.call_node_info(mem_check_list, self.cfg.GetVGName(),
5243 72737a7f Iustin Pop
                                         instance.hypervisor)
5244 781de953 Iustin Pop
      if nodeinfo[pnode].failed or not isinstance(nodeinfo[pnode].data, dict):
5245 cfefe007 Guido Trotter
        # Assume the primary node is unreachable and go ahead
5246 cfefe007 Guido Trotter
        self.warn.append("Can't get info from primary node %s" % pnode)
5247 cfefe007 Guido Trotter
      else:
5248 781de953 Iustin Pop
        if not instance_info.failed and instance_info.data:
5249 781de953 Iustin Pop
          current_mem = instance_info.data['memory']
5250 cfefe007 Guido Trotter
        else:
5251 cfefe007 Guido Trotter
          # Assume instance not running
5252 cfefe007 Guido Trotter
          # (there is a slight race condition here, but it's not very probable,
5253 cfefe007 Guido Trotter
          # and we have no other way to check)
5254 cfefe007 Guido Trotter
          current_mem = 0
5255 338e51e8 Iustin Pop
        miss_mem = (be_new[constants.BE_MEMORY] - current_mem -
5256 781de953 Iustin Pop
                    nodeinfo[pnode].data['memory_free'])
5257 cfefe007 Guido Trotter
        if miss_mem > 0:
5258 cfefe007 Guido Trotter
          raise errors.OpPrereqError("This change will prevent the instance"
5259 cfefe007 Guido Trotter
                                     " from starting, due to %d MB of memory"
5260 cfefe007 Guido Trotter
                                     " missing on its primary node" % miss_mem)
5261 cfefe007 Guido Trotter
5262 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
5263 781de953 Iustin Pop
        for node, nres in instance.secondary_nodes.iteritems():
5264 781de953 Iustin Pop
          if nres.failed or not isinstance(nres.data, dict):
5265 647a5d80 Iustin Pop
            self.warn.append("Can't get info from secondary node %s" % node)
5266 781de953 Iustin Pop
          elif be_new[constants.BE_MEMORY] > nres.data['memory_free']:
5267 647a5d80 Iustin Pop
            self.warn.append("Not enough memory to failover instance to"
5268 647a5d80 Iustin Pop
                             " secondary node %s" % node)
5269 5bc84f33 Alexander Schreiber
5270 24991749 Iustin Pop
    # NIC processing
5271 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5272 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5273 24991749 Iustin Pop
        if not instance.nics:
5274 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance has no NICs, cannot remove")
5275 24991749 Iustin Pop
        continue
5276 24991749 Iustin Pop
      if nic_op != constants.DDM_ADD:
5277 24991749 Iustin Pop
        # an existing nic
5278 24991749 Iustin Pop
        if nic_op < 0 or nic_op >= len(instance.nics):
5279 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid NIC index %s, valid values"
5280 24991749 Iustin Pop
                                     " are 0 to %d" %
5281 24991749 Iustin Pop
                                     (nic_op, len(instance.nics)))
5282 24991749 Iustin Pop
      nic_bridge = nic_dict.get('bridge', None)
5283 24991749 Iustin Pop
      if nic_bridge is not None:
5284 24991749 Iustin Pop
        if not self.rpc.call_bridges_exist(pnode, [nic_bridge]):
5285 24991749 Iustin Pop
          msg = ("Bridge '%s' doesn't exist on one of"
5286 24991749 Iustin Pop
                 " the instance nodes" % nic_bridge)
5287 24991749 Iustin Pop
          if self.force:
5288 24991749 Iustin Pop
            self.warn.append(msg)
5289 24991749 Iustin Pop
          else:
5290 24991749 Iustin Pop
            raise errors.OpPrereqError(msg)
5291 24991749 Iustin Pop
5292 24991749 Iustin Pop
    # DISK processing
5293 24991749 Iustin Pop
    if self.op.disks and instance.disk_template == constants.DT_DISKLESS:
5294 24991749 Iustin Pop
      raise errors.OpPrereqError("Disk operations not supported for"
5295 24991749 Iustin Pop
                                 " diskless instances")
5296 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5297 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5298 24991749 Iustin Pop
        if len(instance.disks) == 1:
5299 24991749 Iustin Pop
          raise errors.OpPrereqError("Cannot remove the last disk of"
5300 24991749 Iustin Pop
                                     " an instance")
5301 24991749 Iustin Pop
        ins_l = self.rpc.call_instance_list([pnode], [instance.hypervisor])
5302 24991749 Iustin Pop
        ins_l = ins_l[pnode]
5303 24991749 Iustin Pop
        if not type(ins_l) is list:
5304 24991749 Iustin Pop
          raise errors.OpPrereqError("Can't contact node '%s'" % pnode)
5305 24991749 Iustin Pop
        if instance.name in ins_l:
5306 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance is running, can't remove"
5307 24991749 Iustin Pop
                                     " disks.")
5308 24991749 Iustin Pop
5309 24991749 Iustin Pop
      if (disk_op == constants.DDM_ADD and
5310 24991749 Iustin Pop
          len(instance.nics) >= constants.MAX_DISKS):
5311 24991749 Iustin Pop
        raise errors.OpPrereqError("Instance has too many disks (%d), cannot"
5312 24991749 Iustin Pop
                                   " add more" % constants.MAX_DISKS)
5313 24991749 Iustin Pop
      if disk_op not in (constants.DDM_ADD, constants.DDM_REMOVE):
5314 24991749 Iustin Pop
        # an existing disk
5315 24991749 Iustin Pop
        if disk_op < 0 or disk_op >= len(instance.disks):
5316 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index %s, valid values"
5317 24991749 Iustin Pop
                                     " are 0 to %d" %
5318 24991749 Iustin Pop
                                     (disk_op, len(instance.disks)))
5319 24991749 Iustin Pop
5320 a8083063 Iustin Pop
    return
5321 a8083063 Iustin Pop
5322 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5323 a8083063 Iustin Pop
    """Modifies an instance.
5324 a8083063 Iustin Pop

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

5327 a8083063 Iustin Pop
    """
5328 cfefe007 Guido Trotter
    # Process here the warnings from CheckPrereq, as we don't have a
5329 cfefe007 Guido Trotter
    # feedback_fn there.
5330 cfefe007 Guido Trotter
    for warn in self.warn:
5331 cfefe007 Guido Trotter
      feedback_fn("WARNING: %s" % warn)
5332 cfefe007 Guido Trotter
5333 a8083063 Iustin Pop
    result = []
5334 a8083063 Iustin Pop
    instance = self.instance
5335 24991749 Iustin Pop
    # disk changes
5336 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5337 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5338 24991749 Iustin Pop
        # remove the last disk
5339 24991749 Iustin Pop
        device = instance.disks.pop()
5340 24991749 Iustin Pop
        device_idx = len(instance.disks)
5341 24991749 Iustin Pop
        for node, disk in device.ComputeNodeTree(instance.primary_node):
5342 24991749 Iustin Pop
          self.cfg.SetDiskID(disk, node)
5343 781de953 Iustin Pop
          result = self.rpc.call_blockdev_remove(node, disk)
5344 781de953 Iustin Pop
          if result.failed or not result.data:
5345 24991749 Iustin Pop
            self.proc.LogWarning("Could not remove disk/%d on node %s,"
5346 24991749 Iustin Pop
                                 " continuing anyway", device_idx, node)
5347 24991749 Iustin Pop
        result.append(("disk/%d" % device_idx, "remove"))
5348 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5349 24991749 Iustin Pop
        # add a new disk
5350 24991749 Iustin Pop
        if instance.disk_template == constants.DT_FILE:
5351 24991749 Iustin Pop
          file_driver, file_path = instance.disks[0].logical_id
5352 24991749 Iustin Pop
          file_path = os.path.dirname(file_path)
5353 24991749 Iustin Pop
        else:
5354 24991749 Iustin Pop
          file_driver = file_path = None
5355 24991749 Iustin Pop
        disk_idx_base = len(instance.disks)
5356 24991749 Iustin Pop
        new_disk = _GenerateDiskTemplate(self,
5357 24991749 Iustin Pop
                                         instance.disk_template,
5358 24991749 Iustin Pop
                                         instance, instance.primary_node,
5359 24991749 Iustin Pop
                                         instance.secondary_nodes,
5360 24991749 Iustin Pop
                                         [disk_dict],
5361 24991749 Iustin Pop
                                         file_path,
5362 24991749 Iustin Pop
                                         file_driver,
5363 24991749 Iustin Pop
                                         disk_idx_base)[0]
5364 24991749 Iustin Pop
        new_disk.mode = disk_dict['mode']
5365 24991749 Iustin Pop
        instance.disks.append(new_disk)
5366 24991749 Iustin Pop
        info = _GetInstanceInfoText(instance)
5367 24991749 Iustin Pop
5368 24991749 Iustin Pop
        logging.info("Creating volume %s for instance %s",
5369 24991749 Iustin Pop
                     new_disk.iv_name, instance.name)
5370 24991749 Iustin Pop
        # Note: this needs to be kept in sync with _CreateDisks
5371 24991749 Iustin Pop
        #HARDCODE
5372 24991749 Iustin Pop
        for secondary_node in instance.secondary_nodes:
5373 24991749 Iustin Pop
          if not _CreateBlockDevOnSecondary(self, secondary_node, instance,
5374 24991749 Iustin Pop
                                            new_disk, False, info):
5375 24991749 Iustin Pop
            self.LogWarning("Failed to create volume %s (%s) on"
5376 24991749 Iustin Pop
                            " secondary node %s!",
5377 24991749 Iustin Pop
                            new_disk.iv_name, new_disk, secondary_node)
5378 24991749 Iustin Pop
        #HARDCODE
5379 24991749 Iustin Pop
        if not _CreateBlockDevOnPrimary(self, instance.primary_node,
5380 24991749 Iustin Pop
                                        instance, new_disk, info):
5381 24991749 Iustin Pop
          self.LogWarning("Failed to create volume %s on primary!",
5382 24991749 Iustin Pop
                          new_disk.iv_name)
5383 24991749 Iustin Pop
        result.append(("disk/%d" % disk_idx_base, "add:size=%s,mode=%s" %
5384 24991749 Iustin Pop
                       (new_disk.size, new_disk.mode)))
5385 24991749 Iustin Pop
      else:
5386 24991749 Iustin Pop
        # change a given disk
5387 24991749 Iustin Pop
        instance.disks[disk_op].mode = disk_dict['mode']
5388 24991749 Iustin Pop
        result.append(("disk.mode/%d" % disk_op, disk_dict['mode']))
5389 24991749 Iustin Pop
    # NIC changes
5390 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5391 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5392 24991749 Iustin Pop
        # remove the last nic
5393 24991749 Iustin Pop
        del instance.nics[-1]
5394 24991749 Iustin Pop
        result.append(("nic.%d" % len(instance.nics), "remove"))
5395 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5396 24991749 Iustin Pop
        # add a new nic
5397 24991749 Iustin Pop
        if 'mac' not in nic_dict:
5398 24991749 Iustin Pop
          mac = constants.VALUE_GENERATE
5399 24991749 Iustin Pop
        else:
5400 24991749 Iustin Pop
          mac = nic_dict['mac']
5401 24991749 Iustin Pop
        if mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5402 24991749 Iustin Pop
          mac = self.cfg.GenerateMAC()
5403 24991749 Iustin Pop
        new_nic = objects.NIC(mac=mac, ip=nic_dict.get('ip', None),
5404 24991749 Iustin Pop
                              bridge=nic_dict.get('bridge', None))
5405 24991749 Iustin Pop
        instance.nics.append(new_nic)
5406 24991749 Iustin Pop
        result.append(("nic.%d" % (len(instance.nics) - 1),
5407 24991749 Iustin Pop
                       "add:mac=%s,ip=%s,bridge=%s" %
5408 24991749 Iustin Pop
                       (new_nic.mac, new_nic.ip, new_nic.bridge)))
5409 24991749 Iustin Pop
      else:
5410 24991749 Iustin Pop
        # change a given nic
5411 24991749 Iustin Pop
        for key in 'mac', 'ip', 'bridge':
5412 24991749 Iustin Pop
          if key in nic_dict:
5413 24991749 Iustin Pop
            setattr(instance.nics[nic_op], key, nic_dict[key])
5414 24991749 Iustin Pop
            result.append(("nic.%s/%d" % (key, nic_op), nic_dict[key]))
5415 24991749 Iustin Pop
5416 24991749 Iustin Pop
    # hvparams changes
5417 74409b12 Iustin Pop
    if self.op.hvparams:
5418 74409b12 Iustin Pop
      instance.hvparams = self.hv_new
5419 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
5420 74409b12 Iustin Pop
        result.append(("hv/%s" % key, val))
5421 24991749 Iustin Pop
5422 24991749 Iustin Pop
    # beparams changes
5423 338e51e8 Iustin Pop
    if self.op.beparams:
5424 338e51e8 Iustin Pop
      instance.beparams = self.be_inst
5425 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
5426 338e51e8 Iustin Pop
        result.append(("be/%s" % key, val))
5427 a8083063 Iustin Pop
5428 ea94e1cd Guido Trotter
    self.cfg.Update(instance)
5429 a8083063 Iustin Pop
5430 a8083063 Iustin Pop
    return result
5431 a8083063 Iustin Pop
5432 a8083063 Iustin Pop
5433 a8083063 Iustin Pop
class LUQueryExports(NoHooksLU):
5434 a8083063 Iustin Pop
  """Query the exports list
5435 a8083063 Iustin Pop

5436 a8083063 Iustin Pop
  """
5437 895ecd9c Guido Trotter
  _OP_REQP = ['nodes']
5438 21a15682 Guido Trotter
  REQ_BGL = False
5439 21a15682 Guido Trotter
5440 21a15682 Guido Trotter
  def ExpandNames(self):
5441 21a15682 Guido Trotter
    self.needed_locks = {}
5442 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
5443 21a15682 Guido Trotter
    if not self.op.nodes:
5444 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
5445 21a15682 Guido Trotter
    else:
5446 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
5447 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
5448 a8083063 Iustin Pop
5449 a8083063 Iustin Pop
  def CheckPrereq(self):
5450 21a15682 Guido Trotter
    """Check prerequisites.
5451 a8083063 Iustin Pop

5452 a8083063 Iustin Pop
    """
5453 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
5454 a8083063 Iustin Pop
5455 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5456 a8083063 Iustin Pop
    """Compute the list of all the exported system images.
5457 a8083063 Iustin Pop

5458 e4376078 Iustin Pop
    @rtype: dict
5459 e4376078 Iustin Pop
    @return: a dictionary with the structure node->(export-list)
5460 e4376078 Iustin Pop
        where export-list is a list of the instances exported on
5461 e4376078 Iustin Pop
        that node.
5462 a8083063 Iustin Pop

5463 a8083063 Iustin Pop
    """
5464 b04285f2 Guido Trotter
    rpcresult = self.rpc.call_export_list(self.nodes)
5465 b04285f2 Guido Trotter
    result = {}
5466 b04285f2 Guido Trotter
    for node in rpcresult:
5467 b04285f2 Guido Trotter
      if rpcresult[node].failed:
5468 b04285f2 Guido Trotter
        result[node] = False
5469 b04285f2 Guido Trotter
      else:
5470 b04285f2 Guido Trotter
        result[node] = rpcresult[node].data
5471 b04285f2 Guido Trotter
5472 b04285f2 Guido Trotter
    return result
5473 a8083063 Iustin Pop
5474 a8083063 Iustin Pop
5475 a8083063 Iustin Pop
class LUExportInstance(LogicalUnit):
5476 a8083063 Iustin Pop
  """Export an instance to an image in the cluster.
5477 a8083063 Iustin Pop

5478 a8083063 Iustin Pop
  """
5479 a8083063 Iustin Pop
  HPATH = "instance-export"
5480 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5481 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "target_node", "shutdown"]
5482 6657590e Guido Trotter
  REQ_BGL = False
5483 6657590e Guido Trotter
5484 6657590e Guido Trotter
  def ExpandNames(self):
5485 6657590e Guido Trotter
    self._ExpandAndLockInstance()
5486 6657590e Guido Trotter
    # FIXME: lock only instance primary and destination node
5487 6657590e Guido Trotter
    #
5488 6657590e Guido Trotter
    # Sad but true, for now we have do lock all nodes, as we don't know where
5489 6657590e Guido Trotter
    # the previous export might be, and and in this LU we search for it and
5490 6657590e Guido Trotter
    # remove it from its current node. In the future we could fix this by:
5491 6657590e Guido Trotter
    #  - making a tasklet to search (share-lock all), then create the new one,
5492 6657590e Guido Trotter
    #    then one to remove, after
5493 6657590e Guido Trotter
    #  - removing the removal operation altoghether
5494 6657590e Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
5495 6657590e Guido Trotter
5496 6657590e Guido Trotter
  def DeclareLocks(self, level):
5497 6657590e Guido Trotter
    """Last minute lock declaration."""
5498 6657590e Guido Trotter
    # All nodes are locked anyway, so nothing to do here.
5499 a8083063 Iustin Pop
5500 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5501 a8083063 Iustin Pop
    """Build hooks env.
5502 a8083063 Iustin Pop

5503 a8083063 Iustin Pop
    This will run on the master, primary node and target node.
5504 a8083063 Iustin Pop

5505 a8083063 Iustin Pop
    """
5506 a8083063 Iustin Pop
    env = {
5507 a8083063 Iustin Pop
      "EXPORT_NODE": self.op.target_node,
5508 a8083063 Iustin Pop
      "EXPORT_DO_SHUTDOWN": self.op.shutdown,
5509 a8083063 Iustin Pop
      }
5510 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5511 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode(), self.instance.primary_node,
5512 a8083063 Iustin Pop
          self.op.target_node]
5513 a8083063 Iustin Pop
    return env, nl, nl
5514 a8083063 Iustin Pop
5515 a8083063 Iustin Pop
  def CheckPrereq(self):
5516 a8083063 Iustin Pop
    """Check prerequisites.
5517 a8083063 Iustin Pop

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

5520 a8083063 Iustin Pop
    """
5521 6657590e Guido Trotter
    instance_name = self.op.instance_name
5522 a8083063 Iustin Pop
    self.instance = self.cfg.GetInstanceInfo(instance_name)
5523 6657590e Guido Trotter
    assert self.instance is not None, \
5524 6657590e Guido Trotter
          "Cannot retrieve locked instance %s" % self.op.instance_name
5525 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
5526 a8083063 Iustin Pop
5527 6657590e Guido Trotter
    self.dst_node = self.cfg.GetNodeInfo(
5528 6657590e Guido Trotter
      self.cfg.ExpandNodeName(self.op.target_node))
5529 a8083063 Iustin Pop
5530 268b8e42 Iustin Pop
    if self.dst_node is None:
5531 268b8e42 Iustin Pop
      # This is wrong node name, not a non-locked node
5532 268b8e42 Iustin Pop
      raise errors.OpPrereqError("Wrong node name %s" % self.op.target_node)
5533 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, self.op.target_node)
5534 a8083063 Iustin Pop
5535 b6023d6c Manuel Franceschini
    # instance disk type verification
5536 b6023d6c Manuel Franceschini
    for disk in self.instance.disks:
5537 b6023d6c Manuel Franceschini
      if disk.dev_type == constants.LD_FILE:
5538 b6023d6c Manuel Franceschini
        raise errors.OpPrereqError("Export not supported for instances with"
5539 b6023d6c Manuel Franceschini
                                   " file-based disks")
5540 b6023d6c Manuel Franceschini
5541 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5542 a8083063 Iustin Pop
    """Export an instance to an image in the cluster.
5543 a8083063 Iustin Pop

5544 a8083063 Iustin Pop
    """
5545 a8083063 Iustin Pop
    instance = self.instance
5546 a8083063 Iustin Pop
    dst_node = self.dst_node
5547 a8083063 Iustin Pop
    src_node = instance.primary_node
5548 a8083063 Iustin Pop
    if self.op.shutdown:
5549 fb300fb7 Guido Trotter
      # shutdown the instance, but not the disks
5550 781de953 Iustin Pop
      result = self.rpc.call_instance_shutdown(src_node, instance)
5551 781de953 Iustin Pop
      result.Raise()
5552 781de953 Iustin Pop
      if not result.data:
5553 38206f3c Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on node %s" %
5554 38206f3c Iustin Pop
                                 (instance.name, src_node))
5555 a8083063 Iustin Pop
5556 a8083063 Iustin Pop
    vgname = self.cfg.GetVGName()
5557 a8083063 Iustin Pop
5558 a8083063 Iustin Pop
    snap_disks = []
5559 a8083063 Iustin Pop
5560 a8083063 Iustin Pop
    try:
5561 a8083063 Iustin Pop
      for disk in instance.disks:
5562 19d7f90a Guido Trotter
        # new_dev_name will be a snapshot of an lvm leaf of the one we passed
5563 19d7f90a Guido Trotter
        new_dev_name = self.rpc.call_blockdev_snapshot(src_node, disk)
5564 781de953 Iustin Pop
        if new_dev_name.failed or not new_dev_name.data:
5565 19d7f90a Guido Trotter
          self.LogWarning("Could not snapshot block device %s on node %s",
5566 9a4f63d1 Iustin Pop
                          disk.logical_id[1], src_node)
5567 19d7f90a Guido Trotter
          snap_disks.append(False)
5568 19d7f90a Guido Trotter
        else:
5569 19d7f90a Guido Trotter
          new_dev = objects.Disk(dev_type=constants.LD_LV, size=disk.size,
5570 781de953 Iustin Pop
                                 logical_id=(vgname, new_dev_name.data),
5571 781de953 Iustin Pop
                                 physical_id=(vgname, new_dev_name.data),
5572 19d7f90a Guido Trotter
                                 iv_name=disk.iv_name)
5573 19d7f90a Guido Trotter
          snap_disks.append(new_dev)
5574 a8083063 Iustin Pop
5575 a8083063 Iustin Pop
    finally:
5576 fb300fb7 Guido Trotter
      if self.op.shutdown and instance.status == "up":
5577 781de953 Iustin Pop
        result = self.rpc.call_instance_start(src_node, instance, None)
5578 781de953 Iustin Pop
        if result.failed or not result.data:
5579 b9bddb6b Iustin Pop
          _ShutdownInstanceDisks(self, instance)
5580 fb300fb7 Guido Trotter
          raise errors.OpExecError("Could not start instance")
5581 a8083063 Iustin Pop
5582 a8083063 Iustin Pop
    # TODO: check for size
5583 a8083063 Iustin Pop
5584 62c9ec92 Iustin Pop
    cluster_name = self.cfg.GetClusterName()
5585 74c47259 Iustin Pop
    for idx, dev in enumerate(snap_disks):
5586 19d7f90a Guido Trotter
      if dev:
5587 781de953 Iustin Pop
        result = self.rpc.call_snapshot_export(src_node, dev, dst_node.name,
5588 781de953 Iustin Pop
                                               instance, cluster_name, idx)
5589 781de953 Iustin Pop
        if result.failed or not result.data:
5590 19d7f90a Guido Trotter
          self.LogWarning("Could not export block device %s from node %s to"
5591 19d7f90a Guido Trotter
                          " node %s", dev.logical_id[1], src_node,
5592 19d7f90a Guido Trotter
                          dst_node.name)
5593 781de953 Iustin Pop
        result = self.rpc.call_blockdev_remove(src_node, dev)
5594 781de953 Iustin Pop
        if result.failed or not result.data:
5595 19d7f90a Guido Trotter
          self.LogWarning("Could not remove snapshot block device %s from node"
5596 19d7f90a Guido Trotter
                          " %s", dev.logical_id[1], src_node)
5597 a8083063 Iustin Pop
5598 781de953 Iustin Pop
    result = self.rpc.call_finalize_export(dst_node.name, instance, snap_disks)
5599 781de953 Iustin Pop
    if result.failed or not result.data:
5600 19d7f90a Guido Trotter
      self.LogWarning("Could not finalize export for instance %s on node %s",
5601 19d7f90a Guido Trotter
                      instance.name, dst_node.name)
5602 a8083063 Iustin Pop
5603 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
5604 a8083063 Iustin Pop
    nodelist.remove(dst_node.name)
5605 a8083063 Iustin Pop
5606 a8083063 Iustin Pop
    # on one-node clusters nodelist will be empty after the removal
5607 a8083063 Iustin Pop
    # if we proceed the backup would be removed because OpQueryExports
5608 a8083063 Iustin Pop
    # substitutes an empty list with the full cluster node list.
5609 a8083063 Iustin Pop
    if nodelist:
5610 72737a7f Iustin Pop
      exportlist = self.rpc.call_export_list(nodelist)
5611 a8083063 Iustin Pop
      for node in exportlist:
5612 781de953 Iustin Pop
        if exportlist[node].failed:
5613 781de953 Iustin Pop
          continue
5614 781de953 Iustin Pop
        if instance.name in exportlist[node].data:
5615 72737a7f Iustin Pop
          if not self.rpc.call_export_remove(node, instance.name):
5616 19d7f90a Guido Trotter
            self.LogWarning("Could not remove older export for instance %s"
5617 19d7f90a Guido Trotter
                            " on node %s", instance.name, node)
5618 5c947f38 Iustin Pop
5619 5c947f38 Iustin Pop
5620 9ac99fda Guido Trotter
class LURemoveExport(NoHooksLU):
5621 9ac99fda Guido Trotter
  """Remove exports related to the named instance.
5622 9ac99fda Guido Trotter

5623 9ac99fda Guido Trotter
  """
5624 9ac99fda Guido Trotter
  _OP_REQP = ["instance_name"]
5625 3656b3af Guido Trotter
  REQ_BGL = False
5626 3656b3af Guido Trotter
5627 3656b3af Guido Trotter
  def ExpandNames(self):
5628 3656b3af Guido Trotter
    self.needed_locks = {}
5629 3656b3af Guido Trotter
    # We need all nodes to be locked in order for RemoveExport to work, but we
5630 3656b3af Guido Trotter
    # don't need to lock the instance itself, as nothing will happen to it (and
5631 3656b3af Guido Trotter
    # we can remove exports also for a removed instance)
5632 3656b3af Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
5633 9ac99fda Guido Trotter
5634 9ac99fda Guido Trotter
  def CheckPrereq(self):
5635 9ac99fda Guido Trotter
    """Check prerequisites.
5636 9ac99fda Guido Trotter
    """
5637 9ac99fda Guido Trotter
    pass
5638 9ac99fda Guido Trotter
5639 9ac99fda Guido Trotter
  def Exec(self, feedback_fn):
5640 9ac99fda Guido Trotter
    """Remove any export.
5641 9ac99fda Guido Trotter

5642 9ac99fda Guido Trotter
    """
5643 9ac99fda Guido Trotter
    instance_name = self.cfg.ExpandInstanceName(self.op.instance_name)
5644 9ac99fda Guido Trotter
    # If the instance was not found we'll try with the name that was passed in.
5645 9ac99fda Guido Trotter
    # This will only work if it was an FQDN, though.
5646 9ac99fda Guido Trotter
    fqdn_warn = False
5647 9ac99fda Guido Trotter
    if not instance_name:
5648 9ac99fda Guido Trotter
      fqdn_warn = True
5649 9ac99fda Guido Trotter
      instance_name = self.op.instance_name
5650 9ac99fda Guido Trotter
5651 72737a7f Iustin Pop
    exportlist = self.rpc.call_export_list(self.acquired_locks[
5652 72737a7f Iustin Pop
      locking.LEVEL_NODE])
5653 9ac99fda Guido Trotter
    found = False
5654 9ac99fda Guido Trotter
    for node in exportlist:
5655 781de953 Iustin Pop
      if exportlist[node].failed:
5656 25361b9a Iustin Pop
        self.LogWarning("Failed to query node %s, continuing" % node)
5657 781de953 Iustin Pop
        continue
5658 781de953 Iustin Pop
      if instance_name in exportlist[node].data:
5659 9ac99fda Guido Trotter
        found = True
5660 781de953 Iustin Pop
        result = self.rpc.call_export_remove(node, instance_name)
5661 781de953 Iustin Pop
        if result.failed or not result.data:
5662 9a4f63d1 Iustin Pop
          logging.error("Could not remove export for instance %s"
5663 9a4f63d1 Iustin Pop
                        " on node %s", instance_name, node)
5664 9ac99fda Guido Trotter
5665 9ac99fda Guido Trotter
    if fqdn_warn and not found:
5666 9ac99fda Guido Trotter
      feedback_fn("Export not found. If trying to remove an export belonging"
5667 9ac99fda Guido Trotter
                  " to a deleted instance please use its Fully Qualified"
5668 9ac99fda Guido Trotter
                  " Domain Name.")
5669 9ac99fda Guido Trotter
5670 9ac99fda Guido Trotter
5671 5c947f38 Iustin Pop
class TagsLU(NoHooksLU):
5672 5c947f38 Iustin Pop
  """Generic tags LU.
5673 5c947f38 Iustin Pop

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

5676 5c947f38 Iustin Pop
  """
5677 5c947f38 Iustin Pop
5678 8646adce Guido Trotter
  def ExpandNames(self):
5679 8646adce Guido Trotter
    self.needed_locks = {}
5680 8646adce Guido Trotter
    if self.op.kind == constants.TAG_NODE:
5681 5c947f38 Iustin Pop
      name = self.cfg.ExpandNodeName(self.op.name)
5682 5c947f38 Iustin Pop
      if name is None:
5683 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid node name (%s)" %
5684 3ecf6786 Iustin Pop
                                   (self.op.name,))
5685 5c947f38 Iustin Pop
      self.op.name = name
5686 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = name
5687 5c947f38 Iustin Pop
    elif self.op.kind == constants.TAG_INSTANCE:
5688 8f684e16 Iustin Pop
      name = self.cfg.ExpandInstanceName(self.op.name)
5689 5c947f38 Iustin Pop
      if name is None:
5690 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid instance name (%s)" %
5691 3ecf6786 Iustin Pop
                                   (self.op.name,))
5692 5c947f38 Iustin Pop
      self.op.name = name
5693 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = name
5694 8646adce Guido Trotter
5695 8646adce Guido Trotter
  def CheckPrereq(self):
5696 8646adce Guido Trotter
    """Check prerequisites.
5697 8646adce Guido Trotter

5698 8646adce Guido Trotter
    """
5699 8646adce Guido Trotter
    if self.op.kind == constants.TAG_CLUSTER:
5700 8646adce Guido Trotter
      self.target = self.cfg.GetClusterInfo()
5701 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_NODE:
5702 8646adce Guido Trotter
      self.target = self.cfg.GetNodeInfo(self.op.name)
5703 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_INSTANCE:
5704 8646adce Guido Trotter
      self.target = self.cfg.GetInstanceInfo(self.op.name)
5705 5c947f38 Iustin Pop
    else:
5706 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Wrong tag type requested (%s)" %
5707 3ecf6786 Iustin Pop
                                 str(self.op.kind))
5708 5c947f38 Iustin Pop
5709 5c947f38 Iustin Pop
5710 5c947f38 Iustin Pop
class LUGetTags(TagsLU):
5711 5c947f38 Iustin Pop
  """Returns the tags of a given object.
5712 5c947f38 Iustin Pop

5713 5c947f38 Iustin Pop
  """
5714 5c947f38 Iustin Pop
  _OP_REQP = ["kind", "name"]
5715 8646adce Guido Trotter
  REQ_BGL = False
5716 5c947f38 Iustin Pop
5717 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
5718 5c947f38 Iustin Pop
    """Returns the tag list.
5719 5c947f38 Iustin Pop

5720 5c947f38 Iustin Pop
    """
5721 5d414478 Oleksiy Mishchenko
    return list(self.target.GetTags())
5722 5c947f38 Iustin Pop
5723 5c947f38 Iustin Pop
5724 73415719 Iustin Pop
class LUSearchTags(NoHooksLU):
5725 73415719 Iustin Pop
  """Searches the tags for a given pattern.
5726 73415719 Iustin Pop

5727 73415719 Iustin Pop
  """
5728 73415719 Iustin Pop
  _OP_REQP = ["pattern"]
5729 8646adce Guido Trotter
  REQ_BGL = False
5730 8646adce Guido Trotter
5731 8646adce Guido Trotter
  def ExpandNames(self):
5732 8646adce Guido Trotter
    self.needed_locks = {}
5733 73415719 Iustin Pop
5734 73415719 Iustin Pop
  def CheckPrereq(self):
5735 73415719 Iustin Pop
    """Check prerequisites.
5736 73415719 Iustin Pop

5737 73415719 Iustin Pop
    This checks the pattern passed for validity by compiling it.
5738 73415719 Iustin Pop

5739 73415719 Iustin Pop
    """
5740 73415719 Iustin Pop
    try:
5741 73415719 Iustin Pop
      self.re = re.compile(self.op.pattern)
5742 73415719 Iustin Pop
    except re.error, err:
5743 73415719 Iustin Pop
      raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
5744 73415719 Iustin Pop
                                 (self.op.pattern, err))
5745 73415719 Iustin Pop
5746 73415719 Iustin Pop
  def Exec(self, feedback_fn):
5747 73415719 Iustin Pop
    """Returns the tag list.
5748 73415719 Iustin Pop

5749 73415719 Iustin Pop
    """
5750 73415719 Iustin Pop
    cfg = self.cfg
5751 73415719 Iustin Pop
    tgts = [("/cluster", cfg.GetClusterInfo())]
5752 8646adce Guido Trotter
    ilist = cfg.GetAllInstancesInfo().values()
5753 73415719 Iustin Pop
    tgts.extend([("/instances/%s" % i.name, i) for i in ilist])
5754 8646adce Guido Trotter
    nlist = cfg.GetAllNodesInfo().values()
5755 73415719 Iustin Pop
    tgts.extend([("/nodes/%s" % n.name, n) for n in nlist])
5756 73415719 Iustin Pop
    results = []
5757 73415719 Iustin Pop
    for path, target in tgts:
5758 73415719 Iustin Pop
      for tag in target.GetTags():
5759 73415719 Iustin Pop
        if self.re.search(tag):
5760 73415719 Iustin Pop
          results.append((path, tag))
5761 73415719 Iustin Pop
    return results
5762 73415719 Iustin Pop
5763 73415719 Iustin Pop
5764 f27302fa Iustin Pop
class LUAddTags(TagsLU):
5765 5c947f38 Iustin Pop
  """Sets a tag on a given object.
5766 5c947f38 Iustin Pop

5767 5c947f38 Iustin Pop
  """
5768 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
5769 8646adce Guido Trotter
  REQ_BGL = False
5770 5c947f38 Iustin Pop
5771 5c947f38 Iustin Pop
  def CheckPrereq(self):
5772 5c947f38 Iustin Pop
    """Check prerequisites.
5773 5c947f38 Iustin Pop

5774 5c947f38 Iustin Pop
    This checks the type and length of the tag name and value.
5775 5c947f38 Iustin Pop

5776 5c947f38 Iustin Pop
    """
5777 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
5778 f27302fa Iustin Pop
    for tag in self.op.tags:
5779 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
5780 5c947f38 Iustin Pop
5781 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
5782 5c947f38 Iustin Pop
    """Sets the tag.
5783 5c947f38 Iustin Pop

5784 5c947f38 Iustin Pop
    """
5785 5c947f38 Iustin Pop
    try:
5786 f27302fa Iustin Pop
      for tag in self.op.tags:
5787 f27302fa Iustin Pop
        self.target.AddTag(tag)
5788 5c947f38 Iustin Pop
    except errors.TagError, err:
5789 3ecf6786 Iustin Pop
      raise errors.OpExecError("Error while setting tag: %s" % str(err))
5790 5c947f38 Iustin Pop
    try:
5791 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
5792 5c947f38 Iustin Pop
    except errors.ConfigurationError:
5793 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
5794 3ecf6786 Iustin Pop
                                " config file and the operation has been"
5795 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
5796 5c947f38 Iustin Pop
5797 5c947f38 Iustin Pop
5798 f27302fa Iustin Pop
class LUDelTags(TagsLU):
5799 f27302fa Iustin Pop
  """Delete a list of tags from a given object.
5800 5c947f38 Iustin Pop

5801 5c947f38 Iustin Pop
  """
5802 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
5803 8646adce Guido Trotter
  REQ_BGL = False
5804 5c947f38 Iustin Pop
5805 5c947f38 Iustin Pop
  def CheckPrereq(self):
5806 5c947f38 Iustin Pop
    """Check prerequisites.
5807 5c947f38 Iustin Pop

5808 5c947f38 Iustin Pop
    This checks that we have the given tag.
5809 5c947f38 Iustin Pop

5810 5c947f38 Iustin Pop
    """
5811 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
5812 f27302fa Iustin Pop
    for tag in self.op.tags:
5813 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
5814 f27302fa Iustin Pop
    del_tags = frozenset(self.op.tags)
5815 f27302fa Iustin Pop
    cur_tags = self.target.GetTags()
5816 f27302fa Iustin Pop
    if not del_tags <= cur_tags:
5817 f27302fa Iustin Pop
      diff_tags = del_tags - cur_tags
5818 f27302fa Iustin Pop
      diff_names = ["'%s'" % tag for tag in diff_tags]
5819 f27302fa Iustin Pop
      diff_names.sort()
5820 f27302fa Iustin Pop
      raise errors.OpPrereqError("Tag(s) %s not found" %
5821 f27302fa Iustin Pop
                                 (",".join(diff_names)))
5822 5c947f38 Iustin Pop
5823 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
5824 5c947f38 Iustin Pop
    """Remove the tag from the object.
5825 5c947f38 Iustin Pop

5826 5c947f38 Iustin Pop
    """
5827 f27302fa Iustin Pop
    for tag in self.op.tags:
5828 f27302fa Iustin Pop
      self.target.RemoveTag(tag)
5829 5c947f38 Iustin Pop
    try:
5830 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
5831 5c947f38 Iustin Pop
    except errors.ConfigurationError:
5832 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
5833 3ecf6786 Iustin Pop
                                " config file and the operation has been"
5834 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
5835 06009e27 Iustin Pop
5836 0eed6e61 Guido Trotter
5837 06009e27 Iustin Pop
class LUTestDelay(NoHooksLU):
5838 06009e27 Iustin Pop
  """Sleep for a specified amount of time.
5839 06009e27 Iustin Pop

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

5843 06009e27 Iustin Pop
  """
5844 06009e27 Iustin Pop
  _OP_REQP = ["duration", "on_master", "on_nodes"]
5845 fbe9022f Guido Trotter
  REQ_BGL = False
5846 06009e27 Iustin Pop
5847 fbe9022f Guido Trotter
  def ExpandNames(self):
5848 fbe9022f Guido Trotter
    """Expand names and set required locks.
5849 06009e27 Iustin Pop

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

5852 06009e27 Iustin Pop
    """
5853 fbe9022f Guido Trotter
    self.needed_locks = {}
5854 06009e27 Iustin Pop
    if self.op.on_nodes:
5855 fbe9022f Guido Trotter
      # _GetWantedNodes can be used here, but is not always appropriate to use
5856 fbe9022f Guido Trotter
      # this way in ExpandNames. Check LogicalUnit.ExpandNames docstring for
5857 fbe9022f Guido Trotter
      # more information.
5858 06009e27 Iustin Pop
      self.op.on_nodes = _GetWantedNodes(self, self.op.on_nodes)
5859 fbe9022f Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = self.op.on_nodes
5860 fbe9022f Guido Trotter
5861 fbe9022f Guido Trotter
  def CheckPrereq(self):
5862 fbe9022f Guido Trotter
    """Check prerequisites.
5863 fbe9022f Guido Trotter

5864 fbe9022f Guido Trotter
    """
5865 06009e27 Iustin Pop
5866 06009e27 Iustin Pop
  def Exec(self, feedback_fn):
5867 06009e27 Iustin Pop
    """Do the actual sleep.
5868 06009e27 Iustin Pop

5869 06009e27 Iustin Pop
    """
5870 06009e27 Iustin Pop
    if self.op.on_master:
5871 06009e27 Iustin Pop
      if not utils.TestDelay(self.op.duration):
5872 06009e27 Iustin Pop
        raise errors.OpExecError("Error during master delay test")
5873 06009e27 Iustin Pop
    if self.op.on_nodes:
5874 72737a7f Iustin Pop
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
5875 06009e27 Iustin Pop
      if not result:
5876 06009e27 Iustin Pop
        raise errors.OpExecError("Complete failure from rpc call")
5877 06009e27 Iustin Pop
      for node, node_result in result.items():
5878 781de953 Iustin Pop
        node_result.Raise()
5879 781de953 Iustin Pop
        if not node_result.data:
5880 06009e27 Iustin Pop
          raise errors.OpExecError("Failure during rpc call to node %s,"
5881 781de953 Iustin Pop
                                   " result: %s" % (node, node_result.data))
5882 d61df03e Iustin Pop
5883 d61df03e Iustin Pop
5884 d1c2dd75 Iustin Pop
class IAllocator(object):
5885 d1c2dd75 Iustin Pop
  """IAllocator framework.
5886 d61df03e Iustin Pop

5887 d1c2dd75 Iustin Pop
  An IAllocator instance has three sets of attributes:
5888 d6a02168 Michael Hanselmann
    - cfg that is needed to query the cluster
5889 d1c2dd75 Iustin Pop
    - input data (all members of the _KEYS class attribute are required)
5890 d1c2dd75 Iustin Pop
    - four buffer attributes (in|out_data|text), that represent the
5891 d1c2dd75 Iustin Pop
      input (to the external script) in text and data structure format,
5892 d1c2dd75 Iustin Pop
      and the output from it, again in two formats
5893 d1c2dd75 Iustin Pop
    - the result variables from the script (success, info, nodes) for
5894 d1c2dd75 Iustin Pop
      easy usage
5895 d61df03e Iustin Pop

5896 d61df03e Iustin Pop
  """
5897 29859cb7 Iustin Pop
  _ALLO_KEYS = [
5898 d1c2dd75 Iustin Pop
    "mem_size", "disks", "disk_template",
5899 8cc7e742 Guido Trotter
    "os", "tags", "nics", "vcpus", "hypervisor",
5900 d1c2dd75 Iustin Pop
    ]
5901 29859cb7 Iustin Pop
  _RELO_KEYS = [
5902 29859cb7 Iustin Pop
    "relocate_from",
5903 29859cb7 Iustin Pop
    ]
5904 d1c2dd75 Iustin Pop
5905 72737a7f Iustin Pop
  def __init__(self, lu, mode, name, **kwargs):
5906 72737a7f Iustin Pop
    self.lu = lu
5907 d1c2dd75 Iustin Pop
    # init buffer variables
5908 d1c2dd75 Iustin Pop
    self.in_text = self.out_text = self.in_data = self.out_data = None
5909 d1c2dd75 Iustin Pop
    # init all input fields so that pylint is happy
5910 29859cb7 Iustin Pop
    self.mode = mode
5911 29859cb7 Iustin Pop
    self.name = name
5912 d1c2dd75 Iustin Pop
    self.mem_size = self.disks = self.disk_template = None
5913 d1c2dd75 Iustin Pop
    self.os = self.tags = self.nics = self.vcpus = None
5914 a0add446 Iustin Pop
    self.hypervisor = None
5915 29859cb7 Iustin Pop
    self.relocate_from = None
5916 27579978 Iustin Pop
    # computed fields
5917 27579978 Iustin Pop
    self.required_nodes = None
5918 d1c2dd75 Iustin Pop
    # init result fields
5919 d1c2dd75 Iustin Pop
    self.success = self.info = self.nodes = None
5920 29859cb7 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
5921 29859cb7 Iustin Pop
      keyset = self._ALLO_KEYS
5922 29859cb7 Iustin Pop
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
5923 29859cb7 Iustin Pop
      keyset = self._RELO_KEYS
5924 29859cb7 Iustin Pop
    else:
5925 29859cb7 Iustin Pop
      raise errors.ProgrammerError("Unknown mode '%s' passed to the"
5926 29859cb7 Iustin Pop
                                   " IAllocator" % self.mode)
5927 d1c2dd75 Iustin Pop
    for key in kwargs:
5928 29859cb7 Iustin Pop
      if key not in keyset:
5929 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Invalid input parameter '%s' to"
5930 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
5931 d1c2dd75 Iustin Pop
      setattr(self, key, kwargs[key])
5932 29859cb7 Iustin Pop
    for key in keyset:
5933 d1c2dd75 Iustin Pop
      if key not in kwargs:
5934 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Missing input parameter '%s' to"
5935 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
5936 d1c2dd75 Iustin Pop
    self._BuildInputData()
5937 d1c2dd75 Iustin Pop
5938 d1c2dd75 Iustin Pop
  def _ComputeClusterData(self):
5939 d1c2dd75 Iustin Pop
    """Compute the generic allocator input data.
5940 d1c2dd75 Iustin Pop

5941 d1c2dd75 Iustin Pop
    This is the data that is independent of the actual operation.
5942 d1c2dd75 Iustin Pop

5943 d1c2dd75 Iustin Pop
    """
5944 72737a7f Iustin Pop
    cfg = self.lu.cfg
5945 e69d05fd Iustin Pop
    cluster_info = cfg.GetClusterInfo()
5946 d1c2dd75 Iustin Pop
    # cluster data
5947 d1c2dd75 Iustin Pop
    data = {
5948 d1c2dd75 Iustin Pop
      "version": 1,
5949 72737a7f Iustin Pop
      "cluster_name": cfg.GetClusterName(),
5950 e69d05fd Iustin Pop
      "cluster_tags": list(cluster_info.GetTags()),
5951 e69d05fd Iustin Pop
      "enable_hypervisors": list(cluster_info.enabled_hypervisors),
5952 d1c2dd75 Iustin Pop
      # we don't have job IDs
5953 d61df03e Iustin Pop
      }
5954 b57e9819 Guido Trotter
    iinfo = cfg.GetAllInstancesInfo().values()
5955 b57e9819 Guido Trotter
    i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
5956 6286519f Iustin Pop
5957 d1c2dd75 Iustin Pop
    # node data
5958 d1c2dd75 Iustin Pop
    node_results = {}
5959 d1c2dd75 Iustin Pop
    node_list = cfg.GetNodeList()
5960 8cc7e742 Guido Trotter
5961 8cc7e742 Guido Trotter
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
5962 a0add446 Iustin Pop
      hypervisor_name = self.hypervisor
5963 8cc7e742 Guido Trotter
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
5964 a0add446 Iustin Pop
      hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
5965 8cc7e742 Guido Trotter
5966 72737a7f Iustin Pop
    node_data = self.lu.rpc.call_node_info(node_list, cfg.GetVGName(),
5967 a0add446 Iustin Pop
                                           hypervisor_name)
5968 18640d69 Guido Trotter
    node_iinfo = self.lu.rpc.call_all_instances_info(node_list,
5969 18640d69 Guido Trotter
                       cluster_info.enabled_hypervisors)
5970 d1c2dd75 Iustin Pop
    for nname in node_list:
5971 d1c2dd75 Iustin Pop
      ninfo = cfg.GetNodeInfo(nname)
5972 781de953 Iustin Pop
      node_data[nname].Raise()
5973 781de953 Iustin Pop
      if not isinstance(node_data[nname].data, dict):
5974 d1c2dd75 Iustin Pop
        raise errors.OpExecError("Can't get data for node %s" % nname)
5975 781de953 Iustin Pop
      remote_info = node_data[nname].data
5976 b2662e7f Iustin Pop
      for attr in ['memory_total', 'memory_free', 'memory_dom0',
5977 4337cf1b Iustin Pop
                   'vg_size', 'vg_free', 'cpu_total']:
5978 d1c2dd75 Iustin Pop
        if attr not in remote_info:
5979 d1c2dd75 Iustin Pop
          raise errors.OpExecError("Node '%s' didn't return attribute '%s'" %
5980 d1c2dd75 Iustin Pop
                                   (nname, attr))
5981 d1c2dd75 Iustin Pop
        try:
5982 b2662e7f Iustin Pop
          remote_info[attr] = int(remote_info[attr])
5983 d1c2dd75 Iustin Pop
        except ValueError, err:
5984 d1c2dd75 Iustin Pop
          raise errors.OpExecError("Node '%s' returned invalid value for '%s':"
5985 d1c2dd75 Iustin Pop
                                   " %s" % (nname, attr, str(err)))
5986 6286519f Iustin Pop
      # compute memory used by primary instances
5987 6286519f Iustin Pop
      i_p_mem = i_p_up_mem = 0
5988 338e51e8 Iustin Pop
      for iinfo, beinfo in i_list:
5989 6286519f Iustin Pop
        if iinfo.primary_node == nname:
5990 338e51e8 Iustin Pop
          i_p_mem += beinfo[constants.BE_MEMORY]
5991 18640d69 Guido Trotter
          if iinfo.name not in node_iinfo[nname]:
5992 18640d69 Guido Trotter
            i_used_mem = 0
5993 18640d69 Guido Trotter
          else:
5994 18640d69 Guido Trotter
            i_used_mem = int(node_iinfo[nname][iinfo.name]['memory'])
5995 18640d69 Guido Trotter
          i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
5996 18640d69 Guido Trotter
          remote_info['memory_free'] -= max(0, i_mem_diff)
5997 18640d69 Guido Trotter
5998 6286519f Iustin Pop
          if iinfo.status == "up":
5999 338e51e8 Iustin Pop
            i_p_up_mem += beinfo[constants.BE_MEMORY]
6000 6286519f Iustin Pop
6001 b2662e7f Iustin Pop
      # compute memory used by instances
6002 d1c2dd75 Iustin Pop
      pnr = {
6003 d1c2dd75 Iustin Pop
        "tags": list(ninfo.GetTags()),
6004 b2662e7f Iustin Pop
        "total_memory": remote_info['memory_total'],
6005 b2662e7f Iustin Pop
        "reserved_memory": remote_info['memory_dom0'],
6006 b2662e7f Iustin Pop
        "free_memory": remote_info['memory_free'],
6007 6286519f Iustin Pop
        "i_pri_memory": i_p_mem,
6008 6286519f Iustin Pop
        "i_pri_up_memory": i_p_up_mem,
6009 b2662e7f Iustin Pop
        "total_disk": remote_info['vg_size'],
6010 b2662e7f Iustin Pop
        "free_disk": remote_info['vg_free'],
6011 d1c2dd75 Iustin Pop
        "primary_ip": ninfo.primary_ip,
6012 d1c2dd75 Iustin Pop
        "secondary_ip": ninfo.secondary_ip,
6013 4337cf1b Iustin Pop
        "total_cpus": remote_info['cpu_total'],
6014 fc0fe88c Iustin Pop
        "offline": ninfo.offline,
6015 d1c2dd75 Iustin Pop
        }
6016 d1c2dd75 Iustin Pop
      node_results[nname] = pnr
6017 d1c2dd75 Iustin Pop
    data["nodes"] = node_results
6018 d1c2dd75 Iustin Pop
6019 d1c2dd75 Iustin Pop
    # instance data
6020 d1c2dd75 Iustin Pop
    instance_data = {}
6021 338e51e8 Iustin Pop
    for iinfo, beinfo in i_list:
6022 d1c2dd75 Iustin Pop
      nic_data = [{"mac": n.mac, "ip": n.ip, "bridge": n.bridge}
6023 d1c2dd75 Iustin Pop
                  for n in iinfo.nics]
6024 d1c2dd75 Iustin Pop
      pir = {
6025 d1c2dd75 Iustin Pop
        "tags": list(iinfo.GetTags()),
6026 d1c2dd75 Iustin Pop
        "should_run": iinfo.status == "up",
6027 338e51e8 Iustin Pop
        "vcpus": beinfo[constants.BE_VCPUS],
6028 338e51e8 Iustin Pop
        "memory": beinfo[constants.BE_MEMORY],
6029 d1c2dd75 Iustin Pop
        "os": iinfo.os,
6030 d1c2dd75 Iustin Pop
        "nodes": [iinfo.primary_node] + list(iinfo.secondary_nodes),
6031 d1c2dd75 Iustin Pop
        "nics": nic_data,
6032 d1c2dd75 Iustin Pop
        "disks": [{"size": dsk.size, "mode": "w"} for dsk in iinfo.disks],
6033 d1c2dd75 Iustin Pop
        "disk_template": iinfo.disk_template,
6034 e69d05fd Iustin Pop
        "hypervisor": iinfo.hypervisor,
6035 d1c2dd75 Iustin Pop
        }
6036 768f0a80 Iustin Pop
      instance_data[iinfo.name] = pir
6037 d61df03e Iustin Pop
6038 d1c2dd75 Iustin Pop
    data["instances"] = instance_data
6039 d61df03e Iustin Pop
6040 d1c2dd75 Iustin Pop
    self.in_data = data
6041 d61df03e Iustin Pop
6042 d1c2dd75 Iustin Pop
  def _AddNewInstance(self):
6043 d1c2dd75 Iustin Pop
    """Add new instance data to allocator structure.
6044 d61df03e Iustin Pop

6045 d1c2dd75 Iustin Pop
    This in combination with _AllocatorGetClusterData will create the
6046 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6047 d61df03e Iustin Pop

6048 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6049 d1c2dd75 Iustin Pop
    done.
6050 d61df03e Iustin Pop

6051 d1c2dd75 Iustin Pop
    """
6052 d1c2dd75 Iustin Pop
    data = self.in_data
6053 d1c2dd75 Iustin Pop
    if len(self.disks) != 2:
6054 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Only two-disk configurations supported")
6055 d1c2dd75 Iustin Pop
6056 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(self.disk_template, self.disks)
6057 d1c2dd75 Iustin Pop
6058 27579978 Iustin Pop
    if self.disk_template in constants.DTS_NET_MIRROR:
6059 27579978 Iustin Pop
      self.required_nodes = 2
6060 27579978 Iustin Pop
    else:
6061 27579978 Iustin Pop
      self.required_nodes = 1
6062 d1c2dd75 Iustin Pop
    request = {
6063 d1c2dd75 Iustin Pop
      "type": "allocate",
6064 d1c2dd75 Iustin Pop
      "name": self.name,
6065 d1c2dd75 Iustin Pop
      "disk_template": self.disk_template,
6066 d1c2dd75 Iustin Pop
      "tags": self.tags,
6067 d1c2dd75 Iustin Pop
      "os": self.os,
6068 d1c2dd75 Iustin Pop
      "vcpus": self.vcpus,
6069 d1c2dd75 Iustin Pop
      "memory": self.mem_size,
6070 d1c2dd75 Iustin Pop
      "disks": self.disks,
6071 d1c2dd75 Iustin Pop
      "disk_space_total": disk_space,
6072 d1c2dd75 Iustin Pop
      "nics": self.nics,
6073 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
6074 d1c2dd75 Iustin Pop
      }
6075 d1c2dd75 Iustin Pop
    data["request"] = request
6076 298fe380 Iustin Pop
6077 d1c2dd75 Iustin Pop
  def _AddRelocateInstance(self):
6078 d1c2dd75 Iustin Pop
    """Add relocate instance data to allocator structure.
6079 298fe380 Iustin Pop

6080 d1c2dd75 Iustin Pop
    This in combination with _IAllocatorGetClusterData will create the
6081 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6082 d61df03e Iustin Pop

6083 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6084 d1c2dd75 Iustin Pop
    done.
6085 d61df03e Iustin Pop

6086 d1c2dd75 Iustin Pop
    """
6087 72737a7f Iustin Pop
    instance = self.lu.cfg.GetInstanceInfo(self.name)
6088 27579978 Iustin Pop
    if instance is None:
6089 27579978 Iustin Pop
      raise errors.ProgrammerError("Unknown instance '%s' passed to"
6090 27579978 Iustin Pop
                                   " IAllocator" % self.name)
6091 27579978 Iustin Pop
6092 27579978 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
6093 27579978 Iustin Pop
      raise errors.OpPrereqError("Can't relocate non-mirrored instances")
6094 27579978 Iustin Pop
6095 2a139bb0 Iustin Pop
    if len(instance.secondary_nodes) != 1:
6096 2a139bb0 Iustin Pop
      raise errors.OpPrereqError("Instance has not exactly one secondary node")
6097 2a139bb0 Iustin Pop
6098 27579978 Iustin Pop
    self.required_nodes = 1
6099 dafc7302 Guido Trotter
    disk_sizes = [{'size': disk.size} for disk in instance.disks]
6100 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(instance.disk_template, disk_sizes)
6101 27579978 Iustin Pop
6102 d1c2dd75 Iustin Pop
    request = {
6103 2a139bb0 Iustin Pop
      "type": "relocate",
6104 d1c2dd75 Iustin Pop
      "name": self.name,
6105 27579978 Iustin Pop
      "disk_space_total": disk_space,
6106 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
6107 29859cb7 Iustin Pop
      "relocate_from": self.relocate_from,
6108 d1c2dd75 Iustin Pop
      }
6109 27579978 Iustin Pop
    self.in_data["request"] = request
6110 d61df03e Iustin Pop
6111 d1c2dd75 Iustin Pop
  def _BuildInputData(self):
6112 d1c2dd75 Iustin Pop
    """Build input data structures.
6113 d61df03e Iustin Pop

6114 d1c2dd75 Iustin Pop
    """
6115 d1c2dd75 Iustin Pop
    self._ComputeClusterData()
6116 d61df03e Iustin Pop
6117 d1c2dd75 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6118 d1c2dd75 Iustin Pop
      self._AddNewInstance()
6119 d1c2dd75 Iustin Pop
    else:
6120 d1c2dd75 Iustin Pop
      self._AddRelocateInstance()
6121 d61df03e Iustin Pop
6122 d1c2dd75 Iustin Pop
    self.in_text = serializer.Dump(self.in_data)
6123 d61df03e Iustin Pop
6124 72737a7f Iustin Pop
  def Run(self, name, validate=True, call_fn=None):
6125 d1c2dd75 Iustin Pop
    """Run an instance allocator and return the results.
6126 298fe380 Iustin Pop

6127 d1c2dd75 Iustin Pop
    """
6128 72737a7f Iustin Pop
    if call_fn is None:
6129 72737a7f Iustin Pop
      call_fn = self.lu.rpc.call_iallocator_runner
6130 d1c2dd75 Iustin Pop
    data = self.in_text
6131 298fe380 Iustin Pop
6132 72737a7f Iustin Pop
    result = call_fn(self.lu.cfg.GetMasterNode(), name, self.in_text)
6133 781de953 Iustin Pop
    result.Raise()
6134 298fe380 Iustin Pop
6135 781de953 Iustin Pop
    if not isinstance(result.data, (list, tuple)) or len(result.data) != 4:
6136 8d528b7c Iustin Pop
      raise errors.OpExecError("Invalid result from master iallocator runner")
6137 8d528b7c Iustin Pop
6138 781de953 Iustin Pop
    rcode, stdout, stderr, fail = result.data
6139 8d528b7c Iustin Pop
6140 8d528b7c Iustin Pop
    if rcode == constants.IARUN_NOTFOUND:
6141 8d528b7c Iustin Pop
      raise errors.OpExecError("Can't find allocator '%s'" % name)
6142 8d528b7c Iustin Pop
    elif rcode == constants.IARUN_FAILURE:
6143 38206f3c Iustin Pop
      raise errors.OpExecError("Instance allocator call failed: %s,"
6144 38206f3c Iustin Pop
                               " output: %s" % (fail, stdout+stderr))
6145 8d528b7c Iustin Pop
    self.out_text = stdout
6146 d1c2dd75 Iustin Pop
    if validate:
6147 d1c2dd75 Iustin Pop
      self._ValidateResult()
6148 298fe380 Iustin Pop
6149 d1c2dd75 Iustin Pop
  def _ValidateResult(self):
6150 d1c2dd75 Iustin Pop
    """Process the allocator results.
6151 538475ca Iustin Pop

6152 d1c2dd75 Iustin Pop
    This will process and if successful save the result in
6153 d1c2dd75 Iustin Pop
    self.out_data and the other parameters.
6154 538475ca Iustin Pop

6155 d1c2dd75 Iustin Pop
    """
6156 d1c2dd75 Iustin Pop
    try:
6157 d1c2dd75 Iustin Pop
      rdict = serializer.Load(self.out_text)
6158 d1c2dd75 Iustin Pop
    except Exception, err:
6159 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: %s" % str(err))
6160 d1c2dd75 Iustin Pop
6161 d1c2dd75 Iustin Pop
    if not isinstance(rdict, dict):
6162 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: not a dict")
6163 538475ca Iustin Pop
6164 d1c2dd75 Iustin Pop
    for key in "success", "info", "nodes":
6165 d1c2dd75 Iustin Pop
      if key not in rdict:
6166 d1c2dd75 Iustin Pop
        raise errors.OpExecError("Can't parse iallocator results:"
6167 d1c2dd75 Iustin Pop
                                 " missing key '%s'" % key)
6168 d1c2dd75 Iustin Pop
      setattr(self, key, rdict[key])
6169 538475ca Iustin Pop
6170 d1c2dd75 Iustin Pop
    if not isinstance(rdict["nodes"], list):
6171 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: 'nodes' key"
6172 d1c2dd75 Iustin Pop
                               " is not a list")
6173 d1c2dd75 Iustin Pop
    self.out_data = rdict
6174 538475ca Iustin Pop
6175 538475ca Iustin Pop
6176 d61df03e Iustin Pop
class LUTestAllocator(NoHooksLU):
6177 d61df03e Iustin Pop
  """Run allocator tests.
6178 d61df03e Iustin Pop

6179 d61df03e Iustin Pop
  This LU runs the allocator tests
6180 d61df03e Iustin Pop

6181 d61df03e Iustin Pop
  """
6182 d61df03e Iustin Pop
  _OP_REQP = ["direction", "mode", "name"]
6183 d61df03e Iustin Pop
6184 d61df03e Iustin Pop
  def CheckPrereq(self):
6185 d61df03e Iustin Pop
    """Check prerequisites.
6186 d61df03e Iustin Pop

6187 d61df03e Iustin Pop
    This checks the opcode parameters depending on the director and mode test.
6188 d61df03e Iustin Pop

6189 d61df03e Iustin Pop
    """
6190 298fe380 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
6191 d61df03e Iustin Pop
      for attr in ["name", "mem_size", "disks", "disk_template",
6192 d61df03e Iustin Pop
                   "os", "tags", "nics", "vcpus"]:
6193 d61df03e Iustin Pop
        if not hasattr(self.op, attr):
6194 d61df03e Iustin Pop
          raise errors.OpPrereqError("Missing attribute '%s' on opcode input" %
6195 d61df03e Iustin Pop
                                     attr)
6196 d61df03e Iustin Pop
      iname = self.cfg.ExpandInstanceName(self.op.name)
6197 d61df03e Iustin Pop
      if iname is not None:
6198 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' already in the cluster" %
6199 d61df03e Iustin Pop
                                   iname)
6200 d61df03e Iustin Pop
      if not isinstance(self.op.nics, list):
6201 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'nics'")
6202 d61df03e Iustin Pop
      for row in self.op.nics:
6203 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
6204 d61df03e Iustin Pop
            "mac" not in row or
6205 d61df03e Iustin Pop
            "ip" not in row or
6206 d61df03e Iustin Pop
            "bridge" not in row):
6207 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
6208 d61df03e Iustin Pop
                                     " 'nics' parameter")
6209 d61df03e Iustin Pop
      if not isinstance(self.op.disks, list):
6210 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'disks'")
6211 298fe380 Iustin Pop
      if len(self.op.disks) != 2:
6212 298fe380 Iustin Pop
        raise errors.OpPrereqError("Only two-disk configurations supported")
6213 d61df03e Iustin Pop
      for row in self.op.disks:
6214 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
6215 d61df03e Iustin Pop
            "size" not in row or
6216 d61df03e Iustin Pop
            not isinstance(row["size"], int) or
6217 d61df03e Iustin Pop
            "mode" not in row or
6218 d61df03e Iustin Pop
            row["mode"] not in ['r', 'w']):
6219 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
6220 d61df03e Iustin Pop
                                     " 'disks' parameter")
6221 8cc7e742 Guido Trotter
      if self.op.hypervisor is None:
6222 8cc7e742 Guido Trotter
        self.op.hypervisor = self.cfg.GetHypervisorType()
6223 298fe380 Iustin Pop
    elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
6224 d61df03e Iustin Pop
      if not hasattr(self.op, "name"):
6225 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing attribute 'name' on opcode input")
6226 d61df03e Iustin Pop
      fname = self.cfg.ExpandInstanceName(self.op.name)
6227 d61df03e Iustin Pop
      if fname is None:
6228 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' not found for relocation" %
6229 d61df03e Iustin Pop
                                   self.op.name)
6230 d61df03e Iustin Pop
      self.op.name = fname
6231 29859cb7 Iustin Pop
      self.relocate_from = self.cfg.GetInstanceInfo(fname).secondary_nodes
6232 d61df03e Iustin Pop
    else:
6233 d61df03e Iustin Pop
      raise errors.OpPrereqError("Invalid test allocator mode '%s'" %
6234 d61df03e Iustin Pop
                                 self.op.mode)
6235 d61df03e Iustin Pop
6236 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_OUT:
6237 298fe380 Iustin Pop
      if not hasattr(self.op, "allocator") or self.op.allocator is None:
6238 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing allocator name")
6239 298fe380 Iustin Pop
    elif self.op.direction != constants.IALLOCATOR_DIR_IN:
6240 d61df03e Iustin Pop
      raise errors.OpPrereqError("Wrong allocator test '%s'" %
6241 d61df03e Iustin Pop
                                 self.op.direction)
6242 d61df03e Iustin Pop
6243 d61df03e Iustin Pop
  def Exec(self, feedback_fn):
6244 d61df03e Iustin Pop
    """Run the allocator test.
6245 d61df03e Iustin Pop

6246 d61df03e Iustin Pop
    """
6247 29859cb7 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
6248 72737a7f Iustin Pop
      ial = IAllocator(self,
6249 29859cb7 Iustin Pop
                       mode=self.op.mode,
6250 29859cb7 Iustin Pop
                       name=self.op.name,
6251 29859cb7 Iustin Pop
                       mem_size=self.op.mem_size,
6252 29859cb7 Iustin Pop
                       disks=self.op.disks,
6253 29859cb7 Iustin Pop
                       disk_template=self.op.disk_template,
6254 29859cb7 Iustin Pop
                       os=self.op.os,
6255 29859cb7 Iustin Pop
                       tags=self.op.tags,
6256 29859cb7 Iustin Pop
                       nics=self.op.nics,
6257 29859cb7 Iustin Pop
                       vcpus=self.op.vcpus,
6258 8cc7e742 Guido Trotter
                       hypervisor=self.op.hypervisor,
6259 29859cb7 Iustin Pop
                       )
6260 29859cb7 Iustin Pop
    else:
6261 72737a7f Iustin Pop
      ial = IAllocator(self,
6262 29859cb7 Iustin Pop
                       mode=self.op.mode,
6263 29859cb7 Iustin Pop
                       name=self.op.name,
6264 29859cb7 Iustin Pop
                       relocate_from=list(self.relocate_from),
6265 29859cb7 Iustin Pop
                       )
6266 d61df03e Iustin Pop
6267 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_IN:
6268 d1c2dd75 Iustin Pop
      result = ial.in_text
6269 298fe380 Iustin Pop
    else:
6270 d1c2dd75 Iustin Pop
      ial.Run(self.op.allocator, validate=False)
6271 d1c2dd75 Iustin Pop
      result = ial.out_text
6272 298fe380 Iustin Pop
    return result