Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 0623d351

History | View | Annotate | Download (253.2 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 time
29 a8083063 Iustin Pop
import tempfile
30 a8083063 Iustin Pop
import re
31 a8083063 Iustin Pop
import platform
32 ffa1c0dc Iustin Pop
import logging
33 74409b12 Iustin Pop
import copy
34 4b7735f9 Iustin Pop
import random
35 a8083063 Iustin Pop
36 a8083063 Iustin Pop
from ganeti import ssh
37 a8083063 Iustin Pop
from ganeti import utils
38 a8083063 Iustin Pop
from ganeti import errors
39 a8083063 Iustin Pop
from ganeti import hypervisor
40 6048c986 Guido Trotter
from ganeti import locking
41 a8083063 Iustin Pop
from ganeti import constants
42 a8083063 Iustin Pop
from ganeti import objects
43 a8083063 Iustin Pop
from ganeti import opcodes
44 8d14b30d Iustin Pop
from ganeti import serializer
45 112f18a5 Iustin Pop
from ganeti import ssconf
46 d61df03e Iustin Pop
47 d61df03e Iustin Pop
48 a8083063 Iustin Pop
class LogicalUnit(object):
49 396e1b78 Michael Hanselmann
  """Logical Unit base class.
50 a8083063 Iustin Pop

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

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

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

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

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

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

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

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

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

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

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

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

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

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

149 e4376078 Iustin Pop
    Examples::
150 e4376078 Iustin Pop

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

485 396e1b78 Michael Hanselmann
  """
486 0d68c45d Iustin Pop
  if status:
487 0d68c45d Iustin Pop
    str_status = "up"
488 0d68c45d Iustin Pop
  else:
489 0d68c45d Iustin Pop
    str_status = "down"
490 396e1b78 Michael Hanselmann
  env = {
491 0e137c28 Iustin Pop
    "OP_TARGET": name,
492 396e1b78 Michael Hanselmann
    "INSTANCE_NAME": name,
493 396e1b78 Michael Hanselmann
    "INSTANCE_PRIMARY": primary_node,
494 396e1b78 Michael Hanselmann
    "INSTANCE_SECONDARIES": " ".join(secondary_nodes),
495 ecb215b5 Michael Hanselmann
    "INSTANCE_OS_TYPE": os_type,
496 0d68c45d Iustin Pop
    "INSTANCE_STATUS": str_status,
497 396e1b78 Michael Hanselmann
    "INSTANCE_MEMORY": memory,
498 396e1b78 Michael Hanselmann
    "INSTANCE_VCPUS": vcpus,
499 2c2690c9 Iustin Pop
    "INSTANCE_DISK_TEMPLATE": disk_template,
500 396e1b78 Michael Hanselmann
  }
501 396e1b78 Michael Hanselmann
502 396e1b78 Michael Hanselmann
  if nics:
503 396e1b78 Michael Hanselmann
    nic_count = len(nics)
504 62f0dd02 Guido Trotter
    for idx, (ip, mac, mode, link) in enumerate(nics):
505 396e1b78 Michael Hanselmann
      if ip is None:
506 396e1b78 Michael Hanselmann
        ip = ""
507 396e1b78 Michael Hanselmann
      env["INSTANCE_NIC%d_IP" % idx] = ip
508 2c2690c9 Iustin Pop
      env["INSTANCE_NIC%d_MAC" % idx] = mac
509 62f0dd02 Guido Trotter
      env["INSTANCE_NIC%d_MODE" % idx] = mode
510 62f0dd02 Guido Trotter
      env["INSTANCE_NIC%d_LINK" % idx] = link
511 62f0dd02 Guido Trotter
      if mode == constants.NIC_MODE_BRIDGED:
512 62f0dd02 Guido Trotter
        env["INSTANCE_NIC%d_BRIDGE" % idx] = link
513 396e1b78 Michael Hanselmann
  else:
514 396e1b78 Michael Hanselmann
    nic_count = 0
515 396e1b78 Michael Hanselmann
516 396e1b78 Michael Hanselmann
  env["INSTANCE_NIC_COUNT"] = nic_count
517 396e1b78 Michael Hanselmann
518 2c2690c9 Iustin Pop
  if disks:
519 2c2690c9 Iustin Pop
    disk_count = len(disks)
520 2c2690c9 Iustin Pop
    for idx, (size, mode) in enumerate(disks):
521 2c2690c9 Iustin Pop
      env["INSTANCE_DISK%d_SIZE" % idx] = size
522 2c2690c9 Iustin Pop
      env["INSTANCE_DISK%d_MODE" % idx] = mode
523 2c2690c9 Iustin Pop
  else:
524 2c2690c9 Iustin Pop
    disk_count = 0
525 2c2690c9 Iustin Pop
526 2c2690c9 Iustin Pop
  env["INSTANCE_DISK_COUNT"] = disk_count
527 2c2690c9 Iustin Pop
528 396e1b78 Michael Hanselmann
  return env
529 396e1b78 Michael Hanselmann
530 62f0dd02 Guido Trotter
def _PreBuildNICHooksList(lu, nics):
531 62f0dd02 Guido Trotter
  """Build a list of nic information tuples.
532 62f0dd02 Guido Trotter

533 62f0dd02 Guido Trotter
  This list is suitable to be passed to _BuildInstanceHookEnv.
534 62f0dd02 Guido Trotter

535 62f0dd02 Guido Trotter
  @type lu:  L{LogicalUnit}
536 62f0dd02 Guido Trotter
  @param lu: the logical unit on whose behalf we execute
537 62f0dd02 Guido Trotter
  @type nics: list of L{objects.NIC}
538 62f0dd02 Guido Trotter
  @param nics: list of nics to convert to hooks tuples
539 62f0dd02 Guido Trotter

540 62f0dd02 Guido Trotter
  """
541 62f0dd02 Guido Trotter
  hooks_nics = []
542 62f0dd02 Guido Trotter
  c_nicparams = lu.cfg.GetClusterInfo().nicparams[constants.PP_DEFAULT]
543 62f0dd02 Guido Trotter
  for nic in nics:
544 62f0dd02 Guido Trotter
    ip = nic.ip
545 62f0dd02 Guido Trotter
    mac = nic.mac
546 62f0dd02 Guido Trotter
    filled_params = objects.FillDict(c_nicparams, nic.nicparams)
547 62f0dd02 Guido Trotter
    mode = filled_params[constants.NIC_MODE]
548 62f0dd02 Guido Trotter
    link = filled_params[constants.NIC_LINK]
549 62f0dd02 Guido Trotter
    hooks_nics.append((ip, mac, mode, link))
550 62f0dd02 Guido Trotter
  return hooks_nics
551 396e1b78 Michael Hanselmann
552 338e51e8 Iustin Pop
def _BuildInstanceHookEnvByObject(lu, instance, override=None):
553 ecb215b5 Michael Hanselmann
  """Builds instance related env variables for hooks from an object.
554 ecb215b5 Michael Hanselmann

555 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
556 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
557 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
558 e4376078 Iustin Pop
  @param instance: the instance for which we should build the
559 e4376078 Iustin Pop
      environment
560 e4376078 Iustin Pop
  @type override: dict
561 e4376078 Iustin Pop
  @param override: dictionary with key/values that will override
562 e4376078 Iustin Pop
      our values
563 e4376078 Iustin Pop
  @rtype: dict
564 e4376078 Iustin Pop
  @return: the hook environment dictionary
565 e4376078 Iustin Pop

566 ecb215b5 Michael Hanselmann
  """
567 338e51e8 Iustin Pop
  bep = lu.cfg.GetClusterInfo().FillBE(instance)
568 396e1b78 Michael Hanselmann
  args = {
569 396e1b78 Michael Hanselmann
    'name': instance.name,
570 396e1b78 Michael Hanselmann
    'primary_node': instance.primary_node,
571 396e1b78 Michael Hanselmann
    'secondary_nodes': instance.secondary_nodes,
572 ecb215b5 Michael Hanselmann
    'os_type': instance.os,
573 0d68c45d Iustin Pop
    'status': instance.admin_up,
574 338e51e8 Iustin Pop
    'memory': bep[constants.BE_MEMORY],
575 338e51e8 Iustin Pop
    'vcpus': bep[constants.BE_VCPUS],
576 62f0dd02 Guido Trotter
    'nics': _PreBuildNICHooksList(lu, instance.nics),
577 2c2690c9 Iustin Pop
    'disk_template': instance.disk_template,
578 2c2690c9 Iustin Pop
    'disks': [(disk.size, disk.mode) for disk in instance.disks],
579 396e1b78 Michael Hanselmann
  }
580 396e1b78 Michael Hanselmann
  if override:
581 396e1b78 Michael Hanselmann
    args.update(override)
582 396e1b78 Michael Hanselmann
  return _BuildInstanceHookEnv(**args)
583 396e1b78 Michael Hanselmann
584 396e1b78 Michael Hanselmann
585 ec0292f1 Iustin Pop
def _AdjustCandidatePool(lu):
586 ec0292f1 Iustin Pop
  """Adjust the candidate pool after node operations.
587 ec0292f1 Iustin Pop

588 ec0292f1 Iustin Pop
  """
589 ec0292f1 Iustin Pop
  mod_list = lu.cfg.MaintainCandidatePool()
590 ec0292f1 Iustin Pop
  if mod_list:
591 ec0292f1 Iustin Pop
    lu.LogInfo("Promoted nodes to master candidate role: %s",
592 ee513a66 Iustin Pop
               ", ".join(node.name for node in mod_list))
593 ec0292f1 Iustin Pop
    for name in mod_list:
594 ec0292f1 Iustin Pop
      lu.context.ReaddNode(name)
595 ec0292f1 Iustin Pop
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
596 ec0292f1 Iustin Pop
  if mc_now > mc_max:
597 ec0292f1 Iustin Pop
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
598 ec0292f1 Iustin Pop
               (mc_now, mc_max))
599 ec0292f1 Iustin Pop
600 ec0292f1 Iustin Pop
601 b165e77e Guido Trotter
def _CheckNicsBridgesExist(lu, target_nics, target_node,
602 b165e77e Guido Trotter
                               profile=constants.PP_DEFAULT):
603 b165e77e Guido Trotter
  """Check that the brigdes needed by a list of nics exist.
604 b165e77e Guido Trotter

605 b165e77e Guido Trotter
  """
606 b165e77e Guido Trotter
  c_nicparams = lu.cfg.GetClusterInfo().nicparams[profile]
607 b165e77e Guido Trotter
  paramslist = [objects.FillDict(c_nicparams, nic.nicparams)
608 b165e77e Guido Trotter
                for nic in target_nics]
609 b165e77e Guido Trotter
  brlist = [params[constants.NIC_LINK] for params in paramslist
610 b165e77e Guido Trotter
            if params[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED]
611 b165e77e Guido Trotter
  if brlist:
612 b165e77e Guido Trotter
    result = lu.rpc.call_bridges_exist(target_node, brlist)
613 35c0c8da Iustin Pop
    msg = result.RemoteFailMsg()
614 35c0c8da Iustin Pop
    if msg:
615 35c0c8da Iustin Pop
      raise errors.OpPrereqError("Error checking bridges on destination node"
616 35c0c8da Iustin Pop
                                 " '%s': %s" % (target_node, msg))
617 b165e77e Guido Trotter
618 b165e77e Guido Trotter
619 b165e77e Guido Trotter
def _CheckInstanceBridgesExist(lu, instance, node=None):
620 bf6929a2 Alexander Schreiber
  """Check that the brigdes needed by an instance exist.
621 bf6929a2 Alexander Schreiber

622 bf6929a2 Alexander Schreiber
  """
623 b165e77e Guido Trotter
  if node is None:
624 b165e77e Guido Trotter
    node=instance.primary_node
625 b165e77e Guido Trotter
  _CheckNicsBridgesExist(lu, instance.nics, node)
626 bf6929a2 Alexander Schreiber
627 bf6929a2 Alexander Schreiber
628 a8083063 Iustin Pop
class LUDestroyCluster(NoHooksLU):
629 a8083063 Iustin Pop
  """Logical unit for destroying the cluster.
630 a8083063 Iustin Pop

631 a8083063 Iustin Pop
  """
632 a8083063 Iustin Pop
  _OP_REQP = []
633 a8083063 Iustin Pop
634 a8083063 Iustin Pop
  def CheckPrereq(self):
635 a8083063 Iustin Pop
    """Check prerequisites.
636 a8083063 Iustin Pop

637 a8083063 Iustin Pop
    This checks whether the cluster is empty.
638 a8083063 Iustin Pop

639 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
640 a8083063 Iustin Pop

641 a8083063 Iustin Pop
    """
642 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
643 a8083063 Iustin Pop
644 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
645 db915bd1 Michael Hanselmann
    if len(nodelist) != 1 or nodelist[0] != master:
646 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d node(s) in"
647 3ecf6786 Iustin Pop
                                 " this cluster." % (len(nodelist) - 1))
648 db915bd1 Michael Hanselmann
    instancelist = self.cfg.GetInstanceList()
649 db915bd1 Michael Hanselmann
    if instancelist:
650 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d instance(s) in"
651 3ecf6786 Iustin Pop
                                 " this cluster." % len(instancelist))
652 a8083063 Iustin Pop
653 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
654 a8083063 Iustin Pop
    """Destroys the cluster.
655 a8083063 Iustin Pop

656 a8083063 Iustin Pop
    """
657 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
658 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
659 6c00d19a Iustin Pop
    msg = result.RemoteFailMsg()
660 6c00d19a Iustin Pop
    if msg:
661 6c00d19a Iustin Pop
      raise errors.OpExecError("Could not disable the master role: %s" % msg)
662 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
663 70d9e3d8 Iustin Pop
    utils.CreateBackup(priv_key)
664 70d9e3d8 Iustin Pop
    utils.CreateBackup(pub_key)
665 140aa4a8 Iustin Pop
    return master
666 a8083063 Iustin Pop
667 a8083063 Iustin Pop
668 d8fff41c Guido Trotter
class LUVerifyCluster(LogicalUnit):
669 a8083063 Iustin Pop
  """Verifies the cluster status.
670 a8083063 Iustin Pop

671 a8083063 Iustin Pop
  """
672 d8fff41c Guido Trotter
  HPATH = "cluster-verify"
673 d8fff41c Guido Trotter
  HTYPE = constants.HTYPE_CLUSTER
674 e54c4c5e Guido Trotter
  _OP_REQP = ["skip_checks"]
675 d4b9d97f Guido Trotter
  REQ_BGL = False
676 d4b9d97f Guido Trotter
677 d4b9d97f Guido Trotter
  def ExpandNames(self):
678 d4b9d97f Guido Trotter
    self.needed_locks = {
679 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
680 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
681 d4b9d97f Guido Trotter
    }
682 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
683 a8083063 Iustin Pop
684 25361b9a Iustin Pop
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
685 6d2e83d5 Iustin Pop
                  node_result, feedback_fn, master_files,
686 cc9e1230 Guido Trotter
                  drbd_map, vg_name):
687 a8083063 Iustin Pop
    """Run multiple tests against a node.
688 a8083063 Iustin Pop

689 112f18a5 Iustin Pop
    Test list:
690 e4376078 Iustin Pop

691 a8083063 Iustin Pop
      - compares ganeti version
692 a8083063 Iustin Pop
      - checks vg existance and size > 20G
693 a8083063 Iustin Pop
      - checks config file checksum
694 a8083063 Iustin Pop
      - checks ssh to other nodes
695 a8083063 Iustin Pop

696 112f18a5 Iustin Pop
    @type nodeinfo: L{objects.Node}
697 112f18a5 Iustin Pop
    @param nodeinfo: the node to check
698 e4376078 Iustin Pop
    @param file_list: required list of files
699 e4376078 Iustin Pop
    @param local_cksum: dictionary of local files and their checksums
700 e4376078 Iustin Pop
    @param node_result: the results from the node
701 e4376078 Iustin Pop
    @param feedback_fn: function used to accumulate results
702 112f18a5 Iustin Pop
    @param master_files: list of files that only masters should have
703 6d2e83d5 Iustin Pop
    @param drbd_map: the useddrbd minors for this node, in
704 6d2e83d5 Iustin Pop
        form of minor: (instance, must_exist) which correspond to instances
705 6d2e83d5 Iustin Pop
        and their running status
706 cc9e1230 Guido Trotter
    @param vg_name: Ganeti Volume Group (result of self.cfg.GetVGName())
707 098c0958 Michael Hanselmann

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

836 a8083063 Iustin Pop
    This function checks to see if the required block devices are
837 a8083063 Iustin Pop
    available on the instance's node.
838 a8083063 Iustin Pop

839 a8083063 Iustin Pop
    """
840 a8083063 Iustin Pop
    bad = False
841 a8083063 Iustin Pop
842 a8083063 Iustin Pop
    node_current = instanceconfig.primary_node
843 a8083063 Iustin Pop
844 a8083063 Iustin Pop
    node_vol_should = {}
845 a8083063 Iustin Pop
    instanceconfig.MapLVsByNode(node_vol_should)
846 a8083063 Iustin Pop
847 a8083063 Iustin Pop
    for node in node_vol_should:
848 0a66c968 Iustin Pop
      if node in n_offline:
849 0a66c968 Iustin Pop
        # ignore missing volumes on offline nodes
850 0a66c968 Iustin Pop
        continue
851 a8083063 Iustin Pop
      for volume in node_vol_should[node]:
852 a8083063 Iustin Pop
        if node not in node_vol_is or volume not in node_vol_is[node]:
853 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s missing on node %s" %
854 a8083063 Iustin Pop
                          (volume, node))
855 a8083063 Iustin Pop
          bad = True
856 a8083063 Iustin Pop
857 0d68c45d Iustin Pop
    if instanceconfig.admin_up:
858 0a66c968 Iustin Pop
      if ((node_current not in node_instance or
859 0a66c968 Iustin Pop
          not instance in node_instance[node_current]) and
860 0a66c968 Iustin Pop
          node_current not in n_offline):
861 a8083063 Iustin Pop
        feedback_fn("  - ERROR: instance %s not running on node %s" %
862 a8083063 Iustin Pop
                        (instance, node_current))
863 a8083063 Iustin Pop
        bad = True
864 a8083063 Iustin Pop
865 a8083063 Iustin Pop
    for node in node_instance:
866 a8083063 Iustin Pop
      if (not node == node_current):
867 a8083063 Iustin Pop
        if instance in node_instance[node]:
868 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s should not run on node %s" %
869 a8083063 Iustin Pop
                          (instance, node))
870 a8083063 Iustin Pop
          bad = True
871 a8083063 Iustin Pop
872 6a438c98 Michael Hanselmann
    return bad
873 a8083063 Iustin Pop
874 a8083063 Iustin Pop
  def _VerifyOrphanVolumes(self, node_vol_should, node_vol_is, feedback_fn):
875 a8083063 Iustin Pop
    """Verify if there are any unknown volumes in the cluster.
876 a8083063 Iustin Pop

877 a8083063 Iustin Pop
    The .os, .swap and backup volumes are ignored. All other volumes are
878 a8083063 Iustin Pop
    reported as unknown.
879 a8083063 Iustin Pop

880 a8083063 Iustin Pop
    """
881 a8083063 Iustin Pop
    bad = False
882 a8083063 Iustin Pop
883 a8083063 Iustin Pop
    for node in node_vol_is:
884 a8083063 Iustin Pop
      for volume in node_vol_is[node]:
885 a8083063 Iustin Pop
        if node not in node_vol_should or volume not in node_vol_should[node]:
886 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
887 a8083063 Iustin Pop
                      (volume, node))
888 a8083063 Iustin Pop
          bad = True
889 a8083063 Iustin Pop
    return bad
890 a8083063 Iustin Pop
891 a8083063 Iustin Pop
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
892 a8083063 Iustin Pop
    """Verify the list of running instances.
893 a8083063 Iustin Pop

894 a8083063 Iustin Pop
    This checks what instances are running but unknown to the cluster.
895 a8083063 Iustin Pop

896 a8083063 Iustin Pop
    """
897 a8083063 Iustin Pop
    bad = False
898 a8083063 Iustin Pop
    for node in node_instance:
899 a8083063 Iustin Pop
      for runninginstance in node_instance[node]:
900 a8083063 Iustin Pop
        if runninginstance not in instancelist:
901 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
902 a8083063 Iustin Pop
                          (runninginstance, node))
903 a8083063 Iustin Pop
          bad = True
904 a8083063 Iustin Pop
    return bad
905 a8083063 Iustin Pop
906 2b3b6ddd Guido Trotter
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
907 2b3b6ddd Guido Trotter
    """Verify N+1 Memory Resilience.
908 2b3b6ddd Guido Trotter

909 2b3b6ddd Guido Trotter
    Check that if one single node dies we can still start all the instances it
910 2b3b6ddd Guido Trotter
    was primary for.
911 2b3b6ddd Guido Trotter

912 2b3b6ddd Guido Trotter
    """
913 2b3b6ddd Guido Trotter
    bad = False
914 2b3b6ddd Guido Trotter
915 2b3b6ddd Guido Trotter
    for node, nodeinfo in node_info.iteritems():
916 2b3b6ddd Guido Trotter
      # This code checks that every node which is now listed as secondary has
917 2b3b6ddd Guido Trotter
      # enough memory to host all instances it is supposed to should a single
918 2b3b6ddd Guido Trotter
      # other node in the cluster fail.
919 2b3b6ddd Guido Trotter
      # FIXME: not ready for failover to an arbitrary node
920 2b3b6ddd Guido Trotter
      # FIXME: does not support file-backed instances
921 2b3b6ddd Guido Trotter
      # WARNING: we currently take into account down instances as well as up
922 2b3b6ddd Guido Trotter
      # ones, considering that even if they're down someone might want to start
923 2b3b6ddd Guido Trotter
      # them even in the event of a node failure.
924 2b3b6ddd Guido Trotter
      for prinode, instances in nodeinfo['sinst-by-pnode'].iteritems():
925 2b3b6ddd Guido Trotter
        needed_mem = 0
926 2b3b6ddd Guido Trotter
        for instance in instances:
927 338e51e8 Iustin Pop
          bep = self.cfg.GetClusterInfo().FillBE(instance_cfg[instance])
928 c0f2b229 Iustin Pop
          if bep[constants.BE_AUTO_BALANCE]:
929 3924700f Iustin Pop
            needed_mem += bep[constants.BE_MEMORY]
930 2b3b6ddd Guido Trotter
        if nodeinfo['mfree'] < needed_mem:
931 2b3b6ddd Guido Trotter
          feedback_fn("  - ERROR: not enough memory on node %s to accomodate"
932 2b3b6ddd Guido Trotter
                      " failovers should node %s fail" % (node, prinode))
933 2b3b6ddd Guido Trotter
          bad = True
934 2b3b6ddd Guido Trotter
    return bad
935 2b3b6ddd Guido Trotter
936 a8083063 Iustin Pop
  def CheckPrereq(self):
937 a8083063 Iustin Pop
    """Check prerequisites.
938 a8083063 Iustin Pop

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

942 a8083063 Iustin Pop
    """
943 e54c4c5e Guido Trotter
    self.skip_set = frozenset(self.op.skip_checks)
944 e54c4c5e Guido Trotter
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
945 e54c4c5e Guido Trotter
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
946 a8083063 Iustin Pop
947 d8fff41c Guido Trotter
  def BuildHooksEnv(self):
948 d8fff41c Guido Trotter
    """Build hooks env.
949 d8fff41c Guido Trotter

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

953 d8fff41c Guido Trotter
    """
954 d8fff41c Guido Trotter
    all_nodes = self.cfg.GetNodeList()
955 35e994e9 Iustin Pop
    env = {
956 35e994e9 Iustin Pop
      "CLUSTER_TAGS": " ".join(self.cfg.GetClusterInfo().GetTags())
957 35e994e9 Iustin Pop
      }
958 35e994e9 Iustin Pop
    for node in self.cfg.GetAllNodesInfo().values():
959 35e994e9 Iustin Pop
      env["NODE_TAGS_%s" % node.name] = " ".join(node.GetTags())
960 35e994e9 Iustin Pop
961 d8fff41c Guido Trotter
    return env, [], all_nodes
962 d8fff41c Guido Trotter
963 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
964 a8083063 Iustin Pop
    """Verify integrity of cluster, performing various test on nodes.
965 a8083063 Iustin Pop

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

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

1223 e4376078 Iustin Pop
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
1224 e4376078 Iustin Pop
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1225 e4376078 Iustin Pop
    @param hooks_results: the results of the multi-node hooks rpc call
1226 e4376078 Iustin Pop
    @param feedback_fn: function used send feedback back to the caller
1227 e4376078 Iustin Pop
    @param lu_result: previous Exec result
1228 e4376078 Iustin Pop
    @return: the new Exec result, based on the previous result
1229 e4376078 Iustin Pop
        and hook results
1230 d8fff41c Guido Trotter

1231 d8fff41c Guido Trotter
    """
1232 38206f3c Iustin Pop
    # We only really run POST phase hooks, and are only interested in
1233 38206f3c Iustin Pop
    # their results
1234 d8fff41c Guido Trotter
    if phase == constants.HOOKS_PHASE_POST:
1235 d8fff41c Guido Trotter
      # Used to change hooks' output to proper indentation
1236 d8fff41c Guido Trotter
      indent_re = re.compile('^', re.M)
1237 d8fff41c Guido Trotter
      feedback_fn("* Hooks Results")
1238 d8fff41c Guido Trotter
      if not hooks_results:
1239 d8fff41c Guido Trotter
        feedback_fn("  - ERROR: general communication failure")
1240 d8fff41c Guido Trotter
        lu_result = 1
1241 d8fff41c Guido Trotter
      else:
1242 d8fff41c Guido Trotter
        for node_name in hooks_results:
1243 d8fff41c Guido Trotter
          show_node_header = True
1244 d8fff41c Guido Trotter
          res = hooks_results[node_name]
1245 25361b9a Iustin Pop
          if res.failed or res.data is False or not isinstance(res.data, list):
1246 0a66c968 Iustin Pop
            if res.offline:
1247 0a66c968 Iustin Pop
              # no need to warn or set fail return value
1248 0a66c968 Iustin Pop
              continue
1249 25361b9a Iustin Pop
            feedback_fn("    Communication failure in hooks execution")
1250 d8fff41c Guido Trotter
            lu_result = 1
1251 d8fff41c Guido Trotter
            continue
1252 25361b9a Iustin Pop
          for script, hkr, output in res.data:
1253 d8fff41c Guido Trotter
            if hkr == constants.HKR_FAIL:
1254 d8fff41c Guido Trotter
              # The node header is only shown once, if there are
1255 d8fff41c Guido Trotter
              # failing hooks on that node
1256 d8fff41c Guido Trotter
              if show_node_header:
1257 d8fff41c Guido Trotter
                feedback_fn("  Node %s:" % node_name)
1258 d8fff41c Guido Trotter
                show_node_header = False
1259 d8fff41c Guido Trotter
              feedback_fn("    ERROR: Script %s failed, output:" % script)
1260 d8fff41c Guido Trotter
              output = indent_re.sub('      ', output)
1261 d8fff41c Guido Trotter
              feedback_fn("%s" % output)
1262 d8fff41c Guido Trotter
              lu_result = 1
1263 d8fff41c Guido Trotter
1264 d8fff41c Guido Trotter
      return lu_result
1265 d8fff41c Guido Trotter
1266 a8083063 Iustin Pop
1267 2c95a8d4 Iustin Pop
class LUVerifyDisks(NoHooksLU):
1268 2c95a8d4 Iustin Pop
  """Verifies the cluster disks status.
1269 2c95a8d4 Iustin Pop

1270 2c95a8d4 Iustin Pop
  """
1271 2c95a8d4 Iustin Pop
  _OP_REQP = []
1272 d4b9d97f Guido Trotter
  REQ_BGL = False
1273 d4b9d97f Guido Trotter
1274 d4b9d97f Guido Trotter
  def ExpandNames(self):
1275 d4b9d97f Guido Trotter
    self.needed_locks = {
1276 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1277 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1278 d4b9d97f Guido Trotter
    }
1279 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1280 2c95a8d4 Iustin Pop
1281 2c95a8d4 Iustin Pop
  def CheckPrereq(self):
1282 2c95a8d4 Iustin Pop
    """Check prerequisites.
1283 2c95a8d4 Iustin Pop

1284 2c95a8d4 Iustin Pop
    This has no prerequisites.
1285 2c95a8d4 Iustin Pop

1286 2c95a8d4 Iustin Pop
    """
1287 2c95a8d4 Iustin Pop
    pass
1288 2c95a8d4 Iustin Pop
1289 2c95a8d4 Iustin Pop
  def Exec(self, feedback_fn):
1290 2c95a8d4 Iustin Pop
    """Verify integrity of cluster disks.
1291 2c95a8d4 Iustin Pop

1292 29d376ec Iustin Pop
    @rtype: tuple of three items
1293 29d376ec Iustin Pop
    @return: a tuple of (dict of node-to-node_error, list of instances
1294 29d376ec Iustin Pop
        which need activate-disks, dict of instance: (node, volume) for
1295 29d376ec Iustin Pop
        missing volumes
1296 29d376ec Iustin Pop

1297 2c95a8d4 Iustin Pop
    """
1298 29d376ec Iustin Pop
    result = res_nodes, res_instances, res_missing = {}, [], {}
1299 2c95a8d4 Iustin Pop
1300 2c95a8d4 Iustin Pop
    vg_name = self.cfg.GetVGName()
1301 2c95a8d4 Iustin Pop
    nodes = utils.NiceSort(self.cfg.GetNodeList())
1302 2c95a8d4 Iustin Pop
    instances = [self.cfg.GetInstanceInfo(name)
1303 2c95a8d4 Iustin Pop
                 for name in self.cfg.GetInstanceList()]
1304 2c95a8d4 Iustin Pop
1305 2c95a8d4 Iustin Pop
    nv_dict = {}
1306 2c95a8d4 Iustin Pop
    for inst in instances:
1307 2c95a8d4 Iustin Pop
      inst_lvs = {}
1308 0d68c45d Iustin Pop
      if (not inst.admin_up or
1309 2c95a8d4 Iustin Pop
          inst.disk_template not in constants.DTS_NET_MIRROR):
1310 2c95a8d4 Iustin Pop
        continue
1311 2c95a8d4 Iustin Pop
      inst.MapLVsByNode(inst_lvs)
1312 2c95a8d4 Iustin Pop
      # transform { iname: {node: [vol,],},} to {(node, vol): iname}
1313 2c95a8d4 Iustin Pop
      for node, vol_list in inst_lvs.iteritems():
1314 2c95a8d4 Iustin Pop
        for vol in vol_list:
1315 2c95a8d4 Iustin Pop
          nv_dict[(node, vol)] = inst
1316 2c95a8d4 Iustin Pop
1317 2c95a8d4 Iustin Pop
    if not nv_dict:
1318 2c95a8d4 Iustin Pop
      return result
1319 2c95a8d4 Iustin Pop
1320 72737a7f Iustin Pop
    node_lvs = self.rpc.call_volume_list(nodes, vg_name)
1321 2c95a8d4 Iustin Pop
1322 2c95a8d4 Iustin Pop
    to_act = set()
1323 2c95a8d4 Iustin Pop
    for node in nodes:
1324 2c95a8d4 Iustin Pop
      # node_volume
1325 29d376ec Iustin Pop
      node_res = node_lvs[node]
1326 29d376ec Iustin Pop
      if node_res.offline:
1327 ea9ddc07 Iustin Pop
        continue
1328 29d376ec Iustin Pop
      msg = node_res.RemoteFailMsg()
1329 29d376ec Iustin Pop
      if msg:
1330 29d376ec Iustin Pop
        logging.warning("Error enumerating LVs on node %s: %s", node, msg)
1331 29d376ec Iustin Pop
        res_nodes[node] = msg
1332 2c95a8d4 Iustin Pop
        continue
1333 2c95a8d4 Iustin Pop
1334 29d376ec Iustin Pop
      lvs = node_res.payload
1335 29d376ec Iustin Pop
      for lv_name, (_, lv_inactive, lv_online) in lvs.items():
1336 b63ed789 Iustin Pop
        inst = nv_dict.pop((node, lv_name), None)
1337 b63ed789 Iustin Pop
        if (not lv_online and inst is not None
1338 b63ed789 Iustin Pop
            and inst.name not in res_instances):
1339 b08d5a87 Iustin Pop
          res_instances.append(inst.name)
1340 2c95a8d4 Iustin Pop
1341 b63ed789 Iustin Pop
    # any leftover items in nv_dict are missing LVs, let's arrange the
1342 b63ed789 Iustin Pop
    # data better
1343 b63ed789 Iustin Pop
    for key, inst in nv_dict.iteritems():
1344 b63ed789 Iustin Pop
      if inst.name not in res_missing:
1345 b63ed789 Iustin Pop
        res_missing[inst.name] = []
1346 b63ed789 Iustin Pop
      res_missing[inst.name].append(key)
1347 b63ed789 Iustin Pop
1348 2c95a8d4 Iustin Pop
    return result
1349 2c95a8d4 Iustin Pop
1350 2c95a8d4 Iustin Pop
1351 07bd8a51 Iustin Pop
class LURenameCluster(LogicalUnit):
1352 07bd8a51 Iustin Pop
  """Rename the cluster.
1353 07bd8a51 Iustin Pop

1354 07bd8a51 Iustin Pop
  """
1355 07bd8a51 Iustin Pop
  HPATH = "cluster-rename"
1356 07bd8a51 Iustin Pop
  HTYPE = constants.HTYPE_CLUSTER
1357 07bd8a51 Iustin Pop
  _OP_REQP = ["name"]
1358 07bd8a51 Iustin Pop
1359 07bd8a51 Iustin Pop
  def BuildHooksEnv(self):
1360 07bd8a51 Iustin Pop
    """Build hooks env.
1361 07bd8a51 Iustin Pop

1362 07bd8a51 Iustin Pop
    """
1363 07bd8a51 Iustin Pop
    env = {
1364 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1365 07bd8a51 Iustin Pop
      "NEW_NAME": self.op.name,
1366 07bd8a51 Iustin Pop
      }
1367 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1368 07bd8a51 Iustin Pop
    return env, [mn], [mn]
1369 07bd8a51 Iustin Pop
1370 07bd8a51 Iustin Pop
  def CheckPrereq(self):
1371 07bd8a51 Iustin Pop
    """Verify that the passed name is a valid one.
1372 07bd8a51 Iustin Pop

1373 07bd8a51 Iustin Pop
    """
1374 89e1fc26 Iustin Pop
    hostname = utils.HostInfo(self.op.name)
1375 07bd8a51 Iustin Pop
1376 bcf043c9 Iustin Pop
    new_name = hostname.name
1377 bcf043c9 Iustin Pop
    self.ip = new_ip = hostname.ip
1378 d6a02168 Michael Hanselmann
    old_name = self.cfg.GetClusterName()
1379 d6a02168 Michael Hanselmann
    old_ip = self.cfg.GetMasterIP()
1380 07bd8a51 Iustin Pop
    if new_name == old_name and new_ip == old_ip:
1381 07bd8a51 Iustin Pop
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1382 07bd8a51 Iustin Pop
                                 " cluster has changed")
1383 07bd8a51 Iustin Pop
    if new_ip != old_ip:
1384 937f983d Guido Trotter
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1385 07bd8a51 Iustin Pop
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1386 07bd8a51 Iustin Pop
                                   " reachable on the network. Aborting." %
1387 07bd8a51 Iustin Pop
                                   new_ip)
1388 07bd8a51 Iustin Pop
1389 07bd8a51 Iustin Pop
    self.op.name = new_name
1390 07bd8a51 Iustin Pop
1391 07bd8a51 Iustin Pop
  def Exec(self, feedback_fn):
1392 07bd8a51 Iustin Pop
    """Rename the cluster.
1393 07bd8a51 Iustin Pop

1394 07bd8a51 Iustin Pop
    """
1395 07bd8a51 Iustin Pop
    clustername = self.op.name
1396 07bd8a51 Iustin Pop
    ip = self.ip
1397 07bd8a51 Iustin Pop
1398 07bd8a51 Iustin Pop
    # shutdown the master IP
1399 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
1400 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
1401 6c00d19a Iustin Pop
    msg = result.RemoteFailMsg()
1402 6c00d19a Iustin Pop
    if msg:
1403 6c00d19a Iustin Pop
      raise errors.OpExecError("Could not disable the master role: %s" % msg)
1404 07bd8a51 Iustin Pop
1405 07bd8a51 Iustin Pop
    try:
1406 55cf7d83 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
1407 55cf7d83 Iustin Pop
      cluster.cluster_name = clustername
1408 55cf7d83 Iustin Pop
      cluster.master_ip = ip
1409 55cf7d83 Iustin Pop
      self.cfg.Update(cluster)
1410 ec85e3d5 Iustin Pop
1411 ec85e3d5 Iustin Pop
      # update the known hosts file
1412 ec85e3d5 Iustin Pop
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1413 ec85e3d5 Iustin Pop
      node_list = self.cfg.GetNodeList()
1414 ec85e3d5 Iustin Pop
      try:
1415 ec85e3d5 Iustin Pop
        node_list.remove(master)
1416 ec85e3d5 Iustin Pop
      except ValueError:
1417 ec85e3d5 Iustin Pop
        pass
1418 ec85e3d5 Iustin Pop
      result = self.rpc.call_upload_file(node_list,
1419 ec85e3d5 Iustin Pop
                                         constants.SSH_KNOWN_HOSTS_FILE)
1420 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
1421 1b54fc6c Guido Trotter
         msg = to_result.RemoteFailMsg()
1422 1b54fc6c Guido Trotter
         if msg:
1423 1b54fc6c Guido Trotter
           msg = ("Copy of file %s to node %s failed: %s" %
1424 1b54fc6c Guido Trotter
                   (constants.SSH_KNOWN_HOSTS_FILE, to_node, msg))
1425 1b54fc6c Guido Trotter
           self.proc.LogWarning(msg)
1426 ec85e3d5 Iustin Pop
1427 07bd8a51 Iustin Pop
    finally:
1428 781de953 Iustin Pop
      result = self.rpc.call_node_start_master(master, False)
1429 b726aff0 Iustin Pop
      msg = result.RemoteFailMsg()
1430 b726aff0 Iustin Pop
      if msg:
1431 86d9d3bb Iustin Pop
        self.LogWarning("Could not re-enable the master role on"
1432 b726aff0 Iustin Pop
                        " the master, please restart manually: %s", msg)
1433 07bd8a51 Iustin Pop
1434 07bd8a51 Iustin Pop
1435 8084f9f6 Manuel Franceschini
def _RecursiveCheckIfLVMBased(disk):
1436 8084f9f6 Manuel Franceschini
  """Check if the given disk or its children are lvm-based.
1437 8084f9f6 Manuel Franceschini

1438 e4376078 Iustin Pop
  @type disk: L{objects.Disk}
1439 e4376078 Iustin Pop
  @param disk: the disk to check
1440 e4376078 Iustin Pop
  @rtype: booleean
1441 e4376078 Iustin Pop
  @return: boolean indicating whether a LD_LV dev_type was found or not
1442 8084f9f6 Manuel Franceschini

1443 8084f9f6 Manuel Franceschini
  """
1444 8084f9f6 Manuel Franceschini
  if disk.children:
1445 8084f9f6 Manuel Franceschini
    for chdisk in disk.children:
1446 8084f9f6 Manuel Franceschini
      if _RecursiveCheckIfLVMBased(chdisk):
1447 8084f9f6 Manuel Franceschini
        return True
1448 8084f9f6 Manuel Franceschini
  return disk.dev_type == constants.LD_LV
1449 8084f9f6 Manuel Franceschini
1450 8084f9f6 Manuel Franceschini
1451 8084f9f6 Manuel Franceschini
class LUSetClusterParams(LogicalUnit):
1452 8084f9f6 Manuel Franceschini
  """Change the parameters of the cluster.
1453 8084f9f6 Manuel Franceschini

1454 8084f9f6 Manuel Franceschini
  """
1455 8084f9f6 Manuel Franceschini
  HPATH = "cluster-modify"
1456 8084f9f6 Manuel Franceschini
  HTYPE = constants.HTYPE_CLUSTER
1457 8084f9f6 Manuel Franceschini
  _OP_REQP = []
1458 c53279cf Guido Trotter
  REQ_BGL = False
1459 c53279cf Guido Trotter
1460 3994f455 Iustin Pop
  def CheckArguments(self):
1461 4b7735f9 Iustin Pop
    """Check parameters
1462 4b7735f9 Iustin Pop

1463 4b7735f9 Iustin Pop
    """
1464 4b7735f9 Iustin Pop
    if not hasattr(self.op, "candidate_pool_size"):
1465 4b7735f9 Iustin Pop
      self.op.candidate_pool_size = None
1466 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1467 4b7735f9 Iustin Pop
      try:
1468 4b7735f9 Iustin Pop
        self.op.candidate_pool_size = int(self.op.candidate_pool_size)
1469 3994f455 Iustin Pop
      except (ValueError, TypeError), err:
1470 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
1471 4b7735f9 Iustin Pop
                                   str(err))
1472 4b7735f9 Iustin Pop
      if self.op.candidate_pool_size < 1:
1473 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("At least one master candidate needed")
1474 4b7735f9 Iustin Pop
1475 c53279cf Guido Trotter
  def ExpandNames(self):
1476 c53279cf Guido Trotter
    # FIXME: in the future maybe other cluster params won't require checking on
1477 c53279cf Guido Trotter
    # all nodes to be modified.
1478 c53279cf Guido Trotter
    self.needed_locks = {
1479 c53279cf Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1480 c53279cf Guido Trotter
    }
1481 c53279cf Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1482 8084f9f6 Manuel Franceschini
1483 8084f9f6 Manuel Franceschini
  def BuildHooksEnv(self):
1484 8084f9f6 Manuel Franceschini
    """Build hooks env.
1485 8084f9f6 Manuel Franceschini

1486 8084f9f6 Manuel Franceschini
    """
1487 8084f9f6 Manuel Franceschini
    env = {
1488 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1489 8084f9f6 Manuel Franceschini
      "NEW_VG_NAME": self.op.vg_name,
1490 8084f9f6 Manuel Franceschini
      }
1491 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1492 8084f9f6 Manuel Franceschini
    return env, [mn], [mn]
1493 8084f9f6 Manuel Franceschini
1494 8084f9f6 Manuel Franceschini
  def CheckPrereq(self):
1495 8084f9f6 Manuel Franceschini
    """Check prerequisites.
1496 8084f9f6 Manuel Franceschini

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

1500 8084f9f6 Manuel Franceschini
    """
1501 779c15bb Iustin Pop
    if self.op.vg_name is not None and not self.op.vg_name:
1502 c53279cf Guido Trotter
      instances = self.cfg.GetAllInstancesInfo().values()
1503 8084f9f6 Manuel Franceschini
      for inst in instances:
1504 8084f9f6 Manuel Franceschini
        for disk in inst.disks:
1505 8084f9f6 Manuel Franceschini
          if _RecursiveCheckIfLVMBased(disk):
1506 8084f9f6 Manuel Franceschini
            raise errors.OpPrereqError("Cannot disable lvm storage while"
1507 8084f9f6 Manuel Franceschini
                                       " lvm-based instances exist")
1508 8084f9f6 Manuel Franceschini
1509 779c15bb Iustin Pop
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1510 779c15bb Iustin Pop
1511 8084f9f6 Manuel Franceschini
    # if vg_name not None, checks given volume group on all nodes
1512 8084f9f6 Manuel Franceschini
    if self.op.vg_name:
1513 72737a7f Iustin Pop
      vglist = self.rpc.call_vg_list(node_list)
1514 8084f9f6 Manuel Franceschini
      for node in node_list:
1515 e480923b Iustin Pop
        msg = vglist[node].RemoteFailMsg()
1516 e480923b Iustin Pop
        if msg:
1517 781de953 Iustin Pop
          # ignoring down node
1518 e480923b Iustin Pop
          self.LogWarning("Error while gathering data on node %s"
1519 e480923b Iustin Pop
                          " (ignoring node): %s", node, msg)
1520 781de953 Iustin Pop
          continue
1521 e480923b Iustin Pop
        vgstatus = utils.CheckVolumeGroupSize(vglist[node].payload,
1522 781de953 Iustin Pop
                                              self.op.vg_name,
1523 8d1a2a64 Michael Hanselmann
                                              constants.MIN_VG_SIZE)
1524 8084f9f6 Manuel Franceschini
        if vgstatus:
1525 8084f9f6 Manuel Franceschini
          raise errors.OpPrereqError("Error on node '%s': %s" %
1526 8084f9f6 Manuel Franceschini
                                     (node, vgstatus))
1527 8084f9f6 Manuel Franceschini
1528 779c15bb Iustin Pop
    self.cluster = cluster = self.cfg.GetClusterInfo()
1529 5af3da74 Guido Trotter
    # validate params changes
1530 779c15bb Iustin Pop
    if self.op.beparams:
1531 a5728081 Guido Trotter
      utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
1532 abe609b2 Guido Trotter
      self.new_beparams = objects.FillDict(
1533 4ef7f423 Guido Trotter
        cluster.beparams[constants.PP_DEFAULT], self.op.beparams)
1534 779c15bb Iustin Pop
1535 5af3da74 Guido Trotter
    if self.op.nicparams:
1536 5af3da74 Guido Trotter
      utils.ForceDictType(self.op.nicparams, constants.NICS_PARAMETER_TYPES)
1537 5af3da74 Guido Trotter
      self.new_nicparams = objects.FillDict(
1538 5af3da74 Guido Trotter
        cluster.nicparams[constants.PP_DEFAULT], self.op.nicparams)
1539 5af3da74 Guido Trotter
      objects.NIC.CheckParameterSyntax(self.new_nicparams)
1540 5af3da74 Guido Trotter
1541 779c15bb Iustin Pop
    # hypervisor list/parameters
1542 abe609b2 Guido Trotter
    self.new_hvparams = objects.FillDict(cluster.hvparams, {})
1543 779c15bb Iustin Pop
    if self.op.hvparams:
1544 779c15bb Iustin Pop
      if not isinstance(self.op.hvparams, dict):
1545 779c15bb Iustin Pop
        raise errors.OpPrereqError("Invalid 'hvparams' parameter on input")
1546 779c15bb Iustin Pop
      for hv_name, hv_dict in self.op.hvparams.items():
1547 779c15bb Iustin Pop
        if hv_name not in self.new_hvparams:
1548 779c15bb Iustin Pop
          self.new_hvparams[hv_name] = hv_dict
1549 779c15bb Iustin Pop
        else:
1550 779c15bb Iustin Pop
          self.new_hvparams[hv_name].update(hv_dict)
1551 779c15bb Iustin Pop
1552 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1553 779c15bb Iustin Pop
      self.hv_list = self.op.enabled_hypervisors
1554 779c15bb Iustin Pop
    else:
1555 779c15bb Iustin Pop
      self.hv_list = cluster.enabled_hypervisors
1556 779c15bb Iustin Pop
1557 779c15bb Iustin Pop
    if self.op.hvparams or self.op.enabled_hypervisors is not None:
1558 779c15bb Iustin Pop
      # either the enabled list has changed, or the parameters have, validate
1559 779c15bb Iustin Pop
      for hv_name, hv_params in self.new_hvparams.items():
1560 779c15bb Iustin Pop
        if ((self.op.hvparams and hv_name in self.op.hvparams) or
1561 779c15bb Iustin Pop
            (self.op.enabled_hypervisors and
1562 779c15bb Iustin Pop
             hv_name in self.op.enabled_hypervisors)):
1563 779c15bb Iustin Pop
          # either this is a new hypervisor, or its parameters have changed
1564 779c15bb Iustin Pop
          hv_class = hypervisor.GetHypervisor(hv_name)
1565 a5728081 Guido Trotter
          utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
1566 779c15bb Iustin Pop
          hv_class.CheckParameterSyntax(hv_params)
1567 779c15bb Iustin Pop
          _CheckHVParams(self, node_list, hv_name, hv_params)
1568 779c15bb Iustin Pop
1569 8084f9f6 Manuel Franceschini
  def Exec(self, feedback_fn):
1570 8084f9f6 Manuel Franceschini
    """Change the parameters of the cluster.
1571 8084f9f6 Manuel Franceschini

1572 8084f9f6 Manuel Franceschini
    """
1573 779c15bb Iustin Pop
    if self.op.vg_name is not None:
1574 b2482333 Guido Trotter
      new_volume = self.op.vg_name
1575 b2482333 Guido Trotter
      if not new_volume:
1576 b2482333 Guido Trotter
        new_volume = None
1577 b2482333 Guido Trotter
      if new_volume != self.cfg.GetVGName():
1578 b2482333 Guido Trotter
        self.cfg.SetVGName(new_volume)
1579 779c15bb Iustin Pop
      else:
1580 779c15bb Iustin Pop
        feedback_fn("Cluster LVM configuration already in desired"
1581 779c15bb Iustin Pop
                    " state, not changing")
1582 779c15bb Iustin Pop
    if self.op.hvparams:
1583 779c15bb Iustin Pop
      self.cluster.hvparams = self.new_hvparams
1584 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1585 779c15bb Iustin Pop
      self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
1586 779c15bb Iustin Pop
    if self.op.beparams:
1587 4ef7f423 Guido Trotter
      self.cluster.beparams[constants.PP_DEFAULT] = self.new_beparams
1588 5af3da74 Guido Trotter
    if self.op.nicparams:
1589 5af3da74 Guido Trotter
      self.cluster.nicparams[constants.PP_DEFAULT] = self.new_nicparams
1590 5af3da74 Guido Trotter
1591 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1592 4b7735f9 Iustin Pop
      self.cluster.candidate_pool_size = self.op.candidate_pool_size
1593 4b7735f9 Iustin Pop
1594 779c15bb Iustin Pop
    self.cfg.Update(self.cluster)
1595 8084f9f6 Manuel Franceschini
1596 4b7735f9 Iustin Pop
    # we want to update nodes after the cluster so that if any errors
1597 4b7735f9 Iustin Pop
    # happen, we have recorded and saved the cluster info
1598 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1599 ec0292f1 Iustin Pop
      _AdjustCandidatePool(self)
1600 4b7735f9 Iustin Pop
1601 8084f9f6 Manuel Franceschini
1602 28eddce5 Guido Trotter
def _RedistributeAncillaryFiles(lu, additional_nodes=None):
1603 28eddce5 Guido Trotter
  """Distribute additional files which are part of the cluster configuration.
1604 28eddce5 Guido Trotter

1605 28eddce5 Guido Trotter
  ConfigWriter takes care of distributing the config and ssconf files, but
1606 28eddce5 Guido Trotter
  there are more files which should be distributed to all nodes. This function
1607 28eddce5 Guido Trotter
  makes sure those are copied.
1608 28eddce5 Guido Trotter

1609 28eddce5 Guido Trotter
  @param lu: calling logical unit
1610 28eddce5 Guido Trotter
  @param additional_nodes: list of nodes not in the config to distribute to
1611 28eddce5 Guido Trotter

1612 28eddce5 Guido Trotter
  """
1613 28eddce5 Guido Trotter
  # 1. Gather target nodes
1614 28eddce5 Guido Trotter
  myself = lu.cfg.GetNodeInfo(lu.cfg.GetMasterNode())
1615 28eddce5 Guido Trotter
  dist_nodes = lu.cfg.GetNodeList()
1616 28eddce5 Guido Trotter
  if additional_nodes is not None:
1617 28eddce5 Guido Trotter
    dist_nodes.extend(additional_nodes)
1618 28eddce5 Guido Trotter
  if myself.name in dist_nodes:
1619 28eddce5 Guido Trotter
    dist_nodes.remove(myself.name)
1620 28eddce5 Guido Trotter
  # 2. Gather files to distribute
1621 28eddce5 Guido Trotter
  dist_files = set([constants.ETC_HOSTS,
1622 28eddce5 Guido Trotter
                    constants.SSH_KNOWN_HOSTS_FILE,
1623 28eddce5 Guido Trotter
                    constants.RAPI_CERT_FILE,
1624 28eddce5 Guido Trotter
                    constants.RAPI_USERS_FILE,
1625 28eddce5 Guido Trotter
                   ])
1626 e1b8653f Guido Trotter
1627 e1b8653f Guido Trotter
  enabled_hypervisors = lu.cfg.GetClusterInfo().enabled_hypervisors
1628 e1b8653f Guido Trotter
  for hv_name in enabled_hypervisors:
1629 e1b8653f Guido Trotter
    hv_class = hypervisor.GetHypervisor(hv_name)
1630 e1b8653f Guido Trotter
    dist_files.update(hv_class.GetAncillaryFiles())
1631 e1b8653f Guido Trotter
1632 28eddce5 Guido Trotter
  # 3. Perform the files upload
1633 28eddce5 Guido Trotter
  for fname in dist_files:
1634 28eddce5 Guido Trotter
    if os.path.exists(fname):
1635 28eddce5 Guido Trotter
      result = lu.rpc.call_upload_file(dist_nodes, fname)
1636 28eddce5 Guido Trotter
      for to_node, to_result in result.items():
1637 1b54fc6c Guido Trotter
         msg = to_result.RemoteFailMsg()
1638 1b54fc6c Guido Trotter
         if msg:
1639 1b54fc6c Guido Trotter
           msg = ("Copy of file %s to node %s failed: %s" %
1640 1b54fc6c Guido Trotter
                   (fname, to_node, msg))
1641 1b54fc6c Guido Trotter
           lu.proc.LogWarning(msg)
1642 28eddce5 Guido Trotter
1643 28eddce5 Guido Trotter
1644 afee0879 Iustin Pop
class LURedistributeConfig(NoHooksLU):
1645 afee0879 Iustin Pop
  """Force the redistribution of cluster configuration.
1646 afee0879 Iustin Pop

1647 afee0879 Iustin Pop
  This is a very simple LU.
1648 afee0879 Iustin Pop

1649 afee0879 Iustin Pop
  """
1650 afee0879 Iustin Pop
  _OP_REQP = []
1651 afee0879 Iustin Pop
  REQ_BGL = False
1652 afee0879 Iustin Pop
1653 afee0879 Iustin Pop
  def ExpandNames(self):
1654 afee0879 Iustin Pop
    self.needed_locks = {
1655 afee0879 Iustin Pop
      locking.LEVEL_NODE: locking.ALL_SET,
1656 afee0879 Iustin Pop
    }
1657 afee0879 Iustin Pop
    self.share_locks[locking.LEVEL_NODE] = 1
1658 afee0879 Iustin Pop
1659 afee0879 Iustin Pop
  def CheckPrereq(self):
1660 afee0879 Iustin Pop
    """Check prerequisites.
1661 afee0879 Iustin Pop

1662 afee0879 Iustin Pop
    """
1663 afee0879 Iustin Pop
1664 afee0879 Iustin Pop
  def Exec(self, feedback_fn):
1665 afee0879 Iustin Pop
    """Redistribute the configuration.
1666 afee0879 Iustin Pop

1667 afee0879 Iustin Pop
    """
1668 afee0879 Iustin Pop
    self.cfg.Update(self.cfg.GetClusterInfo())
1669 28eddce5 Guido Trotter
    _RedistributeAncillaryFiles(self)
1670 afee0879 Iustin Pop
1671 afee0879 Iustin Pop
1672 b9bddb6b Iustin Pop
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1673 a8083063 Iustin Pop
  """Sleep and poll for an instance's disk to sync.
1674 a8083063 Iustin Pop

1675 a8083063 Iustin Pop
  """
1676 a8083063 Iustin Pop
  if not instance.disks:
1677 a8083063 Iustin Pop
    return True
1678 a8083063 Iustin Pop
1679 a8083063 Iustin Pop
  if not oneshot:
1680 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
1681 a8083063 Iustin Pop
1682 a8083063 Iustin Pop
  node = instance.primary_node
1683 a8083063 Iustin Pop
1684 a8083063 Iustin Pop
  for dev in instance.disks:
1685 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(dev, node)
1686 a8083063 Iustin Pop
1687 a8083063 Iustin Pop
  retries = 0
1688 a8083063 Iustin Pop
  while True:
1689 a8083063 Iustin Pop
    max_time = 0
1690 a8083063 Iustin Pop
    done = True
1691 a8083063 Iustin Pop
    cumul_degraded = False
1692 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
1693 3efa9051 Iustin Pop
    msg = rstats.RemoteFailMsg()
1694 3efa9051 Iustin Pop
    if msg:
1695 3efa9051 Iustin Pop
      lu.LogWarning("Can't get any data from node %s: %s", node, msg)
1696 a8083063 Iustin Pop
      retries += 1
1697 a8083063 Iustin Pop
      if retries >= 10:
1698 3ecf6786 Iustin Pop
        raise errors.RemoteError("Can't contact node %s for mirror data,"
1699 3ecf6786 Iustin Pop
                                 " aborting." % node)
1700 a8083063 Iustin Pop
      time.sleep(6)
1701 a8083063 Iustin Pop
      continue
1702 3efa9051 Iustin Pop
    rstats = rstats.payload
1703 a8083063 Iustin Pop
    retries = 0
1704 1492cca7 Iustin Pop
    for i, mstat in enumerate(rstats):
1705 a8083063 Iustin Pop
      if mstat is None:
1706 86d9d3bb Iustin Pop
        lu.LogWarning("Can't compute data for node %s/%s",
1707 86d9d3bb Iustin Pop
                           node, instance.disks[i].iv_name)
1708 a8083063 Iustin Pop
        continue
1709 0834c866 Iustin Pop
      # we ignore the ldisk parameter
1710 0834c866 Iustin Pop
      perc_done, est_time, is_degraded, _ = mstat
1711 a8083063 Iustin Pop
      cumul_degraded = cumul_degraded or (is_degraded and perc_done is None)
1712 a8083063 Iustin Pop
      if perc_done is not None:
1713 a8083063 Iustin Pop
        done = False
1714 a8083063 Iustin Pop
        if est_time is not None:
1715 a8083063 Iustin Pop
          rem_time = "%d estimated seconds remaining" % est_time
1716 a8083063 Iustin Pop
          max_time = est_time
1717 a8083063 Iustin Pop
        else:
1718 a8083063 Iustin Pop
          rem_time = "no time estimate"
1719 b9bddb6b Iustin Pop
        lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
1720 b9bddb6b Iustin Pop
                        (instance.disks[i].iv_name, perc_done, rem_time))
1721 a8083063 Iustin Pop
    if done or oneshot:
1722 a8083063 Iustin Pop
      break
1723 a8083063 Iustin Pop
1724 d4fa5c23 Iustin Pop
    time.sleep(min(60, max_time))
1725 a8083063 Iustin Pop
1726 a8083063 Iustin Pop
  if done:
1727 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
1728 a8083063 Iustin Pop
  return not cumul_degraded
1729 a8083063 Iustin Pop
1730 a8083063 Iustin Pop
1731 b9bddb6b Iustin Pop
def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
1732 a8083063 Iustin Pop
  """Check that mirrors are not degraded.
1733 a8083063 Iustin Pop

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

1738 a8083063 Iustin Pop
  """
1739 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(dev, node)
1740 0834c866 Iustin Pop
  if ldisk:
1741 0834c866 Iustin Pop
    idx = 6
1742 0834c866 Iustin Pop
  else:
1743 0834c866 Iustin Pop
    idx = 5
1744 a8083063 Iustin Pop
1745 a8083063 Iustin Pop
  result = True
1746 a8083063 Iustin Pop
  if on_primary or dev.AssembleOnSecondary():
1747 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_find(node, dev)
1748 23829f6f Iustin Pop
    msg = rstats.RemoteFailMsg()
1749 23829f6f Iustin Pop
    if msg:
1750 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s: %s", node, msg)
1751 23829f6f Iustin Pop
      result = False
1752 23829f6f Iustin Pop
    elif not rstats.payload:
1753 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s", node)
1754 a8083063 Iustin Pop
      result = False
1755 a8083063 Iustin Pop
    else:
1756 23829f6f Iustin Pop
      result = result and (not rstats.payload[idx])
1757 a8083063 Iustin Pop
  if dev.children:
1758 a8083063 Iustin Pop
    for child in dev.children:
1759 b9bddb6b Iustin Pop
      result = result and _CheckDiskConsistency(lu, child, node, on_primary)
1760 a8083063 Iustin Pop
1761 a8083063 Iustin Pop
  return result
1762 a8083063 Iustin Pop
1763 a8083063 Iustin Pop
1764 a8083063 Iustin Pop
class LUDiagnoseOS(NoHooksLU):
1765 a8083063 Iustin Pop
  """Logical unit for OS diagnose/query.
1766 a8083063 Iustin Pop

1767 a8083063 Iustin Pop
  """
1768 1f9430d6 Iustin Pop
  _OP_REQP = ["output_fields", "names"]
1769 6bf01bbb Guido Trotter
  REQ_BGL = False
1770 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet()
1771 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status")
1772 a8083063 Iustin Pop
1773 6bf01bbb Guido Trotter
  def ExpandNames(self):
1774 1f9430d6 Iustin Pop
    if self.op.names:
1775 1f9430d6 Iustin Pop
      raise errors.OpPrereqError("Selective OS query not supported")
1776 1f9430d6 Iustin Pop
1777 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1778 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1779 1f9430d6 Iustin Pop
                       selected=self.op.output_fields)
1780 1f9430d6 Iustin Pop
1781 6bf01bbb Guido Trotter
    # Lock all nodes, in shared mode
1782 a6ab004b Iustin Pop
    # Temporary removal of locks, should be reverted later
1783 a6ab004b Iustin Pop
    # TODO: reintroduce locks when they are lighter-weight
1784 6bf01bbb Guido Trotter
    self.needed_locks = {}
1785 a6ab004b Iustin Pop
    #self.share_locks[locking.LEVEL_NODE] = 1
1786 a6ab004b Iustin Pop
    #self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1787 6bf01bbb Guido Trotter
1788 6bf01bbb Guido Trotter
  def CheckPrereq(self):
1789 6bf01bbb Guido Trotter
    """Check prerequisites.
1790 6bf01bbb Guido Trotter

1791 6bf01bbb Guido Trotter
    """
1792 6bf01bbb Guido Trotter
1793 1f9430d6 Iustin Pop
  @staticmethod
1794 1f9430d6 Iustin Pop
  def _DiagnoseByOS(node_list, rlist):
1795 1f9430d6 Iustin Pop
    """Remaps a per-node return list into an a per-os per-node dictionary
1796 1f9430d6 Iustin Pop

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

1800 e4376078 Iustin Pop
    @rtype: dict
1801 5fcc718f Iustin Pop
    @return: a dictionary with osnames as keys and as value another map, with
1802 e4376078 Iustin Pop
        nodes as keys and list of OS objects as values, eg::
1803 e4376078 Iustin Pop

1804 e4376078 Iustin Pop
          {"debian-etch": {"node1": [<object>,...],
1805 e4376078 Iustin Pop
                           "node2": [<object>,]}
1806 e4376078 Iustin Pop
          }
1807 1f9430d6 Iustin Pop

1808 1f9430d6 Iustin Pop
    """
1809 1f9430d6 Iustin Pop
    all_os = {}
1810 a6ab004b Iustin Pop
    # we build here the list of nodes that didn't fail the RPC (at RPC
1811 a6ab004b Iustin Pop
    # level), so that nodes with a non-responding node daemon don't
1812 a6ab004b Iustin Pop
    # make all OSes invalid
1813 a6ab004b Iustin Pop
    good_nodes = [node_name for node_name in rlist
1814 a6ab004b Iustin Pop
                  if not rlist[node_name].failed]
1815 1f9430d6 Iustin Pop
    for node_name, nr in rlist.iteritems():
1816 781de953 Iustin Pop
      if nr.failed or not nr.data:
1817 1f9430d6 Iustin Pop
        continue
1818 781de953 Iustin Pop
      for os_obj in nr.data:
1819 b4de68a9 Iustin Pop
        if os_obj.name not in all_os:
1820 1f9430d6 Iustin Pop
          # build a list of nodes for this os containing empty lists
1821 1f9430d6 Iustin Pop
          # for each node in node_list
1822 b4de68a9 Iustin Pop
          all_os[os_obj.name] = {}
1823 a6ab004b Iustin Pop
          for nname in good_nodes:
1824 b4de68a9 Iustin Pop
            all_os[os_obj.name][nname] = []
1825 b4de68a9 Iustin Pop
        all_os[os_obj.name][node_name].append(os_obj)
1826 1f9430d6 Iustin Pop
    return all_os
1827 a8083063 Iustin Pop
1828 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1829 a8083063 Iustin Pop
    """Compute the list of OSes.
1830 a8083063 Iustin Pop

1831 a8083063 Iustin Pop
    """
1832 a6ab004b Iustin Pop
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()]
1833 94a02bb5 Iustin Pop
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1834 a8083063 Iustin Pop
    if node_data == False:
1835 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't gather the list of OSes")
1836 94a02bb5 Iustin Pop
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1837 1f9430d6 Iustin Pop
    output = []
1838 1f9430d6 Iustin Pop
    for os_name, os_data in pol.iteritems():
1839 1f9430d6 Iustin Pop
      row = []
1840 1f9430d6 Iustin Pop
      for field in self.op.output_fields:
1841 1f9430d6 Iustin Pop
        if field == "name":
1842 1f9430d6 Iustin Pop
          val = os_name
1843 1f9430d6 Iustin Pop
        elif field == "valid":
1844 1f9430d6 Iustin Pop
          val = utils.all([osl and osl[0] for osl in os_data.values()])
1845 1f9430d6 Iustin Pop
        elif field == "node_status":
1846 1f9430d6 Iustin Pop
          val = {}
1847 1f9430d6 Iustin Pop
          for node_name, nos_list in os_data.iteritems():
1848 1f9430d6 Iustin Pop
            val[node_name] = [(v.status, v.path) for v in nos_list]
1849 1f9430d6 Iustin Pop
        else:
1850 1f9430d6 Iustin Pop
          raise errors.ParameterError(field)
1851 1f9430d6 Iustin Pop
        row.append(val)
1852 1f9430d6 Iustin Pop
      output.append(row)
1853 1f9430d6 Iustin Pop
1854 1f9430d6 Iustin Pop
    return output
1855 a8083063 Iustin Pop
1856 a8083063 Iustin Pop
1857 a8083063 Iustin Pop
class LURemoveNode(LogicalUnit):
1858 a8083063 Iustin Pop
  """Logical unit for removing a node.
1859 a8083063 Iustin Pop

1860 a8083063 Iustin Pop
  """
1861 a8083063 Iustin Pop
  HPATH = "node-remove"
1862 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1863 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1864 a8083063 Iustin Pop
1865 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1866 a8083063 Iustin Pop
    """Build hooks env.
1867 a8083063 Iustin Pop

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

1871 a8083063 Iustin Pop
    """
1872 396e1b78 Michael Hanselmann
    env = {
1873 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
1874 396e1b78 Michael Hanselmann
      "NODE_NAME": self.op.node_name,
1875 396e1b78 Michael Hanselmann
      }
1876 a8083063 Iustin Pop
    all_nodes = self.cfg.GetNodeList()
1877 a8083063 Iustin Pop
    all_nodes.remove(self.op.node_name)
1878 396e1b78 Michael Hanselmann
    return env, all_nodes, all_nodes
1879 a8083063 Iustin Pop
1880 a8083063 Iustin Pop
  def CheckPrereq(self):
1881 a8083063 Iustin Pop
    """Check prerequisites.
1882 a8083063 Iustin Pop

1883 a8083063 Iustin Pop
    This checks:
1884 a8083063 Iustin Pop
     - the node exists in the configuration
1885 a8083063 Iustin Pop
     - it does not have primary or secondary instances
1886 a8083063 Iustin Pop
     - it's not the master
1887 a8083063 Iustin Pop

1888 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
1889 a8083063 Iustin Pop

1890 a8083063 Iustin Pop
    """
1891 a8083063 Iustin Pop
    node = self.cfg.GetNodeInfo(self.cfg.ExpandNodeName(self.op.node_name))
1892 a8083063 Iustin Pop
    if node is None:
1893 a02bc76e Iustin Pop
      raise errors.OpPrereqError, ("Node '%s' is unknown." % self.op.node_name)
1894 a8083063 Iustin Pop
1895 a8083063 Iustin Pop
    instance_list = self.cfg.GetInstanceList()
1896 a8083063 Iustin Pop
1897 d6a02168 Michael Hanselmann
    masternode = self.cfg.GetMasterNode()
1898 a8083063 Iustin Pop
    if node.name == masternode:
1899 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node is the master node,"
1900 3ecf6786 Iustin Pop
                                 " you need to failover first.")
1901 a8083063 Iustin Pop
1902 a8083063 Iustin Pop
    for instance_name in instance_list:
1903 a8083063 Iustin Pop
      instance = self.cfg.GetInstanceInfo(instance_name)
1904 6b12959c Iustin Pop
      if node.name in instance.all_nodes:
1905 6b12959c Iustin Pop
        raise errors.OpPrereqError("Instance %s is still running on the node,"
1906 3ecf6786 Iustin Pop
                                   " please remove first." % instance_name)
1907 a8083063 Iustin Pop
    self.op.node_name = node.name
1908 a8083063 Iustin Pop
    self.node = node
1909 a8083063 Iustin Pop
1910 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1911 a8083063 Iustin Pop
    """Removes the node from the cluster.
1912 a8083063 Iustin Pop

1913 a8083063 Iustin Pop
    """
1914 a8083063 Iustin Pop
    node = self.node
1915 9a4f63d1 Iustin Pop
    logging.info("Stopping the node daemon and removing configs from node %s",
1916 9a4f63d1 Iustin Pop
                 node.name)
1917 a8083063 Iustin Pop
1918 d8470559 Michael Hanselmann
    self.context.RemoveNode(node.name)
1919 a8083063 Iustin Pop
1920 0623d351 Iustin Pop
    result = self.rpc.call_node_leave_cluster(node.name)
1921 0623d351 Iustin Pop
    msg = result.RemoteFailMsg()
1922 0623d351 Iustin Pop
    if msg:
1923 0623d351 Iustin Pop
      self.LogWarning("Errors encountered on the remote node while leaving"
1924 0623d351 Iustin Pop
                      " the cluster: %s", msg)
1925 c8a0948f Michael Hanselmann
1926 eb1742d5 Guido Trotter
    # Promote nodes to master candidate as needed
1927 ec0292f1 Iustin Pop
    _AdjustCandidatePool(self)
1928 eb1742d5 Guido Trotter
1929 a8083063 Iustin Pop
1930 a8083063 Iustin Pop
class LUQueryNodes(NoHooksLU):
1931 a8083063 Iustin Pop
  """Logical unit for querying nodes.
1932 a8083063 Iustin Pop

1933 a8083063 Iustin Pop
  """
1934 bc8e4a1a Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
1935 35705d8f Guido Trotter
  REQ_BGL = False
1936 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet(
1937 31bf511f Iustin Pop
    "dtotal", "dfree",
1938 31bf511f Iustin Pop
    "mtotal", "mnode", "mfree",
1939 31bf511f Iustin Pop
    "bootid",
1940 0105bad3 Iustin Pop
    "ctotal", "cnodes", "csockets",
1941 31bf511f Iustin Pop
    )
1942 31bf511f Iustin Pop
1943 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(
1944 31bf511f Iustin Pop
    "name", "pinst_cnt", "sinst_cnt",
1945 31bf511f Iustin Pop
    "pinst_list", "sinst_list",
1946 31bf511f Iustin Pop
    "pip", "sip", "tags",
1947 31bf511f Iustin Pop
    "serial_no",
1948 0e67cdbe Iustin Pop
    "master_candidate",
1949 0e67cdbe Iustin Pop
    "master",
1950 9ddb5e45 Iustin Pop
    "offline",
1951 0b2454b9 Iustin Pop
    "drained",
1952 31bf511f Iustin Pop
    )
1953 a8083063 Iustin Pop
1954 35705d8f Guido Trotter
  def ExpandNames(self):
1955 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1956 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1957 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
1958 a8083063 Iustin Pop
1959 35705d8f Guido Trotter
    self.needed_locks = {}
1960 35705d8f Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1961 c8d8b4c8 Iustin Pop
1962 c8d8b4c8 Iustin Pop
    if self.op.names:
1963 c8d8b4c8 Iustin Pop
      self.wanted = _GetWantedNodes(self, self.op.names)
1964 35705d8f Guido Trotter
    else:
1965 c8d8b4c8 Iustin Pop
      self.wanted = locking.ALL_SET
1966 c8d8b4c8 Iustin Pop
1967 bc8e4a1a Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
1968 bc8e4a1a Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
1969 c8d8b4c8 Iustin Pop
    if self.do_locking:
1970 c8d8b4c8 Iustin Pop
      # if we don't request only static fields, we need to lock the nodes
1971 c8d8b4c8 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = self.wanted
1972 c8d8b4c8 Iustin Pop
1973 35705d8f Guido Trotter
1974 35705d8f Guido Trotter
  def CheckPrereq(self):
1975 35705d8f Guido Trotter
    """Check prerequisites.
1976 35705d8f Guido Trotter

1977 35705d8f Guido Trotter
    """
1978 c8d8b4c8 Iustin Pop
    # The validation of the node list is done in the _GetWantedNodes,
1979 c8d8b4c8 Iustin Pop
    # if non empty, and if empty, there's no validation to do
1980 c8d8b4c8 Iustin Pop
    pass
1981 a8083063 Iustin Pop
1982 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1983 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
1984 a8083063 Iustin Pop

1985 a8083063 Iustin Pop
    """
1986 c8d8b4c8 Iustin Pop
    all_info = self.cfg.GetAllNodesInfo()
1987 c8d8b4c8 Iustin Pop
    if self.do_locking:
1988 c8d8b4c8 Iustin Pop
      nodenames = self.acquired_locks[locking.LEVEL_NODE]
1989 3fa93523 Guido Trotter
    elif self.wanted != locking.ALL_SET:
1990 3fa93523 Guido Trotter
      nodenames = self.wanted
1991 3fa93523 Guido Trotter
      missing = set(nodenames).difference(all_info.keys())
1992 3fa93523 Guido Trotter
      if missing:
1993 7b3a8fb5 Iustin Pop
        raise errors.OpExecError(
1994 3fa93523 Guido Trotter
          "Some nodes were removed before retrieving their data: %s" % missing)
1995 c8d8b4c8 Iustin Pop
    else:
1996 c8d8b4c8 Iustin Pop
      nodenames = all_info.keys()
1997 c1f1cbb2 Iustin Pop
1998 c1f1cbb2 Iustin Pop
    nodenames = utils.NiceSort(nodenames)
1999 c8d8b4c8 Iustin Pop
    nodelist = [all_info[name] for name in nodenames]
2000 a8083063 Iustin Pop
2001 a8083063 Iustin Pop
    # begin data gathering
2002 a8083063 Iustin Pop
2003 bc8e4a1a Iustin Pop
    if self.do_node_query:
2004 a8083063 Iustin Pop
      live_data = {}
2005 72737a7f Iustin Pop
      node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
2006 72737a7f Iustin Pop
                                          self.cfg.GetHypervisorType())
2007 a8083063 Iustin Pop
      for name in nodenames:
2008 781de953 Iustin Pop
        nodeinfo = node_data[name]
2009 070e998b Iustin Pop
        if not nodeinfo.RemoteFailMsg() and nodeinfo.payload:
2010 070e998b Iustin Pop
          nodeinfo = nodeinfo.payload
2011 d599d686 Iustin Pop
          fn = utils.TryConvert
2012 a8083063 Iustin Pop
          live_data[name] = {
2013 d599d686 Iustin Pop
            "mtotal": fn(int, nodeinfo.get('memory_total', None)),
2014 d599d686 Iustin Pop
            "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
2015 d599d686 Iustin Pop
            "mfree": fn(int, nodeinfo.get('memory_free', None)),
2016 d599d686 Iustin Pop
            "dtotal": fn(int, nodeinfo.get('vg_size', None)),
2017 d599d686 Iustin Pop
            "dfree": fn(int, nodeinfo.get('vg_free', None)),
2018 d599d686 Iustin Pop
            "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
2019 d599d686 Iustin Pop
            "bootid": nodeinfo.get('bootid', None),
2020 0105bad3 Iustin Pop
            "cnodes": fn(int, nodeinfo.get('cpu_nodes', None)),
2021 0105bad3 Iustin Pop
            "csockets": fn(int, nodeinfo.get('cpu_sockets', None)),
2022 a8083063 Iustin Pop
            }
2023 a8083063 Iustin Pop
        else:
2024 a8083063 Iustin Pop
          live_data[name] = {}
2025 a8083063 Iustin Pop
    else:
2026 a8083063 Iustin Pop
      live_data = dict.fromkeys(nodenames, {})
2027 a8083063 Iustin Pop
2028 ec223efb Iustin Pop
    node_to_primary = dict([(name, set()) for name in nodenames])
2029 ec223efb Iustin Pop
    node_to_secondary = dict([(name, set()) for name in nodenames])
2030 a8083063 Iustin Pop
2031 ec223efb Iustin Pop
    inst_fields = frozenset(("pinst_cnt", "pinst_list",
2032 ec223efb Iustin Pop
                             "sinst_cnt", "sinst_list"))
2033 ec223efb Iustin Pop
    if inst_fields & frozenset(self.op.output_fields):
2034 a8083063 Iustin Pop
      instancelist = self.cfg.GetInstanceList()
2035 a8083063 Iustin Pop
2036 ec223efb Iustin Pop
      for instance_name in instancelist:
2037 ec223efb Iustin Pop
        inst = self.cfg.GetInstanceInfo(instance_name)
2038 ec223efb Iustin Pop
        if inst.primary_node in node_to_primary:
2039 ec223efb Iustin Pop
          node_to_primary[inst.primary_node].add(inst.name)
2040 ec223efb Iustin Pop
        for secnode in inst.secondary_nodes:
2041 ec223efb Iustin Pop
          if secnode in node_to_secondary:
2042 ec223efb Iustin Pop
            node_to_secondary[secnode].add(inst.name)
2043 a8083063 Iustin Pop
2044 0e67cdbe Iustin Pop
    master_node = self.cfg.GetMasterNode()
2045 0e67cdbe Iustin Pop
2046 a8083063 Iustin Pop
    # end data gathering
2047 a8083063 Iustin Pop
2048 a8083063 Iustin Pop
    output = []
2049 a8083063 Iustin Pop
    for node in nodelist:
2050 a8083063 Iustin Pop
      node_output = []
2051 a8083063 Iustin Pop
      for field in self.op.output_fields:
2052 a8083063 Iustin Pop
        if field == "name":
2053 a8083063 Iustin Pop
          val = node.name
2054 ec223efb Iustin Pop
        elif field == "pinst_list":
2055 ec223efb Iustin Pop
          val = list(node_to_primary[node.name])
2056 ec223efb Iustin Pop
        elif field == "sinst_list":
2057 ec223efb Iustin Pop
          val = list(node_to_secondary[node.name])
2058 ec223efb Iustin Pop
        elif field == "pinst_cnt":
2059 ec223efb Iustin Pop
          val = len(node_to_primary[node.name])
2060 ec223efb Iustin Pop
        elif field == "sinst_cnt":
2061 ec223efb Iustin Pop
          val = len(node_to_secondary[node.name])
2062 a8083063 Iustin Pop
        elif field == "pip":
2063 a8083063 Iustin Pop
          val = node.primary_ip
2064 a8083063 Iustin Pop
        elif field == "sip":
2065 a8083063 Iustin Pop
          val = node.secondary_ip
2066 130a6a6f Iustin Pop
        elif field == "tags":
2067 130a6a6f Iustin Pop
          val = list(node.GetTags())
2068 38d7239a Iustin Pop
        elif field == "serial_no":
2069 38d7239a Iustin Pop
          val = node.serial_no
2070 0e67cdbe Iustin Pop
        elif field == "master_candidate":
2071 0e67cdbe Iustin Pop
          val = node.master_candidate
2072 0e67cdbe Iustin Pop
        elif field == "master":
2073 0e67cdbe Iustin Pop
          val = node.name == master_node
2074 9ddb5e45 Iustin Pop
        elif field == "offline":
2075 9ddb5e45 Iustin Pop
          val = node.offline
2076 0b2454b9 Iustin Pop
        elif field == "drained":
2077 0b2454b9 Iustin Pop
          val = node.drained
2078 31bf511f Iustin Pop
        elif self._FIELDS_DYNAMIC.Matches(field):
2079 ec223efb Iustin Pop
          val = live_data[node.name].get(field, None)
2080 a8083063 Iustin Pop
        else:
2081 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
2082 a8083063 Iustin Pop
        node_output.append(val)
2083 a8083063 Iustin Pop
      output.append(node_output)
2084 a8083063 Iustin Pop
2085 a8083063 Iustin Pop
    return output
2086 a8083063 Iustin Pop
2087 a8083063 Iustin Pop
2088 dcb93971 Michael Hanselmann
class LUQueryNodeVolumes(NoHooksLU):
2089 dcb93971 Michael Hanselmann
  """Logical unit for getting volumes on node(s).
2090 dcb93971 Michael Hanselmann

2091 dcb93971 Michael Hanselmann
  """
2092 dcb93971 Michael Hanselmann
  _OP_REQP = ["nodes", "output_fields"]
2093 21a15682 Guido Trotter
  REQ_BGL = False
2094 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
2095 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("node")
2096 21a15682 Guido Trotter
2097 21a15682 Guido Trotter
  def ExpandNames(self):
2098 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2099 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2100 21a15682 Guido Trotter
                       selected=self.op.output_fields)
2101 21a15682 Guido Trotter
2102 21a15682 Guido Trotter
    self.needed_locks = {}
2103 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
2104 21a15682 Guido Trotter
    if not self.op.nodes:
2105 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
2106 21a15682 Guido Trotter
    else:
2107 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
2108 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
2109 dcb93971 Michael Hanselmann
2110 dcb93971 Michael Hanselmann
  def CheckPrereq(self):
2111 dcb93971 Michael Hanselmann
    """Check prerequisites.
2112 dcb93971 Michael Hanselmann

2113 dcb93971 Michael Hanselmann
    This checks that the fields required are valid output fields.
2114 dcb93971 Michael Hanselmann

2115 dcb93971 Michael Hanselmann
    """
2116 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
2117 dcb93971 Michael Hanselmann
2118 dcb93971 Michael Hanselmann
  def Exec(self, feedback_fn):
2119 dcb93971 Michael Hanselmann
    """Computes the list of nodes and their attributes.
2120 dcb93971 Michael Hanselmann

2121 dcb93971 Michael Hanselmann
    """
2122 a7ba5e53 Iustin Pop
    nodenames = self.nodes
2123 72737a7f Iustin Pop
    volumes = self.rpc.call_node_volumes(nodenames)
2124 dcb93971 Michael Hanselmann
2125 dcb93971 Michael Hanselmann
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
2126 dcb93971 Michael Hanselmann
             in self.cfg.GetInstanceList()]
2127 dcb93971 Michael Hanselmann
2128 dcb93971 Michael Hanselmann
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
2129 dcb93971 Michael Hanselmann
2130 dcb93971 Michael Hanselmann
    output = []
2131 dcb93971 Michael Hanselmann
    for node in nodenames:
2132 781de953 Iustin Pop
      if node not in volumes or volumes[node].failed or not volumes[node].data:
2133 37d19eb2 Michael Hanselmann
        continue
2134 37d19eb2 Michael Hanselmann
2135 781de953 Iustin Pop
      node_vols = volumes[node].data[:]
2136 dcb93971 Michael Hanselmann
      node_vols.sort(key=lambda vol: vol['dev'])
2137 dcb93971 Michael Hanselmann
2138 dcb93971 Michael Hanselmann
      for vol in node_vols:
2139 dcb93971 Michael Hanselmann
        node_output = []
2140 dcb93971 Michael Hanselmann
        for field in self.op.output_fields:
2141 dcb93971 Michael Hanselmann
          if field == "node":
2142 dcb93971 Michael Hanselmann
            val = node
2143 dcb93971 Michael Hanselmann
          elif field == "phys":
2144 dcb93971 Michael Hanselmann
            val = vol['dev']
2145 dcb93971 Michael Hanselmann
          elif field == "vg":
2146 dcb93971 Michael Hanselmann
            val = vol['vg']
2147 dcb93971 Michael Hanselmann
          elif field == "name":
2148 dcb93971 Michael Hanselmann
            val = vol['name']
2149 dcb93971 Michael Hanselmann
          elif field == "size":
2150 dcb93971 Michael Hanselmann
            val = int(float(vol['size']))
2151 dcb93971 Michael Hanselmann
          elif field == "instance":
2152 dcb93971 Michael Hanselmann
            for inst in ilist:
2153 dcb93971 Michael Hanselmann
              if node not in lv_by_node[inst]:
2154 dcb93971 Michael Hanselmann
                continue
2155 dcb93971 Michael Hanselmann
              if vol['name'] in lv_by_node[inst][node]:
2156 dcb93971 Michael Hanselmann
                val = inst.name
2157 dcb93971 Michael Hanselmann
                break
2158 dcb93971 Michael Hanselmann
            else:
2159 dcb93971 Michael Hanselmann
              val = '-'
2160 dcb93971 Michael Hanselmann
          else:
2161 3ecf6786 Iustin Pop
            raise errors.ParameterError(field)
2162 dcb93971 Michael Hanselmann
          node_output.append(str(val))
2163 dcb93971 Michael Hanselmann
2164 dcb93971 Michael Hanselmann
        output.append(node_output)
2165 dcb93971 Michael Hanselmann
2166 dcb93971 Michael Hanselmann
    return output
2167 dcb93971 Michael Hanselmann
2168 dcb93971 Michael Hanselmann
2169 a8083063 Iustin Pop
class LUAddNode(LogicalUnit):
2170 a8083063 Iustin Pop
  """Logical unit for adding node to the cluster.
2171 a8083063 Iustin Pop

2172 a8083063 Iustin Pop
  """
2173 a8083063 Iustin Pop
  HPATH = "node-add"
2174 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2175 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
2176 a8083063 Iustin Pop
2177 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2178 a8083063 Iustin Pop
    """Build hooks env.
2179 a8083063 Iustin Pop

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

2182 a8083063 Iustin Pop
    """
2183 a8083063 Iustin Pop
    env = {
2184 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
2185 a8083063 Iustin Pop
      "NODE_NAME": self.op.node_name,
2186 a8083063 Iustin Pop
      "NODE_PIP": self.op.primary_ip,
2187 a8083063 Iustin Pop
      "NODE_SIP": self.op.secondary_ip,
2188 a8083063 Iustin Pop
      }
2189 a8083063 Iustin Pop
    nodes_0 = self.cfg.GetNodeList()
2190 a8083063 Iustin Pop
    nodes_1 = nodes_0 + [self.op.node_name, ]
2191 a8083063 Iustin Pop
    return env, nodes_0, nodes_1
2192 a8083063 Iustin Pop
2193 a8083063 Iustin Pop
  def CheckPrereq(self):
2194 a8083063 Iustin Pop
    """Check prerequisites.
2195 a8083063 Iustin Pop

2196 a8083063 Iustin Pop
    This checks:
2197 a8083063 Iustin Pop
     - the new node is not already in the config
2198 a8083063 Iustin Pop
     - it is resolvable
2199 a8083063 Iustin Pop
     - its parameters (single/dual homed) matches the cluster
2200 a8083063 Iustin Pop

2201 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
2202 a8083063 Iustin Pop

2203 a8083063 Iustin Pop
    """
2204 a8083063 Iustin Pop
    node_name = self.op.node_name
2205 a8083063 Iustin Pop
    cfg = self.cfg
2206 a8083063 Iustin Pop
2207 89e1fc26 Iustin Pop
    dns_data = utils.HostInfo(node_name)
2208 a8083063 Iustin Pop
2209 bcf043c9 Iustin Pop
    node = dns_data.name
2210 bcf043c9 Iustin Pop
    primary_ip = self.op.primary_ip = dns_data.ip
2211 a8083063 Iustin Pop
    secondary_ip = getattr(self.op, "secondary_ip", None)
2212 a8083063 Iustin Pop
    if secondary_ip is None:
2213 a8083063 Iustin Pop
      secondary_ip = primary_ip
2214 a8083063 Iustin Pop
    if not utils.IsValidIP(secondary_ip):
2215 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Invalid secondary IP given")
2216 a8083063 Iustin Pop
    self.op.secondary_ip = secondary_ip
2217 e7c6e02b Michael Hanselmann
2218 a8083063 Iustin Pop
    node_list = cfg.GetNodeList()
2219 e7c6e02b Michael Hanselmann
    if not self.op.readd and node in node_list:
2220 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is already in the configuration" %
2221 e7c6e02b Michael Hanselmann
                                 node)
2222 e7c6e02b Michael Hanselmann
    elif self.op.readd and node not in node_list:
2223 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is not in the configuration" % node)
2224 a8083063 Iustin Pop
2225 a8083063 Iustin Pop
    for existing_node_name in node_list:
2226 a8083063 Iustin Pop
      existing_node = cfg.GetNodeInfo(existing_node_name)
2227 e7c6e02b Michael Hanselmann
2228 e7c6e02b Michael Hanselmann
      if self.op.readd and node == existing_node_name:
2229 e7c6e02b Michael Hanselmann
        if (existing_node.primary_ip != primary_ip or
2230 e7c6e02b Michael Hanselmann
            existing_node.secondary_ip != secondary_ip):
2231 e7c6e02b Michael Hanselmann
          raise errors.OpPrereqError("Readded node doesn't have the same IP"
2232 e7c6e02b Michael Hanselmann
                                     " address configuration as before")
2233 e7c6e02b Michael Hanselmann
        continue
2234 e7c6e02b Michael Hanselmann
2235 a8083063 Iustin Pop
      if (existing_node.primary_ip == primary_ip or
2236 a8083063 Iustin Pop
          existing_node.secondary_ip == primary_ip or
2237 a8083063 Iustin Pop
          existing_node.primary_ip == secondary_ip or
2238 a8083063 Iustin Pop
          existing_node.secondary_ip == secondary_ip):
2239 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("New node ip address(es) conflict with"
2240 3ecf6786 Iustin Pop
                                   " existing node %s" % existing_node.name)
2241 a8083063 Iustin Pop
2242 a8083063 Iustin Pop
    # check that the type of the node (single versus dual homed) is the
2243 a8083063 Iustin Pop
    # same as for the master
2244 d6a02168 Michael Hanselmann
    myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
2245 a8083063 Iustin Pop
    master_singlehomed = myself.secondary_ip == myself.primary_ip
2246 a8083063 Iustin Pop
    newbie_singlehomed = secondary_ip == primary_ip
2247 a8083063 Iustin Pop
    if master_singlehomed != newbie_singlehomed:
2248 a8083063 Iustin Pop
      if master_singlehomed:
2249 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has no private ip but the"
2250 3ecf6786 Iustin Pop
                                   " new node has one")
2251 a8083063 Iustin Pop
      else:
2252 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has a private ip but the"
2253 3ecf6786 Iustin Pop
                                   " new node doesn't have one")
2254 a8083063 Iustin Pop
2255 a8083063 Iustin Pop
    # checks reachablity
2256 b15d625f Iustin Pop
    if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
2257 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node not reachable by ping")
2258 a8083063 Iustin Pop
2259 a8083063 Iustin Pop
    if not newbie_singlehomed:
2260 a8083063 Iustin Pop
      # check reachability from my secondary ip to newbie's secondary ip
2261 b15d625f Iustin Pop
      if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
2262 b15d625f Iustin Pop
                           source=myself.secondary_ip):
2263 f4bc1f2c Michael Hanselmann
        raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
2264 f4bc1f2c Michael Hanselmann
                                   " based ping to noded port")
2265 a8083063 Iustin Pop
2266 0fff97e9 Guido Trotter
    cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2267 ec0292f1 Iustin Pop
    mc_now, _ = self.cfg.GetMasterCandidateStats()
2268 ec0292f1 Iustin Pop
    master_candidate = mc_now < cp_size
2269 0fff97e9 Guido Trotter
2270 a8083063 Iustin Pop
    self.new_node = objects.Node(name=node,
2271 a8083063 Iustin Pop
                                 primary_ip=primary_ip,
2272 0fff97e9 Guido Trotter
                                 secondary_ip=secondary_ip,
2273 fc0fe88c Iustin Pop
                                 master_candidate=master_candidate,
2274 af64c0ea Iustin Pop
                                 offline=False, drained=False)
2275 a8083063 Iustin Pop
2276 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2277 a8083063 Iustin Pop
    """Adds the new node to the cluster.
2278 a8083063 Iustin Pop

2279 a8083063 Iustin Pop
    """
2280 a8083063 Iustin Pop
    new_node = self.new_node
2281 a8083063 Iustin Pop
    node = new_node.name
2282 a8083063 Iustin Pop
2283 a8083063 Iustin Pop
    # check connectivity
2284 72737a7f Iustin Pop
    result = self.rpc.call_version([node])[node]
2285 781de953 Iustin Pop
    result.Raise()
2286 781de953 Iustin Pop
    if result.data:
2287 781de953 Iustin Pop
      if constants.PROTOCOL_VERSION == result.data:
2288 9a4f63d1 Iustin Pop
        logging.info("Communication to node %s fine, sw version %s match",
2289 781de953 Iustin Pop
                     node, result.data)
2290 a8083063 Iustin Pop
      else:
2291 3ecf6786 Iustin Pop
        raise errors.OpExecError("Version mismatch master version %s,"
2292 3ecf6786 Iustin Pop
                                 " node version %s" %
2293 781de953 Iustin Pop
                                 (constants.PROTOCOL_VERSION, result.data))
2294 a8083063 Iustin Pop
    else:
2295 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot get version from the new node")
2296 a8083063 Iustin Pop
2297 a8083063 Iustin Pop
    # setup ssh on node
2298 9a4f63d1 Iustin Pop
    logging.info("Copy ssh key to node %s", node)
2299 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
2300 a8083063 Iustin Pop
    keyarray = []
2301 70d9e3d8 Iustin Pop
    keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
2302 70d9e3d8 Iustin Pop
                constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
2303 70d9e3d8 Iustin Pop
                priv_key, pub_key]
2304 a8083063 Iustin Pop
2305 a8083063 Iustin Pop
    for i in keyfiles:
2306 a8083063 Iustin Pop
      f = open(i, 'r')
2307 a8083063 Iustin Pop
      try:
2308 a8083063 Iustin Pop
        keyarray.append(f.read())
2309 a8083063 Iustin Pop
      finally:
2310 a8083063 Iustin Pop
        f.close()
2311 a8083063 Iustin Pop
2312 72737a7f Iustin Pop
    result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
2313 72737a7f Iustin Pop
                                    keyarray[2],
2314 72737a7f Iustin Pop
                                    keyarray[3], keyarray[4], keyarray[5])
2315 a8083063 Iustin Pop
2316 a1b805fb Iustin Pop
    msg = result.RemoteFailMsg()
2317 a1b805fb Iustin Pop
    if msg:
2318 a1b805fb Iustin Pop
      raise errors.OpExecError("Cannot transfer ssh keys to the"
2319 a1b805fb Iustin Pop
                               " new node: %s" % msg)
2320 a8083063 Iustin Pop
2321 a8083063 Iustin Pop
    # Add node to our /etc/hosts, and add key to known_hosts
2322 b86a6bcd Guido Trotter
    if self.cfg.GetClusterInfo().modify_etc_hosts:
2323 b86a6bcd Guido Trotter
      utils.AddHostToEtcHosts(new_node.name)
2324 c8a0948f Michael Hanselmann
2325 a8083063 Iustin Pop
    if new_node.secondary_ip != new_node.primary_ip:
2326 781de953 Iustin Pop
      result = self.rpc.call_node_has_ip_address(new_node.name,
2327 781de953 Iustin Pop
                                                 new_node.secondary_ip)
2328 c2fc8250 Iustin Pop
      msg = result.RemoteFailMsg()
2329 c2fc8250 Iustin Pop
      if msg:
2330 c2fc8250 Iustin Pop
        raise errors.OpPrereqError("Failure checking secondary ip"
2331 c2fc8250 Iustin Pop
                                   " on node %s: %s" % (new_node.name, msg))
2332 c2fc8250 Iustin Pop
      if not result.payload:
2333 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Node claims it doesn't have the secondary ip"
2334 f4bc1f2c Michael Hanselmann
                                 " you gave (%s). Please fix and re-run this"
2335 f4bc1f2c Michael Hanselmann
                                 " command." % new_node.secondary_ip)
2336 a8083063 Iustin Pop
2337 d6a02168 Michael Hanselmann
    node_verify_list = [self.cfg.GetMasterNode()]
2338 5c0527ed Guido Trotter
    node_verify_param = {
2339 5c0527ed Guido Trotter
      'nodelist': [node],
2340 5c0527ed Guido Trotter
      # TODO: do a node-net-test as well?
2341 5c0527ed Guido Trotter
    }
2342 5c0527ed Guido Trotter
2343 72737a7f Iustin Pop
    result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
2344 72737a7f Iustin Pop
                                       self.cfg.GetClusterName())
2345 5c0527ed Guido Trotter
    for verifier in node_verify_list:
2346 6f68a739 Iustin Pop
      msg = result[verifier].RemoteFailMsg()
2347 6f68a739 Iustin Pop
      if msg:
2348 6f68a739 Iustin Pop
        raise errors.OpExecError("Cannot communicate with node %s: %s" %
2349 6f68a739 Iustin Pop
                                 (verifier, msg))
2350 6f68a739 Iustin Pop
      nl_payload = result[verifier].payload['nodelist']
2351 6f68a739 Iustin Pop
      if nl_payload:
2352 6f68a739 Iustin Pop
        for failed in nl_payload:
2353 5c0527ed Guido Trotter
          feedback_fn("ssh/hostname verification failed %s -> %s" %
2354 6f68a739 Iustin Pop
                      (verifier, nl_payload[failed]))
2355 5c0527ed Guido Trotter
        raise errors.OpExecError("ssh/hostname verification failed.")
2356 ff98055b Iustin Pop
2357 d8470559 Michael Hanselmann
    if self.op.readd:
2358 28eddce5 Guido Trotter
      _RedistributeAncillaryFiles(self)
2359 d8470559 Michael Hanselmann
      self.context.ReaddNode(new_node)
2360 d8470559 Michael Hanselmann
    else:
2361 035566e3 Iustin Pop
      _RedistributeAncillaryFiles(self, additional_nodes=[node])
2362 d8470559 Michael Hanselmann
      self.context.AddNode(new_node)
2363 a8083063 Iustin Pop
2364 a8083063 Iustin Pop
2365 b31c8676 Iustin Pop
class LUSetNodeParams(LogicalUnit):
2366 b31c8676 Iustin Pop
  """Modifies the parameters of a node.
2367 b31c8676 Iustin Pop

2368 b31c8676 Iustin Pop
  """
2369 b31c8676 Iustin Pop
  HPATH = "node-modify"
2370 b31c8676 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2371 b31c8676 Iustin Pop
  _OP_REQP = ["node_name"]
2372 b31c8676 Iustin Pop
  REQ_BGL = False
2373 b31c8676 Iustin Pop
2374 b31c8676 Iustin Pop
  def CheckArguments(self):
2375 b31c8676 Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2376 b31c8676 Iustin Pop
    if node_name is None:
2377 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2378 b31c8676 Iustin Pop
    self.op.node_name = node_name
2379 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'master_candidate')
2380 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'offline')
2381 c9d443ea Iustin Pop
    _CheckBooleanOpField(self.op, 'drained')
2382 c9d443ea Iustin Pop
    all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
2383 c9d443ea Iustin Pop
    if all_mods.count(None) == 3:
2384 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Please pass at least one modification")
2385 c9d443ea Iustin Pop
    if all_mods.count(True) > 1:
2386 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Can't set the node into more than one"
2387 c9d443ea Iustin Pop
                                 " state at the same time")
2388 b31c8676 Iustin Pop
2389 b31c8676 Iustin Pop
  def ExpandNames(self):
2390 b31c8676 Iustin Pop
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2391 b31c8676 Iustin Pop
2392 b31c8676 Iustin Pop
  def BuildHooksEnv(self):
2393 b31c8676 Iustin Pop
    """Build hooks env.
2394 b31c8676 Iustin Pop

2395 b31c8676 Iustin Pop
    This runs on the master node.
2396 b31c8676 Iustin Pop

2397 b31c8676 Iustin Pop
    """
2398 b31c8676 Iustin Pop
    env = {
2399 b31c8676 Iustin Pop
      "OP_TARGET": self.op.node_name,
2400 b31c8676 Iustin Pop
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2401 3a5ba66a Iustin Pop
      "OFFLINE": str(self.op.offline),
2402 c9d443ea Iustin Pop
      "DRAINED": str(self.op.drained),
2403 b31c8676 Iustin Pop
      }
2404 b31c8676 Iustin Pop
    nl = [self.cfg.GetMasterNode(),
2405 b31c8676 Iustin Pop
          self.op.node_name]
2406 b31c8676 Iustin Pop
    return env, nl, nl
2407 b31c8676 Iustin Pop
2408 b31c8676 Iustin Pop
  def CheckPrereq(self):
2409 b31c8676 Iustin Pop
    """Check prerequisites.
2410 b31c8676 Iustin Pop

2411 b31c8676 Iustin Pop
    This only checks the instance list against the existing names.
2412 b31c8676 Iustin Pop

2413 b31c8676 Iustin Pop
    """
2414 3a5ba66a Iustin Pop
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2415 b31c8676 Iustin Pop
2416 c9d443ea Iustin Pop
    if ((self.op.master_candidate == False or self.op.offline == True or
2417 c9d443ea Iustin Pop
         self.op.drained == True) and node.master_candidate):
2418 3a5ba66a Iustin Pop
      # we will demote the node from master_candidate
2419 3a26773f Iustin Pop
      if self.op.node_name == self.cfg.GetMasterNode():
2420 3a26773f Iustin Pop
        raise errors.OpPrereqError("The master node has to be a"
2421 c9d443ea Iustin Pop
                                   " master candidate, online and not drained")
2422 3e83dd48 Iustin Pop
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2423 3a5ba66a Iustin Pop
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2424 3e83dd48 Iustin Pop
      if num_candidates <= cp_size:
2425 3e83dd48 Iustin Pop
        msg = ("Not enough master candidates (desired"
2426 3e83dd48 Iustin Pop
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2427 3a5ba66a Iustin Pop
        if self.op.force:
2428 3e83dd48 Iustin Pop
          self.LogWarning(msg)
2429 3e83dd48 Iustin Pop
        else:
2430 3e83dd48 Iustin Pop
          raise errors.OpPrereqError(msg)
2431 3e83dd48 Iustin Pop
2432 c9d443ea Iustin Pop
    if (self.op.master_candidate == True and
2433 c9d443ea Iustin Pop
        ((node.offline and not self.op.offline == False) or
2434 c9d443ea Iustin Pop
         (node.drained and not self.op.drained == False))):
2435 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
2436 949bdabe Iustin Pop
                                 " to master_candidate" % node.name)
2437 3a5ba66a Iustin Pop
2438 b31c8676 Iustin Pop
    return
2439 b31c8676 Iustin Pop
2440 b31c8676 Iustin Pop
  def Exec(self, feedback_fn):
2441 b31c8676 Iustin Pop
    """Modifies a node.
2442 b31c8676 Iustin Pop

2443 b31c8676 Iustin Pop
    """
2444 3a5ba66a Iustin Pop
    node = self.node
2445 b31c8676 Iustin Pop
2446 b31c8676 Iustin Pop
    result = []
2447 c9d443ea Iustin Pop
    changed_mc = False
2448 b31c8676 Iustin Pop
2449 3a5ba66a Iustin Pop
    if self.op.offline is not None:
2450 3a5ba66a Iustin Pop
      node.offline = self.op.offline
2451 3a5ba66a Iustin Pop
      result.append(("offline", str(self.op.offline)))
2452 c9d443ea Iustin Pop
      if self.op.offline == True:
2453 c9d443ea Iustin Pop
        if node.master_candidate:
2454 c9d443ea Iustin Pop
          node.master_candidate = False
2455 c9d443ea Iustin Pop
          changed_mc = True
2456 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to offline"))
2457 c9d443ea Iustin Pop
        if node.drained:
2458 c9d443ea Iustin Pop
          node.drained = False
2459 c9d443ea Iustin Pop
          result.append(("drained", "clear drained status due to offline"))
2460 3a5ba66a Iustin Pop
2461 b31c8676 Iustin Pop
    if self.op.master_candidate is not None:
2462 b31c8676 Iustin Pop
      node.master_candidate = self.op.master_candidate
2463 c9d443ea Iustin Pop
      changed_mc = True
2464 b31c8676 Iustin Pop
      result.append(("master_candidate", str(self.op.master_candidate)))
2465 56aa9fd5 Iustin Pop
      if self.op.master_candidate == False:
2466 56aa9fd5 Iustin Pop
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2467 0959c824 Iustin Pop
        msg = rrc.RemoteFailMsg()
2468 0959c824 Iustin Pop
        if msg:
2469 0959c824 Iustin Pop
          self.LogWarning("Node failed to demote itself: %s" % msg)
2470 b31c8676 Iustin Pop
2471 c9d443ea Iustin Pop
    if self.op.drained is not None:
2472 c9d443ea Iustin Pop
      node.drained = self.op.drained
2473 82e12743 Iustin Pop
      result.append(("drained", str(self.op.drained)))
2474 c9d443ea Iustin Pop
      if self.op.drained == True:
2475 c9d443ea Iustin Pop
        if node.master_candidate:
2476 c9d443ea Iustin Pop
          node.master_candidate = False
2477 c9d443ea Iustin Pop
          changed_mc = True
2478 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to drain"))
2479 c9d443ea Iustin Pop
        if node.offline:
2480 c9d443ea Iustin Pop
          node.offline = False
2481 c9d443ea Iustin Pop
          result.append(("offline", "clear offline status due to drain"))
2482 c9d443ea Iustin Pop
2483 b31c8676 Iustin Pop
    # this will trigger configuration file update, if needed
2484 b31c8676 Iustin Pop
    self.cfg.Update(node)
2485 b31c8676 Iustin Pop
    # this will trigger job queue propagation or cleanup
2486 c9d443ea Iustin Pop
    if changed_mc:
2487 3a26773f Iustin Pop
      self.context.ReaddNode(node)
2488 b31c8676 Iustin Pop
2489 b31c8676 Iustin Pop
    return result
2490 b31c8676 Iustin Pop
2491 b31c8676 Iustin Pop
2492 f5118ade Iustin Pop
class LUPowercycleNode(NoHooksLU):
2493 f5118ade Iustin Pop
  """Powercycles a node.
2494 f5118ade Iustin Pop

2495 f5118ade Iustin Pop
  """
2496 f5118ade Iustin Pop
  _OP_REQP = ["node_name", "force"]
2497 f5118ade Iustin Pop
  REQ_BGL = False
2498 f5118ade Iustin Pop
2499 f5118ade Iustin Pop
  def CheckArguments(self):
2500 f5118ade Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2501 f5118ade Iustin Pop
    if node_name is None:
2502 f5118ade Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2503 f5118ade Iustin Pop
    self.op.node_name = node_name
2504 f5118ade Iustin Pop
    if node_name == self.cfg.GetMasterNode() and not self.op.force:
2505 f5118ade Iustin Pop
      raise errors.OpPrereqError("The node is the master and the force"
2506 f5118ade Iustin Pop
                                 " parameter was not set")
2507 f5118ade Iustin Pop
2508 f5118ade Iustin Pop
  def ExpandNames(self):
2509 f5118ade Iustin Pop
    """Locking for PowercycleNode.
2510 f5118ade Iustin Pop

2511 f5118ade Iustin Pop
    This is a last-resource option and shouldn't block on other
2512 f5118ade Iustin Pop
    jobs. Therefore, we grab no locks.
2513 f5118ade Iustin Pop

2514 f5118ade Iustin Pop
    """
2515 f5118ade Iustin Pop
    self.needed_locks = {}
2516 f5118ade Iustin Pop
2517 f5118ade Iustin Pop
  def CheckPrereq(self):
2518 f5118ade Iustin Pop
    """Check prerequisites.
2519 f5118ade Iustin Pop

2520 f5118ade Iustin Pop
    This LU has no prereqs.
2521 f5118ade Iustin Pop

2522 f5118ade Iustin Pop
    """
2523 f5118ade Iustin Pop
    pass
2524 f5118ade Iustin Pop
2525 f5118ade Iustin Pop
  def Exec(self, feedback_fn):
2526 f5118ade Iustin Pop
    """Reboots a node.
2527 f5118ade Iustin Pop

2528 f5118ade Iustin Pop
    """
2529 f5118ade Iustin Pop
    result = self.rpc.call_node_powercycle(self.op.node_name,
2530 f5118ade Iustin Pop
                                           self.cfg.GetHypervisorType())
2531 f5118ade Iustin Pop
    msg = result.RemoteFailMsg()
2532 f5118ade Iustin Pop
    if msg:
2533 f5118ade Iustin Pop
      raise errors.OpExecError("Failed to schedule the reboot: %s" % msg)
2534 f5118ade Iustin Pop
    return result.payload
2535 f5118ade Iustin Pop
2536 f5118ade Iustin Pop
2537 a8083063 Iustin Pop
class LUQueryClusterInfo(NoHooksLU):
2538 a8083063 Iustin Pop
  """Query cluster configuration.
2539 a8083063 Iustin Pop

2540 a8083063 Iustin Pop
  """
2541 a8083063 Iustin Pop
  _OP_REQP = []
2542 642339cf Guido Trotter
  REQ_BGL = False
2543 642339cf Guido Trotter
2544 642339cf Guido Trotter
  def ExpandNames(self):
2545 642339cf Guido Trotter
    self.needed_locks = {}
2546 a8083063 Iustin Pop
2547 a8083063 Iustin Pop
  def CheckPrereq(self):
2548 a8083063 Iustin Pop
    """No prerequsites needed for this LU.
2549 a8083063 Iustin Pop

2550 a8083063 Iustin Pop
    """
2551 a8083063 Iustin Pop
    pass
2552 a8083063 Iustin Pop
2553 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2554 a8083063 Iustin Pop
    """Return cluster config.
2555 a8083063 Iustin Pop

2556 a8083063 Iustin Pop
    """
2557 469f88e1 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
2558 a8083063 Iustin Pop
    result = {
2559 a8083063 Iustin Pop
      "software_version": constants.RELEASE_VERSION,
2560 a8083063 Iustin Pop
      "protocol_version": constants.PROTOCOL_VERSION,
2561 a8083063 Iustin Pop
      "config_version": constants.CONFIG_VERSION,
2562 a8083063 Iustin Pop
      "os_api_version": constants.OS_API_VERSION,
2563 a8083063 Iustin Pop
      "export_version": constants.EXPORT_VERSION,
2564 a8083063 Iustin Pop
      "architecture": (platform.architecture()[0], platform.machine()),
2565 469f88e1 Iustin Pop
      "name": cluster.cluster_name,
2566 469f88e1 Iustin Pop
      "master": cluster.master_node,
2567 02691904 Alexander Schreiber
      "default_hypervisor": cluster.default_hypervisor,
2568 469f88e1 Iustin Pop
      "enabled_hypervisors": cluster.enabled_hypervisors,
2569 7a735d6a Guido Trotter
      "hvparams": dict([(hypervisor, cluster.hvparams[hypervisor])
2570 7a735d6a Guido Trotter
                        for hypervisor in cluster.enabled_hypervisors]),
2571 469f88e1 Iustin Pop
      "beparams": cluster.beparams,
2572 1094acda Guido Trotter
      "nicparams": cluster.nicparams,
2573 4b7735f9 Iustin Pop
      "candidate_pool_size": cluster.candidate_pool_size,
2574 7a56b411 Guido Trotter
      "master_netdev": cluster.master_netdev,
2575 7a56b411 Guido Trotter
      "volume_group_name": cluster.volume_group_name,
2576 7a56b411 Guido Trotter
      "file_storage_dir": cluster.file_storage_dir,
2577 a8083063 Iustin Pop
      }
2578 a8083063 Iustin Pop
2579 a8083063 Iustin Pop
    return result
2580 a8083063 Iustin Pop
2581 a8083063 Iustin Pop
2582 ae5849b5 Michael Hanselmann
class LUQueryConfigValues(NoHooksLU):
2583 ae5849b5 Michael Hanselmann
  """Return configuration values.
2584 a8083063 Iustin Pop

2585 a8083063 Iustin Pop
  """
2586 a8083063 Iustin Pop
  _OP_REQP = []
2587 642339cf Guido Trotter
  REQ_BGL = False
2588 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet()
2589 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2590 642339cf Guido Trotter
2591 642339cf Guido Trotter
  def ExpandNames(self):
2592 642339cf Guido Trotter
    self.needed_locks = {}
2593 a8083063 Iustin Pop
2594 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2595 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2596 ae5849b5 Michael Hanselmann
                       selected=self.op.output_fields)
2597 ae5849b5 Michael Hanselmann
2598 a8083063 Iustin Pop
  def CheckPrereq(self):
2599 a8083063 Iustin Pop
    """No prerequisites.
2600 a8083063 Iustin Pop

2601 a8083063 Iustin Pop
    """
2602 a8083063 Iustin Pop
    pass
2603 a8083063 Iustin Pop
2604 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2605 a8083063 Iustin Pop
    """Dump a representation of the cluster config to the standard output.
2606 a8083063 Iustin Pop

2607 a8083063 Iustin Pop
    """
2608 ae5849b5 Michael Hanselmann
    values = []
2609 ae5849b5 Michael Hanselmann
    for field in self.op.output_fields:
2610 ae5849b5 Michael Hanselmann
      if field == "cluster_name":
2611 3ccafd0e Iustin Pop
        entry = self.cfg.GetClusterName()
2612 ae5849b5 Michael Hanselmann
      elif field == "master_node":
2613 3ccafd0e Iustin Pop
        entry = self.cfg.GetMasterNode()
2614 3ccafd0e Iustin Pop
      elif field == "drain_flag":
2615 3ccafd0e Iustin Pop
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2616 ae5849b5 Michael Hanselmann
      else:
2617 ae5849b5 Michael Hanselmann
        raise errors.ParameterError(field)
2618 3ccafd0e Iustin Pop
      values.append(entry)
2619 ae5849b5 Michael Hanselmann
    return values
2620 a8083063 Iustin Pop
2621 a8083063 Iustin Pop
2622 a8083063 Iustin Pop
class LUActivateInstanceDisks(NoHooksLU):
2623 a8083063 Iustin Pop
  """Bring up an instance's disks.
2624 a8083063 Iustin Pop

2625 a8083063 Iustin Pop
  """
2626 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2627 f22a8ba3 Guido Trotter
  REQ_BGL = False
2628 f22a8ba3 Guido Trotter
2629 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2630 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2631 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2632 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2633 f22a8ba3 Guido Trotter
2634 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2635 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2636 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2637 a8083063 Iustin Pop
2638 a8083063 Iustin Pop
  def CheckPrereq(self):
2639 a8083063 Iustin Pop
    """Check prerequisites.
2640 a8083063 Iustin Pop

2641 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2642 a8083063 Iustin Pop

2643 a8083063 Iustin Pop
    """
2644 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2645 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2646 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2647 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2648 a8083063 Iustin Pop
2649 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2650 a8083063 Iustin Pop
    """Activate the disks.
2651 a8083063 Iustin Pop

2652 a8083063 Iustin Pop
    """
2653 b9bddb6b Iustin Pop
    disks_ok, disks_info = _AssembleInstanceDisks(self, self.instance)
2654 a8083063 Iustin Pop
    if not disks_ok:
2655 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot activate block devices")
2656 a8083063 Iustin Pop
2657 a8083063 Iustin Pop
    return disks_info
2658 a8083063 Iustin Pop
2659 a8083063 Iustin Pop
2660 b9bddb6b Iustin Pop
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False):
2661 a8083063 Iustin Pop
  """Prepare the block devices for an instance.
2662 a8083063 Iustin Pop

2663 a8083063 Iustin Pop
  This sets up the block devices on all nodes.
2664 a8083063 Iustin Pop

2665 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
2666 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
2667 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
2668 e4376078 Iustin Pop
  @param instance: the instance for whose disks we assemble
2669 e4376078 Iustin Pop
  @type ignore_secondaries: boolean
2670 e4376078 Iustin Pop
  @param ignore_secondaries: if true, errors on secondary nodes
2671 e4376078 Iustin Pop
      won't result in an error return from the function
2672 e4376078 Iustin Pop
  @return: False if the operation failed, otherwise a list of
2673 e4376078 Iustin Pop
      (host, instance_visible_name, node_visible_name)
2674 e4376078 Iustin Pop
      with the mapping from node devices to instance devices
2675 a8083063 Iustin Pop

2676 a8083063 Iustin Pop
  """
2677 a8083063 Iustin Pop
  device_info = []
2678 a8083063 Iustin Pop
  disks_ok = True
2679 fdbd668d Iustin Pop
  iname = instance.name
2680 fdbd668d Iustin Pop
  # With the two passes mechanism we try to reduce the window of
2681 fdbd668d Iustin Pop
  # opportunity for the race condition of switching DRBD to primary
2682 fdbd668d Iustin Pop
  # before handshaking occured, but we do not eliminate it
2683 fdbd668d Iustin Pop
2684 fdbd668d Iustin Pop
  # The proper fix would be to wait (with some limits) until the
2685 fdbd668d Iustin Pop
  # connection has been made and drbd transitions from WFConnection
2686 fdbd668d Iustin Pop
  # into any other network-connected state (Connected, SyncTarget,
2687 fdbd668d Iustin Pop
  # SyncSource, etc.)
2688 fdbd668d Iustin Pop
2689 fdbd668d Iustin Pop
  # 1st pass, assemble on all nodes in secondary mode
2690 a8083063 Iustin Pop
  for inst_disk in instance.disks:
2691 a8083063 Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2692 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2693 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
2694 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2695 53c14ef1 Iustin Pop
      if msg:
2696 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2697 53c14ef1 Iustin Pop
                           " (is_primary=False, pass=1): %s",
2698 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2699 fdbd668d Iustin Pop
        if not ignore_secondaries:
2700 a8083063 Iustin Pop
          disks_ok = False
2701 fdbd668d Iustin Pop
2702 fdbd668d Iustin Pop
  # FIXME: race condition on drbd migration to primary
2703 fdbd668d Iustin Pop
2704 fdbd668d Iustin Pop
  # 2nd pass, do only the primary node
2705 fdbd668d Iustin Pop
  for inst_disk in instance.disks:
2706 fdbd668d Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2707 fdbd668d Iustin Pop
      if node != instance.primary_node:
2708 fdbd668d Iustin Pop
        continue
2709 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2710 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
2711 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2712 53c14ef1 Iustin Pop
      if msg:
2713 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2714 53c14ef1 Iustin Pop
                           " (is_primary=True, pass=2): %s",
2715 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2716 fdbd668d Iustin Pop
        disks_ok = False
2717 1dff8e07 Iustin Pop
    device_info.append((instance.primary_node, inst_disk.iv_name,
2718 1dff8e07 Iustin Pop
                        result.payload))
2719 a8083063 Iustin Pop
2720 b352ab5b Iustin Pop
  # leave the disks configured for the primary node
2721 b352ab5b Iustin Pop
  # this is a workaround that would be fixed better by
2722 b352ab5b Iustin Pop
  # improving the logical/physical id handling
2723 b352ab5b Iustin Pop
  for disk in instance.disks:
2724 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(disk, instance.primary_node)
2725 b352ab5b Iustin Pop
2726 a8083063 Iustin Pop
  return disks_ok, device_info
2727 a8083063 Iustin Pop
2728 a8083063 Iustin Pop
2729 b9bddb6b Iustin Pop
def _StartInstanceDisks(lu, instance, force):
2730 3ecf6786 Iustin Pop
  """Start the disks of an instance.
2731 3ecf6786 Iustin Pop

2732 3ecf6786 Iustin Pop
  """
2733 b9bddb6b Iustin Pop
  disks_ok, dummy = _AssembleInstanceDisks(lu, instance,
2734 fe7b0351 Michael Hanselmann
                                           ignore_secondaries=force)
2735 fe7b0351 Michael Hanselmann
  if not disks_ok:
2736 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(lu, instance)
2737 fe7b0351 Michael Hanselmann
    if force is not None and not force:
2738 86d9d3bb Iustin Pop
      lu.proc.LogWarning("", hint="If the message above refers to a"
2739 86d9d3bb Iustin Pop
                         " secondary node,"
2740 86d9d3bb Iustin Pop
                         " you can retry the operation using '--force'.")
2741 3ecf6786 Iustin Pop
    raise errors.OpExecError("Disk consistency error")
2742 fe7b0351 Michael Hanselmann
2743 fe7b0351 Michael Hanselmann
2744 a8083063 Iustin Pop
class LUDeactivateInstanceDisks(NoHooksLU):
2745 a8083063 Iustin Pop
  """Shutdown an instance's disks.
2746 a8083063 Iustin Pop

2747 a8083063 Iustin Pop
  """
2748 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2749 f22a8ba3 Guido Trotter
  REQ_BGL = False
2750 f22a8ba3 Guido Trotter
2751 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2752 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2753 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2754 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2755 f22a8ba3 Guido Trotter
2756 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2757 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2758 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2759 a8083063 Iustin Pop
2760 a8083063 Iustin Pop
  def CheckPrereq(self):
2761 a8083063 Iustin Pop
    """Check prerequisites.
2762 a8083063 Iustin Pop

2763 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2764 a8083063 Iustin Pop

2765 a8083063 Iustin Pop
    """
2766 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2767 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2768 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2769 a8083063 Iustin Pop
2770 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2771 a8083063 Iustin Pop
    """Deactivate the disks
2772 a8083063 Iustin Pop

2773 a8083063 Iustin Pop
    """
2774 a8083063 Iustin Pop
    instance = self.instance
2775 b9bddb6b Iustin Pop
    _SafeShutdownInstanceDisks(self, instance)
2776 a8083063 Iustin Pop
2777 a8083063 Iustin Pop
2778 b9bddb6b Iustin Pop
def _SafeShutdownInstanceDisks(lu, instance):
2779 155d6c75 Guido Trotter
  """Shutdown block devices of an instance.
2780 155d6c75 Guido Trotter

2781 155d6c75 Guido Trotter
  This function checks if an instance is running, before calling
2782 155d6c75 Guido Trotter
  _ShutdownInstanceDisks.
2783 155d6c75 Guido Trotter

2784 155d6c75 Guido Trotter
  """
2785 aca13712 Iustin Pop
  pnode = instance.primary_node
2786 aca13712 Iustin Pop
  ins_l = lu.rpc.call_instance_list([pnode], [instance.hypervisor])
2787 aca13712 Iustin Pop
  ins_l = ins_l[pnode]
2788 aca13712 Iustin Pop
  msg = ins_l.RemoteFailMsg()
2789 aca13712 Iustin Pop
  if msg:
2790 aca13712 Iustin Pop
    raise errors.OpExecError("Can't contact node %s: %s" % (pnode, msg))
2791 aca13712 Iustin Pop
2792 aca13712 Iustin Pop
  if instance.name in ins_l.payload:
2793 155d6c75 Guido Trotter
    raise errors.OpExecError("Instance is running, can't shutdown"
2794 155d6c75 Guido Trotter
                             " block devices.")
2795 155d6c75 Guido Trotter
2796 b9bddb6b Iustin Pop
  _ShutdownInstanceDisks(lu, instance)
2797 a8083063 Iustin Pop
2798 a8083063 Iustin Pop
2799 b9bddb6b Iustin Pop
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2800 a8083063 Iustin Pop
  """Shutdown block devices of an instance.
2801 a8083063 Iustin Pop

2802 a8083063 Iustin Pop
  This does the shutdown on all nodes of the instance.
2803 a8083063 Iustin Pop

2804 a8083063 Iustin Pop
  If the ignore_primary is false, errors on the primary node are
2805 a8083063 Iustin Pop
  ignored.
2806 a8083063 Iustin Pop

2807 a8083063 Iustin Pop
  """
2808 cacfd1fd Iustin Pop
  all_result = True
2809 a8083063 Iustin Pop
  for disk in instance.disks:
2810 a8083063 Iustin Pop
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2811 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(top_disk, node)
2812 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2813 cacfd1fd Iustin Pop
      msg = result.RemoteFailMsg()
2814 cacfd1fd Iustin Pop
      if msg:
2815 cacfd1fd Iustin Pop
        lu.LogWarning("Could not shutdown block device %s on node %s: %s",
2816 cacfd1fd Iustin Pop
                      disk.iv_name, node, msg)
2817 a8083063 Iustin Pop
        if not ignore_primary or node != instance.primary_node:
2818 cacfd1fd Iustin Pop
          all_result = False
2819 cacfd1fd Iustin Pop
  return all_result
2820 a8083063 Iustin Pop
2821 a8083063 Iustin Pop
2822 9ca87a96 Iustin Pop
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2823 d4f16fd9 Iustin Pop
  """Checks if a node has enough free memory.
2824 d4f16fd9 Iustin Pop

2825 d4f16fd9 Iustin Pop
  This function check if a given node has the needed amount of free
2826 d4f16fd9 Iustin Pop
  memory. In case the node has less memory or we cannot get the
2827 d4f16fd9 Iustin Pop
  information from the node, this function raise an OpPrereqError
2828 d4f16fd9 Iustin Pop
  exception.
2829 d4f16fd9 Iustin Pop

2830 b9bddb6b Iustin Pop
  @type lu: C{LogicalUnit}
2831 b9bddb6b Iustin Pop
  @param lu: a logical unit from which we get configuration data
2832 e69d05fd Iustin Pop
  @type node: C{str}
2833 e69d05fd Iustin Pop
  @param node: the node to check
2834 e69d05fd Iustin Pop
  @type reason: C{str}
2835 e69d05fd Iustin Pop
  @param reason: string to use in the error message
2836 e69d05fd Iustin Pop
  @type requested: C{int}
2837 e69d05fd Iustin Pop
  @param requested: the amount of memory in MiB to check for
2838 9ca87a96 Iustin Pop
  @type hypervisor_name: C{str}
2839 9ca87a96 Iustin Pop
  @param hypervisor_name: the hypervisor to ask for memory stats
2840 e69d05fd Iustin Pop
  @raise errors.OpPrereqError: if the node doesn't have enough memory, or
2841 e69d05fd Iustin Pop
      we cannot check the node
2842 d4f16fd9 Iustin Pop

2843 d4f16fd9 Iustin Pop
  """
2844 9ca87a96 Iustin Pop
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2845 070e998b Iustin Pop
  msg = nodeinfo[node].RemoteFailMsg()
2846 070e998b Iustin Pop
  if msg:
2847 070e998b Iustin Pop
    raise errors.OpPrereqError("Can't get data from node %s: %s" % (node, msg))
2848 070e998b Iustin Pop
  free_mem = nodeinfo[node].payload.get('memory_free', None)
2849 d4f16fd9 Iustin Pop
  if not isinstance(free_mem, int):
2850 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2851 070e998b Iustin Pop
                               " was '%s'" % (node, free_mem))
2852 d4f16fd9 Iustin Pop
  if requested > free_mem:
2853 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2854 070e998b Iustin Pop
                               " needed %s MiB, available %s MiB" %
2855 070e998b Iustin Pop
                               (node, reason, requested, free_mem))
2856 d4f16fd9 Iustin Pop
2857 d4f16fd9 Iustin Pop
2858 a8083063 Iustin Pop
class LUStartupInstance(LogicalUnit):
2859 a8083063 Iustin Pop
  """Starts an instance.
2860 a8083063 Iustin Pop

2861 a8083063 Iustin Pop
  """
2862 a8083063 Iustin Pop
  HPATH = "instance-start"
2863 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2864 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "force"]
2865 e873317a Guido Trotter
  REQ_BGL = False
2866 e873317a Guido Trotter
2867 e873317a Guido Trotter
  def ExpandNames(self):
2868 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2869 a8083063 Iustin Pop
2870 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2871 a8083063 Iustin Pop
    """Build hooks env.
2872 a8083063 Iustin Pop

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

2875 a8083063 Iustin Pop
    """
2876 a8083063 Iustin Pop
    env = {
2877 a8083063 Iustin Pop
      "FORCE": self.op.force,
2878 a8083063 Iustin Pop
      }
2879 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2880 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2881 a8083063 Iustin Pop
    return env, nl, nl
2882 a8083063 Iustin Pop
2883 a8083063 Iustin Pop
  def CheckPrereq(self):
2884 a8083063 Iustin Pop
    """Check prerequisites.
2885 a8083063 Iustin Pop

2886 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2887 a8083063 Iustin Pop

2888 a8083063 Iustin Pop
    """
2889 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2890 e873317a Guido Trotter
    assert self.instance is not None, \
2891 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2892 a8083063 Iustin Pop
2893 d04aaa2f Iustin Pop
    # extra beparams
2894 d04aaa2f Iustin Pop
    self.beparams = getattr(self.op, "beparams", {})
2895 d04aaa2f Iustin Pop
    if self.beparams:
2896 d04aaa2f Iustin Pop
      if not isinstance(self.beparams, dict):
2897 d04aaa2f Iustin Pop
        raise errors.OpPrereqError("Invalid beparams passed: %s, expected"
2898 d04aaa2f Iustin Pop
                                   " dict" % (type(self.beparams), ))
2899 d04aaa2f Iustin Pop
      # fill the beparams dict
2900 d04aaa2f Iustin Pop
      utils.ForceDictType(self.beparams, constants.BES_PARAMETER_TYPES)
2901 d04aaa2f Iustin Pop
      self.op.beparams = self.beparams
2902 d04aaa2f Iustin Pop
2903 d04aaa2f Iustin Pop
    # extra hvparams
2904 d04aaa2f Iustin Pop
    self.hvparams = getattr(self.op, "hvparams", {})
2905 d04aaa2f Iustin Pop
    if self.hvparams:
2906 d04aaa2f Iustin Pop
      if not isinstance(self.hvparams, dict):
2907 d04aaa2f Iustin Pop
        raise errors.OpPrereqError("Invalid hvparams passed: %s, expected"
2908 d04aaa2f Iustin Pop
                                   " dict" % (type(self.hvparams), ))
2909 d04aaa2f Iustin Pop
2910 d04aaa2f Iustin Pop
      # check hypervisor parameter syntax (locally)
2911 d04aaa2f Iustin Pop
      cluster = self.cfg.GetClusterInfo()
2912 d04aaa2f Iustin Pop
      utils.ForceDictType(self.hvparams, constants.HVS_PARAMETER_TYPES)
2913 abe609b2 Guido Trotter
      filled_hvp = objects.FillDict(cluster.hvparams[instance.hypervisor],
2914 d04aaa2f Iustin Pop
                                    instance.hvparams)
2915 d04aaa2f Iustin Pop
      filled_hvp.update(self.hvparams)
2916 d04aaa2f Iustin Pop
      hv_type = hypervisor.GetHypervisor(instance.hypervisor)
2917 d04aaa2f Iustin Pop
      hv_type.CheckParameterSyntax(filled_hvp)
2918 d04aaa2f Iustin Pop
      _CheckHVParams(self, instance.all_nodes, instance.hypervisor, filled_hvp)
2919 d04aaa2f Iustin Pop
      self.op.hvparams = self.hvparams
2920 d04aaa2f Iustin Pop
2921 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2922 7527a8a4 Iustin Pop
2923 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
2924 a8083063 Iustin Pop
    # check bridges existance
2925 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2926 a8083063 Iustin Pop
2927 f1926756 Guido Trotter
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2928 f1926756 Guido Trotter
                                              instance.name,
2929 f1926756 Guido Trotter
                                              instance.hypervisor)
2930 7ad1af4a Iustin Pop
    msg = remote_info.RemoteFailMsg()
2931 7ad1af4a Iustin Pop
    if msg:
2932 7ad1af4a Iustin Pop
      raise errors.OpPrereqError("Error checking node %s: %s" %
2933 7ad1af4a Iustin Pop
                                 (instance.primary_node, msg))
2934 7ad1af4a Iustin Pop
    if not remote_info.payload: # not running already
2935 f1926756 Guido Trotter
      _CheckNodeFreeMemory(self, instance.primary_node,
2936 f1926756 Guido Trotter
                           "starting instance %s" % instance.name,
2937 f1926756 Guido Trotter
                           bep[constants.BE_MEMORY], instance.hypervisor)
2938 d4f16fd9 Iustin Pop
2939 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2940 a8083063 Iustin Pop
    """Start the instance.
2941 a8083063 Iustin Pop

2942 a8083063 Iustin Pop
    """
2943 a8083063 Iustin Pop
    instance = self.instance
2944 a8083063 Iustin Pop
    force = self.op.force
2945 a8083063 Iustin Pop
2946 fe482621 Iustin Pop
    self.cfg.MarkInstanceUp(instance.name)
2947 fe482621 Iustin Pop
2948 a8083063 Iustin Pop
    node_current = instance.primary_node
2949 a8083063 Iustin Pop
2950 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, instance, force)
2951 a8083063 Iustin Pop
2952 d04aaa2f Iustin Pop
    result = self.rpc.call_instance_start(node_current, instance,
2953 d04aaa2f Iustin Pop
                                          self.hvparams, self.beparams)
2954 dd279568 Iustin Pop
    msg = result.RemoteFailMsg()
2955 dd279568 Iustin Pop
    if msg:
2956 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2957 dd279568 Iustin Pop
      raise errors.OpExecError("Could not start instance: %s" % msg)
2958 a8083063 Iustin Pop
2959 a8083063 Iustin Pop
2960 bf6929a2 Alexander Schreiber
class LURebootInstance(LogicalUnit):
2961 bf6929a2 Alexander Schreiber
  """Reboot an instance.
2962 bf6929a2 Alexander Schreiber

2963 bf6929a2 Alexander Schreiber
  """
2964 bf6929a2 Alexander Schreiber
  HPATH = "instance-reboot"
2965 bf6929a2 Alexander Schreiber
  HTYPE = constants.HTYPE_INSTANCE
2966 bf6929a2 Alexander Schreiber
  _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
2967 e873317a Guido Trotter
  REQ_BGL = False
2968 e873317a Guido Trotter
2969 e873317a Guido Trotter
  def ExpandNames(self):
2970 0fcc5db3 Guido Trotter
    if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
2971 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2972 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL]:
2973 0fcc5db3 Guido Trotter
      raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
2974 0fcc5db3 Guido Trotter
                                  (constants.INSTANCE_REBOOT_SOFT,
2975 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
2976 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL))
2977 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2978 bf6929a2 Alexander Schreiber
2979 bf6929a2 Alexander Schreiber
  def BuildHooksEnv(self):
2980 bf6929a2 Alexander Schreiber
    """Build hooks env.
2981 bf6929a2 Alexander Schreiber

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

2984 bf6929a2 Alexander Schreiber
    """
2985 bf6929a2 Alexander Schreiber
    env = {
2986 bf6929a2 Alexander Schreiber
      "IGNORE_SECONDARIES": self.op.ignore_secondaries,
2987 2c2690c9 Iustin Pop
      "REBOOT_TYPE": self.op.reboot_type,
2988 bf6929a2 Alexander Schreiber
      }
2989 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2990 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2991 bf6929a2 Alexander Schreiber
    return env, nl, nl
2992 bf6929a2 Alexander Schreiber
2993 bf6929a2 Alexander Schreiber
  def CheckPrereq(self):
2994 bf6929a2 Alexander Schreiber
    """Check prerequisites.
2995 bf6929a2 Alexander Schreiber

2996 bf6929a2 Alexander Schreiber
    This checks that the instance is in the cluster.
2997 bf6929a2 Alexander Schreiber

2998 bf6929a2 Alexander Schreiber
    """
2999 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3000 e873317a Guido Trotter
    assert self.instance is not None, \
3001 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3002 bf6929a2 Alexander Schreiber
3003 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3004 7527a8a4 Iustin Pop
3005 bf6929a2 Alexander Schreiber
    # check bridges existance
3006 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
3007 bf6929a2 Alexander Schreiber
3008 bf6929a2 Alexander Schreiber
  def Exec(self, feedback_fn):
3009 bf6929a2 Alexander Schreiber
    """Reboot the instance.
3010 bf6929a2 Alexander Schreiber

3011 bf6929a2 Alexander Schreiber
    """
3012 bf6929a2 Alexander Schreiber
    instance = self.instance
3013 bf6929a2 Alexander Schreiber
    ignore_secondaries = self.op.ignore_secondaries
3014 bf6929a2 Alexander Schreiber
    reboot_type = self.op.reboot_type
3015 bf6929a2 Alexander Schreiber
3016 bf6929a2 Alexander Schreiber
    node_current = instance.primary_node
3017 bf6929a2 Alexander Schreiber
3018 bf6929a2 Alexander Schreiber
    if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
3019 bf6929a2 Alexander Schreiber
                       constants.INSTANCE_REBOOT_HARD]:
3020 ae48ac32 Iustin Pop
      for disk in instance.disks:
3021 ae48ac32 Iustin Pop
        self.cfg.SetDiskID(disk, node_current)
3022 781de953 Iustin Pop
      result = self.rpc.call_instance_reboot(node_current, instance,
3023 07813a9e Iustin Pop
                                             reboot_type)
3024 489fcbe9 Iustin Pop
      msg = result.RemoteFailMsg()
3025 489fcbe9 Iustin Pop
      if msg:
3026 489fcbe9 Iustin Pop
        raise errors.OpExecError("Could not reboot instance: %s" % msg)
3027 bf6929a2 Alexander Schreiber
    else:
3028 1fae010f Iustin Pop
      result = self.rpc.call_instance_shutdown(node_current, instance)
3029 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
3030 1fae010f Iustin Pop
      if msg:
3031 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance for"
3032 1fae010f Iustin Pop
                                 " full reboot: %s" % msg)
3033 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
3034 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, ignore_secondaries)
3035 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(node_current, instance, None, None)
3036 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
3037 dd279568 Iustin Pop
      if msg:
3038 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3039 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance for"
3040 dd279568 Iustin Pop
                                 " full reboot: %s" % msg)
3041 bf6929a2 Alexander Schreiber
3042 bf6929a2 Alexander Schreiber
    self.cfg.MarkInstanceUp(instance.name)
3043 bf6929a2 Alexander Schreiber
3044 bf6929a2 Alexander Schreiber
3045 a8083063 Iustin Pop
class LUShutdownInstance(LogicalUnit):
3046 a8083063 Iustin Pop
  """Shutdown an instance.
3047 a8083063 Iustin Pop

3048 a8083063 Iustin Pop
  """
3049 a8083063 Iustin Pop
  HPATH = "instance-stop"
3050 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3051 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
3052 e873317a Guido Trotter
  REQ_BGL = False
3053 e873317a Guido Trotter
3054 e873317a Guido Trotter
  def ExpandNames(self):
3055 e873317a Guido Trotter
    self._ExpandAndLockInstance()
3056 a8083063 Iustin Pop
3057 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3058 a8083063 Iustin Pop
    """Build hooks env.
3059 a8083063 Iustin Pop

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

3062 a8083063 Iustin Pop
    """
3063 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3064 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3065 a8083063 Iustin Pop
    return env, nl, nl
3066 a8083063 Iustin Pop
3067 a8083063 Iustin Pop
  def CheckPrereq(self):
3068 a8083063 Iustin Pop
    """Check prerequisites.
3069 a8083063 Iustin Pop

3070 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3071 a8083063 Iustin Pop

3072 a8083063 Iustin Pop
    """
3073 e873317a Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3074 e873317a Guido Trotter
    assert self.instance is not None, \
3075 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3076 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
3077 a8083063 Iustin Pop
3078 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3079 a8083063 Iustin Pop
    """Shutdown the instance.
3080 a8083063 Iustin Pop

3081 a8083063 Iustin Pop
    """
3082 a8083063 Iustin Pop
    instance = self.instance
3083 a8083063 Iustin Pop
    node_current = instance.primary_node
3084 fe482621 Iustin Pop
    self.cfg.MarkInstanceDown(instance.name)
3085 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(node_current, instance)
3086 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3087 1fae010f Iustin Pop
    if msg:
3088 1fae010f Iustin Pop
      self.proc.LogWarning("Could not shutdown instance: %s" % msg)
3089 a8083063 Iustin Pop
3090 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(self, instance)
3091 a8083063 Iustin Pop
3092 a8083063 Iustin Pop
3093 fe7b0351 Michael Hanselmann
class LUReinstallInstance(LogicalUnit):
3094 fe7b0351 Michael Hanselmann
  """Reinstall an instance.
3095 fe7b0351 Michael Hanselmann

3096 fe7b0351 Michael Hanselmann
  """
3097 fe7b0351 Michael Hanselmann
  HPATH = "instance-reinstall"
3098 fe7b0351 Michael Hanselmann
  HTYPE = constants.HTYPE_INSTANCE
3099 fe7b0351 Michael Hanselmann
  _OP_REQP = ["instance_name"]
3100 4e0b4d2d Guido Trotter
  REQ_BGL = False
3101 4e0b4d2d Guido Trotter
3102 4e0b4d2d Guido Trotter
  def ExpandNames(self):
3103 4e0b4d2d Guido Trotter
    self._ExpandAndLockInstance()
3104 fe7b0351 Michael Hanselmann
3105 fe7b0351 Michael Hanselmann
  def BuildHooksEnv(self):
3106 fe7b0351 Michael Hanselmann
    """Build hooks env.
3107 fe7b0351 Michael Hanselmann

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

3110 fe7b0351 Michael Hanselmann
    """
3111 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3112 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3113 fe7b0351 Michael Hanselmann
    return env, nl, nl
3114 fe7b0351 Michael Hanselmann
3115 fe7b0351 Michael Hanselmann
  def CheckPrereq(self):
3116 fe7b0351 Michael Hanselmann
    """Check prerequisites.
3117 fe7b0351 Michael Hanselmann

3118 fe7b0351 Michael Hanselmann
    This checks that the instance is in the cluster and is not running.
3119 fe7b0351 Michael Hanselmann

3120 fe7b0351 Michael Hanselmann
    """
3121 4e0b4d2d Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3122 4e0b4d2d Guido Trotter
    assert instance is not None, \
3123 4e0b4d2d Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3124 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3125 4e0b4d2d Guido Trotter
3126 fe7b0351 Michael Hanselmann
    if instance.disk_template == constants.DT_DISKLESS:
3127 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' has no disks" %
3128 3ecf6786 Iustin Pop
                                 self.op.instance_name)
3129 0d68c45d Iustin Pop
    if instance.admin_up:
3130 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
3131 3ecf6786 Iustin Pop
                                 self.op.instance_name)
3132 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
3133 72737a7f Iustin Pop
                                              instance.name,
3134 72737a7f Iustin Pop
                                              instance.hypervisor)
3135 7ad1af4a Iustin Pop
    msg = remote_info.RemoteFailMsg()
3136 7ad1af4a Iustin Pop
    if msg:
3137 7ad1af4a Iustin Pop
      raise errors.OpPrereqError("Error checking node %s: %s" %
3138 7ad1af4a Iustin Pop
                                 (instance.primary_node, msg))
3139 7ad1af4a Iustin Pop
    if remote_info.payload:
3140 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
3141 3ecf6786 Iustin Pop
                                 (self.op.instance_name,
3142 3ecf6786 Iustin Pop
                                  instance.primary_node))
3143 d0834de3 Michael Hanselmann
3144 d0834de3 Michael Hanselmann
    self.op.os_type = getattr(self.op, "os_type", None)
3145 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
3146 d0834de3 Michael Hanselmann
      # OS verification
3147 d0834de3 Michael Hanselmann
      pnode = self.cfg.GetNodeInfo(
3148 d0834de3 Michael Hanselmann
        self.cfg.ExpandNodeName(instance.primary_node))
3149 d0834de3 Michael Hanselmann
      if pnode is None:
3150 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Primary node '%s' is unknown" %
3151 3ecf6786 Iustin Pop
                                   self.op.pnode)
3152 781de953 Iustin Pop
      result = self.rpc.call_os_get(pnode.name, self.op.os_type)
3153 781de953 Iustin Pop
      result.Raise()
3154 781de953 Iustin Pop
      if not isinstance(result.data, objects.OS):
3155 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("OS '%s' not in supported OS list for"
3156 3ecf6786 Iustin Pop
                                   " primary node"  % self.op.os_type)
3157 d0834de3 Michael Hanselmann
3158 fe7b0351 Michael Hanselmann
    self.instance = instance
3159 fe7b0351 Michael Hanselmann
3160 fe7b0351 Michael Hanselmann
  def Exec(self, feedback_fn):
3161 fe7b0351 Michael Hanselmann
    """Reinstall the instance.
3162 fe7b0351 Michael Hanselmann

3163 fe7b0351 Michael Hanselmann
    """
3164 fe7b0351 Michael Hanselmann
    inst = self.instance
3165 fe7b0351 Michael Hanselmann
3166 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
3167 d0834de3 Michael Hanselmann
      feedback_fn("Changing OS to '%s'..." % self.op.os_type)
3168 d0834de3 Michael Hanselmann
      inst.os = self.op.os_type
3169 97abc79f Iustin Pop
      self.cfg.Update(inst)
3170 d0834de3 Michael Hanselmann
3171 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
3172 fe7b0351 Michael Hanselmann
    try:
3173 fe7b0351 Michael Hanselmann
      feedback_fn("Running the instance OS create scripts...")
3174 e557bae9 Guido Trotter
      result = self.rpc.call_instance_os_add(inst.primary_node, inst, True)
3175 20e01edd Iustin Pop
      msg = result.RemoteFailMsg()
3176 20e01edd Iustin Pop
      if msg:
3177 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Could not install OS for instance %s"
3178 20e01edd Iustin Pop
                                 " on node %s: %s" %
3179 20e01edd Iustin Pop
                                 (inst.name, inst.primary_node, msg))
3180 fe7b0351 Michael Hanselmann
    finally:
3181 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3182 fe7b0351 Michael Hanselmann
3183 fe7b0351 Michael Hanselmann
3184 decd5f45 Iustin Pop
class LURenameInstance(LogicalUnit):
3185 decd5f45 Iustin Pop
  """Rename an instance.
3186 decd5f45 Iustin Pop

3187 decd5f45 Iustin Pop
  """
3188 decd5f45 Iustin Pop
  HPATH = "instance-rename"
3189 decd5f45 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3190 decd5f45 Iustin Pop
  _OP_REQP = ["instance_name", "new_name"]
3191 decd5f45 Iustin Pop
3192 decd5f45 Iustin Pop
  def BuildHooksEnv(self):
3193 decd5f45 Iustin Pop
    """Build hooks env.
3194 decd5f45 Iustin Pop

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

3197 decd5f45 Iustin Pop
    """
3198 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3199 decd5f45 Iustin Pop
    env["INSTANCE_NEW_NAME"] = self.op.new_name
3200 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3201 decd5f45 Iustin Pop
    return env, nl, nl
3202 decd5f45 Iustin Pop
3203 decd5f45 Iustin Pop
  def CheckPrereq(self):
3204 decd5f45 Iustin Pop
    """Check prerequisites.
3205 decd5f45 Iustin Pop

3206 decd5f45 Iustin Pop
    This checks that the instance is in the cluster and is not running.
3207 decd5f45 Iustin Pop

3208 decd5f45 Iustin Pop
    """
3209 decd5f45 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3210 decd5f45 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3211 decd5f45 Iustin Pop
    if instance is None:
3212 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3213 decd5f45 Iustin Pop
                                 self.op.instance_name)
3214 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3215 7527a8a4 Iustin Pop
3216 0d68c45d Iustin Pop
    if instance.admin_up:
3217 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
3218 decd5f45 Iustin Pop
                                 self.op.instance_name)
3219 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
3220 72737a7f Iustin Pop
                                              instance.name,
3221 72737a7f Iustin Pop
                                              instance.hypervisor)
3222 7ad1af4a Iustin Pop
    msg = remote_info.RemoteFailMsg()
3223 7ad1af4a Iustin Pop
    if msg:
3224 7ad1af4a Iustin Pop
      raise errors.OpPrereqError("Error checking node %s: %s" %
3225 7ad1af4a Iustin Pop
                                 (instance.primary_node, msg))
3226 7ad1af4a Iustin Pop
    if remote_info.payload:
3227 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
3228 decd5f45 Iustin Pop
                                 (self.op.instance_name,
3229 decd5f45 Iustin Pop
                                  instance.primary_node))
3230 decd5f45 Iustin Pop
    self.instance = instance
3231 decd5f45 Iustin Pop
3232 decd5f45 Iustin Pop
    # new name verification
3233 89e1fc26 Iustin Pop
    name_info = utils.HostInfo(self.op.new_name)
3234 decd5f45 Iustin Pop
3235 89e1fc26 Iustin Pop
    self.op.new_name = new_name = name_info.name
3236 7bde3275 Guido Trotter
    instance_list = self.cfg.GetInstanceList()
3237 7bde3275 Guido Trotter
    if new_name in instance_list:
3238 7bde3275 Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
3239 c09f363f Manuel Franceschini
                                 new_name)
3240 7bde3275 Guido Trotter
3241 decd5f45 Iustin Pop
    if not getattr(self.op, "ignore_ip", False):
3242 937f983d Guido Trotter
      if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
3243 decd5f45 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
3244 89e1fc26 Iustin Pop
                                   (name_info.ip, new_name))
3245 decd5f45 Iustin Pop
3246 decd5f45 Iustin Pop
3247 decd5f45 Iustin Pop
  def Exec(self, feedback_fn):
3248 decd5f45 Iustin Pop
    """Reinstall the instance.
3249 decd5f45 Iustin Pop

3250 decd5f45 Iustin Pop
    """
3251 decd5f45 Iustin Pop
    inst = self.instance
3252 decd5f45 Iustin Pop
    old_name = inst.name
3253 decd5f45 Iustin Pop
3254 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3255 b23c4333 Manuel Franceschini
      old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3256 b23c4333 Manuel Franceschini
3257 decd5f45 Iustin Pop
    self.cfg.RenameInstance(inst.name, self.op.new_name)
3258 74b5913f Guido Trotter
    # Change the instance lock. This is definitely safe while we hold the BGL
3259 cb4e8387 Iustin Pop
    self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
3260 74b5913f Guido Trotter
    self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
3261 decd5f45 Iustin Pop
3262 decd5f45 Iustin Pop
    # re-read the instance from the configuration after rename
3263 decd5f45 Iustin Pop
    inst = self.cfg.GetInstanceInfo(self.op.new_name)
3264 decd5f45 Iustin Pop
3265 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3266 b23c4333 Manuel Franceschini
      new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3267 72737a7f Iustin Pop
      result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
3268 72737a7f Iustin Pop
                                                     old_file_storage_dir,
3269 72737a7f Iustin Pop
                                                     new_file_storage_dir)
3270 781de953 Iustin Pop
      result.Raise()
3271 781de953 Iustin Pop
      if not result.data:
3272 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not connect to node '%s' to rename"
3273 b23c4333 Manuel Franceschini
                                 " directory '%s' to '%s' (but the instance"
3274 b23c4333 Manuel Franceschini
                                 " has been renamed in Ganeti)" % (
3275 b23c4333 Manuel Franceschini
                                 inst.primary_node, old_file_storage_dir,
3276 b23c4333 Manuel Franceschini
                                 new_file_storage_dir))
3277 b23c4333 Manuel Franceschini
3278 781de953 Iustin Pop
      if not result.data[0]:
3279 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not rename directory '%s' to '%s'"
3280 b23c4333 Manuel Franceschini
                                 " (but the instance has been renamed in"
3281 b23c4333 Manuel Franceschini
                                 " Ganeti)" % (old_file_storage_dir,
3282 b23c4333 Manuel Franceschini
                                               new_file_storage_dir))
3283 b23c4333 Manuel Franceschini
3284 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
3285 decd5f45 Iustin Pop
    try:
3286 781de953 Iustin Pop
      result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
3287 781de953 Iustin Pop
                                                 old_name)
3288 96841384 Iustin Pop
      msg = result.RemoteFailMsg()
3289 96841384 Iustin Pop
      if msg:
3290 6291574d Alexander Schreiber
        msg = ("Could not run OS rename script for instance %s on node %s"
3291 96841384 Iustin Pop
               " (but the instance has been renamed in Ganeti): %s" %
3292 96841384 Iustin Pop
               (inst.name, inst.primary_node, msg))
3293 86d9d3bb Iustin Pop
        self.proc.LogWarning(msg)
3294 decd5f45 Iustin Pop
    finally:
3295 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3296 decd5f45 Iustin Pop
3297 decd5f45 Iustin Pop
3298 a8083063 Iustin Pop
class LURemoveInstance(LogicalUnit):
3299 a8083063 Iustin Pop
  """Remove an instance.
3300 a8083063 Iustin Pop

3301 a8083063 Iustin Pop
  """
3302 a8083063 Iustin Pop
  HPATH = "instance-remove"
3303 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3304 5c54b832 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_failures"]
3305 cf472233 Guido Trotter
  REQ_BGL = False
3306 cf472233 Guido Trotter
3307 cf472233 Guido Trotter
  def ExpandNames(self):
3308 cf472233 Guido Trotter
    self._ExpandAndLockInstance()
3309 cf472233 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3310 cf472233 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3311 cf472233 Guido Trotter
3312 cf472233 Guido Trotter
  def DeclareLocks(self, level):
3313 cf472233 Guido Trotter
    if level == locking.LEVEL_NODE:
3314 cf472233 Guido Trotter
      self._LockInstancesNodes()
3315 a8083063 Iustin Pop
3316 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3317 a8083063 Iustin Pop
    """Build hooks env.
3318 a8083063 Iustin Pop

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

3321 a8083063 Iustin Pop
    """
3322 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3323 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()]
3324 a8083063 Iustin Pop
    return env, nl, nl
3325 a8083063 Iustin Pop
3326 a8083063 Iustin Pop
  def CheckPrereq(self):
3327 a8083063 Iustin Pop
    """Check prerequisites.
3328 a8083063 Iustin Pop

3329 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3330 a8083063 Iustin Pop

3331 a8083063 Iustin Pop
    """
3332 cf472233 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3333 cf472233 Guido Trotter
    assert self.instance is not None, \
3334 cf472233 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3335 a8083063 Iustin Pop
3336 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3337 a8083063 Iustin Pop
    """Remove the instance.
3338 a8083063 Iustin Pop

3339 a8083063 Iustin Pop
    """
3340 a8083063 Iustin Pop
    instance = self.instance
3341 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3342 9a4f63d1 Iustin Pop
                 instance.name, instance.primary_node)
3343 a8083063 Iustin Pop
3344 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
3345 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3346 1fae010f Iustin Pop
    if msg:
3347 1d67656e Iustin Pop
      if self.op.ignore_failures:
3348 1fae010f Iustin Pop
        feedback_fn("Warning: can't shutdown instance: %s" % msg)
3349 1d67656e Iustin Pop
      else:
3350 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3351 1fae010f Iustin Pop
                                 " node %s: %s" %
3352 1fae010f Iustin Pop
                                 (instance.name, instance.primary_node, msg))
3353 a8083063 Iustin Pop
3354 9a4f63d1 Iustin Pop
    logging.info("Removing block devices for instance %s", instance.name)
3355 a8083063 Iustin Pop
3356 b9bddb6b Iustin Pop
    if not _RemoveDisks(self, instance):
3357 1d67656e Iustin Pop
      if self.op.ignore_failures:
3358 1d67656e Iustin Pop
        feedback_fn("Warning: can't remove instance's disks")
3359 1d67656e Iustin Pop
      else:
3360 1d67656e Iustin Pop
        raise errors.OpExecError("Can't remove instance's disks")
3361 a8083063 Iustin Pop
3362 9a4f63d1 Iustin Pop
    logging.info("Removing instance %s out of cluster config", instance.name)
3363 a8083063 Iustin Pop
3364 a8083063 Iustin Pop
    self.cfg.RemoveInstance(instance.name)
3365 cf472233 Guido Trotter
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3366 a8083063 Iustin Pop
3367 a8083063 Iustin Pop
3368 a8083063 Iustin Pop
class LUQueryInstances(NoHooksLU):
3369 a8083063 Iustin Pop
  """Logical unit for querying instances.
3370 a8083063 Iustin Pop

3371 a8083063 Iustin Pop
  """
3372 ec79568d Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
3373 7eb9d8f7 Guido Trotter
  REQ_BGL = False
3374 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3375 5b460366 Iustin Pop
                                    "admin_state",
3376 a2d2e1a7 Iustin Pop
                                    "disk_template", "ip", "mac", "bridge",
3377 a2d2e1a7 Iustin Pop
                                    "sda_size", "sdb_size", "vcpus", "tags",
3378 a2d2e1a7 Iustin Pop
                                    "network_port", "beparams",
3379 8aec325c Iustin Pop
                                    r"(disk)\.(size)/([0-9]+)",
3380 8aec325c Iustin Pop
                                    r"(disk)\.(sizes)", "disk_usage",
3381 8aec325c Iustin Pop
                                    r"(nic)\.(mac|ip|bridge)/([0-9]+)",
3382 8aec325c Iustin Pop
                                    r"(nic)\.(macs|ips|bridges)",
3383 8aec325c Iustin Pop
                                    r"(disk|nic)\.(count)",
3384 a2d2e1a7 Iustin Pop
                                    "serial_no", "hypervisor", "hvparams",] +
3385 a2d2e1a7 Iustin Pop
                                  ["hv/%s" % name
3386 a2d2e1a7 Iustin Pop
                                   for name in constants.HVS_PARAMETERS] +
3387 a2d2e1a7 Iustin Pop
                                  ["be/%s" % name
3388 a2d2e1a7 Iustin Pop
                                   for name in constants.BES_PARAMETERS])
3389 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3390 31bf511f Iustin Pop
3391 a8083063 Iustin Pop
3392 7eb9d8f7 Guido Trotter
  def ExpandNames(self):
3393 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
3394 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
3395 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
3396 a8083063 Iustin Pop
3397 7eb9d8f7 Guido Trotter
    self.needed_locks = {}
3398 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3399 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
3400 7eb9d8f7 Guido Trotter
3401 57a2fb91 Iustin Pop
    if self.op.names:
3402 57a2fb91 Iustin Pop
      self.wanted = _GetWantedInstances(self, self.op.names)
3403 7eb9d8f7 Guido Trotter
    else:
3404 57a2fb91 Iustin Pop
      self.wanted = locking.ALL_SET
3405 7eb9d8f7 Guido Trotter
3406 ec79568d Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3407 ec79568d Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
3408 57a2fb91 Iustin Pop
    if self.do_locking:
3409 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3410 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = []
3411 57a2fb91 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3412 7eb9d8f7 Guido Trotter
3413 7eb9d8f7 Guido Trotter
  def DeclareLocks(self, level):
3414 57a2fb91 Iustin Pop
    if level == locking.LEVEL_NODE and self.do_locking:
3415 7eb9d8f7 Guido Trotter
      self._LockInstancesNodes()
3416 7eb9d8f7 Guido Trotter
3417 7eb9d8f7 Guido Trotter
  def CheckPrereq(self):
3418 7eb9d8f7 Guido Trotter
    """Check prerequisites.
3419 7eb9d8f7 Guido Trotter

3420 7eb9d8f7 Guido Trotter
    """
3421 57a2fb91 Iustin Pop
    pass
3422 069dcc86 Iustin Pop
3423 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3424 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
3425 a8083063 Iustin Pop

3426 a8083063 Iustin Pop
    """
3427 57a2fb91 Iustin Pop
    all_info = self.cfg.GetAllInstancesInfo()
3428 a7f5dc98 Iustin Pop
    if self.wanted == locking.ALL_SET:
3429 a7f5dc98 Iustin Pop
      # caller didn't specify instance names, so ordering is not important
3430 a7f5dc98 Iustin Pop
      if self.do_locking:
3431 a7f5dc98 Iustin Pop
        instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
3432 a7f5dc98 Iustin Pop
      else:
3433 a7f5dc98 Iustin Pop
        instance_names = all_info.keys()
3434 a7f5dc98 Iustin Pop
      instance_names = utils.NiceSort(instance_names)
3435 57a2fb91 Iustin Pop
    else:
3436 a7f5dc98 Iustin Pop
      # caller did specify names, so we must keep the ordering
3437 a7f5dc98 Iustin Pop
      if self.do_locking:
3438 a7f5dc98 Iustin Pop
        tgt_set = self.acquired_locks[locking.LEVEL_INSTANCE]
3439 a7f5dc98 Iustin Pop
      else:
3440 a7f5dc98 Iustin Pop
        tgt_set = all_info.keys()
3441 a7f5dc98 Iustin Pop
      missing = set(self.wanted).difference(tgt_set)
3442 a7f5dc98 Iustin Pop
      if missing:
3443 a7f5dc98 Iustin Pop
        raise errors.OpExecError("Some instances were removed before"
3444 a7f5dc98 Iustin Pop
                                 " retrieving their data: %s" % missing)
3445 a7f5dc98 Iustin Pop
      instance_names = self.wanted
3446 c1f1cbb2 Iustin Pop
3447 57a2fb91 Iustin Pop
    instance_list = [all_info[iname] for iname in instance_names]
3448 a8083063 Iustin Pop
3449 a8083063 Iustin Pop
    # begin data gathering
3450 a8083063 Iustin Pop
3451 a8083063 Iustin Pop
    nodes = frozenset([inst.primary_node for inst in instance_list])
3452 e69d05fd Iustin Pop
    hv_list = list(set([inst.hypervisor for inst in instance_list]))
3453 a8083063 Iustin Pop
3454 a8083063 Iustin Pop
    bad_nodes = []
3455 cbfc4681 Iustin Pop
    off_nodes = []
3456 ec79568d Iustin Pop
    if self.do_node_query:
3457 a8083063 Iustin Pop
      live_data = {}
3458 72737a7f Iustin Pop
      node_data = self.rpc.call_all_instances_info(nodes, hv_list)
3459 a8083063 Iustin Pop
      for name in nodes:
3460 a8083063 Iustin Pop
        result = node_data[name]
3461 cbfc4681 Iustin Pop
        if result.offline:
3462 cbfc4681 Iustin Pop
          # offline nodes will be in both lists
3463 cbfc4681 Iustin Pop
          off_nodes.append(name)
3464 2fa74ef4 Iustin Pop
        if result.failed or result.RemoteFailMsg():
3465 a8083063 Iustin Pop
          bad_nodes.append(name)
3466 781de953 Iustin Pop
        else:
3467 2fa74ef4 Iustin Pop
          if result.payload:
3468 2fa74ef4 Iustin Pop
            live_data.update(result.payload)
3469 2fa74ef4 Iustin Pop
          # else no instance is alive
3470 a8083063 Iustin Pop
    else:
3471 a8083063 Iustin Pop
      live_data = dict([(name, {}) for name in instance_names])
3472 a8083063 Iustin Pop
3473 a8083063 Iustin Pop
    # end data gathering
3474 a8083063 Iustin Pop
3475 5018a335 Iustin Pop
    HVPREFIX = "hv/"
3476 338e51e8 Iustin Pop
    BEPREFIX = "be/"
3477 a8083063 Iustin Pop
    output = []
3478 a8083063 Iustin Pop
    for instance in instance_list:
3479 a8083063 Iustin Pop
      iout = []
3480 5018a335 Iustin Pop
      i_hv = self.cfg.GetClusterInfo().FillHV(instance)
3481 338e51e8 Iustin Pop
      i_be = self.cfg.GetClusterInfo().FillBE(instance)
3482 a8083063 Iustin Pop
      for field in self.op.output_fields:
3483 71c1af58 Iustin Pop
        st_match = self._FIELDS_STATIC.Matches(field)
3484 a8083063 Iustin Pop
        if field == "name":
3485 a8083063 Iustin Pop
          val = instance.name
3486 a8083063 Iustin Pop
        elif field == "os":
3487 a8083063 Iustin Pop
          val = instance.os
3488 a8083063 Iustin Pop
        elif field == "pnode":
3489 a8083063 Iustin Pop
          val = instance.primary_node
3490 a8083063 Iustin Pop
        elif field == "snodes":
3491 8a23d2d3 Iustin Pop
          val = list(instance.secondary_nodes)
3492 a8083063 Iustin Pop
        elif field == "admin_state":
3493 0d68c45d Iustin Pop
          val = instance.admin_up
3494 a8083063 Iustin Pop
        elif field == "oper_state":
3495 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3496 8a23d2d3 Iustin Pop
            val = None
3497 a8083063 Iustin Pop
          else:
3498 8a23d2d3 Iustin Pop
            val = bool(live_data.get(instance.name))
3499 d8052456 Iustin Pop
        elif field == "status":
3500 cbfc4681 Iustin Pop
          if instance.primary_node in off_nodes:
3501 cbfc4681 Iustin Pop
            val = "ERROR_nodeoffline"
3502 cbfc4681 Iustin Pop
          elif instance.primary_node in bad_nodes:
3503 d8052456 Iustin Pop
            val = "ERROR_nodedown"
3504 d8052456 Iustin Pop
          else:
3505 d8052456 Iustin Pop
            running = bool(live_data.get(instance.name))
3506 d8052456 Iustin Pop
            if running:
3507 0d68c45d Iustin Pop
              if instance.admin_up:
3508 d8052456 Iustin Pop
                val = "running"
3509 d8052456 Iustin Pop
              else:
3510 d8052456 Iustin Pop
                val = "ERROR_up"
3511 d8052456 Iustin Pop
            else:
3512 0d68c45d Iustin Pop
              if instance.admin_up:
3513 d8052456 Iustin Pop
                val = "ERROR_down"
3514 d8052456 Iustin Pop
              else:
3515 d8052456 Iustin Pop
                val = "ADMIN_down"
3516 a8083063 Iustin Pop
        elif field == "oper_ram":
3517 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3518 8a23d2d3 Iustin Pop
            val = None
3519 a8083063 Iustin Pop
          elif instance.name in live_data:
3520 a8083063 Iustin Pop
            val = live_data[instance.name].get("memory", "?")
3521 a8083063 Iustin Pop
          else:
3522 a8083063 Iustin Pop
            val = "-"
3523 a8083063 Iustin Pop
        elif field == "disk_template":
3524 a8083063 Iustin Pop
          val = instance.disk_template
3525 a8083063 Iustin Pop
        elif field == "ip":
3526 a8083063 Iustin Pop
          val = instance.nics[0].ip
3527 a8083063 Iustin Pop
        elif field == "bridge":
3528 a8083063 Iustin Pop
          val = instance.nics[0].bridge
3529 a8083063 Iustin Pop
        elif field == "mac":
3530 a8083063 Iustin Pop
          val = instance.nics[0].mac
3531 644eeef9 Iustin Pop
        elif field == "sda_size" or field == "sdb_size":
3532 ad24e046 Iustin Pop
          idx = ord(field[2]) - ord('a')
3533 ad24e046 Iustin Pop
          try:
3534 ad24e046 Iustin Pop
            val = instance.FindDisk(idx).size
3535 ad24e046 Iustin Pop
          except errors.OpPrereqError:
3536 8a23d2d3 Iustin Pop
            val = None
3537 024e157f Iustin Pop
        elif field == "disk_usage": # total disk usage per node
3538 024e157f Iustin Pop
          disk_sizes = [{'size': disk.size} for disk in instance.disks]
3539 024e157f Iustin Pop
          val = _ComputeDiskSize(instance.disk_template, disk_sizes)
3540 130a6a6f Iustin Pop
        elif field == "tags":
3541 130a6a6f Iustin Pop
          val = list(instance.GetTags())
3542 38d7239a Iustin Pop
        elif field == "serial_no":
3543 38d7239a Iustin Pop
          val = instance.serial_no
3544 5018a335 Iustin Pop
        elif field == "network_port":
3545 5018a335 Iustin Pop
          val = instance.network_port
3546 338e51e8 Iustin Pop
        elif field == "hypervisor":
3547 338e51e8 Iustin Pop
          val = instance.hypervisor
3548 338e51e8 Iustin Pop
        elif field == "hvparams":
3549 338e51e8 Iustin Pop
          val = i_hv
3550 5018a335 Iustin Pop
        elif (field.startswith(HVPREFIX) and
3551 5018a335 Iustin Pop
              field[len(HVPREFIX):] in constants.HVS_PARAMETERS):
3552 5018a335 Iustin Pop
          val = i_hv.get(field[len(HVPREFIX):], None)
3553 338e51e8 Iustin Pop
        elif field == "beparams":
3554 338e51e8 Iustin Pop
          val = i_be
3555 338e51e8 Iustin Pop
        elif (field.startswith(BEPREFIX) and
3556 338e51e8 Iustin Pop
              field[len(BEPREFIX):] in constants.BES_PARAMETERS):
3557 338e51e8 Iustin Pop
          val = i_be.get(field[len(BEPREFIX):], None)
3558 71c1af58 Iustin Pop
        elif st_match and st_match.groups():
3559 71c1af58 Iustin Pop
          # matches a variable list
3560 71c1af58 Iustin Pop
          st_groups = st_match.groups()
3561 71c1af58 Iustin Pop
          if st_groups and st_groups[0] == "disk":
3562 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3563 71c1af58 Iustin Pop
              val = len(instance.disks)
3564 41a776da Iustin Pop
            elif st_groups[1] == "sizes":
3565 41a776da Iustin Pop
              val = [disk.size for disk in instance.disks]
3566 71c1af58 Iustin Pop
            elif st_groups[1] == "size":
3567 3e0cea06 Iustin Pop
              try:
3568 3e0cea06 Iustin Pop
                val = instance.FindDisk(st_groups[2]).size
3569 3e0cea06 Iustin Pop
              except errors.OpPrereqError:
3570 71c1af58 Iustin Pop
                val = None
3571 71c1af58 Iustin Pop
            else:
3572 71c1af58 Iustin Pop
              assert False, "Unhandled disk parameter"
3573 71c1af58 Iustin Pop
          elif st_groups[0] == "nic":
3574 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3575 71c1af58 Iustin Pop
              val = len(instance.nics)
3576 41a776da Iustin Pop
            elif st_groups[1] == "macs":
3577 41a776da Iustin Pop
              val = [nic.mac for nic in instance.nics]
3578 41a776da Iustin Pop
            elif st_groups[1] == "ips":
3579 41a776da Iustin Pop
              val = [nic.ip for nic in instance.nics]
3580 41a776da Iustin Pop
            elif st_groups[1] == "bridges":
3581 41a776da Iustin Pop
              val = [nic.bridge for nic in instance.nics]
3582 71c1af58 Iustin Pop
            else:
3583 71c1af58 Iustin Pop
              # index-based item
3584 71c1af58 Iustin Pop
              nic_idx = int(st_groups[2])
3585 71c1af58 Iustin Pop
              if nic_idx >= len(instance.nics):
3586 71c1af58 Iustin Pop
                val = None
3587 71c1af58 Iustin Pop
              else:
3588 71c1af58 Iustin Pop
                if st_groups[1] == "mac":
3589 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].mac
3590 71c1af58 Iustin Pop
                elif st_groups[1] == "ip":
3591 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].ip
3592 71c1af58 Iustin Pop
                elif st_groups[1] == "bridge":
3593 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].bridge
3594 71c1af58 Iustin Pop
                else:
3595 71c1af58 Iustin Pop
                  assert False, "Unhandled NIC parameter"
3596 71c1af58 Iustin Pop
          else:
3597 71c1af58 Iustin Pop
            assert False, "Unhandled variable parameter"
3598 a8083063 Iustin Pop
        else:
3599 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
3600 a8083063 Iustin Pop
        iout.append(val)
3601 a8083063 Iustin Pop
      output.append(iout)
3602 a8083063 Iustin Pop
3603 a8083063 Iustin Pop
    return output
3604 a8083063 Iustin Pop
3605 a8083063 Iustin Pop
3606 a8083063 Iustin Pop
class LUFailoverInstance(LogicalUnit):
3607 a8083063 Iustin Pop
  """Failover an instance.
3608 a8083063 Iustin Pop

3609 a8083063 Iustin Pop
  """
3610 a8083063 Iustin Pop
  HPATH = "instance-failover"
3611 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3612 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_consistency"]
3613 c9e5c064 Guido Trotter
  REQ_BGL = False
3614 c9e5c064 Guido Trotter
3615 c9e5c064 Guido Trotter
  def ExpandNames(self):
3616 c9e5c064 Guido Trotter
    self._ExpandAndLockInstance()
3617 c9e5c064 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3618 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3619 c9e5c064 Guido Trotter
3620 c9e5c064 Guido Trotter
  def DeclareLocks(self, level):
3621 c9e5c064 Guido Trotter
    if level == locking.LEVEL_NODE:
3622 c9e5c064 Guido Trotter
      self._LockInstancesNodes()
3623 a8083063 Iustin Pop
3624 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3625 a8083063 Iustin Pop
    """Build hooks env.
3626 a8083063 Iustin Pop

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

3629 a8083063 Iustin Pop
    """
3630 a8083063 Iustin Pop
    env = {
3631 a8083063 Iustin Pop
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3632 a8083063 Iustin Pop
      }
3633 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3634 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3635 a8083063 Iustin Pop
    return env, nl, nl
3636 a8083063 Iustin Pop
3637 a8083063 Iustin Pop
  def CheckPrereq(self):
3638 a8083063 Iustin Pop
    """Check prerequisites.
3639 a8083063 Iustin Pop

3640 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3641 a8083063 Iustin Pop

3642 a8083063 Iustin Pop
    """
3643 c9e5c064 Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3644 c9e5c064 Guido Trotter
    assert self.instance is not None, \
3645 c9e5c064 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3646 a8083063 Iustin Pop
3647 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3648 a1f445d3 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3649 2a710df1 Michael Hanselmann
      raise errors.OpPrereqError("Instance's disk layout is not"
3650 a1f445d3 Iustin Pop
                                 " network mirrored, cannot failover.")
3651 2a710df1 Michael Hanselmann
3652 2a710df1 Michael Hanselmann
    secondary_nodes = instance.secondary_nodes
3653 2a710df1 Michael Hanselmann
    if not secondary_nodes:
3654 2a710df1 Michael Hanselmann
      raise errors.ProgrammerError("no secondary node but using "
3655 abdf0113 Iustin Pop
                                   "a mirrored disk template")
3656 2a710df1 Michael Hanselmann
3657 2a710df1 Michael Hanselmann
    target_node = secondary_nodes[0]
3658 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, target_node)
3659 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, target_node)
3660 d4f16fd9 Iustin Pop
    # check memory requirements on the secondary node
3661 b9bddb6b Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3662 338e51e8 Iustin Pop
                         instance.name, bep[constants.BE_MEMORY],
3663 e69d05fd Iustin Pop
                         instance.hypervisor)
3664 a8083063 Iustin Pop
    # check bridge existance
3665 b165e77e Guido Trotter
    _CheckInstanceBridgesExist(self, instance, node=target_node)
3666 a8083063 Iustin Pop
3667 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3668 a8083063 Iustin Pop
    """Failover an instance.
3669 a8083063 Iustin Pop

3670 a8083063 Iustin Pop
    The failover is done by shutting it down on its present node and
3671 a8083063 Iustin Pop
    starting it on the secondary.
3672 a8083063 Iustin Pop

3673 a8083063 Iustin Pop
    """
3674 a8083063 Iustin Pop
    instance = self.instance
3675 a8083063 Iustin Pop
3676 a8083063 Iustin Pop
    source_node = instance.primary_node
3677 a8083063 Iustin Pop
    target_node = instance.secondary_nodes[0]
3678 a8083063 Iustin Pop
3679 a8083063 Iustin Pop
    feedback_fn("* checking disk consistency between source and target")
3680 a8083063 Iustin Pop
    for dev in instance.disks:
3681 abdf0113 Iustin Pop
      # for drbd, these are drbd over lvm
3682 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3683 0d68c45d Iustin Pop
        if instance.admin_up and not self.op.ignore_consistency:
3684 3ecf6786 Iustin Pop
          raise errors.OpExecError("Disk %s is degraded on target node,"
3685 3ecf6786 Iustin Pop
                                   " aborting failover." % dev.iv_name)
3686 a8083063 Iustin Pop
3687 a8083063 Iustin Pop
    feedback_fn("* shutting down instance on source node")
3688 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3689 9a4f63d1 Iustin Pop
                 instance.name, source_node)
3690 a8083063 Iustin Pop
3691 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(source_node, instance)
3692 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3693 1fae010f Iustin Pop
    if msg:
3694 24a40d57 Iustin Pop
      if self.op.ignore_consistency:
3695 86d9d3bb Iustin Pop
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3696 1fae010f Iustin Pop
                             " Proceeding anyway. Please make sure node"
3697 1fae010f Iustin Pop
                             " %s is down. Error details: %s",
3698 1fae010f Iustin Pop
                             instance.name, source_node, source_node, msg)
3699 24a40d57 Iustin Pop
      else:
3700 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3701 1fae010f Iustin Pop
                                 " node %s: %s" %
3702 1fae010f Iustin Pop
                                 (instance.name, source_node, msg))
3703 a8083063 Iustin Pop
3704 a8083063 Iustin Pop
    feedback_fn("* deactivating the instance's disks on source node")
3705 b9bddb6b Iustin Pop
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3706 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't shut down the instance's disks.")
3707 a8083063 Iustin Pop
3708 a8083063 Iustin Pop
    instance.primary_node = target_node
3709 a8083063 Iustin Pop
    # distribute new instance config to the other nodes
3710 b6102dab Guido Trotter
    self.cfg.Update(instance)
3711 a8083063 Iustin Pop
3712 12a0cfbe Guido Trotter
    # Only start the instance if it's marked as up
3713 0d68c45d Iustin Pop
    if instance.admin_up:
3714 12a0cfbe Guido Trotter
      feedback_fn("* activating the instance's disks on target node")
3715 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s",
3716 9a4f63d1 Iustin Pop
                   instance.name, target_node)
3717 12a0cfbe Guido Trotter
3718 b9bddb6b Iustin Pop
      disks_ok, dummy = _AssembleInstanceDisks(self, instance,
3719 12a0cfbe Guido Trotter
                                               ignore_secondaries=True)
3720 12a0cfbe Guido Trotter
      if not disks_ok:
3721 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3722 12a0cfbe Guido Trotter
        raise errors.OpExecError("Can't activate the instance's disks")
3723 a8083063 Iustin Pop
3724 12a0cfbe Guido Trotter
      feedback_fn("* starting the instance on the target node")
3725 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(target_node, instance, None, None)
3726 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
3727 dd279568 Iustin Pop
      if msg:
3728 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3729 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance %s on node %s: %s" %
3730 dd279568 Iustin Pop
                                 (instance.name, target_node, msg))
3731 a8083063 Iustin Pop
3732 a8083063 Iustin Pop
3733 53c776b5 Iustin Pop
class LUMigrateInstance(LogicalUnit):
3734 53c776b5 Iustin Pop
  """Migrate an instance.
3735 53c776b5 Iustin Pop

3736 53c776b5 Iustin Pop
  This is migration without shutting down, compared to the failover,
3737 53c776b5 Iustin Pop
  which is done with shutdown.
3738 53c776b5 Iustin Pop

3739 53c776b5 Iustin Pop
  """
3740 53c776b5 Iustin Pop
  HPATH = "instance-migrate"
3741 53c776b5 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3742 53c776b5 Iustin Pop
  _OP_REQP = ["instance_name", "live", "cleanup"]
3743 53c776b5 Iustin Pop
3744 53c776b5 Iustin Pop
  REQ_BGL = False
3745 53c776b5 Iustin Pop
3746 53c776b5 Iustin Pop
  def ExpandNames(self):
3747 53c776b5 Iustin Pop
    self._ExpandAndLockInstance()
3748 53c776b5 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
3749 53c776b5 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3750 53c776b5 Iustin Pop
3751 53c776b5 Iustin Pop
  def DeclareLocks(self, level):
3752 53c776b5 Iustin Pop
    if level == locking.LEVEL_NODE:
3753 53c776b5 Iustin Pop
      self._LockInstancesNodes()
3754 53c776b5 Iustin Pop
3755 53c776b5 Iustin Pop
  def BuildHooksEnv(self):
3756 53c776b5 Iustin Pop
    """Build hooks env.
3757 53c776b5 Iustin Pop

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

3760 53c776b5 Iustin Pop
    """
3761 53c776b5 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3762 2c2690c9 Iustin Pop
    env["MIGRATE_LIVE"] = self.op.live
3763 2c2690c9 Iustin Pop
    env["MIGRATE_CLEANUP"] = self.op.cleanup
3764 53c776b5 Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3765 53c776b5 Iustin Pop
    return env, nl, nl
3766 53c776b5 Iustin Pop
3767 53c776b5 Iustin Pop
  def CheckPrereq(self):
3768 53c776b5 Iustin Pop
    """Check prerequisites.
3769 53c776b5 Iustin Pop

3770 53c776b5 Iustin Pop
    This checks that the instance is in the cluster.
3771 53c776b5 Iustin Pop

3772 53c776b5 Iustin Pop
    """
3773 53c776b5 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3774 53c776b5 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3775 53c776b5 Iustin Pop
    if instance is None:
3776 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3777 53c776b5 Iustin Pop
                                 self.op.instance_name)
3778 53c776b5 Iustin Pop
3779 53c776b5 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
3780 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout is not"
3781 53c776b5 Iustin Pop
                                 " drbd8, cannot migrate.")
3782 53c776b5 Iustin Pop
3783 53c776b5 Iustin Pop
    secondary_nodes = instance.secondary_nodes
3784 53c776b5 Iustin Pop
    if not secondary_nodes:
3785 733a2b6a Iustin Pop
      raise errors.ConfigurationError("No secondary node but using"
3786 733a2b6a Iustin Pop
                                      " drbd8 disk template")
3787 53c776b5 Iustin Pop
3788 53c776b5 Iustin Pop
    i_be = self.cfg.GetClusterInfo().FillBE(instance)
3789 53c776b5 Iustin Pop
3790 53c776b5 Iustin Pop
    target_node = secondary_nodes[0]
3791 53c776b5 Iustin Pop
    # check memory requirements on the secondary node
3792 53c776b5 Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
3793 53c776b5 Iustin Pop
                         instance.name, i_be[constants.BE_MEMORY],
3794 53c776b5 Iustin Pop
                         instance.hypervisor)
3795 53c776b5 Iustin Pop
3796 53c776b5 Iustin Pop
    # check bridge existance
3797 b165e77e Guido Trotter
    _CheckInstanceBridgesExist(self, instance, node=target_node)
3798 53c776b5 Iustin Pop
3799 53c776b5 Iustin Pop
    if not self.op.cleanup:
3800 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, target_node)
3801 53c776b5 Iustin Pop
      result = self.rpc.call_instance_migratable(instance.primary_node,
3802 53c776b5 Iustin Pop
                                                 instance)
3803 53c776b5 Iustin Pop
      msg = result.RemoteFailMsg()
3804 53c776b5 Iustin Pop
      if msg:
3805 53c776b5 Iustin Pop
        raise errors.OpPrereqError("Can't migrate: %s - please use failover" %
3806 53c776b5 Iustin Pop
                                   msg)
3807 53c776b5 Iustin Pop
3808 53c776b5 Iustin Pop
    self.instance = instance
3809 53c776b5 Iustin Pop
3810 53c776b5 Iustin Pop
  def _WaitUntilSync(self):
3811 53c776b5 Iustin Pop
    """Poll with custom rpc for disk sync.
3812 53c776b5 Iustin Pop

3813 53c776b5 Iustin Pop
    This uses our own step-based rpc call.
3814 53c776b5 Iustin Pop

3815 53c776b5 Iustin Pop
    """
3816 53c776b5 Iustin Pop
    self.feedback_fn("* wait until resync is done")
3817 53c776b5 Iustin Pop
    all_done = False
3818 53c776b5 Iustin Pop
    while not all_done:
3819 53c776b5 Iustin Pop
      all_done = True
3820 53c776b5 Iustin Pop
      result = self.rpc.call_drbd_wait_sync(self.all_nodes,
3821 53c776b5 Iustin Pop
                                            self.nodes_ip,
3822 53c776b5 Iustin Pop
                                            self.instance.disks)
3823 53c776b5 Iustin Pop
      min_percent = 100
3824 53c776b5 Iustin Pop
      for node, nres in result.items():
3825 53c776b5 Iustin Pop
        msg = nres.RemoteFailMsg()
3826 53c776b5 Iustin Pop
        if msg:
3827 53c776b5 Iustin Pop
          raise errors.OpExecError("Cannot resync disks on node %s: %s" %
3828 53c776b5 Iustin Pop
                                   (node, msg))
3829 0959c824 Iustin Pop
        node_done, node_percent = nres.payload
3830 53c776b5 Iustin Pop
        all_done = all_done and node_done
3831 53c776b5 Iustin Pop
        if node_percent is not None:
3832 53c776b5 Iustin Pop
          min_percent = min(min_percent, node_percent)
3833 53c776b5 Iustin Pop
      if not all_done:
3834 53c776b5 Iustin Pop
        if min_percent < 100:
3835 53c776b5 Iustin Pop
          self.feedback_fn("   - progress: %.1f%%" % min_percent)
3836 53c776b5 Iustin Pop
        time.sleep(2)
3837 53c776b5 Iustin Pop
3838 53c776b5 Iustin Pop
  def _EnsureSecondary(self, node):
3839 53c776b5 Iustin Pop
    """Demote a node to secondary.
3840 53c776b5 Iustin Pop

3841 53c776b5 Iustin Pop
    """
3842 53c776b5 Iustin Pop
    self.feedback_fn("* switching node %s to secondary mode" % node)
3843 53c776b5 Iustin Pop
3844 53c776b5 Iustin Pop
    for dev in self.instance.disks:
3845 53c776b5 Iustin Pop
      self.cfg.SetDiskID(dev, node)
3846 53c776b5 Iustin Pop
3847 53c776b5 Iustin Pop
    result = self.rpc.call_blockdev_close(node, self.instance.name,
3848 53c776b5 Iustin Pop
                                          self.instance.disks)
3849 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
3850 53c776b5 Iustin Pop
    if msg:
3851 53c776b5 Iustin Pop
      raise errors.OpExecError("Cannot change disk to secondary on node %s,"
3852 53c776b5 Iustin Pop
                               " error %s" % (node, msg))
3853 53c776b5 Iustin Pop
3854 53c776b5 Iustin Pop
  def _GoStandalone(self):
3855 53c776b5 Iustin Pop
    """Disconnect from the network.
3856 53c776b5 Iustin Pop

3857 53c776b5 Iustin Pop
    """
3858 53c776b5 Iustin Pop
    self.feedback_fn("* changing into standalone mode")
3859 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
3860 53c776b5 Iustin Pop
                                               self.instance.disks)
3861 53c776b5 Iustin Pop
    for node, nres in result.items():
3862 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3863 53c776b5 Iustin Pop
      if msg:
3864 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot disconnect disks node %s,"
3865 53c776b5 Iustin Pop
                                 " error %s" % (node, msg))
3866 53c776b5 Iustin Pop
3867 53c776b5 Iustin Pop
  def _GoReconnect(self, multimaster):
3868 53c776b5 Iustin Pop
    """Reconnect to the network.
3869 53c776b5 Iustin Pop

3870 53c776b5 Iustin Pop
    """
3871 53c776b5 Iustin Pop
    if multimaster:
3872 53c776b5 Iustin Pop
      msg = "dual-master"
3873 53c776b5 Iustin Pop
    else:
3874 53c776b5 Iustin Pop
      msg = "single-master"
3875 53c776b5 Iustin Pop
    self.feedback_fn("* changing disks into %s mode" % msg)
3876 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
3877 53c776b5 Iustin Pop
                                           self.instance.disks,
3878 53c776b5 Iustin Pop
                                           self.instance.name, multimaster)
3879 53c776b5 Iustin Pop
    for node, nres in result.items():
3880 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3881 53c776b5 Iustin Pop
      if msg:
3882 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot change disks config on node %s,"
3883 53c776b5 Iustin Pop
                                 " error: %s" % (node, msg))
3884 53c776b5 Iustin Pop
3885 53c776b5 Iustin Pop
  def _ExecCleanup(self):
3886 53c776b5 Iustin Pop
    """Try to cleanup after a failed migration.
3887 53c776b5 Iustin Pop

3888 53c776b5 Iustin Pop
    The cleanup is done by:
3889 53c776b5 Iustin Pop
      - check that the instance is running only on one node
3890 53c776b5 Iustin Pop
        (and update the config if needed)
3891 53c776b5 Iustin Pop
      - change disks on its secondary node to secondary
3892 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
3893 53c776b5 Iustin Pop
      - disconnect from the network
3894 53c776b5 Iustin Pop
      - change disks into single-master mode
3895 53c776b5 Iustin Pop
      - wait again until disks are fully synchronized
3896 53c776b5 Iustin Pop

3897 53c776b5 Iustin Pop
    """
3898 53c776b5 Iustin Pop
    instance = self.instance
3899 53c776b5 Iustin Pop
    target_node = self.target_node
3900 53c776b5 Iustin Pop
    source_node = self.source_node
3901 53c776b5 Iustin Pop
3902 53c776b5 Iustin Pop
    # check running on only one node
3903 53c776b5 Iustin Pop
    self.feedback_fn("* checking where the instance actually runs"
3904 53c776b5 Iustin Pop
                     " (if this hangs, the hypervisor might be in"
3905 53c776b5 Iustin Pop
                     " a bad state)")
3906 53c776b5 Iustin Pop
    ins_l = self.rpc.call_instance_list(self.all_nodes, [instance.hypervisor])
3907 53c776b5 Iustin Pop
    for node, result in ins_l.items():
3908 aca13712 Iustin Pop
      msg = result.RemoteFailMsg()
3909 aca13712 Iustin Pop
      if msg:
3910 aca13712 Iustin Pop
        raise errors.OpExecError("Can't contact node %s: %s" % (node, msg))
3911 53c776b5 Iustin Pop
3912 aca13712 Iustin Pop
    runningon_source = instance.name in ins_l[source_node].payload
3913 aca13712 Iustin Pop
    runningon_target = instance.name in ins_l[target_node].payload
3914 53c776b5 Iustin Pop
3915 53c776b5 Iustin Pop
    if runningon_source and runningon_target:
3916 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance seems to be running on two nodes,"
3917 53c776b5 Iustin Pop
                               " or the hypervisor is confused. You will have"
3918 53c776b5 Iustin Pop
                               " to ensure manually that it runs only on one"
3919 53c776b5 Iustin Pop
                               " and restart this operation.")
3920 53c776b5 Iustin Pop
3921 53c776b5 Iustin Pop
    if not (runningon_source or runningon_target):
3922 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance does not seem to be running at all."
3923 53c776b5 Iustin Pop
                               " In this case, it's safer to repair by"
3924 53c776b5 Iustin Pop
                               " running 'gnt-instance stop' to ensure disk"
3925 53c776b5 Iustin Pop
                               " shutdown, and then restarting it.")
3926 53c776b5 Iustin Pop
3927 53c776b5 Iustin Pop
    if runningon_target:
3928 53c776b5 Iustin Pop
      # the migration has actually succeeded, we need to update the config
3929 53c776b5 Iustin Pop
      self.feedback_fn("* instance running on secondary node (%s),"
3930 53c776b5 Iustin Pop
                       " updating config" % target_node)
3931 53c776b5 Iustin Pop
      instance.primary_node = target_node
3932 53c776b5 Iustin Pop
      self.cfg.Update(instance)
3933 53c776b5 Iustin Pop
      demoted_node = source_node
3934 53c776b5 Iustin Pop
    else:
3935 53c776b5 Iustin Pop
      self.feedback_fn("* instance confirmed to be running on its"
3936 53c776b5 Iustin Pop
                       " primary node (%s)" % source_node)
3937 53c776b5 Iustin Pop
      demoted_node = target_node
3938 53c776b5 Iustin Pop
3939 53c776b5 Iustin Pop
    self._EnsureSecondary(demoted_node)
3940 53c776b5 Iustin Pop
    try:
3941 53c776b5 Iustin Pop
      self._WaitUntilSync()
3942 53c776b5 Iustin Pop
    except errors.OpExecError:
3943 53c776b5 Iustin Pop
      # we ignore here errors, since if the device is standalone, it
3944 53c776b5 Iustin Pop
      # won't be able to sync
3945 53c776b5 Iustin Pop
      pass
3946 53c776b5 Iustin Pop
    self._GoStandalone()
3947 53c776b5 Iustin Pop
    self._GoReconnect(False)
3948 53c776b5 Iustin Pop
    self._WaitUntilSync()
3949 53c776b5 Iustin Pop
3950 53c776b5 Iustin Pop
    self.feedback_fn("* done")
3951 53c776b5 Iustin Pop
3952 6906a9d8 Guido Trotter
  def _RevertDiskStatus(self):
3953 6906a9d8 Guido Trotter
    """Try to revert the disk status after a failed migration.
3954 6906a9d8 Guido Trotter

3955 6906a9d8 Guido Trotter
    """
3956 6906a9d8 Guido Trotter
    target_node = self.target_node
3957 6906a9d8 Guido Trotter
    try:
3958 6906a9d8 Guido Trotter
      self._EnsureSecondary(target_node)
3959 6906a9d8 Guido Trotter
      self._GoStandalone()
3960 6906a9d8 Guido Trotter
      self._GoReconnect(False)
3961 6906a9d8 Guido Trotter
      self._WaitUntilSync()
3962 6906a9d8 Guido Trotter
    except errors.OpExecError, err:
3963 6906a9d8 Guido Trotter
      self.LogWarning("Migration failed and I can't reconnect the"
3964 6906a9d8 Guido Trotter
                      " drives: error '%s'\n"
3965 6906a9d8 Guido Trotter
                      "Please look and recover the instance status" %
3966 6906a9d8 Guido Trotter
                      str(err))
3967 6906a9d8 Guido Trotter
3968 6906a9d8 Guido Trotter
  def _AbortMigration(self):
3969 6906a9d8 Guido Trotter
    """Call the hypervisor code to abort a started migration.
3970 6906a9d8 Guido Trotter

3971 6906a9d8 Guido Trotter
    """
3972 6906a9d8 Guido Trotter
    instance = self.instance
3973 6906a9d8 Guido Trotter
    target_node = self.target_node
3974 6906a9d8 Guido Trotter
    migration_info = self.migration_info
3975 6906a9d8 Guido Trotter
3976 6906a9d8 Guido Trotter
    abort_result = self.rpc.call_finalize_migration(target_node,
3977 6906a9d8 Guido Trotter
                                                    instance,
3978 6906a9d8 Guido Trotter
                                                    migration_info,
3979 6906a9d8 Guido Trotter
                                                    False)
3980 6906a9d8 Guido Trotter
    abort_msg = abort_result.RemoteFailMsg()
3981 6906a9d8 Guido Trotter
    if abort_msg:
3982 6906a9d8 Guido Trotter
      logging.error("Aborting migration failed on target node %s: %s" %
3983 6906a9d8 Guido Trotter
                    (target_node, abort_msg))
3984 6906a9d8 Guido Trotter
      # Don't raise an exception here, as we stil have to try to revert the
3985 6906a9d8 Guido Trotter
      # disk status, even if this step failed.
3986 6906a9d8 Guido Trotter
3987 53c776b5 Iustin Pop
  def _ExecMigration(self):
3988 53c776b5 Iustin Pop
    """Migrate an instance.
3989 53c776b5 Iustin Pop

3990 53c776b5 Iustin Pop
    The migrate is done by:
3991 53c776b5 Iustin Pop
      - change the disks into dual-master mode
3992 53c776b5 Iustin Pop
      - wait until disks are fully synchronized again
3993 53c776b5 Iustin Pop
      - migrate the instance
3994 53c776b5 Iustin Pop
      - change disks on the new secondary node (the old primary) to secondary
3995 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
3996 53c776b5 Iustin Pop
      - change disks into single-master mode
3997 53c776b5 Iustin Pop

3998 53c776b5 Iustin Pop
    """
3999 53c776b5 Iustin Pop
    instance = self.instance
4000 53c776b5 Iustin Pop
    target_node = self.target_node
4001 53c776b5 Iustin Pop
    source_node = self.source_node
4002 53c776b5 Iustin Pop
4003 53c776b5 Iustin Pop
    self.feedback_fn("* checking disk consistency between source and target")
4004 53c776b5 Iustin Pop
    for dev in instance.disks:
4005 53c776b5 Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
4006 53c776b5 Iustin Pop
        raise errors.OpExecError("Disk %s is degraded or not fully"
4007 53c776b5 Iustin Pop
                                 " synchronized on target node,"
4008 53c776b5 Iustin Pop
                                 " aborting migrate." % dev.iv_name)
4009 53c776b5 Iustin Pop
4010 6906a9d8 Guido Trotter
    # First get the migration information from the remote node
4011 6906a9d8 Guido Trotter
    result = self.rpc.call_migration_info(source_node, instance)
4012 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
4013 6906a9d8 Guido Trotter
    if msg:
4014 6906a9d8 Guido Trotter
      log_err = ("Failed fetching source migration information from %s: %s" %
4015 0959c824 Iustin Pop
                 (source_node, msg))
4016 6906a9d8 Guido Trotter
      logging.error(log_err)
4017 6906a9d8 Guido Trotter
      raise errors.OpExecError(log_err)
4018 6906a9d8 Guido Trotter
4019 0959c824 Iustin Pop
    self.migration_info = migration_info = result.payload
4020 6906a9d8 Guido Trotter
4021 6906a9d8 Guido Trotter
    # Then switch the disks to master/master mode
4022 53c776b5 Iustin Pop
    self._EnsureSecondary(target_node)
4023 53c776b5 Iustin Pop
    self._GoStandalone()
4024 53c776b5 Iustin Pop
    self._GoReconnect(True)
4025 53c776b5 Iustin Pop
    self._WaitUntilSync()
4026 53c776b5 Iustin Pop
4027 6906a9d8 Guido Trotter
    self.feedback_fn("* preparing %s to accept the instance" % target_node)
4028 6906a9d8 Guido Trotter
    result = self.rpc.call_accept_instance(target_node,
4029 6906a9d8 Guido Trotter
                                           instance,
4030 6906a9d8 Guido Trotter
                                           migration_info,
4031 6906a9d8 Guido Trotter
                                           self.nodes_ip[target_node])
4032 6906a9d8 Guido Trotter
4033 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
4034 6906a9d8 Guido Trotter
    if msg:
4035 6906a9d8 Guido Trotter
      logging.error("Instance pre-migration failed, trying to revert"
4036 6906a9d8 Guido Trotter
                    " disk status: %s", msg)
4037 6906a9d8 Guido Trotter
      self._AbortMigration()
4038 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
4039 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not pre-migrate instance %s: %s" %
4040 6906a9d8 Guido Trotter
                               (instance.name, msg))
4041 6906a9d8 Guido Trotter
4042 53c776b5 Iustin Pop
    self.feedback_fn("* migrating instance to %s" % target_node)
4043 53c776b5 Iustin Pop
    time.sleep(10)
4044 53c776b5 Iustin Pop
    result = self.rpc.call_instance_migrate(source_node, instance,
4045 53c776b5 Iustin Pop
                                            self.nodes_ip[target_node],
4046 53c776b5 Iustin Pop
                                            self.op.live)
4047 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
4048 53c776b5 Iustin Pop
    if msg:
4049 53c776b5 Iustin Pop
      logging.error("Instance migration failed, trying to revert"
4050 53c776b5 Iustin Pop
                    " disk status: %s", msg)
4051 6906a9d8 Guido Trotter
      self._AbortMigration()
4052 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
4053 53c776b5 Iustin Pop
      raise errors.OpExecError("Could not migrate instance %s: %s" %
4054 53c776b5 Iustin Pop
                               (instance.name, msg))
4055 53c776b5 Iustin Pop
    time.sleep(10)
4056 53c776b5 Iustin Pop
4057 53c776b5 Iustin Pop
    instance.primary_node = target_node
4058 53c776b5 Iustin Pop
    # distribute new instance config to the other nodes
4059 53c776b5 Iustin Pop
    self.cfg.Update(instance)
4060 53c776b5 Iustin Pop
4061 6906a9d8 Guido Trotter
    result = self.rpc.call_finalize_migration(target_node,
4062 6906a9d8 Guido Trotter
                                              instance,
4063 6906a9d8 Guido Trotter
                                              migration_info,
4064 6906a9d8 Guido Trotter
                                              True)
4065 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
4066 6906a9d8 Guido Trotter
    if msg:
4067 6906a9d8 Guido Trotter
      logging.error("Instance migration succeeded, but finalization failed:"
4068 6906a9d8 Guido Trotter
                    " %s" % msg)
4069 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not finalize instance migration: %s" %
4070 6906a9d8 Guido Trotter
                               msg)
4071 6906a9d8 Guido Trotter
4072 53c776b5 Iustin Pop
    self._EnsureSecondary(source_node)
4073 53c776b5 Iustin Pop
    self._WaitUntilSync()
4074 53c776b5 Iustin Pop
    self._GoStandalone()
4075 53c776b5 Iustin Pop
    self._GoReconnect(False)
4076 53c776b5 Iustin Pop
    self._WaitUntilSync()
4077 53c776b5 Iustin Pop
4078 53c776b5 Iustin Pop
    self.feedback_fn("* done")
4079 53c776b5 Iustin Pop
4080 53c776b5 Iustin Pop
  def Exec(self, feedback_fn):
4081 53c776b5 Iustin Pop
    """Perform the migration.
4082 53c776b5 Iustin Pop

4083 53c776b5 Iustin Pop
    """
4084 53c776b5 Iustin Pop
    self.feedback_fn = feedback_fn
4085 53c776b5 Iustin Pop
4086 53c776b5 Iustin Pop
    self.source_node = self.instance.primary_node
4087 53c776b5 Iustin Pop
    self.target_node = self.instance.secondary_nodes[0]
4088 53c776b5 Iustin Pop
    self.all_nodes = [self.source_node, self.target_node]
4089 53c776b5 Iustin Pop
    self.nodes_ip = {
4090 53c776b5 Iustin Pop
      self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
4091 53c776b5 Iustin Pop
      self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
4092 53c776b5 Iustin Pop
      }
4093 53c776b5 Iustin Pop
    if self.op.cleanup:
4094 53c776b5 Iustin Pop
      return self._ExecCleanup()
4095 53c776b5 Iustin Pop
    else:
4096 53c776b5 Iustin Pop
      return self._ExecMigration()
4097 53c776b5 Iustin Pop
4098 53c776b5 Iustin Pop
4099 428958aa Iustin Pop
def _CreateBlockDev(lu, node, instance, device, force_create,
4100 428958aa Iustin Pop
                    info, force_open):
4101 428958aa Iustin Pop
  """Create a tree of block devices on a given node.
4102 a8083063 Iustin Pop

4103 a8083063 Iustin Pop
  If this device type has to be created on secondaries, create it and
4104 a8083063 Iustin Pop
  all its children.
4105 a8083063 Iustin Pop

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

4108 428958aa Iustin Pop
  @param lu: the lu on whose behalf we execute
4109 428958aa Iustin Pop
  @param node: the node on which to create the device
4110 428958aa Iustin Pop
  @type instance: L{objects.Instance}
4111 428958aa Iustin Pop
  @param instance: the instance which owns the device
4112 428958aa Iustin Pop
  @type device: L{objects.Disk}
4113 428958aa Iustin Pop
  @param device: the device to create
4114 428958aa Iustin Pop
  @type force_create: boolean
4115 428958aa Iustin Pop
  @param force_create: whether to force creation of this device; this
4116 428958aa Iustin Pop
      will be change to True whenever we find a device which has
4117 428958aa Iustin Pop
      CreateOnSecondary() attribute
4118 428958aa Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
4119 428958aa Iustin Pop
      (this will be represented as a LVM tag)
4120 428958aa Iustin Pop
  @type force_open: boolean
4121 428958aa Iustin Pop
  @param force_open: this parameter will be passes to the
4122 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
4123 428958aa Iustin Pop
      whether we run on primary or not, and it affects both
4124 428958aa Iustin Pop
      the child assembly and the device own Open() execution
4125 428958aa Iustin Pop

4126 a8083063 Iustin Pop
  """
4127 a8083063 Iustin Pop
  if device.CreateOnSecondary():
4128 428958aa Iustin Pop
    force_create = True
4129 796cab27 Iustin Pop
4130 a8083063 Iustin Pop
  if device.children:
4131 a8083063 Iustin Pop
    for child in device.children:
4132 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, child, force_create,
4133 428958aa Iustin Pop
                      info, force_open)
4134 a8083063 Iustin Pop
4135 428958aa Iustin Pop
  if not force_create:
4136 796cab27 Iustin Pop
    return
4137 796cab27 Iustin Pop
4138 de12473a Iustin Pop
  _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
4139 de12473a Iustin Pop
4140 de12473a Iustin Pop
4141 de12473a Iustin Pop
def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
4142 de12473a Iustin Pop
  """Create a single block device on a given node.
4143 de12473a Iustin Pop

4144 de12473a Iustin Pop
  This will not recurse over children of the device, so they must be
4145 de12473a Iustin Pop
  created in advance.
4146 de12473a Iustin Pop

4147 de12473a Iustin Pop
  @param lu: the lu on whose behalf we execute
4148 de12473a Iustin Pop
  @param node: the node on which to create the device
4149 de12473a Iustin Pop
  @type instance: L{objects.Instance}
4150 de12473a Iustin Pop
  @param instance: the instance which owns the device
4151 de12473a Iustin Pop
  @type device: L{objects.Disk}
4152 de12473a Iustin Pop
  @param device: the device to create
4153 de12473a Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
4154 de12473a Iustin Pop
      (this will be represented as a LVM tag)
4155 de12473a Iustin Pop
  @type force_open: boolean
4156 de12473a Iustin Pop
  @param force_open: this parameter will be passes to the
4157 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
4158 de12473a Iustin Pop
      whether we run on primary or not, and it affects both
4159 de12473a Iustin Pop
      the child assembly and the device own Open() execution
4160 de12473a Iustin Pop

4161 de12473a Iustin Pop
  """
4162 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
4163 7d81697f Iustin Pop
  result = lu.rpc.call_blockdev_create(node, device, device.size,
4164 428958aa Iustin Pop
                                       instance.name, force_open, info)
4165 7d81697f Iustin Pop
  msg = result.RemoteFailMsg()
4166 7d81697f Iustin Pop
  if msg:
4167 428958aa Iustin Pop
    raise errors.OpExecError("Can't create block device %s on"
4168 7d81697f Iustin Pop
                             " node %s for instance %s: %s" %
4169 7d81697f Iustin Pop
                             (device, node, instance.name, msg))
4170 a8083063 Iustin Pop
  if device.physical_id is None:
4171 0959c824 Iustin Pop
    device.physical_id = result.payload
4172 a8083063 Iustin Pop
4173 a8083063 Iustin Pop
4174 b9bddb6b Iustin Pop
def _GenerateUniqueNames(lu, exts):
4175 923b1523 Iustin Pop
  """Generate a suitable LV name.
4176 923b1523 Iustin Pop

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

4179 923b1523 Iustin Pop
  """
4180 923b1523 Iustin Pop
  results = []
4181 923b1523 Iustin Pop
  for val in exts:
4182 b9bddb6b Iustin Pop
    new_id = lu.cfg.GenerateUniqueID()
4183 923b1523 Iustin Pop
    results.append("%s%s" % (new_id, val))
4184 923b1523 Iustin Pop
  return results
4185 923b1523 Iustin Pop
4186 923b1523 Iustin Pop
4187 b9bddb6b Iustin Pop
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
4188 ffa1c0dc Iustin Pop
                         p_minor, s_minor):
4189 a1f445d3 Iustin Pop
  """Generate a drbd8 device complete with its children.
4190 a1f445d3 Iustin Pop

4191 a1f445d3 Iustin Pop
  """
4192 b9bddb6b Iustin Pop
  port = lu.cfg.AllocatePort()
4193 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
4194 b9bddb6b Iustin Pop
  shared_secret = lu.cfg.GenerateDRBDSecret()
4195 a1f445d3 Iustin Pop
  dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
4196 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[0]))
4197 a1f445d3 Iustin Pop
  dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
4198 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[1]))
4199 a1f445d3 Iustin Pop
  drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
4200 ffa1c0dc Iustin Pop
                          logical_id=(primary, secondary, port,
4201 f9518d38 Iustin Pop
                                      p_minor, s_minor,
4202 f9518d38 Iustin Pop
                                      shared_secret),
4203 ffa1c0dc Iustin Pop
                          children=[dev_data, dev_meta],
4204 a1f445d3 Iustin Pop
                          iv_name=iv_name)
4205 a1f445d3 Iustin Pop
  return drbd_dev
4206 a1f445d3 Iustin Pop
4207 7c0d6283 Michael Hanselmann
4208 b9bddb6b Iustin Pop
def _GenerateDiskTemplate(lu, template_name,
4209 a8083063 Iustin Pop
                          instance_name, primary_node,
4210 08db7c5c Iustin Pop
                          secondary_nodes, disk_info,
4211 e2a65344 Iustin Pop
                          file_storage_dir, file_driver,
4212 e2a65344 Iustin Pop
                          base_index):
4213 a8083063 Iustin Pop
  """Generate the entire disk layout for a given template type.
4214 a8083063 Iustin Pop

4215 a8083063 Iustin Pop
  """
4216 a8083063 Iustin Pop
  #TODO: compute space requirements
4217 a8083063 Iustin Pop
4218 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
4219 08db7c5c Iustin Pop
  disk_count = len(disk_info)
4220 08db7c5c Iustin Pop
  disks = []
4221 3517d9b9 Manuel Franceschini
  if template_name == constants.DT_DISKLESS:
4222 08db7c5c Iustin Pop
    pass
4223 3517d9b9 Manuel Franceschini
  elif template_name == constants.DT_PLAIN:
4224 a8083063 Iustin Pop
    if len(secondary_nodes) != 0:
4225 a8083063 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4226 923b1523 Iustin Pop
4227 08db7c5c Iustin Pop
    names = _GenerateUniqueNames(lu, [".disk%d" % i
4228 08db7c5c Iustin Pop
                                      for i in range(disk_count)])
4229 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4230 e2a65344 Iustin Pop
      disk_index = idx + base_index
4231 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
4232 08db7c5c Iustin Pop
                              logical_id=(vgname, names[idx]),
4233 6ec66eae Iustin Pop
                              iv_name="disk/%d" % disk_index,
4234 6ec66eae Iustin Pop
                              mode=disk["mode"])
4235 08db7c5c Iustin Pop
      disks.append(disk_dev)
4236 a1f445d3 Iustin Pop
  elif template_name == constants.DT_DRBD8:
4237 a1f445d3 Iustin Pop
    if len(secondary_nodes) != 1:
4238 a1f445d3 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4239 a1f445d3 Iustin Pop
    remote_node = secondary_nodes[0]
4240 08db7c5c Iustin Pop
    minors = lu.cfg.AllocateDRBDMinor(
4241 08db7c5c Iustin Pop
      [primary_node, remote_node] * len(disk_info), instance_name)
4242 08db7c5c Iustin Pop
4243 e6c1ff2f Iustin Pop
    names = []
4244 e6c1ff2f Iustin Pop
    for lv_prefix in _GenerateUniqueNames(lu, [".disk%d" % i
4245 e6c1ff2f Iustin Pop
                                               for i in range(disk_count)]):
4246 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_data")
4247 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_meta")
4248 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4249 112050d9 Iustin Pop
      disk_index = idx + base_index
4250 08db7c5c Iustin Pop
      disk_dev = _GenerateDRBD8Branch(lu, primary_node, remote_node,
4251 08db7c5c Iustin Pop
                                      disk["size"], names[idx*2:idx*2+2],
4252 e2a65344 Iustin Pop
                                      "disk/%d" % disk_index,
4253 08db7c5c Iustin Pop
                                      minors[idx*2], minors[idx*2+1])
4254 6ec66eae Iustin Pop
      disk_dev.mode = disk["mode"]
4255 08db7c5c Iustin Pop
      disks.append(disk_dev)
4256 0f1a06e3 Manuel Franceschini
  elif template_name == constants.DT_FILE:
4257 0f1a06e3 Manuel Franceschini
    if len(secondary_nodes) != 0:
4258 0f1a06e3 Manuel Franceschini
      raise errors.ProgrammerError("Wrong template configuration")
4259 0f1a06e3 Manuel Franceschini
4260 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4261 112050d9 Iustin Pop
      disk_index = idx + base_index
4262 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_FILE, size=disk["size"],
4263 e2a65344 Iustin Pop
                              iv_name="disk/%d" % disk_index,
4264 08db7c5c Iustin Pop
                              logical_id=(file_driver,
4265 08db7c5c Iustin Pop
                                          "%s/disk%d" % (file_storage_dir,
4266 43e99cff Guido Trotter
                                                         disk_index)),
4267 6ec66eae Iustin Pop
                              mode=disk["mode"])
4268 08db7c5c Iustin Pop
      disks.append(disk_dev)
4269 a8083063 Iustin Pop
  else:
4270 a8083063 Iustin Pop
    raise errors.ProgrammerError("Invalid disk template '%s'" % template_name)
4271 a8083063 Iustin Pop
  return disks
4272 a8083063 Iustin Pop
4273 a8083063 Iustin Pop
4274 a0c3fea1 Michael Hanselmann
def _GetInstanceInfoText(instance):
4275 3ecf6786 Iustin Pop
  """Compute that text that should be added to the disk's metadata.
4276 3ecf6786 Iustin Pop

4277 3ecf6786 Iustin Pop
  """
4278 a0c3fea1 Michael Hanselmann
  return "originstname+%s" % instance.name
4279 a0c3fea1 Michael Hanselmann
4280 a0c3fea1 Michael Hanselmann
4281 b9bddb6b Iustin Pop
def _CreateDisks(lu, instance):
4282 a8083063 Iustin Pop
  """Create all disks for an instance.
4283 a8083063 Iustin Pop

4284 a8083063 Iustin Pop
  This abstracts away some work from AddInstance.
4285 a8083063 Iustin Pop

4286 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4287 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4288 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4289 e4376078 Iustin Pop
  @param instance: the instance whose disks we should create
4290 e4376078 Iustin Pop
  @rtype: boolean
4291 e4376078 Iustin Pop
  @return: the success of the creation
4292 a8083063 Iustin Pop

4293 a8083063 Iustin Pop
  """
4294 a0c3fea1 Michael Hanselmann
  info = _GetInstanceInfoText(instance)
4295 428958aa Iustin Pop
  pnode = instance.primary_node
4296 a0c3fea1 Michael Hanselmann
4297 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4298 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4299 428958aa Iustin Pop
    result = lu.rpc.call_file_storage_dir_create(pnode, file_storage_dir)
4300 0f1a06e3 Manuel Franceschini
4301 781de953 Iustin Pop
    if result.failed or not result.data:
4302 428958aa Iustin Pop
      raise errors.OpExecError("Could not connect to node '%s'" % pnode)
4303 0f1a06e3 Manuel Franceschini
4304 781de953 Iustin Pop
    if not result.data[0]:
4305 796cab27 Iustin Pop
      raise errors.OpExecError("Failed to create directory '%s'" %
4306 796cab27 Iustin Pop
                               file_storage_dir)
4307 0f1a06e3 Manuel Franceschini
4308 24991749 Iustin Pop
  # Note: this needs to be kept in sync with adding of disks in
4309 24991749 Iustin Pop
  # LUSetInstanceParams
4310 a8083063 Iustin Pop
  for device in instance.disks:
4311 9a4f63d1 Iustin Pop
    logging.info("Creating volume %s for instance %s",
4312 9a4f63d1 Iustin Pop
                 device.iv_name, instance.name)
4313 a8083063 Iustin Pop
    #HARDCODE
4314 428958aa Iustin Pop
    for node in instance.all_nodes:
4315 428958aa Iustin Pop
      f_create = node == pnode
4316 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, device, f_create, info, f_create)
4317 a8083063 Iustin Pop
4318 a8083063 Iustin Pop
4319 b9bddb6b Iustin Pop
def _RemoveDisks(lu, instance):
4320 a8083063 Iustin Pop
  """Remove all disks for an instance.
4321 a8083063 Iustin Pop

4322 a8083063 Iustin Pop
  This abstracts away some work from `AddInstance()` and
4323 a8083063 Iustin Pop
  `RemoveInstance()`. Note that in case some of the devices couldn't
4324 1d67656e Iustin Pop
  be removed, the removal will continue with the other ones (compare
4325 a8083063 Iustin Pop
  with `_CreateDisks()`).
4326 a8083063 Iustin Pop

4327 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4328 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4329 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4330 e4376078 Iustin Pop
  @param instance: the instance whose disks we should remove
4331 e4376078 Iustin Pop
  @rtype: boolean
4332 e4376078 Iustin Pop
  @return: the success of the removal
4333 a8083063 Iustin Pop

4334 a8083063 Iustin Pop
  """
4335 9a4f63d1 Iustin Pop
  logging.info("Removing block devices for instance %s", instance.name)
4336 a8083063 Iustin Pop
4337 e1bc0878 Iustin Pop
  all_result = True
4338 a8083063 Iustin Pop
  for device in instance.disks:
4339 a8083063 Iustin Pop
    for node, disk in device.ComputeNodeTree(instance.primary_node):
4340 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(disk, node)
4341 e1bc0878 Iustin Pop
      msg = lu.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
4342 e1bc0878 Iustin Pop
      if msg:
4343 e1bc0878 Iustin Pop
        lu.LogWarning("Could not remove block device %s on node %s,"
4344 e1bc0878 Iustin Pop
                      " continuing anyway: %s", device.iv_name, node, msg)
4345 e1bc0878 Iustin Pop
        all_result = False
4346 0f1a06e3 Manuel Franceschini
4347 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4348 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4349 781de953 Iustin Pop
    result = lu.rpc.call_file_storage_dir_remove(instance.primary_node,
4350 781de953 Iustin Pop
                                                 file_storage_dir)
4351 781de953 Iustin Pop
    if result.failed or not result.data:
4352 9a4f63d1 Iustin Pop
      logging.error("Could not remove directory '%s'", file_storage_dir)
4353 e1bc0878 Iustin Pop
      all_result = False
4354 0f1a06e3 Manuel Franceschini
4355 e1bc0878 Iustin Pop
  return all_result
4356 a8083063 Iustin Pop
4357 a8083063 Iustin Pop
4358 08db7c5c Iustin Pop
def _ComputeDiskSize(disk_template, disks):
4359 e2fe6369 Iustin Pop
  """Compute disk size requirements in the volume group
4360 e2fe6369 Iustin Pop

4361 e2fe6369 Iustin Pop
  """
4362 e2fe6369 Iustin Pop
  # Required free disk space as a function of disk and swap space
4363 e2fe6369 Iustin Pop
  req_size_dict = {
4364 e2fe6369 Iustin Pop
    constants.DT_DISKLESS: None,
4365 08db7c5c Iustin Pop
    constants.DT_PLAIN: sum(d["size"] for d in disks),
4366 08db7c5c Iustin Pop
    # 128 MB are added for drbd metadata for each disk
4367 08db7c5c Iustin Pop
    constants.DT_DRBD8: sum(d["size"] + 128 for d in disks),
4368 e2fe6369 Iustin Pop
    constants.DT_FILE: None,
4369 e2fe6369 Iustin Pop
  }
4370 e2fe6369 Iustin Pop
4371 e2fe6369 Iustin Pop
  if disk_template not in req_size_dict:
4372 e2fe6369 Iustin Pop
    raise errors.ProgrammerError("Disk template '%s' size requirement"
4373 e2fe6369 Iustin Pop
                                 " is unknown" %  disk_template)
4374 e2fe6369 Iustin Pop
4375 e2fe6369 Iustin Pop
  return req_size_dict[disk_template]
4376 e2fe6369 Iustin Pop
4377 e2fe6369 Iustin Pop
4378 74409b12 Iustin Pop
def _CheckHVParams(lu, nodenames, hvname, hvparams):
4379 74409b12 Iustin Pop
  """Hypervisor parameter validation.
4380 74409b12 Iustin Pop

4381 74409b12 Iustin Pop
  This function abstract the hypervisor parameter validation to be
4382 74409b12 Iustin Pop
  used in both instance create and instance modify.
4383 74409b12 Iustin Pop

4384 74409b12 Iustin Pop
  @type lu: L{LogicalUnit}
4385 74409b12 Iustin Pop
  @param lu: the logical unit for which we check
4386 74409b12 Iustin Pop
  @type nodenames: list
4387 74409b12 Iustin Pop
  @param nodenames: the list of nodes on which we should check
4388 74409b12 Iustin Pop
  @type hvname: string
4389 74409b12 Iustin Pop
  @param hvname: the name of the hypervisor we should use
4390 74409b12 Iustin Pop
  @type hvparams: dict
4391 74409b12 Iustin Pop
  @param hvparams: the parameters which we need to check
4392 74409b12 Iustin Pop
  @raise errors.OpPrereqError: if the parameters are not valid
4393 74409b12 Iustin Pop

4394 74409b12 Iustin Pop
  """
4395 74409b12 Iustin Pop
  hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
4396 74409b12 Iustin Pop
                                                  hvname,
4397 74409b12 Iustin Pop
                                                  hvparams)
4398 74409b12 Iustin Pop
  for node in nodenames:
4399 781de953 Iustin Pop
    info = hvinfo[node]
4400 68c6f21c Iustin Pop
    if info.offline:
4401 68c6f21c Iustin Pop
      continue
4402 0959c824 Iustin Pop
    msg = info.RemoteFailMsg()
4403 0959c824 Iustin Pop
    if msg:
4404 d64769a8 Iustin Pop
      raise errors.OpPrereqError("Hypervisor parameter validation"
4405 d64769a8 Iustin Pop
                                 " failed on node %s: %s" % (node, msg))
4406 74409b12 Iustin Pop
4407 74409b12 Iustin Pop
4408 a8083063 Iustin Pop
class LUCreateInstance(LogicalUnit):
4409 a8083063 Iustin Pop
  """Create an instance.
4410 a8083063 Iustin Pop

4411 a8083063 Iustin Pop
  """
4412 a8083063 Iustin Pop
  HPATH = "instance-add"
4413 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4414 08db7c5c Iustin Pop
  _OP_REQP = ["instance_name", "disks", "disk_template",
4415 08db7c5c Iustin Pop
              "mode", "start",
4416 08db7c5c Iustin Pop
              "wait_for_sync", "ip_check", "nics",
4417 338e51e8 Iustin Pop
              "hvparams", "beparams"]
4418 7baf741d Guido Trotter
  REQ_BGL = False
4419 7baf741d Guido Trotter
4420 7baf741d Guido Trotter
  def _ExpandNode(self, node):
4421 7baf741d Guido Trotter
    """Expands and checks one node name.
4422 7baf741d Guido Trotter

4423 7baf741d Guido Trotter
    """
4424 7baf741d Guido Trotter
    node_full = self.cfg.ExpandNodeName(node)
4425 7baf741d Guido Trotter
    if node_full is None:
4426 7baf741d Guido Trotter
      raise errors.OpPrereqError("Unknown node %s" % node)
4427 7baf741d Guido Trotter
    return node_full
4428 7baf741d Guido Trotter
4429 7baf741d Guido Trotter
  def ExpandNames(self):
4430 7baf741d Guido Trotter
    """ExpandNames for CreateInstance.
4431 7baf741d Guido Trotter

4432 7baf741d Guido Trotter
    Figure out the right locks for instance creation.
4433 7baf741d Guido Trotter

4434 7baf741d Guido Trotter
    """
4435 7baf741d Guido Trotter
    self.needed_locks = {}
4436 7baf741d Guido Trotter
4437 7baf741d Guido Trotter
    # set optional parameters to none if they don't exist
4438 6785674e Iustin Pop
    for attr in ["pnode", "snode", "iallocator", "hypervisor"]:
4439 7baf741d Guido Trotter
      if not hasattr(self.op, attr):
4440 7baf741d Guido Trotter
        setattr(self.op, attr, None)
4441 7baf741d Guido Trotter
4442 4b2f38dd Iustin Pop
    # cheap checks, mostly valid constants given
4443 4b2f38dd Iustin Pop
4444 7baf741d Guido Trotter
    # verify creation mode
4445 7baf741d Guido Trotter
    if self.op.mode not in (constants.INSTANCE_CREATE,
4446 7baf741d Guido Trotter
                            constants.INSTANCE_IMPORT):
4447 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid instance creation mode '%s'" %
4448 7baf741d Guido Trotter
                                 self.op.mode)
4449 4b2f38dd Iustin Pop
4450 7baf741d Guido Trotter
    # disk template and mirror node verification
4451 7baf741d Guido Trotter
    if self.op.disk_template not in constants.DISK_TEMPLATES:
4452 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid disk template name")
4453 7baf741d Guido Trotter
4454 4b2f38dd Iustin Pop
    if self.op.hypervisor is None:
4455 4b2f38dd Iustin Pop
      self.op.hypervisor = self.cfg.GetHypervisorType()
4456 4b2f38dd Iustin Pop
4457 8705eb96 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
4458 8705eb96 Iustin Pop
    enabled_hvs = cluster.enabled_hypervisors
4459 4b2f38dd Iustin Pop
    if self.op.hypervisor not in enabled_hvs:
4460 4b2f38dd Iustin Pop
      raise errors.OpPrereqError("Selected hypervisor (%s) not enabled in the"
4461 4b2f38dd Iustin Pop
                                 " cluster (%s)" % (self.op.hypervisor,
4462 4b2f38dd Iustin Pop
                                  ",".join(enabled_hvs)))
4463 4b2f38dd Iustin Pop
4464 6785674e Iustin Pop
    # check hypervisor parameter syntax (locally)
4465 a5728081 Guido Trotter
    utils.ForceDictType(self.op.hvparams, constants.HVS_PARAMETER_TYPES)
4466 abe609b2 Guido Trotter
    filled_hvp = objects.FillDict(cluster.hvparams[self.op.hypervisor],
4467 8705eb96 Iustin Pop
                                  self.op.hvparams)
4468 6785674e Iustin Pop
    hv_type = hypervisor.GetHypervisor(self.op.hypervisor)
4469 8705eb96 Iustin Pop
    hv_type.CheckParameterSyntax(filled_hvp)
4470 6785674e Iustin Pop
4471 338e51e8 Iustin Pop
    # fill and remember the beparams dict
4472 a5728081 Guido Trotter
    utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
4473 4ef7f423 Guido Trotter
    self.be_full = objects.FillDict(cluster.beparams[constants.PP_DEFAULT],
4474 338e51e8 Iustin Pop
                                    self.op.beparams)
4475 338e51e8 Iustin Pop
4476 7baf741d Guido Trotter
    #### instance parameters check
4477 7baf741d Guido Trotter
4478 7baf741d Guido Trotter
    # instance name verification
4479 7baf741d Guido Trotter
    hostname1 = utils.HostInfo(self.op.instance_name)
4480 7baf741d Guido Trotter
    self.op.instance_name = instance_name = hostname1.name
4481 7baf741d Guido Trotter
4482 7baf741d Guido Trotter
    # this is just a preventive check, but someone might still add this
4483 7baf741d Guido Trotter
    # instance in the meantime, and creation will fail at lock-add time
4484 7baf741d Guido Trotter
    if instance_name in self.cfg.GetInstanceList():
4485 7baf741d Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
4486 7baf741d Guido Trotter
                                 instance_name)
4487 7baf741d Guido Trotter
4488 7baf741d Guido Trotter
    self.add_locks[locking.LEVEL_INSTANCE] = instance_name
4489 7baf741d Guido Trotter
4490 08db7c5c Iustin Pop
    # NIC buildup
4491 08db7c5c Iustin Pop
    self.nics = []
4492 9dce4771 Guido Trotter
    for idx, nic in enumerate(self.op.nics):
4493 9dce4771 Guido Trotter
      nic_mode_req = nic.get("mode", None)
4494 9dce4771 Guido Trotter
      nic_mode = nic_mode_req
4495 9dce4771 Guido Trotter
      if nic_mode is None:
4496 9dce4771 Guido Trotter
        nic_mode = cluster.nicparams[constants.PP_DEFAULT][constants.NIC_MODE]
4497 9dce4771 Guido Trotter
4498 9dce4771 Guido Trotter
      # in routed mode, for the first nic, the default ip is 'auto'
4499 9dce4771 Guido Trotter
      if nic_mode == constants.NIC_MODE_ROUTED and idx == 0:
4500 9dce4771 Guido Trotter
        default_ip_mode = constants.VALUE_AUTO
4501 9dce4771 Guido Trotter
      else:
4502 9dce4771 Guido Trotter
        default_ip_mode = constants.VALUE_NONE
4503 9dce4771 Guido Trotter
4504 08db7c5c Iustin Pop
      # ip validity checks
4505 9dce4771 Guido Trotter
      ip = nic.get("ip", default_ip_mode)
4506 9dce4771 Guido Trotter
      if ip is None or ip.lower() == constants.VALUE_NONE:
4507 08db7c5c Iustin Pop
        nic_ip = None
4508 08db7c5c Iustin Pop
      elif ip.lower() == constants.VALUE_AUTO:
4509 08db7c5c Iustin Pop
        nic_ip = hostname1.ip
4510 08db7c5c Iustin Pop
      else:
4511 08db7c5c Iustin Pop
        if not utils.IsValidIP(ip):
4512 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Given IP address '%s' doesn't look"
4513 08db7c5c Iustin Pop
                                     " like a valid IP" % ip)
4514 08db7c5c Iustin Pop
        nic_ip = ip
4515 08db7c5c Iustin Pop
4516 9dce4771 Guido Trotter
      # TODO: check the ip for uniqueness !!
4517 9dce4771 Guido Trotter
      if nic_mode == constants.NIC_MODE_ROUTED and not nic_ip:
4518 9dce4771 Guido Trotter
        raise errors.OpPrereqError("Routed nic mode requires an ip address")
4519 9dce4771 Guido Trotter
4520 08db7c5c Iustin Pop
      # MAC address verification
4521 08db7c5c Iustin Pop
      mac = nic.get("mac", constants.VALUE_AUTO)
4522 08db7c5c Iustin Pop
      if mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4523 08db7c5c Iustin Pop
        if not utils.IsValidMac(mac.lower()):
4524 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Invalid MAC address specified: %s" %
4525 08db7c5c Iustin Pop
                                     mac)
4526 08db7c5c Iustin Pop
      # bridge verification
4527 9939547b Iustin Pop
      bridge = nic.get("bridge", None)
4528 9dce4771 Guido Trotter
      link = nic.get("link", None)
4529 9dce4771 Guido Trotter
      if bridge and link:
4530 9dce4771 Guido Trotter
        raise errors.OpPrereqError("Cannot pass 'bridge' and 'link' at the same time")
4531 9dce4771 Guido Trotter
      elif bridge and nic_mode == constants.NIC_MODE_ROUTED:
4532 9dce4771 Guido Trotter
        raise errors.OpPrereqError("Cannot pass 'bridge' on a routed nic")
4533 9dce4771 Guido Trotter
      elif bridge:
4534 9dce4771 Guido Trotter
        link = bridge
4535 9dce4771 Guido Trotter
4536 9dce4771 Guido Trotter
      nicparams = {}
4537 9dce4771 Guido Trotter
      if nic_mode_req:
4538 9dce4771 Guido Trotter
        nicparams[constants.NIC_MODE] = nic_mode_req
4539 9dce4771 Guido Trotter
      if link:
4540 9dce4771 Guido Trotter
        nicparams[constants.NIC_LINK] = link
4541 9dce4771 Guido Trotter
4542 9dce4771 Guido Trotter
      check_params = objects.FillDict(cluster.nicparams[constants.PP_DEFAULT],
4543 9dce4771 Guido Trotter
                                      nicparams)
4544 9dce4771 Guido Trotter
      objects.NIC.CheckParameterSyntax(check_params)
4545 9dce4771 Guido Trotter
      self.nics.append(objects.NIC(mac=mac, ip=nic_ip, nicparams=nicparams))
4546 08db7c5c Iustin Pop
4547 08db7c5c Iustin Pop
    # disk checks/pre-build
4548 08db7c5c Iustin Pop
    self.disks = []
4549 08db7c5c Iustin Pop
    for disk in self.op.disks:
4550 08db7c5c Iustin Pop
      mode = disk.get("mode", constants.DISK_RDWR)
4551 08db7c5c Iustin Pop
      if mode not in constants.DISK_ACCESS_SET:
4552 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk access mode '%s'" %
4553 08db7c5c Iustin Pop
                                   mode)
4554 08db7c5c Iustin Pop
      size = disk.get("size", None)
4555 08db7c5c Iustin Pop
      if size is None:
4556 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Missing disk size")
4557 08db7c5c Iustin Pop
      try:
4558 08db7c5c Iustin Pop
        size = int(size)
4559 08db7c5c Iustin Pop
      except ValueError:
4560 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk size '%s'" % size)
4561 08db7c5c Iustin Pop
      self.disks.append({"size": size, "mode": mode})
4562 08db7c5c Iustin Pop
4563 7baf741d Guido Trotter
    # used in CheckPrereq for ip ping check
4564 7baf741d Guido Trotter
    self.check_ip = hostname1.ip
4565 7baf741d Guido Trotter
4566 7baf741d Guido Trotter
    # file storage checks
4567 7baf741d Guido Trotter
    if (self.op.file_driver and
4568 7baf741d Guido Trotter
        not self.op.file_driver in constants.FILE_DRIVER):
4569 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid file driver name '%s'" %
4570 7baf741d Guido Trotter
                                 self.op.file_driver)
4571 7baf741d Guido Trotter
4572 7baf741d Guido Trotter
    if self.op.file_storage_dir and os.path.isabs(self.op.file_storage_dir):
4573 7baf741d Guido Trotter
      raise errors.OpPrereqError("File storage directory path not absolute")
4574 7baf741d Guido Trotter
4575 7baf741d Guido Trotter
    ### Node/iallocator related checks
4576 7baf741d Guido Trotter
    if [self.op.iallocator, self.op.pnode].count(None) != 1:
4577 7baf741d Guido Trotter
      raise errors.OpPrereqError("One and only one of iallocator and primary"
4578 7baf741d Guido Trotter
                                 " node must be given")
4579 7baf741d Guido Trotter
4580 7baf741d Guido Trotter
    if self.op.iallocator:
4581 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4582 7baf741d Guido Trotter
    else:
4583 7baf741d Guido Trotter
      self.op.pnode = self._ExpandNode(self.op.pnode)
4584 7baf741d Guido Trotter
      nodelist = [self.op.pnode]
4585 7baf741d Guido Trotter
      if self.op.snode is not None:
4586 7baf741d Guido Trotter
        self.op.snode = self._ExpandNode(self.op.snode)
4587 7baf741d Guido Trotter
        nodelist.append(self.op.snode)
4588 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = nodelist
4589 7baf741d Guido Trotter
4590 7baf741d Guido Trotter
    # in case of import lock the source node too
4591 7baf741d Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4592 7baf741d Guido Trotter
      src_node = getattr(self.op, "src_node", None)
4593 7baf741d Guido Trotter
      src_path = getattr(self.op, "src_path", None)
4594 7baf741d Guido Trotter
4595 b9322a9f Guido Trotter
      if src_path is None:
4596 b9322a9f Guido Trotter
        self.op.src_path = src_path = self.op.instance_name
4597 b9322a9f Guido Trotter
4598 b9322a9f Guido Trotter
      if src_node is None:
4599 b9322a9f Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4600 b9322a9f Guido Trotter
        self.op.src_node = None
4601 b9322a9f Guido Trotter
        if os.path.isabs(src_path):
4602 b9322a9f Guido Trotter
          raise errors.OpPrereqError("Importing an instance from an absolute"
4603 b9322a9f Guido Trotter
                                     " path requires a source node option.")
4604 b9322a9f Guido Trotter
      else:
4605 b9322a9f Guido Trotter
        self.op.src_node = src_node = self._ExpandNode(src_node)
4606 b9322a9f Guido Trotter
        if self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET:
4607 b9322a9f Guido Trotter
          self.needed_locks[locking.LEVEL_NODE].append(src_node)
4608 b9322a9f Guido Trotter
        if not os.path.isabs(src_path):
4609 b9322a9f Guido Trotter
          self.op.src_path = src_path = \
4610 b9322a9f Guido Trotter
            os.path.join(constants.EXPORT_DIR, src_path)
4611 7baf741d Guido Trotter
4612 7baf741d Guido Trotter
    else: # INSTANCE_CREATE
4613 7baf741d Guido Trotter
      if getattr(self.op, "os_type", None) is None:
4614 7baf741d Guido Trotter
        raise errors.OpPrereqError("No guest OS specified")
4615 a8083063 Iustin Pop
4616 538475ca Iustin Pop
  def _RunAllocator(self):
4617 538475ca Iustin Pop
    """Run the allocator based on input opcode.
4618 538475ca Iustin Pop

4619 538475ca Iustin Pop
    """
4620 08db7c5c Iustin Pop
    nics = [n.ToDict() for n in self.nics]
4621 72737a7f Iustin Pop
    ial = IAllocator(self,
4622 29859cb7 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_ALLOC,
4623 d1c2dd75 Iustin Pop
                     name=self.op.instance_name,
4624 d1c2dd75 Iustin Pop
                     disk_template=self.op.disk_template,
4625 d1c2dd75 Iustin Pop
                     tags=[],
4626 d1c2dd75 Iustin Pop
                     os=self.op.os_type,
4627 338e51e8 Iustin Pop
                     vcpus=self.be_full[constants.BE_VCPUS],
4628 338e51e8 Iustin Pop
                     mem_size=self.be_full[constants.BE_MEMORY],
4629 08db7c5c Iustin Pop
                     disks=self.disks,
4630 d1c2dd75 Iustin Pop
                     nics=nics,
4631 8cc7e742 Guido Trotter
                     hypervisor=self.op.hypervisor,
4632 29859cb7 Iustin Pop
                     )
4633 d1c2dd75 Iustin Pop
4634 d1c2dd75 Iustin Pop
    ial.Run(self.op.iallocator)
4635 d1c2dd75 Iustin Pop
4636 d1c2dd75 Iustin Pop
    if not ial.success:
4637 538475ca Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4638 538475ca Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4639 d1c2dd75 Iustin Pop
                                                           ial.info))
4640 27579978 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4641 538475ca Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4642 538475ca Iustin Pop
                                 " of nodes (%s), required %s" %
4643 97abc79f Iustin Pop
                                 (self.op.iallocator, len(ial.nodes),
4644 1ce4bbe3 Renรฉ Nussbaumer
                                  ial.required_nodes))
4645 d1c2dd75 Iustin Pop
    self.op.pnode = ial.nodes[0]
4646 86d9d3bb Iustin Pop
    self.LogInfo("Selected nodes for instance %s via iallocator %s: %s",
4647 86d9d3bb Iustin Pop
                 self.op.instance_name, self.op.iallocator,
4648 86d9d3bb Iustin Pop
                 ", ".join(ial.nodes))
4649 27579978 Iustin Pop
    if ial.required_nodes == 2:
4650 d1c2dd75 Iustin Pop
      self.op.snode = ial.nodes[1]
4651 538475ca Iustin Pop
4652 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4653 a8083063 Iustin Pop
    """Build hooks env.
4654 a8083063 Iustin Pop

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

4657 a8083063 Iustin Pop
    """
4658 a8083063 Iustin Pop
    env = {
4659 2c2690c9 Iustin Pop
      "ADD_MODE": self.op.mode,
4660 a8083063 Iustin Pop
      }
4661 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4662 2c2690c9 Iustin Pop
      env["SRC_NODE"] = self.op.src_node
4663 2c2690c9 Iustin Pop
      env["SRC_PATH"] = self.op.src_path
4664 2c2690c9 Iustin Pop
      env["SRC_IMAGES"] = self.src_images
4665 396e1b78 Michael Hanselmann
4666 2c2690c9 Iustin Pop
    env.update(_BuildInstanceHookEnv(
4667 2c2690c9 Iustin Pop
      name=self.op.instance_name,
4668 396e1b78 Michael Hanselmann
      primary_node=self.op.pnode,
4669 396e1b78 Michael Hanselmann
      secondary_nodes=self.secondaries,
4670 4978db17 Iustin Pop
      status=self.op.start,
4671 ecb215b5 Michael Hanselmann
      os_type=self.op.os_type,
4672 338e51e8 Iustin Pop
      memory=self.be_full[constants.BE_MEMORY],
4673 338e51e8 Iustin Pop
      vcpus=self.be_full[constants.BE_VCPUS],
4674 62f0dd02 Guido Trotter
      nics=_PreBuildNICHooksList(self, self.nics),
4675 2c2690c9 Iustin Pop
      disk_template=self.op.disk_template,
4676 2c2690c9 Iustin Pop
      disks=[(d["size"], d["mode"]) for d in self.disks],
4677 396e1b78 Michael Hanselmann
    ))
4678 a8083063 Iustin Pop
4679 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
4680 a8083063 Iustin Pop
          self.secondaries)
4681 a8083063 Iustin Pop
    return env, nl, nl
4682 a8083063 Iustin Pop
4683 a8083063 Iustin Pop
4684 a8083063 Iustin Pop
  def CheckPrereq(self):
4685 a8083063 Iustin Pop
    """Check prerequisites.
4686 a8083063 Iustin Pop

4687 a8083063 Iustin Pop
    """
4688 eedc99de Manuel Franceschini
    if (not self.cfg.GetVGName() and
4689 eedc99de Manuel Franceschini
        self.op.disk_template not in constants.DTS_NOT_LVM):
4690 eedc99de Manuel Franceschini
      raise errors.OpPrereqError("Cluster does not support lvm-based"
4691 eedc99de Manuel Franceschini
                                 " instances")
4692 eedc99de Manuel Franceschini
4693 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4694 7baf741d Guido Trotter
      src_node = self.op.src_node
4695 7baf741d Guido Trotter
      src_path = self.op.src_path
4696 a8083063 Iustin Pop
4697 c0cbdc67 Guido Trotter
      if src_node is None:
4698 1b7bfbb7 Iustin Pop
        locked_nodes = self.acquired_locks[locking.LEVEL_NODE]
4699 1b7bfbb7 Iustin Pop
        exp_list = self.rpc.call_export_list(locked_nodes)
4700 c0cbdc67 Guido Trotter
        found = False
4701 c0cbdc67 Guido Trotter
        for node in exp_list:
4702 1b7bfbb7 Iustin Pop
          if exp_list[node].RemoteFailMsg():
4703 1b7bfbb7 Iustin Pop
            continue
4704 1b7bfbb7 Iustin Pop
          if src_path in exp_list[node].payload:
4705 c0cbdc67 Guido Trotter
            found = True
4706 c0cbdc67 Guido Trotter
            self.op.src_node = src_node = node
4707 c0cbdc67 Guido Trotter
            self.op.src_path = src_path = os.path.join(constants.EXPORT_DIR,
4708 c0cbdc67 Guido Trotter
                                                       src_path)
4709 c0cbdc67 Guido Trotter
            break
4710 c0cbdc67 Guido Trotter
        if not found:
4711 c0cbdc67 Guido Trotter
          raise errors.OpPrereqError("No export found for relative path %s" %
4712 c0cbdc67 Guido Trotter
                                      src_path)
4713 c0cbdc67 Guido Trotter
4714 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, src_node)
4715 781de953 Iustin Pop
      result = self.rpc.call_export_info(src_node, src_path)
4716 3eccac06 Iustin Pop
      msg = result.RemoteFailMsg()
4717 3eccac06 Iustin Pop
      if msg:
4718 3eccac06 Iustin Pop
        raise errors.OpPrereqError("No export or invalid export found in"
4719 3eccac06 Iustin Pop
                                   " dir %s: %s" % (src_path, msg))
4720 a8083063 Iustin Pop
4721 3eccac06 Iustin Pop
      export_info = objects.SerializableConfigParser.Loads(str(result.payload))
4722 a8083063 Iustin Pop
      if not export_info.has_section(constants.INISECT_EXP):
4723 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Corrupted export config")
4724 a8083063 Iustin Pop
4725 a8083063 Iustin Pop
      ei_version = export_info.get(constants.INISECT_EXP, 'version')
4726 a8083063 Iustin Pop
      if (int(ei_version) != constants.EXPORT_VERSION):
4727 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Wrong export version %s (wanted %d)" %
4728 3ecf6786 Iustin Pop
                                   (ei_version, constants.EXPORT_VERSION))
4729 a8083063 Iustin Pop
4730 09acf207 Guido Trotter
      # Check that the new instance doesn't have less disks than the export
4731 08db7c5c Iustin Pop
      instance_disks = len(self.disks)
4732 09acf207 Guido Trotter
      export_disks = export_info.getint(constants.INISECT_INS, 'disk_count')
4733 09acf207 Guido Trotter
      if instance_disks < export_disks:
4734 09acf207 Guido Trotter
        raise errors.OpPrereqError("Not enough disks to import."
4735 09acf207 Guido Trotter
                                   " (instance: %d, export: %d)" %
4736 726d7d68 Iustin Pop
                                   (instance_disks, export_disks))
4737 a8083063 Iustin Pop
4738 a8083063 Iustin Pop
      self.op.os_type = export_info.get(constants.INISECT_EXP, 'os')
4739 09acf207 Guido Trotter
      disk_images = []
4740 09acf207 Guido Trotter
      for idx in range(export_disks):
4741 09acf207 Guido Trotter
        option = 'disk%d_dump' % idx
4742 09acf207 Guido Trotter
        if export_info.has_option(constants.INISECT_INS, option):
4743 09acf207 Guido Trotter
          # FIXME: are the old os-es, disk sizes, etc. useful?
4744 09acf207 Guido Trotter
          export_name = export_info.get(constants.INISECT_INS, option)
4745 09acf207 Guido Trotter
          image = os.path.join(src_path, export_name)
4746 09acf207 Guido Trotter
          disk_images.append(image)
4747 09acf207 Guido Trotter
        else:
4748 09acf207 Guido Trotter
          disk_images.append(False)
4749 09acf207 Guido Trotter
4750 09acf207 Guido Trotter
      self.src_images = disk_images
4751 901a65c1 Iustin Pop
4752 b4364a6b Guido Trotter
      old_name = export_info.get(constants.INISECT_INS, 'name')
4753 b4364a6b Guido Trotter
      # FIXME: int() here could throw a ValueError on broken exports
4754 b4364a6b Guido Trotter
      exp_nic_count = int(export_info.get(constants.INISECT_INS, 'nic_count'))
4755 b4364a6b Guido Trotter
      if self.op.instance_name == old_name:
4756 b4364a6b Guido Trotter
        for idx, nic in enumerate(self.nics):
4757 b4364a6b Guido Trotter
          if nic.mac == constants.VALUE_AUTO and exp_nic_count >= idx:
4758 b4364a6b Guido Trotter
            nic_mac_ini = 'nic%d_mac' % idx
4759 b4364a6b Guido Trotter
            nic.mac = export_info.get(constants.INISECT_INS, nic_mac_ini)
4760 bc89efc3 Guido Trotter
4761 295728df Guido Trotter
    # ENDIF: self.op.mode == constants.INSTANCE_IMPORT
4762 7baf741d Guido Trotter
    # ip ping checks (we use the same ip that was resolved in ExpandNames)
4763 901a65c1 Iustin Pop
    if self.op.start and not self.op.ip_check:
4764 901a65c1 Iustin Pop
      raise errors.OpPrereqError("Cannot ignore IP address conflicts when"
4765 901a65c1 Iustin Pop
                                 " adding an instance in start mode")
4766 901a65c1 Iustin Pop
4767 901a65c1 Iustin Pop
    if self.op.ip_check:
4768 7baf741d Guido Trotter
      if utils.TcpPing(self.check_ip, constants.DEFAULT_NODED_PORT):
4769 901a65c1 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
4770 7b3a8fb5 Iustin Pop
                                   (self.check_ip, self.op.instance_name))
4771 901a65c1 Iustin Pop
4772 295728df Guido Trotter
    #### mac address generation
4773 295728df Guido Trotter
    # By generating here the mac address both the allocator and the hooks get
4774 295728df Guido Trotter
    # the real final mac address rather than the 'auto' or 'generate' value.
4775 295728df Guido Trotter
    # There is a race condition between the generation and the instance object
4776 295728df Guido Trotter
    # creation, which means that we know the mac is valid now, but we're not
4777 295728df Guido Trotter
    # sure it will be when we actually add the instance. If things go bad
4778 295728df Guido Trotter
    # adding the instance will abort because of a duplicate mac, and the
4779 295728df Guido Trotter
    # creation job will fail.
4780 295728df Guido Trotter
    for nic in self.nics:
4781 295728df Guido Trotter
      if nic.mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4782 295728df Guido Trotter
        nic.mac = self.cfg.GenerateMAC()
4783 295728df Guido Trotter
4784 538475ca Iustin Pop
    #### allocator run
4785 538475ca Iustin Pop
4786 538475ca Iustin Pop
    if self.op.iallocator is not None:
4787 538475ca Iustin Pop
      self._RunAllocator()
4788 0f1a06e3 Manuel Franceschini
4789 901a65c1 Iustin Pop
    #### node related checks
4790 901a65c1 Iustin Pop
4791 901a65c1 Iustin Pop
    # check primary node
4792 7baf741d Guido Trotter
    self.pnode = pnode = self.cfg.GetNodeInfo(self.op.pnode)
4793 7baf741d Guido Trotter
    assert self.pnode is not None, \
4794 7baf741d Guido Trotter
      "Cannot retrieve locked node %s" % self.op.pnode
4795 7527a8a4 Iustin Pop
    if pnode.offline:
4796 7527a8a4 Iustin Pop
      raise errors.OpPrereqError("Cannot use offline primary node '%s'" %
4797 7527a8a4 Iustin Pop
                                 pnode.name)
4798 733a2b6a Iustin Pop
    if pnode.drained:
4799 733a2b6a Iustin Pop
      raise errors.OpPrereqError("Cannot use drained primary node '%s'" %
4800 733a2b6a Iustin Pop
                                 pnode.name)
4801 7527a8a4 Iustin Pop
4802 901a65c1 Iustin Pop
    self.secondaries = []
4803 901a65c1 Iustin Pop
4804 901a65c1 Iustin Pop
    # mirror node verification
4805 a1f445d3 Iustin Pop
    if self.op.disk_template in constants.DTS_NET_MIRROR:
4806 7baf741d Guido Trotter
      if self.op.snode is None:
4807 a1f445d3 Iustin Pop
        raise errors.OpPrereqError("The networked disk templates need"
4808 3ecf6786 Iustin Pop
                                   " a mirror node")
4809 7baf741d Guido Trotter
      if self.op.snode == pnode.name:
4810 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The secondary node cannot be"
4811 3ecf6786 Iustin Pop
                                   " the primary node.")
4812 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, self.op.snode)
4813 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, self.op.snode)
4814 733a2b6a Iustin Pop
      self.secondaries.append(self.op.snode)
4815 a8083063 Iustin Pop
4816 6785674e Iustin Pop
    nodenames = [pnode.name] + self.secondaries
4817 6785674e Iustin Pop
4818 e2fe6369 Iustin Pop
    req_size = _ComputeDiskSize(self.op.disk_template,
4819 08db7c5c Iustin Pop
                                self.disks)
4820 ed1ebc60 Guido Trotter
4821 8d75db10 Iustin Pop
    # Check lv size requirements
4822 8d75db10 Iustin Pop
    if req_size is not None:
4823 72737a7f Iustin Pop
      nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
4824 72737a7f Iustin Pop
                                         self.op.hypervisor)
4825 8d75db10 Iustin Pop
      for node in nodenames:
4826 781de953 Iustin Pop
        info = nodeinfo[node]
4827 070e998b Iustin Pop
        msg = info.RemoteFailMsg()
4828 070e998b Iustin Pop
        if msg:
4829 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Cannot get current information"
4830 070e998b Iustin Pop
                                     " from node %s: %s" % (node, msg))
4831 070e998b Iustin Pop
        info = info.payload
4832 8d75db10 Iustin Pop
        vg_free = info.get('vg_free', None)
4833 8d75db10 Iustin Pop
        if not isinstance(vg_free, int):
4834 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Can't compute free disk space on"
4835 8d75db10 Iustin Pop
                                     " node %s" % node)
4836 070e998b Iustin Pop
        if req_size > vg_free:
4837 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Not enough disk space on target node %s."
4838 8d75db10 Iustin Pop
                                     " %d MB available, %d MB required" %
4839 070e998b Iustin Pop
                                     (node, vg_free, req_size))
4840 ed1ebc60 Guido Trotter
4841 74409b12 Iustin Pop
    _CheckHVParams(self, nodenames, self.op.hypervisor, self.op.hvparams)
4842 6785674e Iustin Pop
4843 a8083063 Iustin Pop
    # os verification
4844 781de953 Iustin Pop
    result = self.rpc.call_os_get(pnode.name, self.op.os_type)
4845 781de953 Iustin Pop
    result.Raise()
4846 781de953 Iustin Pop
    if not isinstance(result.data, objects.OS):
4847 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("OS '%s' not in supported os list for"
4848 3ecf6786 Iustin Pop
                                 " primary node"  % self.op.os_type)
4849 a8083063 Iustin Pop
4850 b165e77e Guido Trotter
    _CheckNicsBridgesExist(self, self.nics, self.pnode.name)
4851 a8083063 Iustin Pop
4852 49ce1563 Iustin Pop
    # memory check on primary node
4853 49ce1563 Iustin Pop
    if self.op.start:
4854 b9bddb6b Iustin Pop
      _CheckNodeFreeMemory(self, self.pnode.name,
4855 49ce1563 Iustin Pop
                           "creating instance %s" % self.op.instance_name,
4856 338e51e8 Iustin Pop
                           self.be_full[constants.BE_MEMORY],
4857 338e51e8 Iustin Pop
                           self.op.hypervisor)
4858 49ce1563 Iustin Pop
4859 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4860 a8083063 Iustin Pop
    """Create and add the instance to the cluster.
4861 a8083063 Iustin Pop

4862 a8083063 Iustin Pop
    """
4863 a8083063 Iustin Pop
    instance = self.op.instance_name
4864 a8083063 Iustin Pop
    pnode_name = self.pnode.name
4865 a8083063 Iustin Pop
4866 e69d05fd Iustin Pop
    ht_kind = self.op.hypervisor
4867 2a6469d5 Alexander Schreiber
    if ht_kind in constants.HTS_REQ_PORT:
4868 2a6469d5 Alexander Schreiber
      network_port = self.cfg.AllocatePort()
4869 2a6469d5 Alexander Schreiber
    else:
4870 2a6469d5 Alexander Schreiber
      network_port = None
4871 58acb49d Alexander Schreiber
4872 6785674e Iustin Pop
    ##if self.op.vnc_bind_address is None:
4873 6785674e Iustin Pop
    ##  self.op.vnc_bind_address = constants.VNC_DEFAULT_BIND_ADDRESS
4874 31a853d2 Iustin Pop
4875 2c313123 Manuel Franceschini
    # this is needed because os.path.join does not accept None arguments
4876 2c313123 Manuel Franceschini
    if self.op.file_storage_dir is None:
4877 2c313123 Manuel Franceschini
      string_file_storage_dir = ""
4878 2c313123 Manuel Franceschini
    else:
4879 2c313123 Manuel Franceschini
      string_file_storage_dir = self.op.file_storage_dir
4880 2c313123 Manuel Franceschini
4881 0f1a06e3 Manuel Franceschini
    # build the full file storage dir path
4882 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.normpath(os.path.join(
4883 d6a02168 Michael Hanselmann
                                        self.cfg.GetFileStorageDir(),
4884 2c313123 Manuel Franceschini
                                        string_file_storage_dir, instance))
4885 0f1a06e3 Manuel Franceschini
4886 0f1a06e3 Manuel Franceschini
4887 b9bddb6b Iustin Pop
    disks = _GenerateDiskTemplate(self,
4888 a8083063 Iustin Pop
                                  self.op.disk_template,
4889 a8083063 Iustin Pop
                                  instance, pnode_name,
4890 08db7c5c Iustin Pop
                                  self.secondaries,
4891 08db7c5c Iustin Pop
                                  self.disks,
4892 0f1a06e3 Manuel Franceschini
                                  file_storage_dir,
4893 e2a65344 Iustin Pop
                                  self.op.file_driver,
4894 e2a65344 Iustin Pop
                                  0)
4895 a8083063 Iustin Pop
4896 a8083063 Iustin Pop
    iobj = objects.Instance(name=instance, os=self.op.os_type,
4897 a8083063 Iustin Pop
                            primary_node=pnode_name,
4898 08db7c5c Iustin Pop
                            nics=self.nics, disks=disks,
4899 a8083063 Iustin Pop
                            disk_template=self.op.disk_template,
4900 4978db17 Iustin Pop
                            admin_up=False,
4901 58acb49d Alexander Schreiber
                            network_port=network_port,
4902 338e51e8 Iustin Pop
                            beparams=self.op.beparams,
4903 6785674e Iustin Pop
                            hvparams=self.op.hvparams,
4904 e69d05fd Iustin Pop
                            hypervisor=self.op.hypervisor,
4905 a8083063 Iustin Pop
                            )
4906 a8083063 Iustin Pop
4907 a8083063 Iustin Pop
    feedback_fn("* creating instance disks...")
4908 796cab27 Iustin Pop
    try:
4909 796cab27 Iustin Pop
      _CreateDisks(self, iobj)
4910 796cab27 Iustin Pop
    except errors.OpExecError:
4911 796cab27 Iustin Pop
      self.LogWarning("Device creation failed, reverting...")
4912 796cab27 Iustin Pop
      try:
4913 796cab27 Iustin Pop
        _RemoveDisks(self, iobj)
4914 796cab27 Iustin Pop
      finally:
4915 796cab27 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance)
4916 796cab27 Iustin Pop
        raise
4917 a8083063 Iustin Pop
4918 a8083063 Iustin Pop
    feedback_fn("adding instance %s to cluster config" % instance)
4919 a8083063 Iustin Pop
4920 a8083063 Iustin Pop
    self.cfg.AddInstance(iobj)
4921 7baf741d Guido Trotter
    # Declare that we don't want to remove the instance lock anymore, as we've
4922 7baf741d Guido Trotter
    # added the instance to the config
4923 7baf741d Guido Trotter
    del self.remove_locks[locking.LEVEL_INSTANCE]
4924 e36e96b4 Guido Trotter
    # Unlock all the nodes
4925 9c8971d7 Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4926 9c8971d7 Guido Trotter
      nodes_keep = [self.op.src_node]
4927 9c8971d7 Guido Trotter
      nodes_release = [node for node in self.acquired_locks[locking.LEVEL_NODE]
4928 9c8971d7 Guido Trotter
                       if node != self.op.src_node]
4929 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE, nodes_release)
4930 9c8971d7 Guido Trotter
      self.acquired_locks[locking.LEVEL_NODE] = nodes_keep
4931 9c8971d7 Guido Trotter
    else:
4932 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE)
4933 9c8971d7 Guido Trotter
      del self.acquired_locks[locking.LEVEL_NODE]
4934 a8083063 Iustin Pop
4935 a8083063 Iustin Pop
    if self.op.wait_for_sync:
4936 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj)
4937 a1f445d3 Iustin Pop
    elif iobj.disk_template in constants.DTS_NET_MIRROR:
4938 a8083063 Iustin Pop
      # make sure the disks are not degraded (still sync-ing is ok)
4939 a8083063 Iustin Pop
      time.sleep(15)
4940 a8083063 Iustin Pop
      feedback_fn("* checking mirrors status")
4941 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj, oneshot=True)
4942 a8083063 Iustin Pop
    else:
4943 a8083063 Iustin Pop
      disk_abort = False
4944 a8083063 Iustin Pop
4945 a8083063 Iustin Pop
    if disk_abort:
4946 b9bddb6b Iustin Pop
      _RemoveDisks(self, iobj)
4947 a8083063 Iustin Pop
      self.cfg.RemoveInstance(iobj.name)
4948 7baf741d Guido Trotter
      # Make sure the instance lock gets removed
4949 7baf741d Guido Trotter
      self.remove_locks[locking.LEVEL_INSTANCE] = iobj.name
4950 3ecf6786 Iustin Pop
      raise errors.OpExecError("There are some degraded disks for"
4951 3ecf6786 Iustin Pop
                               " this instance")
4952 a8083063 Iustin Pop
4953 a8083063 Iustin Pop
    feedback_fn("creating os for instance %s on node %s" %
4954 a8083063 Iustin Pop
                (instance, pnode_name))
4955 a8083063 Iustin Pop
4956 a8083063 Iustin Pop
    if iobj.disk_template != constants.DT_DISKLESS:
4957 a8083063 Iustin Pop
      if self.op.mode == constants.INSTANCE_CREATE:
4958 a8083063 Iustin Pop
        feedback_fn("* running the instance OS create scripts...")
4959 e557bae9 Guido Trotter
        result = self.rpc.call_instance_os_add(pnode_name, iobj, False)
4960 20e01edd Iustin Pop
        msg = result.RemoteFailMsg()
4961 20e01edd Iustin Pop
        if msg:
4962 781de953 Iustin Pop
          raise errors.OpExecError("Could not add os for instance %s"
4963 20e01edd Iustin Pop
                                   " on node %s: %s" %
4964 20e01edd Iustin Pop
                                   (instance, pnode_name, msg))
4965 a8083063 Iustin Pop
4966 a8083063 Iustin Pop
      elif self.op.mode == constants.INSTANCE_IMPORT:
4967 a8083063 Iustin Pop
        feedback_fn("* running the instance OS import scripts...")
4968 a8083063 Iustin Pop
        src_node = self.op.src_node
4969 09acf207 Guido Trotter
        src_images = self.src_images
4970 62c9ec92 Iustin Pop
        cluster_name = self.cfg.GetClusterName()
4971 6c0af70e Guido Trotter
        import_result = self.rpc.call_instance_os_import(pnode_name, iobj,
4972 09acf207 Guido Trotter
                                                         src_node, src_images,
4973 6c0af70e Guido Trotter
                                                         cluster_name)
4974 944bf548 Iustin Pop
        msg = import_result.RemoteFailMsg()
4975 944bf548 Iustin Pop
        if msg:
4976 944bf548 Iustin Pop
          self.LogWarning("Error while importing the disk images for instance"
4977 944bf548 Iustin Pop
                          " %s on node %s: %s" % (instance, pnode_name, msg))
4978 a8083063 Iustin Pop
      else:
4979 a8083063 Iustin Pop
        # also checked in the prereq part
4980 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Unknown OS initialization mode '%s'"
4981 3ecf6786 Iustin Pop
                                     % self.op.mode)
4982 a8083063 Iustin Pop
4983 a8083063 Iustin Pop
    if self.op.start:
4984 4978db17 Iustin Pop
      iobj.admin_up = True
4985 4978db17 Iustin Pop
      self.cfg.Update(iobj)
4986 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s", instance, pnode_name)
4987 a8083063 Iustin Pop
      feedback_fn("* starting instance...")
4988 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(pnode_name, iobj, None, None)
4989 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
4990 dd279568 Iustin Pop
      if msg:
4991 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance: %s" % msg)
4992 a8083063 Iustin Pop
4993 a8083063 Iustin Pop
4994 a8083063 Iustin Pop
class LUConnectConsole(NoHooksLU):
4995 a8083063 Iustin Pop
  """Connect to an instance's console.
4996 a8083063 Iustin Pop

4997 a8083063 Iustin Pop
  This is somewhat special in that it returns the command line that
4998 a8083063 Iustin Pop
  you need to run on the master node in order to connect to the
4999 a8083063 Iustin Pop
  console.
5000 a8083063 Iustin Pop

5001 a8083063 Iustin Pop
  """
5002 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
5003 8659b73e Guido Trotter
  REQ_BGL = False
5004 8659b73e Guido Trotter
5005 8659b73e Guido Trotter
  def ExpandNames(self):
5006 8659b73e Guido Trotter
    self._ExpandAndLockInstance()
5007 a8083063 Iustin Pop
5008 a8083063 Iustin Pop
  def CheckPrereq(self):
5009 a8083063 Iustin Pop
    """Check prerequisites.
5010 a8083063 Iustin Pop

5011 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
5012 a8083063 Iustin Pop

5013 a8083063 Iustin Pop
    """
5014 8659b73e Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5015 8659b73e Guido Trotter
    assert self.instance is not None, \
5016 8659b73e Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5017 513e896d Guido Trotter
    _CheckNodeOnline(self, self.instance.primary_node)
5018 a8083063 Iustin Pop
5019 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5020 a8083063 Iustin Pop
    """Connect to the console of an instance
5021 a8083063 Iustin Pop

5022 a8083063 Iustin Pop
    """
5023 a8083063 Iustin Pop
    instance = self.instance
5024 a8083063 Iustin Pop
    node = instance.primary_node
5025 a8083063 Iustin Pop
5026 72737a7f Iustin Pop
    node_insts = self.rpc.call_instance_list([node],
5027 72737a7f Iustin Pop
                                             [instance.hypervisor])[node]
5028 aca13712 Iustin Pop
    msg = node_insts.RemoteFailMsg()
5029 aca13712 Iustin Pop
    if msg:
5030 aca13712 Iustin Pop
      raise errors.OpExecError("Can't get node information from %s: %s" %
5031 aca13712 Iustin Pop
                               (node, msg))
5032 a8083063 Iustin Pop
5033 aca13712 Iustin Pop
    if instance.name not in node_insts.payload:
5034 3ecf6786 Iustin Pop
      raise errors.OpExecError("Instance %s is not running." % instance.name)
5035 a8083063 Iustin Pop
5036 9a4f63d1 Iustin Pop
    logging.debug("Connecting to console of %s on %s", instance.name, node)
5037 a8083063 Iustin Pop
5038 e69d05fd Iustin Pop
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
5039 5431b2e4 Guido Trotter
    cluster = self.cfg.GetClusterInfo()
5040 5431b2e4 Guido Trotter
    # beparams and hvparams are passed separately, to avoid editing the
5041 5431b2e4 Guido Trotter
    # instance and then saving the defaults in the instance itself.
5042 5431b2e4 Guido Trotter
    hvparams = cluster.FillHV(instance)
5043 5431b2e4 Guido Trotter
    beparams = cluster.FillBE(instance)
5044 5431b2e4 Guido Trotter
    console_cmd = hyper.GetShellCommandForConsole(instance, hvparams, beparams)
5045 b047857b Michael Hanselmann
5046 82122173 Iustin Pop
    # build ssh cmdline
5047 0a80a26f Michael Hanselmann
    return self.ssh.BuildCmd(node, "root", console_cmd, batch=True, tty=True)
5048 a8083063 Iustin Pop
5049 a8083063 Iustin Pop
5050 a8083063 Iustin Pop
class LUReplaceDisks(LogicalUnit):
5051 a8083063 Iustin Pop
  """Replace the disks of an instance.
5052 a8083063 Iustin Pop

5053 a8083063 Iustin Pop
  """
5054 a8083063 Iustin Pop
  HPATH = "mirrors-replace"
5055 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5056 a9e0c397 Iustin Pop
  _OP_REQP = ["instance_name", "mode", "disks"]
5057 efd990e4 Guido Trotter
  REQ_BGL = False
5058 efd990e4 Guido Trotter
5059 7e9366f7 Iustin Pop
  def CheckArguments(self):
5060 efd990e4 Guido Trotter
    if not hasattr(self.op, "remote_node"):
5061 efd990e4 Guido Trotter
      self.op.remote_node = None
5062 7e9366f7 Iustin Pop
    if not hasattr(self.op, "iallocator"):
5063 7e9366f7 Iustin Pop
      self.op.iallocator = None
5064 7e9366f7 Iustin Pop
5065 7e9366f7 Iustin Pop
    # check for valid parameter combination
5066 7e9366f7 Iustin Pop
    cnt = [self.op.remote_node, self.op.iallocator].count(None)
5067 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5068 7e9366f7 Iustin Pop
      if cnt == 2:
5069 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("When changing the secondary either an"
5070 7e9366f7 Iustin Pop
                                   " iallocator script must be used or the"
5071 7e9366f7 Iustin Pop
                                   " new node given")
5072 7e9366f7 Iustin Pop
      elif cnt == 0:
5073 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Give either the iallocator or the new"
5074 efd990e4 Guido Trotter
                                   " secondary, not both")
5075 7e9366f7 Iustin Pop
    else: # not replacing the secondary
5076 7e9366f7 Iustin Pop
      if cnt != 2:
5077 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("The iallocator and new node options can"
5078 7e9366f7 Iustin Pop
                                   " be used only when changing the"
5079 7e9366f7 Iustin Pop
                                   " secondary node")
5080 7e9366f7 Iustin Pop
5081 7e9366f7 Iustin Pop
  def ExpandNames(self):
5082 7e9366f7 Iustin Pop
    self._ExpandAndLockInstance()
5083 7e9366f7 Iustin Pop
5084 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
5085 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
5086 efd990e4 Guido Trotter
    elif self.op.remote_node is not None:
5087 efd990e4 Guido Trotter
      remote_node = self.cfg.ExpandNodeName(self.op.remote_node)
5088 efd990e4 Guido Trotter
      if remote_node is None:
5089 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Node '%s' not known" %
5090 efd990e4 Guido Trotter
                                   self.op.remote_node)
5091 efd990e4 Guido Trotter
      self.op.remote_node = remote_node
5092 3b559640 Iustin Pop
      # Warning: do not remove the locking of the new secondary here
5093 3b559640 Iustin Pop
      # unless DRBD8.AddChildren is changed to work in parallel;
5094 3b559640 Iustin Pop
      # currently it doesn't since parallel invocations of
5095 3b559640 Iustin Pop
      # FindUnusedMinor will conflict
5096 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = [remote_node]
5097 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
5098 efd990e4 Guido Trotter
    else:
5099 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = []
5100 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5101 efd990e4 Guido Trotter
5102 efd990e4 Guido Trotter
  def DeclareLocks(self, level):
5103 efd990e4 Guido Trotter
    # If we're not already locking all nodes in the set we have to declare the
5104 efd990e4 Guido Trotter
    # instance's primary/secondary nodes.
5105 efd990e4 Guido Trotter
    if (level == locking.LEVEL_NODE and
5106 efd990e4 Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
5107 efd990e4 Guido Trotter
      self._LockInstancesNodes()
5108 a8083063 Iustin Pop
5109 b6e82a65 Iustin Pop
  def _RunAllocator(self):
5110 b6e82a65 Iustin Pop
    """Compute a new secondary node using an IAllocator.
5111 b6e82a65 Iustin Pop

5112 b6e82a65 Iustin Pop
    """
5113 72737a7f Iustin Pop
    ial = IAllocator(self,
5114 b6e82a65 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_RELOC,
5115 b6e82a65 Iustin Pop
                     name=self.op.instance_name,
5116 b6e82a65 Iustin Pop
                     relocate_from=[self.sec_node])
5117 b6e82a65 Iustin Pop
5118 b6e82a65 Iustin Pop
    ial.Run(self.op.iallocator)
5119 b6e82a65 Iustin Pop
5120 b6e82a65 Iustin Pop
    if not ial.success:
5121 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
5122 b6e82a65 Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
5123 b6e82a65 Iustin Pop
                                                           ial.info))
5124 b6e82a65 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
5125 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
5126 b6e82a65 Iustin Pop
                                 " of nodes (%s), required %s" %
5127 b6e82a65 Iustin Pop
                                 (len(ial.nodes), ial.required_nodes))
5128 b6e82a65 Iustin Pop
    self.op.remote_node = ial.nodes[0]
5129 86d9d3bb Iustin Pop
    self.LogInfo("Selected new secondary for the instance: %s",
5130 86d9d3bb Iustin Pop
                 self.op.remote_node)
5131 b6e82a65 Iustin Pop
5132 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5133 a8083063 Iustin Pop
    """Build hooks env.
5134 a8083063 Iustin Pop

5135 a8083063 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5136 a8083063 Iustin Pop

5137 a8083063 Iustin Pop
    """
5138 a8083063 Iustin Pop
    env = {
5139 a9e0c397 Iustin Pop
      "MODE": self.op.mode,
5140 a8083063 Iustin Pop
      "NEW_SECONDARY": self.op.remote_node,
5141 a8083063 Iustin Pop
      "OLD_SECONDARY": self.instance.secondary_nodes[0],
5142 a8083063 Iustin Pop
      }
5143 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5144 0834c866 Iustin Pop
    nl = [
5145 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5146 0834c866 Iustin Pop
      self.instance.primary_node,
5147 0834c866 Iustin Pop
      ]
5148 0834c866 Iustin Pop
    if self.op.remote_node is not None:
5149 0834c866 Iustin Pop
      nl.append(self.op.remote_node)
5150 a8083063 Iustin Pop
    return env, nl, nl
5151 a8083063 Iustin Pop
5152 a8083063 Iustin Pop
  def CheckPrereq(self):
5153 a8083063 Iustin Pop
    """Check prerequisites.
5154 a8083063 Iustin Pop

5155 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
5156 a8083063 Iustin Pop

5157 a8083063 Iustin Pop
    """
5158 efd990e4 Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5159 efd990e4 Guido Trotter
    assert instance is not None, \
5160 efd990e4 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5161 a8083063 Iustin Pop
    self.instance = instance
5162 a8083063 Iustin Pop
5163 7e9366f7 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
5164 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("Can only run replace disks for DRBD8-based"
5165 7e9366f7 Iustin Pop
                                 " instances")
5166 a8083063 Iustin Pop
5167 a8083063 Iustin Pop
    if len(instance.secondary_nodes) != 1:
5168 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The instance has a strange layout,"
5169 3ecf6786 Iustin Pop
                                 " expected one secondary but found %d" %
5170 3ecf6786 Iustin Pop
                                 len(instance.secondary_nodes))
5171 a8083063 Iustin Pop
5172 a9e0c397 Iustin Pop
    self.sec_node = instance.secondary_nodes[0]
5173 a9e0c397 Iustin Pop
5174 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
5175 de8c7666 Guido Trotter
      self._RunAllocator()
5176 b6e82a65 Iustin Pop
5177 b6e82a65 Iustin Pop
    remote_node = self.op.remote_node
5178 a9e0c397 Iustin Pop
    if remote_node is not None:
5179 a9e0c397 Iustin Pop
      self.remote_node_info = self.cfg.GetNodeInfo(remote_node)
5180 efd990e4 Guido Trotter
      assert self.remote_node_info is not None, \
5181 efd990e4 Guido Trotter
        "Cannot retrieve locked node %s" % remote_node
5182 a9e0c397 Iustin Pop
    else:
5183 a9e0c397 Iustin Pop
      self.remote_node_info = None
5184 a8083063 Iustin Pop
    if remote_node == instance.primary_node:
5185 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The specified node is the primary node of"
5186 3ecf6786 Iustin Pop
                                 " the instance.")
5187 a9e0c397 Iustin Pop
    elif remote_node == self.sec_node:
5188 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("The specified node is already the"
5189 7e9366f7 Iustin Pop
                                 " secondary node of the instance.")
5190 7e9366f7 Iustin Pop
5191 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_PRI:
5192 7e9366f7 Iustin Pop
      n1 = self.tgt_node = instance.primary_node
5193 7e9366f7 Iustin Pop
      n2 = self.oth_node = self.sec_node
5194 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_SEC:
5195 7e9366f7 Iustin Pop
      n1 = self.tgt_node = self.sec_node
5196 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
5197 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_CHG:
5198 7e9366f7 Iustin Pop
      n1 = self.new_node = remote_node
5199 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
5200 7e9366f7 Iustin Pop
      self.tgt_node = self.sec_node
5201 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, remote_node)
5202 7e9366f7 Iustin Pop
    else:
5203 7e9366f7 Iustin Pop
      raise errors.ProgrammerError("Unhandled disk replace mode")
5204 7e9366f7 Iustin Pop
5205 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n1)
5206 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n2)
5207 a9e0c397 Iustin Pop
5208 54155f52 Iustin Pop
    if not self.op.disks:
5209 54155f52 Iustin Pop
      self.op.disks = range(len(instance.disks))
5210 54155f52 Iustin Pop
5211 54155f52 Iustin Pop
    for disk_idx in self.op.disks:
5212 3e0cea06 Iustin Pop
      instance.FindDisk(disk_idx)
5213 a8083063 Iustin Pop
5214 a9e0c397 Iustin Pop
  def _ExecD8DiskOnly(self, feedback_fn):
5215 a9e0c397 Iustin Pop
    """Replace a disk on the primary or secondary for dbrd8.
5216 a9e0c397 Iustin Pop

5217 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5218 e4376078 Iustin Pop

5219 e4376078 Iustin Pop
      1. for each disk to be replaced:
5220 e4376078 Iustin Pop

5221 e4376078 Iustin Pop
        1. create new LVs on the target node with unique names
5222 e4376078 Iustin Pop
        1. detach old LVs from the drbd device
5223 e4376078 Iustin Pop
        1. rename old LVs to name_replaced.<time_t>
5224 e4376078 Iustin Pop
        1. rename new LVs to old LVs
5225 e4376078 Iustin Pop
        1. attach the new LVs (with the old names now) to the drbd device
5226 e4376078 Iustin Pop

5227 e4376078 Iustin Pop
      1. wait for sync across all devices
5228 e4376078 Iustin Pop

5229 e4376078 Iustin Pop
      1. for each modified disk:
5230 e4376078 Iustin Pop

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

5233 a9e0c397 Iustin Pop
    Failures are not very well handled.
5234 cff90b79 Iustin Pop

5235 a9e0c397 Iustin Pop
    """
5236 cff90b79 Iustin Pop
    steps_total = 6
5237 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5238 a9e0c397 Iustin Pop
    instance = self.instance
5239 a9e0c397 Iustin Pop
    iv_names = {}
5240 a9e0c397 Iustin Pop
    vgname = self.cfg.GetVGName()
5241 a9e0c397 Iustin Pop
    # start of work
5242 a9e0c397 Iustin Pop
    cfg = self.cfg
5243 a9e0c397 Iustin Pop
    tgt_node = self.tgt_node
5244 cff90b79 Iustin Pop
    oth_node = self.oth_node
5245 cff90b79 Iustin Pop
5246 cff90b79 Iustin Pop
    # Step: check device activation
5247 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5248 cff90b79 Iustin Pop
    info("checking volume groups")
5249 cff90b79 Iustin Pop
    my_vg = cfg.GetVGName()
5250 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([oth_node, tgt_node])
5251 cff90b79 Iustin Pop
    if not results:
5252 cff90b79 Iustin Pop
      raise errors.OpExecError("Can't list volume groups on the nodes")
5253 cff90b79 Iustin Pop
    for node in oth_node, tgt_node:
5254 781de953 Iustin Pop
      res = results[node]
5255 e480923b Iustin Pop
      msg = res.RemoteFailMsg()
5256 e480923b Iustin Pop
      if msg:
5257 e480923b Iustin Pop
        raise errors.OpExecError("Error checking node %s: %s" % (node, msg))
5258 e480923b Iustin Pop
      if my_vg not in res.payload:
5259 cff90b79 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5260 cff90b79 Iustin Pop
                                 (my_vg, node))
5261 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5262 54155f52 Iustin Pop
      if idx not in self.op.disks:
5263 cff90b79 Iustin Pop
        continue
5264 cff90b79 Iustin Pop
      for node in tgt_node, oth_node:
5265 54155f52 Iustin Pop
        info("checking disk/%d on %s" % (idx, node))
5266 cff90b79 Iustin Pop
        cfg.SetDiskID(dev, node)
5267 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(node, dev)
5268 23829f6f Iustin Pop
        msg = result.RemoteFailMsg()
5269 23829f6f Iustin Pop
        if not msg and not result.payload:
5270 23829f6f Iustin Pop
          msg = "disk not found"
5271 23829f6f Iustin Pop
        if msg:
5272 23829f6f Iustin Pop
          raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5273 23829f6f Iustin Pop
                                   (idx, node, msg))
5274 cff90b79 Iustin Pop
5275 cff90b79 Iustin Pop
    # Step: check other node consistency
5276 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5277 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5278 54155f52 Iustin Pop
      if idx not in self.op.disks:
5279 cff90b79 Iustin Pop
        continue
5280 54155f52 Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, oth_node))
5281 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, oth_node,
5282 cff90b79 Iustin Pop
                                   oth_node==instance.primary_node):
5283 cff90b79 Iustin Pop
        raise errors.OpExecError("Peer node (%s) has degraded storage, unsafe"
5284 cff90b79 Iustin Pop
                                 " to replace disks on this node (%s)" %
5285 cff90b79 Iustin Pop
                                 (oth_node, tgt_node))
5286 cff90b79 Iustin Pop
5287 cff90b79 Iustin Pop
    # Step: create new storage
5288 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5289 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5290 54155f52 Iustin Pop
      if idx not in self.op.disks:
5291 a9e0c397 Iustin Pop
        continue
5292 a9e0c397 Iustin Pop
      size = dev.size
5293 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, tgt_node)
5294 54155f52 Iustin Pop
      lv_names = [".disk%d_%s" % (idx, suf)
5295 54155f52 Iustin Pop
                  for suf in ["data", "meta"]]
5296 b9bddb6b Iustin Pop
      names = _GenerateUniqueNames(self, lv_names)
5297 a9e0c397 Iustin Pop
      lv_data = objects.Disk(dev_type=constants.LD_LV, size=size,
5298 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[0]))
5299 a9e0c397 Iustin Pop
      lv_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
5300 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[1]))
5301 a9e0c397 Iustin Pop
      new_lvs = [lv_data, lv_meta]
5302 a9e0c397 Iustin Pop
      old_lvs = dev.children
5303 a9e0c397 Iustin Pop
      iv_names[dev.iv_name] = (dev, old_lvs, new_lvs)
5304 cff90b79 Iustin Pop
      info("creating new local storage on %s for %s" %
5305 cff90b79 Iustin Pop
           (tgt_node, dev.iv_name))
5306 428958aa Iustin Pop
      # we pass force_create=True to force the LVM creation
5307 a9e0c397 Iustin Pop
      for new_lv in new_lvs:
5308 428958aa Iustin Pop
        _CreateBlockDev(self, tgt_node, instance, new_lv, True,
5309 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5310 a9e0c397 Iustin Pop
5311 cff90b79 Iustin Pop
    # Step: for each lv, detach+rename*2+attach
5312 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "change drbd configuration")
5313 cff90b79 Iustin Pop
    for dev, old_lvs, new_lvs in iv_names.itervalues():
5314 cff90b79 Iustin Pop
      info("detaching %s drbd from local storage" % dev.iv_name)
5315 781de953 Iustin Pop
      result = self.rpc.call_blockdev_removechildren(tgt_node, dev, old_lvs)
5316 9205a895 Iustin Pop
      msg = result.RemoteFailMsg()
5317 9205a895 Iustin Pop
      if msg:
5318 a9e0c397 Iustin Pop
        raise errors.OpExecError("Can't detach drbd from local storage on node"
5319 9205a895 Iustin Pop
                                 " %s for device %s: %s" %
5320 9205a895 Iustin Pop
                                 (tgt_node, dev.iv_name, msg))
5321 cff90b79 Iustin Pop
      #dev.children = []
5322 cff90b79 Iustin Pop
      #cfg.Update(instance)
5323 a9e0c397 Iustin Pop
5324 a9e0c397 Iustin Pop
      # ok, we created the new LVs, so now we know we have the needed
5325 a9e0c397 Iustin Pop
      # storage; as such, we proceed on the target node to rename
5326 a9e0c397 Iustin Pop
      # old_lv to _old, and new_lv to old_lv; note that we rename LVs
5327 c99a3cc0 Manuel Franceschini
      # using the assumption that logical_id == physical_id (which in
5328 a9e0c397 Iustin Pop
      # turn is the unique_id on that node)
5329 cff90b79 Iustin Pop
5330 cff90b79 Iustin Pop
      # FIXME(iustin): use a better name for the replaced LVs
5331 a9e0c397 Iustin Pop
      temp_suffix = int(time.time())
5332 a9e0c397 Iustin Pop
      ren_fn = lambda d, suff: (d.physical_id[0],
5333 a9e0c397 Iustin Pop
                                d.physical_id[1] + "_replaced-%s" % suff)
5334 cff90b79 Iustin Pop
      # build the rename list based on what LVs exist on the node
5335 cff90b79 Iustin Pop
      rlist = []
5336 cff90b79 Iustin Pop
      for to_ren in old_lvs:
5337 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(tgt_node, to_ren)
5338 23829f6f Iustin Pop
        if not result.RemoteFailMsg() and result.payload:
5339 23829f6f Iustin Pop
          # device exists
5340 cff90b79 Iustin Pop
          rlist.append((to_ren, ren_fn(to_ren, temp_suffix)))
5341 cff90b79 Iustin Pop
5342 cff90b79 Iustin Pop
      info("renaming the old LVs on the target node")
5343 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5344 6b5e3f70 Iustin Pop
      msg = result.RemoteFailMsg()
5345 6b5e3f70 Iustin Pop
      if msg:
5346 6b5e3f70 Iustin Pop
        raise errors.OpExecError("Can't rename old LVs on node %s: %s" %
5347 6b5e3f70 Iustin Pop
                                 (tgt_node, msg))
5348 a9e0c397 Iustin Pop
      # now we rename the new LVs to the old LVs
5349 cff90b79 Iustin Pop
      info("renaming the new LVs on the target node")
5350 a9e0c397 Iustin Pop
      rlist = [(new, old.physical_id) for old, new in zip(old_lvs, new_lvs)]
5351 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5352 6b5e3f70 Iustin Pop
      msg = result.RemoteFailMsg()
5353 6b5e3f70 Iustin Pop
      if msg:
5354 6b5e3f70 Iustin Pop
        raise errors.OpExecError("Can't rename new LVs on node %s: %s" %
5355 6b5e3f70 Iustin Pop
                                 (tgt_node, msg))
5356 cff90b79 Iustin Pop
5357 cff90b79 Iustin Pop
      for old, new in zip(old_lvs, new_lvs):
5358 cff90b79 Iustin Pop
        new.logical_id = old.logical_id
5359 cff90b79 Iustin Pop
        cfg.SetDiskID(new, tgt_node)
5360 a9e0c397 Iustin Pop
5361 cff90b79 Iustin Pop
      for disk in old_lvs:
5362 cff90b79 Iustin Pop
        disk.logical_id = ren_fn(disk, temp_suffix)
5363 cff90b79 Iustin Pop
        cfg.SetDiskID(disk, tgt_node)
5364 a9e0c397 Iustin Pop
5365 a9e0c397 Iustin Pop
      # now that the new lvs have the old name, we can add them to the device
5366 cff90b79 Iustin Pop
      info("adding new mirror component on %s" % tgt_node)
5367 4504c3d6 Iustin Pop
      result = self.rpc.call_blockdev_addchildren(tgt_node, dev, new_lvs)
5368 2cc1da8b Iustin Pop
      msg = result.RemoteFailMsg()
5369 2cc1da8b Iustin Pop
      if msg:
5370 a9e0c397 Iustin Pop
        for new_lv in new_lvs:
5371 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(tgt_node, new_lv).RemoteFailMsg()
5372 e1bc0878 Iustin Pop
          if msg:
5373 e1bc0878 Iustin Pop
            warning("Can't rollback device %s: %s", dev, msg,
5374 e1bc0878 Iustin Pop
                    hint="cleanup manually the unused logical volumes")
5375 2cc1da8b Iustin Pop
        raise errors.OpExecError("Can't add local storage to drbd: %s" % msg)
5376 a9e0c397 Iustin Pop
5377 a9e0c397 Iustin Pop
      dev.children = new_lvs
5378 a9e0c397 Iustin Pop
      cfg.Update(instance)
5379 a9e0c397 Iustin Pop
5380 cff90b79 Iustin Pop
    # Step: wait for sync
5381 a9e0c397 Iustin Pop
5382 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5383 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5384 a9e0c397 Iustin Pop
    # return value
5385 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5386 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5387 a9e0c397 Iustin Pop
5388 a9e0c397 Iustin Pop
    # so check manually all the devices
5389 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5390 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, instance.primary_node)
5391 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(instance.primary_node, dev)
5392 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5393 23829f6f Iustin Pop
      if not msg and not result.payload:
5394 23829f6f Iustin Pop
        msg = "disk not found"
5395 23829f6f Iustin Pop
      if msg:
5396 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device %s: %s" %
5397 23829f6f Iustin Pop
                                 (name, msg))
5398 23829f6f Iustin Pop
      if result.payload[5]:
5399 a9e0c397 Iustin Pop
        raise errors.OpExecError("DRBD device %s is degraded!" % name)
5400 a9e0c397 Iustin Pop
5401 cff90b79 Iustin Pop
    # Step: remove old storage
5402 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5403 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5404 cff90b79 Iustin Pop
      info("remove logical volumes for %s" % name)
5405 a9e0c397 Iustin Pop
      for lv in old_lvs:
5406 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, tgt_node)
5407 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(tgt_node, lv).RemoteFailMsg()
5408 e1bc0878 Iustin Pop
        if msg:
5409 e1bc0878 Iustin Pop
          warning("Can't remove old LV: %s" % msg,
5410 e1bc0878 Iustin Pop
                  hint="manually remove unused LVs")
5411 a9e0c397 Iustin Pop
          continue
5412 a9e0c397 Iustin Pop
5413 a9e0c397 Iustin Pop
  def _ExecD8Secondary(self, feedback_fn):
5414 a9e0c397 Iustin Pop
    """Replace the secondary node for drbd8.
5415 a9e0c397 Iustin Pop

5416 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5417 a9e0c397 Iustin Pop
      - for all disks of the instance:
5418 a9e0c397 Iustin Pop
        - create new LVs on the new node with same names
5419 a9e0c397 Iustin Pop
        - shutdown the drbd device on the old secondary
5420 a9e0c397 Iustin Pop
        - disconnect the drbd network on the primary
5421 a9e0c397 Iustin Pop
        - create the drbd device on the new secondary
5422 a9e0c397 Iustin Pop
        - network attach the drbd on the primary, using an artifice:
5423 a9e0c397 Iustin Pop
          the drbd code for Attach() will connect to the network if it
5424 a9e0c397 Iustin Pop
          finds a device which is connected to the good local disks but
5425 a9e0c397 Iustin Pop
          not network enabled
5426 a9e0c397 Iustin Pop
      - wait for sync across all devices
5427 a9e0c397 Iustin Pop
      - remove all disks from the old secondary
5428 a9e0c397 Iustin Pop

5429 a9e0c397 Iustin Pop
    Failures are not very well handled.
5430 0834c866 Iustin Pop

5431 a9e0c397 Iustin Pop
    """
5432 0834c866 Iustin Pop
    steps_total = 6
5433 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5434 a9e0c397 Iustin Pop
    instance = self.instance
5435 a9e0c397 Iustin Pop
    iv_names = {}
5436 a9e0c397 Iustin Pop
    # start of work
5437 a9e0c397 Iustin Pop
    cfg = self.cfg
5438 a9e0c397 Iustin Pop
    old_node = self.tgt_node
5439 a9e0c397 Iustin Pop
    new_node = self.new_node
5440 a9e0c397 Iustin Pop
    pri_node = instance.primary_node
5441 a2d59d8b Iustin Pop
    nodes_ip = {
5442 a2d59d8b Iustin Pop
      old_node: self.cfg.GetNodeInfo(old_node).secondary_ip,
5443 a2d59d8b Iustin Pop
      new_node: self.cfg.GetNodeInfo(new_node).secondary_ip,
5444 a2d59d8b Iustin Pop
      pri_node: self.cfg.GetNodeInfo(pri_node).secondary_ip,
5445 a2d59d8b Iustin Pop
      }
5446 0834c866 Iustin Pop
5447 0834c866 Iustin Pop
    # Step: check device activation
5448 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5449 0834c866 Iustin Pop
    info("checking volume groups")
5450 0834c866 Iustin Pop
    my_vg = cfg.GetVGName()
5451 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([pri_node, new_node])
5452 0834c866 Iustin Pop
    for node in pri_node, new_node:
5453 781de953 Iustin Pop
      res = results[node]
5454 e480923b Iustin Pop
      msg = res.RemoteFailMsg()
5455 e480923b Iustin Pop
      if msg:
5456 e480923b Iustin Pop
        raise errors.OpExecError("Error checking node %s: %s" % (node, msg))
5457 e480923b Iustin Pop
      if my_vg not in res.payload:
5458 0834c866 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5459 0834c866 Iustin Pop
                                 (my_vg, node))
5460 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5461 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5462 0834c866 Iustin Pop
        continue
5463 d418ebfb Iustin Pop
      info("checking disk/%d on %s" % (idx, pri_node))
5464 0834c866 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5465 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5466 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5467 23829f6f Iustin Pop
      if not msg and not result.payload:
5468 23829f6f Iustin Pop
        msg = "disk not found"
5469 23829f6f Iustin Pop
      if msg:
5470 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5471 23829f6f Iustin Pop
                                 (idx, pri_node, msg))
5472 0834c866 Iustin Pop
5473 0834c866 Iustin Pop
    # Step: check other node consistency
5474 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5475 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5476 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5477 0834c866 Iustin Pop
        continue
5478 d418ebfb Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, pri_node))
5479 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, pri_node, True, ldisk=True):
5480 0834c866 Iustin Pop
        raise errors.OpExecError("Primary node (%s) has degraded storage,"
5481 0834c866 Iustin Pop
                                 " unsafe to replace the secondary" %
5482 0834c866 Iustin Pop
                                 pri_node)
5483 0834c866 Iustin Pop
5484 0834c866 Iustin Pop
    # Step: create new storage
5485 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5486 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5487 d418ebfb Iustin Pop
      info("adding new local storage on %s for disk/%d" %
5488 d418ebfb Iustin Pop
           (new_node, idx))
5489 428958aa Iustin Pop
      # we pass force_create=True to force LVM creation
5490 a9e0c397 Iustin Pop
      for new_lv in dev.children:
5491 428958aa Iustin Pop
        _CreateBlockDev(self, new_node, instance, new_lv, True,
5492 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5493 a9e0c397 Iustin Pop
5494 468b46f9 Iustin Pop
    # Step 4: dbrd minors and drbd setups changes
5495 a1578d63 Iustin Pop
    # after this, we must manually remove the drbd minors on both the
5496 a1578d63 Iustin Pop
    # error and the success paths
5497 a1578d63 Iustin Pop
    minors = cfg.AllocateDRBDMinor([new_node for dev in instance.disks],
5498 a1578d63 Iustin Pop
                                   instance.name)
5499 468b46f9 Iustin Pop
    logging.debug("Allocated minors %s" % (minors,))
5500 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "changing drbd configuration")
5501 d418ebfb Iustin Pop
    for idx, (dev, new_minor) in enumerate(zip(instance.disks, minors)):
5502 0834c866 Iustin Pop
      size = dev.size
5503 d418ebfb Iustin Pop
      info("activating a new drbd on %s for disk/%d" % (new_node, idx))
5504 a2d59d8b Iustin Pop
      # create new devices on new_node; note that we create two IDs:
5505 a2d59d8b Iustin Pop
      # one without port, so the drbd will be activated without
5506 a2d59d8b Iustin Pop
      # networking information on the new node at this stage, and one
5507 a2d59d8b Iustin Pop
      # with network, for the latter activation in step 4
5508 a2d59d8b Iustin Pop
      (o_node1, o_node2, o_port, o_minor1, o_minor2, o_secret) = dev.logical_id
5509 a2d59d8b Iustin Pop
      if pri_node == o_node1:
5510 a2d59d8b Iustin Pop
        p_minor = o_minor1
5511 ffa1c0dc Iustin Pop
      else:
5512 a2d59d8b Iustin Pop
        p_minor = o_minor2
5513 a2d59d8b Iustin Pop
5514 a2d59d8b Iustin Pop
      new_alone_id = (pri_node, new_node, None, p_minor, new_minor, o_secret)
5515 a2d59d8b Iustin Pop
      new_net_id = (pri_node, new_node, o_port, p_minor, new_minor, o_secret)
5516 a2d59d8b Iustin Pop
5517 a2d59d8b Iustin Pop
      iv_names[idx] = (dev, dev.children, new_net_id)
5518 a1578d63 Iustin Pop
      logging.debug("Allocated new_minor: %s, new_logical_id: %s", new_minor,
5519 a2d59d8b Iustin Pop
                    new_net_id)
5520 a9e0c397 Iustin Pop
      new_drbd = objects.Disk(dev_type=constants.LD_DRBD8,
5521 a2d59d8b Iustin Pop
                              logical_id=new_alone_id,
5522 a9e0c397 Iustin Pop
                              children=dev.children)
5523 796cab27 Iustin Pop
      try:
5524 de12473a Iustin Pop
        _CreateSingleBlockDev(self, new_node, instance, new_drbd,
5525 de12473a Iustin Pop
                              _GetInstanceInfoText(instance), False)
5526 82759cb1 Iustin Pop
      except errors.GenericError:
5527 a1578d63 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance.name)
5528 796cab27 Iustin Pop
        raise
5529 a9e0c397 Iustin Pop
5530 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5531 a9e0c397 Iustin Pop
      # we have new devices, shutdown the drbd on the old secondary
5532 d418ebfb Iustin Pop
      info("shutting down drbd for disk/%d on old node" % idx)
5533 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, old_node)
5534 cacfd1fd Iustin Pop
      msg = self.rpc.call_blockdev_shutdown(old_node, dev).RemoteFailMsg()
5535 cacfd1fd Iustin Pop
      if msg:
5536 cacfd1fd Iustin Pop
        warning("Failed to shutdown drbd for disk/%d on old node: %s" %
5537 cacfd1fd Iustin Pop
                (idx, msg),
5538 79caa9ed Guido Trotter
                hint="Please cleanup this device manually as soon as possible")
5539 a9e0c397 Iustin Pop
5540 642445d9 Iustin Pop
    info("detaching primary drbds from the network (=> standalone)")
5541 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_disconnect_net([pri_node], nodes_ip,
5542 a2d59d8b Iustin Pop
                                               instance.disks)[pri_node]
5543 642445d9 Iustin Pop
5544 a2d59d8b Iustin Pop
    msg = result.RemoteFailMsg()
5545 a2d59d8b Iustin Pop
    if msg:
5546 a2d59d8b Iustin Pop
      # detaches didn't succeed (unlikely)
5547 a1578d63 Iustin Pop
      self.cfg.ReleaseDRBDMinors(instance.name)
5548 a2d59d8b Iustin Pop
      raise errors.OpExecError("Can't detach the disks from the network on"
5549 a2d59d8b Iustin Pop
                               " old node: %s" % (msg,))
5550 642445d9 Iustin Pop
5551 642445d9 Iustin Pop
    # if we managed to detach at least one, we update all the disks of
5552 642445d9 Iustin Pop
    # the instance to point to the new secondary
5553 642445d9 Iustin Pop
    info("updating instance configuration")
5554 468b46f9 Iustin Pop
    for dev, _, new_logical_id in iv_names.itervalues():
5555 468b46f9 Iustin Pop
      dev.logical_id = new_logical_id
5556 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5557 642445d9 Iustin Pop
    cfg.Update(instance)
5558 a9e0c397 Iustin Pop
5559 642445d9 Iustin Pop
    # and now perform the drbd attach
5560 642445d9 Iustin Pop
    info("attaching primary drbds to new secondary (standalone => connected)")
5561 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_attach_net([pri_node, new_node], nodes_ip,
5562 a2d59d8b Iustin Pop
                                           instance.disks, instance.name,
5563 a2d59d8b Iustin Pop
                                           False)
5564 a2d59d8b Iustin Pop
    for to_node, to_result in result.items():
5565 a2d59d8b Iustin Pop
      msg = to_result.RemoteFailMsg()
5566 a2d59d8b Iustin Pop
      if msg:
5567 a2d59d8b Iustin Pop
        warning("can't attach drbd disks on node %s: %s", to_node, msg,
5568 a2d59d8b Iustin Pop
                hint="please do a gnt-instance info to see the"
5569 a2d59d8b Iustin Pop
                " status of disks")
5570 a9e0c397 Iustin Pop
5571 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5572 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5573 a9e0c397 Iustin Pop
    # return value
5574 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5575 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5576 a9e0c397 Iustin Pop
5577 a9e0c397 Iustin Pop
    # so check manually all the devices
5578 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5579 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5580 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5581 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5582 23829f6f Iustin Pop
      if not msg and not result.payload:
5583 23829f6f Iustin Pop
        msg = "disk not found"
5584 23829f6f Iustin Pop
      if msg:
5585 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device disk/%d: %s" %
5586 23829f6f Iustin Pop
                                 (idx, msg))
5587 23829f6f Iustin Pop
      if result.payload[5]:
5588 d418ebfb Iustin Pop
        raise errors.OpExecError("DRBD device disk/%d is degraded!" % idx)
5589 a9e0c397 Iustin Pop
5590 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5591 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5592 d418ebfb Iustin Pop
      info("remove logical volumes for disk/%d" % idx)
5593 a9e0c397 Iustin Pop
      for lv in old_lvs:
5594 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, old_node)
5595 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(old_node, lv).RemoteFailMsg()
5596 e1bc0878 Iustin Pop
        if msg:
5597 e1bc0878 Iustin Pop
          warning("Can't remove LV on old secondary: %s", msg,
5598 79caa9ed Guido Trotter
                  hint="Cleanup stale volumes by hand")
5599 a9e0c397 Iustin Pop
5600 a9e0c397 Iustin Pop
  def Exec(self, feedback_fn):
5601 a9e0c397 Iustin Pop
    """Execute disk replacement.
5602 a9e0c397 Iustin Pop

5603 a9e0c397 Iustin Pop
    This dispatches the disk replacement to the appropriate handler.
5604 a9e0c397 Iustin Pop

5605 a9e0c397 Iustin Pop
    """
5606 a9e0c397 Iustin Pop
    instance = self.instance
5607 22985314 Guido Trotter
5608 22985314 Guido Trotter
    # Activate the instance disks if we're replacing them on a down instance
5609 0d68c45d Iustin Pop
    if not instance.admin_up:
5610 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, True)
5611 22985314 Guido Trotter
5612 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5613 7e9366f7 Iustin Pop
      fn = self._ExecD8Secondary
5614 a9e0c397 Iustin Pop
    else:
5615 7e9366f7 Iustin Pop
      fn = self._ExecD8DiskOnly
5616 22985314 Guido Trotter
5617 22985314 Guido Trotter
    ret = fn(feedback_fn)
5618 22985314 Guido Trotter
5619 22985314 Guido Trotter
    # Deactivate the instance disks if we're replacing them on a down instance
5620 0d68c45d Iustin Pop
    if not instance.admin_up:
5621 b9bddb6b Iustin Pop
      _SafeShutdownInstanceDisks(self, instance)
5622 22985314 Guido Trotter
5623 22985314 Guido Trotter
    return ret
5624 a9e0c397 Iustin Pop
5625 a8083063 Iustin Pop
5626 8729e0d7 Iustin Pop
class LUGrowDisk(LogicalUnit):
5627 8729e0d7 Iustin Pop
  """Grow a disk of an instance.
5628 8729e0d7 Iustin Pop

5629 8729e0d7 Iustin Pop
  """
5630 8729e0d7 Iustin Pop
  HPATH = "disk-grow"
5631 8729e0d7 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5632 6605411d Iustin Pop
  _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
5633 31e63dbf Guido Trotter
  REQ_BGL = False
5634 31e63dbf Guido Trotter
5635 31e63dbf Guido Trotter
  def ExpandNames(self):
5636 31e63dbf Guido Trotter
    self._ExpandAndLockInstance()
5637 31e63dbf Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5638 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5639 31e63dbf Guido Trotter
5640 31e63dbf Guido Trotter
  def DeclareLocks(self, level):
5641 31e63dbf Guido Trotter
    if level == locking.LEVEL_NODE:
5642 31e63dbf Guido Trotter
      self._LockInstancesNodes()
5643 8729e0d7 Iustin Pop
5644 8729e0d7 Iustin Pop
  def BuildHooksEnv(self):
5645 8729e0d7 Iustin Pop
    """Build hooks env.
5646 8729e0d7 Iustin Pop

5647 8729e0d7 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5648 8729e0d7 Iustin Pop

5649 8729e0d7 Iustin Pop
    """
5650 8729e0d7 Iustin Pop
    env = {
5651 8729e0d7 Iustin Pop
      "DISK": self.op.disk,
5652 8729e0d7 Iustin Pop
      "AMOUNT": self.op.amount,
5653 8729e0d7 Iustin Pop
      }
5654 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5655 8729e0d7 Iustin Pop
    nl = [
5656 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5657 8729e0d7 Iustin Pop
      self.instance.primary_node,
5658 8729e0d7 Iustin Pop
      ]
5659 8729e0d7 Iustin Pop
    return env, nl, nl
5660 8729e0d7 Iustin Pop
5661 8729e0d7 Iustin Pop
  def CheckPrereq(self):
5662 8729e0d7 Iustin Pop
    """Check prerequisites.
5663 8729e0d7 Iustin Pop

5664 8729e0d7 Iustin Pop
    This checks that the instance is in the cluster.
5665 8729e0d7 Iustin Pop

5666 8729e0d7 Iustin Pop
    """
5667 31e63dbf Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5668 31e63dbf Guido Trotter
    assert instance is not None, \
5669 31e63dbf Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5670 6b12959c Iustin Pop
    nodenames = list(instance.all_nodes)
5671 6b12959c Iustin Pop
    for node in nodenames:
5672 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, node)
5673 7527a8a4 Iustin Pop
5674 31e63dbf Guido Trotter
5675 8729e0d7 Iustin Pop
    self.instance = instance
5676 8729e0d7 Iustin Pop
5677 8729e0d7 Iustin Pop
    if instance.disk_template not in (constants.DT_PLAIN, constants.DT_DRBD8):
5678 8729e0d7 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout does not support"
5679 8729e0d7 Iustin Pop
                                 " growing.")
5680 8729e0d7 Iustin Pop
5681 ad24e046 Iustin Pop
    self.disk = instance.FindDisk(self.op.disk)
5682 8729e0d7 Iustin Pop
5683 72737a7f Iustin Pop
    nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
5684 72737a7f Iustin Pop
                                       instance.hypervisor)
5685 8729e0d7 Iustin Pop
    for node in nodenames:
5686 781de953 Iustin Pop
      info = nodeinfo[node]
5687 070e998b Iustin Pop
      msg = info.RemoteFailMsg()
5688 070e998b Iustin Pop
      if msg:
5689 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Cannot get current information"
5690 070e998b Iustin Pop
                                   " from node %s:" % (node, msg))
5691 070e998b Iustin Pop
      vg_free = info.payload.get('vg_free', None)
5692 8729e0d7 Iustin Pop
      if not isinstance(vg_free, int):
5693 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Can't compute free disk space on"
5694 8729e0d7 Iustin Pop
                                   " node %s" % node)
5695 781de953 Iustin Pop
      if self.op.amount > vg_free:
5696 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Not enough disk space on target node %s:"
5697 8729e0d7 Iustin Pop
                                   " %d MiB available, %d MiB required" %
5698 781de953 Iustin Pop
                                   (node, vg_free, self.op.amount))
5699 8729e0d7 Iustin Pop
5700 8729e0d7 Iustin Pop
  def Exec(self, feedback_fn):
5701 8729e0d7 Iustin Pop
    """Execute disk grow.
5702 8729e0d7 Iustin Pop

5703 8729e0d7 Iustin Pop
    """
5704 8729e0d7 Iustin Pop
    instance = self.instance
5705 ad24e046 Iustin Pop
    disk = self.disk
5706 6b12959c Iustin Pop
    for node in instance.all_nodes:
5707 8729e0d7 Iustin Pop
      self.cfg.SetDiskID(disk, node)
5708 72737a7f Iustin Pop
      result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
5709 0959c824 Iustin Pop
      msg = result.RemoteFailMsg()
5710 0959c824 Iustin Pop
      if msg:
5711 781de953 Iustin Pop
        raise errors.OpExecError("Grow request failed to node %s: %s" %
5712 0959c824 Iustin Pop
                                 (node, msg))
5713 8729e0d7 Iustin Pop
    disk.RecordGrow(self.op.amount)
5714 8729e0d7 Iustin Pop
    self.cfg.Update(instance)
5715 6605411d Iustin Pop
    if self.op.wait_for_sync:
5716 cd4d138f Guido Trotter
      disk_abort = not _WaitForSync(self, instance)
5717 6605411d Iustin Pop
      if disk_abort:
5718 86d9d3bb Iustin Pop
        self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
5719 86d9d3bb Iustin Pop
                             " status.\nPlease check the instance.")
5720 8729e0d7 Iustin Pop
5721 8729e0d7 Iustin Pop
5722 a8083063 Iustin Pop
class LUQueryInstanceData(NoHooksLU):
5723 a8083063 Iustin Pop
  """Query runtime instance data.
5724 a8083063 Iustin Pop

5725 a8083063 Iustin Pop
  """
5726 57821cac Iustin Pop
  _OP_REQP = ["instances", "static"]
5727 a987fa48 Guido Trotter
  REQ_BGL = False
5728 ae5849b5 Michael Hanselmann
5729 a987fa48 Guido Trotter
  def ExpandNames(self):
5730 a987fa48 Guido Trotter
    self.needed_locks = {}
5731 a987fa48 Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
5732 a987fa48 Guido Trotter
5733 a987fa48 Guido Trotter
    if not isinstance(self.op.instances, list):
5734 a987fa48 Guido Trotter
      raise errors.OpPrereqError("Invalid argument type 'instances'")
5735 a987fa48 Guido Trotter
5736 a987fa48 Guido Trotter
    if self.op.instances:
5737 a987fa48 Guido Trotter
      self.wanted_names = []
5738 a987fa48 Guido Trotter
      for name in self.op.instances:
5739 a987fa48 Guido Trotter
        full_name = self.cfg.ExpandInstanceName(name)
5740 a987fa48 Guido Trotter
        if full_name is None:
5741 f57c76e4 Iustin Pop
          raise errors.OpPrereqError("Instance '%s' not known" % name)
5742 a987fa48 Guido Trotter
        self.wanted_names.append(full_name)
5743 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
5744 a987fa48 Guido Trotter
    else:
5745 a987fa48 Guido Trotter
      self.wanted_names = None
5746 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
5747 a987fa48 Guido Trotter
5748 a987fa48 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5749 a987fa48 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5750 a987fa48 Guido Trotter
5751 a987fa48 Guido Trotter
  def DeclareLocks(self, level):
5752 a987fa48 Guido Trotter
    if level == locking.LEVEL_NODE:
5753 a987fa48 Guido Trotter
      self._LockInstancesNodes()
5754 a8083063 Iustin Pop
5755 a8083063 Iustin Pop
  def CheckPrereq(self):
5756 a8083063 Iustin Pop
    """Check prerequisites.
5757 a8083063 Iustin Pop

5758 a8083063 Iustin Pop
    This only checks the optional instance list against the existing names.
5759 a8083063 Iustin Pop

5760 a8083063 Iustin Pop
    """
5761 a987fa48 Guido Trotter
    if self.wanted_names is None:
5762 a987fa48 Guido Trotter
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
5763 a8083063 Iustin Pop
5764 a987fa48 Guido Trotter
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
5765 a987fa48 Guido Trotter
                             in self.wanted_names]
5766 a987fa48 Guido Trotter
    return
5767 a8083063 Iustin Pop
5768 a8083063 Iustin Pop
  def _ComputeDiskStatus(self, instance, snode, dev):
5769 a8083063 Iustin Pop
    """Compute block device status.
5770 a8083063 Iustin Pop

5771 a8083063 Iustin Pop
    """
5772 57821cac Iustin Pop
    static = self.op.static
5773 57821cac Iustin Pop
    if not static:
5774 57821cac Iustin Pop
      self.cfg.SetDiskID(dev, instance.primary_node)
5775 57821cac Iustin Pop
      dev_pstatus = self.rpc.call_blockdev_find(instance.primary_node, dev)
5776 9854f5d0 Iustin Pop
      if dev_pstatus.offline:
5777 9854f5d0 Iustin Pop
        dev_pstatus = None
5778 9854f5d0 Iustin Pop
      else:
5779 9854f5d0 Iustin Pop
        msg = dev_pstatus.RemoteFailMsg()
5780 9854f5d0 Iustin Pop
        if msg:
5781 9854f5d0 Iustin Pop
          raise errors.OpExecError("Can't compute disk status for %s: %s" %
5782 9854f5d0 Iustin Pop
                                   (instance.name, msg))
5783 9854f5d0 Iustin Pop
        dev_pstatus = dev_pstatus.payload
5784 57821cac Iustin Pop
    else:
5785 57821cac Iustin Pop
      dev_pstatus = None
5786 57821cac Iustin Pop
5787 a1f445d3 Iustin Pop
    if dev.dev_type in constants.LDS_DRBD:
5788 a8083063 Iustin Pop
      # we change the snode then (otherwise we use the one passed in)
5789 a8083063 Iustin Pop
      if dev.logical_id[0] == instance.primary_node:
5790 a8083063 Iustin Pop
        snode = dev.logical_id[1]
5791 a8083063 Iustin Pop
      else:
5792 a8083063 Iustin Pop
        snode = dev.logical_id[0]
5793 a8083063 Iustin Pop
5794 57821cac Iustin Pop
    if snode and not static:
5795 a8083063 Iustin Pop
      self.cfg.SetDiskID(dev, snode)
5796 72737a7f Iustin Pop
      dev_sstatus = self.rpc.call_blockdev_find(snode, dev)
5797 9854f5d0 Iustin Pop
      if dev_sstatus.offline:
5798 9854f5d0 Iustin Pop
        dev_sstatus = None
5799 9854f5d0 Iustin Pop
      else:
5800 9854f5d0 Iustin Pop
        msg = dev_sstatus.RemoteFailMsg()
5801 9854f5d0 Iustin Pop
        if msg:
5802 9854f5d0 Iustin Pop
          raise errors.OpExecError("Can't compute disk status for %s: %s" %
5803 9854f5d0 Iustin Pop
                                   (instance.name, msg))
5804 9854f5d0 Iustin Pop
        dev_sstatus = dev_sstatus.payload
5805 a8083063 Iustin Pop
    else:
5806 a8083063 Iustin Pop
      dev_sstatus = None
5807 a8083063 Iustin Pop
5808 a8083063 Iustin Pop
    if dev.children:
5809 a8083063 Iustin Pop
      dev_children = [self._ComputeDiskStatus(instance, snode, child)
5810 a8083063 Iustin Pop
                      for child in dev.children]
5811 a8083063 Iustin Pop
    else:
5812 a8083063 Iustin Pop
      dev_children = []
5813 a8083063 Iustin Pop
5814 a8083063 Iustin Pop
    data = {
5815 a8083063 Iustin Pop
      "iv_name": dev.iv_name,
5816 a8083063 Iustin Pop
      "dev_type": dev.dev_type,
5817 a8083063 Iustin Pop
      "logical_id": dev.logical_id,
5818 a8083063 Iustin Pop
      "physical_id": dev.physical_id,
5819 a8083063 Iustin Pop
      "pstatus": dev_pstatus,
5820 a8083063 Iustin Pop
      "sstatus": dev_sstatus,
5821 a8083063 Iustin Pop
      "children": dev_children,
5822 b6fdf8b8 Iustin Pop
      "mode": dev.mode,
5823 a8083063 Iustin Pop
      }
5824 a8083063 Iustin Pop
5825 a8083063 Iustin Pop
    return data
5826 a8083063 Iustin Pop
5827 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5828 a8083063 Iustin Pop
    """Gather and return data"""
5829 a8083063 Iustin Pop
    result = {}
5830 338e51e8 Iustin Pop
5831 338e51e8 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
5832 338e51e8 Iustin Pop
5833 a8083063 Iustin Pop
    for instance in self.wanted_instances:
5834 57821cac Iustin Pop
      if not self.op.static:
5835 57821cac Iustin Pop
        remote_info = self.rpc.call_instance_info(instance.primary_node,
5836 57821cac Iustin Pop
                                                  instance.name,
5837 57821cac Iustin Pop
                                                  instance.hypervisor)
5838 7ad1af4a Iustin Pop
        msg = remote_info.RemoteFailMsg()
5839 7ad1af4a Iustin Pop
        if msg:
5840 7ad1af4a Iustin Pop
          raise errors.OpExecError("Error checking node %s: %s" %
5841 7ad1af4a Iustin Pop
                                   (instance.primary_node, msg))
5842 7ad1af4a Iustin Pop
        remote_info = remote_info.payload
5843 57821cac Iustin Pop
        if remote_info and "state" in remote_info:
5844 57821cac Iustin Pop
          remote_state = "up"
5845 57821cac Iustin Pop
        else:
5846 57821cac Iustin Pop
          remote_state = "down"
5847 a8083063 Iustin Pop
      else:
5848 57821cac Iustin Pop
        remote_state = None
5849 0d68c45d Iustin Pop
      if instance.admin_up:
5850 a8083063 Iustin Pop
        config_state = "up"
5851 0d68c45d Iustin Pop
      else:
5852 0d68c45d Iustin Pop
        config_state = "down"
5853 a8083063 Iustin Pop
5854 a8083063 Iustin Pop
      disks = [self._ComputeDiskStatus(instance, None, device)
5855 a8083063 Iustin Pop
               for device in instance.disks]
5856 a8083063 Iustin Pop
5857 a8083063 Iustin Pop
      idict = {
5858 a8083063 Iustin Pop
        "name": instance.name,
5859 a8083063 Iustin Pop
        "config_state": config_state,
5860 a8083063 Iustin Pop
        "run_state": remote_state,
5861 a8083063 Iustin Pop
        "pnode": instance.primary_node,
5862 a8083063 Iustin Pop
        "snodes": instance.secondary_nodes,
5863 a8083063 Iustin Pop
        "os": instance.os,
5864 a8083063 Iustin Pop
        "nics": [(nic.mac, nic.ip, nic.bridge) for nic in instance.nics],
5865 a8083063 Iustin Pop
        "disks": disks,
5866 e69d05fd Iustin Pop
        "hypervisor": instance.hypervisor,
5867 24838135 Iustin Pop
        "network_port": instance.network_port,
5868 24838135 Iustin Pop
        "hv_instance": instance.hvparams,
5869 338e51e8 Iustin Pop
        "hv_actual": cluster.FillHV(instance),
5870 338e51e8 Iustin Pop
        "be_instance": instance.beparams,
5871 338e51e8 Iustin Pop
        "be_actual": cluster.FillBE(instance),
5872 a8083063 Iustin Pop
        }
5873 a8083063 Iustin Pop
5874 a8083063 Iustin Pop
      result[instance.name] = idict
5875 a8083063 Iustin Pop
5876 a8083063 Iustin Pop
    return result
5877 a8083063 Iustin Pop
5878 a8083063 Iustin Pop
5879 7767bbf5 Manuel Franceschini
class LUSetInstanceParams(LogicalUnit):
5880 a8083063 Iustin Pop
  """Modifies an instances's parameters.
5881 a8083063 Iustin Pop

5882 a8083063 Iustin Pop
  """
5883 a8083063 Iustin Pop
  HPATH = "instance-modify"
5884 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5885 24991749 Iustin Pop
  _OP_REQP = ["instance_name"]
5886 1a5c7281 Guido Trotter
  REQ_BGL = False
5887 1a5c7281 Guido Trotter
5888 24991749 Iustin Pop
  def CheckArguments(self):
5889 24991749 Iustin Pop
    if not hasattr(self.op, 'nics'):
5890 24991749 Iustin Pop
      self.op.nics = []
5891 24991749 Iustin Pop
    if not hasattr(self.op, 'disks'):
5892 24991749 Iustin Pop
      self.op.disks = []
5893 24991749 Iustin Pop
    if not hasattr(self.op, 'beparams'):
5894 24991749 Iustin Pop
      self.op.beparams = {}
5895 24991749 Iustin Pop
    if not hasattr(self.op, 'hvparams'):
5896 24991749 Iustin Pop
      self.op.hvparams = {}
5897 24991749 Iustin Pop
    self.op.force = getattr(self.op, "force", False)
5898 24991749 Iustin Pop
    if not (self.op.nics or self.op.disks or
5899 24991749 Iustin Pop
            self.op.hvparams or self.op.beparams):
5900 24991749 Iustin Pop
      raise errors.OpPrereqError("No changes submitted")
5901 24991749 Iustin Pop
5902 24991749 Iustin Pop
    # Disk validation
5903 24991749 Iustin Pop
    disk_addremove = 0
5904 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5905 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5906 24991749 Iustin Pop
        disk_addremove += 1
5907 24991749 Iustin Pop
        continue
5908 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5909 24991749 Iustin Pop
        disk_addremove += 1
5910 24991749 Iustin Pop
      else:
5911 24991749 Iustin Pop
        if not isinstance(disk_op, int):
5912 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index")
5913 24991749 Iustin Pop
      if disk_op == constants.DDM_ADD:
5914 24991749 Iustin Pop
        mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
5915 6ec66eae Iustin Pop
        if mode not in constants.DISK_ACCESS_SET:
5916 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode)
5917 24991749 Iustin Pop
        size = disk_dict.get('size', None)
5918 24991749 Iustin Pop
        if size is None:
5919 24991749 Iustin Pop
          raise errors.OpPrereqError("Required disk parameter size missing")
5920 24991749 Iustin Pop
        try:
5921 24991749 Iustin Pop
          size = int(size)
5922 24991749 Iustin Pop
        except ValueError, err:
5923 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size parameter: %s" %
5924 24991749 Iustin Pop
                                     str(err))
5925 24991749 Iustin Pop
        disk_dict['size'] = size
5926 24991749 Iustin Pop
      else:
5927 24991749 Iustin Pop
        # modification of disk
5928 24991749 Iustin Pop
        if 'size' in disk_dict:
5929 24991749 Iustin Pop
          raise errors.OpPrereqError("Disk size change not possible, use"
5930 24991749 Iustin Pop
                                     " grow-disk")
5931 24991749 Iustin Pop
5932 24991749 Iustin Pop
    if disk_addremove > 1:
5933 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one disk add or remove operation"
5934 24991749 Iustin Pop
                                 " supported at a time")
5935 24991749 Iustin Pop
5936 24991749 Iustin Pop
    # NIC validation
5937 24991749 Iustin Pop
    nic_addremove = 0
5938 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5939 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5940 24991749 Iustin Pop
        nic_addremove += 1
5941 24991749 Iustin Pop
        continue
5942 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5943 24991749 Iustin Pop
        nic_addremove += 1
5944 24991749 Iustin Pop
      else:
5945 24991749 Iustin Pop
        if not isinstance(nic_op, int):
5946 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid nic index")
5947 24991749 Iustin Pop
5948 24991749 Iustin Pop
      # nic_dict should be a dict
5949 24991749 Iustin Pop
      nic_ip = nic_dict.get('ip', None)
5950 24991749 Iustin Pop
      if nic_ip is not None:
5951 5c44da6a Guido Trotter
        if nic_ip.lower() == constants.VALUE_NONE:
5952 24991749 Iustin Pop
          nic_dict['ip'] = None
5953 24991749 Iustin Pop
        else:
5954 24991749 Iustin Pop
          if not utils.IsValidIP(nic_ip):
5955 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip)
5956 5c44da6a Guido Trotter
5957 cd098c41 Guido Trotter
      nic_bridge = nic_dict.get('bridge', None)
5958 cd098c41 Guido Trotter
      nic_link = nic_dict.get('link', None)
5959 cd098c41 Guido Trotter
      if nic_bridge and nic_link:
5960 cd098c41 Guido Trotter
        raise errors.OpPrereqError("Cannot pass 'bridge' and 'link' at the same time")
5961 cd098c41 Guido Trotter
      elif nic_bridge and nic_bridge.lower() == constants.VALUE_NONE:
5962 cd098c41 Guido Trotter
        nic_dict['bridge'] = None
5963 cd098c41 Guido Trotter
      elif nic_link and nic_link.lower() == constants.VALUE_NONE:
5964 cd098c41 Guido Trotter
        nic_dict['link'] = None
5965 cd098c41 Guido Trotter
5966 5c44da6a Guido Trotter
      if nic_op == constants.DDM_ADD:
5967 5c44da6a Guido Trotter
        nic_mac = nic_dict.get('mac', None)
5968 5c44da6a Guido Trotter
        if nic_mac is None:
5969 5c44da6a Guido Trotter
          nic_dict['mac'] = constants.VALUE_AUTO
5970 5c44da6a Guido Trotter
5971 5c44da6a Guido Trotter
      if 'mac' in nic_dict:
5972 5c44da6a Guido Trotter
        nic_mac = nic_dict['mac']
5973 24991749 Iustin Pop
        if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5974 24991749 Iustin Pop
          if not utils.IsValidMac(nic_mac):
5975 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid MAC address %s" % nic_mac)
5976 5c44da6a Guido Trotter
        if nic_op != constants.DDM_ADD and nic_mac == constants.VALUE_AUTO:
5977 5c44da6a Guido Trotter
          raise errors.OpPrereqError("'auto' is not a valid MAC address when"
5978 5c44da6a Guido Trotter
                                     " modifying an existing nic")
5979 5c44da6a Guido Trotter
5980 24991749 Iustin Pop
    if nic_addremove > 1:
5981 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one NIC add or remove operation"
5982 24991749 Iustin Pop
                                 " supported at a time")
5983 24991749 Iustin Pop
5984 1a5c7281 Guido Trotter
  def ExpandNames(self):
5985 1a5c7281 Guido Trotter
    self._ExpandAndLockInstance()
5986 74409b12 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
5987 74409b12 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5988 74409b12 Iustin Pop
5989 74409b12 Iustin Pop
  def DeclareLocks(self, level):
5990 74409b12 Iustin Pop
    if level == locking.LEVEL_NODE:
5991 74409b12 Iustin Pop
      self._LockInstancesNodes()
5992 a8083063 Iustin Pop
5993 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5994 a8083063 Iustin Pop
    """Build hooks env.
5995 a8083063 Iustin Pop

5996 a8083063 Iustin Pop
    This runs on the master, primary and secondaries.
5997 a8083063 Iustin Pop

5998 a8083063 Iustin Pop
    """
5999 396e1b78 Michael Hanselmann
    args = dict()
6000 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.be_new:
6001 338e51e8 Iustin Pop
      args['memory'] = self.be_new[constants.BE_MEMORY]
6002 338e51e8 Iustin Pop
    if constants.BE_VCPUS in self.be_new:
6003 61be6ba4 Iustin Pop
      args['vcpus'] = self.be_new[constants.BE_VCPUS]
6004 d8dcf3c9 Guido Trotter
    # TODO: export disk changes. Note: _BuildInstanceHookEnv* don't export disk
6005 d8dcf3c9 Guido Trotter
    # information at all.
6006 d8dcf3c9 Guido Trotter
    if self.op.nics:
6007 d8dcf3c9 Guido Trotter
      args['nics'] = []
6008 d8dcf3c9 Guido Trotter
      nic_override = dict(self.op.nics)
6009 62f0dd02 Guido Trotter
      c_nicparams = self.cluster.nicparams[constants.PP_DEFAULT]
6010 d8dcf3c9 Guido Trotter
      for idx, nic in enumerate(self.instance.nics):
6011 d8dcf3c9 Guido Trotter
        if idx in nic_override:
6012 d8dcf3c9 Guido Trotter
          this_nic_override = nic_override[idx]
6013 d8dcf3c9 Guido Trotter
        else:
6014 d8dcf3c9 Guido Trotter
          this_nic_override = {}
6015 d8dcf3c9 Guido Trotter
        if 'ip' in this_nic_override:
6016 d8dcf3c9 Guido Trotter
          ip = this_nic_override['ip']
6017 d8dcf3c9 Guido Trotter
        else:
6018 d8dcf3c9 Guido Trotter
          ip = nic.ip
6019 d8dcf3c9 Guido Trotter
        if 'mac' in this_nic_override:
6020 d8dcf3c9 Guido Trotter
          mac = this_nic_override['mac']
6021 d8dcf3c9 Guido Trotter
        else:
6022 d8dcf3c9 Guido Trotter
          mac = nic.mac
6023 62f0dd02 Guido Trotter
        if idx in self.nic_pnew:
6024 62f0dd02 Guido Trotter
          nicparams = self.nic_pnew[idx]
6025 62f0dd02 Guido Trotter
        else:
6026 62f0dd02 Guido Trotter
          nicparams = objects.FillDict(c_nicparams, nic.nicparams)
6027 62f0dd02 Guido Trotter
        mode = nicparams[constants.NIC_MODE]
6028 62f0dd02 Guido Trotter
        link = nicparams[constants.NIC_LINK]
6029 62f0dd02 Guido Trotter
        args['nics'].append((ip, mac, mode, link))
6030 d8dcf3c9 Guido Trotter
      if constants.DDM_ADD in nic_override:
6031 d8dcf3c9 Guido Trotter
        ip = nic_override[constants.DDM_ADD].get('ip', None)
6032 d8dcf3c9 Guido Trotter
        mac = nic_override[constants.DDM_ADD]['mac']
6033 62f0dd02 Guido Trotter
        nicparams = self.nic_pnew[constants.DDM_ADD]
6034 62f0dd02 Guido Trotter
        mode = nicparams[constants.NIC_MODE]
6035 62f0dd02 Guido Trotter
        link = nicparams[constants.NIC_LINK]
6036 62f0dd02 Guido Trotter
        args['nics'].append((ip, mac, mode, link))
6037 d8dcf3c9 Guido Trotter
      elif constants.DDM_REMOVE in nic_override:
6038 d8dcf3c9 Guido Trotter
        del args['nics'][-1]
6039 d8dcf3c9 Guido Trotter
6040 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
6041 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
6042 a8083063 Iustin Pop
    return env, nl, nl
6043 a8083063 Iustin Pop
6044 0329617a Guido Trotter
  def _GetUpdatedParams(self, old_params, update_dict,
6045 0329617a Guido Trotter
                        default_values, parameter_types):
6046 0329617a Guido Trotter
    """Return the new params dict for the given params.
6047 0329617a Guido Trotter

6048 0329617a Guido Trotter
    @type old_params: dict
6049 0329617a Guido Trotter
    @type old_params: old parameters
6050 0329617a Guido Trotter
    @type update_dict: dict
6051 0329617a Guido Trotter
    @type update_dict: dict containing new parameter values,
6052 0329617a Guido Trotter
                       or constants.VALUE_DEFAULT to reset the
6053 0329617a Guido Trotter
                       parameter to its default value
6054 0329617a Guido Trotter
    @type default_values: dict
6055 0329617a Guido Trotter
    @param default_values: default values for the filled parameters
6056 0329617a Guido Trotter
    @type parameter_types: dict
6057 0329617a Guido Trotter
    @param parameter_types: dict mapping target dict keys to types
6058 0329617a Guido Trotter
                            in constants.ENFORCEABLE_TYPES
6059 0329617a Guido Trotter
    @rtype: (dict, dict)
6060 0329617a Guido Trotter
    @return: (new_parameters, filled_parameters)
6061 0329617a Guido Trotter

6062 0329617a Guido Trotter
    """
6063 0329617a Guido Trotter
    params_copy = copy.deepcopy(old_params)
6064 0329617a Guido Trotter
    for key, val in update_dict.iteritems():
6065 0329617a Guido Trotter
      if val == constants.VALUE_DEFAULT:
6066 0329617a Guido Trotter
        try:
6067 0329617a Guido Trotter
          del params_copy[key]
6068 0329617a Guido Trotter
        except KeyError:
6069 0329617a Guido Trotter
          pass
6070 0329617a Guido Trotter
      else:
6071 0329617a Guido Trotter
        params_copy[key] = val
6072 0329617a Guido Trotter
    utils.ForceDictType(params_copy, parameter_types)
6073 0329617a Guido Trotter
    params_filled = objects.FillDict(default_values, params_copy)
6074 0329617a Guido Trotter
    return (params_copy, params_filled)
6075 0329617a Guido Trotter
6076 a8083063 Iustin Pop
  def CheckPrereq(self):
6077 a8083063 Iustin Pop
    """Check prerequisites.
6078 a8083063 Iustin Pop

6079 a8083063 Iustin Pop
    This only checks the instance list against the existing names.
6080 a8083063 Iustin Pop

6081 a8083063 Iustin Pop
    """
6082 24991749 Iustin Pop
    force = self.force = self.op.force
6083 a8083063 Iustin Pop
6084 74409b12 Iustin Pop
    # checking the new params on the primary/secondary nodes
6085 31a853d2 Iustin Pop
6086 cfefe007 Guido Trotter
    instance = self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
6087 2ee88aeb Guido Trotter
    cluster = self.cluster = self.cfg.GetClusterInfo()
6088 1a5c7281 Guido Trotter
    assert self.instance is not None, \
6089 1a5c7281 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
6090 6b12959c Iustin Pop
    pnode = instance.primary_node
6091 6b12959c Iustin Pop
    nodelist = list(instance.all_nodes)
6092 74409b12 Iustin Pop
6093 338e51e8 Iustin Pop
    # hvparams processing
6094 74409b12 Iustin Pop
    if self.op.hvparams:
6095 0329617a Guido Trotter
      i_hvdict, hv_new = self._GetUpdatedParams(
6096 0329617a Guido Trotter
                             instance.hvparams, self.op.hvparams,
6097 0329617a Guido Trotter
                             cluster.hvparams[instance.hypervisor],
6098 0329617a Guido Trotter
                             constants.HVS_PARAMETER_TYPES)
6099 74409b12 Iustin Pop
      # local check
6100 74409b12 Iustin Pop
      hypervisor.GetHypervisor(
6101 74409b12 Iustin Pop
        instance.hypervisor).CheckParameterSyntax(hv_new)
6102 74409b12 Iustin Pop
      _CheckHVParams(self, nodelist, instance.hypervisor, hv_new)
6103 338e51e8 Iustin Pop
      self.hv_new = hv_new # the new actual values
6104 338e51e8 Iustin Pop
      self.hv_inst = i_hvdict # the new dict (without defaults)
6105 338e51e8 Iustin Pop
    else:
6106 338e51e8 Iustin Pop
      self.hv_new = self.hv_inst = {}
6107 338e51e8 Iustin Pop
6108 338e51e8 Iustin Pop
    # beparams processing
6109 338e51e8 Iustin Pop
    if self.op.beparams:
6110 0329617a Guido Trotter
      i_bedict, be_new = self._GetUpdatedParams(
6111 0329617a Guido Trotter
                             instance.beparams, self.op.beparams,
6112 0329617a Guido Trotter
                             cluster.beparams[constants.PP_DEFAULT],
6113 0329617a Guido Trotter
                             constants.BES_PARAMETER_TYPES)
6114 338e51e8 Iustin Pop
      self.be_new = be_new # the new actual values
6115 338e51e8 Iustin Pop
      self.be_inst = i_bedict # the new dict (without defaults)
6116 338e51e8 Iustin Pop
    else:
6117 b637ae4d Iustin Pop
      self.be_new = self.be_inst = {}
6118 74409b12 Iustin Pop
6119 cfefe007 Guido Trotter
    self.warn = []
6120 647a5d80 Iustin Pop
6121 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.op.beparams and not self.force:
6122 647a5d80 Iustin Pop
      mem_check_list = [pnode]
6123 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
6124 c0f2b229 Iustin Pop
        # either we changed auto_balance to yes or it was from before
6125 647a5d80 Iustin Pop
        mem_check_list.extend(instance.secondary_nodes)
6126 72737a7f Iustin Pop
      instance_info = self.rpc.call_instance_info(pnode, instance.name,
6127 72737a7f Iustin Pop
                                                  instance.hypervisor)
6128 647a5d80 Iustin Pop
      nodeinfo = self.rpc.call_node_info(mem_check_list, self.cfg.GetVGName(),
6129 72737a7f Iustin Pop
                                         instance.hypervisor)
6130 070e998b Iustin Pop
      pninfo = nodeinfo[pnode]
6131 070e998b Iustin Pop
      msg = pninfo.RemoteFailMsg()
6132 070e998b Iustin Pop
      if msg:
6133 cfefe007 Guido Trotter
        # Assume the primary node is unreachable and go ahead
6134 070e998b Iustin Pop
        self.warn.append("Can't get info from primary node %s: %s" %
6135 070e998b Iustin Pop
                         (pnode,  msg))
6136 070e998b Iustin Pop
      elif not isinstance(pninfo.payload.get('memory_free', None), int):
6137 070e998b Iustin Pop
        self.warn.append("Node data from primary node %s doesn't contain"
6138 070e998b Iustin Pop
                         " free memory information" % pnode)
6139 7ad1af4a Iustin Pop
      elif instance_info.RemoteFailMsg():
6140 7ad1af4a Iustin Pop
        self.warn.append("Can't get instance runtime information: %s" %
6141 7ad1af4a Iustin Pop
                        instance_info.RemoteFailMsg())
6142 cfefe007 Guido Trotter
      else:
6143 7ad1af4a Iustin Pop
        if instance_info.payload:
6144 7ad1af4a Iustin Pop
          current_mem = int(instance_info.payload['memory'])
6145 cfefe007 Guido Trotter
        else:
6146 cfefe007 Guido Trotter
          # Assume instance not running
6147 cfefe007 Guido Trotter
          # (there is a slight race condition here, but it's not very probable,
6148 cfefe007 Guido Trotter
          # and we have no other way to check)
6149 cfefe007 Guido Trotter
          current_mem = 0
6150 338e51e8 Iustin Pop
        miss_mem = (be_new[constants.BE_MEMORY] - current_mem -
6151 070e998b Iustin Pop
                    pninfo.payload['memory_free'])
6152 cfefe007 Guido Trotter
        if miss_mem > 0:
6153 cfefe007 Guido Trotter
          raise errors.OpPrereqError("This change will prevent the instance"
6154 cfefe007 Guido Trotter
                                     " from starting, due to %d MB of memory"
6155 cfefe007 Guido Trotter
                                     " missing on its primary node" % miss_mem)
6156 cfefe007 Guido Trotter
6157 c0f2b229 Iustin Pop
      if be_new[constants.BE_AUTO_BALANCE]:
6158 070e998b Iustin Pop
        for node, nres in nodeinfo.items():
6159 ea33068f Iustin Pop
          if node not in instance.secondary_nodes:
6160 ea33068f Iustin Pop
            continue
6161 070e998b Iustin Pop
          msg = nres.RemoteFailMsg()
6162 070e998b Iustin Pop
          if msg:
6163 070e998b Iustin Pop
            self.warn.append("Can't get info from secondary node %s: %s" %
6164 070e998b Iustin Pop
                             (node, msg))
6165 070e998b Iustin Pop
          elif not isinstance(nres.payload.get('memory_free', None), int):
6166 070e998b Iustin Pop
            self.warn.append("Secondary node %s didn't return free"
6167 070e998b Iustin Pop
                             " memory information" % node)
6168 070e998b Iustin Pop
          elif be_new[constants.BE_MEMORY] > nres.payload['memory_free']:
6169 647a5d80 Iustin Pop
            self.warn.append("Not enough memory to failover instance to"
6170 647a5d80 Iustin Pop
                             " secondary node %s" % node)
6171 5bc84f33 Alexander Schreiber
6172 24991749 Iustin Pop
    # NIC processing
6173 cd098c41 Guido Trotter
    self.nic_pnew = {}
6174 cd098c41 Guido Trotter
    self.nic_pinst = {}
6175 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
6176 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
6177 24991749 Iustin Pop
        if not instance.nics:
6178 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance has no NICs, cannot remove")
6179 24991749 Iustin Pop
        continue
6180 24991749 Iustin Pop
      if nic_op != constants.DDM_ADD:
6181 24991749 Iustin Pop
        # an existing nic
6182 24991749 Iustin Pop
        if nic_op < 0 or nic_op >= len(instance.nics):
6183 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid NIC index %s, valid values"
6184 24991749 Iustin Pop
                                     " are 0 to %d" %
6185 24991749 Iustin Pop
                                     (nic_op, len(instance.nics)))
6186 cd098c41 Guido Trotter
        old_nic_params = instance.nics[nic_op].nicparams
6187 cd098c41 Guido Trotter
        old_nic_ip = instance.nics[nic_op].ip
6188 cd098c41 Guido Trotter
      else:
6189 cd098c41 Guido Trotter
        old_nic_params = {}
6190 cd098c41 Guido Trotter
        old_nic_ip = None
6191 cd098c41 Guido Trotter
6192 cd098c41 Guido Trotter
      update_params_dict = dict([(key, nic_dict[key])
6193 cd098c41 Guido Trotter
                                 for key in constants.NICS_PARAMETERS
6194 cd098c41 Guido Trotter
                                 if key in nic_dict])
6195 cd098c41 Guido Trotter
6196 5c44da6a Guido Trotter
      if 'bridge' in nic_dict:
6197 cd098c41 Guido Trotter
        update_params_dict[constants.NIC_LINK] = nic_dict['bridge']
6198 cd098c41 Guido Trotter
6199 cd098c41 Guido Trotter
      new_nic_params, new_filled_nic_params = \
6200 cd098c41 Guido Trotter
          self._GetUpdatedParams(old_nic_params, update_params_dict,
6201 cd098c41 Guido Trotter
                                 cluster.nicparams[constants.PP_DEFAULT],
6202 cd098c41 Guido Trotter
                                 constants.NICS_PARAMETER_TYPES)
6203 cd098c41 Guido Trotter
      objects.NIC.CheckParameterSyntax(new_filled_nic_params)
6204 cd098c41 Guido Trotter
      self.nic_pinst[nic_op] = new_nic_params
6205 cd098c41 Guido Trotter
      self.nic_pnew[nic_op] = new_filled_nic_params
6206 cd098c41 Guido Trotter
      new_nic_mode = new_filled_nic_params[constants.NIC_MODE]
6207 cd098c41 Guido Trotter
6208 cd098c41 Guido Trotter
      if new_nic_mode == constants.NIC_MODE_BRIDGED:
6209 cd098c41 Guido Trotter
        nic_bridge = new_filled_nic_params[constants.NIC_LINK]
6210 cd098c41 Guido Trotter
        result = self.rpc.call_bridges_exist(pnode, [nic_bridge])
6211 35c0c8da Iustin Pop
        msg = result.RemoteFailMsg()
6212 35c0c8da Iustin Pop
        if msg:
6213 35c0c8da Iustin Pop
          msg = "Error checking bridges on node %s: %s" % (pnode, msg)
6214 24991749 Iustin Pop
          if self.force:
6215 24991749 Iustin Pop
            self.warn.append(msg)
6216 24991749 Iustin Pop
          else:
6217 24991749 Iustin Pop
            raise errors.OpPrereqError(msg)
6218 cd098c41 Guido Trotter
      if new_nic_mode == constants.NIC_MODE_ROUTED:
6219 cd098c41 Guido Trotter
        if 'ip' in nic_dict:
6220 cd098c41 Guido Trotter
          nic_ip = nic_dict['ip']
6221 cd098c41 Guido Trotter
        else:
6222 cd098c41 Guido Trotter
          nic_ip = old_nic_ip
6223 cd098c41 Guido Trotter
        if nic_ip is None:
6224 cd098c41 Guido Trotter
          raise errors.OpPrereqError('Cannot set the nic ip to None'
6225 cd098c41 Guido Trotter
                                     ' on a routed nic')
6226 5c44da6a Guido Trotter
      if 'mac' in nic_dict:
6227 5c44da6a Guido Trotter
        nic_mac = nic_dict['mac']
6228 5c44da6a Guido Trotter
        if nic_mac is None:
6229 5c44da6a Guido Trotter
          raise errors.OpPrereqError('Cannot set the nic mac to None')
6230 5c44da6a Guido Trotter
        elif nic_mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
6231 5c44da6a Guido Trotter
          # otherwise generate the mac
6232 5c44da6a Guido Trotter
          nic_dict['mac'] = self.cfg.GenerateMAC()
6233 5c44da6a Guido Trotter
        else:
6234 5c44da6a Guido Trotter
          # or validate/reserve the current one
6235 5c44da6a Guido Trotter
          if self.cfg.IsMacInUse(nic_mac):
6236 5c44da6a Guido Trotter
            raise errors.OpPrereqError("MAC address %s already in use"
6237 5c44da6a Guido Trotter
                                       " in cluster" % nic_mac)
6238 24991749 Iustin Pop
6239 24991749 Iustin Pop
    # DISK processing
6240 24991749 Iustin Pop
    if self.op.disks and instance.disk_template == constants.DT_DISKLESS:
6241 24991749 Iustin Pop
      raise errors.OpPrereqError("Disk operations not supported for"
6242 24991749 Iustin Pop
                                 " diskless instances")
6243 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
6244 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
6245 24991749 Iustin Pop
        if len(instance.disks) == 1:
6246 24991749 Iustin Pop
          raise errors.OpPrereqError("Cannot remove the last disk of"
6247 24991749 Iustin Pop
                                     " an instance")
6248 24991749 Iustin Pop
        ins_l = self.rpc.call_instance_list([pnode], [instance.hypervisor])
6249 24991749 Iustin Pop
        ins_l = ins_l[pnode]
6250 aca13712 Iustin Pop
        msg = ins_l.RemoteFailMsg()
6251 aca13712 Iustin Pop
        if msg:
6252 aca13712 Iustin Pop
          raise errors.OpPrereqError("Can't contact node %s: %s" %
6253 aca13712 Iustin Pop
                                     (pnode, msg))
6254 aca13712 Iustin Pop
        if instance.name in ins_l.payload:
6255 24991749 Iustin Pop
          raise errors.OpPrereqError("Instance is running, can't remove"
6256 24991749 Iustin Pop
                                     " disks.")
6257 24991749 Iustin Pop
6258 24991749 Iustin Pop
      if (disk_op == constants.DDM_ADD and
6259 24991749 Iustin Pop
          len(instance.nics) >= constants.MAX_DISKS):
6260 24991749 Iustin Pop
        raise errors.OpPrereqError("Instance has too many disks (%d), cannot"
6261 24991749 Iustin Pop
                                   " add more" % constants.MAX_DISKS)
6262 24991749 Iustin Pop
      if disk_op not in (constants.DDM_ADD, constants.DDM_REMOVE):
6263 24991749 Iustin Pop
        # an existing disk
6264 24991749 Iustin Pop
        if disk_op < 0 or disk_op >= len(instance.disks):
6265 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index %s, valid values"
6266 24991749 Iustin Pop
                                     " are 0 to %d" %
6267 24991749 Iustin Pop
                                     (disk_op, len(instance.disks)))
6268 24991749 Iustin Pop
6269 a8083063 Iustin Pop
    return
6270 a8083063 Iustin Pop
6271 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6272 a8083063 Iustin Pop
    """Modifies an instance.
6273 a8083063 Iustin Pop

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

6276 a8083063 Iustin Pop
    """
6277 cfefe007 Guido Trotter
    # Process here the warnings from CheckPrereq, as we don't have a
6278 cfefe007 Guido Trotter
    # feedback_fn there.
6279 cfefe007 Guido Trotter
    for warn in self.warn:
6280 cfefe007 Guido Trotter
      feedback_fn("WARNING: %s" % warn)
6281 cfefe007 Guido Trotter
6282 a8083063 Iustin Pop
    result = []
6283 a8083063 Iustin Pop
    instance = self.instance
6284 cd098c41 Guido Trotter
    cluster = self.cluster
6285 24991749 Iustin Pop
    # disk changes
6286 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
6287 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
6288 24991749 Iustin Pop
        # remove the last disk
6289 24991749 Iustin Pop
        device = instance.disks.pop()
6290 24991749 Iustin Pop
        device_idx = len(instance.disks)
6291 24991749 Iustin Pop
        for node, disk in device.ComputeNodeTree(instance.primary_node):
6292 24991749 Iustin Pop
          self.cfg.SetDiskID(disk, node)
6293 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
6294 e1bc0878 Iustin Pop
          if msg:
6295 e1bc0878 Iustin Pop
            self.LogWarning("Could not remove disk/%d on node %s: %s,"
6296 e1bc0878 Iustin Pop
                            " continuing anyway", device_idx, node, msg)
6297 24991749 Iustin Pop
        result.append(("disk/%d" % device_idx, "remove"))
6298 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
6299 24991749 Iustin Pop
        # add a new disk
6300 24991749 Iustin Pop
        if instance.disk_template == constants.DT_FILE:
6301 24991749 Iustin Pop
          file_driver, file_path = instance.disks[0].logical_id
6302 24991749 Iustin Pop
          file_path = os.path.dirname(file_path)
6303 24991749 Iustin Pop
        else:
6304 24991749 Iustin Pop
          file_driver = file_path = None
6305 24991749 Iustin Pop
        disk_idx_base = len(instance.disks)
6306 24991749 Iustin Pop
        new_disk = _GenerateDiskTemplate(self,
6307 24991749 Iustin Pop
                                         instance.disk_template,
6308 32388e6d Iustin Pop
                                         instance.name, instance.primary_node,
6309 24991749 Iustin Pop
                                         instance.secondary_nodes,
6310 24991749 Iustin Pop
                                         [disk_dict],
6311 24991749 Iustin Pop
                                         file_path,
6312 24991749 Iustin Pop
                                         file_driver,
6313 24991749 Iustin Pop
                                         disk_idx_base)[0]
6314 24991749 Iustin Pop
        instance.disks.append(new_disk)
6315 24991749 Iustin Pop
        info = _GetInstanceInfoText(instance)
6316 24991749 Iustin Pop
6317 24991749 Iustin Pop
        logging.info("Creating volume %s for instance %s",
6318 24991749 Iustin Pop
                     new_disk.iv_name, instance.name)
6319 24991749 Iustin Pop
        # Note: this needs to be kept in sync with _CreateDisks
6320 24991749 Iustin Pop
        #HARDCODE
6321 428958aa Iustin Pop
        for node in instance.all_nodes:
6322 428958aa Iustin Pop
          f_create = node == instance.primary_node
6323 796cab27 Iustin Pop
          try:
6324 428958aa Iustin Pop
            _CreateBlockDev(self, node, instance, new_disk,
6325 428958aa Iustin Pop
                            f_create, info, f_create)
6326 1492cca7 Iustin Pop
          except errors.OpExecError, err:
6327 24991749 Iustin Pop
            self.LogWarning("Failed to create volume %s (%s) on"
6328 428958aa Iustin Pop
                            " node %s: %s",
6329 428958aa Iustin Pop
                            new_disk.iv_name, new_disk, node, err)
6330 24991749 Iustin Pop
        result.append(("disk/%d" % disk_idx_base, "add:size=%s,mode=%s" %
6331 24991749 Iustin Pop
                       (new_disk.size, new_disk.mode)))
6332 24991749 Iustin Pop
      else:
6333 24991749 Iustin Pop
        # change a given disk
6334 24991749 Iustin Pop
        instance.disks[disk_op].mode = disk_dict['mode']
6335 24991749 Iustin Pop
        result.append(("disk.mode/%d" % disk_op, disk_dict['mode']))
6336 24991749 Iustin Pop
    # NIC changes
6337 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
6338 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
6339 24991749 Iustin Pop
        # remove the last nic
6340 24991749 Iustin Pop
        del instance.nics[-1]
6341 24991749 Iustin Pop
        result.append(("nic.%d" % len(instance.nics), "remove"))
6342 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
6343 5c44da6a Guido Trotter
        # mac and bridge should be set, by now
6344 5c44da6a Guido Trotter
        mac = nic_dict['mac']
6345 cd098c41 Guido Trotter
        ip = nic_dict.get('ip', None)
6346 cd098c41 Guido Trotter
        nicparams = self.nic_pinst[constants.DDM_ADD]
6347 cd098c41 Guido Trotter
        new_nic = objects.NIC(mac=mac, ip=ip, nicparams=nicparams)
6348 24991749 Iustin Pop
        instance.nics.append(new_nic)
6349 24991749 Iustin Pop
        result.append(("nic.%d" % (len(instance.nics) - 1),
6350 cd098c41 Guido Trotter
                       "add:mac=%s,ip=%s,mode=%s,link=%s" %
6351 cd098c41 Guido Trotter
                       (new_nic.mac, new_nic.ip,
6352 cd098c41 Guido Trotter
                        self.nic_pnew[constants.DDM_ADD][constants.NIC_MODE],
6353 cd098c41 Guido Trotter
                        self.nic_pnew[constants.DDM_ADD][constants.NIC_LINK]
6354 cd098c41 Guido Trotter
                       )))
6355 24991749 Iustin Pop
      else:
6356 cd098c41 Guido Trotter
        for key in 'mac', 'ip':
6357 24991749 Iustin Pop
          if key in nic_dict:
6358 24991749 Iustin Pop
            setattr(instance.nics[nic_op], key, nic_dict[key])
6359 cd098c41 Guido Trotter
        if nic_op in self.nic_pnew:
6360 cd098c41 Guido Trotter
          instance.nics[nic_op].nicparams = self.nic_pnew[nic_op]
6361 cd098c41 Guido Trotter
        for key, val in nic_dict.iteritems():
6362 cd098c41 Guido Trotter
          result.append(("nic.%s/%d" % (key, nic_op), val))
6363 24991749 Iustin Pop
6364 24991749 Iustin Pop
    # hvparams changes
6365 74409b12 Iustin Pop
    if self.op.hvparams:
6366 12649e35 Guido Trotter
      instance.hvparams = self.hv_inst
6367 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
6368 74409b12 Iustin Pop
        result.append(("hv/%s" % key, val))
6369 24991749 Iustin Pop
6370 24991749 Iustin Pop
    # beparams changes
6371 338e51e8 Iustin Pop
    if self.op.beparams:
6372 338e51e8 Iustin Pop
      instance.beparams = self.be_inst
6373 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
6374 338e51e8 Iustin Pop
        result.append(("be/%s" % key, val))
6375 a8083063 Iustin Pop
6376 ea94e1cd Guido Trotter
    self.cfg.Update(instance)
6377 a8083063 Iustin Pop
6378 a8083063 Iustin Pop
    return result
6379 a8083063 Iustin Pop
6380 a8083063 Iustin Pop
6381 a8083063 Iustin Pop
class LUQueryExports(NoHooksLU):
6382 a8083063 Iustin Pop
  """Query the exports list
6383 a8083063 Iustin Pop

6384 a8083063 Iustin Pop
  """
6385 895ecd9c Guido Trotter
  _OP_REQP = ['nodes']
6386 21a15682 Guido Trotter
  REQ_BGL = False
6387 21a15682 Guido Trotter
6388 21a15682 Guido Trotter
  def ExpandNames(self):
6389 21a15682 Guido Trotter
    self.needed_locks = {}
6390 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
6391 21a15682 Guido Trotter
    if not self.op.nodes:
6392 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6393 21a15682 Guido Trotter
    else:
6394 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
6395 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
6396 a8083063 Iustin Pop
6397 a8083063 Iustin Pop
  def CheckPrereq(self):
6398 21a15682 Guido Trotter
    """Check prerequisites.
6399 a8083063 Iustin Pop

6400 a8083063 Iustin Pop
    """
6401 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
6402 a8083063 Iustin Pop
6403 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6404 a8083063 Iustin Pop
    """Compute the list of all the exported system images.
6405 a8083063 Iustin Pop

6406 e4376078 Iustin Pop
    @rtype: dict
6407 e4376078 Iustin Pop
    @return: a dictionary with the structure node->(export-list)
6408 e4376078 Iustin Pop
        where export-list is a list of the instances exported on
6409 e4376078 Iustin Pop
        that node.
6410 a8083063 Iustin Pop

6411 a8083063 Iustin Pop
    """
6412 b04285f2 Guido Trotter
    rpcresult = self.rpc.call_export_list(self.nodes)
6413 b04285f2 Guido Trotter
    result = {}
6414 b04285f2 Guido Trotter
    for node in rpcresult:
6415 1b7bfbb7 Iustin Pop
      if rpcresult[node].RemoteFailMsg():
6416 b04285f2 Guido Trotter
        result[node] = False
6417 b04285f2 Guido Trotter
      else:
6418 1b7bfbb7 Iustin Pop
        result[node] = rpcresult[node].payload
6419 b04285f2 Guido Trotter
6420 b04285f2 Guido Trotter
    return result
6421 a8083063 Iustin Pop
6422 a8083063 Iustin Pop
6423 a8083063 Iustin Pop
class LUExportInstance(LogicalUnit):
6424 a8083063 Iustin Pop
  """Export an instance to an image in the cluster.
6425 a8083063 Iustin Pop

6426 a8083063 Iustin Pop
  """
6427 a8083063 Iustin Pop
  HPATH = "instance-export"
6428 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
6429 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "target_node", "shutdown"]
6430 6657590e Guido Trotter
  REQ_BGL = False
6431 6657590e Guido Trotter
6432 6657590e Guido Trotter
  def ExpandNames(self):
6433 6657590e Guido Trotter
    self._ExpandAndLockInstance()
6434 6657590e Guido Trotter
    # FIXME: lock only instance primary and destination node
6435 6657590e Guido Trotter
    #
6436 6657590e Guido Trotter
    # Sad but true, for now we have do lock all nodes, as we don't know where
6437 6657590e Guido Trotter
    # the previous export might be, and and in this LU we search for it and
6438 6657590e Guido Trotter
    # remove it from its current node. In the future we could fix this by:
6439 6657590e Guido Trotter
    #  - making a tasklet to search (share-lock all), then create the new one,
6440 6657590e Guido Trotter
    #    then one to remove, after
6441 6657590e Guido Trotter
    #  - removing the removal operation altoghether
6442 6657590e Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6443 6657590e Guido Trotter
6444 6657590e Guido Trotter
  def DeclareLocks(self, level):
6445 6657590e Guido Trotter
    """Last minute lock declaration."""
6446 6657590e Guido Trotter
    # All nodes are locked anyway, so nothing to do here.
6447 a8083063 Iustin Pop
6448 a8083063 Iustin Pop
  def BuildHooksEnv(self):
6449 a8083063 Iustin Pop
    """Build hooks env.
6450 a8083063 Iustin Pop

6451 a8083063 Iustin Pop
    This will run on the master, primary node and target node.
6452 a8083063 Iustin Pop

6453 a8083063 Iustin Pop
    """
6454 a8083063 Iustin Pop
    env = {
6455 a8083063 Iustin Pop
      "EXPORT_NODE": self.op.target_node,
6456 a8083063 Iustin Pop
      "EXPORT_DO_SHUTDOWN": self.op.shutdown,
6457 a8083063 Iustin Pop
      }
6458 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
6459 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode(), self.instance.primary_node,
6460 a8083063 Iustin Pop
          self.op.target_node]
6461 a8083063 Iustin Pop
    return env, nl, nl
6462 a8083063 Iustin Pop
6463 a8083063 Iustin Pop
  def CheckPrereq(self):
6464 a8083063 Iustin Pop
    """Check prerequisites.
6465 a8083063 Iustin Pop

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

6468 a8083063 Iustin Pop
    """
6469 6657590e Guido Trotter
    instance_name = self.op.instance_name
6470 a8083063 Iustin Pop
    self.instance = self.cfg.GetInstanceInfo(instance_name)
6471 6657590e Guido Trotter
    assert self.instance is not None, \
6472 6657590e Guido Trotter
          "Cannot retrieve locked instance %s" % self.op.instance_name
6473 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
6474 a8083063 Iustin Pop
6475 6657590e Guido Trotter
    self.dst_node = self.cfg.GetNodeInfo(
6476 6657590e Guido Trotter
      self.cfg.ExpandNodeName(self.op.target_node))
6477 a8083063 Iustin Pop
6478 268b8e42 Iustin Pop
    if self.dst_node is None:
6479 268b8e42 Iustin Pop
      # This is wrong node name, not a non-locked node
6480 268b8e42 Iustin Pop
      raise errors.OpPrereqError("Wrong node name %s" % self.op.target_node)
6481 aeb83a2b Iustin Pop
    _CheckNodeOnline(self, self.dst_node.name)
6482 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, self.dst_node.name)
6483 a8083063 Iustin Pop
6484 b6023d6c Manuel Franceschini
    # instance disk type verification
6485 b6023d6c Manuel Franceschini
    for disk in self.instance.disks:
6486 b6023d6c Manuel Franceschini
      if disk.dev_type == constants.LD_FILE:
6487 b6023d6c Manuel Franceschini
        raise errors.OpPrereqError("Export not supported for instances with"
6488 b6023d6c Manuel Franceschini
                                   " file-based disks")
6489 b6023d6c Manuel Franceschini
6490 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6491 a8083063 Iustin Pop
    """Export an instance to an image in the cluster.
6492 a8083063 Iustin Pop

6493 a8083063 Iustin Pop
    """
6494 a8083063 Iustin Pop
    instance = self.instance
6495 a8083063 Iustin Pop
    dst_node = self.dst_node
6496 a8083063 Iustin Pop
    src_node = instance.primary_node
6497 a8083063 Iustin Pop
    if self.op.shutdown:
6498 fb300fb7 Guido Trotter
      # shutdown the instance, but not the disks
6499 781de953 Iustin Pop
      result = self.rpc.call_instance_shutdown(src_node, instance)
6500 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
6501 1fae010f Iustin Pop
      if msg:
6502 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
6503 1fae010f Iustin Pop
                                 " node %s: %s" %
6504 1fae010f Iustin Pop
                                 (instance.name, src_node, msg))
6505 a8083063 Iustin Pop
6506 a8083063 Iustin Pop
    vgname = self.cfg.GetVGName()
6507 a8083063 Iustin Pop
6508 a8083063 Iustin Pop
    snap_disks = []
6509 a8083063 Iustin Pop
6510 998c712c Iustin Pop
    # set the disks ID correctly since call_instance_start needs the
6511 998c712c Iustin Pop
    # correct drbd minor to create the symlinks
6512 998c712c Iustin Pop
    for disk in instance.disks:
6513 998c712c Iustin Pop
      self.cfg.SetDiskID(disk, src_node)
6514 998c712c Iustin Pop
6515 a8083063 Iustin Pop
    try:
6516 a8083063 Iustin Pop
      for disk in instance.disks:
6517 87812fd3 Iustin Pop
        # result.payload will be a snapshot of an lvm leaf of the one we passed
6518 87812fd3 Iustin Pop
        result = self.rpc.call_blockdev_snapshot(src_node, disk)
6519 87812fd3 Iustin Pop
        msg = result.RemoteFailMsg()
6520 87812fd3 Iustin Pop
        if msg:
6521 87812fd3 Iustin Pop
          self.LogWarning("Could not snapshot block device %s on node %s: %s",
6522 87812fd3 Iustin Pop
                          disk.logical_id[1], src_node, msg)
6523 19d7f90a Guido Trotter
          snap_disks.append(False)
6524 19d7f90a Guido Trotter
        else:
6525 87812fd3 Iustin Pop
          disk_id = (vgname, result.payload)
6526 19d7f90a Guido Trotter
          new_dev = objects.Disk(dev_type=constants.LD_LV, size=disk.size,
6527 87812fd3 Iustin Pop
                                 logical_id=disk_id, physical_id=disk_id,
6528 19d7f90a Guido Trotter
                                 iv_name=disk.iv_name)
6529 19d7f90a Guido Trotter
          snap_disks.append(new_dev)
6530 a8083063 Iustin Pop
6531 a8083063 Iustin Pop
    finally:
6532 0d68c45d Iustin Pop
      if self.op.shutdown and instance.admin_up:
6533 0eca8e0c Iustin Pop
        result = self.rpc.call_instance_start(src_node, instance, None, None)
6534 dd279568 Iustin Pop
        msg = result.RemoteFailMsg()
6535 dd279568 Iustin Pop
        if msg:
6536 b9bddb6b Iustin Pop
          _ShutdownInstanceDisks(self, instance)
6537 dd279568 Iustin Pop
          raise errors.OpExecError("Could not start instance: %s" % msg)
6538 a8083063 Iustin Pop
6539 a8083063 Iustin Pop
    # TODO: check for size
6540 a8083063 Iustin Pop
6541 62c9ec92 Iustin Pop
    cluster_name = self.cfg.GetClusterName()
6542 74c47259 Iustin Pop
    for idx, dev in enumerate(snap_disks):
6543 19d7f90a Guido Trotter
      if dev:
6544 781de953 Iustin Pop
        result = self.rpc.call_snapshot_export(src_node, dev, dst_node.name,
6545 781de953 Iustin Pop
                                               instance, cluster_name, idx)
6546 ba55d062 Iustin Pop
        msg = result.RemoteFailMsg()
6547 ba55d062 Iustin Pop
        if msg:
6548 19d7f90a Guido Trotter
          self.LogWarning("Could not export block device %s from node %s to"
6549 ba55d062 Iustin Pop
                          " node %s: %s", dev.logical_id[1], src_node,
6550 ba55d062 Iustin Pop
                          dst_node.name, msg)
6551 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(src_node, dev).RemoteFailMsg()
6552 e1bc0878 Iustin Pop
        if msg:
6553 19d7f90a Guido Trotter
          self.LogWarning("Could not remove snapshot block device %s from node"
6554 e1bc0878 Iustin Pop
                          " %s: %s", dev.logical_id[1], src_node, msg)
6555 a8083063 Iustin Pop
6556 781de953 Iustin Pop
    result = self.rpc.call_finalize_export(dst_node.name, instance, snap_disks)
6557 9b201a0d Iustin Pop
    msg = result.RemoteFailMsg()
6558 9b201a0d Iustin Pop
    if msg:
6559 9b201a0d Iustin Pop
      self.LogWarning("Could not finalize export for instance %s"
6560 9b201a0d Iustin Pop
                      " on node %s: %s", instance.name, dst_node.name, msg)
6561 a8083063 Iustin Pop
6562 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
6563 a8083063 Iustin Pop
    nodelist.remove(dst_node.name)
6564 a8083063 Iustin Pop
6565 a8083063 Iustin Pop
    # on one-node clusters nodelist will be empty after the removal
6566 a8083063 Iustin Pop
    # if we proceed the backup would be removed because OpQueryExports
6567 a8083063 Iustin Pop
    # substitutes an empty list with the full cluster node list.
6568 35fbcd11 Iustin Pop
    iname = instance.name
6569 a8083063 Iustin Pop
    if nodelist:
6570 72737a7f Iustin Pop
      exportlist = self.rpc.call_export_list(nodelist)
6571 a8083063 Iustin Pop
      for node in exportlist:
6572 1b7bfbb7 Iustin Pop
        if exportlist[node].RemoteFailMsg():
6573 781de953 Iustin Pop
          continue
6574 35fbcd11 Iustin Pop
        if iname in exportlist[node].payload:
6575 35fbcd11 Iustin Pop
          msg = self.rpc.call_export_remove(node, iname).RemoteFailMsg()
6576 35fbcd11 Iustin Pop
          if msg:
6577 19d7f90a Guido Trotter
            self.LogWarning("Could not remove older export for instance %s"
6578 35fbcd11 Iustin Pop
                            " on node %s: %s", iname, node, msg)
6579 5c947f38 Iustin Pop
6580 5c947f38 Iustin Pop
6581 9ac99fda Guido Trotter
class LURemoveExport(NoHooksLU):
6582 9ac99fda Guido Trotter
  """Remove exports related to the named instance.
6583 9ac99fda Guido Trotter

6584 9ac99fda Guido Trotter
  """
6585 9ac99fda Guido Trotter
  _OP_REQP = ["instance_name"]
6586 3656b3af Guido Trotter
  REQ_BGL = False
6587 3656b3af Guido Trotter
6588 3656b3af Guido Trotter
  def ExpandNames(self):
6589 3656b3af Guido Trotter
    self.needed_locks = {}
6590 3656b3af Guido Trotter
    # We need all nodes to be locked in order for RemoveExport to work, but we
6591 3656b3af Guido Trotter
    # don't need to lock the instance itself, as nothing will happen to it (and
6592 3656b3af Guido Trotter
    # we can remove exports also for a removed instance)
6593 3656b3af Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6594 9ac99fda Guido Trotter
6595 9ac99fda Guido Trotter
  def CheckPrereq(self):
6596 9ac99fda Guido Trotter
    """Check prerequisites.
6597 9ac99fda Guido Trotter
    """
6598 9ac99fda Guido Trotter
    pass
6599 9ac99fda Guido Trotter
6600 9ac99fda Guido Trotter
  def Exec(self, feedback_fn):
6601 9ac99fda Guido Trotter
    """Remove any export.
6602 9ac99fda Guido Trotter

6603 9ac99fda Guido Trotter
    """
6604 9ac99fda Guido Trotter
    instance_name = self.cfg.ExpandInstanceName(self.op.instance_name)
6605 9ac99fda Guido Trotter
    # If the instance was not found we'll try with the name that was passed in.
6606 9ac99fda Guido Trotter
    # This will only work if it was an FQDN, though.
6607 9ac99fda Guido Trotter
    fqdn_warn = False
6608 9ac99fda Guido Trotter
    if not instance_name:
6609 9ac99fda Guido Trotter
      fqdn_warn = True
6610 9ac99fda Guido Trotter
      instance_name = self.op.instance_name
6611 9ac99fda Guido Trotter
6612 1b7bfbb7 Iustin Pop
    locked_nodes = self.acquired_locks[locking.LEVEL_NODE]
6613 1b7bfbb7 Iustin Pop
    exportlist = self.rpc.call_export_list(locked_nodes)
6614 9ac99fda Guido Trotter
    found = False
6615 9ac99fda Guido Trotter
    for node in exportlist:
6616 1b7bfbb7 Iustin Pop
      msg = exportlist[node].RemoteFailMsg()
6617 1b7bfbb7 Iustin Pop
      if msg:
6618 1b7bfbb7 Iustin Pop
        self.LogWarning("Failed to query node %s (continuing): %s", node, msg)
6619 781de953 Iustin Pop
        continue
6620 1b7bfbb7 Iustin Pop
      if instance_name in exportlist[node].payload:
6621 9ac99fda Guido Trotter
        found = True
6622 781de953 Iustin Pop
        result = self.rpc.call_export_remove(node, instance_name)
6623 35fbcd11 Iustin Pop
        msg = result.RemoteFailMsg()
6624 35fbcd11 Iustin Pop
        if msg:
6625 9a4f63d1 Iustin Pop
          logging.error("Could not remove export for instance %s"
6626 35fbcd11 Iustin Pop
                        " on node %s: %s", instance_name, node, msg)
6627 9ac99fda Guido Trotter
6628 9ac99fda Guido Trotter
    if fqdn_warn and not found:
6629 9ac99fda Guido Trotter
      feedback_fn("Export not found. If trying to remove an export belonging"
6630 9ac99fda Guido Trotter
                  " to a deleted instance please use its Fully Qualified"
6631 9ac99fda Guido Trotter
                  " Domain Name.")
6632 9ac99fda Guido Trotter
6633 9ac99fda Guido Trotter
6634 5c947f38 Iustin Pop
class TagsLU(NoHooksLU):
6635 5c947f38 Iustin Pop
  """Generic tags LU.
6636 5c947f38 Iustin Pop

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

6639 5c947f38 Iustin Pop
  """
6640 5c947f38 Iustin Pop
6641 8646adce Guido Trotter
  def ExpandNames(self):
6642 8646adce Guido Trotter
    self.needed_locks = {}
6643 8646adce Guido Trotter
    if self.op.kind == constants.TAG_NODE:
6644 5c947f38 Iustin Pop
      name = self.cfg.ExpandNodeName(self.op.name)
6645 5c947f38 Iustin Pop
      if name is None:
6646 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid node name (%s)" %
6647 3ecf6786 Iustin Pop
                                   (self.op.name,))
6648 5c947f38 Iustin Pop
      self.op.name = name
6649 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = name
6650 5c947f38 Iustin Pop
    elif self.op.kind == constants.TAG_INSTANCE:
6651 8f684e16 Iustin Pop
      name = self.cfg.ExpandInstanceName(self.op.name)
6652 5c947f38 Iustin Pop
      if name is None:
6653 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid instance name (%s)" %
6654 3ecf6786 Iustin Pop
                                   (self.op.name,))
6655 5c947f38 Iustin Pop
      self.op.name = name
6656 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = name
6657 8646adce Guido Trotter
6658 8646adce Guido Trotter
  def CheckPrereq(self):
6659 8646adce Guido Trotter
    """Check prerequisites.
6660 8646adce Guido Trotter

6661 8646adce Guido Trotter
    """
6662 8646adce Guido Trotter
    if self.op.kind == constants.TAG_CLUSTER:
6663 8646adce Guido Trotter
      self.target = self.cfg.GetClusterInfo()
6664 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_NODE:
6665 8646adce Guido Trotter
      self.target = self.cfg.GetNodeInfo(self.op.name)
6666 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_INSTANCE:
6667 8646adce Guido Trotter
      self.target = self.cfg.GetInstanceInfo(self.op.name)
6668 5c947f38 Iustin Pop
    else:
6669 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Wrong tag type requested (%s)" %
6670 3ecf6786 Iustin Pop
                                 str(self.op.kind))
6671 5c947f38 Iustin Pop
6672 5c947f38 Iustin Pop
6673 5c947f38 Iustin Pop
class LUGetTags(TagsLU):
6674 5c947f38 Iustin Pop
  """Returns the tags of a given object.
6675 5c947f38 Iustin Pop

6676 5c947f38 Iustin Pop
  """
6677 5c947f38 Iustin Pop
  _OP_REQP = ["kind", "name"]
6678 8646adce Guido Trotter
  REQ_BGL = False
6679 5c947f38 Iustin Pop
6680 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6681 5c947f38 Iustin Pop
    """Returns the tag list.
6682 5c947f38 Iustin Pop

6683 5c947f38 Iustin Pop
    """
6684 5d414478 Oleksiy Mishchenko
    return list(self.target.GetTags())
6685 5c947f38 Iustin Pop
6686 5c947f38 Iustin Pop
6687 73415719 Iustin Pop
class LUSearchTags(NoHooksLU):
6688 73415719 Iustin Pop
  """Searches the tags for a given pattern.
6689 73415719 Iustin Pop

6690 73415719 Iustin Pop
  """
6691 73415719 Iustin Pop
  _OP_REQP = ["pattern"]
6692 8646adce Guido Trotter
  REQ_BGL = False
6693 8646adce Guido Trotter
6694 8646adce Guido Trotter
  def ExpandNames(self):
6695 8646adce Guido Trotter
    self.needed_locks = {}
6696 73415719 Iustin Pop
6697 73415719 Iustin Pop
  def CheckPrereq(self):
6698 73415719 Iustin Pop
    """Check prerequisites.
6699 73415719 Iustin Pop

6700 73415719 Iustin Pop
    This checks the pattern passed for validity by compiling it.
6701 73415719 Iustin Pop

6702 73415719 Iustin Pop
    """
6703 73415719 Iustin Pop
    try:
6704 73415719 Iustin Pop
      self.re = re.compile(self.op.pattern)
6705 73415719 Iustin Pop
    except re.error, err:
6706 73415719 Iustin Pop
      raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
6707 73415719 Iustin Pop
                                 (self.op.pattern, err))
6708 73415719 Iustin Pop
6709 73415719 Iustin Pop
  def Exec(self, feedback_fn):
6710 73415719 Iustin Pop
    """Returns the tag list.
6711 73415719 Iustin Pop

6712 73415719 Iustin Pop
    """
6713 73415719 Iustin Pop
    cfg = self.cfg
6714 73415719 Iustin Pop
    tgts = [("/cluster", cfg.GetClusterInfo())]
6715 8646adce Guido Trotter
    ilist = cfg.GetAllInstancesInfo().values()
6716 73415719 Iustin Pop
    tgts.extend([("/instances/%s" % i.name, i) for i in ilist])
6717 8646adce Guido Trotter
    nlist = cfg.GetAllNodesInfo().values()
6718 73415719 Iustin Pop
    tgts.extend([("/nodes/%s" % n.name, n) for n in nlist])
6719 73415719 Iustin Pop
    results = []
6720 73415719 Iustin Pop
    for path, target in tgts:
6721 73415719 Iustin Pop
      for tag in target.GetTags():
6722 73415719 Iustin Pop
        if self.re.search(tag):
6723 73415719 Iustin Pop
          results.append((path, tag))
6724 73415719 Iustin Pop
    return results
6725 73415719 Iustin Pop
6726 73415719 Iustin Pop
6727 f27302fa Iustin Pop
class LUAddTags(TagsLU):
6728 5c947f38 Iustin Pop
  """Sets a tag on a given object.
6729 5c947f38 Iustin Pop

6730 5c947f38 Iustin Pop
  """
6731 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6732 8646adce Guido Trotter
  REQ_BGL = False
6733 5c947f38 Iustin Pop
6734 5c947f38 Iustin Pop
  def CheckPrereq(self):
6735 5c947f38 Iustin Pop
    """Check prerequisites.
6736 5c947f38 Iustin Pop

6737 5c947f38 Iustin Pop
    This checks the type and length of the tag name and value.
6738 5c947f38 Iustin Pop

6739 5c947f38 Iustin Pop
    """
6740 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6741 f27302fa Iustin Pop
    for tag in self.op.tags:
6742 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6743 5c947f38 Iustin Pop
6744 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6745 5c947f38 Iustin Pop
    """Sets the tag.
6746 5c947f38 Iustin Pop

6747 5c947f38 Iustin Pop
    """
6748 5c947f38 Iustin Pop
    try:
6749 f27302fa Iustin Pop
      for tag in self.op.tags:
6750 f27302fa Iustin Pop
        self.target.AddTag(tag)
6751 5c947f38 Iustin Pop
    except errors.TagError, err:
6752 3ecf6786 Iustin Pop
      raise errors.OpExecError("Error while setting tag: %s" % str(err))
6753 5c947f38 Iustin Pop
    try:
6754 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6755 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6756 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6757 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6758 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6759 5c947f38 Iustin Pop
6760 5c947f38 Iustin Pop
6761 f27302fa Iustin Pop
class LUDelTags(TagsLU):
6762 f27302fa Iustin Pop
  """Delete a list of tags from a given object.
6763 5c947f38 Iustin Pop

6764 5c947f38 Iustin Pop
  """
6765 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6766 8646adce Guido Trotter
  REQ_BGL = False
6767 5c947f38 Iustin Pop
6768 5c947f38 Iustin Pop
  def CheckPrereq(self):
6769 5c947f38 Iustin Pop
    """Check prerequisites.
6770 5c947f38 Iustin Pop

6771 5c947f38 Iustin Pop
    This checks that we have the given tag.
6772 5c947f38 Iustin Pop

6773 5c947f38 Iustin Pop
    """
6774 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6775 f27302fa Iustin Pop
    for tag in self.op.tags:
6776 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6777 f27302fa Iustin Pop
    del_tags = frozenset(self.op.tags)
6778 f27302fa Iustin Pop
    cur_tags = self.target.GetTags()
6779 f27302fa Iustin Pop
    if not del_tags <= cur_tags:
6780 f27302fa Iustin Pop
      diff_tags = del_tags - cur_tags
6781 f27302fa Iustin Pop
      diff_names = ["'%s'" % tag for tag in diff_tags]
6782 f27302fa Iustin Pop
      diff_names.sort()
6783 f27302fa Iustin Pop
      raise errors.OpPrereqError("Tag(s) %s not found" %
6784 f27302fa Iustin Pop
                                 (",".join(diff_names)))
6785 5c947f38 Iustin Pop
6786 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6787 5c947f38 Iustin Pop
    """Remove the tag from the object.
6788 5c947f38 Iustin Pop

6789 5c947f38 Iustin Pop
    """
6790 f27302fa Iustin Pop
    for tag in self.op.tags:
6791 f27302fa Iustin Pop
      self.target.RemoveTag(tag)
6792 5c947f38 Iustin Pop
    try:
6793 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6794 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6795 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6796 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6797 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6798 06009e27 Iustin Pop
6799 0eed6e61 Guido Trotter
6800 06009e27 Iustin Pop
class LUTestDelay(NoHooksLU):
6801 06009e27 Iustin Pop
  """Sleep for a specified amount of time.
6802 06009e27 Iustin Pop

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

6806 06009e27 Iustin Pop
  """
6807 06009e27 Iustin Pop
  _OP_REQP = ["duration", "on_master", "on_nodes"]
6808 fbe9022f Guido Trotter
  REQ_BGL = False
6809 06009e27 Iustin Pop
6810 fbe9022f Guido Trotter
  def ExpandNames(self):
6811 fbe9022f Guido Trotter
    """Expand names and set required locks.
6812 06009e27 Iustin Pop

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

6815 06009e27 Iustin Pop
    """
6816 fbe9022f Guido Trotter
    self.needed_locks = {}
6817 06009e27 Iustin Pop
    if self.op.on_nodes:
6818 fbe9022f Guido Trotter
      # _GetWantedNodes can be used here, but is not always appropriate to use
6819 fbe9022f Guido Trotter
      # this way in ExpandNames. Check LogicalUnit.ExpandNames docstring for
6820 fbe9022f Guido Trotter
      # more information.
6821 06009e27 Iustin Pop
      self.op.on_nodes = _GetWantedNodes(self, self.op.on_nodes)
6822 fbe9022f Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = self.op.on_nodes
6823 fbe9022f Guido Trotter
6824 fbe9022f Guido Trotter
  def CheckPrereq(self):
6825 fbe9022f Guido Trotter
    """Check prerequisites.
6826 fbe9022f Guido Trotter

6827 fbe9022f Guido Trotter
    """
6828 06009e27 Iustin Pop
6829 06009e27 Iustin Pop
  def Exec(self, feedback_fn):
6830 06009e27 Iustin Pop
    """Do the actual sleep.
6831 06009e27 Iustin Pop

6832 06009e27 Iustin Pop
    """
6833 06009e27 Iustin Pop
    if self.op.on_master:
6834 06009e27 Iustin Pop
      if not utils.TestDelay(self.op.duration):
6835 06009e27 Iustin Pop
        raise errors.OpExecError("Error during master delay test")
6836 06009e27 Iustin Pop
    if self.op.on_nodes:
6837 72737a7f Iustin Pop
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
6838 06009e27 Iustin Pop
      if not result:
6839 06009e27 Iustin Pop
        raise errors.OpExecError("Complete failure from rpc call")
6840 06009e27 Iustin Pop
      for node, node_result in result.items():
6841 781de953 Iustin Pop
        node_result.Raise()
6842 781de953 Iustin Pop
        if not node_result.data:
6843 06009e27 Iustin Pop
          raise errors.OpExecError("Failure during rpc call to node %s,"
6844 781de953 Iustin Pop
                                   " result: %s" % (node, node_result.data))
6845 d61df03e Iustin Pop
6846 d61df03e Iustin Pop
6847 d1c2dd75 Iustin Pop
class IAllocator(object):
6848 d1c2dd75 Iustin Pop
  """IAllocator framework.
6849 d61df03e Iustin Pop

6850 d1c2dd75 Iustin Pop
  An IAllocator instance has three sets of attributes:
6851 d6a02168 Michael Hanselmann
    - cfg that is needed to query the cluster
6852 d1c2dd75 Iustin Pop
    - input data (all members of the _KEYS class attribute are required)
6853 d1c2dd75 Iustin Pop
    - four buffer attributes (in|out_data|text), that represent the
6854 d1c2dd75 Iustin Pop
      input (to the external script) in text and data structure format,
6855 d1c2dd75 Iustin Pop
      and the output from it, again in two formats
6856 d1c2dd75 Iustin Pop
    - the result variables from the script (success, info, nodes) for
6857 d1c2dd75 Iustin Pop
      easy usage
6858 d61df03e Iustin Pop

6859 d61df03e Iustin Pop
  """
6860 29859cb7 Iustin Pop
  _ALLO_KEYS = [
6861 d1c2dd75 Iustin Pop
    "mem_size", "disks", "disk_template",
6862 8cc7e742 Guido Trotter
    "os", "tags", "nics", "vcpus", "hypervisor",
6863 d1c2dd75 Iustin Pop
    ]
6864 29859cb7 Iustin Pop
  _RELO_KEYS = [
6865 29859cb7 Iustin Pop
    "relocate_from",
6866 29859cb7 Iustin Pop
    ]
6867 d1c2dd75 Iustin Pop
6868 72737a7f Iustin Pop
  def __init__(self, lu, mode, name, **kwargs):
6869 72737a7f Iustin Pop
    self.lu = lu
6870 d1c2dd75 Iustin Pop
    # init buffer variables
6871 d1c2dd75 Iustin Pop
    self.in_text = self.out_text = self.in_data = self.out_data = None
6872 d1c2dd75 Iustin Pop
    # init all input fields so that pylint is happy
6873 29859cb7 Iustin Pop
    self.mode = mode
6874 29859cb7 Iustin Pop
    self.name = name
6875 d1c2dd75 Iustin Pop
    self.mem_size = self.disks = self.disk_template = None
6876 d1c2dd75 Iustin Pop
    self.os = self.tags = self.nics = self.vcpus = None
6877 a0add446 Iustin Pop
    self.hypervisor = None
6878 29859cb7 Iustin Pop
    self.relocate_from = None
6879 27579978 Iustin Pop
    # computed fields
6880 27579978 Iustin Pop
    self.required_nodes = None
6881 d1c2dd75 Iustin Pop
    # init result fields
6882 d1c2dd75 Iustin Pop
    self.success = self.info = self.nodes = None
6883 29859cb7 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6884 29859cb7 Iustin Pop
      keyset = self._ALLO_KEYS
6885 29859cb7 Iustin Pop
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6886 29859cb7 Iustin Pop
      keyset = self._RELO_KEYS
6887 29859cb7 Iustin Pop
    else:
6888 29859cb7 Iustin Pop
      raise errors.ProgrammerError("Unknown mode '%s' passed to the"
6889 29859cb7 Iustin Pop
                                   " IAllocator" % self.mode)
6890 d1c2dd75 Iustin Pop
    for key in kwargs:
6891 29859cb7 Iustin Pop
      if key not in keyset:
6892 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Invalid input parameter '%s' to"
6893 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6894 d1c2dd75 Iustin Pop
      setattr(self, key, kwargs[key])
6895 29859cb7 Iustin Pop
    for key in keyset:
6896 d1c2dd75 Iustin Pop
      if key not in kwargs:
6897 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Missing input parameter '%s' to"
6898 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6899 d1c2dd75 Iustin Pop
    self._BuildInputData()
6900 d1c2dd75 Iustin Pop
6901 d1c2dd75 Iustin Pop
  def _ComputeClusterData(self):
6902 d1c2dd75 Iustin Pop
    """Compute the generic allocator input data.
6903 d1c2dd75 Iustin Pop

6904 d1c2dd75 Iustin Pop
    This is the data that is independent of the actual operation.
6905 d1c2dd75 Iustin Pop

6906 d1c2dd75 Iustin Pop
    """
6907 72737a7f Iustin Pop
    cfg = self.lu.cfg
6908 e69d05fd Iustin Pop
    cluster_info = cfg.GetClusterInfo()
6909 d1c2dd75 Iustin Pop
    # cluster data
6910 d1c2dd75 Iustin Pop
    data = {
6911 77031881 Iustin Pop
      "version": constants.IALLOCATOR_VERSION,
6912 72737a7f Iustin Pop
      "cluster_name": cfg.GetClusterName(),
6913 e69d05fd Iustin Pop
      "cluster_tags": list(cluster_info.GetTags()),
6914 1325da74 Iustin Pop
      "enabled_hypervisors": list(cluster_info.enabled_hypervisors),
6915 d1c2dd75 Iustin Pop
      # we don't have job IDs
6916 d61df03e Iustin Pop
      }
6917 b57e9819 Guido Trotter
    iinfo = cfg.GetAllInstancesInfo().values()
6918 b57e9819 Guido Trotter
    i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
6919 6286519f Iustin Pop
6920 d1c2dd75 Iustin Pop
    # node data
6921 d1c2dd75 Iustin Pop
    node_results = {}
6922 d1c2dd75 Iustin Pop
    node_list = cfg.GetNodeList()
6923 8cc7e742 Guido Trotter
6924 8cc7e742 Guido Trotter
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6925 a0add446 Iustin Pop
      hypervisor_name = self.hypervisor
6926 8cc7e742 Guido Trotter
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6927 a0add446 Iustin Pop
      hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
6928 8cc7e742 Guido Trotter
6929 72737a7f Iustin Pop
    node_data = self.lu.rpc.call_node_info(node_list, cfg.GetVGName(),
6930 a0add446 Iustin Pop
                                           hypervisor_name)
6931 18640d69 Guido Trotter
    node_iinfo = self.lu.rpc.call_all_instances_info(node_list,
6932 18640d69 Guido Trotter
                       cluster_info.enabled_hypervisors)
6933 1325da74 Iustin Pop
    for nname, nresult in node_data.items():
6934 1325da74 Iustin Pop
      # first fill in static (config-based) values
6935 d1c2dd75 Iustin Pop
      ninfo = cfg.GetNodeInfo(nname)
6936 d1c2dd75 Iustin Pop
      pnr = {
6937 d1c2dd75 Iustin Pop
        "tags": list(ninfo.GetTags()),
6938 d1c2dd75 Iustin Pop
        "primary_ip": ninfo.primary_ip,
6939 d1c2dd75 Iustin Pop
        "secondary_ip": ninfo.secondary_ip,
6940 fc0fe88c Iustin Pop
        "offline": ninfo.offline,
6941 0b2454b9 Iustin Pop
        "drained": ninfo.drained,
6942 1325da74 Iustin Pop
        "master_candidate": ninfo.master_candidate,
6943 d1c2dd75 Iustin Pop
        }
6944 1325da74 Iustin Pop
6945 1325da74 Iustin Pop
      if not ninfo.offline:
6946 070e998b Iustin Pop
        msg = nresult.RemoteFailMsg()
6947 070e998b Iustin Pop
        if msg:
6948 070e998b Iustin Pop
          raise errors.OpExecError("Can't get data for node %s: %s" %
6949 070e998b Iustin Pop
                                   (nname, msg))
6950 2fa74ef4 Iustin Pop
        msg = node_iinfo[nname].RemoteFailMsg()
6951 2fa74ef4 Iustin Pop
        if msg:
6952 2fa74ef4 Iustin Pop
          raise errors.OpExecError("Can't get node instance info"
6953 2fa74ef4 Iustin Pop
                                   " from node %s: %s" % (nname, msg))
6954 070e998b Iustin Pop
        remote_info = nresult.payload
6955 1325da74 Iustin Pop
        for attr in ['memory_total', 'memory_free', 'memory_dom0',
6956 1325da74 Iustin Pop
                     'vg_size', 'vg_free', 'cpu_total']:
6957 1325da74 Iustin Pop
          if attr not in remote_info:
6958 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' didn't return attribute"
6959 1325da74 Iustin Pop
                                     " '%s'" % (nname, attr))
6960 070e998b Iustin Pop
          if not isinstance(remote_info[attr], int):
6961 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' returned invalid value"
6962 070e998b Iustin Pop
                                     " for '%s': %s" %
6963 070e998b Iustin Pop
                                     (nname, attr, remote_info[attr]))
6964 1325da74 Iustin Pop
        # compute memory used by primary instances
6965 1325da74 Iustin Pop
        i_p_mem = i_p_up_mem = 0
6966 1325da74 Iustin Pop
        for iinfo, beinfo in i_list:
6967 1325da74 Iustin Pop
          if iinfo.primary_node == nname:
6968 1325da74 Iustin Pop
            i_p_mem += beinfo[constants.BE_MEMORY]
6969 2fa74ef4 Iustin Pop
            if iinfo.name not in node_iinfo[nname].payload:
6970 1325da74 Iustin Pop
              i_used_mem = 0
6971 1325da74 Iustin Pop
            else:
6972 2fa74ef4 Iustin Pop
              i_used_mem = int(node_iinfo[nname].payload[iinfo.name]['memory'])
6973 1325da74 Iustin Pop
            i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
6974 1325da74 Iustin Pop
            remote_info['memory_free'] -= max(0, i_mem_diff)
6975 1325da74 Iustin Pop
6976 1325da74 Iustin Pop
            if iinfo.admin_up:
6977 1325da74 Iustin Pop
              i_p_up_mem += beinfo[constants.BE_MEMORY]
6978 1325da74 Iustin Pop
6979 1325da74 Iustin Pop
        # compute memory used by instances
6980 1325da74 Iustin Pop
        pnr_dyn = {
6981 1325da74 Iustin Pop
          "total_memory": remote_info['memory_total'],
6982 1325da74 Iustin Pop
          "reserved_memory": remote_info['memory_dom0'],
6983 1325da74 Iustin Pop
          "free_memory": remote_info['memory_free'],
6984 1325da74 Iustin Pop
          "total_disk": remote_info['vg_size'],
6985 1325da74 Iustin Pop
          "free_disk": remote_info['vg_free'],
6986 1325da74 Iustin Pop
          "total_cpus": remote_info['cpu_total'],
6987 1325da74 Iustin Pop
          "i_pri_memory": i_p_mem,
6988 1325da74 Iustin Pop
          "i_pri_up_memory": i_p_up_mem,
6989 1325da74 Iustin Pop
          }
6990 1325da74 Iustin Pop
        pnr.update(pnr_dyn)
6991 1325da74 Iustin Pop
6992 d1c2dd75 Iustin Pop
      node_results[nname] = pnr
6993 d1c2dd75 Iustin Pop
    data["nodes"] = node_results
6994 d1c2dd75 Iustin Pop
6995 d1c2dd75 Iustin Pop
    # instance data
6996 d1c2dd75 Iustin Pop
    instance_data = {}
6997 338e51e8 Iustin Pop
    for iinfo, beinfo in i_list:
6998 a9fe7e8f Guido Trotter
      nic_data = []
6999 a9fe7e8f Guido Trotter
      for nic in iinfo.nics:
7000 a9fe7e8f Guido Trotter
        filled_params = objects.FillDict(
7001 a9fe7e8f Guido Trotter
            cluster_info.nicparams[constants.PP_DEFAULT],
7002 a9fe7e8f Guido Trotter
            nic.nicparams)
7003 a9fe7e8f Guido Trotter
        nic_dict = {"mac": nic.mac,
7004 a9fe7e8f Guido Trotter
                    "ip": nic.ip,
7005 a9fe7e8f Guido Trotter
                    "mode": filled_params[constants.NIC_MODE],
7006 a9fe7e8f Guido Trotter
                    "link": filled_params[constants.NIC_LINK],
7007 a9fe7e8f Guido Trotter
                   }
7008 a9fe7e8f Guido Trotter
        if filled_params[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
7009 a9fe7e8f Guido Trotter
          nic_dict["bridge"] = filled_params[constants.NIC_LINK]
7010 a9fe7e8f Guido Trotter
        nic_data.append(nic_dict)
7011 d1c2dd75 Iustin Pop
      pir = {
7012 d1c2dd75 Iustin Pop
        "tags": list(iinfo.GetTags()),
7013 1325da74 Iustin Pop
        "admin_up": iinfo.admin_up,
7014 338e51e8 Iustin Pop
        "vcpus": beinfo[constants.BE_VCPUS],
7015 338e51e8 Iustin Pop
        "memory": beinfo[constants.BE_MEMORY],
7016 d1c2dd75 Iustin Pop
        "os": iinfo.os,
7017 1325da74 Iustin Pop
        "nodes": [iinfo.primary_node] + list(iinfo.secondary_nodes),
7018 d1c2dd75 Iustin Pop
        "nics": nic_data,
7019 1325da74 Iustin Pop
        "disks": [{"size": dsk.size, "mode": dsk.mode} for dsk in iinfo.disks],
7020 d1c2dd75 Iustin Pop
        "disk_template": iinfo.disk_template,
7021 e69d05fd Iustin Pop
        "hypervisor": iinfo.hypervisor,
7022 d1c2dd75 Iustin Pop
        }
7023 88ae4f85 Iustin Pop
      pir["disk_space_total"] = _ComputeDiskSize(iinfo.disk_template,
7024 88ae4f85 Iustin Pop
                                                 pir["disks"])
7025 768f0a80 Iustin Pop
      instance_data[iinfo.name] = pir
7026 d61df03e Iustin Pop
7027 d1c2dd75 Iustin Pop
    data["instances"] = instance_data
7028 d61df03e Iustin Pop
7029 d1c2dd75 Iustin Pop
    self.in_data = data
7030 d61df03e Iustin Pop
7031 d1c2dd75 Iustin Pop
  def _AddNewInstance(self):
7032 d1c2dd75 Iustin Pop
    """Add new instance data to allocator structure.
7033 d61df03e Iustin Pop

7034 d1c2dd75 Iustin Pop
    This in combination with _AllocatorGetClusterData will create the
7035 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
7036 d61df03e Iustin Pop

7037 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
7038 d1c2dd75 Iustin Pop
    done.
7039 d61df03e Iustin Pop

7040 d1c2dd75 Iustin Pop
    """
7041 d1c2dd75 Iustin Pop
    data = self.in_data
7042 d1c2dd75 Iustin Pop
7043 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(self.disk_template, self.disks)
7044 d1c2dd75 Iustin Pop
7045 27579978 Iustin Pop
    if self.disk_template in constants.DTS_NET_MIRROR:
7046 27579978 Iustin Pop
      self.required_nodes = 2
7047 27579978 Iustin Pop
    else:
7048 27579978 Iustin Pop
      self.required_nodes = 1
7049 d1c2dd75 Iustin Pop
    request = {
7050 d1c2dd75 Iustin Pop
      "type": "allocate",
7051 d1c2dd75 Iustin Pop
      "name": self.name,
7052 d1c2dd75 Iustin Pop
      "disk_template": self.disk_template,
7053 d1c2dd75 Iustin Pop
      "tags": self.tags,
7054 d1c2dd75 Iustin Pop
      "os": self.os,
7055 d1c2dd75 Iustin Pop
      "vcpus": self.vcpus,
7056 d1c2dd75 Iustin Pop
      "memory": self.mem_size,
7057 d1c2dd75 Iustin Pop
      "disks": self.disks,
7058 d1c2dd75 Iustin Pop
      "disk_space_total": disk_space,
7059 d1c2dd75 Iustin Pop
      "nics": self.nics,
7060 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
7061 d1c2dd75 Iustin Pop
      }
7062 d1c2dd75 Iustin Pop
    data["request"] = request
7063 298fe380 Iustin Pop
7064 d1c2dd75 Iustin Pop
  def _AddRelocateInstance(self):
7065 d1c2dd75 Iustin Pop
    """Add relocate instance data to allocator structure.
7066 298fe380 Iustin Pop

7067 d1c2dd75 Iustin Pop
    This in combination with _IAllocatorGetClusterData will create the
7068 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
7069 d61df03e Iustin Pop

7070 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
7071 d1c2dd75 Iustin Pop
    done.
7072 d61df03e Iustin Pop

7073 d1c2dd75 Iustin Pop
    """
7074 72737a7f Iustin Pop
    instance = self.lu.cfg.GetInstanceInfo(self.name)
7075 27579978 Iustin Pop
    if instance is None:
7076 27579978 Iustin Pop
      raise errors.ProgrammerError("Unknown instance '%s' passed to"
7077 27579978 Iustin Pop
                                   " IAllocator" % self.name)
7078 27579978 Iustin Pop
7079 27579978 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
7080 27579978 Iustin Pop
      raise errors.OpPrereqError("Can't relocate non-mirrored instances")
7081 27579978 Iustin Pop
7082 2a139bb0 Iustin Pop
    if len(instance.secondary_nodes) != 1:
7083 2a139bb0 Iustin Pop
      raise errors.OpPrereqError("Instance has not exactly one secondary node")
7084 2a139bb0 Iustin Pop
7085 27579978 Iustin Pop
    self.required_nodes = 1
7086 dafc7302 Guido Trotter
    disk_sizes = [{'size': disk.size} for disk in instance.disks]
7087 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(instance.disk_template, disk_sizes)
7088 27579978 Iustin Pop
7089 d1c2dd75 Iustin Pop
    request = {
7090 2a139bb0 Iustin Pop
      "type": "relocate",
7091 d1c2dd75 Iustin Pop
      "name": self.name,
7092 27579978 Iustin Pop
      "disk_space_total": disk_space,
7093 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
7094 29859cb7 Iustin Pop
      "relocate_from": self.relocate_from,
7095 d1c2dd75 Iustin Pop
      }
7096 27579978 Iustin Pop
    self.in_data["request"] = request
7097 d61df03e Iustin Pop
7098 d1c2dd75 Iustin Pop
  def _BuildInputData(self):
7099 d1c2dd75 Iustin Pop
    """Build input data structures.
7100 d61df03e Iustin Pop

7101 d1c2dd75 Iustin Pop
    """
7102 d1c2dd75 Iustin Pop
    self._ComputeClusterData()
7103 d61df03e Iustin Pop
7104 d1c2dd75 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
7105 d1c2dd75 Iustin Pop
      self._AddNewInstance()
7106 d1c2dd75 Iustin Pop
    else:
7107 d1c2dd75 Iustin Pop
      self._AddRelocateInstance()
7108 d61df03e Iustin Pop
7109 d1c2dd75 Iustin Pop
    self.in_text = serializer.Dump(self.in_data)
7110 d61df03e Iustin Pop
7111 72737a7f Iustin Pop
  def Run(self, name, validate=True, call_fn=None):
7112 d1c2dd75 Iustin Pop
    """Run an instance allocator and return the results.
7113 298fe380 Iustin Pop

7114 d1c2dd75 Iustin Pop
    """
7115 72737a7f Iustin Pop
    if call_fn is None:
7116 72737a7f Iustin Pop
      call_fn = self.lu.rpc.call_iallocator_runner
7117 d1c2dd75 Iustin Pop
    data = self.in_text
7118 298fe380 Iustin Pop
7119 72737a7f Iustin Pop
    result = call_fn(self.lu.cfg.GetMasterNode(), name, self.in_text)
7120 781de953 Iustin Pop
    result.Raise()
7121 298fe380 Iustin Pop
7122 781de953 Iustin Pop
    if not isinstance(result.data, (list, tuple)) or len(result.data) != 4:
7123 8d528b7c Iustin Pop
      raise errors.OpExecError("Invalid result from master iallocator runner")
7124 8d528b7c Iustin Pop
7125 781de953 Iustin Pop
    rcode, stdout, stderr, fail = result.data
7126 8d528b7c Iustin Pop
7127 8d528b7c Iustin Pop
    if rcode == constants.IARUN_NOTFOUND:
7128 8d528b7c Iustin Pop
      raise errors.OpExecError("Can't find allocator '%s'" % name)
7129 8d528b7c Iustin Pop
    elif rcode == constants.IARUN_FAILURE:
7130 38206f3c Iustin Pop
      raise errors.OpExecError("Instance allocator call failed: %s,"
7131 38206f3c Iustin Pop
                               " output: %s" % (fail, stdout+stderr))
7132 8d528b7c Iustin Pop
    self.out_text = stdout
7133 d1c2dd75 Iustin Pop
    if validate:
7134 d1c2dd75 Iustin Pop
      self._ValidateResult()
7135 298fe380 Iustin Pop
7136 d1c2dd75 Iustin Pop
  def _ValidateResult(self):
7137 d1c2dd75 Iustin Pop
    """Process the allocator results.
7138 538475ca Iustin Pop

7139 d1c2dd75 Iustin Pop
    This will process and if successful save the result in
7140 d1c2dd75 Iustin Pop
    self.out_data and the other parameters.
7141 538475ca Iustin Pop

7142 d1c2dd75 Iustin Pop
    """
7143 d1c2dd75 Iustin Pop
    try:
7144 d1c2dd75 Iustin Pop
      rdict = serializer.Load(self.out_text)
7145 d1c2dd75 Iustin Pop
    except Exception, err:
7146 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: %s" % str(err))
7147 d1c2dd75 Iustin Pop
7148 d1c2dd75 Iustin Pop
    if not isinstance(rdict, dict):
7149 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: not a dict")
7150 538475ca Iustin Pop
7151 d1c2dd75 Iustin Pop
    for key in "success", "info", "nodes":
7152 d1c2dd75 Iustin Pop
      if key not in rdict:
7153 d1c2dd75 Iustin Pop
        raise errors.OpExecError("Can't parse iallocator results:"
7154 d1c2dd75 Iustin Pop
                                 " missing key '%s'" % key)
7155 d1c2dd75 Iustin Pop
      setattr(self, key, rdict[key])
7156 538475ca Iustin Pop
7157 d1c2dd75 Iustin Pop
    if not isinstance(rdict["nodes"], list):
7158 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: 'nodes' key"
7159 d1c2dd75 Iustin Pop
                               " is not a list")
7160 d1c2dd75 Iustin Pop
    self.out_data = rdict
7161 538475ca Iustin Pop
7162 538475ca Iustin Pop
7163 d61df03e Iustin Pop
class LUTestAllocator(NoHooksLU):
7164 d61df03e Iustin Pop
  """Run allocator tests.
7165 d61df03e Iustin Pop

7166 d61df03e Iustin Pop
  This LU runs the allocator tests
7167 d61df03e Iustin Pop

7168 d61df03e Iustin Pop
  """
7169 d61df03e Iustin Pop
  _OP_REQP = ["direction", "mode", "name"]
7170 d61df03e Iustin Pop
7171 d61df03e Iustin Pop
  def CheckPrereq(self):
7172 d61df03e Iustin Pop
    """Check prerequisites.
7173 d61df03e Iustin Pop

7174 d61df03e Iustin Pop
    This checks the opcode parameters depending on the director and mode test.
7175 d61df03e Iustin Pop

7176 d61df03e Iustin Pop
    """
7177 298fe380 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
7178 d61df03e Iustin Pop
      for attr in ["name", "mem_size", "disks", "disk_template",
7179 d61df03e Iustin Pop
                   "os", "tags", "nics", "vcpus"]:
7180 d61df03e Iustin Pop
        if not hasattr(self.op, attr):
7181 d61df03e Iustin Pop
          raise errors.OpPrereqError("Missing attribute '%s' on opcode input" %
7182 d61df03e Iustin Pop
                                     attr)
7183 d61df03e Iustin Pop
      iname = self.cfg.ExpandInstanceName(self.op.name)
7184 d61df03e Iustin Pop
      if iname is not None:
7185 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' already in the cluster" %
7186 d61df03e Iustin Pop
                                   iname)
7187 d61df03e Iustin Pop
      if not isinstance(self.op.nics, list):
7188 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'nics'")
7189 d61df03e Iustin Pop
      for row in self.op.nics:
7190 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
7191 d61df03e Iustin Pop
            "mac" not in row or
7192 d61df03e Iustin Pop
            "ip" not in row or
7193 d61df03e Iustin Pop
            "bridge" not in row):
7194 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
7195 d61df03e Iustin Pop
                                     " 'nics' parameter")
7196 d61df03e Iustin Pop
      if not isinstance(self.op.disks, list):
7197 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'disks'")
7198 d61df03e Iustin Pop
      for row in self.op.disks:
7199 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
7200 d61df03e Iustin Pop
            "size" not in row or
7201 d61df03e Iustin Pop
            not isinstance(row["size"], int) or
7202 d61df03e Iustin Pop
            "mode" not in row or
7203 d61df03e Iustin Pop
            row["mode"] not in ['r', 'w']):
7204 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
7205 d61df03e Iustin Pop
                                     " 'disks' parameter")
7206 8901997e Iustin Pop
      if not hasattr(self.op, "hypervisor") or self.op.hypervisor is None:
7207 8cc7e742 Guido Trotter
        self.op.hypervisor = self.cfg.GetHypervisorType()
7208 298fe380 Iustin Pop
    elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
7209 d61df03e Iustin Pop
      if not hasattr(self.op, "name"):
7210 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing attribute 'name' on opcode input")
7211 d61df03e Iustin Pop
      fname = self.cfg.ExpandInstanceName(self.op.name)
7212 d61df03e Iustin Pop
      if fname is None:
7213 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' not found for relocation" %
7214 d61df03e Iustin Pop
                                   self.op.name)
7215 d61df03e Iustin Pop
      self.op.name = fname
7216 29859cb7 Iustin Pop
      self.relocate_from = self.cfg.GetInstanceInfo(fname).secondary_nodes
7217 d61df03e Iustin Pop
    else:
7218 d61df03e Iustin Pop
      raise errors.OpPrereqError("Invalid test allocator mode '%s'" %
7219 d61df03e Iustin Pop
                                 self.op.mode)
7220 d61df03e Iustin Pop
7221 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_OUT:
7222 298fe380 Iustin Pop
      if not hasattr(self.op, "allocator") or self.op.allocator is None:
7223 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing allocator name")
7224 298fe380 Iustin Pop
    elif self.op.direction != constants.IALLOCATOR_DIR_IN:
7225 d61df03e Iustin Pop
      raise errors.OpPrereqError("Wrong allocator test '%s'" %
7226 d61df03e Iustin Pop
                                 self.op.direction)
7227 d61df03e Iustin Pop
7228 d61df03e Iustin Pop
  def Exec(self, feedback_fn):
7229 d61df03e Iustin Pop
    """Run the allocator test.
7230 d61df03e Iustin Pop

7231 d61df03e Iustin Pop
    """
7232 29859cb7 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
7233 72737a7f Iustin Pop
      ial = IAllocator(self,
7234 29859cb7 Iustin Pop
                       mode=self.op.mode,
7235 29859cb7 Iustin Pop
                       name=self.op.name,
7236 29859cb7 Iustin Pop
                       mem_size=self.op.mem_size,
7237 29859cb7 Iustin Pop
                       disks=self.op.disks,
7238 29859cb7 Iustin Pop
                       disk_template=self.op.disk_template,
7239 29859cb7 Iustin Pop
                       os=self.op.os,
7240 29859cb7 Iustin Pop
                       tags=self.op.tags,
7241 29859cb7 Iustin Pop
                       nics=self.op.nics,
7242 29859cb7 Iustin Pop
                       vcpus=self.op.vcpus,
7243 8cc7e742 Guido Trotter
                       hypervisor=self.op.hypervisor,
7244 29859cb7 Iustin Pop
                       )
7245 29859cb7 Iustin Pop
    else:
7246 72737a7f Iustin Pop
      ial = IAllocator(self,
7247 29859cb7 Iustin Pop
                       mode=self.op.mode,
7248 29859cb7 Iustin Pop
                       name=self.op.name,
7249 29859cb7 Iustin Pop
                       relocate_from=list(self.relocate_from),
7250 29859cb7 Iustin Pop
                       )
7251 d61df03e Iustin Pop
7252 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_IN:
7253 d1c2dd75 Iustin Pop
      result = ial.in_text
7254 298fe380 Iustin Pop
    else:
7255 d1c2dd75 Iustin Pop
      ial.Run(self.op.allocator, validate=False)
7256 d1c2dd75 Iustin Pop
      result = ial.out_text
7257 298fe380 Iustin Pop
    return result