Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 93962b80

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

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

57 05f86716 Guido Trotter
  Note that all commands require root permissions.
58 a8083063 Iustin Pop

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

68 5bbd3f7f Michael Hanselmann
    This needs to be overridden in derived classes in order to check op
69 a8083063 Iustin Pop
    validity.
70 a8083063 Iustin Pop

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

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

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

115 4be4691d Iustin Pop
      - ExpandNames is left as as purely a lock-related function
116 5bbd3f7f Michael Hanselmann
      - CheckPrereq is run after we have acquired locks (and possible
117 4be4691d Iustin Pop
        waited for them)
118 4be4691d Iustin Pop

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

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

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

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

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

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

146 e4376078 Iustin Pop
    Examples::
147 e4376078 Iustin Pop

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

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

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

179 fb8dcb62 Guido Trotter
    This function is only called if you have something already set in
180 fb8dcb62 Guido Trotter
    self.needed_locks for the level.
181 fb8dcb62 Guido Trotter

182 fb8dcb62 Guido Trotter
    @param level: Locking level which is going to be locked
183 fb8dcb62 Guido Trotter
    @type level: member of ganeti.locking.LEVELS
184 fb8dcb62 Guido Trotter

185 fb8dcb62 Guido Trotter
    """
186 fb8dcb62 Guido Trotter
187 a8083063 Iustin Pop
  def CheckPrereq(self):
188 a8083063 Iustin Pop
    """Check prerequisites for this LU.
189 a8083063 Iustin Pop

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

195 a8083063 Iustin Pop
    The method should raise errors.OpPrereqError in case something is
196 a8083063 Iustin Pop
    not fulfilled. Its return value is ignored.
197 a8083063 Iustin Pop

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

201 a8083063 Iustin Pop
    """
202 a8083063 Iustin Pop
    raise NotImplementedError
203 a8083063 Iustin Pop
204 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
205 a8083063 Iustin Pop
    """Execute the LU.
206 a8083063 Iustin Pop

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

211 a8083063 Iustin Pop
    """
212 a8083063 Iustin Pop
    raise NotImplementedError
213 a8083063 Iustin Pop
214 a8083063 Iustin Pop
  def BuildHooksEnv(self):
215 a8083063 Iustin Pop
    """Build hooks environment for this LU.
216 a8083063 Iustin Pop

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

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

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

230 a8083063 Iustin Pop
    Note that if the HPATH for a LU class is None, this function will
231 a8083063 Iustin Pop
    not be called.
232 a8083063 Iustin Pop

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

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

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

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

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

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

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

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

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

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

295 e4376078 Iustin Pop
      if level == locking.LEVEL_NODE:
296 e4376078 Iustin Pop
        self._LockInstancesNodes()
297 c4a2fee1 Guido Trotter

298 a82ce292 Guido Trotter
    @type primary_only: boolean
299 a82ce292 Guido Trotter
    @param primary_only: only lock primary nodes of locked instances
300 a82ce292 Guido Trotter

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

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

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

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

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

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

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

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

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

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

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

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

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

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

447 733a2b6a Iustin Pop
  """
448 733a2b6a Iustin Pop
  if lu.cfg.GetNodeInfo(node).drained:
449 733a2b6a Iustin Pop
    raise errors.OpPrereqError("Can't use drained node %s" % node)
450 733a2b6a Iustin Pop
451 733a2b6a Iustin Pop
452 ecb215b5 Michael Hanselmann
def _BuildInstanceHookEnv(name, primary_node, secondary_nodes, os_type, status,
453 67fc3042 Iustin Pop
                          memory, vcpus, nics, disk_template, disks,
454 7c4d6c7b Michael Hanselmann
                          bep, hvp, hypervisor_name):
455 e4376078 Iustin Pop
  """Builds instance related env variables for hooks
456 e4376078 Iustin Pop

457 e4376078 Iustin Pop
  This builds the hook environment from individual variables.
458 e4376078 Iustin Pop

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

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

540 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
541 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
542 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
543 e4376078 Iustin Pop
  @param instance: the instance for which we should build the
544 e4376078 Iustin Pop
      environment
545 e4376078 Iustin Pop
  @type override: dict
546 e4376078 Iustin Pop
  @param override: dictionary with key/values that will override
547 e4376078 Iustin Pop
      our values
548 e4376078 Iustin Pop
  @rtype: dict
549 e4376078 Iustin Pop
  @return: the hook environment dictionary
550 e4376078 Iustin Pop

551 ecb215b5 Michael Hanselmann
  """
552 67fc3042 Iustin Pop
  cluster = lu.cfg.GetClusterInfo()
553 67fc3042 Iustin Pop
  bep = cluster.FillBE(instance)
554 67fc3042 Iustin Pop
  hvp = cluster.FillHV(instance)
555 396e1b78 Michael Hanselmann
  args = {
556 396e1b78 Michael Hanselmann
    'name': instance.name,
557 396e1b78 Michael Hanselmann
    'primary_node': instance.primary_node,
558 396e1b78 Michael Hanselmann
    'secondary_nodes': instance.secondary_nodes,
559 ecb215b5 Michael Hanselmann
    'os_type': instance.os,
560 0d68c45d Iustin Pop
    'status': instance.admin_up,
561 338e51e8 Iustin Pop
    'memory': bep[constants.BE_MEMORY],
562 338e51e8 Iustin Pop
    'vcpus': bep[constants.BE_VCPUS],
563 53e4e875 Guido Trotter
    'nics': [(nic.ip, nic.bridge, nic.mac) for nic in instance.nics],
564 2c2690c9 Iustin Pop
    'disk_template': instance.disk_template,
565 2c2690c9 Iustin Pop
    'disks': [(disk.size, disk.mode) for disk in instance.disks],
566 67fc3042 Iustin Pop
    'bep': bep,
567 67fc3042 Iustin Pop
    'hvp': hvp,
568 b0c63e2b Iustin Pop
    'hypervisor_name': instance.hypervisor,
569 396e1b78 Michael Hanselmann
  }
570 396e1b78 Michael Hanselmann
  if override:
571 396e1b78 Michael Hanselmann
    args.update(override)
572 396e1b78 Michael Hanselmann
  return _BuildInstanceHookEnv(**args)
573 396e1b78 Michael Hanselmann
574 396e1b78 Michael Hanselmann
575 ec0292f1 Iustin Pop
def _AdjustCandidatePool(lu):
576 ec0292f1 Iustin Pop
  """Adjust the candidate pool after node operations.
577 ec0292f1 Iustin Pop

578 ec0292f1 Iustin Pop
  """
579 ec0292f1 Iustin Pop
  mod_list = lu.cfg.MaintainCandidatePool()
580 ec0292f1 Iustin Pop
  if mod_list:
581 ec0292f1 Iustin Pop
    lu.LogInfo("Promoted nodes to master candidate role: %s",
582 ee513a66 Iustin Pop
               ", ".join(node.name for node in mod_list))
583 ec0292f1 Iustin Pop
    for name in mod_list:
584 ec0292f1 Iustin Pop
      lu.context.ReaddNode(name)
585 ec0292f1 Iustin Pop
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
586 ec0292f1 Iustin Pop
  if mc_now > mc_max:
587 ec0292f1 Iustin Pop
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
588 ec0292f1 Iustin Pop
               (mc_now, mc_max))
589 ec0292f1 Iustin Pop
590 ec0292f1 Iustin Pop
591 b9bddb6b Iustin Pop
def _CheckInstanceBridgesExist(lu, instance):
592 5bbd3f7f Michael Hanselmann
  """Check that the bridges needed by an instance exist.
593 bf6929a2 Alexander Schreiber

594 bf6929a2 Alexander Schreiber
  """
595 5bbd3f7f Michael Hanselmann
  # check bridges existence
596 bf6929a2 Alexander Schreiber
  brlist = [nic.bridge for nic in instance.nics]
597 781de953 Iustin Pop
  result = lu.rpc.call_bridges_exist(instance.primary_node, brlist)
598 781de953 Iustin Pop
  result.Raise()
599 781de953 Iustin Pop
  if not result.data:
600 781de953 Iustin Pop
    raise errors.OpPrereqError("One or more target bridges %s does not"
601 bf6929a2 Alexander Schreiber
                               " exist on destination node '%s'" %
602 bf6929a2 Alexander Schreiber
                               (brlist, instance.primary_node))
603 bf6929a2 Alexander Schreiber
604 bf6929a2 Alexander Schreiber
605 a8083063 Iustin Pop
class LUDestroyCluster(NoHooksLU):
606 a8083063 Iustin Pop
  """Logical unit for destroying the cluster.
607 a8083063 Iustin Pop

608 a8083063 Iustin Pop
  """
609 a8083063 Iustin Pop
  _OP_REQP = []
610 a8083063 Iustin Pop
611 a8083063 Iustin Pop
  def CheckPrereq(self):
612 a8083063 Iustin Pop
    """Check prerequisites.
613 a8083063 Iustin Pop

614 a8083063 Iustin Pop
    This checks whether the cluster is empty.
615 a8083063 Iustin Pop

616 5bbd3f7f Michael Hanselmann
    Any errors are signaled by raising errors.OpPrereqError.
617 a8083063 Iustin Pop

618 a8083063 Iustin Pop
    """
619 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
620 a8083063 Iustin Pop
621 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
622 db915bd1 Michael Hanselmann
    if len(nodelist) != 1 or nodelist[0] != master:
623 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d node(s) in"
624 3ecf6786 Iustin Pop
                                 " this cluster." % (len(nodelist) - 1))
625 db915bd1 Michael Hanselmann
    instancelist = self.cfg.GetInstanceList()
626 db915bd1 Michael Hanselmann
    if instancelist:
627 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d instance(s) in"
628 3ecf6786 Iustin Pop
                                 " this cluster." % len(instancelist))
629 a8083063 Iustin Pop
630 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
631 a8083063 Iustin Pop
    """Destroys the cluster.
632 a8083063 Iustin Pop

633 a8083063 Iustin Pop
    """
634 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
635 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
636 781de953 Iustin Pop
    result.Raise()
637 781de953 Iustin Pop
    if not result.data:
638 c9064964 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
639 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
640 70d9e3d8 Iustin Pop
    utils.CreateBackup(priv_key)
641 70d9e3d8 Iustin Pop
    utils.CreateBackup(pub_key)
642 140aa4a8 Iustin Pop
    return master
643 a8083063 Iustin Pop
644 a8083063 Iustin Pop
645 d8fff41c Guido Trotter
class LUVerifyCluster(LogicalUnit):
646 a8083063 Iustin Pop
  """Verifies the cluster status.
647 a8083063 Iustin Pop

648 a8083063 Iustin Pop
  """
649 d8fff41c Guido Trotter
  HPATH = "cluster-verify"
650 d8fff41c Guido Trotter
  HTYPE = constants.HTYPE_CLUSTER
651 e54c4c5e Guido Trotter
  _OP_REQP = ["skip_checks"]
652 d4b9d97f Guido Trotter
  REQ_BGL = False
653 d4b9d97f Guido Trotter
654 d4b9d97f Guido Trotter
  def ExpandNames(self):
655 d4b9d97f Guido Trotter
    self.needed_locks = {
656 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
657 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
658 d4b9d97f Guido Trotter
    }
659 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
660 a8083063 Iustin Pop
661 25361b9a Iustin Pop
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
662 6d2e83d5 Iustin Pop
                  node_result, feedback_fn, master_files,
663 cc9e1230 Guido Trotter
                  drbd_map, vg_name):
664 a8083063 Iustin Pop
    """Run multiple tests against a node.
665 a8083063 Iustin Pop

666 112f18a5 Iustin Pop
    Test list:
667 e4376078 Iustin Pop

668 a8083063 Iustin Pop
      - compares ganeti version
669 5bbd3f7f Michael Hanselmann
      - checks vg existence and size > 20G
670 a8083063 Iustin Pop
      - checks config file checksum
671 a8083063 Iustin Pop
      - checks ssh to other nodes
672 a8083063 Iustin Pop

673 112f18a5 Iustin Pop
    @type nodeinfo: L{objects.Node}
674 112f18a5 Iustin Pop
    @param nodeinfo: the node to check
675 e4376078 Iustin Pop
    @param file_list: required list of files
676 e4376078 Iustin Pop
    @param local_cksum: dictionary of local files and their checksums
677 e4376078 Iustin Pop
    @param node_result: the results from the node
678 e4376078 Iustin Pop
    @param feedback_fn: function used to accumulate results
679 112f18a5 Iustin Pop
    @param master_files: list of files that only masters should have
680 6d2e83d5 Iustin Pop
    @param drbd_map: the useddrbd minors for this node, in
681 6d2e83d5 Iustin Pop
        form of minor: (instance, must_exist) which correspond to instances
682 6d2e83d5 Iustin Pop
        and their running status
683 cc9e1230 Guido Trotter
    @param vg_name: Ganeti Volume Group (result of self.cfg.GetVGName())
684 098c0958 Michael Hanselmann

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

813 a8083063 Iustin Pop
    This function checks to see if the required block devices are
814 a8083063 Iustin Pop
    available on the instance's node.
815 a8083063 Iustin Pop

816 a8083063 Iustin Pop
    """
817 a8083063 Iustin Pop
    bad = False
818 a8083063 Iustin Pop
819 a8083063 Iustin Pop
    node_current = instanceconfig.primary_node
820 a8083063 Iustin Pop
821 a8083063 Iustin Pop
    node_vol_should = {}
822 a8083063 Iustin Pop
    instanceconfig.MapLVsByNode(node_vol_should)
823 a8083063 Iustin Pop
824 a8083063 Iustin Pop
    for node in node_vol_should:
825 0a66c968 Iustin Pop
      if node in n_offline:
826 0a66c968 Iustin Pop
        # ignore missing volumes on offline nodes
827 0a66c968 Iustin Pop
        continue
828 a8083063 Iustin Pop
      for volume in node_vol_should[node]:
829 a8083063 Iustin Pop
        if node not in node_vol_is or volume not in node_vol_is[node]:
830 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s missing on node %s" %
831 a8083063 Iustin Pop
                          (volume, node))
832 a8083063 Iustin Pop
          bad = True
833 a8083063 Iustin Pop
834 0d68c45d Iustin Pop
    if instanceconfig.admin_up:
835 0a66c968 Iustin Pop
      if ((node_current not in node_instance or
836 0a66c968 Iustin Pop
          not instance in node_instance[node_current]) and
837 0a66c968 Iustin Pop
          node_current not in n_offline):
838 a8083063 Iustin Pop
        feedback_fn("  - ERROR: instance %s not running on node %s" %
839 a8083063 Iustin Pop
                        (instance, node_current))
840 a8083063 Iustin Pop
        bad = True
841 a8083063 Iustin Pop
842 a8083063 Iustin Pop
    for node in node_instance:
843 a8083063 Iustin Pop
      if (not node == node_current):
844 a8083063 Iustin Pop
        if instance in node_instance[node]:
845 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s should not run on node %s" %
846 a8083063 Iustin Pop
                          (instance, node))
847 a8083063 Iustin Pop
          bad = True
848 a8083063 Iustin Pop
849 6a438c98 Michael Hanselmann
    return bad
850 a8083063 Iustin Pop
851 a8083063 Iustin Pop
  def _VerifyOrphanVolumes(self, node_vol_should, node_vol_is, feedback_fn):
852 a8083063 Iustin Pop
    """Verify if there are any unknown volumes in the cluster.
853 a8083063 Iustin Pop

854 a8083063 Iustin Pop
    The .os, .swap and backup volumes are ignored. All other volumes are
855 a8083063 Iustin Pop
    reported as unknown.
856 a8083063 Iustin Pop

857 a8083063 Iustin Pop
    """
858 a8083063 Iustin Pop
    bad = False
859 a8083063 Iustin Pop
860 a8083063 Iustin Pop
    for node in node_vol_is:
861 a8083063 Iustin Pop
      for volume in node_vol_is[node]:
862 a8083063 Iustin Pop
        if node not in node_vol_should or volume not in node_vol_should[node]:
863 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
864 a8083063 Iustin Pop
                      (volume, node))
865 a8083063 Iustin Pop
          bad = True
866 a8083063 Iustin Pop
    return bad
867 a8083063 Iustin Pop
868 a8083063 Iustin Pop
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
869 a8083063 Iustin Pop
    """Verify the list of running instances.
870 a8083063 Iustin Pop

871 a8083063 Iustin Pop
    This checks what instances are running but unknown to the cluster.
872 a8083063 Iustin Pop

873 a8083063 Iustin Pop
    """
874 a8083063 Iustin Pop
    bad = False
875 a8083063 Iustin Pop
    for node in node_instance:
876 a8083063 Iustin Pop
      for runninginstance in node_instance[node]:
877 a8083063 Iustin Pop
        if runninginstance not in instancelist:
878 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
879 a8083063 Iustin Pop
                          (runninginstance, node))
880 a8083063 Iustin Pop
          bad = True
881 a8083063 Iustin Pop
    return bad
882 a8083063 Iustin Pop
883 2b3b6ddd Guido Trotter
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
884 2b3b6ddd Guido Trotter
    """Verify N+1 Memory Resilience.
885 2b3b6ddd Guido Trotter

886 2b3b6ddd Guido Trotter
    Check that if one single node dies we can still start all the instances it
887 2b3b6ddd Guido Trotter
    was primary for.
888 2b3b6ddd Guido Trotter

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

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

919 a8083063 Iustin Pop
    """
920 e54c4c5e Guido Trotter
    self.skip_set = frozenset(self.op.skip_checks)
921 e54c4c5e Guido Trotter
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
922 e54c4c5e Guido Trotter
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
923 a8083063 Iustin Pop
924 d8fff41c Guido Trotter
  def BuildHooksEnv(self):
925 d8fff41c Guido Trotter
    """Build hooks env.
926 d8fff41c Guido Trotter

927 5bbd3f7f Michael Hanselmann
    Cluster-Verify hooks just ran in the post phase and their failure makes
928 d8fff41c Guido Trotter
    the output be logged in the verify output and the verification to fail.
929 d8fff41c Guido Trotter

930 d8fff41c Guido Trotter
    """
931 d8fff41c Guido Trotter
    all_nodes = self.cfg.GetNodeList()
932 35e994e9 Iustin Pop
    env = {
933 35e994e9 Iustin Pop
      "CLUSTER_TAGS": " ".join(self.cfg.GetClusterInfo().GetTags())
934 35e994e9 Iustin Pop
      }
935 35e994e9 Iustin Pop
    for node in self.cfg.GetAllNodesInfo().values():
936 35e994e9 Iustin Pop
      env["NODE_TAGS_%s" % node.name] = " ".join(node.GetTags())
937 35e994e9 Iustin Pop
938 d8fff41c Guido Trotter
    return env, [], all_nodes
939 d8fff41c Guido Trotter
940 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
941 a8083063 Iustin Pop
    """Verify integrity of cluster, performing various test on nodes.
942 a8083063 Iustin Pop

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

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

1199 e4376078 Iustin Pop
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
1200 e4376078 Iustin Pop
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1201 e4376078 Iustin Pop
    @param hooks_results: the results of the multi-node hooks rpc call
1202 e4376078 Iustin Pop
    @param feedback_fn: function used send feedback back to the caller
1203 e4376078 Iustin Pop
    @param lu_result: previous Exec result
1204 e4376078 Iustin Pop
    @return: the new Exec result, based on the previous result
1205 e4376078 Iustin Pop
        and hook results
1206 d8fff41c Guido Trotter

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

1246 2c95a8d4 Iustin Pop
  """
1247 2c95a8d4 Iustin Pop
  _OP_REQP = []
1248 d4b9d97f Guido Trotter
  REQ_BGL = False
1249 d4b9d97f Guido Trotter
1250 d4b9d97f Guido Trotter
  def ExpandNames(self):
1251 d4b9d97f Guido Trotter
    self.needed_locks = {
1252 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1253 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1254 d4b9d97f Guido Trotter
    }
1255 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1256 2c95a8d4 Iustin Pop
1257 2c95a8d4 Iustin Pop
  def CheckPrereq(self):
1258 2c95a8d4 Iustin Pop
    """Check prerequisites.
1259 2c95a8d4 Iustin Pop

1260 2c95a8d4 Iustin Pop
    This has no prerequisites.
1261 2c95a8d4 Iustin Pop

1262 2c95a8d4 Iustin Pop
    """
1263 2c95a8d4 Iustin Pop
    pass
1264 2c95a8d4 Iustin Pop
1265 2c95a8d4 Iustin Pop
  def Exec(self, feedback_fn):
1266 2c95a8d4 Iustin Pop
    """Verify integrity of cluster disks.
1267 2c95a8d4 Iustin Pop

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

1331 60975797 Iustin Pop
  """
1332 60975797 Iustin Pop
  _OP_REQP = ["instances"]
1333 60975797 Iustin Pop
  REQ_BGL = False
1334 60975797 Iustin Pop
1335 60975797 Iustin Pop
  def ExpandNames(self):
1336 60975797 Iustin Pop
1337 60975797 Iustin Pop
    if not isinstance(self.op.instances, list):
1338 60975797 Iustin Pop
      raise errors.OpPrereqError("Invalid argument type 'instances'")
1339 60975797 Iustin Pop
1340 60975797 Iustin Pop
    if self.op.instances:
1341 60975797 Iustin Pop
      self.wanted_names = []
1342 60975797 Iustin Pop
      for name in self.op.instances:
1343 60975797 Iustin Pop
        full_name = self.cfg.ExpandInstanceName(name)
1344 60975797 Iustin Pop
        if full_name is None:
1345 60975797 Iustin Pop
          raise errors.OpPrereqError("Instance '%s' not known" % name)
1346 60975797 Iustin Pop
        self.wanted_names.append(full_name)
1347 60975797 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
1348 60975797 Iustin Pop
      self.needed_locks = {
1349 60975797 Iustin Pop
        locking.LEVEL_NODE: [],
1350 60975797 Iustin Pop
        locking.LEVEL_INSTANCE: self.wanted_names,
1351 60975797 Iustin Pop
        }
1352 60975797 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
1353 60975797 Iustin Pop
    else:
1354 60975797 Iustin Pop
      self.wanted_names = None
1355 60975797 Iustin Pop
      self.needed_locks = {
1356 60975797 Iustin Pop
        locking.LEVEL_NODE: locking.ALL_SET,
1357 60975797 Iustin Pop
        locking.LEVEL_INSTANCE: locking.ALL_SET,
1358 60975797 Iustin Pop
        }
1359 60975797 Iustin Pop
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1360 60975797 Iustin Pop
1361 60975797 Iustin Pop
  def DeclareLocks(self, level):
1362 60975797 Iustin Pop
    if level == locking.LEVEL_NODE and self.wanted_names is not None:
1363 60975797 Iustin Pop
      self._LockInstancesNodes(primary_only=True)
1364 60975797 Iustin Pop
1365 60975797 Iustin Pop
  def CheckPrereq(self):
1366 60975797 Iustin Pop
    """Check prerequisites.
1367 60975797 Iustin Pop

1368 60975797 Iustin Pop
    This only checks the optional instance list against the existing names.
1369 60975797 Iustin Pop

1370 60975797 Iustin Pop
    """
1371 60975797 Iustin Pop
    if self.wanted_names is None:
1372 60975797 Iustin Pop
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
1373 60975797 Iustin Pop
1374 60975797 Iustin Pop
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
1375 60975797 Iustin Pop
                             in self.wanted_names]
1376 60975797 Iustin Pop
1377 60975797 Iustin Pop
  def Exec(self, feedback_fn):
1378 60975797 Iustin Pop
    """Verify the size of cluster disks.
1379 60975797 Iustin Pop

1380 60975797 Iustin Pop
    """
1381 60975797 Iustin Pop
    # TODO: check child disks too
1382 60975797 Iustin Pop
    # TODO: check differences in size between primary/secondary nodes
1383 60975797 Iustin Pop
    per_node_disks = {}
1384 60975797 Iustin Pop
    for instance in self.wanted_instances:
1385 60975797 Iustin Pop
      pnode = instance.primary_node
1386 60975797 Iustin Pop
      if pnode not in per_node_disks:
1387 60975797 Iustin Pop
        per_node_disks[pnode] = []
1388 60975797 Iustin Pop
      for idx, disk in enumerate(instance.disks):
1389 60975797 Iustin Pop
        per_node_disks[pnode].append((instance, idx, disk))
1390 60975797 Iustin Pop
1391 60975797 Iustin Pop
    changed = []
1392 60975797 Iustin Pop
    for node, dskl in per_node_disks.items():
1393 60975797 Iustin Pop
      result = self.rpc.call_blockdev_getsizes(node, [v[2] for v in dskl])
1394 60975797 Iustin Pop
      if result.failed:
1395 60975797 Iustin Pop
        self.LogWarning("Failure in blockdev_getsizes call to node"
1396 60975797 Iustin Pop
                        " %s, ignoring", node)
1397 60975797 Iustin Pop
        continue
1398 60975797 Iustin Pop
      if len(result.data) != len(dskl):
1399 60975797 Iustin Pop
        self.LogWarning("Invalid result from node %s, ignoring node results",
1400 60975797 Iustin Pop
                        node)
1401 60975797 Iustin Pop
        continue
1402 60975797 Iustin Pop
      for ((instance, idx, disk), size) in zip(dskl, result.data):
1403 60975797 Iustin Pop
        if size is None:
1404 60975797 Iustin Pop
          self.LogWarning("Disk %d of instance %s did not return size"
1405 60975797 Iustin Pop
                          " information, ignoring", idx, instance.name)
1406 60975797 Iustin Pop
          continue
1407 60975797 Iustin Pop
        if not isinstance(size, (int, long)):
1408 60975797 Iustin Pop
          self.LogWarning("Disk %d of instance %s did not return valid"
1409 60975797 Iustin Pop
                          " size information, ignoring", idx, instance.name)
1410 60975797 Iustin Pop
          continue
1411 60975797 Iustin Pop
        size = size >> 20
1412 60975797 Iustin Pop
        if size != disk.size:
1413 60975797 Iustin Pop
          self.LogInfo("Disk %d of instance %s has mismatched size,"
1414 60975797 Iustin Pop
                       " correcting: recorded %d, actual %d", idx,
1415 60975797 Iustin Pop
                       instance.name, disk.size, size)
1416 60975797 Iustin Pop
          disk.size = size
1417 60975797 Iustin Pop
          self.cfg.Update(instance)
1418 60975797 Iustin Pop
          changed.append((instance.name, idx, size))
1419 60975797 Iustin Pop
    return changed
1420 60975797 Iustin Pop
1421 60975797 Iustin Pop
1422 07bd8a51 Iustin Pop
class LURenameCluster(LogicalUnit):
1423 07bd8a51 Iustin Pop
  """Rename the cluster.
1424 07bd8a51 Iustin Pop

1425 07bd8a51 Iustin Pop
  """
1426 07bd8a51 Iustin Pop
  HPATH = "cluster-rename"
1427 07bd8a51 Iustin Pop
  HTYPE = constants.HTYPE_CLUSTER
1428 07bd8a51 Iustin Pop
  _OP_REQP = ["name"]
1429 07bd8a51 Iustin Pop
1430 07bd8a51 Iustin Pop
  def BuildHooksEnv(self):
1431 07bd8a51 Iustin Pop
    """Build hooks env.
1432 07bd8a51 Iustin Pop

1433 07bd8a51 Iustin Pop
    """
1434 07bd8a51 Iustin Pop
    env = {
1435 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1436 07bd8a51 Iustin Pop
      "NEW_NAME": self.op.name,
1437 07bd8a51 Iustin Pop
      }
1438 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1439 07bd8a51 Iustin Pop
    return env, [mn], [mn]
1440 07bd8a51 Iustin Pop
1441 07bd8a51 Iustin Pop
  def CheckPrereq(self):
1442 07bd8a51 Iustin Pop
    """Verify that the passed name is a valid one.
1443 07bd8a51 Iustin Pop

1444 07bd8a51 Iustin Pop
    """
1445 89e1fc26 Iustin Pop
    hostname = utils.HostInfo(self.op.name)
1446 07bd8a51 Iustin Pop
1447 bcf043c9 Iustin Pop
    new_name = hostname.name
1448 bcf043c9 Iustin Pop
    self.ip = new_ip = hostname.ip
1449 d6a02168 Michael Hanselmann
    old_name = self.cfg.GetClusterName()
1450 d6a02168 Michael Hanselmann
    old_ip = self.cfg.GetMasterIP()
1451 07bd8a51 Iustin Pop
    if new_name == old_name and new_ip == old_ip:
1452 07bd8a51 Iustin Pop
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1453 07bd8a51 Iustin Pop
                                 " cluster has changed")
1454 07bd8a51 Iustin Pop
    if new_ip != old_ip:
1455 937f983d Guido Trotter
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1456 07bd8a51 Iustin Pop
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1457 07bd8a51 Iustin Pop
                                   " reachable on the network. Aborting." %
1458 07bd8a51 Iustin Pop
                                   new_ip)
1459 07bd8a51 Iustin Pop
1460 07bd8a51 Iustin Pop
    self.op.name = new_name
1461 07bd8a51 Iustin Pop
1462 07bd8a51 Iustin Pop
  def Exec(self, feedback_fn):
1463 07bd8a51 Iustin Pop
    """Rename the cluster.
1464 07bd8a51 Iustin Pop

1465 07bd8a51 Iustin Pop
    """
1466 07bd8a51 Iustin Pop
    clustername = self.op.name
1467 07bd8a51 Iustin Pop
    ip = self.ip
1468 07bd8a51 Iustin Pop
1469 07bd8a51 Iustin Pop
    # shutdown the master IP
1470 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
1471 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
1472 781de953 Iustin Pop
    if result.failed or not result.data:
1473 07bd8a51 Iustin Pop
      raise errors.OpExecError("Could not disable the master role")
1474 07bd8a51 Iustin Pop
1475 07bd8a51 Iustin Pop
    try:
1476 55cf7d83 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
1477 55cf7d83 Iustin Pop
      cluster.cluster_name = clustername
1478 55cf7d83 Iustin Pop
      cluster.master_ip = ip
1479 55cf7d83 Iustin Pop
      self.cfg.Update(cluster)
1480 ec85e3d5 Iustin Pop
1481 ec85e3d5 Iustin Pop
      # update the known hosts file
1482 ec85e3d5 Iustin Pop
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1483 ec85e3d5 Iustin Pop
      node_list = self.cfg.GetNodeList()
1484 ec85e3d5 Iustin Pop
      try:
1485 ec85e3d5 Iustin Pop
        node_list.remove(master)
1486 ec85e3d5 Iustin Pop
      except ValueError:
1487 ec85e3d5 Iustin Pop
        pass
1488 ec85e3d5 Iustin Pop
      result = self.rpc.call_upload_file(node_list,
1489 ec85e3d5 Iustin Pop
                                         constants.SSH_KNOWN_HOSTS_FILE)
1490 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
1491 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
1492 d1dc3548 Iustin Pop
          logging.error("Copy of file %s to node %s failed",
1493 d1dc3548 Iustin Pop
                        constants.SSH_KNOWN_HOSTS_FILE, to_node)
1494 ec85e3d5 Iustin Pop
1495 07bd8a51 Iustin Pop
    finally:
1496 2503680f Guido Trotter
      result = self.rpc.call_node_start_master(master, False, False)
1497 781de953 Iustin Pop
      if result.failed or not result.data:
1498 86d9d3bb Iustin Pop
        self.LogWarning("Could not re-enable the master role on"
1499 86d9d3bb Iustin Pop
                        " the master, please restart manually.")
1500 07bd8a51 Iustin Pop
1501 07bd8a51 Iustin Pop
1502 8084f9f6 Manuel Franceschini
def _RecursiveCheckIfLVMBased(disk):
1503 8084f9f6 Manuel Franceschini
  """Check if the given disk or its children are lvm-based.
1504 8084f9f6 Manuel Franceschini

1505 e4376078 Iustin Pop
  @type disk: L{objects.Disk}
1506 e4376078 Iustin Pop
  @param disk: the disk to check
1507 5bbd3f7f Michael Hanselmann
  @rtype: boolean
1508 e4376078 Iustin Pop
  @return: boolean indicating whether a LD_LV dev_type was found or not
1509 8084f9f6 Manuel Franceschini

1510 8084f9f6 Manuel Franceschini
  """
1511 8084f9f6 Manuel Franceschini
  if disk.children:
1512 8084f9f6 Manuel Franceschini
    for chdisk in disk.children:
1513 8084f9f6 Manuel Franceschini
      if _RecursiveCheckIfLVMBased(chdisk):
1514 8084f9f6 Manuel Franceschini
        return True
1515 8084f9f6 Manuel Franceschini
  return disk.dev_type == constants.LD_LV
1516 8084f9f6 Manuel Franceschini
1517 8084f9f6 Manuel Franceschini
1518 8084f9f6 Manuel Franceschini
class LUSetClusterParams(LogicalUnit):
1519 8084f9f6 Manuel Franceschini
  """Change the parameters of the cluster.
1520 8084f9f6 Manuel Franceschini

1521 8084f9f6 Manuel Franceschini
  """
1522 8084f9f6 Manuel Franceschini
  HPATH = "cluster-modify"
1523 8084f9f6 Manuel Franceschini
  HTYPE = constants.HTYPE_CLUSTER
1524 8084f9f6 Manuel Franceschini
  _OP_REQP = []
1525 c53279cf Guido Trotter
  REQ_BGL = False
1526 c53279cf Guido Trotter
1527 3994f455 Iustin Pop
  def CheckArguments(self):
1528 4b7735f9 Iustin Pop
    """Check parameters
1529 4b7735f9 Iustin Pop

1530 4b7735f9 Iustin Pop
    """
1531 4b7735f9 Iustin Pop
    if not hasattr(self.op, "candidate_pool_size"):
1532 4b7735f9 Iustin Pop
      self.op.candidate_pool_size = None
1533 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1534 4b7735f9 Iustin Pop
      try:
1535 4b7735f9 Iustin Pop
        self.op.candidate_pool_size = int(self.op.candidate_pool_size)
1536 3994f455 Iustin Pop
      except (ValueError, TypeError), err:
1537 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("Invalid candidate_pool_size value: %s" %
1538 4b7735f9 Iustin Pop
                                   str(err))
1539 4b7735f9 Iustin Pop
      if self.op.candidate_pool_size < 1:
1540 4b7735f9 Iustin Pop
        raise errors.OpPrereqError("At least one master candidate needed")
1541 4b7735f9 Iustin Pop
1542 c53279cf Guido Trotter
  def ExpandNames(self):
1543 c53279cf Guido Trotter
    # FIXME: in the future maybe other cluster params won't require checking on
1544 c53279cf Guido Trotter
    # all nodes to be modified.
1545 c53279cf Guido Trotter
    self.needed_locks = {
1546 c53279cf Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1547 c53279cf Guido Trotter
    }
1548 c53279cf Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1549 8084f9f6 Manuel Franceschini
1550 8084f9f6 Manuel Franceschini
  def BuildHooksEnv(self):
1551 8084f9f6 Manuel Franceschini
    """Build hooks env.
1552 8084f9f6 Manuel Franceschini

1553 8084f9f6 Manuel Franceschini
    """
1554 8084f9f6 Manuel Franceschini
    env = {
1555 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1556 8084f9f6 Manuel Franceschini
      "NEW_VG_NAME": self.op.vg_name,
1557 8084f9f6 Manuel Franceschini
      }
1558 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1559 8084f9f6 Manuel Franceschini
    return env, [mn], [mn]
1560 8084f9f6 Manuel Franceschini
1561 8084f9f6 Manuel Franceschini
  def CheckPrereq(self):
1562 8084f9f6 Manuel Franceschini
    """Check prerequisites.
1563 8084f9f6 Manuel Franceschini

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

1567 8084f9f6 Manuel Franceschini
    """
1568 779c15bb Iustin Pop
    if self.op.vg_name is not None and not self.op.vg_name:
1569 c53279cf Guido Trotter
      instances = self.cfg.GetAllInstancesInfo().values()
1570 8084f9f6 Manuel Franceschini
      for inst in instances:
1571 8084f9f6 Manuel Franceschini
        for disk in inst.disks:
1572 8084f9f6 Manuel Franceschini
          if _RecursiveCheckIfLVMBased(disk):
1573 8084f9f6 Manuel Franceschini
            raise errors.OpPrereqError("Cannot disable lvm storage while"
1574 8084f9f6 Manuel Franceschini
                                       " lvm-based instances exist")
1575 8084f9f6 Manuel Franceschini
1576 779c15bb Iustin Pop
    node_list = self.acquired_locks[locking.LEVEL_NODE]
1577 779c15bb Iustin Pop
1578 8084f9f6 Manuel Franceschini
    # if vg_name not None, checks given volume group on all nodes
1579 8084f9f6 Manuel Franceschini
    if self.op.vg_name:
1580 72737a7f Iustin Pop
      vglist = self.rpc.call_vg_list(node_list)
1581 8084f9f6 Manuel Franceschini
      for node in node_list:
1582 781de953 Iustin Pop
        if vglist[node].failed:
1583 781de953 Iustin Pop
          # ignoring down node
1584 781de953 Iustin Pop
          self.LogWarning("Node %s unreachable/error, ignoring" % node)
1585 781de953 Iustin Pop
          continue
1586 781de953 Iustin Pop
        vgstatus = utils.CheckVolumeGroupSize(vglist[node].data,
1587 781de953 Iustin Pop
                                              self.op.vg_name,
1588 8d1a2a64 Michael Hanselmann
                                              constants.MIN_VG_SIZE)
1589 8084f9f6 Manuel Franceschini
        if vgstatus:
1590 8084f9f6 Manuel Franceschini
          raise errors.OpPrereqError("Error on node '%s': %s" %
1591 8084f9f6 Manuel Franceschini
                                     (node, vgstatus))
1592 8084f9f6 Manuel Franceschini
1593 779c15bb Iustin Pop
    self.cluster = cluster = self.cfg.GetClusterInfo()
1594 d4b72030 Guido Trotter
    # validate beparams changes
1595 779c15bb Iustin Pop
    if self.op.beparams:
1596 a5728081 Guido Trotter
      utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
1597 779c15bb Iustin Pop
      self.new_beparams = cluster.FillDict(
1598 779c15bb Iustin Pop
        cluster.beparams[constants.BEGR_DEFAULT], self.op.beparams)
1599 779c15bb Iustin Pop
1600 779c15bb Iustin Pop
    # hypervisor list/parameters
1601 779c15bb Iustin Pop
    self.new_hvparams = cluster.FillDict(cluster.hvparams, {})
1602 779c15bb Iustin Pop
    if self.op.hvparams:
1603 779c15bb Iustin Pop
      if not isinstance(self.op.hvparams, dict):
1604 779c15bb Iustin Pop
        raise errors.OpPrereqError("Invalid 'hvparams' parameter on input")
1605 779c15bb Iustin Pop
      for hv_name, hv_dict in self.op.hvparams.items():
1606 779c15bb Iustin Pop
        if hv_name not in self.new_hvparams:
1607 779c15bb Iustin Pop
          self.new_hvparams[hv_name] = hv_dict
1608 779c15bb Iustin Pop
        else:
1609 779c15bb Iustin Pop
          self.new_hvparams[hv_name].update(hv_dict)
1610 779c15bb Iustin Pop
1611 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1612 779c15bb Iustin Pop
      self.hv_list = self.op.enabled_hypervisors
1613 b119bccb Guido Trotter
      if not self.hv_list:
1614 b119bccb Guido Trotter
        raise errors.OpPrereqError("Enabled hypervisors list must contain at"
1615 b119bccb Guido Trotter
                                   " least one member")
1616 b119bccb Guido Trotter
      invalid_hvs = set(self.hv_list) - constants.HYPER_TYPES
1617 b119bccb Guido Trotter
      if invalid_hvs:
1618 b119bccb Guido Trotter
        raise errors.OpPrereqError("Enabled hypervisors contains invalid"
1619 b119bccb Guido Trotter
                                   " entries: %s" % invalid_hvs)
1620 779c15bb Iustin Pop
    else:
1621 779c15bb Iustin Pop
      self.hv_list = cluster.enabled_hypervisors
1622 779c15bb Iustin Pop
1623 779c15bb Iustin Pop
    if self.op.hvparams or self.op.enabled_hypervisors is not None:
1624 779c15bb Iustin Pop
      # either the enabled list has changed, or the parameters have, validate
1625 779c15bb Iustin Pop
      for hv_name, hv_params in self.new_hvparams.items():
1626 779c15bb Iustin Pop
        if ((self.op.hvparams and hv_name in self.op.hvparams) or
1627 779c15bb Iustin Pop
            (self.op.enabled_hypervisors and
1628 779c15bb Iustin Pop
             hv_name in self.op.enabled_hypervisors)):
1629 779c15bb Iustin Pop
          # either this is a new hypervisor, or its parameters have changed
1630 779c15bb Iustin Pop
          hv_class = hypervisor.GetHypervisor(hv_name)
1631 a5728081 Guido Trotter
          utils.ForceDictType(hv_params, constants.HVS_PARAMETER_TYPES)
1632 779c15bb Iustin Pop
          hv_class.CheckParameterSyntax(hv_params)
1633 779c15bb Iustin Pop
          _CheckHVParams(self, node_list, hv_name, hv_params)
1634 779c15bb Iustin Pop
1635 8084f9f6 Manuel Franceschini
  def Exec(self, feedback_fn):
1636 8084f9f6 Manuel Franceschini
    """Change the parameters of the cluster.
1637 8084f9f6 Manuel Franceschini

1638 8084f9f6 Manuel Franceschini
    """
1639 779c15bb Iustin Pop
    if self.op.vg_name is not None:
1640 b2482333 Guido Trotter
      new_volume = self.op.vg_name
1641 b2482333 Guido Trotter
      if not new_volume:
1642 b2482333 Guido Trotter
        new_volume = None
1643 b2482333 Guido Trotter
      if new_volume != self.cfg.GetVGName():
1644 b2482333 Guido Trotter
        self.cfg.SetVGName(new_volume)
1645 779c15bb Iustin Pop
      else:
1646 779c15bb Iustin Pop
        feedback_fn("Cluster LVM configuration already in desired"
1647 779c15bb Iustin Pop
                    " state, not changing")
1648 779c15bb Iustin Pop
    if self.op.hvparams:
1649 779c15bb Iustin Pop
      self.cluster.hvparams = self.new_hvparams
1650 779c15bb Iustin Pop
    if self.op.enabled_hypervisors is not None:
1651 779c15bb Iustin Pop
      self.cluster.enabled_hypervisors = self.op.enabled_hypervisors
1652 779c15bb Iustin Pop
    if self.op.beparams:
1653 779c15bb Iustin Pop
      self.cluster.beparams[constants.BEGR_DEFAULT] = self.new_beparams
1654 4b7735f9 Iustin Pop
    if self.op.candidate_pool_size is not None:
1655 4b7735f9 Iustin Pop
      self.cluster.candidate_pool_size = self.op.candidate_pool_size
1656 75e914fb Iustin Pop
      # we need to update the pool size here, otherwise the save will fail
1657 75e914fb Iustin Pop
      _AdjustCandidatePool(self)
1658 4b7735f9 Iustin Pop
1659 779c15bb Iustin Pop
    self.cfg.Update(self.cluster)
1660 8084f9f6 Manuel Franceschini
1661 8084f9f6 Manuel Franceschini
1662 afee0879 Iustin Pop
class LURedistributeConfig(NoHooksLU):
1663 afee0879 Iustin Pop
  """Force the redistribution of cluster configuration.
1664 afee0879 Iustin Pop

1665 afee0879 Iustin Pop
  This is a very simple LU.
1666 afee0879 Iustin Pop

1667 afee0879 Iustin Pop
  """
1668 afee0879 Iustin Pop
  _OP_REQP = []
1669 afee0879 Iustin Pop
  REQ_BGL = False
1670 afee0879 Iustin Pop
1671 afee0879 Iustin Pop
  def ExpandNames(self):
1672 afee0879 Iustin Pop
    self.needed_locks = {
1673 afee0879 Iustin Pop
      locking.LEVEL_NODE: locking.ALL_SET,
1674 afee0879 Iustin Pop
    }
1675 afee0879 Iustin Pop
    self.share_locks[locking.LEVEL_NODE] = 1
1676 afee0879 Iustin Pop
1677 afee0879 Iustin Pop
  def CheckPrereq(self):
1678 afee0879 Iustin Pop
    """Check prerequisites.
1679 afee0879 Iustin Pop

1680 afee0879 Iustin Pop
    """
1681 afee0879 Iustin Pop
1682 afee0879 Iustin Pop
  def Exec(self, feedback_fn):
1683 afee0879 Iustin Pop
    """Redistribute the configuration.
1684 afee0879 Iustin Pop

1685 afee0879 Iustin Pop
    """
1686 afee0879 Iustin Pop
    self.cfg.Update(self.cfg.GetClusterInfo())
1687 afee0879 Iustin Pop
1688 afee0879 Iustin Pop
1689 b9bddb6b Iustin Pop
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1690 a8083063 Iustin Pop
  """Sleep and poll for an instance's disk to sync.
1691 a8083063 Iustin Pop

1692 a8083063 Iustin Pop
  """
1693 a8083063 Iustin Pop
  if not instance.disks:
1694 a8083063 Iustin Pop
    return True
1695 a8083063 Iustin Pop
1696 a8083063 Iustin Pop
  if not oneshot:
1697 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Waiting for instance %s to sync disks." % instance.name)
1698 a8083063 Iustin Pop
1699 a8083063 Iustin Pop
  node = instance.primary_node
1700 a8083063 Iustin Pop
1701 a8083063 Iustin Pop
  for dev in instance.disks:
1702 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(dev, node)
1703 a8083063 Iustin Pop
1704 a8083063 Iustin Pop
  retries = 0
1705 fbafd7a8 Iustin Pop
  degr_retries = 10 # in seconds, as we sleep 1 second each time
1706 a8083063 Iustin Pop
  while True:
1707 a8083063 Iustin Pop
    max_time = 0
1708 a8083063 Iustin Pop
    done = True
1709 a8083063 Iustin Pop
    cumul_degraded = False
1710 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_getmirrorstatus(node, instance.disks)
1711 781de953 Iustin Pop
    if rstats.failed or not rstats.data:
1712 86d9d3bb Iustin Pop
      lu.LogWarning("Can't get any data from node %s", node)
1713 a8083063 Iustin Pop
      retries += 1
1714 a8083063 Iustin Pop
      if retries >= 10:
1715 3ecf6786 Iustin Pop
        raise errors.RemoteError("Can't contact node %s for mirror data,"
1716 3ecf6786 Iustin Pop
                                 " aborting." % node)
1717 a8083063 Iustin Pop
      time.sleep(6)
1718 a8083063 Iustin Pop
      continue
1719 781de953 Iustin Pop
    rstats = rstats.data
1720 a8083063 Iustin Pop
    retries = 0
1721 1492cca7 Iustin Pop
    for i, mstat in enumerate(rstats):
1722 a8083063 Iustin Pop
      if mstat is None:
1723 86d9d3bb Iustin Pop
        lu.LogWarning("Can't compute data for node %s/%s",
1724 86d9d3bb Iustin Pop
                           node, instance.disks[i].iv_name)
1725 a8083063 Iustin Pop
        continue
1726 0834c866 Iustin Pop
      # we ignore the ldisk parameter
1727 0834c866 Iustin Pop
      perc_done, est_time, is_degraded, _ = mstat
1728 a8083063 Iustin Pop
      cumul_degraded = cumul_degraded or (is_degraded and perc_done is None)
1729 a8083063 Iustin Pop
      if perc_done is not None:
1730 a8083063 Iustin Pop
        done = False
1731 a8083063 Iustin Pop
        if est_time is not None:
1732 a8083063 Iustin Pop
          rem_time = "%d estimated seconds remaining" % est_time
1733 a8083063 Iustin Pop
          max_time = est_time
1734 a8083063 Iustin Pop
        else:
1735 a8083063 Iustin Pop
          rem_time = "no time estimate"
1736 b9bddb6b Iustin Pop
        lu.proc.LogInfo("- device %s: %5.2f%% done, %s" %
1737 b9bddb6b Iustin Pop
                        (instance.disks[i].iv_name, perc_done, rem_time))
1738 fbafd7a8 Iustin Pop
1739 fbafd7a8 Iustin Pop
    # if we're done but degraded, let's do a few small retries, to
1740 fbafd7a8 Iustin Pop
    # make sure we see a stable and not transient situation; therefore
1741 fbafd7a8 Iustin Pop
    # we force restart of the loop
1742 fbafd7a8 Iustin Pop
    if (done or oneshot) and cumul_degraded and degr_retries > 0:
1743 fbafd7a8 Iustin Pop
      logging.info("Degraded disks found, %d retries left", degr_retries)
1744 fbafd7a8 Iustin Pop
      degr_retries -= 1
1745 fbafd7a8 Iustin Pop
      time.sleep(1)
1746 fbafd7a8 Iustin Pop
      continue
1747 fbafd7a8 Iustin Pop
1748 a8083063 Iustin Pop
    if done or oneshot:
1749 a8083063 Iustin Pop
      break
1750 a8083063 Iustin Pop
1751 d4fa5c23 Iustin Pop
    time.sleep(min(60, max_time))
1752 a8083063 Iustin Pop
1753 a8083063 Iustin Pop
  if done:
1754 b9bddb6b Iustin Pop
    lu.proc.LogInfo("Instance %s's disks are in sync." % instance.name)
1755 a8083063 Iustin Pop
  return not cumul_degraded
1756 a8083063 Iustin Pop
1757 a8083063 Iustin Pop
1758 b9bddb6b Iustin Pop
def _CheckDiskConsistency(lu, dev, node, on_primary, ldisk=False):
1759 a8083063 Iustin Pop
  """Check that mirrors are not degraded.
1760 a8083063 Iustin Pop

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

1765 a8083063 Iustin Pop
  """
1766 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(dev, node)
1767 0834c866 Iustin Pop
  if ldisk:
1768 0834c866 Iustin Pop
    idx = 6
1769 0834c866 Iustin Pop
  else:
1770 0834c866 Iustin Pop
    idx = 5
1771 a8083063 Iustin Pop
1772 a8083063 Iustin Pop
  result = True
1773 a8083063 Iustin Pop
  if on_primary or dev.AssembleOnSecondary():
1774 72737a7f Iustin Pop
    rstats = lu.rpc.call_blockdev_find(node, dev)
1775 23829f6f Iustin Pop
    msg = rstats.RemoteFailMsg()
1776 23829f6f Iustin Pop
    if msg:
1777 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s: %s", node, msg)
1778 23829f6f Iustin Pop
      result = False
1779 23829f6f Iustin Pop
    elif not rstats.payload:
1780 23829f6f Iustin Pop
      lu.LogWarning("Can't find disk on node %s", node)
1781 a8083063 Iustin Pop
      result = False
1782 a8083063 Iustin Pop
    else:
1783 23829f6f Iustin Pop
      result = result and (not rstats.payload[idx])
1784 a8083063 Iustin Pop
  if dev.children:
1785 a8083063 Iustin Pop
    for child in dev.children:
1786 b9bddb6b Iustin Pop
      result = result and _CheckDiskConsistency(lu, child, node, on_primary)
1787 a8083063 Iustin Pop
1788 a8083063 Iustin Pop
  return result
1789 a8083063 Iustin Pop
1790 a8083063 Iustin Pop
1791 a8083063 Iustin Pop
class LUDiagnoseOS(NoHooksLU):
1792 a8083063 Iustin Pop
  """Logical unit for OS diagnose/query.
1793 a8083063 Iustin Pop

1794 a8083063 Iustin Pop
  """
1795 1f9430d6 Iustin Pop
  _OP_REQP = ["output_fields", "names"]
1796 6bf01bbb Guido Trotter
  REQ_BGL = False
1797 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet()
1798 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("name", "valid", "node_status")
1799 a8083063 Iustin Pop
1800 6bf01bbb Guido Trotter
  def ExpandNames(self):
1801 1f9430d6 Iustin Pop
    if self.op.names:
1802 1f9430d6 Iustin Pop
      raise errors.OpPrereqError("Selective OS query not supported")
1803 1f9430d6 Iustin Pop
1804 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1805 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1806 1f9430d6 Iustin Pop
                       selected=self.op.output_fields)
1807 1f9430d6 Iustin Pop
1808 6bf01bbb Guido Trotter
    # Lock all nodes, in shared mode
1809 a6ab004b Iustin Pop
    # Temporary removal of locks, should be reverted later
1810 a6ab004b Iustin Pop
    # TODO: reintroduce locks when they are lighter-weight
1811 6bf01bbb Guido Trotter
    self.needed_locks = {}
1812 a6ab004b Iustin Pop
    #self.share_locks[locking.LEVEL_NODE] = 1
1813 a6ab004b Iustin Pop
    #self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
1814 6bf01bbb Guido Trotter
1815 6bf01bbb Guido Trotter
  def CheckPrereq(self):
1816 6bf01bbb Guido Trotter
    """Check prerequisites.
1817 6bf01bbb Guido Trotter

1818 6bf01bbb Guido Trotter
    """
1819 6bf01bbb Guido Trotter
1820 1f9430d6 Iustin Pop
  @staticmethod
1821 1f9430d6 Iustin Pop
  def _DiagnoseByOS(node_list, rlist):
1822 1f9430d6 Iustin Pop
    """Remaps a per-node return list into an a per-os per-node dictionary
1823 1f9430d6 Iustin Pop

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

1827 e4376078 Iustin Pop
    @rtype: dict
1828 5fcc718f Iustin Pop
    @return: a dictionary with osnames as keys and as value another map, with
1829 e4376078 Iustin Pop
        nodes as keys and list of OS objects as values, eg::
1830 e4376078 Iustin Pop

1831 e4376078 Iustin Pop
          {"debian-etch": {"node1": [<object>,...],
1832 e4376078 Iustin Pop
                           "node2": [<object>,]}
1833 e4376078 Iustin Pop
          }
1834 1f9430d6 Iustin Pop

1835 1f9430d6 Iustin Pop
    """
1836 1f9430d6 Iustin Pop
    all_os = {}
1837 a6ab004b Iustin Pop
    # we build here the list of nodes that didn't fail the RPC (at RPC
1838 a6ab004b Iustin Pop
    # level), so that nodes with a non-responding node daemon don't
1839 a6ab004b Iustin Pop
    # make all OSes invalid
1840 a6ab004b Iustin Pop
    good_nodes = [node_name for node_name in rlist
1841 a6ab004b Iustin Pop
                  if not rlist[node_name].failed]
1842 1f9430d6 Iustin Pop
    for node_name, nr in rlist.iteritems():
1843 781de953 Iustin Pop
      if nr.failed or not nr.data:
1844 1f9430d6 Iustin Pop
        continue
1845 781de953 Iustin Pop
      for os_obj in nr.data:
1846 b4de68a9 Iustin Pop
        if os_obj.name not in all_os:
1847 1f9430d6 Iustin Pop
          # build a list of nodes for this os containing empty lists
1848 1f9430d6 Iustin Pop
          # for each node in node_list
1849 b4de68a9 Iustin Pop
          all_os[os_obj.name] = {}
1850 a6ab004b Iustin Pop
          for nname in good_nodes:
1851 b4de68a9 Iustin Pop
            all_os[os_obj.name][nname] = []
1852 b4de68a9 Iustin Pop
        all_os[os_obj.name][node_name].append(os_obj)
1853 1f9430d6 Iustin Pop
    return all_os
1854 a8083063 Iustin Pop
1855 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1856 a8083063 Iustin Pop
    """Compute the list of OSes.
1857 a8083063 Iustin Pop

1858 a8083063 Iustin Pop
    """
1859 a6ab004b Iustin Pop
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()]
1860 94a02bb5 Iustin Pop
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1861 a8083063 Iustin Pop
    if node_data == False:
1862 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't gather the list of OSes")
1863 94a02bb5 Iustin Pop
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1864 1f9430d6 Iustin Pop
    output = []
1865 1f9430d6 Iustin Pop
    for os_name, os_data in pol.iteritems():
1866 1f9430d6 Iustin Pop
      row = []
1867 1f9430d6 Iustin Pop
      for field in self.op.output_fields:
1868 1f9430d6 Iustin Pop
        if field == "name":
1869 1f9430d6 Iustin Pop
          val = os_name
1870 1f9430d6 Iustin Pop
        elif field == "valid":
1871 1f9430d6 Iustin Pop
          val = utils.all([osl and osl[0] for osl in os_data.values()])
1872 1f9430d6 Iustin Pop
        elif field == "node_status":
1873 1f9430d6 Iustin Pop
          val = {}
1874 1f9430d6 Iustin Pop
          for node_name, nos_list in os_data.iteritems():
1875 1f9430d6 Iustin Pop
            val[node_name] = [(v.status, v.path) for v in nos_list]
1876 1f9430d6 Iustin Pop
        else:
1877 1f9430d6 Iustin Pop
          raise errors.ParameterError(field)
1878 1f9430d6 Iustin Pop
        row.append(val)
1879 1f9430d6 Iustin Pop
      output.append(row)
1880 1f9430d6 Iustin Pop
1881 1f9430d6 Iustin Pop
    return output
1882 a8083063 Iustin Pop
1883 a8083063 Iustin Pop
1884 a8083063 Iustin Pop
class LURemoveNode(LogicalUnit):
1885 a8083063 Iustin Pop
  """Logical unit for removing a node.
1886 a8083063 Iustin Pop

1887 a8083063 Iustin Pop
  """
1888 a8083063 Iustin Pop
  HPATH = "node-remove"
1889 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1890 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1891 a8083063 Iustin Pop
1892 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1893 a8083063 Iustin Pop
    """Build hooks env.
1894 a8083063 Iustin Pop

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

1898 a8083063 Iustin Pop
    """
1899 396e1b78 Michael Hanselmann
    env = {
1900 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
1901 396e1b78 Michael Hanselmann
      "NODE_NAME": self.op.node_name,
1902 396e1b78 Michael Hanselmann
      }
1903 a8083063 Iustin Pop
    all_nodes = self.cfg.GetNodeList()
1904 a8083063 Iustin Pop
    all_nodes.remove(self.op.node_name)
1905 396e1b78 Michael Hanselmann
    return env, all_nodes, all_nodes
1906 a8083063 Iustin Pop
1907 a8083063 Iustin Pop
  def CheckPrereq(self):
1908 a8083063 Iustin Pop
    """Check prerequisites.
1909 a8083063 Iustin Pop

1910 a8083063 Iustin Pop
    This checks:
1911 a8083063 Iustin Pop
     - the node exists in the configuration
1912 a8083063 Iustin Pop
     - it does not have primary or secondary instances
1913 a8083063 Iustin Pop
     - it's not the master
1914 a8083063 Iustin Pop

1915 5bbd3f7f Michael Hanselmann
    Any errors are signaled by raising errors.OpPrereqError.
1916 a8083063 Iustin Pop

1917 a8083063 Iustin Pop
    """
1918 a8083063 Iustin Pop
    node = self.cfg.GetNodeInfo(self.cfg.ExpandNodeName(self.op.node_name))
1919 a8083063 Iustin Pop
    if node is None:
1920 a02bc76e Iustin Pop
      raise errors.OpPrereqError, ("Node '%s' is unknown." % self.op.node_name)
1921 a8083063 Iustin Pop
1922 a8083063 Iustin Pop
    instance_list = self.cfg.GetInstanceList()
1923 a8083063 Iustin Pop
1924 d6a02168 Michael Hanselmann
    masternode = self.cfg.GetMasterNode()
1925 a8083063 Iustin Pop
    if node.name == masternode:
1926 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node is the master node,"
1927 3ecf6786 Iustin Pop
                                 " you need to failover first.")
1928 a8083063 Iustin Pop
1929 a8083063 Iustin Pop
    for instance_name in instance_list:
1930 a8083063 Iustin Pop
      instance = self.cfg.GetInstanceInfo(instance_name)
1931 6b12959c Iustin Pop
      if node.name in instance.all_nodes:
1932 6b12959c Iustin Pop
        raise errors.OpPrereqError("Instance %s is still running on the node,"
1933 3ecf6786 Iustin Pop
                                   " please remove first." % instance_name)
1934 a8083063 Iustin Pop
    self.op.node_name = node.name
1935 a8083063 Iustin Pop
    self.node = node
1936 a8083063 Iustin Pop
1937 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1938 a8083063 Iustin Pop
    """Removes the node from the cluster.
1939 a8083063 Iustin Pop

1940 a8083063 Iustin Pop
    """
1941 a8083063 Iustin Pop
    node = self.node
1942 9a4f63d1 Iustin Pop
    logging.info("Stopping the node daemon and removing configs from node %s",
1943 9a4f63d1 Iustin Pop
                 node.name)
1944 a8083063 Iustin Pop
1945 d8470559 Michael Hanselmann
    self.context.RemoveNode(node.name)
1946 a8083063 Iustin Pop
1947 72737a7f Iustin Pop
    self.rpc.call_node_leave_cluster(node.name)
1948 c8a0948f Michael Hanselmann
1949 eb1742d5 Guido Trotter
    # Promote nodes to master candidate as needed
1950 ec0292f1 Iustin Pop
    _AdjustCandidatePool(self)
1951 eb1742d5 Guido Trotter
1952 a8083063 Iustin Pop
1953 a8083063 Iustin Pop
class LUQueryNodes(NoHooksLU):
1954 a8083063 Iustin Pop
  """Logical unit for querying nodes.
1955 a8083063 Iustin Pop

1956 a8083063 Iustin Pop
  """
1957 bc8e4a1a Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
1958 35705d8f Guido Trotter
  REQ_BGL = False
1959 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet(
1960 31bf511f Iustin Pop
    "dtotal", "dfree",
1961 31bf511f Iustin Pop
    "mtotal", "mnode", "mfree",
1962 31bf511f Iustin Pop
    "bootid",
1963 0105bad3 Iustin Pop
    "ctotal", "cnodes", "csockets",
1964 31bf511f Iustin Pop
    )
1965 31bf511f Iustin Pop
1966 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(
1967 31bf511f Iustin Pop
    "name", "pinst_cnt", "sinst_cnt",
1968 31bf511f Iustin Pop
    "pinst_list", "sinst_list",
1969 31bf511f Iustin Pop
    "pip", "sip", "tags",
1970 31bf511f Iustin Pop
    "serial_no",
1971 0e67cdbe Iustin Pop
    "master_candidate",
1972 0e67cdbe Iustin Pop
    "master",
1973 9ddb5e45 Iustin Pop
    "offline",
1974 0b2454b9 Iustin Pop
    "drained",
1975 c120ff34 Iustin Pop
    "role",
1976 31bf511f Iustin Pop
    )
1977 a8083063 Iustin Pop
1978 35705d8f Guido Trotter
  def ExpandNames(self):
1979 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
1980 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
1981 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
1982 a8083063 Iustin Pop
1983 35705d8f Guido Trotter
    self.needed_locks = {}
1984 35705d8f Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
1985 c8d8b4c8 Iustin Pop
1986 c8d8b4c8 Iustin Pop
    if self.op.names:
1987 c8d8b4c8 Iustin Pop
      self.wanted = _GetWantedNodes(self, self.op.names)
1988 35705d8f Guido Trotter
    else:
1989 c8d8b4c8 Iustin Pop
      self.wanted = locking.ALL_SET
1990 c8d8b4c8 Iustin Pop
1991 bc8e4a1a Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
1992 bc8e4a1a Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
1993 c8d8b4c8 Iustin Pop
    if self.do_locking:
1994 c8d8b4c8 Iustin Pop
      # if we don't request only static fields, we need to lock the nodes
1995 c8d8b4c8 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = self.wanted
1996 c8d8b4c8 Iustin Pop
1997 35705d8f Guido Trotter
1998 35705d8f Guido Trotter
  def CheckPrereq(self):
1999 35705d8f Guido Trotter
    """Check prerequisites.
2000 35705d8f Guido Trotter

2001 35705d8f Guido Trotter
    """
2002 c8d8b4c8 Iustin Pop
    # The validation of the node list is done in the _GetWantedNodes,
2003 c8d8b4c8 Iustin Pop
    # if non empty, and if empty, there's no validation to do
2004 c8d8b4c8 Iustin Pop
    pass
2005 a8083063 Iustin Pop
2006 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2007 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
2008 a8083063 Iustin Pop

2009 a8083063 Iustin Pop
    """
2010 c8d8b4c8 Iustin Pop
    all_info = self.cfg.GetAllNodesInfo()
2011 c8d8b4c8 Iustin Pop
    if self.do_locking:
2012 c8d8b4c8 Iustin Pop
      nodenames = self.acquired_locks[locking.LEVEL_NODE]
2013 3fa93523 Guido Trotter
    elif self.wanted != locking.ALL_SET:
2014 3fa93523 Guido Trotter
      nodenames = self.wanted
2015 3fa93523 Guido Trotter
      missing = set(nodenames).difference(all_info.keys())
2016 3fa93523 Guido Trotter
      if missing:
2017 7b3a8fb5 Iustin Pop
        raise errors.OpExecError(
2018 3fa93523 Guido Trotter
          "Some nodes were removed before retrieving their data: %s" % missing)
2019 c8d8b4c8 Iustin Pop
    else:
2020 c8d8b4c8 Iustin Pop
      nodenames = all_info.keys()
2021 c1f1cbb2 Iustin Pop
2022 c1f1cbb2 Iustin Pop
    nodenames = utils.NiceSort(nodenames)
2023 c8d8b4c8 Iustin Pop
    nodelist = [all_info[name] for name in nodenames]
2024 a8083063 Iustin Pop
2025 a8083063 Iustin Pop
    # begin data gathering
2026 a8083063 Iustin Pop
2027 bc8e4a1a Iustin Pop
    if self.do_node_query:
2028 a8083063 Iustin Pop
      live_data = {}
2029 72737a7f Iustin Pop
      node_data = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
2030 72737a7f Iustin Pop
                                          self.cfg.GetHypervisorType())
2031 a8083063 Iustin Pop
      for name in nodenames:
2032 781de953 Iustin Pop
        nodeinfo = node_data[name]
2033 781de953 Iustin Pop
        if not nodeinfo.failed and nodeinfo.data:
2034 781de953 Iustin Pop
          nodeinfo = nodeinfo.data
2035 d599d686 Iustin Pop
          fn = utils.TryConvert
2036 a8083063 Iustin Pop
          live_data[name] = {
2037 d599d686 Iustin Pop
            "mtotal": fn(int, nodeinfo.get('memory_total', None)),
2038 d599d686 Iustin Pop
            "mnode": fn(int, nodeinfo.get('memory_dom0', None)),
2039 d599d686 Iustin Pop
            "mfree": fn(int, nodeinfo.get('memory_free', None)),
2040 d599d686 Iustin Pop
            "dtotal": fn(int, nodeinfo.get('vg_size', None)),
2041 d599d686 Iustin Pop
            "dfree": fn(int, nodeinfo.get('vg_free', None)),
2042 d599d686 Iustin Pop
            "ctotal": fn(int, nodeinfo.get('cpu_total', None)),
2043 d599d686 Iustin Pop
            "bootid": nodeinfo.get('bootid', None),
2044 0105bad3 Iustin Pop
            "cnodes": fn(int, nodeinfo.get('cpu_nodes', None)),
2045 0105bad3 Iustin Pop
            "csockets": fn(int, nodeinfo.get('cpu_sockets', None)),
2046 a8083063 Iustin Pop
            }
2047 a8083063 Iustin Pop
        else:
2048 a8083063 Iustin Pop
          live_data[name] = {}
2049 a8083063 Iustin Pop
    else:
2050 a8083063 Iustin Pop
      live_data = dict.fromkeys(nodenames, {})
2051 a8083063 Iustin Pop
2052 ec223efb Iustin Pop
    node_to_primary = dict([(name, set()) for name in nodenames])
2053 ec223efb Iustin Pop
    node_to_secondary = dict([(name, set()) for name in nodenames])
2054 a8083063 Iustin Pop
2055 ec223efb Iustin Pop
    inst_fields = frozenset(("pinst_cnt", "pinst_list",
2056 ec223efb Iustin Pop
                             "sinst_cnt", "sinst_list"))
2057 ec223efb Iustin Pop
    if inst_fields & frozenset(self.op.output_fields):
2058 a8083063 Iustin Pop
      instancelist = self.cfg.GetInstanceList()
2059 a8083063 Iustin Pop
2060 ec223efb Iustin Pop
      for instance_name in instancelist:
2061 ec223efb Iustin Pop
        inst = self.cfg.GetInstanceInfo(instance_name)
2062 ec223efb Iustin Pop
        if inst.primary_node in node_to_primary:
2063 ec223efb Iustin Pop
          node_to_primary[inst.primary_node].add(inst.name)
2064 ec223efb Iustin Pop
        for secnode in inst.secondary_nodes:
2065 ec223efb Iustin Pop
          if secnode in node_to_secondary:
2066 ec223efb Iustin Pop
            node_to_secondary[secnode].add(inst.name)
2067 a8083063 Iustin Pop
2068 0e67cdbe Iustin Pop
    master_node = self.cfg.GetMasterNode()
2069 0e67cdbe Iustin Pop
2070 a8083063 Iustin Pop
    # end data gathering
2071 a8083063 Iustin Pop
2072 a8083063 Iustin Pop
    output = []
2073 a8083063 Iustin Pop
    for node in nodelist:
2074 a8083063 Iustin Pop
      node_output = []
2075 a8083063 Iustin Pop
      for field in self.op.output_fields:
2076 a8083063 Iustin Pop
        if field == "name":
2077 a8083063 Iustin Pop
          val = node.name
2078 ec223efb Iustin Pop
        elif field == "pinst_list":
2079 ec223efb Iustin Pop
          val = list(node_to_primary[node.name])
2080 ec223efb Iustin Pop
        elif field == "sinst_list":
2081 ec223efb Iustin Pop
          val = list(node_to_secondary[node.name])
2082 ec223efb Iustin Pop
        elif field == "pinst_cnt":
2083 ec223efb Iustin Pop
          val = len(node_to_primary[node.name])
2084 ec223efb Iustin Pop
        elif field == "sinst_cnt":
2085 ec223efb Iustin Pop
          val = len(node_to_secondary[node.name])
2086 a8083063 Iustin Pop
        elif field == "pip":
2087 a8083063 Iustin Pop
          val = node.primary_ip
2088 a8083063 Iustin Pop
        elif field == "sip":
2089 a8083063 Iustin Pop
          val = node.secondary_ip
2090 130a6a6f Iustin Pop
        elif field == "tags":
2091 130a6a6f Iustin Pop
          val = list(node.GetTags())
2092 38d7239a Iustin Pop
        elif field == "serial_no":
2093 38d7239a Iustin Pop
          val = node.serial_no
2094 0e67cdbe Iustin Pop
        elif field == "master_candidate":
2095 0e67cdbe Iustin Pop
          val = node.master_candidate
2096 0e67cdbe Iustin Pop
        elif field == "master":
2097 0e67cdbe Iustin Pop
          val = node.name == master_node
2098 9ddb5e45 Iustin Pop
        elif field == "offline":
2099 9ddb5e45 Iustin Pop
          val = node.offline
2100 0b2454b9 Iustin Pop
        elif field == "drained":
2101 0b2454b9 Iustin Pop
          val = node.drained
2102 31bf511f Iustin Pop
        elif self._FIELDS_DYNAMIC.Matches(field):
2103 ec223efb Iustin Pop
          val = live_data[node.name].get(field, None)
2104 c120ff34 Iustin Pop
        elif field == "role":
2105 c120ff34 Iustin Pop
          if node.name == master_node:
2106 c120ff34 Iustin Pop
            val = "M"
2107 c120ff34 Iustin Pop
          elif node.master_candidate:
2108 c120ff34 Iustin Pop
            val = "C"
2109 c120ff34 Iustin Pop
          elif node.drained:
2110 c120ff34 Iustin Pop
            val = "D"
2111 c120ff34 Iustin Pop
          elif node.offline:
2112 c120ff34 Iustin Pop
            val = "O"
2113 c120ff34 Iustin Pop
          else:
2114 c120ff34 Iustin Pop
            val = "R"
2115 a8083063 Iustin Pop
        else:
2116 3ecf6786 Iustin Pop
          raise errors.ParameterError(field)
2117 a8083063 Iustin Pop
        node_output.append(val)
2118 a8083063 Iustin Pop
      output.append(node_output)
2119 a8083063 Iustin Pop
2120 a8083063 Iustin Pop
    return output
2121 a8083063 Iustin Pop
2122 a8083063 Iustin Pop
2123 dcb93971 Michael Hanselmann
class LUQueryNodeVolumes(NoHooksLU):
2124 dcb93971 Michael Hanselmann
  """Logical unit for getting volumes on node(s).
2125 dcb93971 Michael Hanselmann

2126 dcb93971 Michael Hanselmann
  """
2127 dcb93971 Michael Hanselmann
  _OP_REQP = ["nodes", "output_fields"]
2128 21a15682 Guido Trotter
  REQ_BGL = False
2129 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
2130 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("node")
2131 21a15682 Guido Trotter
2132 21a15682 Guido Trotter
  def ExpandNames(self):
2133 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2134 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2135 21a15682 Guido Trotter
                       selected=self.op.output_fields)
2136 21a15682 Guido Trotter
2137 21a15682 Guido Trotter
    self.needed_locks = {}
2138 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
2139 21a15682 Guido Trotter
    if not self.op.nodes:
2140 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
2141 21a15682 Guido Trotter
    else:
2142 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
2143 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
2144 dcb93971 Michael Hanselmann
2145 dcb93971 Michael Hanselmann
  def CheckPrereq(self):
2146 dcb93971 Michael Hanselmann
    """Check prerequisites.
2147 dcb93971 Michael Hanselmann

2148 dcb93971 Michael Hanselmann
    This checks that the fields required are valid output fields.
2149 dcb93971 Michael Hanselmann

2150 dcb93971 Michael Hanselmann
    """
2151 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
2152 dcb93971 Michael Hanselmann
2153 dcb93971 Michael Hanselmann
  def Exec(self, feedback_fn):
2154 dcb93971 Michael Hanselmann
    """Computes the list of nodes and their attributes.
2155 dcb93971 Michael Hanselmann

2156 dcb93971 Michael Hanselmann
    """
2157 a7ba5e53 Iustin Pop
    nodenames = self.nodes
2158 72737a7f Iustin Pop
    volumes = self.rpc.call_node_volumes(nodenames)
2159 dcb93971 Michael Hanselmann
2160 dcb93971 Michael Hanselmann
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
2161 dcb93971 Michael Hanselmann
             in self.cfg.GetInstanceList()]
2162 dcb93971 Michael Hanselmann
2163 dcb93971 Michael Hanselmann
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
2164 dcb93971 Michael Hanselmann
2165 dcb93971 Michael Hanselmann
    output = []
2166 dcb93971 Michael Hanselmann
    for node in nodenames:
2167 781de953 Iustin Pop
      if node not in volumes or volumes[node].failed or not volumes[node].data:
2168 37d19eb2 Michael Hanselmann
        continue
2169 37d19eb2 Michael Hanselmann
2170 781de953 Iustin Pop
      node_vols = volumes[node].data[:]
2171 dcb93971 Michael Hanselmann
      node_vols.sort(key=lambda vol: vol['dev'])
2172 dcb93971 Michael Hanselmann
2173 dcb93971 Michael Hanselmann
      for vol in node_vols:
2174 dcb93971 Michael Hanselmann
        node_output = []
2175 dcb93971 Michael Hanselmann
        for field in self.op.output_fields:
2176 dcb93971 Michael Hanselmann
          if field == "node":
2177 dcb93971 Michael Hanselmann
            val = node
2178 dcb93971 Michael Hanselmann
          elif field == "phys":
2179 dcb93971 Michael Hanselmann
            val = vol['dev']
2180 dcb93971 Michael Hanselmann
          elif field == "vg":
2181 dcb93971 Michael Hanselmann
            val = vol['vg']
2182 dcb93971 Michael Hanselmann
          elif field == "name":
2183 dcb93971 Michael Hanselmann
            val = vol['name']
2184 dcb93971 Michael Hanselmann
          elif field == "size":
2185 dcb93971 Michael Hanselmann
            val = int(float(vol['size']))
2186 dcb93971 Michael Hanselmann
          elif field == "instance":
2187 dcb93971 Michael Hanselmann
            for inst in ilist:
2188 dcb93971 Michael Hanselmann
              if node not in lv_by_node[inst]:
2189 dcb93971 Michael Hanselmann
                continue
2190 dcb93971 Michael Hanselmann
              if vol['name'] in lv_by_node[inst][node]:
2191 dcb93971 Michael Hanselmann
                val = inst.name
2192 dcb93971 Michael Hanselmann
                break
2193 dcb93971 Michael Hanselmann
            else:
2194 dcb93971 Michael Hanselmann
              val = '-'
2195 dcb93971 Michael Hanselmann
          else:
2196 3ecf6786 Iustin Pop
            raise errors.ParameterError(field)
2197 dcb93971 Michael Hanselmann
          node_output.append(str(val))
2198 dcb93971 Michael Hanselmann
2199 dcb93971 Michael Hanselmann
        output.append(node_output)
2200 dcb93971 Michael Hanselmann
2201 dcb93971 Michael Hanselmann
    return output
2202 dcb93971 Michael Hanselmann
2203 dcb93971 Michael Hanselmann
2204 a8083063 Iustin Pop
class LUAddNode(LogicalUnit):
2205 a8083063 Iustin Pop
  """Logical unit for adding node to the cluster.
2206 a8083063 Iustin Pop

2207 a8083063 Iustin Pop
  """
2208 a8083063 Iustin Pop
  HPATH = "node-add"
2209 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2210 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
2211 a8083063 Iustin Pop
2212 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2213 a8083063 Iustin Pop
    """Build hooks env.
2214 a8083063 Iustin Pop

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

2217 a8083063 Iustin Pop
    """
2218 a8083063 Iustin Pop
    env = {
2219 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
2220 a8083063 Iustin Pop
      "NODE_NAME": self.op.node_name,
2221 a8083063 Iustin Pop
      "NODE_PIP": self.op.primary_ip,
2222 a8083063 Iustin Pop
      "NODE_SIP": self.op.secondary_ip,
2223 a8083063 Iustin Pop
      }
2224 a8083063 Iustin Pop
    nodes_0 = self.cfg.GetNodeList()
2225 a8083063 Iustin Pop
    nodes_1 = nodes_0 + [self.op.node_name, ]
2226 a8083063 Iustin Pop
    return env, nodes_0, nodes_1
2227 a8083063 Iustin Pop
2228 a8083063 Iustin Pop
  def CheckPrereq(self):
2229 a8083063 Iustin Pop
    """Check prerequisites.
2230 a8083063 Iustin Pop

2231 a8083063 Iustin Pop
    This checks:
2232 a8083063 Iustin Pop
     - the new node is not already in the config
2233 a8083063 Iustin Pop
     - it is resolvable
2234 a8083063 Iustin Pop
     - its parameters (single/dual homed) matches the cluster
2235 a8083063 Iustin Pop

2236 5bbd3f7f Michael Hanselmann
    Any errors are signaled by raising errors.OpPrereqError.
2237 a8083063 Iustin Pop

2238 a8083063 Iustin Pop
    """
2239 a8083063 Iustin Pop
    node_name = self.op.node_name
2240 a8083063 Iustin Pop
    cfg = self.cfg
2241 a8083063 Iustin Pop
2242 89e1fc26 Iustin Pop
    dns_data = utils.HostInfo(node_name)
2243 a8083063 Iustin Pop
2244 bcf043c9 Iustin Pop
    node = dns_data.name
2245 bcf043c9 Iustin Pop
    primary_ip = self.op.primary_ip = dns_data.ip
2246 a8083063 Iustin Pop
    secondary_ip = getattr(self.op, "secondary_ip", None)
2247 a8083063 Iustin Pop
    if secondary_ip is None:
2248 a8083063 Iustin Pop
      secondary_ip = primary_ip
2249 a8083063 Iustin Pop
    if not utils.IsValidIP(secondary_ip):
2250 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Invalid secondary IP given")
2251 a8083063 Iustin Pop
    self.op.secondary_ip = secondary_ip
2252 e7c6e02b Michael Hanselmann
2253 a8083063 Iustin Pop
    node_list = cfg.GetNodeList()
2254 e7c6e02b Michael Hanselmann
    if not self.op.readd and node in node_list:
2255 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is already in the configuration" %
2256 e7c6e02b Michael Hanselmann
                                 node)
2257 e7c6e02b Michael Hanselmann
    elif self.op.readd and node not in node_list:
2258 e7c6e02b Michael Hanselmann
      raise errors.OpPrereqError("Node %s is not in the configuration" % node)
2259 a8083063 Iustin Pop
2260 a8083063 Iustin Pop
    for existing_node_name in node_list:
2261 a8083063 Iustin Pop
      existing_node = cfg.GetNodeInfo(existing_node_name)
2262 e7c6e02b Michael Hanselmann
2263 e7c6e02b Michael Hanselmann
      if self.op.readd and node == existing_node_name:
2264 e7c6e02b Michael Hanselmann
        if (existing_node.primary_ip != primary_ip or
2265 e7c6e02b Michael Hanselmann
            existing_node.secondary_ip != secondary_ip):
2266 e7c6e02b Michael Hanselmann
          raise errors.OpPrereqError("Readded node doesn't have the same IP"
2267 e7c6e02b Michael Hanselmann
                                     " address configuration as before")
2268 e7c6e02b Michael Hanselmann
        continue
2269 e7c6e02b Michael Hanselmann
2270 a8083063 Iustin Pop
      if (existing_node.primary_ip == primary_ip or
2271 a8083063 Iustin Pop
          existing_node.secondary_ip == primary_ip or
2272 a8083063 Iustin Pop
          existing_node.primary_ip == secondary_ip or
2273 a8083063 Iustin Pop
          existing_node.secondary_ip == secondary_ip):
2274 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("New node ip address(es) conflict with"
2275 3ecf6786 Iustin Pop
                                   " existing node %s" % existing_node.name)
2276 a8083063 Iustin Pop
2277 a8083063 Iustin Pop
    # check that the type of the node (single versus dual homed) is the
2278 a8083063 Iustin Pop
    # same as for the master
2279 d6a02168 Michael Hanselmann
    myself = cfg.GetNodeInfo(self.cfg.GetMasterNode())
2280 a8083063 Iustin Pop
    master_singlehomed = myself.secondary_ip == myself.primary_ip
2281 a8083063 Iustin Pop
    newbie_singlehomed = secondary_ip == primary_ip
2282 a8083063 Iustin Pop
    if master_singlehomed != newbie_singlehomed:
2283 a8083063 Iustin Pop
      if master_singlehomed:
2284 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has no private ip but the"
2285 3ecf6786 Iustin Pop
                                   " new node has one")
2286 a8083063 Iustin Pop
      else:
2287 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The master has a private ip but the"
2288 3ecf6786 Iustin Pop
                                   " new node doesn't have one")
2289 a8083063 Iustin Pop
2290 5bbd3f7f Michael Hanselmann
    # checks reachability
2291 b15d625f Iustin Pop
    if not utils.TcpPing(primary_ip, constants.DEFAULT_NODED_PORT):
2292 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Node not reachable by ping")
2293 a8083063 Iustin Pop
2294 a8083063 Iustin Pop
    if not newbie_singlehomed:
2295 a8083063 Iustin Pop
      # check reachability from my secondary ip to newbie's secondary ip
2296 b15d625f Iustin Pop
      if not utils.TcpPing(secondary_ip, constants.DEFAULT_NODED_PORT,
2297 b15d625f Iustin Pop
                           source=myself.secondary_ip):
2298 f4bc1f2c Michael Hanselmann
        raise errors.OpPrereqError("Node secondary ip not reachable by TCP"
2299 f4bc1f2c Michael Hanselmann
                                   " based ping to noded port")
2300 a8083063 Iustin Pop
2301 0fff97e9 Guido Trotter
    cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2302 a8ae3eb5 Iustin Pop
    if self.op.readd:
2303 a8ae3eb5 Iustin Pop
      exceptions = [node]
2304 a8ae3eb5 Iustin Pop
    else:
2305 a8ae3eb5 Iustin Pop
      exceptions = []
2306 a8ae3eb5 Iustin Pop
    mc_now, mc_max = self.cfg.GetMasterCandidateStats(exceptions)
2307 a8ae3eb5 Iustin Pop
    # the new node will increase mc_max with one, so:
2308 a8ae3eb5 Iustin Pop
    mc_max = min(mc_max + 1, cp_size)
2309 a8ae3eb5 Iustin Pop
    self.master_candidate = mc_now < mc_max
2310 0fff97e9 Guido Trotter
2311 a8ae3eb5 Iustin Pop
    if self.op.readd:
2312 a8ae3eb5 Iustin Pop
      self.new_node = self.cfg.GetNodeInfo(node)
2313 a8ae3eb5 Iustin Pop
      assert self.new_node is not None, "Can't retrieve locked node %s" % node
2314 a8ae3eb5 Iustin Pop
    else:
2315 a8ae3eb5 Iustin Pop
      self.new_node = objects.Node(name=node,
2316 a8ae3eb5 Iustin Pop
                                   primary_ip=primary_ip,
2317 a8ae3eb5 Iustin Pop
                                   secondary_ip=secondary_ip,
2318 a8ae3eb5 Iustin Pop
                                   master_candidate=self.master_candidate,
2319 a8ae3eb5 Iustin Pop
                                   offline=False, drained=False)
2320 a8083063 Iustin Pop
2321 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2322 a8083063 Iustin Pop
    """Adds the new node to the cluster.
2323 a8083063 Iustin Pop

2324 a8083063 Iustin Pop
    """
2325 a8083063 Iustin Pop
    new_node = self.new_node
2326 a8083063 Iustin Pop
    node = new_node.name
2327 a8083063 Iustin Pop
2328 a8ae3eb5 Iustin Pop
    # for re-adds, reset the offline/drained/master-candidate flags;
2329 a8ae3eb5 Iustin Pop
    # we need to reset here, otherwise offline would prevent RPC calls
2330 a8ae3eb5 Iustin Pop
    # later in the procedure; this also means that if the re-add
2331 a8ae3eb5 Iustin Pop
    # fails, we are left with a non-offlined, broken node
2332 a8ae3eb5 Iustin Pop
    if self.op.readd:
2333 a8ae3eb5 Iustin Pop
      new_node.drained = new_node.offline = False
2334 a8ae3eb5 Iustin Pop
      self.LogInfo("Readding a node, the offline/drained flags were reset")
2335 a8ae3eb5 Iustin Pop
      # if we demote the node, we do cleanup later in the procedure
2336 a8ae3eb5 Iustin Pop
      new_node.master_candidate = self.master_candidate
2337 a8ae3eb5 Iustin Pop
2338 a8ae3eb5 Iustin Pop
    # notify the user about any possible mc promotion
2339 a8ae3eb5 Iustin Pop
    if new_node.master_candidate:
2340 a8ae3eb5 Iustin Pop
      self.LogInfo("Node will be a master candidate")
2341 a8ae3eb5 Iustin Pop
2342 a8083063 Iustin Pop
    # check connectivity
2343 72737a7f Iustin Pop
    result = self.rpc.call_version([node])[node]
2344 781de953 Iustin Pop
    result.Raise()
2345 781de953 Iustin Pop
    if result.data:
2346 781de953 Iustin Pop
      if constants.PROTOCOL_VERSION == result.data:
2347 9a4f63d1 Iustin Pop
        logging.info("Communication to node %s fine, sw version %s match",
2348 781de953 Iustin Pop
                     node, result.data)
2349 a8083063 Iustin Pop
      else:
2350 3ecf6786 Iustin Pop
        raise errors.OpExecError("Version mismatch master version %s,"
2351 3ecf6786 Iustin Pop
                                 " node version %s" %
2352 781de953 Iustin Pop
                                 (constants.PROTOCOL_VERSION, result.data))
2353 a8083063 Iustin Pop
    else:
2354 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot get version from the new node")
2355 a8083063 Iustin Pop
2356 a8083063 Iustin Pop
    # setup ssh on node
2357 9a4f63d1 Iustin Pop
    logging.info("Copy ssh key to node %s", node)
2358 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
2359 a8083063 Iustin Pop
    keyarray = []
2360 70d9e3d8 Iustin Pop
    keyfiles = [constants.SSH_HOST_DSA_PRIV, constants.SSH_HOST_DSA_PUB,
2361 70d9e3d8 Iustin Pop
                constants.SSH_HOST_RSA_PRIV, constants.SSH_HOST_RSA_PUB,
2362 70d9e3d8 Iustin Pop
                priv_key, pub_key]
2363 a8083063 Iustin Pop
2364 a8083063 Iustin Pop
    for i in keyfiles:
2365 a8083063 Iustin Pop
      f = open(i, 'r')
2366 a8083063 Iustin Pop
      try:
2367 a8083063 Iustin Pop
        keyarray.append(f.read())
2368 a8083063 Iustin Pop
      finally:
2369 a8083063 Iustin Pop
        f.close()
2370 a8083063 Iustin Pop
2371 72737a7f Iustin Pop
    result = self.rpc.call_node_add(node, keyarray[0], keyarray[1],
2372 72737a7f Iustin Pop
                                    keyarray[2],
2373 72737a7f Iustin Pop
                                    keyarray[3], keyarray[4], keyarray[5])
2374 a8083063 Iustin Pop
2375 a1b805fb Iustin Pop
    msg = result.RemoteFailMsg()
2376 a1b805fb Iustin Pop
    if msg:
2377 a1b805fb Iustin Pop
      raise errors.OpExecError("Cannot transfer ssh keys to the"
2378 a1b805fb Iustin Pop
                               " new node: %s" % msg)
2379 a8083063 Iustin Pop
2380 a8083063 Iustin Pop
    # Add node to our /etc/hosts, and add key to known_hosts
2381 aafb303d Guido Trotter
    if self.cfg.GetClusterInfo().modify_etc_hosts:
2382 aafb303d Guido Trotter
      utils.AddHostToEtcHosts(new_node.name)
2383 c8a0948f Michael Hanselmann
2384 a8083063 Iustin Pop
    if new_node.secondary_ip != new_node.primary_ip:
2385 781de953 Iustin Pop
      result = self.rpc.call_node_has_ip_address(new_node.name,
2386 781de953 Iustin Pop
                                                 new_node.secondary_ip)
2387 781de953 Iustin Pop
      if result.failed or not result.data:
2388 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Node claims it doesn't have the secondary ip"
2389 f4bc1f2c Michael Hanselmann
                                 " you gave (%s). Please fix and re-run this"
2390 f4bc1f2c Michael Hanselmann
                                 " command." % new_node.secondary_ip)
2391 a8083063 Iustin Pop
2392 d6a02168 Michael Hanselmann
    node_verify_list = [self.cfg.GetMasterNode()]
2393 5c0527ed Guido Trotter
    node_verify_param = {
2394 5c0527ed Guido Trotter
      'nodelist': [node],
2395 5c0527ed Guido Trotter
      # TODO: do a node-net-test as well?
2396 5c0527ed Guido Trotter
    }
2397 5c0527ed Guido Trotter
2398 72737a7f Iustin Pop
    result = self.rpc.call_node_verify(node_verify_list, node_verify_param,
2399 72737a7f Iustin Pop
                                       self.cfg.GetClusterName())
2400 5c0527ed Guido Trotter
    for verifier in node_verify_list:
2401 f08ce603 Guido Trotter
      if result[verifier].failed or not result[verifier].data:
2402 5c0527ed Guido Trotter
        raise errors.OpExecError("Cannot communicate with %s's node daemon"
2403 5c0527ed Guido Trotter
                                 " for remote verification" % verifier)
2404 781de953 Iustin Pop
      if result[verifier].data['nodelist']:
2405 781de953 Iustin Pop
        for failed in result[verifier].data['nodelist']:
2406 5c0527ed Guido Trotter
          feedback_fn("ssh/hostname verification failed %s -> %s" %
2407 bafc1d90 Iustin Pop
                      (verifier, result[verifier].data['nodelist'][failed]))
2408 5c0527ed Guido Trotter
        raise errors.OpExecError("ssh/hostname verification failed.")
2409 ff98055b Iustin Pop
2410 a8083063 Iustin Pop
    # Distribute updated /etc/hosts and known_hosts to all nodes,
2411 a8083063 Iustin Pop
    # including the node just added
2412 d6a02168 Michael Hanselmann
    myself = self.cfg.GetNodeInfo(self.cfg.GetMasterNode())
2413 102b115b Michael Hanselmann
    dist_nodes = self.cfg.GetNodeList()
2414 102b115b Michael Hanselmann
    if not self.op.readd:
2415 102b115b Michael Hanselmann
      dist_nodes.append(node)
2416 a8083063 Iustin Pop
    if myself.name in dist_nodes:
2417 a8083063 Iustin Pop
      dist_nodes.remove(myself.name)
2418 a8083063 Iustin Pop
2419 9a4f63d1 Iustin Pop
    logging.debug("Copying hosts and known_hosts to all nodes")
2420 107711b0 Michael Hanselmann
    for fname in (constants.ETC_HOSTS, constants.SSH_KNOWN_HOSTS_FILE):
2421 72737a7f Iustin Pop
      result = self.rpc.call_upload_file(dist_nodes, fname)
2422 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
2423 ec85e3d5 Iustin Pop
        if to_result.failed or not to_result.data:
2424 9a4f63d1 Iustin Pop
          logging.error("Copy of file %s to node %s failed", fname, to_node)
2425 a8083063 Iustin Pop
2426 d6a02168 Michael Hanselmann
    to_copy = []
2427 2928f08d Guido Trotter
    enabled_hypervisors = self.cfg.GetClusterInfo().enabled_hypervisors
2428 ccd905ac Guido Trotter
    if constants.HTS_COPY_VNC_PASSWORD.intersection(enabled_hypervisors):
2429 2a6469d5 Alexander Schreiber
      to_copy.append(constants.VNC_PASSWORD_FILE)
2430 2928f08d Guido Trotter
2431 a8083063 Iustin Pop
    for fname in to_copy:
2432 72737a7f Iustin Pop
      result = self.rpc.call_upload_file([node], fname)
2433 781de953 Iustin Pop
      if result[node].failed or not result[node]:
2434 9a4f63d1 Iustin Pop
        logging.error("Could not copy file %s to node %s", fname, node)
2435 a8083063 Iustin Pop
2436 d8470559 Michael Hanselmann
    if self.op.readd:
2437 d8470559 Michael Hanselmann
      self.context.ReaddNode(new_node)
2438 a8ae3eb5 Iustin Pop
      # make sure we redistribute the config
2439 a8ae3eb5 Iustin Pop
      self.cfg.Update(new_node)
2440 a8ae3eb5 Iustin Pop
      # and make sure the new node will not have old files around
2441 a8ae3eb5 Iustin Pop
      if not new_node.master_candidate:
2442 a8ae3eb5 Iustin Pop
        result = self.rpc.call_node_demote_from_mc(new_node.name)
2443 a8ae3eb5 Iustin Pop
        msg = result.RemoteFailMsg()
2444 a8ae3eb5 Iustin Pop
        if msg:
2445 a8ae3eb5 Iustin Pop
          self.LogWarning("Node failed to demote itself from master"
2446 a8ae3eb5 Iustin Pop
                          " candidate status: %s" % msg)
2447 d8470559 Michael Hanselmann
    else:
2448 d8470559 Michael Hanselmann
      self.context.AddNode(new_node)
2449 a8083063 Iustin Pop
2450 a8083063 Iustin Pop
2451 b31c8676 Iustin Pop
class LUSetNodeParams(LogicalUnit):
2452 b31c8676 Iustin Pop
  """Modifies the parameters of a node.
2453 b31c8676 Iustin Pop

2454 b31c8676 Iustin Pop
  """
2455 b31c8676 Iustin Pop
  HPATH = "node-modify"
2456 b31c8676 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2457 b31c8676 Iustin Pop
  _OP_REQP = ["node_name"]
2458 b31c8676 Iustin Pop
  REQ_BGL = False
2459 b31c8676 Iustin Pop
2460 b31c8676 Iustin Pop
  def CheckArguments(self):
2461 b31c8676 Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2462 b31c8676 Iustin Pop
    if node_name is None:
2463 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2464 b31c8676 Iustin Pop
    self.op.node_name = node_name
2465 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'master_candidate')
2466 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'offline')
2467 c9d443ea Iustin Pop
    _CheckBooleanOpField(self.op, 'drained')
2468 c9d443ea Iustin Pop
    all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
2469 c9d443ea Iustin Pop
    if all_mods.count(None) == 3:
2470 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Please pass at least one modification")
2471 c9d443ea Iustin Pop
    if all_mods.count(True) > 1:
2472 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Can't set the node into more than one"
2473 c9d443ea Iustin Pop
                                 " state at the same time")
2474 b31c8676 Iustin Pop
2475 b31c8676 Iustin Pop
  def ExpandNames(self):
2476 b31c8676 Iustin Pop
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2477 b31c8676 Iustin Pop
2478 b31c8676 Iustin Pop
  def BuildHooksEnv(self):
2479 b31c8676 Iustin Pop
    """Build hooks env.
2480 b31c8676 Iustin Pop

2481 b31c8676 Iustin Pop
    This runs on the master node.
2482 b31c8676 Iustin Pop

2483 b31c8676 Iustin Pop
    """
2484 b31c8676 Iustin Pop
    env = {
2485 b31c8676 Iustin Pop
      "OP_TARGET": self.op.node_name,
2486 b31c8676 Iustin Pop
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2487 3a5ba66a Iustin Pop
      "OFFLINE": str(self.op.offline),
2488 c9d443ea Iustin Pop
      "DRAINED": str(self.op.drained),
2489 b31c8676 Iustin Pop
      }
2490 b31c8676 Iustin Pop
    nl = [self.cfg.GetMasterNode(),
2491 b31c8676 Iustin Pop
          self.op.node_name]
2492 b31c8676 Iustin Pop
    return env, nl, nl
2493 b31c8676 Iustin Pop
2494 b31c8676 Iustin Pop
  def CheckPrereq(self):
2495 b31c8676 Iustin Pop
    """Check prerequisites.
2496 b31c8676 Iustin Pop

2497 b31c8676 Iustin Pop
    This only checks the instance list against the existing names.
2498 b31c8676 Iustin Pop

2499 b31c8676 Iustin Pop
    """
2500 3a5ba66a Iustin Pop
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2501 b31c8676 Iustin Pop
2502 97c61d46 Iustin Pop
    if (self.op.master_candidate is not None or
2503 97c61d46 Iustin Pop
        self.op.drained is not None or
2504 97c61d46 Iustin Pop
        self.op.offline is not None):
2505 97c61d46 Iustin Pop
      # we can't change the master's node flags
2506 97c61d46 Iustin Pop
      if self.op.node_name == self.cfg.GetMasterNode():
2507 97c61d46 Iustin Pop
        raise errors.OpPrereqError("The master role can be changed"
2508 97c61d46 Iustin Pop
                                   " only via masterfailover")
2509 97c61d46 Iustin Pop
2510 c9d443ea Iustin Pop
    if ((self.op.master_candidate == False or self.op.offline == True or
2511 c9d443ea Iustin Pop
         self.op.drained == True) and node.master_candidate):
2512 3e83dd48 Iustin Pop
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2513 3a5ba66a Iustin Pop
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2514 3e83dd48 Iustin Pop
      if num_candidates <= cp_size:
2515 3e83dd48 Iustin Pop
        msg = ("Not enough master candidates (desired"
2516 3e83dd48 Iustin Pop
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2517 3a5ba66a Iustin Pop
        if self.op.force:
2518 3e83dd48 Iustin Pop
          self.LogWarning(msg)
2519 3e83dd48 Iustin Pop
        else:
2520 3e83dd48 Iustin Pop
          raise errors.OpPrereqError(msg)
2521 3e83dd48 Iustin Pop
2522 c9d443ea Iustin Pop
    if (self.op.master_candidate == True and
2523 c9d443ea Iustin Pop
        ((node.offline and not self.op.offline == False) or
2524 c9d443ea Iustin Pop
         (node.drained and not self.op.drained == False))):
2525 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
2526 949bdabe Iustin Pop
                                 " to master_candidate" % node.name)
2527 3a5ba66a Iustin Pop
2528 b31c8676 Iustin Pop
    return
2529 b31c8676 Iustin Pop
2530 b31c8676 Iustin Pop
  def Exec(self, feedback_fn):
2531 b31c8676 Iustin Pop
    """Modifies a node.
2532 b31c8676 Iustin Pop

2533 b31c8676 Iustin Pop
    """
2534 3a5ba66a Iustin Pop
    node = self.node
2535 b31c8676 Iustin Pop
2536 b31c8676 Iustin Pop
    result = []
2537 c9d443ea Iustin Pop
    changed_mc = False
2538 b31c8676 Iustin Pop
2539 3a5ba66a Iustin Pop
    if self.op.offline is not None:
2540 3a5ba66a Iustin Pop
      node.offline = self.op.offline
2541 3a5ba66a Iustin Pop
      result.append(("offline", str(self.op.offline)))
2542 c9d443ea Iustin Pop
      if self.op.offline == True:
2543 c9d443ea Iustin Pop
        if node.master_candidate:
2544 c9d443ea Iustin Pop
          node.master_candidate = False
2545 c9d443ea Iustin Pop
          changed_mc = True
2546 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to offline"))
2547 c9d443ea Iustin Pop
        if node.drained:
2548 c9d443ea Iustin Pop
          node.drained = False
2549 c9d443ea Iustin Pop
          result.append(("drained", "clear drained status due to offline"))
2550 3a5ba66a Iustin Pop
2551 b31c8676 Iustin Pop
    if self.op.master_candidate is not None:
2552 b31c8676 Iustin Pop
      node.master_candidate = self.op.master_candidate
2553 c9d443ea Iustin Pop
      changed_mc = True
2554 b31c8676 Iustin Pop
      result.append(("master_candidate", str(self.op.master_candidate)))
2555 56aa9fd5 Iustin Pop
      if self.op.master_candidate == False:
2556 56aa9fd5 Iustin Pop
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2557 0959c824 Iustin Pop
        msg = rrc.RemoteFailMsg()
2558 0959c824 Iustin Pop
        if msg:
2559 0959c824 Iustin Pop
          self.LogWarning("Node failed to demote itself: %s" % msg)
2560 b31c8676 Iustin Pop
2561 c9d443ea Iustin Pop
    if self.op.drained is not None:
2562 c9d443ea Iustin Pop
      node.drained = self.op.drained
2563 82e12743 Iustin Pop
      result.append(("drained", str(self.op.drained)))
2564 c9d443ea Iustin Pop
      if self.op.drained == True:
2565 c9d443ea Iustin Pop
        if node.master_candidate:
2566 c9d443ea Iustin Pop
          node.master_candidate = False
2567 c9d443ea Iustin Pop
          changed_mc = True
2568 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to drain"))
2569 dec0d9da Iustin Pop
          rrc = self.rpc.call_node_demote_from_mc(node.name)
2570 dec0d9da Iustin Pop
          msg = rrc.RemoteFailMsg()
2571 dec0d9da Iustin Pop
          if msg:
2572 dec0d9da Iustin Pop
            self.LogWarning("Node failed to demote itself: %s" % msg)
2573 c9d443ea Iustin Pop
        if node.offline:
2574 c9d443ea Iustin Pop
          node.offline = False
2575 c9d443ea Iustin Pop
          result.append(("offline", "clear offline status due to drain"))
2576 c9d443ea Iustin Pop
2577 b31c8676 Iustin Pop
    # this will trigger configuration file update, if needed
2578 b31c8676 Iustin Pop
    self.cfg.Update(node)
2579 b31c8676 Iustin Pop
    # this will trigger job queue propagation or cleanup
2580 c9d443ea Iustin Pop
    if changed_mc:
2581 3a26773f Iustin Pop
      self.context.ReaddNode(node)
2582 b31c8676 Iustin Pop
2583 b31c8676 Iustin Pop
    return result
2584 b31c8676 Iustin Pop
2585 b31c8676 Iustin Pop
2586 a8083063 Iustin Pop
class LUQueryClusterInfo(NoHooksLU):
2587 a8083063 Iustin Pop
  """Query cluster configuration.
2588 a8083063 Iustin Pop

2589 a8083063 Iustin Pop
  """
2590 a8083063 Iustin Pop
  _OP_REQP = []
2591 642339cf Guido Trotter
  REQ_BGL = False
2592 642339cf Guido Trotter
2593 642339cf Guido Trotter
  def ExpandNames(self):
2594 642339cf Guido Trotter
    self.needed_locks = {}
2595 a8083063 Iustin Pop
2596 a8083063 Iustin Pop
  def CheckPrereq(self):
2597 a8083063 Iustin Pop
    """No prerequsites needed for this LU.
2598 a8083063 Iustin Pop

2599 a8083063 Iustin Pop
    """
2600 a8083063 Iustin Pop
    pass
2601 a8083063 Iustin Pop
2602 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2603 a8083063 Iustin Pop
    """Return cluster config.
2604 a8083063 Iustin Pop

2605 a8083063 Iustin Pop
    """
2606 469f88e1 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
2607 a8083063 Iustin Pop
    result = {
2608 a8083063 Iustin Pop
      "software_version": constants.RELEASE_VERSION,
2609 a8083063 Iustin Pop
      "protocol_version": constants.PROTOCOL_VERSION,
2610 a8083063 Iustin Pop
      "config_version": constants.CONFIG_VERSION,
2611 a8083063 Iustin Pop
      "os_api_version": constants.OS_API_VERSION,
2612 a8083063 Iustin Pop
      "export_version": constants.EXPORT_VERSION,
2613 a8083063 Iustin Pop
      "architecture": (platform.architecture()[0], platform.machine()),
2614 469f88e1 Iustin Pop
      "name": cluster.cluster_name,
2615 469f88e1 Iustin Pop
      "master": cluster.master_node,
2616 02691904 Alexander Schreiber
      "default_hypervisor": cluster.default_hypervisor,
2617 469f88e1 Iustin Pop
      "enabled_hypervisors": cluster.enabled_hypervisors,
2618 b8810fec Michael Hanselmann
      "hvparams": dict([(hypervisor_name, cluster.hvparams[hypervisor_name])
2619 7c4d6c7b Michael Hanselmann
                        for hypervisor_name in cluster.enabled_hypervisors]),
2620 469f88e1 Iustin Pop
      "beparams": cluster.beparams,
2621 4b7735f9 Iustin Pop
      "candidate_pool_size": cluster.candidate_pool_size,
2622 7a56b411 Guido Trotter
      "default_bridge": cluster.default_bridge,
2623 7a56b411 Guido Trotter
      "master_netdev": cluster.master_netdev,
2624 7a56b411 Guido Trotter
      "volume_group_name": cluster.volume_group_name,
2625 7a56b411 Guido Trotter
      "file_storage_dir": cluster.file_storage_dir,
2626 a8083063 Iustin Pop
      }
2627 a8083063 Iustin Pop
2628 a8083063 Iustin Pop
    return result
2629 a8083063 Iustin Pop
2630 a8083063 Iustin Pop
2631 ae5849b5 Michael Hanselmann
class LUQueryConfigValues(NoHooksLU):
2632 ae5849b5 Michael Hanselmann
  """Return configuration values.
2633 a8083063 Iustin Pop

2634 a8083063 Iustin Pop
  """
2635 a8083063 Iustin Pop
  _OP_REQP = []
2636 642339cf Guido Trotter
  REQ_BGL = False
2637 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet()
2638 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2639 642339cf Guido Trotter
2640 642339cf Guido Trotter
  def ExpandNames(self):
2641 642339cf Guido Trotter
    self.needed_locks = {}
2642 a8083063 Iustin Pop
2643 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2644 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2645 ae5849b5 Michael Hanselmann
                       selected=self.op.output_fields)
2646 ae5849b5 Michael Hanselmann
2647 a8083063 Iustin Pop
  def CheckPrereq(self):
2648 a8083063 Iustin Pop
    """No prerequisites.
2649 a8083063 Iustin Pop

2650 a8083063 Iustin Pop
    """
2651 a8083063 Iustin Pop
    pass
2652 a8083063 Iustin Pop
2653 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2654 a8083063 Iustin Pop
    """Dump a representation of the cluster config to the standard output.
2655 a8083063 Iustin Pop

2656 a8083063 Iustin Pop
    """
2657 ae5849b5 Michael Hanselmann
    values = []
2658 ae5849b5 Michael Hanselmann
    for field in self.op.output_fields:
2659 ae5849b5 Michael Hanselmann
      if field == "cluster_name":
2660 3ccafd0e Iustin Pop
        entry = self.cfg.GetClusterName()
2661 ae5849b5 Michael Hanselmann
      elif field == "master_node":
2662 3ccafd0e Iustin Pop
        entry = self.cfg.GetMasterNode()
2663 3ccafd0e Iustin Pop
      elif field == "drain_flag":
2664 3ccafd0e Iustin Pop
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2665 ae5849b5 Michael Hanselmann
      else:
2666 ae5849b5 Michael Hanselmann
        raise errors.ParameterError(field)
2667 3ccafd0e Iustin Pop
      values.append(entry)
2668 ae5849b5 Michael Hanselmann
    return values
2669 a8083063 Iustin Pop
2670 a8083063 Iustin Pop
2671 a8083063 Iustin Pop
class LUActivateInstanceDisks(NoHooksLU):
2672 a8083063 Iustin Pop
  """Bring up an instance's disks.
2673 a8083063 Iustin Pop

2674 a8083063 Iustin Pop
  """
2675 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2676 f22a8ba3 Guido Trotter
  REQ_BGL = False
2677 f22a8ba3 Guido Trotter
2678 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2679 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2680 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2681 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2682 f22a8ba3 Guido Trotter
2683 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2684 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2685 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2686 a8083063 Iustin Pop
2687 a8083063 Iustin Pop
  def CheckPrereq(self):
2688 a8083063 Iustin Pop
    """Check prerequisites.
2689 a8083063 Iustin Pop

2690 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2691 a8083063 Iustin Pop

2692 a8083063 Iustin Pop
    """
2693 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2694 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2695 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2696 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2697 b4ec07f8 Iustin Pop
    if not hasattr(self.op, "ignore_size"):
2698 b4ec07f8 Iustin Pop
      self.op.ignore_size = False
2699 a8083063 Iustin Pop
2700 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2701 a8083063 Iustin Pop
    """Activate the disks.
2702 a8083063 Iustin Pop

2703 a8083063 Iustin Pop
    """
2704 b4ec07f8 Iustin Pop
    disks_ok, disks_info = \
2705 b4ec07f8 Iustin Pop
              _AssembleInstanceDisks(self, self.instance,
2706 b4ec07f8 Iustin Pop
                                     ignore_size=self.op.ignore_size)
2707 a8083063 Iustin Pop
    if not disks_ok:
2708 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot activate block devices")
2709 a8083063 Iustin Pop
2710 a8083063 Iustin Pop
    return disks_info
2711 a8083063 Iustin Pop
2712 a8083063 Iustin Pop
2713 e3443b36 Iustin Pop
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False,
2714 e3443b36 Iustin Pop
                           ignore_size=False):
2715 a8083063 Iustin Pop
  """Prepare the block devices for an instance.
2716 a8083063 Iustin Pop

2717 a8083063 Iustin Pop
  This sets up the block devices on all nodes.
2718 a8083063 Iustin Pop

2719 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
2720 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
2721 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
2722 e4376078 Iustin Pop
  @param instance: the instance for whose disks we assemble
2723 e4376078 Iustin Pop
  @type ignore_secondaries: boolean
2724 e4376078 Iustin Pop
  @param ignore_secondaries: if true, errors on secondary nodes
2725 e4376078 Iustin Pop
      won't result in an error return from the function
2726 e3443b36 Iustin Pop
  @type ignore_size: boolean
2727 e3443b36 Iustin Pop
  @param ignore_size: if true, the current known size of the disk
2728 e3443b36 Iustin Pop
      will not be used during the disk activation, useful for cases
2729 e3443b36 Iustin Pop
      when the size is wrong
2730 e4376078 Iustin Pop
  @return: False if the operation failed, otherwise a list of
2731 e4376078 Iustin Pop
      (host, instance_visible_name, node_visible_name)
2732 e4376078 Iustin Pop
      with the mapping from node devices to instance devices
2733 a8083063 Iustin Pop

2734 a8083063 Iustin Pop
  """
2735 a8083063 Iustin Pop
  device_info = []
2736 a8083063 Iustin Pop
  disks_ok = True
2737 fdbd668d Iustin Pop
  iname = instance.name
2738 fdbd668d Iustin Pop
  # With the two passes mechanism we try to reduce the window of
2739 fdbd668d Iustin Pop
  # opportunity for the race condition of switching DRBD to primary
2740 fdbd668d Iustin Pop
  # before handshaking occured, but we do not eliminate it
2741 fdbd668d Iustin Pop
2742 fdbd668d Iustin Pop
  # The proper fix would be to wait (with some limits) until the
2743 fdbd668d Iustin Pop
  # connection has been made and drbd transitions from WFConnection
2744 fdbd668d Iustin Pop
  # into any other network-connected state (Connected, SyncTarget,
2745 fdbd668d Iustin Pop
  # SyncSource, etc.)
2746 fdbd668d Iustin Pop
2747 fdbd668d Iustin Pop
  # 1st pass, assemble on all nodes in secondary mode
2748 a8083063 Iustin Pop
  for inst_disk in instance.disks:
2749 a8083063 Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2750 e3443b36 Iustin Pop
      if ignore_size:
2751 e3443b36 Iustin Pop
        node_disk = node_disk.Copy()
2752 e3443b36 Iustin Pop
        node_disk.UnsetSize()
2753 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2754 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, False)
2755 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2756 53c14ef1 Iustin Pop
      if msg:
2757 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2758 53c14ef1 Iustin Pop
                           " (is_primary=False, pass=1): %s",
2759 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2760 fdbd668d Iustin Pop
        if not ignore_secondaries:
2761 a8083063 Iustin Pop
          disks_ok = False
2762 fdbd668d Iustin Pop
2763 fdbd668d Iustin Pop
  # FIXME: race condition on drbd migration to primary
2764 fdbd668d Iustin Pop
2765 fdbd668d Iustin Pop
  # 2nd pass, do only the primary node
2766 fdbd668d Iustin Pop
  for inst_disk in instance.disks:
2767 fdbd668d Iustin Pop
    for node, node_disk in inst_disk.ComputeNodeTree(instance.primary_node):
2768 fdbd668d Iustin Pop
      if node != instance.primary_node:
2769 fdbd668d Iustin Pop
        continue
2770 e3443b36 Iustin Pop
      if ignore_size:
2771 e3443b36 Iustin Pop
        node_disk = node_disk.Copy()
2772 e3443b36 Iustin Pop
        node_disk.UnsetSize()
2773 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(node_disk, node)
2774 72737a7f Iustin Pop
      result = lu.rpc.call_blockdev_assemble(node, node_disk, iname, True)
2775 53c14ef1 Iustin Pop
      msg = result.RemoteFailMsg()
2776 53c14ef1 Iustin Pop
      if msg:
2777 86d9d3bb Iustin Pop
        lu.proc.LogWarning("Could not prepare block device %s on node %s"
2778 53c14ef1 Iustin Pop
                           " (is_primary=True, pass=2): %s",
2779 53c14ef1 Iustin Pop
                           inst_disk.iv_name, node, msg)
2780 fdbd668d Iustin Pop
        disks_ok = False
2781 1dff8e07 Iustin Pop
    device_info.append((instance.primary_node, inst_disk.iv_name,
2782 1dff8e07 Iustin Pop
                        result.payload))
2783 a8083063 Iustin Pop
2784 b352ab5b Iustin Pop
  # leave the disks configured for the primary node
2785 b352ab5b Iustin Pop
  # this is a workaround that would be fixed better by
2786 b352ab5b Iustin Pop
  # improving the logical/physical id handling
2787 b352ab5b Iustin Pop
  for disk in instance.disks:
2788 b9bddb6b Iustin Pop
    lu.cfg.SetDiskID(disk, instance.primary_node)
2789 b352ab5b Iustin Pop
2790 a8083063 Iustin Pop
  return disks_ok, device_info
2791 a8083063 Iustin Pop
2792 a8083063 Iustin Pop
2793 b9bddb6b Iustin Pop
def _StartInstanceDisks(lu, instance, force):
2794 3ecf6786 Iustin Pop
  """Start the disks of an instance.
2795 3ecf6786 Iustin Pop

2796 3ecf6786 Iustin Pop
  """
2797 7c4d6c7b Michael Hanselmann
  disks_ok, _ = _AssembleInstanceDisks(lu, instance,
2798 fe7b0351 Michael Hanselmann
                                           ignore_secondaries=force)
2799 fe7b0351 Michael Hanselmann
  if not disks_ok:
2800 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(lu, instance)
2801 fe7b0351 Michael Hanselmann
    if force is not None and not force:
2802 86d9d3bb Iustin Pop
      lu.proc.LogWarning("", hint="If the message above refers to a"
2803 86d9d3bb Iustin Pop
                         " secondary node,"
2804 86d9d3bb Iustin Pop
                         " you can retry the operation using '--force'.")
2805 3ecf6786 Iustin Pop
    raise errors.OpExecError("Disk consistency error")
2806 fe7b0351 Michael Hanselmann
2807 fe7b0351 Michael Hanselmann
2808 a8083063 Iustin Pop
class LUDeactivateInstanceDisks(NoHooksLU):
2809 a8083063 Iustin Pop
  """Shutdown an instance's disks.
2810 a8083063 Iustin Pop

2811 a8083063 Iustin Pop
  """
2812 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2813 f22a8ba3 Guido Trotter
  REQ_BGL = False
2814 f22a8ba3 Guido Trotter
2815 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2816 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2817 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2818 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2819 f22a8ba3 Guido Trotter
2820 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2821 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2822 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2823 a8083063 Iustin Pop
2824 a8083063 Iustin Pop
  def CheckPrereq(self):
2825 a8083063 Iustin Pop
    """Check prerequisites.
2826 a8083063 Iustin Pop

2827 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2828 a8083063 Iustin Pop

2829 a8083063 Iustin Pop
    """
2830 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2831 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2832 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2833 a8083063 Iustin Pop
2834 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2835 a8083063 Iustin Pop
    """Deactivate the disks
2836 a8083063 Iustin Pop

2837 a8083063 Iustin Pop
    """
2838 a8083063 Iustin Pop
    instance = self.instance
2839 b9bddb6b Iustin Pop
    _SafeShutdownInstanceDisks(self, instance)
2840 a8083063 Iustin Pop
2841 a8083063 Iustin Pop
2842 b9bddb6b Iustin Pop
def _SafeShutdownInstanceDisks(lu, instance):
2843 155d6c75 Guido Trotter
  """Shutdown block devices of an instance.
2844 155d6c75 Guido Trotter

2845 155d6c75 Guido Trotter
  This function checks if an instance is running, before calling
2846 155d6c75 Guido Trotter
  _ShutdownInstanceDisks.
2847 155d6c75 Guido Trotter

2848 155d6c75 Guido Trotter
  """
2849 72737a7f Iustin Pop
  ins_l = lu.rpc.call_instance_list([instance.primary_node],
2850 72737a7f Iustin Pop
                                      [instance.hypervisor])
2851 155d6c75 Guido Trotter
  ins_l = ins_l[instance.primary_node]
2852 781de953 Iustin Pop
  if ins_l.failed or not isinstance(ins_l.data, list):
2853 155d6c75 Guido Trotter
    raise errors.OpExecError("Can't contact node '%s'" %
2854 155d6c75 Guido Trotter
                             instance.primary_node)
2855 155d6c75 Guido Trotter
2856 781de953 Iustin Pop
  if instance.name in ins_l.data:
2857 155d6c75 Guido Trotter
    raise errors.OpExecError("Instance is running, can't shutdown"
2858 155d6c75 Guido Trotter
                             " block devices.")
2859 155d6c75 Guido Trotter
2860 b9bddb6b Iustin Pop
  _ShutdownInstanceDisks(lu, instance)
2861 a8083063 Iustin Pop
2862 a8083063 Iustin Pop
2863 b9bddb6b Iustin Pop
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2864 a8083063 Iustin Pop
  """Shutdown block devices of an instance.
2865 a8083063 Iustin Pop

2866 a8083063 Iustin Pop
  This does the shutdown on all nodes of the instance.
2867 a8083063 Iustin Pop

2868 a8083063 Iustin Pop
  If the ignore_primary is false, errors on the primary node are
2869 a8083063 Iustin Pop
  ignored.
2870 a8083063 Iustin Pop

2871 a8083063 Iustin Pop
  """
2872 cacfd1fd Iustin Pop
  all_result = True
2873 a8083063 Iustin Pop
  for disk in instance.disks:
2874 a8083063 Iustin Pop
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2875 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(top_disk, node)
2876 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2877 cacfd1fd Iustin Pop
      msg = result.RemoteFailMsg()
2878 cacfd1fd Iustin Pop
      if msg:
2879 cacfd1fd Iustin Pop
        lu.LogWarning("Could not shutdown block device %s on node %s: %s",
2880 cacfd1fd Iustin Pop
                      disk.iv_name, node, msg)
2881 a8083063 Iustin Pop
        if not ignore_primary or node != instance.primary_node:
2882 cacfd1fd Iustin Pop
          all_result = False
2883 cacfd1fd Iustin Pop
  return all_result
2884 a8083063 Iustin Pop
2885 a8083063 Iustin Pop
2886 9ca87a96 Iustin Pop
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2887 d4f16fd9 Iustin Pop
  """Checks if a node has enough free memory.
2888 d4f16fd9 Iustin Pop

2889 d4f16fd9 Iustin Pop
  This function check if a given node has the needed amount of free
2890 d4f16fd9 Iustin Pop
  memory. In case the node has less memory or we cannot get the
2891 d4f16fd9 Iustin Pop
  information from the node, this function raise an OpPrereqError
2892 d4f16fd9 Iustin Pop
  exception.
2893 d4f16fd9 Iustin Pop

2894 b9bddb6b Iustin Pop
  @type lu: C{LogicalUnit}
2895 b9bddb6b Iustin Pop
  @param lu: a logical unit from which we get configuration data
2896 e69d05fd Iustin Pop
  @type node: C{str}
2897 e69d05fd Iustin Pop
  @param node: the node to check
2898 e69d05fd Iustin Pop
  @type reason: C{str}
2899 e69d05fd Iustin Pop
  @param reason: string to use in the error message
2900 e69d05fd Iustin Pop
  @type requested: C{int}
2901 e69d05fd Iustin Pop
  @param requested: the amount of memory in MiB to check for
2902 9ca87a96 Iustin Pop
  @type hypervisor_name: C{str}
2903 9ca87a96 Iustin Pop
  @param hypervisor_name: the hypervisor to ask for memory stats
2904 e69d05fd Iustin Pop
  @raise errors.OpPrereqError: if the node doesn't have enough memory, or
2905 e69d05fd Iustin Pop
      we cannot check the node
2906 d4f16fd9 Iustin Pop

2907 d4f16fd9 Iustin Pop
  """
2908 9ca87a96 Iustin Pop
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2909 781de953 Iustin Pop
  nodeinfo[node].Raise()
2910 781de953 Iustin Pop
  free_mem = nodeinfo[node].data.get('memory_free')
2911 d4f16fd9 Iustin Pop
  if not isinstance(free_mem, int):
2912 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2913 d4f16fd9 Iustin Pop
                             " was '%s'" % (node, free_mem))
2914 d4f16fd9 Iustin Pop
  if requested > free_mem:
2915 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2916 d4f16fd9 Iustin Pop
                             " needed %s MiB, available %s MiB" %
2917 d4f16fd9 Iustin Pop
                             (node, reason, requested, free_mem))
2918 d4f16fd9 Iustin Pop
2919 d4f16fd9 Iustin Pop
2920 a8083063 Iustin Pop
class LUStartupInstance(LogicalUnit):
2921 a8083063 Iustin Pop
  """Starts an instance.
2922 a8083063 Iustin Pop

2923 a8083063 Iustin Pop
  """
2924 a8083063 Iustin Pop
  HPATH = "instance-start"
2925 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2926 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "force"]
2927 e873317a Guido Trotter
  REQ_BGL = False
2928 e873317a Guido Trotter
2929 e873317a Guido Trotter
  def ExpandNames(self):
2930 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2931 a8083063 Iustin Pop
2932 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2933 a8083063 Iustin Pop
    """Build hooks env.
2934 a8083063 Iustin Pop

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

2937 a8083063 Iustin Pop
    """
2938 a8083063 Iustin Pop
    env = {
2939 a8083063 Iustin Pop
      "FORCE": self.op.force,
2940 a8083063 Iustin Pop
      }
2941 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2942 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2943 a8083063 Iustin Pop
    return env, nl, nl
2944 a8083063 Iustin Pop
2945 a8083063 Iustin Pop
  def CheckPrereq(self):
2946 a8083063 Iustin Pop
    """Check prerequisites.
2947 a8083063 Iustin Pop

2948 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2949 a8083063 Iustin Pop

2950 a8083063 Iustin Pop
    """
2951 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2952 e873317a Guido Trotter
    assert self.instance is not None, \
2953 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2954 a8083063 Iustin Pop
2955 d04aaa2f Iustin Pop
    # extra beparams
2956 d04aaa2f Iustin Pop
    self.beparams = getattr(self.op, "beparams", {})
2957 d04aaa2f Iustin Pop
    if self.beparams:
2958 d04aaa2f Iustin Pop
      if not isinstance(self.beparams, dict):
2959 d04aaa2f Iustin Pop
        raise errors.OpPrereqError("Invalid beparams passed: %s, expected"
2960 d04aaa2f Iustin Pop
                                   " dict" % (type(self.beparams), ))
2961 d04aaa2f Iustin Pop
      # fill the beparams dict
2962 d04aaa2f Iustin Pop
      utils.ForceDictType(self.beparams, constants.BES_PARAMETER_TYPES)
2963 d04aaa2f Iustin Pop
      self.op.beparams = self.beparams
2964 d04aaa2f Iustin Pop
2965 d04aaa2f Iustin Pop
    # extra hvparams
2966 d04aaa2f Iustin Pop
    self.hvparams = getattr(self.op, "hvparams", {})
2967 d04aaa2f Iustin Pop
    if self.hvparams:
2968 d04aaa2f Iustin Pop
      if not isinstance(self.hvparams, dict):
2969 d04aaa2f Iustin Pop
        raise errors.OpPrereqError("Invalid hvparams passed: %s, expected"
2970 d04aaa2f Iustin Pop
                                   " dict" % (type(self.hvparams), ))
2971 d04aaa2f Iustin Pop
2972 d04aaa2f Iustin Pop
      # check hypervisor parameter syntax (locally)
2973 d04aaa2f Iustin Pop
      cluster = self.cfg.GetClusterInfo()
2974 d04aaa2f Iustin Pop
      utils.ForceDictType(self.hvparams, constants.HVS_PARAMETER_TYPES)
2975 d04aaa2f Iustin Pop
      filled_hvp = cluster.FillDict(cluster.hvparams[instance.hypervisor],
2976 d04aaa2f Iustin Pop
                                    instance.hvparams)
2977 d04aaa2f Iustin Pop
      filled_hvp.update(self.hvparams)
2978 d04aaa2f Iustin Pop
      hv_type = hypervisor.GetHypervisor(instance.hypervisor)
2979 d04aaa2f Iustin Pop
      hv_type.CheckParameterSyntax(filled_hvp)
2980 d04aaa2f Iustin Pop
      _CheckHVParams(self, instance.all_nodes, instance.hypervisor, filled_hvp)
2981 d04aaa2f Iustin Pop
      self.op.hvparams = self.hvparams
2982 d04aaa2f Iustin Pop
2983 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
2984 7527a8a4 Iustin Pop
2985 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
2986 5bbd3f7f Michael Hanselmann
    # check bridges existence
2987 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
2988 a8083063 Iustin Pop
2989 f1926756 Guido Trotter
    remote_info = self.rpc.call_instance_info(instance.primary_node,
2990 f1926756 Guido Trotter
                                              instance.name,
2991 f1926756 Guido Trotter
                                              instance.hypervisor)
2992 f1926756 Guido Trotter
    remote_info.Raise()
2993 f1926756 Guido Trotter
    if not remote_info.data:
2994 f1926756 Guido Trotter
      _CheckNodeFreeMemory(self, instance.primary_node,
2995 f1926756 Guido Trotter
                           "starting instance %s" % instance.name,
2996 f1926756 Guido Trotter
                           bep[constants.BE_MEMORY], instance.hypervisor)
2997 d4f16fd9 Iustin Pop
2998 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2999 a8083063 Iustin Pop
    """Start the instance.
3000 a8083063 Iustin Pop

3001 a8083063 Iustin Pop
    """
3002 a8083063 Iustin Pop
    instance = self.instance
3003 a8083063 Iustin Pop
    force = self.op.force
3004 a8083063 Iustin Pop
3005 fe482621 Iustin Pop
    self.cfg.MarkInstanceUp(instance.name)
3006 fe482621 Iustin Pop
3007 a8083063 Iustin Pop
    node_current = instance.primary_node
3008 a8083063 Iustin Pop
3009 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, instance, force)
3010 a8083063 Iustin Pop
3011 d04aaa2f Iustin Pop
    result = self.rpc.call_instance_start(node_current, instance,
3012 d04aaa2f Iustin Pop
                                          self.hvparams, self.beparams)
3013 dd279568 Iustin Pop
    msg = result.RemoteFailMsg()
3014 dd279568 Iustin Pop
    if msg:
3015 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
3016 dd279568 Iustin Pop
      raise errors.OpExecError("Could not start instance: %s" % msg)
3017 a8083063 Iustin Pop
3018 a8083063 Iustin Pop
3019 bf6929a2 Alexander Schreiber
class LURebootInstance(LogicalUnit):
3020 bf6929a2 Alexander Schreiber
  """Reboot an instance.
3021 bf6929a2 Alexander Schreiber

3022 bf6929a2 Alexander Schreiber
  """
3023 bf6929a2 Alexander Schreiber
  HPATH = "instance-reboot"
3024 bf6929a2 Alexander Schreiber
  HTYPE = constants.HTYPE_INSTANCE
3025 bf6929a2 Alexander Schreiber
  _OP_REQP = ["instance_name", "ignore_secondaries", "reboot_type"]
3026 e873317a Guido Trotter
  REQ_BGL = False
3027 e873317a Guido Trotter
3028 e873317a Guido Trotter
  def ExpandNames(self):
3029 0fcc5db3 Guido Trotter
    if self.op.reboot_type not in [constants.INSTANCE_REBOOT_SOFT,
3030 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
3031 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL]:
3032 0fcc5db3 Guido Trotter
      raise errors.ParameterError("reboot type not in [%s, %s, %s]" %
3033 0fcc5db3 Guido Trotter
                                  (constants.INSTANCE_REBOOT_SOFT,
3034 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_HARD,
3035 0fcc5db3 Guido Trotter
                                   constants.INSTANCE_REBOOT_FULL))
3036 e873317a Guido Trotter
    self._ExpandAndLockInstance()
3037 bf6929a2 Alexander Schreiber
3038 bf6929a2 Alexander Schreiber
  def BuildHooksEnv(self):
3039 bf6929a2 Alexander Schreiber
    """Build hooks env.
3040 bf6929a2 Alexander Schreiber

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

3043 bf6929a2 Alexander Schreiber
    """
3044 bf6929a2 Alexander Schreiber
    env = {
3045 bf6929a2 Alexander Schreiber
      "IGNORE_SECONDARIES": self.op.ignore_secondaries,
3046 2c2690c9 Iustin Pop
      "REBOOT_TYPE": self.op.reboot_type,
3047 bf6929a2 Alexander Schreiber
      }
3048 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3049 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3050 bf6929a2 Alexander Schreiber
    return env, nl, nl
3051 bf6929a2 Alexander Schreiber
3052 bf6929a2 Alexander Schreiber
  def CheckPrereq(self):
3053 bf6929a2 Alexander Schreiber
    """Check prerequisites.
3054 bf6929a2 Alexander Schreiber

3055 bf6929a2 Alexander Schreiber
    This checks that the instance is in the cluster.
3056 bf6929a2 Alexander Schreiber

3057 bf6929a2 Alexander Schreiber
    """
3058 e873317a Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3059 e873317a Guido Trotter
    assert self.instance is not None, \
3060 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3061 bf6929a2 Alexander Schreiber
3062 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3063 7527a8a4 Iustin Pop
3064 5bbd3f7f Michael Hanselmann
    # check bridges existence
3065 b9bddb6b Iustin Pop
    _CheckInstanceBridgesExist(self, instance)
3066 bf6929a2 Alexander Schreiber
3067 bf6929a2 Alexander Schreiber
  def Exec(self, feedback_fn):
3068 bf6929a2 Alexander Schreiber
    """Reboot the instance.
3069 bf6929a2 Alexander Schreiber

3070 bf6929a2 Alexander Schreiber
    """
3071 bf6929a2 Alexander Schreiber
    instance = self.instance
3072 bf6929a2 Alexander Schreiber
    ignore_secondaries = self.op.ignore_secondaries
3073 bf6929a2 Alexander Schreiber
    reboot_type = self.op.reboot_type
3074 bf6929a2 Alexander Schreiber
3075 bf6929a2 Alexander Schreiber
    node_current = instance.primary_node
3076 bf6929a2 Alexander Schreiber
3077 bf6929a2 Alexander Schreiber
    if reboot_type in [constants.INSTANCE_REBOOT_SOFT,
3078 bf6929a2 Alexander Schreiber
                       constants.INSTANCE_REBOOT_HARD]:
3079 ae48ac32 Iustin Pop
      for disk in instance.disks:
3080 ae48ac32 Iustin Pop
        self.cfg.SetDiskID(disk, node_current)
3081 781de953 Iustin Pop
      result = self.rpc.call_instance_reboot(node_current, instance,
3082 07813a9e Iustin Pop
                                             reboot_type)
3083 489fcbe9 Iustin Pop
      msg = result.RemoteFailMsg()
3084 489fcbe9 Iustin Pop
      if msg:
3085 489fcbe9 Iustin Pop
        raise errors.OpExecError("Could not reboot instance: %s" % msg)
3086 bf6929a2 Alexander Schreiber
    else:
3087 1fae010f Iustin Pop
      result = self.rpc.call_instance_shutdown(node_current, instance)
3088 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
3089 1fae010f Iustin Pop
      if msg:
3090 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance for"
3091 1fae010f Iustin Pop
                                 " full reboot: %s" % msg)
3092 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
3093 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, ignore_secondaries)
3094 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(node_current, instance, None, None)
3095 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
3096 dd279568 Iustin Pop
      if msg:
3097 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3098 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance for"
3099 dd279568 Iustin Pop
                                 " full reboot: %s" % msg)
3100 bf6929a2 Alexander Schreiber
3101 bf6929a2 Alexander Schreiber
    self.cfg.MarkInstanceUp(instance.name)
3102 bf6929a2 Alexander Schreiber
3103 bf6929a2 Alexander Schreiber
3104 a8083063 Iustin Pop
class LUShutdownInstance(LogicalUnit):
3105 a8083063 Iustin Pop
  """Shutdown an instance.
3106 a8083063 Iustin Pop

3107 a8083063 Iustin Pop
  """
3108 a8083063 Iustin Pop
  HPATH = "instance-stop"
3109 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3110 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
3111 e873317a Guido Trotter
  REQ_BGL = False
3112 e873317a Guido Trotter
3113 e873317a Guido Trotter
  def ExpandNames(self):
3114 e873317a Guido Trotter
    self._ExpandAndLockInstance()
3115 a8083063 Iustin Pop
3116 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3117 a8083063 Iustin Pop
    """Build hooks env.
3118 a8083063 Iustin Pop

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

3121 a8083063 Iustin Pop
    """
3122 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3123 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3124 a8083063 Iustin Pop
    return env, nl, nl
3125 a8083063 Iustin Pop
3126 a8083063 Iustin Pop
  def CheckPrereq(self):
3127 a8083063 Iustin Pop
    """Check prerequisites.
3128 a8083063 Iustin Pop

3129 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3130 a8083063 Iustin Pop

3131 a8083063 Iustin Pop
    """
3132 e873317a Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3133 e873317a Guido Trotter
    assert self.instance is not None, \
3134 e873317a Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3135 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
3136 a8083063 Iustin Pop
3137 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3138 a8083063 Iustin Pop
    """Shutdown the instance.
3139 a8083063 Iustin Pop

3140 a8083063 Iustin Pop
    """
3141 a8083063 Iustin Pop
    instance = self.instance
3142 a8083063 Iustin Pop
    node_current = instance.primary_node
3143 fe482621 Iustin Pop
    self.cfg.MarkInstanceDown(instance.name)
3144 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(node_current, instance)
3145 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3146 1fae010f Iustin Pop
    if msg:
3147 1fae010f Iustin Pop
      self.proc.LogWarning("Could not shutdown instance: %s" % msg)
3148 a8083063 Iustin Pop
3149 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(self, instance)
3150 a8083063 Iustin Pop
3151 a8083063 Iustin Pop
3152 fe7b0351 Michael Hanselmann
class LUReinstallInstance(LogicalUnit):
3153 fe7b0351 Michael Hanselmann
  """Reinstall an instance.
3154 fe7b0351 Michael Hanselmann

3155 fe7b0351 Michael Hanselmann
  """
3156 fe7b0351 Michael Hanselmann
  HPATH = "instance-reinstall"
3157 fe7b0351 Michael Hanselmann
  HTYPE = constants.HTYPE_INSTANCE
3158 fe7b0351 Michael Hanselmann
  _OP_REQP = ["instance_name"]
3159 4e0b4d2d Guido Trotter
  REQ_BGL = False
3160 4e0b4d2d Guido Trotter
3161 4e0b4d2d Guido Trotter
  def ExpandNames(self):
3162 4e0b4d2d Guido Trotter
    self._ExpandAndLockInstance()
3163 fe7b0351 Michael Hanselmann
3164 fe7b0351 Michael Hanselmann
  def BuildHooksEnv(self):
3165 fe7b0351 Michael Hanselmann
    """Build hooks env.
3166 fe7b0351 Michael Hanselmann

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

3169 fe7b0351 Michael Hanselmann
    """
3170 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3171 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3172 fe7b0351 Michael Hanselmann
    return env, nl, nl
3173 fe7b0351 Michael Hanselmann
3174 fe7b0351 Michael Hanselmann
  def CheckPrereq(self):
3175 fe7b0351 Michael Hanselmann
    """Check prerequisites.
3176 fe7b0351 Michael Hanselmann

3177 fe7b0351 Michael Hanselmann
    This checks that the instance is in the cluster and is not running.
3178 fe7b0351 Michael Hanselmann

3179 fe7b0351 Michael Hanselmann
    """
3180 4e0b4d2d Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3181 4e0b4d2d Guido Trotter
    assert instance is not None, \
3182 4e0b4d2d Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3183 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3184 4e0b4d2d Guido Trotter
3185 fe7b0351 Michael Hanselmann
    if instance.disk_template == constants.DT_DISKLESS:
3186 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' has no disks" %
3187 3ecf6786 Iustin Pop
                                 self.op.instance_name)
3188 0d68c45d Iustin Pop
    if instance.admin_up:
3189 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
3190 3ecf6786 Iustin Pop
                                 self.op.instance_name)
3191 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
3192 72737a7f Iustin Pop
                                              instance.name,
3193 72737a7f Iustin Pop
                                              instance.hypervisor)
3194 b4874c9e Guido Trotter
    remote_info.Raise()
3195 b4874c9e Guido Trotter
    if remote_info.data:
3196 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
3197 3ecf6786 Iustin Pop
                                 (self.op.instance_name,
3198 3ecf6786 Iustin Pop
                                  instance.primary_node))
3199 d0834de3 Michael Hanselmann
3200 d0834de3 Michael Hanselmann
    self.op.os_type = getattr(self.op, "os_type", None)
3201 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
3202 d0834de3 Michael Hanselmann
      # OS verification
3203 d0834de3 Michael Hanselmann
      pnode = self.cfg.GetNodeInfo(
3204 d0834de3 Michael Hanselmann
        self.cfg.ExpandNodeName(instance.primary_node))
3205 d0834de3 Michael Hanselmann
      if pnode is None:
3206 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Primary node '%s' is unknown" %
3207 3ecf6786 Iustin Pop
                                   self.op.pnode)
3208 781de953 Iustin Pop
      result = self.rpc.call_os_get(pnode.name, self.op.os_type)
3209 781de953 Iustin Pop
      result.Raise()
3210 781de953 Iustin Pop
      if not isinstance(result.data, objects.OS):
3211 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("OS '%s' not in supported OS list for"
3212 3ecf6786 Iustin Pop
                                   " primary node"  % self.op.os_type)
3213 d0834de3 Michael Hanselmann
3214 fe7b0351 Michael Hanselmann
    self.instance = instance
3215 fe7b0351 Michael Hanselmann
3216 fe7b0351 Michael Hanselmann
  def Exec(self, feedback_fn):
3217 fe7b0351 Michael Hanselmann
    """Reinstall the instance.
3218 fe7b0351 Michael Hanselmann

3219 fe7b0351 Michael Hanselmann
    """
3220 fe7b0351 Michael Hanselmann
    inst = self.instance
3221 fe7b0351 Michael Hanselmann
3222 d0834de3 Michael Hanselmann
    if self.op.os_type is not None:
3223 d0834de3 Michael Hanselmann
      feedback_fn("Changing OS to '%s'..." % self.op.os_type)
3224 d0834de3 Michael Hanselmann
      inst.os = self.op.os_type
3225 97abc79f Iustin Pop
      self.cfg.Update(inst)
3226 d0834de3 Michael Hanselmann
3227 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
3228 fe7b0351 Michael Hanselmann
    try:
3229 fe7b0351 Michael Hanselmann
      feedback_fn("Running the instance OS create scripts...")
3230 781de953 Iustin Pop
      result = self.rpc.call_instance_os_add(inst.primary_node, inst)
3231 20e01edd Iustin Pop
      msg = result.RemoteFailMsg()
3232 20e01edd Iustin Pop
      if msg:
3233 f4bc1f2c Michael Hanselmann
        raise errors.OpExecError("Could not install OS for instance %s"
3234 20e01edd Iustin Pop
                                 " on node %s: %s" %
3235 20e01edd Iustin Pop
                                 (inst.name, inst.primary_node, msg))
3236 fe7b0351 Michael Hanselmann
    finally:
3237 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3238 fe7b0351 Michael Hanselmann
3239 fe7b0351 Michael Hanselmann
3240 decd5f45 Iustin Pop
class LURenameInstance(LogicalUnit):
3241 decd5f45 Iustin Pop
  """Rename an instance.
3242 decd5f45 Iustin Pop

3243 decd5f45 Iustin Pop
  """
3244 decd5f45 Iustin Pop
  HPATH = "instance-rename"
3245 decd5f45 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3246 decd5f45 Iustin Pop
  _OP_REQP = ["instance_name", "new_name"]
3247 decd5f45 Iustin Pop
3248 decd5f45 Iustin Pop
  def BuildHooksEnv(self):
3249 decd5f45 Iustin Pop
    """Build hooks env.
3250 decd5f45 Iustin Pop

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

3253 decd5f45 Iustin Pop
    """
3254 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3255 decd5f45 Iustin Pop
    env["INSTANCE_NEW_NAME"] = self.op.new_name
3256 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3257 decd5f45 Iustin Pop
    return env, nl, nl
3258 decd5f45 Iustin Pop
3259 decd5f45 Iustin Pop
  def CheckPrereq(self):
3260 decd5f45 Iustin Pop
    """Check prerequisites.
3261 decd5f45 Iustin Pop

3262 decd5f45 Iustin Pop
    This checks that the instance is in the cluster and is not running.
3263 decd5f45 Iustin Pop

3264 decd5f45 Iustin Pop
    """
3265 decd5f45 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3266 decd5f45 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3267 decd5f45 Iustin Pop
    if instance is None:
3268 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3269 decd5f45 Iustin Pop
                                 self.op.instance_name)
3270 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, instance.primary_node)
3271 7527a8a4 Iustin Pop
3272 0d68c45d Iustin Pop
    if instance.admin_up:
3273 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is marked to be up" %
3274 decd5f45 Iustin Pop
                                 self.op.instance_name)
3275 72737a7f Iustin Pop
    remote_info = self.rpc.call_instance_info(instance.primary_node,
3276 72737a7f Iustin Pop
                                              instance.name,
3277 72737a7f Iustin Pop
                                              instance.hypervisor)
3278 781de953 Iustin Pop
    remote_info.Raise()
3279 781de953 Iustin Pop
    if remote_info.data:
3280 decd5f45 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' is running on the node %s" %
3281 decd5f45 Iustin Pop
                                 (self.op.instance_name,
3282 decd5f45 Iustin Pop
                                  instance.primary_node))
3283 decd5f45 Iustin Pop
    self.instance = instance
3284 decd5f45 Iustin Pop
3285 decd5f45 Iustin Pop
    # new name verification
3286 89e1fc26 Iustin Pop
    name_info = utils.HostInfo(self.op.new_name)
3287 decd5f45 Iustin Pop
3288 89e1fc26 Iustin Pop
    self.op.new_name = new_name = name_info.name
3289 7bde3275 Guido Trotter
    instance_list = self.cfg.GetInstanceList()
3290 7bde3275 Guido Trotter
    if new_name in instance_list:
3291 7bde3275 Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
3292 c09f363f Manuel Franceschini
                                 new_name)
3293 7bde3275 Guido Trotter
3294 decd5f45 Iustin Pop
    if not getattr(self.op, "ignore_ip", False):
3295 937f983d Guido Trotter
      if utils.TcpPing(name_info.ip, constants.DEFAULT_NODED_PORT):
3296 decd5f45 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
3297 89e1fc26 Iustin Pop
                                   (name_info.ip, new_name))
3298 decd5f45 Iustin Pop
3299 decd5f45 Iustin Pop
3300 decd5f45 Iustin Pop
  def Exec(self, feedback_fn):
3301 decd5f45 Iustin Pop
    """Reinstall the instance.
3302 decd5f45 Iustin Pop

3303 decd5f45 Iustin Pop
    """
3304 decd5f45 Iustin Pop
    inst = self.instance
3305 decd5f45 Iustin Pop
    old_name = inst.name
3306 decd5f45 Iustin Pop
3307 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3308 b23c4333 Manuel Franceschini
      old_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3309 b23c4333 Manuel Franceschini
3310 decd5f45 Iustin Pop
    self.cfg.RenameInstance(inst.name, self.op.new_name)
3311 74b5913f Guido Trotter
    # Change the instance lock. This is definitely safe while we hold the BGL
3312 cb4e8387 Iustin Pop
    self.context.glm.remove(locking.LEVEL_INSTANCE, old_name)
3313 74b5913f Guido Trotter
    self.context.glm.add(locking.LEVEL_INSTANCE, self.op.new_name)
3314 decd5f45 Iustin Pop
3315 decd5f45 Iustin Pop
    # re-read the instance from the configuration after rename
3316 decd5f45 Iustin Pop
    inst = self.cfg.GetInstanceInfo(self.op.new_name)
3317 decd5f45 Iustin Pop
3318 b23c4333 Manuel Franceschini
    if inst.disk_template == constants.DT_FILE:
3319 b23c4333 Manuel Franceschini
      new_file_storage_dir = os.path.dirname(inst.disks[0].logical_id[1])
3320 72737a7f Iustin Pop
      result = self.rpc.call_file_storage_dir_rename(inst.primary_node,
3321 72737a7f Iustin Pop
                                                     old_file_storage_dir,
3322 72737a7f Iustin Pop
                                                     new_file_storage_dir)
3323 781de953 Iustin Pop
      result.Raise()
3324 781de953 Iustin Pop
      if not result.data:
3325 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not connect to node '%s' to rename"
3326 b23c4333 Manuel Franceschini
                                 " directory '%s' to '%s' (but the instance"
3327 b23c4333 Manuel Franceschini
                                 " has been renamed in Ganeti)" % (
3328 b23c4333 Manuel Franceschini
                                 inst.primary_node, old_file_storage_dir,
3329 b23c4333 Manuel Franceschini
                                 new_file_storage_dir))
3330 b23c4333 Manuel Franceschini
3331 781de953 Iustin Pop
      if not result.data[0]:
3332 b23c4333 Manuel Franceschini
        raise errors.OpExecError("Could not rename directory '%s' to '%s'"
3333 b23c4333 Manuel Franceschini
                                 " (but the instance has been renamed in"
3334 b23c4333 Manuel Franceschini
                                 " Ganeti)" % (old_file_storage_dir,
3335 b23c4333 Manuel Franceschini
                                               new_file_storage_dir))
3336 b23c4333 Manuel Franceschini
3337 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, inst, None)
3338 decd5f45 Iustin Pop
    try:
3339 781de953 Iustin Pop
      result = self.rpc.call_instance_run_rename(inst.primary_node, inst,
3340 781de953 Iustin Pop
                                                 old_name)
3341 96841384 Iustin Pop
      msg = result.RemoteFailMsg()
3342 96841384 Iustin Pop
      if msg:
3343 6291574d Alexander Schreiber
        msg = ("Could not run OS rename script for instance %s on node %s"
3344 96841384 Iustin Pop
               " (but the instance has been renamed in Ganeti): %s" %
3345 96841384 Iustin Pop
               (inst.name, inst.primary_node, msg))
3346 86d9d3bb Iustin Pop
        self.proc.LogWarning(msg)
3347 decd5f45 Iustin Pop
    finally:
3348 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, inst)
3349 decd5f45 Iustin Pop
3350 decd5f45 Iustin Pop
3351 a8083063 Iustin Pop
class LURemoveInstance(LogicalUnit):
3352 a8083063 Iustin Pop
  """Remove an instance.
3353 a8083063 Iustin Pop

3354 a8083063 Iustin Pop
  """
3355 a8083063 Iustin Pop
  HPATH = "instance-remove"
3356 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3357 5c54b832 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_failures"]
3358 cf472233 Guido Trotter
  REQ_BGL = False
3359 cf472233 Guido Trotter
3360 cf472233 Guido Trotter
  def ExpandNames(self):
3361 cf472233 Guido Trotter
    self._ExpandAndLockInstance()
3362 cf472233 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3363 cf472233 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3364 cf472233 Guido Trotter
3365 cf472233 Guido Trotter
  def DeclareLocks(self, level):
3366 cf472233 Guido Trotter
    if level == locking.LEVEL_NODE:
3367 cf472233 Guido Trotter
      self._LockInstancesNodes()
3368 a8083063 Iustin Pop
3369 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3370 a8083063 Iustin Pop
    """Build hooks env.
3371 a8083063 Iustin Pop

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

3374 a8083063 Iustin Pop
    """
3375 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3376 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()]
3377 a8083063 Iustin Pop
    return env, nl, nl
3378 a8083063 Iustin Pop
3379 a8083063 Iustin Pop
  def CheckPrereq(self):
3380 a8083063 Iustin Pop
    """Check prerequisites.
3381 a8083063 Iustin Pop

3382 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3383 a8083063 Iustin Pop

3384 a8083063 Iustin Pop
    """
3385 cf472233 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3386 cf472233 Guido Trotter
    assert self.instance is not None, \
3387 cf472233 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3388 a8083063 Iustin Pop
3389 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3390 a8083063 Iustin Pop
    """Remove the instance.
3391 a8083063 Iustin Pop

3392 a8083063 Iustin Pop
    """
3393 a8083063 Iustin Pop
    instance = self.instance
3394 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3395 9a4f63d1 Iustin Pop
                 instance.name, instance.primary_node)
3396 a8083063 Iustin Pop
3397 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
3398 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3399 1fae010f Iustin Pop
    if msg:
3400 1d67656e Iustin Pop
      if self.op.ignore_failures:
3401 1fae010f Iustin Pop
        feedback_fn("Warning: can't shutdown instance: %s" % msg)
3402 1d67656e Iustin Pop
      else:
3403 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3404 1fae010f Iustin Pop
                                 " node %s: %s" %
3405 1fae010f Iustin Pop
                                 (instance.name, instance.primary_node, msg))
3406 a8083063 Iustin Pop
3407 9a4f63d1 Iustin Pop
    logging.info("Removing block devices for instance %s", instance.name)
3408 a8083063 Iustin Pop
3409 b9bddb6b Iustin Pop
    if not _RemoveDisks(self, instance):
3410 1d67656e Iustin Pop
      if self.op.ignore_failures:
3411 1d67656e Iustin Pop
        feedback_fn("Warning: can't remove instance's disks")
3412 1d67656e Iustin Pop
      else:
3413 1d67656e Iustin Pop
        raise errors.OpExecError("Can't remove instance's disks")
3414 a8083063 Iustin Pop
3415 9a4f63d1 Iustin Pop
    logging.info("Removing instance %s out of cluster config", instance.name)
3416 a8083063 Iustin Pop
3417 a8083063 Iustin Pop
    self.cfg.RemoveInstance(instance.name)
3418 cf472233 Guido Trotter
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3419 a8083063 Iustin Pop
3420 a8083063 Iustin Pop
3421 a8083063 Iustin Pop
class LUQueryInstances(NoHooksLU):
3422 a8083063 Iustin Pop
  """Logical unit for querying instances.
3423 a8083063 Iustin Pop

3424 a8083063 Iustin Pop
  """
3425 ec79568d Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
3426 7eb9d8f7 Guido Trotter
  REQ_BGL = False
3427 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3428 5b460366 Iustin Pop
                                    "admin_state",
3429 a2d2e1a7 Iustin Pop
                                    "disk_template", "ip", "mac", "bridge",
3430 a2d2e1a7 Iustin Pop
                                    "sda_size", "sdb_size", "vcpus", "tags",
3431 a2d2e1a7 Iustin Pop
                                    "network_port", "beparams",
3432 8aec325c Iustin Pop
                                    r"(disk)\.(size)/([0-9]+)",
3433 8aec325c Iustin Pop
                                    r"(disk)\.(sizes)", "disk_usage",
3434 8aec325c Iustin Pop
                                    r"(nic)\.(mac|ip|bridge)/([0-9]+)",
3435 8aec325c Iustin Pop
                                    r"(nic)\.(macs|ips|bridges)",
3436 8aec325c Iustin Pop
                                    r"(disk|nic)\.(count)",
3437 a2d2e1a7 Iustin Pop
                                    "serial_no", "hypervisor", "hvparams",] +
3438 a2d2e1a7 Iustin Pop
                                  ["hv/%s" % name
3439 a2d2e1a7 Iustin Pop
                                   for name in constants.HVS_PARAMETERS] +
3440 a2d2e1a7 Iustin Pop
                                  ["be/%s" % name
3441 a2d2e1a7 Iustin Pop
                                   for name in constants.BES_PARAMETERS])
3442 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3443 31bf511f Iustin Pop
3444 a8083063 Iustin Pop
3445 7eb9d8f7 Guido Trotter
  def ExpandNames(self):
3446 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
3447 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
3448 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
3449 a8083063 Iustin Pop
3450 7eb9d8f7 Guido Trotter
    self.needed_locks = {}
3451 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3452 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
3453 7eb9d8f7 Guido Trotter
3454 57a2fb91 Iustin Pop
    if self.op.names:
3455 57a2fb91 Iustin Pop
      self.wanted = _GetWantedInstances(self, self.op.names)
3456 7eb9d8f7 Guido Trotter
    else:
3457 57a2fb91 Iustin Pop
      self.wanted = locking.ALL_SET
3458 7eb9d8f7 Guido Trotter
3459 ec79568d Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3460 ec79568d Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
3461 57a2fb91 Iustin Pop
    if self.do_locking:
3462 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3463 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = []
3464 57a2fb91 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3465 7eb9d8f7 Guido Trotter
3466 7eb9d8f7 Guido Trotter
  def DeclareLocks(self, level):
3467 57a2fb91 Iustin Pop
    if level == locking.LEVEL_NODE and self.do_locking:
3468 7eb9d8f7 Guido Trotter
      self._LockInstancesNodes()
3469 7eb9d8f7 Guido Trotter
3470 7eb9d8f7 Guido Trotter
  def CheckPrereq(self):
3471 7eb9d8f7 Guido Trotter
    """Check prerequisites.
3472 7eb9d8f7 Guido Trotter

3473 7eb9d8f7 Guido Trotter
    """
3474 57a2fb91 Iustin Pop
    pass
3475 069dcc86 Iustin Pop
3476 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3477 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
3478 a8083063 Iustin Pop

3479 a8083063 Iustin Pop
    """
3480 57a2fb91 Iustin Pop
    all_info = self.cfg.GetAllInstancesInfo()
3481 a7f5dc98 Iustin Pop
    if self.wanted == locking.ALL_SET:
3482 a7f5dc98 Iustin Pop
      # caller didn't specify instance names, so ordering is not important
3483 a7f5dc98 Iustin Pop
      if self.do_locking:
3484 a7f5dc98 Iustin Pop
        instance_names = self.acquired_locks[locking.LEVEL_INSTANCE]
3485 a7f5dc98 Iustin Pop
      else:
3486 a7f5dc98 Iustin Pop
        instance_names = all_info.keys()
3487 a7f5dc98 Iustin Pop
      instance_names = utils.NiceSort(instance_names)
3488 57a2fb91 Iustin Pop
    else:
3489 a7f5dc98 Iustin Pop
      # caller did specify names, so we must keep the ordering
3490 a7f5dc98 Iustin Pop
      if self.do_locking:
3491 a7f5dc98 Iustin Pop
        tgt_set = self.acquired_locks[locking.LEVEL_INSTANCE]
3492 a7f5dc98 Iustin Pop
      else:
3493 a7f5dc98 Iustin Pop
        tgt_set = all_info.keys()
3494 a7f5dc98 Iustin Pop
      missing = set(self.wanted).difference(tgt_set)
3495 a7f5dc98 Iustin Pop
      if missing:
3496 a7f5dc98 Iustin Pop
        raise errors.OpExecError("Some instances were removed before"
3497 a7f5dc98 Iustin Pop
                                 " retrieving their data: %s" % missing)
3498 a7f5dc98 Iustin Pop
      instance_names = self.wanted
3499 c1f1cbb2 Iustin Pop
3500 57a2fb91 Iustin Pop
    instance_list = [all_info[iname] for iname in instance_names]
3501 a8083063 Iustin Pop
3502 a8083063 Iustin Pop
    # begin data gathering
3503 a8083063 Iustin Pop
3504 a8083063 Iustin Pop
    nodes = frozenset([inst.primary_node for inst in instance_list])
3505 e69d05fd Iustin Pop
    hv_list = list(set([inst.hypervisor for inst in instance_list]))
3506 a8083063 Iustin Pop
3507 a8083063 Iustin Pop
    bad_nodes = []
3508 cbfc4681 Iustin Pop
    off_nodes = []
3509 ec79568d Iustin Pop
    if self.do_node_query:
3510 a8083063 Iustin Pop
      live_data = {}
3511 72737a7f Iustin Pop
      node_data = self.rpc.call_all_instances_info(nodes, hv_list)
3512 a8083063 Iustin Pop
      for name in nodes:
3513 a8083063 Iustin Pop
        result = node_data[name]
3514 cbfc4681 Iustin Pop
        if result.offline:
3515 cbfc4681 Iustin Pop
          # offline nodes will be in both lists
3516 cbfc4681 Iustin Pop
          off_nodes.append(name)
3517 781de953 Iustin Pop
        if result.failed:
3518 a8083063 Iustin Pop
          bad_nodes.append(name)
3519 781de953 Iustin Pop
        else:
3520 781de953 Iustin Pop
          if result.data:
3521 781de953 Iustin Pop
            live_data.update(result.data)
3522 781de953 Iustin Pop
            # else no instance is alive
3523 a8083063 Iustin Pop
    else:
3524 a8083063 Iustin Pop
      live_data = dict([(name, {}) for name in instance_names])
3525 a8083063 Iustin Pop
3526 a8083063 Iustin Pop
    # end data gathering
3527 a8083063 Iustin Pop
3528 5018a335 Iustin Pop
    HVPREFIX = "hv/"
3529 338e51e8 Iustin Pop
    BEPREFIX = "be/"
3530 a8083063 Iustin Pop
    output = []
3531 a8083063 Iustin Pop
    for instance in instance_list:
3532 a8083063 Iustin Pop
      iout = []
3533 5018a335 Iustin Pop
      i_hv = self.cfg.GetClusterInfo().FillHV(instance)
3534 338e51e8 Iustin Pop
      i_be = self.cfg.GetClusterInfo().FillBE(instance)
3535 a8083063 Iustin Pop
      for field in self.op.output_fields:
3536 71c1af58 Iustin Pop
        st_match = self._FIELDS_STATIC.Matches(field)
3537 a8083063 Iustin Pop
        if field == "name":
3538 a8083063 Iustin Pop
          val = instance.name
3539 a8083063 Iustin Pop
        elif field == "os":
3540 a8083063 Iustin Pop
          val = instance.os
3541 a8083063 Iustin Pop
        elif field == "pnode":
3542 a8083063 Iustin Pop
          val = instance.primary_node
3543 a8083063 Iustin Pop
        elif field == "snodes":
3544 8a23d2d3 Iustin Pop
          val = list(instance.secondary_nodes)
3545 a8083063 Iustin Pop
        elif field == "admin_state":
3546 0d68c45d Iustin Pop
          val = instance.admin_up
3547 a8083063 Iustin Pop
        elif field == "oper_state":
3548 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3549 8a23d2d3 Iustin Pop
            val = None
3550 a8083063 Iustin Pop
          else:
3551 8a23d2d3 Iustin Pop
            val = bool(live_data.get(instance.name))
3552 d8052456 Iustin Pop
        elif field == "status":
3553 cbfc4681 Iustin Pop
          if instance.primary_node in off_nodes:
3554 cbfc4681 Iustin Pop
            val = "ERROR_nodeoffline"
3555 cbfc4681 Iustin Pop
          elif instance.primary_node in bad_nodes:
3556 d8052456 Iustin Pop
            val = "ERROR_nodedown"
3557 d8052456 Iustin Pop
          else:
3558 d8052456 Iustin Pop
            running = bool(live_data.get(instance.name))
3559 d8052456 Iustin Pop
            if running:
3560 0d68c45d Iustin Pop
              if instance.admin_up:
3561 d8052456 Iustin Pop
                val = "running"
3562 d8052456 Iustin Pop
              else:
3563 d8052456 Iustin Pop
                val = "ERROR_up"
3564 d8052456 Iustin Pop
            else:
3565 0d68c45d Iustin Pop
              if instance.admin_up:
3566 d8052456 Iustin Pop
                val = "ERROR_down"
3567 d8052456 Iustin Pop
              else:
3568 d8052456 Iustin Pop
                val = "ADMIN_down"
3569 a8083063 Iustin Pop
        elif field == "oper_ram":
3570 a8083063 Iustin Pop
          if instance.primary_node in bad_nodes:
3571 8a23d2d3 Iustin Pop
            val = None
3572 a8083063 Iustin Pop
          elif instance.name in live_data:
3573 a8083063 Iustin Pop
            val = live_data[instance.name].get("memory", "?")
3574 a8083063 Iustin Pop
          else:
3575 a8083063 Iustin Pop
            val = "-"
3576 c1ce76bb Iustin Pop
        elif field == "vcpus":
3577 c1ce76bb Iustin Pop
          val = i_be[constants.BE_VCPUS]
3578 a8083063 Iustin Pop
        elif field == "disk_template":
3579 a8083063 Iustin Pop
          val = instance.disk_template
3580 a8083063 Iustin Pop
        elif field == "ip":
3581 39a02558 Guido Trotter
          if instance.nics:
3582 39a02558 Guido Trotter
            val = instance.nics[0].ip
3583 39a02558 Guido Trotter
          else:
3584 39a02558 Guido Trotter
            val = None
3585 a8083063 Iustin Pop
        elif field == "bridge":
3586 39a02558 Guido Trotter
          if instance.nics:
3587 39a02558 Guido Trotter
            val = instance.nics[0].bridge
3588 39a02558 Guido Trotter
          else:
3589 39a02558 Guido Trotter
            val = None
3590 a8083063 Iustin Pop
        elif field == "mac":
3591 39a02558 Guido Trotter
          if instance.nics:
3592 39a02558 Guido Trotter
            val = instance.nics[0].mac
3593 39a02558 Guido Trotter
          else:
3594 39a02558 Guido Trotter
            val = None
3595 644eeef9 Iustin Pop
        elif field == "sda_size" or field == "sdb_size":
3596 ad24e046 Iustin Pop
          idx = ord(field[2]) - ord('a')
3597 ad24e046 Iustin Pop
          try:
3598 ad24e046 Iustin Pop
            val = instance.FindDisk(idx).size
3599 ad24e046 Iustin Pop
          except errors.OpPrereqError:
3600 8a23d2d3 Iustin Pop
            val = None
3601 024e157f Iustin Pop
        elif field == "disk_usage": # total disk usage per node
3602 024e157f Iustin Pop
          disk_sizes = [{'size': disk.size} for disk in instance.disks]
3603 024e157f Iustin Pop
          val = _ComputeDiskSize(instance.disk_template, disk_sizes)
3604 130a6a6f Iustin Pop
        elif field == "tags":
3605 130a6a6f Iustin Pop
          val = list(instance.GetTags())
3606 38d7239a Iustin Pop
        elif field == "serial_no":
3607 38d7239a Iustin Pop
          val = instance.serial_no
3608 5018a335 Iustin Pop
        elif field == "network_port":
3609 5018a335 Iustin Pop
          val = instance.network_port
3610 338e51e8 Iustin Pop
        elif field == "hypervisor":
3611 338e51e8 Iustin Pop
          val = instance.hypervisor
3612 338e51e8 Iustin Pop
        elif field == "hvparams":
3613 338e51e8 Iustin Pop
          val = i_hv
3614 5018a335 Iustin Pop
        elif (field.startswith(HVPREFIX) and
3615 5018a335 Iustin Pop
              field[len(HVPREFIX):] in constants.HVS_PARAMETERS):
3616 5018a335 Iustin Pop
          val = i_hv.get(field[len(HVPREFIX):], None)
3617 338e51e8 Iustin Pop
        elif field == "beparams":
3618 338e51e8 Iustin Pop
          val = i_be
3619 338e51e8 Iustin Pop
        elif (field.startswith(BEPREFIX) and
3620 338e51e8 Iustin Pop
              field[len(BEPREFIX):] in constants.BES_PARAMETERS):
3621 338e51e8 Iustin Pop
          val = i_be.get(field[len(BEPREFIX):], None)
3622 71c1af58 Iustin Pop
        elif st_match and st_match.groups():
3623 71c1af58 Iustin Pop
          # matches a variable list
3624 71c1af58 Iustin Pop
          st_groups = st_match.groups()
3625 71c1af58 Iustin Pop
          if st_groups and st_groups[0] == "disk":
3626 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3627 71c1af58 Iustin Pop
              val = len(instance.disks)
3628 41a776da Iustin Pop
            elif st_groups[1] == "sizes":
3629 41a776da Iustin Pop
              val = [disk.size for disk in instance.disks]
3630 71c1af58 Iustin Pop
            elif st_groups[1] == "size":
3631 3e0cea06 Iustin Pop
              try:
3632 3e0cea06 Iustin Pop
                val = instance.FindDisk(st_groups[2]).size
3633 3e0cea06 Iustin Pop
              except errors.OpPrereqError:
3634 71c1af58 Iustin Pop
                val = None
3635 71c1af58 Iustin Pop
            else:
3636 71c1af58 Iustin Pop
              assert False, "Unhandled disk parameter"
3637 71c1af58 Iustin Pop
          elif st_groups[0] == "nic":
3638 71c1af58 Iustin Pop
            if st_groups[1] == "count":
3639 71c1af58 Iustin Pop
              val = len(instance.nics)
3640 41a776da Iustin Pop
            elif st_groups[1] == "macs":
3641 41a776da Iustin Pop
              val = [nic.mac for nic in instance.nics]
3642 41a776da Iustin Pop
            elif st_groups[1] == "ips":
3643 41a776da Iustin Pop
              val = [nic.ip for nic in instance.nics]
3644 41a776da Iustin Pop
            elif st_groups[1] == "bridges":
3645 41a776da Iustin Pop
              val = [nic.bridge for nic in instance.nics]
3646 71c1af58 Iustin Pop
            else:
3647 71c1af58 Iustin Pop
              # index-based item
3648 71c1af58 Iustin Pop
              nic_idx = int(st_groups[2])
3649 71c1af58 Iustin Pop
              if nic_idx >= len(instance.nics):
3650 71c1af58 Iustin Pop
                val = None
3651 71c1af58 Iustin Pop
              else:
3652 71c1af58 Iustin Pop
                if st_groups[1] == "mac":
3653 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].mac
3654 71c1af58 Iustin Pop
                elif st_groups[1] == "ip":
3655 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].ip
3656 71c1af58 Iustin Pop
                elif st_groups[1] == "bridge":
3657 71c1af58 Iustin Pop
                  val = instance.nics[nic_idx].bridge
3658 71c1af58 Iustin Pop
                else:
3659 71c1af58 Iustin Pop
                  assert False, "Unhandled NIC parameter"
3660 71c1af58 Iustin Pop
          else:
3661 c1ce76bb Iustin Pop
            assert False, ("Declared but unhandled variable parameter '%s'" %
3662 c1ce76bb Iustin Pop
                           field)
3663 a8083063 Iustin Pop
        else:
3664 c1ce76bb Iustin Pop
          assert False, "Declared but unhandled parameter '%s'" % field
3665 a8083063 Iustin Pop
        iout.append(val)
3666 a8083063 Iustin Pop
      output.append(iout)
3667 a8083063 Iustin Pop
3668 a8083063 Iustin Pop
    return output
3669 a8083063 Iustin Pop
3670 a8083063 Iustin Pop
3671 a8083063 Iustin Pop
class LUFailoverInstance(LogicalUnit):
3672 a8083063 Iustin Pop
  """Failover an instance.
3673 a8083063 Iustin Pop

3674 a8083063 Iustin Pop
  """
3675 a8083063 Iustin Pop
  HPATH = "instance-failover"
3676 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3677 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_consistency"]
3678 c9e5c064 Guido Trotter
  REQ_BGL = False
3679 c9e5c064 Guido Trotter
3680 c9e5c064 Guido Trotter
  def ExpandNames(self):
3681 c9e5c064 Guido Trotter
    self._ExpandAndLockInstance()
3682 c9e5c064 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3683 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3684 c9e5c064 Guido Trotter
3685 c9e5c064 Guido Trotter
  def DeclareLocks(self, level):
3686 c9e5c064 Guido Trotter
    if level == locking.LEVEL_NODE:
3687 c9e5c064 Guido Trotter
      self._LockInstancesNodes()
3688 a8083063 Iustin Pop
3689 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3690 a8083063 Iustin Pop
    """Build hooks env.
3691 a8083063 Iustin Pop

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

3694 a8083063 Iustin Pop
    """
3695 a8083063 Iustin Pop
    env = {
3696 a8083063 Iustin Pop
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3697 a8083063 Iustin Pop
      }
3698 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3699 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3700 a8083063 Iustin Pop
    return env, nl, nl
3701 a8083063 Iustin Pop
3702 a8083063 Iustin Pop
  def CheckPrereq(self):
3703 a8083063 Iustin Pop
    """Check prerequisites.
3704 a8083063 Iustin Pop

3705 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3706 a8083063 Iustin Pop

3707 a8083063 Iustin Pop
    """
3708 c9e5c064 Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3709 c9e5c064 Guido Trotter
    assert self.instance is not None, \
3710 c9e5c064 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3711 a8083063 Iustin Pop
3712 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3713 a1f445d3 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3714 2a710df1 Michael Hanselmann
      raise errors.OpPrereqError("Instance's disk layout is not"
3715 a1f445d3 Iustin Pop
                                 " network mirrored, cannot failover.")
3716 2a710df1 Michael Hanselmann
3717 2a710df1 Michael Hanselmann
    secondary_nodes = instance.secondary_nodes
3718 2a710df1 Michael Hanselmann
    if not secondary_nodes:
3719 2a710df1 Michael Hanselmann
      raise errors.ProgrammerError("no secondary node but using "
3720 abdf0113 Iustin Pop
                                   "a mirrored disk template")
3721 2a710df1 Michael Hanselmann
3722 2a710df1 Michael Hanselmann
    target_node = secondary_nodes[0]
3723 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, target_node)
3724 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, target_node)
3725 d27776f0 Iustin Pop
3726 d27776f0 Iustin Pop
    if instance.admin_up:
3727 d27776f0 Iustin Pop
      # check memory requirements on the secondary node
3728 d27776f0 Iustin Pop
      _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3729 d27776f0 Iustin Pop
                           instance.name, bep[constants.BE_MEMORY],
3730 d27776f0 Iustin Pop
                           instance.hypervisor)
3731 d27776f0 Iustin Pop
    else:
3732 d27776f0 Iustin Pop
      self.LogInfo("Not checking memory on the secondary node as"
3733 d27776f0 Iustin Pop
                   " instance will not be started")
3734 3a7c308e Guido Trotter
3735 5bbd3f7f Michael Hanselmann
    # check bridge existence
3736 a8083063 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3737 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3738 781de953 Iustin Pop
    result.Raise()
3739 781de953 Iustin Pop
    if not result.data:
3740 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3741 3ecf6786 Iustin Pop
                                 " exist on destination node '%s'" %
3742 50ff9a7a Iustin Pop
                                 (brlist, target_node))
3743 a8083063 Iustin Pop
3744 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3745 a8083063 Iustin Pop
    """Failover an instance.
3746 a8083063 Iustin Pop

3747 a8083063 Iustin Pop
    The failover is done by shutting it down on its present node and
3748 a8083063 Iustin Pop
    starting it on the secondary.
3749 a8083063 Iustin Pop

3750 a8083063 Iustin Pop
    """
3751 a8083063 Iustin Pop
    instance = self.instance
3752 a8083063 Iustin Pop
3753 a8083063 Iustin Pop
    source_node = instance.primary_node
3754 a8083063 Iustin Pop
    target_node = instance.secondary_nodes[0]
3755 a8083063 Iustin Pop
3756 a8083063 Iustin Pop
    feedback_fn("* checking disk consistency between source and target")
3757 a8083063 Iustin Pop
    for dev in instance.disks:
3758 abdf0113 Iustin Pop
      # for drbd, these are drbd over lvm
3759 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3760 0d68c45d Iustin Pop
        if instance.admin_up and not self.op.ignore_consistency:
3761 3ecf6786 Iustin Pop
          raise errors.OpExecError("Disk %s is degraded on target node,"
3762 3ecf6786 Iustin Pop
                                   " aborting failover." % dev.iv_name)
3763 a8083063 Iustin Pop
3764 a8083063 Iustin Pop
    feedback_fn("* shutting down instance on source node")
3765 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3766 9a4f63d1 Iustin Pop
                 instance.name, source_node)
3767 a8083063 Iustin Pop
3768 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(source_node, instance)
3769 1fae010f Iustin Pop
    msg = result.RemoteFailMsg()
3770 1fae010f Iustin Pop
    if msg:
3771 24a40d57 Iustin Pop
      if self.op.ignore_consistency:
3772 86d9d3bb Iustin Pop
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3773 1fae010f Iustin Pop
                             " Proceeding anyway. Please make sure node"
3774 1fae010f Iustin Pop
                             " %s is down. Error details: %s",
3775 1fae010f Iustin Pop
                             instance.name, source_node, source_node, msg)
3776 24a40d57 Iustin Pop
      else:
3777 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3778 1fae010f Iustin Pop
                                 " node %s: %s" %
3779 1fae010f Iustin Pop
                                 (instance.name, source_node, msg))
3780 a8083063 Iustin Pop
3781 a8083063 Iustin Pop
    feedback_fn("* deactivating the instance's disks on source node")
3782 b9bddb6b Iustin Pop
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3783 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't shut down the instance's disks.")
3784 a8083063 Iustin Pop
3785 a8083063 Iustin Pop
    instance.primary_node = target_node
3786 a8083063 Iustin Pop
    # distribute new instance config to the other nodes
3787 b6102dab Guido Trotter
    self.cfg.Update(instance)
3788 a8083063 Iustin Pop
3789 12a0cfbe Guido Trotter
    # Only start the instance if it's marked as up
3790 0d68c45d Iustin Pop
    if instance.admin_up:
3791 12a0cfbe Guido Trotter
      feedback_fn("* activating the instance's disks on target node")
3792 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s",
3793 9a4f63d1 Iustin Pop
                   instance.name, target_node)
3794 12a0cfbe Guido Trotter
3795 7c4d6c7b Michael Hanselmann
      disks_ok, _ = _AssembleInstanceDisks(self, instance,
3796 12a0cfbe Guido Trotter
                                               ignore_secondaries=True)
3797 12a0cfbe Guido Trotter
      if not disks_ok:
3798 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3799 12a0cfbe Guido Trotter
        raise errors.OpExecError("Can't activate the instance's disks")
3800 a8083063 Iustin Pop
3801 12a0cfbe Guido Trotter
      feedback_fn("* starting the instance on the target node")
3802 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(target_node, instance, None, None)
3803 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
3804 dd279568 Iustin Pop
      if msg:
3805 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3806 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance %s on node %s: %s" %
3807 dd279568 Iustin Pop
                                 (instance.name, target_node, msg))
3808 a8083063 Iustin Pop
3809 a8083063 Iustin Pop
3810 53c776b5 Iustin Pop
class LUMigrateInstance(LogicalUnit):
3811 53c776b5 Iustin Pop
  """Migrate an instance.
3812 53c776b5 Iustin Pop

3813 53c776b5 Iustin Pop
  This is migration without shutting down, compared to the failover,
3814 53c776b5 Iustin Pop
  which is done with shutdown.
3815 53c776b5 Iustin Pop

3816 53c776b5 Iustin Pop
  """
3817 53c776b5 Iustin Pop
  HPATH = "instance-migrate"
3818 53c776b5 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3819 53c776b5 Iustin Pop
  _OP_REQP = ["instance_name", "live", "cleanup"]
3820 53c776b5 Iustin Pop
3821 53c776b5 Iustin Pop
  REQ_BGL = False
3822 53c776b5 Iustin Pop
3823 53c776b5 Iustin Pop
  def ExpandNames(self):
3824 53c776b5 Iustin Pop
    self._ExpandAndLockInstance()
3825 53c776b5 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
3826 53c776b5 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3827 53c776b5 Iustin Pop
3828 53c776b5 Iustin Pop
  def DeclareLocks(self, level):
3829 53c776b5 Iustin Pop
    if level == locking.LEVEL_NODE:
3830 53c776b5 Iustin Pop
      self._LockInstancesNodes()
3831 53c776b5 Iustin Pop
3832 53c776b5 Iustin Pop
  def BuildHooksEnv(self):
3833 53c776b5 Iustin Pop
    """Build hooks env.
3834 53c776b5 Iustin Pop

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

3837 53c776b5 Iustin Pop
    """
3838 53c776b5 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3839 2c2690c9 Iustin Pop
    env["MIGRATE_LIVE"] = self.op.live
3840 2c2690c9 Iustin Pop
    env["MIGRATE_CLEANUP"] = self.op.cleanup
3841 53c776b5 Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3842 53c776b5 Iustin Pop
    return env, nl, nl
3843 53c776b5 Iustin Pop
3844 53c776b5 Iustin Pop
  def CheckPrereq(self):
3845 53c776b5 Iustin Pop
    """Check prerequisites.
3846 53c776b5 Iustin Pop

3847 53c776b5 Iustin Pop
    This checks that the instance is in the cluster.
3848 53c776b5 Iustin Pop

3849 53c776b5 Iustin Pop
    """
3850 53c776b5 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3851 53c776b5 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3852 53c776b5 Iustin Pop
    if instance is None:
3853 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3854 53c776b5 Iustin Pop
                                 self.op.instance_name)
3855 53c776b5 Iustin Pop
3856 53c776b5 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
3857 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout is not"
3858 53c776b5 Iustin Pop
                                 " drbd8, cannot migrate.")
3859 53c776b5 Iustin Pop
3860 53c776b5 Iustin Pop
    secondary_nodes = instance.secondary_nodes
3861 53c776b5 Iustin Pop
    if not secondary_nodes:
3862 733a2b6a Iustin Pop
      raise errors.ConfigurationError("No secondary node but using"
3863 733a2b6a Iustin Pop
                                      " drbd8 disk template")
3864 53c776b5 Iustin Pop
3865 53c776b5 Iustin Pop
    i_be = self.cfg.GetClusterInfo().FillBE(instance)
3866 53c776b5 Iustin Pop
3867 53c776b5 Iustin Pop
    target_node = secondary_nodes[0]
3868 53c776b5 Iustin Pop
    # check memory requirements on the secondary node
3869 53c776b5 Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
3870 53c776b5 Iustin Pop
                         instance.name, i_be[constants.BE_MEMORY],
3871 53c776b5 Iustin Pop
                         instance.hypervisor)
3872 53c776b5 Iustin Pop
3873 5bbd3f7f Michael Hanselmann
    # check bridge existence
3874 53c776b5 Iustin Pop
    brlist = [nic.bridge for nic in instance.nics]
3875 53c776b5 Iustin Pop
    result = self.rpc.call_bridges_exist(target_node, brlist)
3876 53c776b5 Iustin Pop
    if result.failed or not result.data:
3877 53c776b5 Iustin Pop
      raise errors.OpPrereqError("One or more target bridges %s does not"
3878 53c776b5 Iustin Pop
                                 " exist on destination node '%s'" %
3879 53c776b5 Iustin Pop
                                 (brlist, target_node))
3880 53c776b5 Iustin Pop
3881 53c776b5 Iustin Pop
    if not self.op.cleanup:
3882 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, target_node)
3883 53c776b5 Iustin Pop
      result = self.rpc.call_instance_migratable(instance.primary_node,
3884 53c776b5 Iustin Pop
                                                 instance)
3885 53c776b5 Iustin Pop
      msg = result.RemoteFailMsg()
3886 53c776b5 Iustin Pop
      if msg:
3887 53c776b5 Iustin Pop
        raise errors.OpPrereqError("Can't migrate: %s - please use failover" %
3888 53c776b5 Iustin Pop
                                   msg)
3889 53c776b5 Iustin Pop
3890 53c776b5 Iustin Pop
    self.instance = instance
3891 53c776b5 Iustin Pop
3892 53c776b5 Iustin Pop
  def _WaitUntilSync(self):
3893 53c776b5 Iustin Pop
    """Poll with custom rpc for disk sync.
3894 53c776b5 Iustin Pop

3895 53c776b5 Iustin Pop
    This uses our own step-based rpc call.
3896 53c776b5 Iustin Pop

3897 53c776b5 Iustin Pop
    """
3898 53c776b5 Iustin Pop
    self.feedback_fn("* wait until resync is done")
3899 53c776b5 Iustin Pop
    all_done = False
3900 53c776b5 Iustin Pop
    while not all_done:
3901 53c776b5 Iustin Pop
      all_done = True
3902 53c776b5 Iustin Pop
      result = self.rpc.call_drbd_wait_sync(self.all_nodes,
3903 53c776b5 Iustin Pop
                                            self.nodes_ip,
3904 53c776b5 Iustin Pop
                                            self.instance.disks)
3905 53c776b5 Iustin Pop
      min_percent = 100
3906 53c776b5 Iustin Pop
      for node, nres in result.items():
3907 53c776b5 Iustin Pop
        msg = nres.RemoteFailMsg()
3908 53c776b5 Iustin Pop
        if msg:
3909 53c776b5 Iustin Pop
          raise errors.OpExecError("Cannot resync disks on node %s: %s" %
3910 53c776b5 Iustin Pop
                                   (node, msg))
3911 0959c824 Iustin Pop
        node_done, node_percent = nres.payload
3912 53c776b5 Iustin Pop
        all_done = all_done and node_done
3913 53c776b5 Iustin Pop
        if node_percent is not None:
3914 53c776b5 Iustin Pop
          min_percent = min(min_percent, node_percent)
3915 53c776b5 Iustin Pop
      if not all_done:
3916 53c776b5 Iustin Pop
        if min_percent < 100:
3917 53c776b5 Iustin Pop
          self.feedback_fn("   - progress: %.1f%%" % min_percent)
3918 53c776b5 Iustin Pop
        time.sleep(2)
3919 53c776b5 Iustin Pop
3920 53c776b5 Iustin Pop
  def _EnsureSecondary(self, node):
3921 53c776b5 Iustin Pop
    """Demote a node to secondary.
3922 53c776b5 Iustin Pop

3923 53c776b5 Iustin Pop
    """
3924 53c776b5 Iustin Pop
    self.feedback_fn("* switching node %s to secondary mode" % node)
3925 53c776b5 Iustin Pop
3926 53c776b5 Iustin Pop
    for dev in self.instance.disks:
3927 53c776b5 Iustin Pop
      self.cfg.SetDiskID(dev, node)
3928 53c776b5 Iustin Pop
3929 53c776b5 Iustin Pop
    result = self.rpc.call_blockdev_close(node, self.instance.name,
3930 53c776b5 Iustin Pop
                                          self.instance.disks)
3931 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
3932 53c776b5 Iustin Pop
    if msg:
3933 53c776b5 Iustin Pop
      raise errors.OpExecError("Cannot change disk to secondary on node %s,"
3934 53c776b5 Iustin Pop
                               " error %s" % (node, msg))
3935 53c776b5 Iustin Pop
3936 53c776b5 Iustin Pop
  def _GoStandalone(self):
3937 53c776b5 Iustin Pop
    """Disconnect from the network.
3938 53c776b5 Iustin Pop

3939 53c776b5 Iustin Pop
    """
3940 53c776b5 Iustin Pop
    self.feedback_fn("* changing into standalone mode")
3941 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
3942 53c776b5 Iustin Pop
                                               self.instance.disks)
3943 53c776b5 Iustin Pop
    for node, nres in result.items():
3944 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3945 53c776b5 Iustin Pop
      if msg:
3946 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot disconnect disks node %s,"
3947 53c776b5 Iustin Pop
                                 " error %s" % (node, msg))
3948 53c776b5 Iustin Pop
3949 53c776b5 Iustin Pop
  def _GoReconnect(self, multimaster):
3950 53c776b5 Iustin Pop
    """Reconnect to the network.
3951 53c776b5 Iustin Pop

3952 53c776b5 Iustin Pop
    """
3953 53c776b5 Iustin Pop
    if multimaster:
3954 53c776b5 Iustin Pop
      msg = "dual-master"
3955 53c776b5 Iustin Pop
    else:
3956 53c776b5 Iustin Pop
      msg = "single-master"
3957 53c776b5 Iustin Pop
    self.feedback_fn("* changing disks into %s mode" % msg)
3958 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
3959 53c776b5 Iustin Pop
                                           self.instance.disks,
3960 53c776b5 Iustin Pop
                                           self.instance.name, multimaster)
3961 53c776b5 Iustin Pop
    for node, nres in result.items():
3962 53c776b5 Iustin Pop
      msg = nres.RemoteFailMsg()
3963 53c776b5 Iustin Pop
      if msg:
3964 53c776b5 Iustin Pop
        raise errors.OpExecError("Cannot change disks config on node %s,"
3965 53c776b5 Iustin Pop
                                 " error: %s" % (node, msg))
3966 53c776b5 Iustin Pop
3967 53c776b5 Iustin Pop
  def _ExecCleanup(self):
3968 53c776b5 Iustin Pop
    """Try to cleanup after a failed migration.
3969 53c776b5 Iustin Pop

3970 53c776b5 Iustin Pop
    The cleanup is done by:
3971 53c776b5 Iustin Pop
      - check that the instance is running only on one node
3972 53c776b5 Iustin Pop
        (and update the config if needed)
3973 53c776b5 Iustin Pop
      - change disks on its secondary node to secondary
3974 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
3975 53c776b5 Iustin Pop
      - disconnect from the network
3976 53c776b5 Iustin Pop
      - change disks into single-master mode
3977 53c776b5 Iustin Pop
      - wait again until disks are fully synchronized
3978 53c776b5 Iustin Pop

3979 53c776b5 Iustin Pop
    """
3980 53c776b5 Iustin Pop
    instance = self.instance
3981 53c776b5 Iustin Pop
    target_node = self.target_node
3982 53c776b5 Iustin Pop
    source_node = self.source_node
3983 53c776b5 Iustin Pop
3984 53c776b5 Iustin Pop
    # check running on only one node
3985 53c776b5 Iustin Pop
    self.feedback_fn("* checking where the instance actually runs"
3986 53c776b5 Iustin Pop
                     " (if this hangs, the hypervisor might be in"
3987 53c776b5 Iustin Pop
                     " a bad state)")
3988 53c776b5 Iustin Pop
    ins_l = self.rpc.call_instance_list(self.all_nodes, [instance.hypervisor])
3989 53c776b5 Iustin Pop
    for node, result in ins_l.items():
3990 53c776b5 Iustin Pop
      result.Raise()
3991 53c776b5 Iustin Pop
      if not isinstance(result.data, list):
3992 53c776b5 Iustin Pop
        raise errors.OpExecError("Can't contact node '%s'" % node)
3993 53c776b5 Iustin Pop
3994 53c776b5 Iustin Pop
    runningon_source = instance.name in ins_l[source_node].data
3995 53c776b5 Iustin Pop
    runningon_target = instance.name in ins_l[target_node].data
3996 53c776b5 Iustin Pop
3997 53c776b5 Iustin Pop
    if runningon_source and runningon_target:
3998 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance seems to be running on two nodes,"
3999 53c776b5 Iustin Pop
                               " or the hypervisor is confused. You will have"
4000 53c776b5 Iustin Pop
                               " to ensure manually that it runs only on one"
4001 53c776b5 Iustin Pop
                               " and restart this operation.")
4002 53c776b5 Iustin Pop
4003 53c776b5 Iustin Pop
    if not (runningon_source or runningon_target):
4004 53c776b5 Iustin Pop
      raise errors.OpExecError("Instance does not seem to be running at all."
4005 53c776b5 Iustin Pop
                               " In this case, it's safer to repair by"
4006 53c776b5 Iustin Pop
                               " running 'gnt-instance stop' to ensure disk"
4007 53c776b5 Iustin Pop
                               " shutdown, and then restarting it.")
4008 53c776b5 Iustin Pop
4009 53c776b5 Iustin Pop
    if runningon_target:
4010 53c776b5 Iustin Pop
      # the migration has actually succeeded, we need to update the config
4011 53c776b5 Iustin Pop
      self.feedback_fn("* instance running on secondary node (%s),"
4012 53c776b5 Iustin Pop
                       " updating config" % target_node)
4013 53c776b5 Iustin Pop
      instance.primary_node = target_node
4014 53c776b5 Iustin Pop
      self.cfg.Update(instance)
4015 53c776b5 Iustin Pop
      demoted_node = source_node
4016 53c776b5 Iustin Pop
    else:
4017 53c776b5 Iustin Pop
      self.feedback_fn("* instance confirmed to be running on its"
4018 53c776b5 Iustin Pop
                       " primary node (%s)" % source_node)
4019 53c776b5 Iustin Pop
      demoted_node = target_node
4020 53c776b5 Iustin Pop
4021 53c776b5 Iustin Pop
    self._EnsureSecondary(demoted_node)
4022 53c776b5 Iustin Pop
    try:
4023 53c776b5 Iustin Pop
      self._WaitUntilSync()
4024 53c776b5 Iustin Pop
    except errors.OpExecError:
4025 53c776b5 Iustin Pop
      # we ignore here errors, since if the device is standalone, it
4026 53c776b5 Iustin Pop
      # won't be able to sync
4027 53c776b5 Iustin Pop
      pass
4028 53c776b5 Iustin Pop
    self._GoStandalone()
4029 53c776b5 Iustin Pop
    self._GoReconnect(False)
4030 53c776b5 Iustin Pop
    self._WaitUntilSync()
4031 53c776b5 Iustin Pop
4032 53c776b5 Iustin Pop
    self.feedback_fn("* done")
4033 53c776b5 Iustin Pop
4034 6906a9d8 Guido Trotter
  def _RevertDiskStatus(self):
4035 6906a9d8 Guido Trotter
    """Try to revert the disk status after a failed migration.
4036 6906a9d8 Guido Trotter

4037 6906a9d8 Guido Trotter
    """
4038 6906a9d8 Guido Trotter
    target_node = self.target_node
4039 6906a9d8 Guido Trotter
    try:
4040 6906a9d8 Guido Trotter
      self._EnsureSecondary(target_node)
4041 6906a9d8 Guido Trotter
      self._GoStandalone()
4042 6906a9d8 Guido Trotter
      self._GoReconnect(False)
4043 6906a9d8 Guido Trotter
      self._WaitUntilSync()
4044 6906a9d8 Guido Trotter
    except errors.OpExecError, err:
4045 6906a9d8 Guido Trotter
      self.LogWarning("Migration failed and I can't reconnect the"
4046 6906a9d8 Guido Trotter
                      " drives: error '%s'\n"
4047 6906a9d8 Guido Trotter
                      "Please look and recover the instance status" %
4048 6906a9d8 Guido Trotter
                      str(err))
4049 6906a9d8 Guido Trotter
4050 6906a9d8 Guido Trotter
  def _AbortMigration(self):
4051 6906a9d8 Guido Trotter
    """Call the hypervisor code to abort a started migration.
4052 6906a9d8 Guido Trotter

4053 6906a9d8 Guido Trotter
    """
4054 6906a9d8 Guido Trotter
    instance = self.instance
4055 6906a9d8 Guido Trotter
    target_node = self.target_node
4056 6906a9d8 Guido Trotter
    migration_info = self.migration_info
4057 6906a9d8 Guido Trotter
4058 6906a9d8 Guido Trotter
    abort_result = self.rpc.call_finalize_migration(target_node,
4059 6906a9d8 Guido Trotter
                                                    instance,
4060 6906a9d8 Guido Trotter
                                                    migration_info,
4061 6906a9d8 Guido Trotter
                                                    False)
4062 6906a9d8 Guido Trotter
    abort_msg = abort_result.RemoteFailMsg()
4063 6906a9d8 Guido Trotter
    if abort_msg:
4064 6906a9d8 Guido Trotter
      logging.error("Aborting migration failed on target node %s: %s" %
4065 6906a9d8 Guido Trotter
                    (target_node, abort_msg))
4066 6906a9d8 Guido Trotter
      # Don't raise an exception here, as we stil have to try to revert the
4067 6906a9d8 Guido Trotter
      # disk status, even if this step failed.
4068 6906a9d8 Guido Trotter
4069 53c776b5 Iustin Pop
  def _ExecMigration(self):
4070 53c776b5 Iustin Pop
    """Migrate an instance.
4071 53c776b5 Iustin Pop

4072 53c776b5 Iustin Pop
    The migrate is done by:
4073 53c776b5 Iustin Pop
      - change the disks into dual-master mode
4074 53c776b5 Iustin Pop
      - wait until disks are fully synchronized again
4075 53c776b5 Iustin Pop
      - migrate the instance
4076 53c776b5 Iustin Pop
      - change disks on the new secondary node (the old primary) to secondary
4077 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
4078 53c776b5 Iustin Pop
      - change disks into single-master mode
4079 53c776b5 Iustin Pop

4080 53c776b5 Iustin Pop
    """
4081 53c776b5 Iustin Pop
    instance = self.instance
4082 53c776b5 Iustin Pop
    target_node = self.target_node
4083 53c776b5 Iustin Pop
    source_node = self.source_node
4084 53c776b5 Iustin Pop
4085 53c776b5 Iustin Pop
    self.feedback_fn("* checking disk consistency between source and target")
4086 53c776b5 Iustin Pop
    for dev in instance.disks:
4087 53c776b5 Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
4088 53c776b5 Iustin Pop
        raise errors.OpExecError("Disk %s is degraded or not fully"
4089 53c776b5 Iustin Pop
                                 " synchronized on target node,"
4090 53c776b5 Iustin Pop
                                 " aborting migrate." % dev.iv_name)
4091 53c776b5 Iustin Pop
4092 6906a9d8 Guido Trotter
    # First get the migration information from the remote node
4093 6906a9d8 Guido Trotter
    result = self.rpc.call_migration_info(source_node, instance)
4094 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
4095 6906a9d8 Guido Trotter
    if msg:
4096 6906a9d8 Guido Trotter
      log_err = ("Failed fetching source migration information from %s: %s" %
4097 0959c824 Iustin Pop
                 (source_node, msg))
4098 6906a9d8 Guido Trotter
      logging.error(log_err)
4099 6906a9d8 Guido Trotter
      raise errors.OpExecError(log_err)
4100 6906a9d8 Guido Trotter
4101 0959c824 Iustin Pop
    self.migration_info = migration_info = result.payload
4102 6906a9d8 Guido Trotter
4103 6906a9d8 Guido Trotter
    # Then switch the disks to master/master mode
4104 53c776b5 Iustin Pop
    self._EnsureSecondary(target_node)
4105 53c776b5 Iustin Pop
    self._GoStandalone()
4106 53c776b5 Iustin Pop
    self._GoReconnect(True)
4107 53c776b5 Iustin Pop
    self._WaitUntilSync()
4108 53c776b5 Iustin Pop
4109 6906a9d8 Guido Trotter
    self.feedback_fn("* preparing %s to accept the instance" % target_node)
4110 6906a9d8 Guido Trotter
    result = self.rpc.call_accept_instance(target_node,
4111 6906a9d8 Guido Trotter
                                           instance,
4112 6906a9d8 Guido Trotter
                                           migration_info,
4113 6906a9d8 Guido Trotter
                                           self.nodes_ip[target_node])
4114 6906a9d8 Guido Trotter
4115 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
4116 6906a9d8 Guido Trotter
    if msg:
4117 6906a9d8 Guido Trotter
      logging.error("Instance pre-migration failed, trying to revert"
4118 6906a9d8 Guido Trotter
                    " disk status: %s", msg)
4119 6906a9d8 Guido Trotter
      self._AbortMigration()
4120 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
4121 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not pre-migrate instance %s: %s" %
4122 6906a9d8 Guido Trotter
                               (instance.name, msg))
4123 6906a9d8 Guido Trotter
4124 53c776b5 Iustin Pop
    self.feedback_fn("* migrating instance to %s" % target_node)
4125 53c776b5 Iustin Pop
    time.sleep(10)
4126 53c776b5 Iustin Pop
    result = self.rpc.call_instance_migrate(source_node, instance,
4127 53c776b5 Iustin Pop
                                            self.nodes_ip[target_node],
4128 53c776b5 Iustin Pop
                                            self.op.live)
4129 53c776b5 Iustin Pop
    msg = result.RemoteFailMsg()
4130 53c776b5 Iustin Pop
    if msg:
4131 53c776b5 Iustin Pop
      logging.error("Instance migration failed, trying to revert"
4132 53c776b5 Iustin Pop
                    " disk status: %s", msg)
4133 6906a9d8 Guido Trotter
      self._AbortMigration()
4134 6906a9d8 Guido Trotter
      self._RevertDiskStatus()
4135 53c776b5 Iustin Pop
      raise errors.OpExecError("Could not migrate instance %s: %s" %
4136 53c776b5 Iustin Pop
                               (instance.name, msg))
4137 53c776b5 Iustin Pop
    time.sleep(10)
4138 53c776b5 Iustin Pop
4139 53c776b5 Iustin Pop
    instance.primary_node = target_node
4140 53c776b5 Iustin Pop
    # distribute new instance config to the other nodes
4141 53c776b5 Iustin Pop
    self.cfg.Update(instance)
4142 53c776b5 Iustin Pop
4143 6906a9d8 Guido Trotter
    result = self.rpc.call_finalize_migration(target_node,
4144 6906a9d8 Guido Trotter
                                              instance,
4145 6906a9d8 Guido Trotter
                                              migration_info,
4146 6906a9d8 Guido Trotter
                                              True)
4147 6906a9d8 Guido Trotter
    msg = result.RemoteFailMsg()
4148 6906a9d8 Guido Trotter
    if msg:
4149 6906a9d8 Guido Trotter
      logging.error("Instance migration succeeded, but finalization failed:"
4150 6906a9d8 Guido Trotter
                    " %s" % msg)
4151 6906a9d8 Guido Trotter
      raise errors.OpExecError("Could not finalize instance migration: %s" %
4152 6906a9d8 Guido Trotter
                               msg)
4153 6906a9d8 Guido Trotter
4154 53c776b5 Iustin Pop
    self._EnsureSecondary(source_node)
4155 53c776b5 Iustin Pop
    self._WaitUntilSync()
4156 53c776b5 Iustin Pop
    self._GoStandalone()
4157 53c776b5 Iustin Pop
    self._GoReconnect(False)
4158 53c776b5 Iustin Pop
    self._WaitUntilSync()
4159 53c776b5 Iustin Pop
4160 53c776b5 Iustin Pop
    self.feedback_fn("* done")
4161 53c776b5 Iustin Pop
4162 53c776b5 Iustin Pop
  def Exec(self, feedback_fn):
4163 53c776b5 Iustin Pop
    """Perform the migration.
4164 53c776b5 Iustin Pop

4165 53c776b5 Iustin Pop
    """
4166 53c776b5 Iustin Pop
    self.feedback_fn = feedback_fn
4167 53c776b5 Iustin Pop
4168 53c776b5 Iustin Pop
    self.source_node = self.instance.primary_node
4169 53c776b5 Iustin Pop
    self.target_node = self.instance.secondary_nodes[0]
4170 53c776b5 Iustin Pop
    self.all_nodes = [self.source_node, self.target_node]
4171 53c776b5 Iustin Pop
    self.nodes_ip = {
4172 53c776b5 Iustin Pop
      self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
4173 53c776b5 Iustin Pop
      self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
4174 53c776b5 Iustin Pop
      }
4175 53c776b5 Iustin Pop
    if self.op.cleanup:
4176 53c776b5 Iustin Pop
      return self._ExecCleanup()
4177 53c776b5 Iustin Pop
    else:
4178 53c776b5 Iustin Pop
      return self._ExecMigration()
4179 53c776b5 Iustin Pop
4180 53c776b5 Iustin Pop
4181 428958aa Iustin Pop
def _CreateBlockDev(lu, node, instance, device, force_create,
4182 428958aa Iustin Pop
                    info, force_open):
4183 428958aa Iustin Pop
  """Create a tree of block devices on a given node.
4184 a8083063 Iustin Pop

4185 a8083063 Iustin Pop
  If this device type has to be created on secondaries, create it and
4186 a8083063 Iustin Pop
  all its children.
4187 a8083063 Iustin Pop

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

4190 428958aa Iustin Pop
  @param lu: the lu on whose behalf we execute
4191 428958aa Iustin Pop
  @param node: the node on which to create the device
4192 428958aa Iustin Pop
  @type instance: L{objects.Instance}
4193 428958aa Iustin Pop
  @param instance: the instance which owns the device
4194 428958aa Iustin Pop
  @type device: L{objects.Disk}
4195 428958aa Iustin Pop
  @param device: the device to create
4196 428958aa Iustin Pop
  @type force_create: boolean
4197 428958aa Iustin Pop
  @param force_create: whether to force creation of this device; this
4198 428958aa Iustin Pop
      will be change to True whenever we find a device which has
4199 428958aa Iustin Pop
      CreateOnSecondary() attribute
4200 428958aa Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
4201 428958aa Iustin Pop
      (this will be represented as a LVM tag)
4202 428958aa Iustin Pop
  @type force_open: boolean
4203 428958aa Iustin Pop
  @param force_open: this parameter will be passes to the
4204 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
4205 428958aa Iustin Pop
      whether we run on primary or not, and it affects both
4206 428958aa Iustin Pop
      the child assembly and the device own Open() execution
4207 428958aa Iustin Pop

4208 a8083063 Iustin Pop
  """
4209 a8083063 Iustin Pop
  if device.CreateOnSecondary():
4210 428958aa Iustin Pop
    force_create = True
4211 796cab27 Iustin Pop
4212 a8083063 Iustin Pop
  if device.children:
4213 a8083063 Iustin Pop
    for child in device.children:
4214 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, child, force_create,
4215 428958aa Iustin Pop
                      info, force_open)
4216 a8083063 Iustin Pop
4217 428958aa Iustin Pop
  if not force_create:
4218 796cab27 Iustin Pop
    return
4219 796cab27 Iustin Pop
4220 de12473a Iustin Pop
  _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
4221 de12473a Iustin Pop
4222 de12473a Iustin Pop
4223 de12473a Iustin Pop
def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
4224 de12473a Iustin Pop
  """Create a single block device on a given node.
4225 de12473a Iustin Pop

4226 de12473a Iustin Pop
  This will not recurse over children of the device, so they must be
4227 de12473a Iustin Pop
  created in advance.
4228 de12473a Iustin Pop

4229 de12473a Iustin Pop
  @param lu: the lu on whose behalf we execute
4230 de12473a Iustin Pop
  @param node: the node on which to create the device
4231 de12473a Iustin Pop
  @type instance: L{objects.Instance}
4232 de12473a Iustin Pop
  @param instance: the instance which owns the device
4233 de12473a Iustin Pop
  @type device: L{objects.Disk}
4234 de12473a Iustin Pop
  @param device: the device to create
4235 de12473a Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
4236 de12473a Iustin Pop
      (this will be represented as a LVM tag)
4237 de12473a Iustin Pop
  @type force_open: boolean
4238 de12473a Iustin Pop
  @param force_open: this parameter will be passes to the
4239 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
4240 de12473a Iustin Pop
      whether we run on primary or not, and it affects both
4241 de12473a Iustin Pop
      the child assembly and the device own Open() execution
4242 de12473a Iustin Pop

4243 de12473a Iustin Pop
  """
4244 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
4245 7d81697f Iustin Pop
  result = lu.rpc.call_blockdev_create(node, device, device.size,
4246 428958aa Iustin Pop
                                       instance.name, force_open, info)
4247 7d81697f Iustin Pop
  msg = result.RemoteFailMsg()
4248 7d81697f Iustin Pop
  if msg:
4249 428958aa Iustin Pop
    raise errors.OpExecError("Can't create block device %s on"
4250 7d81697f Iustin Pop
                             " node %s for instance %s: %s" %
4251 7d81697f Iustin Pop
                             (device, node, instance.name, msg))
4252 a8083063 Iustin Pop
  if device.physical_id is None:
4253 0959c824 Iustin Pop
    device.physical_id = result.payload
4254 a8083063 Iustin Pop
4255 a8083063 Iustin Pop
4256 b9bddb6b Iustin Pop
def _GenerateUniqueNames(lu, exts):
4257 923b1523 Iustin Pop
  """Generate a suitable LV name.
4258 923b1523 Iustin Pop

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

4261 923b1523 Iustin Pop
  """
4262 923b1523 Iustin Pop
  results = []
4263 923b1523 Iustin Pop
  for val in exts:
4264 b9bddb6b Iustin Pop
    new_id = lu.cfg.GenerateUniqueID()
4265 923b1523 Iustin Pop
    results.append("%s%s" % (new_id, val))
4266 923b1523 Iustin Pop
  return results
4267 923b1523 Iustin Pop
4268 923b1523 Iustin Pop
4269 b9bddb6b Iustin Pop
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
4270 ffa1c0dc Iustin Pop
                         p_minor, s_minor):
4271 a1f445d3 Iustin Pop
  """Generate a drbd8 device complete with its children.
4272 a1f445d3 Iustin Pop

4273 a1f445d3 Iustin Pop
  """
4274 b9bddb6b Iustin Pop
  port = lu.cfg.AllocatePort()
4275 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
4276 b9bddb6b Iustin Pop
  shared_secret = lu.cfg.GenerateDRBDSecret()
4277 a1f445d3 Iustin Pop
  dev_data = objects.Disk(dev_type=constants.LD_LV, size=size,
4278 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[0]))
4279 a1f445d3 Iustin Pop
  dev_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
4280 a1f445d3 Iustin Pop
                          logical_id=(vgname, names[1]))
4281 a1f445d3 Iustin Pop
  drbd_dev = objects.Disk(dev_type=constants.LD_DRBD8, size=size,
4282 ffa1c0dc Iustin Pop
                          logical_id=(primary, secondary, port,
4283 f9518d38 Iustin Pop
                                      p_minor, s_minor,
4284 f9518d38 Iustin Pop
                                      shared_secret),
4285 ffa1c0dc Iustin Pop
                          children=[dev_data, dev_meta],
4286 a1f445d3 Iustin Pop
                          iv_name=iv_name)
4287 a1f445d3 Iustin Pop
  return drbd_dev
4288 a1f445d3 Iustin Pop
4289 7c0d6283 Michael Hanselmann
4290 b9bddb6b Iustin Pop
def _GenerateDiskTemplate(lu, template_name,
4291 a8083063 Iustin Pop
                          instance_name, primary_node,
4292 08db7c5c Iustin Pop
                          secondary_nodes, disk_info,
4293 e2a65344 Iustin Pop
                          file_storage_dir, file_driver,
4294 e2a65344 Iustin Pop
                          base_index):
4295 a8083063 Iustin Pop
  """Generate the entire disk layout for a given template type.
4296 a8083063 Iustin Pop

4297 a8083063 Iustin Pop
  """
4298 a8083063 Iustin Pop
  #TODO: compute space requirements
4299 a8083063 Iustin Pop
4300 b9bddb6b Iustin Pop
  vgname = lu.cfg.GetVGName()
4301 08db7c5c Iustin Pop
  disk_count = len(disk_info)
4302 08db7c5c Iustin Pop
  disks = []
4303 3517d9b9 Manuel Franceschini
  if template_name == constants.DT_DISKLESS:
4304 08db7c5c Iustin Pop
    pass
4305 3517d9b9 Manuel Franceschini
  elif template_name == constants.DT_PLAIN:
4306 a8083063 Iustin Pop
    if len(secondary_nodes) != 0:
4307 a8083063 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4308 923b1523 Iustin Pop
4309 fb4b324b Guido Trotter
    names = _GenerateUniqueNames(lu, [".disk%d" % (base_index + i)
4310 08db7c5c Iustin Pop
                                      for i in range(disk_count)])
4311 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4312 e2a65344 Iustin Pop
      disk_index = idx + base_index
4313 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_LV, size=disk["size"],
4314 08db7c5c Iustin Pop
                              logical_id=(vgname, names[idx]),
4315 6ec66eae Iustin Pop
                              iv_name="disk/%d" % disk_index,
4316 6ec66eae Iustin Pop
                              mode=disk["mode"])
4317 08db7c5c Iustin Pop
      disks.append(disk_dev)
4318 a1f445d3 Iustin Pop
  elif template_name == constants.DT_DRBD8:
4319 a1f445d3 Iustin Pop
    if len(secondary_nodes) != 1:
4320 a1f445d3 Iustin Pop
      raise errors.ProgrammerError("Wrong template configuration")
4321 a1f445d3 Iustin Pop
    remote_node = secondary_nodes[0]
4322 08db7c5c Iustin Pop
    minors = lu.cfg.AllocateDRBDMinor(
4323 08db7c5c Iustin Pop
      [primary_node, remote_node] * len(disk_info), instance_name)
4324 08db7c5c Iustin Pop
4325 e6c1ff2f Iustin Pop
    names = []
4326 fb4b324b Guido Trotter
    for lv_prefix in _GenerateUniqueNames(lu, [".disk%d" % (base_index + i)
4327 e6c1ff2f Iustin Pop
                                               for i in range(disk_count)]):
4328 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_data")
4329 e6c1ff2f Iustin Pop
      names.append(lv_prefix + "_meta")
4330 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4331 112050d9 Iustin Pop
      disk_index = idx + base_index
4332 08db7c5c Iustin Pop
      disk_dev = _GenerateDRBD8Branch(lu, primary_node, remote_node,
4333 08db7c5c Iustin Pop
                                      disk["size"], names[idx*2:idx*2+2],
4334 e2a65344 Iustin Pop
                                      "disk/%d" % disk_index,
4335 08db7c5c Iustin Pop
                                      minors[idx*2], minors[idx*2+1])
4336 6ec66eae Iustin Pop
      disk_dev.mode = disk["mode"]
4337 08db7c5c Iustin Pop
      disks.append(disk_dev)
4338 0f1a06e3 Manuel Franceschini
  elif template_name == constants.DT_FILE:
4339 0f1a06e3 Manuel Franceschini
    if len(secondary_nodes) != 0:
4340 0f1a06e3 Manuel Franceschini
      raise errors.ProgrammerError("Wrong template configuration")
4341 0f1a06e3 Manuel Franceschini
4342 08db7c5c Iustin Pop
    for idx, disk in enumerate(disk_info):
4343 112050d9 Iustin Pop
      disk_index = idx + base_index
4344 08db7c5c Iustin Pop
      disk_dev = objects.Disk(dev_type=constants.LD_FILE, size=disk["size"],
4345 e2a65344 Iustin Pop
                              iv_name="disk/%d" % disk_index,
4346 08db7c5c Iustin Pop
                              logical_id=(file_driver,
4347 08db7c5c Iustin Pop
                                          "%s/disk%d" % (file_storage_dir,
4348 43e99cff Guido Trotter
                                                         disk_index)),
4349 6ec66eae Iustin Pop
                              mode=disk["mode"])
4350 08db7c5c Iustin Pop
      disks.append(disk_dev)
4351 a8083063 Iustin Pop
  else:
4352 a8083063 Iustin Pop
    raise errors.ProgrammerError("Invalid disk template '%s'" % template_name)
4353 a8083063 Iustin Pop
  return disks
4354 a8083063 Iustin Pop
4355 a8083063 Iustin Pop
4356 a0c3fea1 Michael Hanselmann
def _GetInstanceInfoText(instance):
4357 3ecf6786 Iustin Pop
  """Compute that text that should be added to the disk's metadata.
4358 3ecf6786 Iustin Pop

4359 3ecf6786 Iustin Pop
  """
4360 a0c3fea1 Michael Hanselmann
  return "originstname+%s" % instance.name
4361 a0c3fea1 Michael Hanselmann
4362 a0c3fea1 Michael Hanselmann
4363 b9bddb6b Iustin Pop
def _CreateDisks(lu, instance):
4364 a8083063 Iustin Pop
  """Create all disks for an instance.
4365 a8083063 Iustin Pop

4366 a8083063 Iustin Pop
  This abstracts away some work from AddInstance.
4367 a8083063 Iustin Pop

4368 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4369 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4370 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4371 e4376078 Iustin Pop
  @param instance: the instance whose disks we should create
4372 e4376078 Iustin Pop
  @rtype: boolean
4373 e4376078 Iustin Pop
  @return: the success of the creation
4374 a8083063 Iustin Pop

4375 a8083063 Iustin Pop
  """
4376 a0c3fea1 Michael Hanselmann
  info = _GetInstanceInfoText(instance)
4377 428958aa Iustin Pop
  pnode = instance.primary_node
4378 a0c3fea1 Michael Hanselmann
4379 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4380 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4381 428958aa Iustin Pop
    result = lu.rpc.call_file_storage_dir_create(pnode, file_storage_dir)
4382 0f1a06e3 Manuel Franceschini
4383 781de953 Iustin Pop
    if result.failed or not result.data:
4384 428958aa Iustin Pop
      raise errors.OpExecError("Could not connect to node '%s'" % pnode)
4385 0f1a06e3 Manuel Franceschini
4386 781de953 Iustin Pop
    if not result.data[0]:
4387 796cab27 Iustin Pop
      raise errors.OpExecError("Failed to create directory '%s'" %
4388 796cab27 Iustin Pop
                               file_storage_dir)
4389 0f1a06e3 Manuel Franceschini
4390 24991749 Iustin Pop
  # Note: this needs to be kept in sync with adding of disks in
4391 24991749 Iustin Pop
  # LUSetInstanceParams
4392 a8083063 Iustin Pop
  for device in instance.disks:
4393 9a4f63d1 Iustin Pop
    logging.info("Creating volume %s for instance %s",
4394 9a4f63d1 Iustin Pop
                 device.iv_name, instance.name)
4395 a8083063 Iustin Pop
    #HARDCODE
4396 428958aa Iustin Pop
    for node in instance.all_nodes:
4397 428958aa Iustin Pop
      f_create = node == pnode
4398 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, device, f_create, info, f_create)
4399 a8083063 Iustin Pop
4400 a8083063 Iustin Pop
4401 b9bddb6b Iustin Pop
def _RemoveDisks(lu, instance):
4402 a8083063 Iustin Pop
  """Remove all disks for an instance.
4403 a8083063 Iustin Pop

4404 a8083063 Iustin Pop
  This abstracts away some work from `AddInstance()` and
4405 a8083063 Iustin Pop
  `RemoveInstance()`. Note that in case some of the devices couldn't
4406 1d67656e Iustin Pop
  be removed, the removal will continue with the other ones (compare
4407 a8083063 Iustin Pop
  with `_CreateDisks()`).
4408 a8083063 Iustin Pop

4409 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4410 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4411 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4412 e4376078 Iustin Pop
  @param instance: the instance whose disks we should remove
4413 e4376078 Iustin Pop
  @rtype: boolean
4414 e4376078 Iustin Pop
  @return: the success of the removal
4415 a8083063 Iustin Pop

4416 a8083063 Iustin Pop
  """
4417 9a4f63d1 Iustin Pop
  logging.info("Removing block devices for instance %s", instance.name)
4418 a8083063 Iustin Pop
4419 e1bc0878 Iustin Pop
  all_result = True
4420 a8083063 Iustin Pop
  for device in instance.disks:
4421 a8083063 Iustin Pop
    for node, disk in device.ComputeNodeTree(instance.primary_node):
4422 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(disk, node)
4423 e1bc0878 Iustin Pop
      msg = lu.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
4424 e1bc0878 Iustin Pop
      if msg:
4425 e1bc0878 Iustin Pop
        lu.LogWarning("Could not remove block device %s on node %s,"
4426 e1bc0878 Iustin Pop
                      " continuing anyway: %s", device.iv_name, node, msg)
4427 e1bc0878 Iustin Pop
        all_result = False
4428 0f1a06e3 Manuel Franceschini
4429 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4430 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4431 781de953 Iustin Pop
    result = lu.rpc.call_file_storage_dir_remove(instance.primary_node,
4432 781de953 Iustin Pop
                                                 file_storage_dir)
4433 781de953 Iustin Pop
    if result.failed or not result.data:
4434 9a4f63d1 Iustin Pop
      logging.error("Could not remove directory '%s'", file_storage_dir)
4435 e1bc0878 Iustin Pop
      all_result = False
4436 0f1a06e3 Manuel Franceschini
4437 e1bc0878 Iustin Pop
  return all_result
4438 a8083063 Iustin Pop
4439 a8083063 Iustin Pop
4440 08db7c5c Iustin Pop
def _ComputeDiskSize(disk_template, disks):
4441 e2fe6369 Iustin Pop
  """Compute disk size requirements in the volume group
4442 e2fe6369 Iustin Pop

4443 e2fe6369 Iustin Pop
  """
4444 e2fe6369 Iustin Pop
  # Required free disk space as a function of disk and swap space
4445 e2fe6369 Iustin Pop
  req_size_dict = {
4446 e2fe6369 Iustin Pop
    constants.DT_DISKLESS: None,
4447 08db7c5c Iustin Pop
    constants.DT_PLAIN: sum(d["size"] for d in disks),
4448 08db7c5c Iustin Pop
    # 128 MB are added for drbd metadata for each disk
4449 08db7c5c Iustin Pop
    constants.DT_DRBD8: sum(d["size"] + 128 for d in disks),
4450 e2fe6369 Iustin Pop
    constants.DT_FILE: None,
4451 e2fe6369 Iustin Pop
  }
4452 e2fe6369 Iustin Pop
4453 e2fe6369 Iustin Pop
  if disk_template not in req_size_dict:
4454 e2fe6369 Iustin Pop
    raise errors.ProgrammerError("Disk template '%s' size requirement"
4455 e2fe6369 Iustin Pop
                                 " is unknown" %  disk_template)
4456 e2fe6369 Iustin Pop
4457 e2fe6369 Iustin Pop
  return req_size_dict[disk_template]
4458 e2fe6369 Iustin Pop
4459 e2fe6369 Iustin Pop
4460 74409b12 Iustin Pop
def _CheckHVParams(lu, nodenames, hvname, hvparams):
4461 74409b12 Iustin Pop
  """Hypervisor parameter validation.
4462 74409b12 Iustin Pop

4463 74409b12 Iustin Pop
  This function abstract the hypervisor parameter validation to be
4464 74409b12 Iustin Pop
  used in both instance create and instance modify.
4465 74409b12 Iustin Pop

4466 74409b12 Iustin Pop
  @type lu: L{LogicalUnit}
4467 74409b12 Iustin Pop
  @param lu: the logical unit for which we check
4468 74409b12 Iustin Pop
  @type nodenames: list
4469 74409b12 Iustin Pop
  @param nodenames: the list of nodes on which we should check
4470 74409b12 Iustin Pop
  @type hvname: string
4471 74409b12 Iustin Pop
  @param hvname: the name of the hypervisor we should use
4472 74409b12 Iustin Pop
  @type hvparams: dict
4473 74409b12 Iustin Pop
  @param hvparams: the parameters which we need to check
4474 74409b12 Iustin Pop
  @raise errors.OpPrereqError: if the parameters are not valid
4475 74409b12 Iustin Pop

4476 74409b12 Iustin Pop
  """
4477 74409b12 Iustin Pop
  hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
4478 74409b12 Iustin Pop
                                                  hvname,
4479 74409b12 Iustin Pop
                                                  hvparams)
4480 74409b12 Iustin Pop
  for node in nodenames:
4481 781de953 Iustin Pop
    info = hvinfo[node]
4482 68c6f21c Iustin Pop
    if info.offline:
4483 68c6f21c Iustin Pop
      continue
4484 0959c824 Iustin Pop
    msg = info.RemoteFailMsg()
4485 0959c824 Iustin Pop
    if msg:
4486 d64769a8 Iustin Pop
      raise errors.OpPrereqError("Hypervisor parameter validation"
4487 d64769a8 Iustin Pop
                                 " failed on node %s: %s" % (node, msg))
4488 74409b12 Iustin Pop
4489 74409b12 Iustin Pop
4490 a8083063 Iustin Pop
class LUCreateInstance(LogicalUnit):
4491 a8083063 Iustin Pop
  """Create an instance.
4492 a8083063 Iustin Pop

4493 a8083063 Iustin Pop
  """
4494 a8083063 Iustin Pop
  HPATH = "instance-add"
4495 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
4496 08db7c5c Iustin Pop
  _OP_REQP = ["instance_name", "disks", "disk_template",
4497 08db7c5c Iustin Pop
              "mode", "start",
4498 08db7c5c Iustin Pop
              "wait_for_sync", "ip_check", "nics",
4499 338e51e8 Iustin Pop
              "hvparams", "beparams"]
4500 7baf741d Guido Trotter
  REQ_BGL = False
4501 7baf741d Guido Trotter
4502 7baf741d Guido Trotter
  def _ExpandNode(self, node):
4503 7baf741d Guido Trotter
    """Expands and checks one node name.
4504 7baf741d Guido Trotter

4505 7baf741d Guido Trotter
    """
4506 7baf741d Guido Trotter
    node_full = self.cfg.ExpandNodeName(node)
4507 7baf741d Guido Trotter
    if node_full is None:
4508 7baf741d Guido Trotter
      raise errors.OpPrereqError("Unknown node %s" % node)
4509 7baf741d Guido Trotter
    return node_full
4510 7baf741d Guido Trotter
4511 7baf741d Guido Trotter
  def ExpandNames(self):
4512 7baf741d Guido Trotter
    """ExpandNames for CreateInstance.
4513 7baf741d Guido Trotter

4514 7baf741d Guido Trotter
    Figure out the right locks for instance creation.
4515 7baf741d Guido Trotter

4516 7baf741d Guido Trotter
    """
4517 7baf741d Guido Trotter
    self.needed_locks = {}
4518 7baf741d Guido Trotter
4519 7baf741d Guido Trotter
    # set optional parameters to none if they don't exist
4520 6785674e Iustin Pop
    for attr in ["pnode", "snode", "iallocator", "hypervisor"]:
4521 7baf741d Guido Trotter
      if not hasattr(self.op, attr):
4522 7baf741d Guido Trotter
        setattr(self.op, attr, None)
4523 7baf741d Guido Trotter
4524 4b2f38dd Iustin Pop
    # cheap checks, mostly valid constants given
4525 4b2f38dd Iustin Pop
4526 7baf741d Guido Trotter
    # verify creation mode
4527 7baf741d Guido Trotter
    if self.op.mode not in (constants.INSTANCE_CREATE,
4528 7baf741d Guido Trotter
                            constants.INSTANCE_IMPORT):
4529 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid instance creation mode '%s'" %
4530 7baf741d Guido Trotter
                                 self.op.mode)
4531 4b2f38dd Iustin Pop
4532 7baf741d Guido Trotter
    # disk template and mirror node verification
4533 7baf741d Guido Trotter
    if self.op.disk_template not in constants.DISK_TEMPLATES:
4534 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid disk template name")
4535 7baf741d Guido Trotter
4536 4b2f38dd Iustin Pop
    if self.op.hypervisor is None:
4537 4b2f38dd Iustin Pop
      self.op.hypervisor = self.cfg.GetHypervisorType()
4538 4b2f38dd Iustin Pop
4539 8705eb96 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
4540 8705eb96 Iustin Pop
    enabled_hvs = cluster.enabled_hypervisors
4541 4b2f38dd Iustin Pop
    if self.op.hypervisor not in enabled_hvs:
4542 4b2f38dd Iustin Pop
      raise errors.OpPrereqError("Selected hypervisor (%s) not enabled in the"
4543 4b2f38dd Iustin Pop
                                 " cluster (%s)" % (self.op.hypervisor,
4544 4b2f38dd Iustin Pop
                                  ",".join(enabled_hvs)))
4545 4b2f38dd Iustin Pop
4546 6785674e Iustin Pop
    # check hypervisor parameter syntax (locally)
4547 a5728081 Guido Trotter
    utils.ForceDictType(self.op.hvparams, constants.HVS_PARAMETER_TYPES)
4548 8705eb96 Iustin Pop
    filled_hvp = cluster.FillDict(cluster.hvparams[self.op.hypervisor],
4549 8705eb96 Iustin Pop
                                  self.op.hvparams)
4550 6785674e Iustin Pop
    hv_type = hypervisor.GetHypervisor(self.op.hypervisor)
4551 8705eb96 Iustin Pop
    hv_type.CheckParameterSyntax(filled_hvp)
4552 67fc3042 Iustin Pop
    self.hv_full = filled_hvp
4553 6785674e Iustin Pop
4554 338e51e8 Iustin Pop
    # fill and remember the beparams dict
4555 a5728081 Guido Trotter
    utils.ForceDictType(self.op.beparams, constants.BES_PARAMETER_TYPES)
4556 338e51e8 Iustin Pop
    self.be_full = cluster.FillDict(cluster.beparams[constants.BEGR_DEFAULT],
4557 338e51e8 Iustin Pop
                                    self.op.beparams)
4558 338e51e8 Iustin Pop
4559 7baf741d Guido Trotter
    #### instance parameters check
4560 7baf741d Guido Trotter
4561 7baf741d Guido Trotter
    # instance name verification
4562 7baf741d Guido Trotter
    hostname1 = utils.HostInfo(self.op.instance_name)
4563 7baf741d Guido Trotter
    self.op.instance_name = instance_name = hostname1.name
4564 7baf741d Guido Trotter
4565 7baf741d Guido Trotter
    # this is just a preventive check, but someone might still add this
4566 7baf741d Guido Trotter
    # instance in the meantime, and creation will fail at lock-add time
4567 7baf741d Guido Trotter
    if instance_name in self.cfg.GetInstanceList():
4568 7baf741d Guido Trotter
      raise errors.OpPrereqError("Instance '%s' is already in the cluster" %
4569 7baf741d Guido Trotter
                                 instance_name)
4570 7baf741d Guido Trotter
4571 7baf741d Guido Trotter
    self.add_locks[locking.LEVEL_INSTANCE] = instance_name
4572 7baf741d Guido Trotter
4573 08db7c5c Iustin Pop
    # NIC buildup
4574 08db7c5c Iustin Pop
    self.nics = []
4575 08db7c5c Iustin Pop
    for nic in self.op.nics:
4576 08db7c5c Iustin Pop
      # ip validity checks
4577 08db7c5c Iustin Pop
      ip = nic.get("ip", None)
4578 08db7c5c Iustin Pop
      if ip is None or ip.lower() == "none":
4579 08db7c5c Iustin Pop
        nic_ip = None
4580 08db7c5c Iustin Pop
      elif ip.lower() == constants.VALUE_AUTO:
4581 08db7c5c Iustin Pop
        nic_ip = hostname1.ip
4582 08db7c5c Iustin Pop
      else:
4583 08db7c5c Iustin Pop
        if not utils.IsValidIP(ip):
4584 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Given IP address '%s' doesn't look"
4585 08db7c5c Iustin Pop
                                     " like a valid IP" % ip)
4586 08db7c5c Iustin Pop
        nic_ip = ip
4587 08db7c5c Iustin Pop
4588 08db7c5c Iustin Pop
      # MAC address verification
4589 08db7c5c Iustin Pop
      mac = nic.get("mac", constants.VALUE_AUTO)
4590 08db7c5c Iustin Pop
      if mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4591 08db7c5c Iustin Pop
        if not utils.IsValidMac(mac.lower()):
4592 08db7c5c Iustin Pop
          raise errors.OpPrereqError("Invalid MAC address specified: %s" %
4593 08db7c5c Iustin Pop
                                     mac)
4594 08db7c5c Iustin Pop
      # bridge verification
4595 9939547b Iustin Pop
      bridge = nic.get("bridge", None)
4596 9939547b Iustin Pop
      if bridge is None:
4597 9939547b Iustin Pop
        bridge = self.cfg.GetDefBridge()
4598 08db7c5c Iustin Pop
      self.nics.append(objects.NIC(mac=mac, ip=nic_ip, bridge=bridge))
4599 08db7c5c Iustin Pop
4600 08db7c5c Iustin Pop
    # disk checks/pre-build
4601 08db7c5c Iustin Pop
    self.disks = []
4602 08db7c5c Iustin Pop
    for disk in self.op.disks:
4603 08db7c5c Iustin Pop
      mode = disk.get("mode", constants.DISK_RDWR)
4604 08db7c5c Iustin Pop
      if mode not in constants.DISK_ACCESS_SET:
4605 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk access mode '%s'" %
4606 08db7c5c Iustin Pop
                                   mode)
4607 08db7c5c Iustin Pop
      size = disk.get("size", None)
4608 08db7c5c Iustin Pop
      if size is None:
4609 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Missing disk size")
4610 08db7c5c Iustin Pop
      try:
4611 08db7c5c Iustin Pop
        size = int(size)
4612 08db7c5c Iustin Pop
      except ValueError:
4613 08db7c5c Iustin Pop
        raise errors.OpPrereqError("Invalid disk size '%s'" % size)
4614 08db7c5c Iustin Pop
      self.disks.append({"size": size, "mode": mode})
4615 08db7c5c Iustin Pop
4616 7baf741d Guido Trotter
    # used in CheckPrereq for ip ping check
4617 7baf741d Guido Trotter
    self.check_ip = hostname1.ip
4618 7baf741d Guido Trotter
4619 7baf741d Guido Trotter
    # file storage checks
4620 7baf741d Guido Trotter
    if (self.op.file_driver and
4621 7baf741d Guido Trotter
        not self.op.file_driver in constants.FILE_DRIVER):
4622 7baf741d Guido Trotter
      raise errors.OpPrereqError("Invalid file driver name '%s'" %
4623 7baf741d Guido Trotter
                                 self.op.file_driver)
4624 7baf741d Guido Trotter
4625 7baf741d Guido Trotter
    if self.op.file_storage_dir and os.path.isabs(self.op.file_storage_dir):
4626 7baf741d Guido Trotter
      raise errors.OpPrereqError("File storage directory path not absolute")
4627 7baf741d Guido Trotter
4628 7baf741d Guido Trotter
    ### Node/iallocator related checks
4629 7baf741d Guido Trotter
    if [self.op.iallocator, self.op.pnode].count(None) != 1:
4630 7baf741d Guido Trotter
      raise errors.OpPrereqError("One and only one of iallocator and primary"
4631 7baf741d Guido Trotter
                                 " node must be given")
4632 7baf741d Guido Trotter
4633 7baf741d Guido Trotter
    if self.op.iallocator:
4634 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4635 7baf741d Guido Trotter
    else:
4636 7baf741d Guido Trotter
      self.op.pnode = self._ExpandNode(self.op.pnode)
4637 7baf741d Guido Trotter
      nodelist = [self.op.pnode]
4638 7baf741d Guido Trotter
      if self.op.snode is not None:
4639 7baf741d Guido Trotter
        self.op.snode = self._ExpandNode(self.op.snode)
4640 7baf741d Guido Trotter
        nodelist.append(self.op.snode)
4641 7baf741d Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = nodelist
4642 7baf741d Guido Trotter
4643 7baf741d Guido Trotter
    # in case of import lock the source node too
4644 7baf741d Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4645 7baf741d Guido Trotter
      src_node = getattr(self.op, "src_node", None)
4646 7baf741d Guido Trotter
      src_path = getattr(self.op, "src_path", None)
4647 7baf741d Guido Trotter
4648 b9322a9f Guido Trotter
      if src_path is None:
4649 b9322a9f Guido Trotter
        self.op.src_path = src_path = self.op.instance_name
4650 b9322a9f Guido Trotter
4651 b9322a9f Guido Trotter
      if src_node is None:
4652 b9322a9f Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
4653 b9322a9f Guido Trotter
        self.op.src_node = None
4654 b9322a9f Guido Trotter
        if os.path.isabs(src_path):
4655 b9322a9f Guido Trotter
          raise errors.OpPrereqError("Importing an instance from an absolute"
4656 b9322a9f Guido Trotter
                                     " path requires a source node option.")
4657 b9322a9f Guido Trotter
      else:
4658 b9322a9f Guido Trotter
        self.op.src_node = src_node = self._ExpandNode(src_node)
4659 b9322a9f Guido Trotter
        if self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET:
4660 b9322a9f Guido Trotter
          self.needed_locks[locking.LEVEL_NODE].append(src_node)
4661 b9322a9f Guido Trotter
        if not os.path.isabs(src_path):
4662 b9322a9f Guido Trotter
          self.op.src_path = src_path = \
4663 b9322a9f Guido Trotter
            os.path.join(constants.EXPORT_DIR, src_path)
4664 7baf741d Guido Trotter
4665 7baf741d Guido Trotter
    else: # INSTANCE_CREATE
4666 7baf741d Guido Trotter
      if getattr(self.op, "os_type", None) is None:
4667 7baf741d Guido Trotter
        raise errors.OpPrereqError("No guest OS specified")
4668 a8083063 Iustin Pop
4669 538475ca Iustin Pop
  def _RunAllocator(self):
4670 538475ca Iustin Pop
    """Run the allocator based on input opcode.
4671 538475ca Iustin Pop

4672 538475ca Iustin Pop
    """
4673 08db7c5c Iustin Pop
    nics = [n.ToDict() for n in self.nics]
4674 72737a7f Iustin Pop
    ial = IAllocator(self,
4675 29859cb7 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_ALLOC,
4676 d1c2dd75 Iustin Pop
                     name=self.op.instance_name,
4677 d1c2dd75 Iustin Pop
                     disk_template=self.op.disk_template,
4678 d1c2dd75 Iustin Pop
                     tags=[],
4679 d1c2dd75 Iustin Pop
                     os=self.op.os_type,
4680 338e51e8 Iustin Pop
                     vcpus=self.be_full[constants.BE_VCPUS],
4681 338e51e8 Iustin Pop
                     mem_size=self.be_full[constants.BE_MEMORY],
4682 08db7c5c Iustin Pop
                     disks=self.disks,
4683 d1c2dd75 Iustin Pop
                     nics=nics,
4684 8cc7e742 Guido Trotter
                     hypervisor=self.op.hypervisor,
4685 29859cb7 Iustin Pop
                     )
4686 d1c2dd75 Iustin Pop
4687 d1c2dd75 Iustin Pop
    ial.Run(self.op.iallocator)
4688 d1c2dd75 Iustin Pop
4689 d1c2dd75 Iustin Pop
    if not ial.success:
4690 538475ca Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
4691 538475ca Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
4692 d1c2dd75 Iustin Pop
                                                           ial.info))
4693 27579978 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
4694 538475ca Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
4695 538475ca Iustin Pop
                                 " of nodes (%s), required %s" %
4696 97abc79f Iustin Pop
                                 (self.op.iallocator, len(ial.nodes),
4697 1ce4bbe3 Renรฉ Nussbaumer
                                  ial.required_nodes))
4698 d1c2dd75 Iustin Pop
    self.op.pnode = ial.nodes[0]
4699 86d9d3bb Iustin Pop
    self.LogInfo("Selected nodes for instance %s via iallocator %s: %s",
4700 86d9d3bb Iustin Pop
                 self.op.instance_name, self.op.iallocator,
4701 86d9d3bb Iustin Pop
                 ", ".join(ial.nodes))
4702 27579978 Iustin Pop
    if ial.required_nodes == 2:
4703 d1c2dd75 Iustin Pop
      self.op.snode = ial.nodes[1]
4704 538475ca Iustin Pop
4705 a8083063 Iustin Pop
  def BuildHooksEnv(self):
4706 a8083063 Iustin Pop
    """Build hooks env.
4707 a8083063 Iustin Pop

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

4710 a8083063 Iustin Pop
    """
4711 a8083063 Iustin Pop
    env = {
4712 2c2690c9 Iustin Pop
      "ADD_MODE": self.op.mode,
4713 a8083063 Iustin Pop
      }
4714 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4715 2c2690c9 Iustin Pop
      env["SRC_NODE"] = self.op.src_node
4716 2c2690c9 Iustin Pop
      env["SRC_PATH"] = self.op.src_path
4717 2c2690c9 Iustin Pop
      env["SRC_IMAGES"] = self.src_images
4718 396e1b78 Michael Hanselmann
4719 2c2690c9 Iustin Pop
    env.update(_BuildInstanceHookEnv(
4720 2c2690c9 Iustin Pop
      name=self.op.instance_name,
4721 396e1b78 Michael Hanselmann
      primary_node=self.op.pnode,
4722 396e1b78 Michael Hanselmann
      secondary_nodes=self.secondaries,
4723 4978db17 Iustin Pop
      status=self.op.start,
4724 ecb215b5 Michael Hanselmann
      os_type=self.op.os_type,
4725 338e51e8 Iustin Pop
      memory=self.be_full[constants.BE_MEMORY],
4726 338e51e8 Iustin Pop
      vcpus=self.be_full[constants.BE_VCPUS],
4727 08db7c5c Iustin Pop
      nics=[(n.ip, n.bridge, n.mac) for n in self.nics],
4728 2c2690c9 Iustin Pop
      disk_template=self.op.disk_template,
4729 2c2690c9 Iustin Pop
      disks=[(d["size"], d["mode"]) for d in self.disks],
4730 67fc3042 Iustin Pop
      bep=self.be_full,
4731 67fc3042 Iustin Pop
      hvp=self.hv_full,
4732 3df6e710 Iustin Pop
      hypervisor_name=self.op.hypervisor,
4733 396e1b78 Michael Hanselmann
    ))
4734 a8083063 Iustin Pop
4735 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
4736 a8083063 Iustin Pop
          self.secondaries)
4737 a8083063 Iustin Pop
    return env, nl, nl
4738 a8083063 Iustin Pop
4739 a8083063 Iustin Pop
4740 a8083063 Iustin Pop
  def CheckPrereq(self):
4741 a8083063 Iustin Pop
    """Check prerequisites.
4742 a8083063 Iustin Pop

4743 a8083063 Iustin Pop
    """
4744 eedc99de Manuel Franceschini
    if (not self.cfg.GetVGName() and
4745 eedc99de Manuel Franceschini
        self.op.disk_template not in constants.DTS_NOT_LVM):
4746 eedc99de Manuel Franceschini
      raise errors.OpPrereqError("Cluster does not support lvm-based"
4747 eedc99de Manuel Franceschini
                                 " instances")
4748 eedc99de Manuel Franceschini
4749 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4750 7baf741d Guido Trotter
      src_node = self.op.src_node
4751 7baf741d Guido Trotter
      src_path = self.op.src_path
4752 a8083063 Iustin Pop
4753 c0cbdc67 Guido Trotter
      if src_node is None:
4754 c0cbdc67 Guido Trotter
        exp_list = self.rpc.call_export_list(
4755 781de953 Iustin Pop
          self.acquired_locks[locking.LEVEL_NODE])
4756 c0cbdc67 Guido Trotter
        found = False
4757 c0cbdc67 Guido Trotter
        for node in exp_list:
4758 781de953 Iustin Pop
          if not exp_list[node].failed and src_path in exp_list[node].data:
4759 c0cbdc67 Guido Trotter
            found = True
4760 c0cbdc67 Guido Trotter
            self.op.src_node = src_node = node
4761 c0cbdc67 Guido Trotter
            self.op.src_path = src_path = os.path.join(constants.EXPORT_DIR,
4762 c0cbdc67 Guido Trotter
                                                       src_path)
4763 c0cbdc67 Guido Trotter
            break
4764 c0cbdc67 Guido Trotter
        if not found:
4765 c0cbdc67 Guido Trotter
          raise errors.OpPrereqError("No export found for relative path %s" %
4766 c0cbdc67 Guido Trotter
                                      src_path)
4767 c0cbdc67 Guido Trotter
4768 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, src_node)
4769 781de953 Iustin Pop
      result = self.rpc.call_export_info(src_node, src_path)
4770 781de953 Iustin Pop
      result.Raise()
4771 781de953 Iustin Pop
      if not result.data:
4772 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("No export found in dir %s" % src_path)
4773 a8083063 Iustin Pop
4774 781de953 Iustin Pop
      export_info = result.data
4775 a8083063 Iustin Pop
      if not export_info.has_section(constants.INISECT_EXP):
4776 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Corrupted export config")
4777 a8083063 Iustin Pop
4778 a8083063 Iustin Pop
      ei_version = export_info.get(constants.INISECT_EXP, 'version')
4779 a8083063 Iustin Pop
      if (int(ei_version) != constants.EXPORT_VERSION):
4780 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Wrong export version %s (wanted %d)" %
4781 3ecf6786 Iustin Pop
                                   (ei_version, constants.EXPORT_VERSION))
4782 a8083063 Iustin Pop
4783 09acf207 Guido Trotter
      # Check that the new instance doesn't have less disks than the export
4784 08db7c5c Iustin Pop
      instance_disks = len(self.disks)
4785 09acf207 Guido Trotter
      export_disks = export_info.getint(constants.INISECT_INS, 'disk_count')
4786 09acf207 Guido Trotter
      if instance_disks < export_disks:
4787 09acf207 Guido Trotter
        raise errors.OpPrereqError("Not enough disks to import."
4788 09acf207 Guido Trotter
                                   " (instance: %d, export: %d)" %
4789 726d7d68 Iustin Pop
                                   (instance_disks, export_disks))
4790 a8083063 Iustin Pop
4791 a8083063 Iustin Pop
      self.op.os_type = export_info.get(constants.INISECT_EXP, 'os')
4792 09acf207 Guido Trotter
      disk_images = []
4793 09acf207 Guido Trotter
      for idx in range(export_disks):
4794 09acf207 Guido Trotter
        option = 'disk%d_dump' % idx
4795 09acf207 Guido Trotter
        if export_info.has_option(constants.INISECT_INS, option):
4796 09acf207 Guido Trotter
          # FIXME: are the old os-es, disk sizes, etc. useful?
4797 09acf207 Guido Trotter
          export_name = export_info.get(constants.INISECT_INS, option)
4798 09acf207 Guido Trotter
          image = os.path.join(src_path, export_name)
4799 09acf207 Guido Trotter
          disk_images.append(image)
4800 09acf207 Guido Trotter
        else:
4801 09acf207 Guido Trotter
          disk_images.append(False)
4802 09acf207 Guido Trotter
4803 09acf207 Guido Trotter
      self.src_images = disk_images
4804 901a65c1 Iustin Pop
4805 b4364a6b Guido Trotter
      old_name = export_info.get(constants.INISECT_INS, 'name')
4806 b4364a6b Guido Trotter
      # FIXME: int() here could throw a ValueError on broken exports
4807 b4364a6b Guido Trotter
      exp_nic_count = int(export_info.get(constants.INISECT_INS, 'nic_count'))
4808 b4364a6b Guido Trotter
      if self.op.instance_name == old_name:
4809 b4364a6b Guido Trotter
        for idx, nic in enumerate(self.nics):
4810 b4364a6b Guido Trotter
          if nic.mac == constants.VALUE_AUTO and exp_nic_count >= idx:
4811 b4364a6b Guido Trotter
            nic_mac_ini = 'nic%d_mac' % idx
4812 b4364a6b Guido Trotter
            nic.mac = export_info.get(constants.INISECT_INS, nic_mac_ini)
4813 bc89efc3 Guido Trotter
4814 295728df Guido Trotter
    # ENDIF: self.op.mode == constants.INSTANCE_IMPORT
4815 7baf741d Guido Trotter
    # ip ping checks (we use the same ip that was resolved in ExpandNames)
4816 901a65c1 Iustin Pop
    if self.op.start and not self.op.ip_check:
4817 901a65c1 Iustin Pop
      raise errors.OpPrereqError("Cannot ignore IP address conflicts when"
4818 901a65c1 Iustin Pop
                                 " adding an instance in start mode")
4819 901a65c1 Iustin Pop
4820 901a65c1 Iustin Pop
    if self.op.ip_check:
4821 7baf741d Guido Trotter
      if utils.TcpPing(self.check_ip, constants.DEFAULT_NODED_PORT):
4822 901a65c1 Iustin Pop
        raise errors.OpPrereqError("IP %s of instance %s already in use" %
4823 7b3a8fb5 Iustin Pop
                                   (self.check_ip, self.op.instance_name))
4824 901a65c1 Iustin Pop
4825 295728df Guido Trotter
    #### mac address generation
4826 295728df Guido Trotter
    # By generating here the mac address both the allocator and the hooks get
4827 295728df Guido Trotter
    # the real final mac address rather than the 'auto' or 'generate' value.
4828 295728df Guido Trotter
    # There is a race condition between the generation and the instance object
4829 295728df Guido Trotter
    # creation, which means that we know the mac is valid now, but we're not
4830 295728df Guido Trotter
    # sure it will be when we actually add the instance. If things go bad
4831 295728df Guido Trotter
    # adding the instance will abort because of a duplicate mac, and the
4832 295728df Guido Trotter
    # creation job will fail.
4833 295728df Guido Trotter
    for nic in self.nics:
4834 295728df Guido Trotter
      if nic.mac in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
4835 295728df Guido Trotter
        nic.mac = self.cfg.GenerateMAC()
4836 295728df Guido Trotter
4837 538475ca Iustin Pop
    #### allocator run
4838 538475ca Iustin Pop
4839 538475ca Iustin Pop
    if self.op.iallocator is not None:
4840 538475ca Iustin Pop
      self._RunAllocator()
4841 0f1a06e3 Manuel Franceschini
4842 901a65c1 Iustin Pop
    #### node related checks
4843 901a65c1 Iustin Pop
4844 901a65c1 Iustin Pop
    # check primary node
4845 7baf741d Guido Trotter
    self.pnode = pnode = self.cfg.GetNodeInfo(self.op.pnode)
4846 7baf741d Guido Trotter
    assert self.pnode is not None, \
4847 7baf741d Guido Trotter
      "Cannot retrieve locked node %s" % self.op.pnode
4848 7527a8a4 Iustin Pop
    if pnode.offline:
4849 7527a8a4 Iustin Pop
      raise errors.OpPrereqError("Cannot use offline primary node '%s'" %
4850 7527a8a4 Iustin Pop
                                 pnode.name)
4851 733a2b6a Iustin Pop
    if pnode.drained:
4852 733a2b6a Iustin Pop
      raise errors.OpPrereqError("Cannot use drained primary node '%s'" %
4853 733a2b6a Iustin Pop
                                 pnode.name)
4854 7527a8a4 Iustin Pop
4855 901a65c1 Iustin Pop
    self.secondaries = []
4856 901a65c1 Iustin Pop
4857 901a65c1 Iustin Pop
    # mirror node verification
4858 a1f445d3 Iustin Pop
    if self.op.disk_template in constants.DTS_NET_MIRROR:
4859 7baf741d Guido Trotter
      if self.op.snode is None:
4860 a1f445d3 Iustin Pop
        raise errors.OpPrereqError("The networked disk templates need"
4861 3ecf6786 Iustin Pop
                                   " a mirror node")
4862 7baf741d Guido Trotter
      if self.op.snode == pnode.name:
4863 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("The secondary node cannot be"
4864 3ecf6786 Iustin Pop
                                   " the primary node.")
4865 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, self.op.snode)
4866 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, self.op.snode)
4867 733a2b6a Iustin Pop
      self.secondaries.append(self.op.snode)
4868 a8083063 Iustin Pop
4869 6785674e Iustin Pop
    nodenames = [pnode.name] + self.secondaries
4870 6785674e Iustin Pop
4871 e2fe6369 Iustin Pop
    req_size = _ComputeDiskSize(self.op.disk_template,
4872 08db7c5c Iustin Pop
                                self.disks)
4873 ed1ebc60 Guido Trotter
4874 8d75db10 Iustin Pop
    # Check lv size requirements
4875 8d75db10 Iustin Pop
    if req_size is not None:
4876 72737a7f Iustin Pop
      nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
4877 72737a7f Iustin Pop
                                         self.op.hypervisor)
4878 8d75db10 Iustin Pop
      for node in nodenames:
4879 781de953 Iustin Pop
        info = nodeinfo[node]
4880 781de953 Iustin Pop
        info.Raise()
4881 781de953 Iustin Pop
        info = info.data
4882 8d75db10 Iustin Pop
        if not info:
4883 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Cannot get current information"
4884 3e91897b Iustin Pop
                                     " from node '%s'" % node)
4885 8d75db10 Iustin Pop
        vg_free = info.get('vg_free', None)
4886 8d75db10 Iustin Pop
        if not isinstance(vg_free, int):
4887 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Can't compute free disk space on"
4888 8d75db10 Iustin Pop
                                     " node %s" % node)
4889 8d75db10 Iustin Pop
        if req_size > info['vg_free']:
4890 8d75db10 Iustin Pop
          raise errors.OpPrereqError("Not enough disk space on target node %s."
4891 8d75db10 Iustin Pop
                                     " %d MB available, %d MB required" %
4892 8d75db10 Iustin Pop
                                     (node, info['vg_free'], req_size))
4893 ed1ebc60 Guido Trotter
4894 74409b12 Iustin Pop
    _CheckHVParams(self, nodenames, self.op.hypervisor, self.op.hvparams)
4895 6785674e Iustin Pop
4896 a8083063 Iustin Pop
    # os verification
4897 781de953 Iustin Pop
    result = self.rpc.call_os_get(pnode.name, self.op.os_type)
4898 781de953 Iustin Pop
    result.Raise()
4899 6dfad215 Iustin Pop
    if not isinstance(result.data, objects.OS) or not result.data:
4900 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("OS '%s' not in supported os list for"
4901 3ecf6786 Iustin Pop
                                 " primary node"  % self.op.os_type)
4902 a8083063 Iustin Pop
4903 901a65c1 Iustin Pop
    # bridge check on primary node
4904 08db7c5c Iustin Pop
    bridges = [n.bridge for n in self.nics]
4905 781de953 Iustin Pop
    result = self.rpc.call_bridges_exist(self.pnode.name, bridges)
4906 781de953 Iustin Pop
    result.Raise()
4907 781de953 Iustin Pop
    if not result.data:
4908 781de953 Iustin Pop
      raise errors.OpPrereqError("One of the target bridges '%s' does not"
4909 781de953 Iustin Pop
                                 " exist on destination node '%s'" %
4910 08db7c5c Iustin Pop
                                 (",".join(bridges), pnode.name))
4911 a8083063 Iustin Pop
4912 49ce1563 Iustin Pop
    # memory check on primary node
4913 49ce1563 Iustin Pop
    if self.op.start:
4914 b9bddb6b Iustin Pop
      _CheckNodeFreeMemory(self, self.pnode.name,
4915 49ce1563 Iustin Pop
                           "creating instance %s" % self.op.instance_name,
4916 338e51e8 Iustin Pop
                           self.be_full[constants.BE_MEMORY],
4917 338e51e8 Iustin Pop
                           self.op.hypervisor)
4918 49ce1563 Iustin Pop
4919 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
4920 a8083063 Iustin Pop
    """Create and add the instance to the cluster.
4921 a8083063 Iustin Pop

4922 a8083063 Iustin Pop
    """
4923 a8083063 Iustin Pop
    instance = self.op.instance_name
4924 a8083063 Iustin Pop
    pnode_name = self.pnode.name
4925 a8083063 Iustin Pop
4926 e69d05fd Iustin Pop
    ht_kind = self.op.hypervisor
4927 2a6469d5 Alexander Schreiber
    if ht_kind in constants.HTS_REQ_PORT:
4928 2a6469d5 Alexander Schreiber
      network_port = self.cfg.AllocatePort()
4929 2a6469d5 Alexander Schreiber
    else:
4930 2a6469d5 Alexander Schreiber
      network_port = None
4931 58acb49d Alexander Schreiber
4932 6785674e Iustin Pop
    ##if self.op.vnc_bind_address is None:
4933 6785674e Iustin Pop
    ##  self.op.vnc_bind_address = constants.VNC_DEFAULT_BIND_ADDRESS
4934 31a853d2 Iustin Pop
4935 2c313123 Manuel Franceschini
    # this is needed because os.path.join does not accept None arguments
4936 2c313123 Manuel Franceschini
    if self.op.file_storage_dir is None:
4937 2c313123 Manuel Franceschini
      string_file_storage_dir = ""
4938 2c313123 Manuel Franceschini
    else:
4939 2c313123 Manuel Franceschini
      string_file_storage_dir = self.op.file_storage_dir
4940 2c313123 Manuel Franceschini
4941 0f1a06e3 Manuel Franceschini
    # build the full file storage dir path
4942 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.normpath(os.path.join(
4943 d6a02168 Michael Hanselmann
                                        self.cfg.GetFileStorageDir(),
4944 2c313123 Manuel Franceschini
                                        string_file_storage_dir, instance))
4945 0f1a06e3 Manuel Franceschini
4946 0f1a06e3 Manuel Franceschini
4947 b9bddb6b Iustin Pop
    disks = _GenerateDiskTemplate(self,
4948 a8083063 Iustin Pop
                                  self.op.disk_template,
4949 a8083063 Iustin Pop
                                  instance, pnode_name,
4950 08db7c5c Iustin Pop
                                  self.secondaries,
4951 08db7c5c Iustin Pop
                                  self.disks,
4952 0f1a06e3 Manuel Franceschini
                                  file_storage_dir,
4953 e2a65344 Iustin Pop
                                  self.op.file_driver,
4954 e2a65344 Iustin Pop
                                  0)
4955 a8083063 Iustin Pop
4956 a8083063 Iustin Pop
    iobj = objects.Instance(name=instance, os=self.op.os_type,
4957 a8083063 Iustin Pop
                            primary_node=pnode_name,
4958 08db7c5c Iustin Pop
                            nics=self.nics, disks=disks,
4959 a8083063 Iustin Pop
                            disk_template=self.op.disk_template,
4960 4978db17 Iustin Pop
                            admin_up=False,
4961 58acb49d Alexander Schreiber
                            network_port=network_port,
4962 338e51e8 Iustin Pop
                            beparams=self.op.beparams,
4963 6785674e Iustin Pop
                            hvparams=self.op.hvparams,
4964 e69d05fd Iustin Pop
                            hypervisor=self.op.hypervisor,
4965 a8083063 Iustin Pop
                            )
4966 a8083063 Iustin Pop
4967 a8083063 Iustin Pop
    feedback_fn("* creating instance disks...")
4968 796cab27 Iustin Pop
    try:
4969 796cab27 Iustin Pop
      _CreateDisks(self, iobj)
4970 796cab27 Iustin Pop
    except errors.OpExecError:
4971 796cab27 Iustin Pop
      self.LogWarning("Device creation failed, reverting...")
4972 796cab27 Iustin Pop
      try:
4973 796cab27 Iustin Pop
        _RemoveDisks(self, iobj)
4974 796cab27 Iustin Pop
      finally:
4975 796cab27 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance)
4976 796cab27 Iustin Pop
        raise
4977 a8083063 Iustin Pop
4978 a8083063 Iustin Pop
    feedback_fn("adding instance %s to cluster config" % instance)
4979 a8083063 Iustin Pop
4980 a8083063 Iustin Pop
    self.cfg.AddInstance(iobj)
4981 7baf741d Guido Trotter
    # Declare that we don't want to remove the instance lock anymore, as we've
4982 7baf741d Guido Trotter
    # added the instance to the config
4983 7baf741d Guido Trotter
    del self.remove_locks[locking.LEVEL_INSTANCE]
4984 e36e96b4 Guido Trotter
    # Unlock all the nodes
4985 9c8971d7 Guido Trotter
    if self.op.mode == constants.INSTANCE_IMPORT:
4986 9c8971d7 Guido Trotter
      nodes_keep = [self.op.src_node]
4987 9c8971d7 Guido Trotter
      nodes_release = [node for node in self.acquired_locks[locking.LEVEL_NODE]
4988 9c8971d7 Guido Trotter
                       if node != self.op.src_node]
4989 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE, nodes_release)
4990 9c8971d7 Guido Trotter
      self.acquired_locks[locking.LEVEL_NODE] = nodes_keep
4991 9c8971d7 Guido Trotter
    else:
4992 9c8971d7 Guido Trotter
      self.context.glm.release(locking.LEVEL_NODE)
4993 9c8971d7 Guido Trotter
      del self.acquired_locks[locking.LEVEL_NODE]
4994 a8083063 Iustin Pop
4995 a8083063 Iustin Pop
    if self.op.wait_for_sync:
4996 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj)
4997 a1f445d3 Iustin Pop
    elif iobj.disk_template in constants.DTS_NET_MIRROR:
4998 a8083063 Iustin Pop
      # make sure the disks are not degraded (still sync-ing is ok)
4999 a8083063 Iustin Pop
      time.sleep(15)
5000 a8083063 Iustin Pop
      feedback_fn("* checking mirrors status")
5001 b9bddb6b Iustin Pop
      disk_abort = not _WaitForSync(self, iobj, oneshot=True)
5002 a8083063 Iustin Pop
    else:
5003 a8083063 Iustin Pop
      disk_abort = False
5004 a8083063 Iustin Pop
5005 a8083063 Iustin Pop
    if disk_abort:
5006 b9bddb6b Iustin Pop
      _RemoveDisks(self, iobj)
5007 a8083063 Iustin Pop
      self.cfg.RemoveInstance(iobj.name)
5008 7baf741d Guido Trotter
      # Make sure the instance lock gets removed
5009 7baf741d Guido Trotter
      self.remove_locks[locking.LEVEL_INSTANCE] = iobj.name
5010 3ecf6786 Iustin Pop
      raise errors.OpExecError("There are some degraded disks for"
5011 3ecf6786 Iustin Pop
                               " this instance")
5012 a8083063 Iustin Pop
5013 a8083063 Iustin Pop
    feedback_fn("creating os for instance %s on node %s" %
5014 a8083063 Iustin Pop
                (instance, pnode_name))
5015 a8083063 Iustin Pop
5016 a8083063 Iustin Pop
    if iobj.disk_template != constants.DT_DISKLESS:
5017 a8083063 Iustin Pop
      if self.op.mode == constants.INSTANCE_CREATE:
5018 a8083063 Iustin Pop
        feedback_fn("* running the instance OS create scripts...")
5019 781de953 Iustin Pop
        result = self.rpc.call_instance_os_add(pnode_name, iobj)
5020 20e01edd Iustin Pop
        msg = result.RemoteFailMsg()
5021 20e01edd Iustin Pop
        if msg:
5022 781de953 Iustin Pop
          raise errors.OpExecError("Could not add os for instance %s"
5023 20e01edd Iustin Pop
                                   " on node %s: %s" %
5024 20e01edd Iustin Pop
                                   (instance, pnode_name, msg))
5025 a8083063 Iustin Pop
5026 a8083063 Iustin Pop
      elif self.op.mode == constants.INSTANCE_IMPORT:
5027 a8083063 Iustin Pop
        feedback_fn("* running the instance OS import scripts...")
5028 a8083063 Iustin Pop
        src_node = self.op.src_node
5029 09acf207 Guido Trotter
        src_images = self.src_images
5030 62c9ec92 Iustin Pop
        cluster_name = self.cfg.GetClusterName()
5031 6c0af70e Guido Trotter
        import_result = self.rpc.call_instance_os_import(pnode_name, iobj,
5032 09acf207 Guido Trotter
                                                         src_node, src_images,
5033 6c0af70e Guido Trotter
                                                         cluster_name)
5034 781de953 Iustin Pop
        import_result.Raise()
5035 781de953 Iustin Pop
        for idx, result in enumerate(import_result.data):
5036 09acf207 Guido Trotter
          if not result:
5037 726d7d68 Iustin Pop
            self.LogWarning("Could not import the image %s for instance"
5038 726d7d68 Iustin Pop
                            " %s, disk %d, on node %s" %
5039 726d7d68 Iustin Pop
                            (src_images[idx], instance, idx, pnode_name))
5040 a8083063 Iustin Pop
      else:
5041 a8083063 Iustin Pop
        # also checked in the prereq part
5042 3ecf6786 Iustin Pop
        raise errors.ProgrammerError("Unknown OS initialization mode '%s'"
5043 3ecf6786 Iustin Pop
                                     % self.op.mode)
5044 a8083063 Iustin Pop
5045 a8083063 Iustin Pop
    if self.op.start:
5046 4978db17 Iustin Pop
      iobj.admin_up = True
5047 4978db17 Iustin Pop
      self.cfg.Update(iobj)
5048 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s", instance, pnode_name)
5049 a8083063 Iustin Pop
      feedback_fn("* starting instance...")
5050 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(pnode_name, iobj, None, None)
5051 dd279568 Iustin Pop
      msg = result.RemoteFailMsg()
5052 dd279568 Iustin Pop
      if msg:
5053 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance: %s" % msg)
5054 a8083063 Iustin Pop
5055 a8083063 Iustin Pop
5056 a8083063 Iustin Pop
class LUConnectConsole(NoHooksLU):
5057 a8083063 Iustin Pop
  """Connect to an instance's console.
5058 a8083063 Iustin Pop

5059 a8083063 Iustin Pop
  This is somewhat special in that it returns the command line that
5060 a8083063 Iustin Pop
  you need to run on the master node in order to connect to the
5061 a8083063 Iustin Pop
  console.
5062 a8083063 Iustin Pop

5063 a8083063 Iustin Pop
  """
5064 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
5065 8659b73e Guido Trotter
  REQ_BGL = False
5066 8659b73e Guido Trotter
5067 8659b73e Guido Trotter
  def ExpandNames(self):
5068 8659b73e Guido Trotter
    self._ExpandAndLockInstance()
5069 a8083063 Iustin Pop
5070 a8083063 Iustin Pop
  def CheckPrereq(self):
5071 a8083063 Iustin Pop
    """Check prerequisites.
5072 a8083063 Iustin Pop

5073 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
5074 a8083063 Iustin Pop

5075 a8083063 Iustin Pop
    """
5076 8659b73e Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5077 8659b73e Guido Trotter
    assert self.instance is not None, \
5078 8659b73e Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5079 513e896d Guido Trotter
    _CheckNodeOnline(self, self.instance.primary_node)
5080 a8083063 Iustin Pop
5081 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5082 a8083063 Iustin Pop
    """Connect to the console of an instance
5083 a8083063 Iustin Pop

5084 a8083063 Iustin Pop
    """
5085 a8083063 Iustin Pop
    instance = self.instance
5086 a8083063 Iustin Pop
    node = instance.primary_node
5087 a8083063 Iustin Pop
5088 72737a7f Iustin Pop
    node_insts = self.rpc.call_instance_list([node],
5089 72737a7f Iustin Pop
                                             [instance.hypervisor])[node]
5090 781de953 Iustin Pop
    node_insts.Raise()
5091 a8083063 Iustin Pop
5092 781de953 Iustin Pop
    if instance.name not in node_insts.data:
5093 3ecf6786 Iustin Pop
      raise errors.OpExecError("Instance %s is not running." % instance.name)
5094 a8083063 Iustin Pop
5095 9a4f63d1 Iustin Pop
    logging.debug("Connecting to console of %s on %s", instance.name, node)
5096 a8083063 Iustin Pop
5097 e69d05fd Iustin Pop
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
5098 5431b2e4 Guido Trotter
    cluster = self.cfg.GetClusterInfo()
5099 5431b2e4 Guido Trotter
    # beparams and hvparams are passed separately, to avoid editing the
5100 5431b2e4 Guido Trotter
    # instance and then saving the defaults in the instance itself.
5101 5431b2e4 Guido Trotter
    hvparams = cluster.FillHV(instance)
5102 5431b2e4 Guido Trotter
    beparams = cluster.FillBE(instance)
5103 5431b2e4 Guido Trotter
    console_cmd = hyper.GetShellCommandForConsole(instance, hvparams, beparams)
5104 b047857b Michael Hanselmann
5105 82122173 Iustin Pop
    # build ssh cmdline
5106 0a80a26f Michael Hanselmann
    return self.ssh.BuildCmd(node, "root", console_cmd, batch=True, tty=True)
5107 a8083063 Iustin Pop
5108 a8083063 Iustin Pop
5109 a8083063 Iustin Pop
class LUReplaceDisks(LogicalUnit):
5110 a8083063 Iustin Pop
  """Replace the disks of an instance.
5111 a8083063 Iustin Pop

5112 a8083063 Iustin Pop
  """
5113 a8083063 Iustin Pop
  HPATH = "mirrors-replace"
5114 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5115 a9e0c397 Iustin Pop
  _OP_REQP = ["instance_name", "mode", "disks"]
5116 efd990e4 Guido Trotter
  REQ_BGL = False
5117 efd990e4 Guido Trotter
5118 7e9366f7 Iustin Pop
  def CheckArguments(self):
5119 efd990e4 Guido Trotter
    if not hasattr(self.op, "remote_node"):
5120 efd990e4 Guido Trotter
      self.op.remote_node = None
5121 7e9366f7 Iustin Pop
    if not hasattr(self.op, "iallocator"):
5122 7e9366f7 Iustin Pop
      self.op.iallocator = None
5123 7e9366f7 Iustin Pop
5124 7e9366f7 Iustin Pop
    # check for valid parameter combination
5125 7e9366f7 Iustin Pop
    cnt = [self.op.remote_node, self.op.iallocator].count(None)
5126 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5127 7e9366f7 Iustin Pop
      if cnt == 2:
5128 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("When changing the secondary either an"
5129 7e9366f7 Iustin Pop
                                   " iallocator script must be used or the"
5130 7e9366f7 Iustin Pop
                                   " new node given")
5131 7e9366f7 Iustin Pop
      elif cnt == 0:
5132 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Give either the iallocator or the new"
5133 efd990e4 Guido Trotter
                                   " secondary, not both")
5134 7e9366f7 Iustin Pop
    else: # not replacing the secondary
5135 7e9366f7 Iustin Pop
      if cnt != 2:
5136 7e9366f7 Iustin Pop
        raise errors.OpPrereqError("The iallocator and new node options can"
5137 7e9366f7 Iustin Pop
                                   " be used only when changing the"
5138 7e9366f7 Iustin Pop
                                   " secondary node")
5139 7e9366f7 Iustin Pop
5140 7e9366f7 Iustin Pop
  def ExpandNames(self):
5141 7e9366f7 Iustin Pop
    self._ExpandAndLockInstance()
5142 7e9366f7 Iustin Pop
5143 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
5144 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
5145 efd990e4 Guido Trotter
    elif self.op.remote_node is not None:
5146 efd990e4 Guido Trotter
      remote_node = self.cfg.ExpandNodeName(self.op.remote_node)
5147 efd990e4 Guido Trotter
      if remote_node is None:
5148 efd990e4 Guido Trotter
        raise errors.OpPrereqError("Node '%s' not known" %
5149 efd990e4 Guido Trotter
                                   self.op.remote_node)
5150 efd990e4 Guido Trotter
      self.op.remote_node = remote_node
5151 3b559640 Iustin Pop
      # Warning: do not remove the locking of the new secondary here
5152 3b559640 Iustin Pop
      # unless DRBD8.AddChildren is changed to work in parallel;
5153 3b559640 Iustin Pop
      # currently it doesn't since parallel invocations of
5154 3b559640 Iustin Pop
      # FindUnusedMinor will conflict
5155 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = [remote_node]
5156 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_APPEND
5157 efd990e4 Guido Trotter
    else:
5158 efd990e4 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = []
5159 efd990e4 Guido Trotter
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5160 efd990e4 Guido Trotter
5161 efd990e4 Guido Trotter
  def DeclareLocks(self, level):
5162 efd990e4 Guido Trotter
    # If we're not already locking all nodes in the set we have to declare the
5163 efd990e4 Guido Trotter
    # instance's primary/secondary nodes.
5164 efd990e4 Guido Trotter
    if (level == locking.LEVEL_NODE and
5165 efd990e4 Guido Trotter
        self.needed_locks[locking.LEVEL_NODE] is not locking.ALL_SET):
5166 efd990e4 Guido Trotter
      self._LockInstancesNodes()
5167 a8083063 Iustin Pop
5168 b6e82a65 Iustin Pop
  def _RunAllocator(self):
5169 b6e82a65 Iustin Pop
    """Compute a new secondary node using an IAllocator.
5170 b6e82a65 Iustin Pop

5171 b6e82a65 Iustin Pop
    """
5172 72737a7f Iustin Pop
    ial = IAllocator(self,
5173 b6e82a65 Iustin Pop
                     mode=constants.IALLOCATOR_MODE_RELOC,
5174 b6e82a65 Iustin Pop
                     name=self.op.instance_name,
5175 b6e82a65 Iustin Pop
                     relocate_from=[self.sec_node])
5176 b6e82a65 Iustin Pop
5177 b6e82a65 Iustin Pop
    ial.Run(self.op.iallocator)
5178 b6e82a65 Iustin Pop
5179 b6e82a65 Iustin Pop
    if not ial.success:
5180 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("Can't compute nodes using"
5181 b6e82a65 Iustin Pop
                                 " iallocator '%s': %s" % (self.op.iallocator,
5182 b6e82a65 Iustin Pop
                                                           ial.info))
5183 b6e82a65 Iustin Pop
    if len(ial.nodes) != ial.required_nodes:
5184 b6e82a65 Iustin Pop
      raise errors.OpPrereqError("iallocator '%s' returned invalid number"
5185 b6e82a65 Iustin Pop
                                 " of nodes (%s), required %s" %
5186 b6e82a65 Iustin Pop
                                 (len(ial.nodes), ial.required_nodes))
5187 b6e82a65 Iustin Pop
    self.op.remote_node = ial.nodes[0]
5188 86d9d3bb Iustin Pop
    self.LogInfo("Selected new secondary for the instance: %s",
5189 86d9d3bb Iustin Pop
                 self.op.remote_node)
5190 b6e82a65 Iustin Pop
5191 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5192 a8083063 Iustin Pop
    """Build hooks env.
5193 a8083063 Iustin Pop

5194 a8083063 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5195 a8083063 Iustin Pop

5196 a8083063 Iustin Pop
    """
5197 a8083063 Iustin Pop
    env = {
5198 a9e0c397 Iustin Pop
      "MODE": self.op.mode,
5199 a8083063 Iustin Pop
      "NEW_SECONDARY": self.op.remote_node,
5200 a8083063 Iustin Pop
      "OLD_SECONDARY": self.instance.secondary_nodes[0],
5201 a8083063 Iustin Pop
      }
5202 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5203 0834c866 Iustin Pop
    nl = [
5204 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5205 0834c866 Iustin Pop
      self.instance.primary_node,
5206 0834c866 Iustin Pop
      ]
5207 0834c866 Iustin Pop
    if self.op.remote_node is not None:
5208 0834c866 Iustin Pop
      nl.append(self.op.remote_node)
5209 a8083063 Iustin Pop
    return env, nl, nl
5210 a8083063 Iustin Pop
5211 a8083063 Iustin Pop
  def CheckPrereq(self):
5212 a8083063 Iustin Pop
    """Check prerequisites.
5213 a8083063 Iustin Pop

5214 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
5215 a8083063 Iustin Pop

5216 a8083063 Iustin Pop
    """
5217 efd990e4 Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5218 efd990e4 Guido Trotter
    assert instance is not None, \
5219 efd990e4 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5220 a8083063 Iustin Pop
    self.instance = instance
5221 a8083063 Iustin Pop
5222 7e9366f7 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
5223 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("Can only run replace disks for DRBD8-based"
5224 7e9366f7 Iustin Pop
                                 " instances")
5225 a8083063 Iustin Pop
5226 a8083063 Iustin Pop
    if len(instance.secondary_nodes) != 1:
5227 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The instance has a strange layout,"
5228 3ecf6786 Iustin Pop
                                 " expected one secondary but found %d" %
5229 3ecf6786 Iustin Pop
                                 len(instance.secondary_nodes))
5230 a8083063 Iustin Pop
5231 a9e0c397 Iustin Pop
    self.sec_node = instance.secondary_nodes[0]
5232 a9e0c397 Iustin Pop
5233 7e9366f7 Iustin Pop
    if self.op.iallocator is not None:
5234 de8c7666 Guido Trotter
      self._RunAllocator()
5235 b6e82a65 Iustin Pop
5236 b6e82a65 Iustin Pop
    remote_node = self.op.remote_node
5237 a9e0c397 Iustin Pop
    if remote_node is not None:
5238 a9e0c397 Iustin Pop
      self.remote_node_info = self.cfg.GetNodeInfo(remote_node)
5239 efd990e4 Guido Trotter
      assert self.remote_node_info is not None, \
5240 efd990e4 Guido Trotter
        "Cannot retrieve locked node %s" % remote_node
5241 a9e0c397 Iustin Pop
    else:
5242 a9e0c397 Iustin Pop
      self.remote_node_info = None
5243 a8083063 Iustin Pop
    if remote_node == instance.primary_node:
5244 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("The specified node is the primary node of"
5245 3ecf6786 Iustin Pop
                                 " the instance.")
5246 a9e0c397 Iustin Pop
    elif remote_node == self.sec_node:
5247 7e9366f7 Iustin Pop
      raise errors.OpPrereqError("The specified node is already the"
5248 7e9366f7 Iustin Pop
                                 " secondary node of the instance.")
5249 7e9366f7 Iustin Pop
5250 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_PRI:
5251 7e9366f7 Iustin Pop
      n1 = self.tgt_node = instance.primary_node
5252 7e9366f7 Iustin Pop
      n2 = self.oth_node = self.sec_node
5253 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_SEC:
5254 7e9366f7 Iustin Pop
      n1 = self.tgt_node = self.sec_node
5255 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
5256 7e9366f7 Iustin Pop
    elif self.op.mode == constants.REPLACE_DISK_CHG:
5257 7e9366f7 Iustin Pop
      n1 = self.new_node = remote_node
5258 7e9366f7 Iustin Pop
      n2 = self.oth_node = instance.primary_node
5259 7e9366f7 Iustin Pop
      self.tgt_node = self.sec_node
5260 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, remote_node)
5261 7e9366f7 Iustin Pop
    else:
5262 7e9366f7 Iustin Pop
      raise errors.ProgrammerError("Unhandled disk replace mode")
5263 7e9366f7 Iustin Pop
5264 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n1)
5265 7e9366f7 Iustin Pop
    _CheckNodeOnline(self, n2)
5266 a9e0c397 Iustin Pop
5267 54155f52 Iustin Pop
    if not self.op.disks:
5268 54155f52 Iustin Pop
      self.op.disks = range(len(instance.disks))
5269 54155f52 Iustin Pop
5270 54155f52 Iustin Pop
    for disk_idx in self.op.disks:
5271 3e0cea06 Iustin Pop
      instance.FindDisk(disk_idx)
5272 a8083063 Iustin Pop
5273 a9e0c397 Iustin Pop
  def _ExecD8DiskOnly(self, feedback_fn):
5274 a9e0c397 Iustin Pop
    """Replace a disk on the primary or secondary for dbrd8.
5275 a9e0c397 Iustin Pop

5276 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5277 e4376078 Iustin Pop

5278 e4376078 Iustin Pop
      1. for each disk to be replaced:
5279 e4376078 Iustin Pop

5280 e4376078 Iustin Pop
        1. create new LVs on the target node with unique names
5281 e4376078 Iustin Pop
        1. detach old LVs from the drbd device
5282 e4376078 Iustin Pop
        1. rename old LVs to name_replaced.<time_t>
5283 e4376078 Iustin Pop
        1. rename new LVs to old LVs
5284 e4376078 Iustin Pop
        1. attach the new LVs (with the old names now) to the drbd device
5285 e4376078 Iustin Pop

5286 e4376078 Iustin Pop
      1. wait for sync across all devices
5287 e4376078 Iustin Pop

5288 e4376078 Iustin Pop
      1. for each modified disk:
5289 e4376078 Iustin Pop

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

5292 a9e0c397 Iustin Pop
    Failures are not very well handled.
5293 cff90b79 Iustin Pop

5294 a9e0c397 Iustin Pop
    """
5295 cff90b79 Iustin Pop
    steps_total = 6
5296 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5297 a9e0c397 Iustin Pop
    instance = self.instance
5298 a9e0c397 Iustin Pop
    iv_names = {}
5299 a9e0c397 Iustin Pop
    vgname = self.cfg.GetVGName()
5300 a9e0c397 Iustin Pop
    # start of work
5301 a9e0c397 Iustin Pop
    cfg = self.cfg
5302 a9e0c397 Iustin Pop
    tgt_node = self.tgt_node
5303 cff90b79 Iustin Pop
    oth_node = self.oth_node
5304 cff90b79 Iustin Pop
5305 cff90b79 Iustin Pop
    # Step: check device activation
5306 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5307 cff90b79 Iustin Pop
    info("checking volume groups")
5308 cff90b79 Iustin Pop
    my_vg = cfg.GetVGName()
5309 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([oth_node, tgt_node])
5310 cff90b79 Iustin Pop
    if not results:
5311 cff90b79 Iustin Pop
      raise errors.OpExecError("Can't list volume groups on the nodes")
5312 cff90b79 Iustin Pop
    for node in oth_node, tgt_node:
5313 781de953 Iustin Pop
      res = results[node]
5314 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
5315 cff90b79 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5316 cff90b79 Iustin Pop
                                 (my_vg, node))
5317 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5318 54155f52 Iustin Pop
      if idx not in self.op.disks:
5319 cff90b79 Iustin Pop
        continue
5320 cff90b79 Iustin Pop
      for node in tgt_node, oth_node:
5321 54155f52 Iustin Pop
        info("checking disk/%d on %s" % (idx, node))
5322 cff90b79 Iustin Pop
        cfg.SetDiskID(dev, node)
5323 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(node, dev)
5324 23829f6f Iustin Pop
        msg = result.RemoteFailMsg()
5325 23829f6f Iustin Pop
        if not msg and not result.payload:
5326 23829f6f Iustin Pop
          msg = "disk not found"
5327 23829f6f Iustin Pop
        if msg:
5328 23829f6f Iustin Pop
          raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5329 23829f6f Iustin Pop
                                   (idx, node, msg))
5330 cff90b79 Iustin Pop
5331 cff90b79 Iustin Pop
    # Step: check other node consistency
5332 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5333 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5334 54155f52 Iustin Pop
      if idx not in self.op.disks:
5335 cff90b79 Iustin Pop
        continue
5336 54155f52 Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, oth_node))
5337 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, oth_node,
5338 cff90b79 Iustin Pop
                                   oth_node==instance.primary_node):
5339 cff90b79 Iustin Pop
        raise errors.OpExecError("Peer node (%s) has degraded storage, unsafe"
5340 cff90b79 Iustin Pop
                                 " to replace disks on this node (%s)" %
5341 cff90b79 Iustin Pop
                                 (oth_node, tgt_node))
5342 cff90b79 Iustin Pop
5343 cff90b79 Iustin Pop
    # Step: create new storage
5344 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5345 54155f52 Iustin Pop
    for idx, dev in enumerate(instance.disks):
5346 54155f52 Iustin Pop
      if idx not in self.op.disks:
5347 a9e0c397 Iustin Pop
        continue
5348 a9e0c397 Iustin Pop
      size = dev.size
5349 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, tgt_node)
5350 54155f52 Iustin Pop
      lv_names = [".disk%d_%s" % (idx, suf)
5351 54155f52 Iustin Pop
                  for suf in ["data", "meta"]]
5352 b9bddb6b Iustin Pop
      names = _GenerateUniqueNames(self, lv_names)
5353 a9e0c397 Iustin Pop
      lv_data = objects.Disk(dev_type=constants.LD_LV, size=size,
5354 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[0]))
5355 a9e0c397 Iustin Pop
      lv_meta = objects.Disk(dev_type=constants.LD_LV, size=128,
5356 a9e0c397 Iustin Pop
                             logical_id=(vgname, names[1]))
5357 a9e0c397 Iustin Pop
      new_lvs = [lv_data, lv_meta]
5358 a9e0c397 Iustin Pop
      old_lvs = dev.children
5359 a9e0c397 Iustin Pop
      iv_names[dev.iv_name] = (dev, old_lvs, new_lvs)
5360 cff90b79 Iustin Pop
      info("creating new local storage on %s for %s" %
5361 cff90b79 Iustin Pop
           (tgt_node, dev.iv_name))
5362 428958aa Iustin Pop
      # we pass force_create=True to force the LVM creation
5363 a9e0c397 Iustin Pop
      for new_lv in new_lvs:
5364 428958aa Iustin Pop
        _CreateBlockDev(self, tgt_node, instance, new_lv, True,
5365 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5366 a9e0c397 Iustin Pop
5367 cff90b79 Iustin Pop
    # Step: for each lv, detach+rename*2+attach
5368 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "change drbd configuration")
5369 cff90b79 Iustin Pop
    for dev, old_lvs, new_lvs in iv_names.itervalues():
5370 cff90b79 Iustin Pop
      info("detaching %s drbd from local storage" % dev.iv_name)
5371 781de953 Iustin Pop
      result = self.rpc.call_blockdev_removechildren(tgt_node, dev, old_lvs)
5372 781de953 Iustin Pop
      result.Raise()
5373 781de953 Iustin Pop
      if not result.data:
5374 a9e0c397 Iustin Pop
        raise errors.OpExecError("Can't detach drbd from local storage on node"
5375 a9e0c397 Iustin Pop
                                 " %s for device %s" % (tgt_node, dev.iv_name))
5376 cff90b79 Iustin Pop
      #dev.children = []
5377 cff90b79 Iustin Pop
      #cfg.Update(instance)
5378 a9e0c397 Iustin Pop
5379 a9e0c397 Iustin Pop
      # ok, we created the new LVs, so now we know we have the needed
5380 a9e0c397 Iustin Pop
      # storage; as such, we proceed on the target node to rename
5381 a9e0c397 Iustin Pop
      # old_lv to _old, and new_lv to old_lv; note that we rename LVs
5382 c99a3cc0 Manuel Franceschini
      # using the assumption that logical_id == physical_id (which in
5383 a9e0c397 Iustin Pop
      # turn is the unique_id on that node)
5384 cff90b79 Iustin Pop
5385 cff90b79 Iustin Pop
      # FIXME(iustin): use a better name for the replaced LVs
5386 a9e0c397 Iustin Pop
      temp_suffix = int(time.time())
5387 a9e0c397 Iustin Pop
      ren_fn = lambda d, suff: (d.physical_id[0],
5388 a9e0c397 Iustin Pop
                                d.physical_id[1] + "_replaced-%s" % suff)
5389 cff90b79 Iustin Pop
      # build the rename list based on what LVs exist on the node
5390 cff90b79 Iustin Pop
      rlist = []
5391 cff90b79 Iustin Pop
      for to_ren in old_lvs:
5392 23829f6f Iustin Pop
        result = self.rpc.call_blockdev_find(tgt_node, to_ren)
5393 23829f6f Iustin Pop
        if not result.RemoteFailMsg() and result.payload:
5394 23829f6f Iustin Pop
          # device exists
5395 cff90b79 Iustin Pop
          rlist.append((to_ren, ren_fn(to_ren, temp_suffix)))
5396 cff90b79 Iustin Pop
5397 cff90b79 Iustin Pop
      info("renaming the old LVs on the target node")
5398 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5399 781de953 Iustin Pop
      result.Raise()
5400 781de953 Iustin Pop
      if not result.data:
5401 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename old LVs on node %s" % tgt_node)
5402 a9e0c397 Iustin Pop
      # now we rename the new LVs to the old LVs
5403 cff90b79 Iustin Pop
      info("renaming the new LVs on the target node")
5404 a9e0c397 Iustin Pop
      rlist = [(new, old.physical_id) for old, new in zip(old_lvs, new_lvs)]
5405 781de953 Iustin Pop
      result = self.rpc.call_blockdev_rename(tgt_node, rlist)
5406 781de953 Iustin Pop
      result.Raise()
5407 781de953 Iustin Pop
      if not result.data:
5408 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't rename new LVs on node %s" % tgt_node)
5409 cff90b79 Iustin Pop
5410 cff90b79 Iustin Pop
      for old, new in zip(old_lvs, new_lvs):
5411 cff90b79 Iustin Pop
        new.logical_id = old.logical_id
5412 cff90b79 Iustin Pop
        cfg.SetDiskID(new, tgt_node)
5413 a9e0c397 Iustin Pop
5414 cff90b79 Iustin Pop
      for disk in old_lvs:
5415 cff90b79 Iustin Pop
        disk.logical_id = ren_fn(disk, temp_suffix)
5416 cff90b79 Iustin Pop
        cfg.SetDiskID(disk, tgt_node)
5417 a9e0c397 Iustin Pop
5418 a9e0c397 Iustin Pop
      # now that the new lvs have the old name, we can add them to the device
5419 cff90b79 Iustin Pop
      info("adding new mirror component on %s" % tgt_node)
5420 4504c3d6 Iustin Pop
      result = self.rpc.call_blockdev_addchildren(tgt_node, dev, new_lvs)
5421 781de953 Iustin Pop
      if result.failed or not result.data:
5422 a9e0c397 Iustin Pop
        for new_lv in new_lvs:
5423 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(tgt_node, new_lv).RemoteFailMsg()
5424 e1bc0878 Iustin Pop
          if msg:
5425 e1bc0878 Iustin Pop
            warning("Can't rollback device %s: %s", dev, msg,
5426 e1bc0878 Iustin Pop
                    hint="cleanup manually the unused logical volumes")
5427 cff90b79 Iustin Pop
        raise errors.OpExecError("Can't add local storage to drbd")
5428 a9e0c397 Iustin Pop
5429 a9e0c397 Iustin Pop
      dev.children = new_lvs
5430 a9e0c397 Iustin Pop
      cfg.Update(instance)
5431 a9e0c397 Iustin Pop
5432 cff90b79 Iustin Pop
    # Step: wait for sync
5433 a9e0c397 Iustin Pop
5434 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5435 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5436 a9e0c397 Iustin Pop
    # return value
5437 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5438 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5439 a9e0c397 Iustin Pop
5440 a9e0c397 Iustin Pop
    # so check manually all the devices
5441 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5442 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, instance.primary_node)
5443 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(instance.primary_node, dev)
5444 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5445 23829f6f Iustin Pop
      if not msg and not result.payload:
5446 23829f6f Iustin Pop
        msg = "disk not found"
5447 23829f6f Iustin Pop
      if msg:
5448 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device %s: %s" %
5449 23829f6f Iustin Pop
                                 (name, msg))
5450 23829f6f Iustin Pop
      if result.payload[5]:
5451 a9e0c397 Iustin Pop
        raise errors.OpExecError("DRBD device %s is degraded!" % name)
5452 a9e0c397 Iustin Pop
5453 cff90b79 Iustin Pop
    # Step: remove old storage
5454 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5455 a9e0c397 Iustin Pop
    for name, (dev, old_lvs, new_lvs) in iv_names.iteritems():
5456 cff90b79 Iustin Pop
      info("remove logical volumes for %s" % name)
5457 a9e0c397 Iustin Pop
      for lv in old_lvs:
5458 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, tgt_node)
5459 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(tgt_node, lv).RemoteFailMsg()
5460 e1bc0878 Iustin Pop
        if msg:
5461 e1bc0878 Iustin Pop
          warning("Can't remove old LV: %s" % msg,
5462 e1bc0878 Iustin Pop
                  hint="manually remove unused LVs")
5463 a9e0c397 Iustin Pop
          continue
5464 a9e0c397 Iustin Pop
5465 a9e0c397 Iustin Pop
  def _ExecD8Secondary(self, feedback_fn):
5466 a9e0c397 Iustin Pop
    """Replace the secondary node for drbd8.
5467 a9e0c397 Iustin Pop

5468 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5469 a9e0c397 Iustin Pop
      - for all disks of the instance:
5470 a9e0c397 Iustin Pop
        - create new LVs on the new node with same names
5471 a9e0c397 Iustin Pop
        - shutdown the drbd device on the old secondary
5472 a9e0c397 Iustin Pop
        - disconnect the drbd network on the primary
5473 a9e0c397 Iustin Pop
        - create the drbd device on the new secondary
5474 a9e0c397 Iustin Pop
        - network attach the drbd on the primary, using an artifice:
5475 a9e0c397 Iustin Pop
          the drbd code for Attach() will connect to the network if it
5476 a9e0c397 Iustin Pop
          finds a device which is connected to the good local disks but
5477 a9e0c397 Iustin Pop
          not network enabled
5478 a9e0c397 Iustin Pop
      - wait for sync across all devices
5479 a9e0c397 Iustin Pop
      - remove all disks from the old secondary
5480 a9e0c397 Iustin Pop

5481 a9e0c397 Iustin Pop
    Failures are not very well handled.
5482 0834c866 Iustin Pop

5483 a9e0c397 Iustin Pop
    """
5484 0834c866 Iustin Pop
    steps_total = 6
5485 5bfac263 Iustin Pop
    warning, info = (self.proc.LogWarning, self.proc.LogInfo)
5486 a9e0c397 Iustin Pop
    instance = self.instance
5487 a9e0c397 Iustin Pop
    iv_names = {}
5488 a9e0c397 Iustin Pop
    # start of work
5489 a9e0c397 Iustin Pop
    cfg = self.cfg
5490 a9e0c397 Iustin Pop
    old_node = self.tgt_node
5491 a9e0c397 Iustin Pop
    new_node = self.new_node
5492 a9e0c397 Iustin Pop
    pri_node = instance.primary_node
5493 a2d59d8b Iustin Pop
    nodes_ip = {
5494 a2d59d8b Iustin Pop
      old_node: self.cfg.GetNodeInfo(old_node).secondary_ip,
5495 a2d59d8b Iustin Pop
      new_node: self.cfg.GetNodeInfo(new_node).secondary_ip,
5496 a2d59d8b Iustin Pop
      pri_node: self.cfg.GetNodeInfo(pri_node).secondary_ip,
5497 a2d59d8b Iustin Pop
      }
5498 0834c866 Iustin Pop
5499 0834c866 Iustin Pop
    # Step: check device activation
5500 5bfac263 Iustin Pop
    self.proc.LogStep(1, steps_total, "check device existence")
5501 0834c866 Iustin Pop
    info("checking volume groups")
5502 0834c866 Iustin Pop
    my_vg = cfg.GetVGName()
5503 72737a7f Iustin Pop
    results = self.rpc.call_vg_list([pri_node, new_node])
5504 0834c866 Iustin Pop
    for node in pri_node, new_node:
5505 781de953 Iustin Pop
      res = results[node]
5506 781de953 Iustin Pop
      if res.failed or not res.data or my_vg not in res.data:
5507 0834c866 Iustin Pop
        raise errors.OpExecError("Volume group '%s' not found on %s" %
5508 0834c866 Iustin Pop
                                 (my_vg, node))
5509 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5510 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5511 0834c866 Iustin Pop
        continue
5512 d418ebfb Iustin Pop
      info("checking disk/%d on %s" % (idx, pri_node))
5513 0834c866 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5514 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5515 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5516 23829f6f Iustin Pop
      if not msg and not result.payload:
5517 23829f6f Iustin Pop
        msg = "disk not found"
5518 23829f6f Iustin Pop
      if msg:
5519 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find disk/%d on node %s: %s" %
5520 23829f6f Iustin Pop
                                 (idx, pri_node, msg))
5521 0834c866 Iustin Pop
5522 0834c866 Iustin Pop
    # Step: check other node consistency
5523 5bfac263 Iustin Pop
    self.proc.LogStep(2, steps_total, "check peer consistency")
5524 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5525 d418ebfb Iustin Pop
      if idx not in self.op.disks:
5526 0834c866 Iustin Pop
        continue
5527 d418ebfb Iustin Pop
      info("checking disk/%d consistency on %s" % (idx, pri_node))
5528 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, pri_node, True, ldisk=True):
5529 0834c866 Iustin Pop
        raise errors.OpExecError("Primary node (%s) has degraded storage,"
5530 0834c866 Iustin Pop
                                 " unsafe to replace the secondary" %
5531 0834c866 Iustin Pop
                                 pri_node)
5532 0834c866 Iustin Pop
5533 0834c866 Iustin Pop
    # Step: create new storage
5534 5bfac263 Iustin Pop
    self.proc.LogStep(3, steps_total, "allocate new storage")
5535 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5536 d418ebfb Iustin Pop
      info("adding new local storage on %s for disk/%d" %
5537 d418ebfb Iustin Pop
           (new_node, idx))
5538 428958aa Iustin Pop
      # we pass force_create=True to force LVM creation
5539 a9e0c397 Iustin Pop
      for new_lv in dev.children:
5540 428958aa Iustin Pop
        _CreateBlockDev(self, new_node, instance, new_lv, True,
5541 428958aa Iustin Pop
                        _GetInstanceInfoText(instance), False)
5542 a9e0c397 Iustin Pop
5543 468b46f9 Iustin Pop
    # Step 4: dbrd minors and drbd setups changes
5544 a1578d63 Iustin Pop
    # after this, we must manually remove the drbd minors on both the
5545 a1578d63 Iustin Pop
    # error and the success paths
5546 a1578d63 Iustin Pop
    minors = cfg.AllocateDRBDMinor([new_node for dev in instance.disks],
5547 a1578d63 Iustin Pop
                                   instance.name)
5548 468b46f9 Iustin Pop
    logging.debug("Allocated minors %s" % (minors,))
5549 5bfac263 Iustin Pop
    self.proc.LogStep(4, steps_total, "changing drbd configuration")
5550 d418ebfb Iustin Pop
    for idx, (dev, new_minor) in enumerate(zip(instance.disks, minors)):
5551 d418ebfb Iustin Pop
      info("activating a new drbd on %s for disk/%d" % (new_node, idx))
5552 a2d59d8b Iustin Pop
      # create new devices on new_node; note that we create two IDs:
5553 a2d59d8b Iustin Pop
      # one without port, so the drbd will be activated without
5554 a2d59d8b Iustin Pop
      # networking information on the new node at this stage, and one
5555 a2d59d8b Iustin Pop
      # with network, for the latter activation in step 4
5556 a2d59d8b Iustin Pop
      (o_node1, o_node2, o_port, o_minor1, o_minor2, o_secret) = dev.logical_id
5557 a2d59d8b Iustin Pop
      if pri_node == o_node1:
5558 a2d59d8b Iustin Pop
        p_minor = o_minor1
5559 ffa1c0dc Iustin Pop
      else:
5560 a2d59d8b Iustin Pop
        p_minor = o_minor2
5561 a2d59d8b Iustin Pop
5562 a2d59d8b Iustin Pop
      new_alone_id = (pri_node, new_node, None, p_minor, new_minor, o_secret)
5563 a2d59d8b Iustin Pop
      new_net_id = (pri_node, new_node, o_port, p_minor, new_minor, o_secret)
5564 a2d59d8b Iustin Pop
5565 a2d59d8b Iustin Pop
      iv_names[idx] = (dev, dev.children, new_net_id)
5566 a1578d63 Iustin Pop
      logging.debug("Allocated new_minor: %s, new_logical_id: %s", new_minor,
5567 a2d59d8b Iustin Pop
                    new_net_id)
5568 a9e0c397 Iustin Pop
      new_drbd = objects.Disk(dev_type=constants.LD_DRBD8,
5569 a2d59d8b Iustin Pop
                              logical_id=new_alone_id,
5570 8a6c7011 Iustin Pop
                              children=dev.children,
5571 8a6c7011 Iustin Pop
                              size=dev.size)
5572 796cab27 Iustin Pop
      try:
5573 de12473a Iustin Pop
        _CreateSingleBlockDev(self, new_node, instance, new_drbd,
5574 de12473a Iustin Pop
                              _GetInstanceInfoText(instance), False)
5575 82759cb1 Iustin Pop
      except errors.GenericError:
5576 a1578d63 Iustin Pop
        self.cfg.ReleaseDRBDMinors(instance.name)
5577 796cab27 Iustin Pop
        raise
5578 a9e0c397 Iustin Pop
5579 d418ebfb Iustin Pop
    for idx, dev in enumerate(instance.disks):
5580 a9e0c397 Iustin Pop
      # we have new devices, shutdown the drbd on the old secondary
5581 d418ebfb Iustin Pop
      info("shutting down drbd for disk/%d on old node" % idx)
5582 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, old_node)
5583 cacfd1fd Iustin Pop
      msg = self.rpc.call_blockdev_shutdown(old_node, dev).RemoteFailMsg()
5584 cacfd1fd Iustin Pop
      if msg:
5585 cacfd1fd Iustin Pop
        warning("Failed to shutdown drbd for disk/%d on old node: %s" %
5586 cacfd1fd Iustin Pop
                (idx, msg),
5587 79caa9ed Guido Trotter
                hint="Please cleanup this device manually as soon as possible")
5588 a9e0c397 Iustin Pop
5589 642445d9 Iustin Pop
    info("detaching primary drbds from the network (=> standalone)")
5590 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_disconnect_net([pri_node], nodes_ip,
5591 a2d59d8b Iustin Pop
                                               instance.disks)[pri_node]
5592 642445d9 Iustin Pop
5593 a2d59d8b Iustin Pop
    msg = result.RemoteFailMsg()
5594 a2d59d8b Iustin Pop
    if msg:
5595 a2d59d8b Iustin Pop
      # detaches didn't succeed (unlikely)
5596 a1578d63 Iustin Pop
      self.cfg.ReleaseDRBDMinors(instance.name)
5597 a2d59d8b Iustin Pop
      raise errors.OpExecError("Can't detach the disks from the network on"
5598 a2d59d8b Iustin Pop
                               " old node: %s" % (msg,))
5599 642445d9 Iustin Pop
5600 642445d9 Iustin Pop
    # if we managed to detach at least one, we update all the disks of
5601 642445d9 Iustin Pop
    # the instance to point to the new secondary
5602 642445d9 Iustin Pop
    info("updating instance configuration")
5603 468b46f9 Iustin Pop
    for dev, _, new_logical_id in iv_names.itervalues():
5604 468b46f9 Iustin Pop
      dev.logical_id = new_logical_id
5605 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5606 642445d9 Iustin Pop
    cfg.Update(instance)
5607 a9e0c397 Iustin Pop
5608 642445d9 Iustin Pop
    # and now perform the drbd attach
5609 642445d9 Iustin Pop
    info("attaching primary drbds to new secondary (standalone => connected)")
5610 a2d59d8b Iustin Pop
    result = self.rpc.call_drbd_attach_net([pri_node, new_node], nodes_ip,
5611 a2d59d8b Iustin Pop
                                           instance.disks, instance.name,
5612 a2d59d8b Iustin Pop
                                           False)
5613 a2d59d8b Iustin Pop
    for to_node, to_result in result.items():
5614 a2d59d8b Iustin Pop
      msg = to_result.RemoteFailMsg()
5615 a2d59d8b Iustin Pop
      if msg:
5616 a2d59d8b Iustin Pop
        warning("can't attach drbd disks on node %s: %s", to_node, msg,
5617 a2d59d8b Iustin Pop
                hint="please do a gnt-instance info to see the"
5618 a2d59d8b Iustin Pop
                " status of disks")
5619 a9e0c397 Iustin Pop
5620 a9e0c397 Iustin Pop
    # this can fail as the old devices are degraded and _WaitForSync
5621 a9e0c397 Iustin Pop
    # does a combined result over all disks, so we don't check its
5622 a9e0c397 Iustin Pop
    # return value
5623 5bfac263 Iustin Pop
    self.proc.LogStep(5, steps_total, "sync devices")
5624 b9bddb6b Iustin Pop
    _WaitForSync(self, instance, unlock=True)
5625 a9e0c397 Iustin Pop
5626 a9e0c397 Iustin Pop
    # so check manually all the devices
5627 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5628 a9e0c397 Iustin Pop
      cfg.SetDiskID(dev, pri_node)
5629 781de953 Iustin Pop
      result = self.rpc.call_blockdev_find(pri_node, dev)
5630 23829f6f Iustin Pop
      msg = result.RemoteFailMsg()
5631 23829f6f Iustin Pop
      if not msg and not result.payload:
5632 23829f6f Iustin Pop
        msg = "disk not found"
5633 23829f6f Iustin Pop
      if msg:
5634 23829f6f Iustin Pop
        raise errors.OpExecError("Can't find DRBD device disk/%d: %s" %
5635 23829f6f Iustin Pop
                                 (idx, msg))
5636 23829f6f Iustin Pop
      if result.payload[5]:
5637 d418ebfb Iustin Pop
        raise errors.OpExecError("DRBD device disk/%d is degraded!" % idx)
5638 a9e0c397 Iustin Pop
5639 5bfac263 Iustin Pop
    self.proc.LogStep(6, steps_total, "removing old storage")
5640 d418ebfb Iustin Pop
    for idx, (dev, old_lvs, _) in iv_names.iteritems():
5641 d418ebfb Iustin Pop
      info("remove logical volumes for disk/%d" % idx)
5642 a9e0c397 Iustin Pop
      for lv in old_lvs:
5643 a9e0c397 Iustin Pop
        cfg.SetDiskID(lv, old_node)
5644 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(old_node, lv).RemoteFailMsg()
5645 e1bc0878 Iustin Pop
        if msg:
5646 e1bc0878 Iustin Pop
          warning("Can't remove LV on old secondary: %s", msg,
5647 79caa9ed Guido Trotter
                  hint="Cleanup stale volumes by hand")
5648 a9e0c397 Iustin Pop
5649 a9e0c397 Iustin Pop
  def Exec(self, feedback_fn):
5650 a9e0c397 Iustin Pop
    """Execute disk replacement.
5651 a9e0c397 Iustin Pop

5652 a9e0c397 Iustin Pop
    This dispatches the disk replacement to the appropriate handler.
5653 a9e0c397 Iustin Pop

5654 a9e0c397 Iustin Pop
    """
5655 a9e0c397 Iustin Pop
    instance = self.instance
5656 22985314 Guido Trotter
5657 22985314 Guido Trotter
    # Activate the instance disks if we're replacing them on a down instance
5658 0d68c45d Iustin Pop
    if not instance.admin_up:
5659 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, True)
5660 22985314 Guido Trotter
5661 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5662 7e9366f7 Iustin Pop
      fn = self._ExecD8Secondary
5663 a9e0c397 Iustin Pop
    else:
5664 7e9366f7 Iustin Pop
      fn = self._ExecD8DiskOnly
5665 22985314 Guido Trotter
5666 22985314 Guido Trotter
    ret = fn(feedback_fn)
5667 22985314 Guido Trotter
5668 22985314 Guido Trotter
    # Deactivate the instance disks if we're replacing them on a down instance
5669 0d68c45d Iustin Pop
    if not instance.admin_up:
5670 b9bddb6b Iustin Pop
      _SafeShutdownInstanceDisks(self, instance)
5671 22985314 Guido Trotter
5672 22985314 Guido Trotter
    return ret
5673 a9e0c397 Iustin Pop
5674 a8083063 Iustin Pop
5675 8729e0d7 Iustin Pop
class LUGrowDisk(LogicalUnit):
5676 8729e0d7 Iustin Pop
  """Grow a disk of an instance.
5677 8729e0d7 Iustin Pop

5678 8729e0d7 Iustin Pop
  """
5679 8729e0d7 Iustin Pop
  HPATH = "disk-grow"
5680 8729e0d7 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5681 6605411d Iustin Pop
  _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
5682 31e63dbf Guido Trotter
  REQ_BGL = False
5683 31e63dbf Guido Trotter
5684 31e63dbf Guido Trotter
  def ExpandNames(self):
5685 31e63dbf Guido Trotter
    self._ExpandAndLockInstance()
5686 31e63dbf Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5687 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5688 31e63dbf Guido Trotter
5689 31e63dbf Guido Trotter
  def DeclareLocks(self, level):
5690 31e63dbf Guido Trotter
    if level == locking.LEVEL_NODE:
5691 31e63dbf Guido Trotter
      self._LockInstancesNodes()
5692 8729e0d7 Iustin Pop
5693 8729e0d7 Iustin Pop
  def BuildHooksEnv(self):
5694 8729e0d7 Iustin Pop
    """Build hooks env.
5695 8729e0d7 Iustin Pop

5696 8729e0d7 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5697 8729e0d7 Iustin Pop

5698 8729e0d7 Iustin Pop
    """
5699 8729e0d7 Iustin Pop
    env = {
5700 8729e0d7 Iustin Pop
      "DISK": self.op.disk,
5701 8729e0d7 Iustin Pop
      "AMOUNT": self.op.amount,
5702 8729e0d7 Iustin Pop
      }
5703 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5704 8729e0d7 Iustin Pop
    nl = [
5705 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5706 8729e0d7 Iustin Pop
      self.instance.primary_node,
5707 8729e0d7 Iustin Pop
      ]
5708 8729e0d7 Iustin Pop
    return env, nl, nl
5709 8729e0d7 Iustin Pop
5710 8729e0d7 Iustin Pop
  def CheckPrereq(self):
5711 8729e0d7 Iustin Pop
    """Check prerequisites.
5712 8729e0d7 Iustin Pop

5713 8729e0d7 Iustin Pop
    This checks that the instance is in the cluster.
5714 8729e0d7 Iustin Pop

5715 8729e0d7 Iustin Pop
    """
5716 31e63dbf Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5717 31e63dbf Guido Trotter
    assert instance is not None, \
5718 31e63dbf Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5719 6b12959c Iustin Pop
    nodenames = list(instance.all_nodes)
5720 6b12959c Iustin Pop
    for node in nodenames:
5721 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, node)
5722 7527a8a4 Iustin Pop
5723 31e63dbf Guido Trotter
5724 8729e0d7 Iustin Pop
    self.instance = instance
5725 8729e0d7 Iustin Pop
5726 8729e0d7 Iustin Pop
    if instance.disk_template not in (constants.DT_PLAIN, constants.DT_DRBD8):
5727 8729e0d7 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout does not support"
5728 8729e0d7 Iustin Pop
                                 " growing.")
5729 8729e0d7 Iustin Pop
5730 ad24e046 Iustin Pop
    self.disk = instance.FindDisk(self.op.disk)
5731 8729e0d7 Iustin Pop
5732 72737a7f Iustin Pop
    nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
5733 72737a7f Iustin Pop
                                       instance.hypervisor)
5734 8729e0d7 Iustin Pop
    for node in nodenames:
5735 781de953 Iustin Pop
      info = nodeinfo[node]
5736 781de953 Iustin Pop
      if info.failed or not info.data:
5737 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Cannot get current information"
5738 8729e0d7 Iustin Pop
                                   " from node '%s'" % node)
5739 781de953 Iustin Pop
      vg_free = info.data.get('vg_free', None)
5740 8729e0d7 Iustin Pop
      if not isinstance(vg_free, int):
5741 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Can't compute free disk space on"
5742 8729e0d7 Iustin Pop
                                   " node %s" % node)
5743 781de953 Iustin Pop
      if self.op.amount > vg_free:
5744 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Not enough disk space on target node %s:"
5745 8729e0d7 Iustin Pop
                                   " %d MiB available, %d MiB required" %
5746 781de953 Iustin Pop
                                   (node, vg_free, self.op.amount))
5747 8729e0d7 Iustin Pop
5748 8729e0d7 Iustin Pop
  def Exec(self, feedback_fn):
5749 8729e0d7 Iustin Pop
    """Execute disk grow.
5750 8729e0d7 Iustin Pop

5751 8729e0d7 Iustin Pop
    """
5752 8729e0d7 Iustin Pop
    instance = self.instance
5753 ad24e046 Iustin Pop
    disk = self.disk
5754 6b12959c Iustin Pop
    for node in instance.all_nodes:
5755 8729e0d7 Iustin Pop
      self.cfg.SetDiskID(disk, node)
5756 72737a7f Iustin Pop
      result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
5757 0959c824 Iustin Pop
      msg = result.RemoteFailMsg()
5758 0959c824 Iustin Pop
      if msg:
5759 781de953 Iustin Pop
        raise errors.OpExecError("Grow request failed to node %s: %s" %
5760 0959c824 Iustin Pop
                                 (node, msg))
5761 8729e0d7 Iustin Pop
    disk.RecordGrow(self.op.amount)
5762 8729e0d7 Iustin Pop
    self.cfg.Update(instance)
5763 6605411d Iustin Pop
    if self.op.wait_for_sync:
5764 cd4d138f Guido Trotter
      disk_abort = not _WaitForSync(self, instance)
5765 6605411d Iustin Pop
      if disk_abort:
5766 86d9d3bb Iustin Pop
        self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
5767 86d9d3bb Iustin Pop
                             " status.\nPlease check the instance.")
5768 8729e0d7 Iustin Pop
5769 8729e0d7 Iustin Pop
5770 a8083063 Iustin Pop
class LUQueryInstanceData(NoHooksLU):
5771 a8083063 Iustin Pop
  """Query runtime instance data.
5772 a8083063 Iustin Pop

5773 a8083063 Iustin Pop
  """
5774 57821cac Iustin Pop
  _OP_REQP = ["instances", "static"]
5775 a987fa48 Guido Trotter
  REQ_BGL = False
5776 ae5849b5 Michael Hanselmann
5777 a987fa48 Guido Trotter
  def ExpandNames(self):
5778 a987fa48 Guido Trotter
    self.needed_locks = {}
5779 a987fa48 Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
5780 a987fa48 Guido Trotter
5781 a987fa48 Guido Trotter
    if not isinstance(self.op.instances, list):
5782 a987fa48 Guido Trotter
      raise errors.OpPrereqError("Invalid argument type 'instances'")
5783 a987fa48 Guido Trotter
5784 a987fa48 Guido Trotter
    if self.op.instances:
5785 a987fa48 Guido Trotter
      self.wanted_names = []
5786 a987fa48 Guido Trotter
      for name in self.op.instances:
5787 a987fa48 Guido Trotter
        full_name = self.cfg.ExpandInstanceName(name)
5788 a987fa48 Guido Trotter
        if full_name is None:
5789 f57c76e4 Iustin Pop
          raise errors.OpPrereqError("Instance '%s' not known" % name)
5790 a987fa48 Guido Trotter
        self.wanted_names.append(full_name)
5791 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
5792 a987fa48 Guido Trotter
    else:
5793 a987fa48 Guido Trotter
      self.wanted_names = None
5794 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
5795 a987fa48 Guido Trotter
5796 a987fa48 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5797 a987fa48 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5798 a987fa48 Guido Trotter
5799 a987fa48 Guido Trotter
  def DeclareLocks(self, level):
5800 a987fa48 Guido Trotter
    if level == locking.LEVEL_NODE:
5801 a987fa48 Guido Trotter
      self._LockInstancesNodes()
5802 a8083063 Iustin Pop
5803 a8083063 Iustin Pop
  def CheckPrereq(self):
5804 a8083063 Iustin Pop
    """Check prerequisites.
5805 a8083063 Iustin Pop

5806 a8083063 Iustin Pop
    This only checks the optional instance list against the existing names.
5807 a8083063 Iustin Pop

5808 a8083063 Iustin Pop
    """
5809 a987fa48 Guido Trotter
    if self.wanted_names is None:
5810 a987fa48 Guido Trotter
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
5811 a8083063 Iustin Pop
5812 a987fa48 Guido Trotter
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
5813 a987fa48 Guido Trotter
                             in self.wanted_names]
5814 a987fa48 Guido Trotter
    return
5815 a8083063 Iustin Pop
5816 a8083063 Iustin Pop
  def _ComputeDiskStatus(self, instance, snode, dev):
5817 a8083063 Iustin Pop
    """Compute block device status.
5818 a8083063 Iustin Pop

5819 a8083063 Iustin Pop
    """
5820 57821cac Iustin Pop
    static = self.op.static
5821 57821cac Iustin Pop
    if not static:
5822 57821cac Iustin Pop
      self.cfg.SetDiskID(dev, instance.primary_node)
5823 57821cac Iustin Pop
      dev_pstatus = self.rpc.call_blockdev_find(instance.primary_node, dev)
5824 9854f5d0 Iustin Pop
      if dev_pstatus.offline:
5825 9854f5d0 Iustin Pop
        dev_pstatus = None
5826 9854f5d0 Iustin Pop
      else:
5827 9854f5d0 Iustin Pop
        msg = dev_pstatus.RemoteFailMsg()
5828 9854f5d0 Iustin Pop
        if msg:
5829 9854f5d0 Iustin Pop
          raise errors.OpExecError("Can't compute disk status for %s: %s" %
5830 9854f5d0 Iustin Pop
                                   (instance.name, msg))
5831 9854f5d0 Iustin Pop
        dev_pstatus = dev_pstatus.payload
5832 57821cac Iustin Pop
    else:
5833 57821cac Iustin Pop
      dev_pstatus = None
5834 57821cac Iustin Pop
5835 a1f445d3 Iustin Pop
    if dev.dev_type in constants.LDS_DRBD:
5836 a8083063 Iustin Pop
      # we change the snode then (otherwise we use the one passed in)
5837 a8083063 Iustin Pop
      if dev.logical_id[0] == instance.primary_node:
5838 a8083063 Iustin Pop
        snode = dev.logical_id[1]
5839 a8083063 Iustin Pop
      else:
5840 a8083063 Iustin Pop
        snode = dev.logical_id[0]
5841 a8083063 Iustin Pop
5842 57821cac Iustin Pop
    if snode and not static:
5843 a8083063 Iustin Pop
      self.cfg.SetDiskID(dev, snode)
5844 72737a7f Iustin Pop
      dev_sstatus = self.rpc.call_blockdev_find(snode, dev)
5845 9854f5d0 Iustin Pop
      if dev_sstatus.offline:
5846 9854f5d0 Iustin Pop
        dev_sstatus = None
5847 9854f5d0 Iustin Pop
      else:
5848 9854f5d0 Iustin Pop
        msg = dev_sstatus.RemoteFailMsg()
5849 9854f5d0 Iustin Pop
        if msg:
5850 9854f5d0 Iustin Pop
          raise errors.OpExecError("Can't compute disk status for %s: %s" %
5851 9854f5d0 Iustin Pop
                                   (instance.name, msg))
5852 9854f5d0 Iustin Pop
        dev_sstatus = dev_sstatus.payload
5853 a8083063 Iustin Pop
    else:
5854 a8083063 Iustin Pop
      dev_sstatus = None
5855 a8083063 Iustin Pop
5856 a8083063 Iustin Pop
    if dev.children:
5857 a8083063 Iustin Pop
      dev_children = [self._ComputeDiskStatus(instance, snode, child)
5858 a8083063 Iustin Pop
                      for child in dev.children]
5859 a8083063 Iustin Pop
    else:
5860 a8083063 Iustin Pop
      dev_children = []
5861 a8083063 Iustin Pop
5862 a8083063 Iustin Pop
    data = {
5863 a8083063 Iustin Pop
      "iv_name": dev.iv_name,
5864 a8083063 Iustin Pop
      "dev_type": dev.dev_type,
5865 a8083063 Iustin Pop
      "logical_id": dev.logical_id,
5866 a8083063 Iustin Pop
      "physical_id": dev.physical_id,
5867 a8083063 Iustin Pop
      "pstatus": dev_pstatus,
5868 a8083063 Iustin Pop
      "sstatus": dev_sstatus,
5869 a8083063 Iustin Pop
      "children": dev_children,
5870 b6fdf8b8 Iustin Pop
      "mode": dev.mode,
5871 c98162a7 Iustin Pop
      "size": dev.size,
5872 a8083063 Iustin Pop
      }
5873 a8083063 Iustin Pop
5874 a8083063 Iustin Pop
    return data
5875 a8083063 Iustin Pop
5876 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5877 a8083063 Iustin Pop
    """Gather and return data"""
5878 a8083063 Iustin Pop
    result = {}
5879 338e51e8 Iustin Pop
5880 338e51e8 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
5881 338e51e8 Iustin Pop
5882 a8083063 Iustin Pop
    for instance in self.wanted_instances:
5883 57821cac Iustin Pop
      if not self.op.static:
5884 57821cac Iustin Pop
        remote_info = self.rpc.call_instance_info(instance.primary_node,
5885 57821cac Iustin Pop
                                                  instance.name,
5886 57821cac Iustin Pop
                                                  instance.hypervisor)
5887 781de953 Iustin Pop
        remote_info.Raise()
5888 781de953 Iustin Pop
        remote_info = remote_info.data
5889 57821cac Iustin Pop
        if remote_info and "state" in remote_info:
5890 57821cac Iustin Pop
          remote_state = "up"
5891 57821cac Iustin Pop
        else:
5892 57821cac Iustin Pop
          remote_state = "down"
5893 a8083063 Iustin Pop
      else:
5894 57821cac Iustin Pop
        remote_state = None
5895 0d68c45d Iustin Pop
      if instance.admin_up:
5896 a8083063 Iustin Pop
        config_state = "up"
5897 0d68c45d Iustin Pop
      else:
5898 0d68c45d Iustin Pop
        config_state = "down"
5899 a8083063 Iustin Pop
5900 a8083063 Iustin Pop
      disks = [self._ComputeDiskStatus(instance, None, device)
5901 a8083063 Iustin Pop
               for device in instance.disks]
5902 a8083063 Iustin Pop
5903 a8083063 Iustin Pop
      idict = {
5904 a8083063 Iustin Pop
        "name": instance.name,
5905 a8083063 Iustin Pop
        "config_state": config_state,
5906 a8083063 Iustin Pop
        "run_state": remote_state,
5907 a8083063 Iustin Pop
        "pnode": instance.primary_node,
5908 a8083063 Iustin Pop
        "snodes": instance.secondary_nodes,
5909 a8083063 Iustin Pop
        "os": instance.os,
5910 a8083063 Iustin Pop
        "nics": [(nic.mac, nic.ip, nic.bridge) for nic in instance.nics],
5911 a8083063 Iustin Pop
        "disks": disks,
5912 e69d05fd Iustin Pop
        "hypervisor": instance.hypervisor,
5913 24838135 Iustin Pop
        "network_port": instance.network_port,
5914 24838135 Iustin Pop
        "hv_instance": instance.hvparams,
5915 338e51e8 Iustin Pop
        "hv_actual": cluster.FillHV(instance),
5916 338e51e8 Iustin Pop
        "be_instance": instance.beparams,
5917 338e51e8 Iustin Pop
        "be_actual": cluster.FillBE(instance),
5918 a8083063 Iustin Pop
        }
5919 a8083063 Iustin Pop
5920 a8083063 Iustin Pop
      result[instance.name] = idict
5921 a8083063 Iustin Pop
5922 a8083063 Iustin Pop
    return result
5923 a8083063 Iustin Pop
5924 a8083063 Iustin Pop
5925 7767bbf5 Manuel Franceschini
class LUSetInstanceParams(LogicalUnit):
5926 a8083063 Iustin Pop
  """Modifies an instances's parameters.
5927 a8083063 Iustin Pop

5928 a8083063 Iustin Pop
  """
5929 a8083063 Iustin Pop
  HPATH = "instance-modify"
5930 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5931 24991749 Iustin Pop
  _OP_REQP = ["instance_name"]
5932 1a5c7281 Guido Trotter
  REQ_BGL = False
5933 1a5c7281 Guido Trotter
5934 24991749 Iustin Pop
  def CheckArguments(self):
5935 24991749 Iustin Pop
    if not hasattr(self.op, 'nics'):
5936 24991749 Iustin Pop
      self.op.nics = []
5937 24991749 Iustin Pop
    if not hasattr(self.op, 'disks'):
5938 24991749 Iustin Pop
      self.op.disks = []
5939 24991749 Iustin Pop
    if not hasattr(self.op, 'beparams'):
5940 24991749 Iustin Pop
      self.op.beparams = {}
5941 24991749 Iustin Pop
    if not hasattr(self.op, 'hvparams'):
5942 24991749 Iustin Pop
      self.op.hvparams = {}
5943 24991749 Iustin Pop
    self.op.force = getattr(self.op, "force", False)
5944 24991749 Iustin Pop
    if not (self.op.nics or self.op.disks or
5945 24991749 Iustin Pop
            self.op.hvparams or self.op.beparams):
5946 24991749 Iustin Pop
      raise errors.OpPrereqError("No changes submitted")
5947 24991749 Iustin Pop
5948 24991749 Iustin Pop
    # Disk validation
5949 24991749 Iustin Pop
    disk_addremove = 0
5950 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5951 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5952 24991749 Iustin Pop
        disk_addremove += 1
5953 24991749 Iustin Pop
        continue
5954 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5955 24991749 Iustin Pop
        disk_addremove += 1
5956 24991749 Iustin Pop
      else:
5957 24991749 Iustin Pop
        if not isinstance(disk_op, int):
5958 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index")
5959 24991749 Iustin Pop
      if disk_op == constants.DDM_ADD:
5960 24991749 Iustin Pop
        mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
5961 6ec66eae Iustin Pop
        if mode not in constants.DISK_ACCESS_SET:
5962 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode)
5963 24991749 Iustin Pop
        size = disk_dict.get('size', None)
5964 24991749 Iustin Pop
        if size is None:
5965 24991749 Iustin Pop
          raise errors.OpPrereqError("Required disk parameter size missing")
5966 24991749 Iustin Pop
        try:
5967 24991749 Iustin Pop
          size = int(size)
5968 24991749 Iustin Pop
        except ValueError, err:
5969 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size parameter: %s" %
5970 24991749 Iustin Pop
                                     str(err))
5971 24991749 Iustin Pop
        disk_dict['size'] = size
5972 24991749 Iustin Pop
      else:
5973 24991749 Iustin Pop
        # modification of disk
5974 24991749 Iustin Pop
        if 'size' in disk_dict:
5975 24991749 Iustin Pop
          raise errors.OpPrereqError("Disk size change not possible, use"
5976 24991749 Iustin Pop
                                     " grow-disk")
5977 24991749 Iustin Pop
5978 24991749 Iustin Pop
    if disk_addremove > 1:
5979 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one disk add or remove operation"
5980 24991749 Iustin Pop
                                 " supported at a time")
5981 24991749 Iustin Pop
5982 24991749 Iustin Pop
    # NIC validation
5983 24991749 Iustin Pop
    nic_addremove = 0
5984 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5985 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5986 24991749 Iustin Pop
        nic_addremove += 1
5987 24991749 Iustin Pop
        continue
5988 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5989 24991749 Iustin Pop
        nic_addremove += 1
5990 24991749 Iustin Pop
      else:
5991 24991749 Iustin Pop
        if not isinstance(nic_op, int):
5992 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid nic index")
5993 24991749 Iustin Pop
5994 24991749 Iustin Pop
      # nic_dict should be a dict
5995 24991749 Iustin Pop
      nic_ip = nic_dict.get('ip', None)
5996 24991749 Iustin Pop
      if nic_ip is not None:
5997 5c44da6a Guido Trotter
        if nic_ip.lower() == constants.VALUE_NONE:
5998 24991749 Iustin Pop
          nic_dict['ip'] = None
5999 24991749 Iustin Pop
        else:
6000 24991749 Iustin Pop
          if not utils.IsValidIP(nic_ip):
6001 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip)
6002 5c44da6a Guido Trotter
6003 5c44da6a Guido Trotter
      if nic_op == constants.DDM_ADD:
6004 5c44da6a Guido Trotter
        nic_bridge = nic_dict.get('bridge', None)
6005 5c44da6a Guido Trotter
        if nic_bridge is None:
6006 5c44da6a Guido Trotter
          nic_dict['bridge'] = self.cfg.GetDefBridge()
6007 5c44da6a Guido Trotter
        nic_mac = nic_dict.get('mac', None)
6008 5c44da6a Guido Trotter
        if nic_mac is None:
6009 5c44da6a Guido Trotter
          nic_dict['mac'] = constants.VALUE_AUTO
6010 5c44da6a Guido Trotter
6011 5c44da6a Guido Trotter
      if 'mac' in nic_dict:
6012 5c44da6a Guido Trotter
        nic_mac = nic_dict['mac']
6013 24991749 Iustin Pop
        if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
6014 24991749 Iustin Pop
          if not utils.IsValidMac(nic_mac):
6015 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid MAC address %s" % nic_mac)
6016 5c44da6a Guido Trotter
        if nic_op != constants.DDM_ADD and nic_mac == constants.VALUE_AUTO:
6017 5c44da6a Guido Trotter
          raise errors.OpPrereqError("'auto' is not a valid MAC address when"
6018 5c44da6a Guido Trotter
                                     " modifying an existing nic")
6019 5c44da6a Guido Trotter
6020 24991749 Iustin Pop
    if nic_addremove > 1:
6021 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one NIC add or remove operation"
6022 24991749 Iustin Pop
                                 " supported at a time")
6023 24991749 Iustin Pop
6024 1a5c7281 Guido Trotter
  def ExpandNames(self):
6025 1a5c7281 Guido Trotter
    self._ExpandAndLockInstance()
6026 74409b12 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
6027 74409b12 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
6028 74409b12 Iustin Pop
6029 74409b12 Iustin Pop
  def DeclareLocks(self, level):
6030 74409b12 Iustin Pop
    if level == locking.LEVEL_NODE:
6031 74409b12 Iustin Pop
      self._LockInstancesNodes()
6032 a8083063 Iustin Pop
6033 a8083063 Iustin Pop
  def BuildHooksEnv(self):
6034 a8083063 Iustin Pop
    """Build hooks env.
6035 a8083063 Iustin Pop

6036 a8083063 Iustin Pop
    This runs on the master, primary and secondaries.
6037 a8083063 Iustin Pop

6038 a8083063 Iustin Pop
    """
6039 396e1b78 Michael Hanselmann
    args = dict()
6040 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.be_new:
6041 338e51e8 Iustin Pop
      args['memory'] = self.be_new[constants.BE_MEMORY]
6042 338e51e8 Iustin Pop
    if constants.BE_VCPUS in self.be_new:
6043 61be6ba4 Iustin Pop
      args['vcpus'] = self.be_new[constants.BE_VCPUS]
6044 d8dcf3c9 Guido Trotter
    # TODO: export disk changes. Note: _BuildInstanceHookEnv* don't export disk
6045 d8dcf3c9 Guido Trotter
    # information at all.
6046 d8dcf3c9 Guido Trotter
    if self.op.nics:
6047 d8dcf3c9 Guido Trotter
      args['nics'] = []
6048 d8dcf3c9 Guido Trotter
      nic_override = dict(self.op.nics)
6049 d8dcf3c9 Guido Trotter
      for idx, nic in enumerate(self.instance.nics):
6050 d8dcf3c9 Guido Trotter
        if idx in nic_override:
6051 d8dcf3c9 Guido Trotter
          this_nic_override = nic_override[idx]
6052 d8dcf3c9 Guido Trotter
        else:
6053 d8dcf3c9 Guido Trotter
          this_nic_override = {}
6054 d8dcf3c9 Guido Trotter
        if 'ip' in this_nic_override:
6055 d8dcf3c9 Guido Trotter
          ip = this_nic_override['ip']
6056 d8dcf3c9 Guido Trotter
        else:
6057 d8dcf3c9 Guido Trotter
          ip = nic.ip
6058 d8dcf3c9 Guido Trotter
        if 'bridge' in this_nic_override:
6059 d8dcf3c9 Guido Trotter
          bridge = this_nic_override['bridge']
6060 d8dcf3c9 Guido Trotter
        else:
6061 d8dcf3c9 Guido Trotter
          bridge = nic.bridge
6062 d8dcf3c9 Guido Trotter
        if 'mac' in this_nic_override:
6063 d8dcf3c9 Guido Trotter
          mac = this_nic_override['mac']
6064 d8dcf3c9 Guido Trotter
        else:
6065 d8dcf3c9 Guido Trotter
          mac = nic.mac
6066 d8dcf3c9 Guido Trotter
        args['nics'].append((ip, bridge, mac))
6067 d8dcf3c9 Guido Trotter
      if constants.DDM_ADD in nic_override:
6068 d8dcf3c9 Guido Trotter
        ip = nic_override[constants.DDM_ADD].get('ip', None)
6069 d8dcf3c9 Guido Trotter
        bridge = nic_override[constants.DDM_ADD]['bridge']
6070 d8dcf3c9 Guido Trotter
        mac = nic_override[constants.DDM_ADD]['mac']
6071 d8dcf3c9 Guido Trotter
        args['nics'].append((ip, bridge, mac))
6072 d8dcf3c9 Guido Trotter
      elif constants.DDM_REMOVE in nic_override:
6073 d8dcf3c9 Guido Trotter
        del args['nics'][-1]
6074 d8dcf3c9 Guido Trotter
6075 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
6076 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
6077 a8083063 Iustin Pop
    return env, nl, nl
6078 a8083063 Iustin Pop
6079 a8083063 Iustin Pop
  def CheckPrereq(self):
6080 a8083063 Iustin Pop
    """Check prerequisites.
6081 a8083063 Iustin Pop

6082 a8083063 Iustin Pop
    This only checks the instance list against the existing names.
6083 a8083063 Iustin Pop

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

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

6249 a8083063 Iustin Pop
    """
6250 cfefe007 Guido Trotter
    # Process here the warnings from CheckPrereq, as we don't have a
6251 cfefe007 Guido Trotter
    # feedback_fn there.
6252 cfefe007 Guido Trotter
    for warn in self.warn:
6253 cfefe007 Guido Trotter
      feedback_fn("WARNING: %s" % warn)
6254 cfefe007 Guido Trotter
6255 a8083063 Iustin Pop
    result = []
6256 a8083063 Iustin Pop
    instance = self.instance
6257 24991749 Iustin Pop
    # disk changes
6258 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
6259 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
6260 24991749 Iustin Pop
        # remove the last disk
6261 24991749 Iustin Pop
        device = instance.disks.pop()
6262 24991749 Iustin Pop
        device_idx = len(instance.disks)
6263 24991749 Iustin Pop
        for node, disk in device.ComputeNodeTree(instance.primary_node):
6264 24991749 Iustin Pop
          self.cfg.SetDiskID(disk, node)
6265 e1bc0878 Iustin Pop
          msg = self.rpc.call_blockdev_remove(node, disk).RemoteFailMsg()
6266 e1bc0878 Iustin Pop
          if msg:
6267 e1bc0878 Iustin Pop
            self.LogWarning("Could not remove disk/%d on node %s: %s,"
6268 e1bc0878 Iustin Pop
                            " continuing anyway", device_idx, node, msg)
6269 24991749 Iustin Pop
        result.append(("disk/%d" % device_idx, "remove"))
6270 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
6271 24991749 Iustin Pop
        # add a new disk
6272 24991749 Iustin Pop
        if instance.disk_template == constants.DT_FILE:
6273 24991749 Iustin Pop
          file_driver, file_path = instance.disks[0].logical_id
6274 24991749 Iustin Pop
          file_path = os.path.dirname(file_path)
6275 24991749 Iustin Pop
        else:
6276 24991749 Iustin Pop
          file_driver = file_path = None
6277 24991749 Iustin Pop
        disk_idx_base = len(instance.disks)
6278 24991749 Iustin Pop
        new_disk = _GenerateDiskTemplate(self,
6279 24991749 Iustin Pop
                                         instance.disk_template,
6280 32388e6d Iustin Pop
                                         instance.name, instance.primary_node,
6281 24991749 Iustin Pop
                                         instance.secondary_nodes,
6282 24991749 Iustin Pop
                                         [disk_dict],
6283 24991749 Iustin Pop
                                         file_path,
6284 24991749 Iustin Pop
                                         file_driver,
6285 24991749 Iustin Pop
                                         disk_idx_base)[0]
6286 24991749 Iustin Pop
        instance.disks.append(new_disk)
6287 24991749 Iustin Pop
        info = _GetInstanceInfoText(instance)
6288 24991749 Iustin Pop
6289 24991749 Iustin Pop
        logging.info("Creating volume %s for instance %s",
6290 24991749 Iustin Pop
                     new_disk.iv_name, instance.name)
6291 24991749 Iustin Pop
        # Note: this needs to be kept in sync with _CreateDisks
6292 24991749 Iustin Pop
        #HARDCODE
6293 428958aa Iustin Pop
        for node in instance.all_nodes:
6294 428958aa Iustin Pop
          f_create = node == instance.primary_node
6295 796cab27 Iustin Pop
          try:
6296 428958aa Iustin Pop
            _CreateBlockDev(self, node, instance, new_disk,
6297 428958aa Iustin Pop
                            f_create, info, f_create)
6298 1492cca7 Iustin Pop
          except errors.OpExecError, err:
6299 24991749 Iustin Pop
            self.LogWarning("Failed to create volume %s (%s) on"
6300 428958aa Iustin Pop
                            " node %s: %s",
6301 428958aa Iustin Pop
                            new_disk.iv_name, new_disk, node, err)
6302 24991749 Iustin Pop
        result.append(("disk/%d" % disk_idx_base, "add:size=%s,mode=%s" %
6303 24991749 Iustin Pop
                       (new_disk.size, new_disk.mode)))
6304 24991749 Iustin Pop
      else:
6305 24991749 Iustin Pop
        # change a given disk
6306 24991749 Iustin Pop
        instance.disks[disk_op].mode = disk_dict['mode']
6307 24991749 Iustin Pop
        result.append(("disk.mode/%d" % disk_op, disk_dict['mode']))
6308 24991749 Iustin Pop
    # NIC changes
6309 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
6310 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
6311 24991749 Iustin Pop
        # remove the last nic
6312 24991749 Iustin Pop
        del instance.nics[-1]
6313 24991749 Iustin Pop
        result.append(("nic.%d" % len(instance.nics), "remove"))
6314 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
6315 5c44da6a Guido Trotter
        # mac and bridge should be set, by now
6316 5c44da6a Guido Trotter
        mac = nic_dict['mac']
6317 5c44da6a Guido Trotter
        bridge = nic_dict['bridge']
6318 24991749 Iustin Pop
        new_nic = objects.NIC(mac=mac, ip=nic_dict.get('ip', None),
6319 5c44da6a Guido Trotter
                              bridge=bridge)
6320 24991749 Iustin Pop
        instance.nics.append(new_nic)
6321 24991749 Iustin Pop
        result.append(("nic.%d" % (len(instance.nics) - 1),
6322 24991749 Iustin Pop
                       "add:mac=%s,ip=%s,bridge=%s" %
6323 24991749 Iustin Pop
                       (new_nic.mac, new_nic.ip, new_nic.bridge)))
6324 24991749 Iustin Pop
      else:
6325 24991749 Iustin Pop
        # change a given nic
6326 24991749 Iustin Pop
        for key in 'mac', 'ip', 'bridge':
6327 24991749 Iustin Pop
          if key in nic_dict:
6328 24991749 Iustin Pop
            setattr(instance.nics[nic_op], key, nic_dict[key])
6329 24991749 Iustin Pop
            result.append(("nic.%s/%d" % (key, nic_op), nic_dict[key]))
6330 24991749 Iustin Pop
6331 24991749 Iustin Pop
    # hvparams changes
6332 74409b12 Iustin Pop
    if self.op.hvparams:
6333 12649e35 Guido Trotter
      instance.hvparams = self.hv_inst
6334 74409b12 Iustin Pop
      for key, val in self.op.hvparams.iteritems():
6335 74409b12 Iustin Pop
        result.append(("hv/%s" % key, val))
6336 24991749 Iustin Pop
6337 24991749 Iustin Pop
    # beparams changes
6338 338e51e8 Iustin Pop
    if self.op.beparams:
6339 338e51e8 Iustin Pop
      instance.beparams = self.be_inst
6340 338e51e8 Iustin Pop
      for key, val in self.op.beparams.iteritems():
6341 338e51e8 Iustin Pop
        result.append(("be/%s" % key, val))
6342 a8083063 Iustin Pop
6343 ea94e1cd Guido Trotter
    self.cfg.Update(instance)
6344 a8083063 Iustin Pop
6345 a8083063 Iustin Pop
    return result
6346 a8083063 Iustin Pop
6347 a8083063 Iustin Pop
6348 a8083063 Iustin Pop
class LUQueryExports(NoHooksLU):
6349 a8083063 Iustin Pop
  """Query the exports list
6350 a8083063 Iustin Pop

6351 a8083063 Iustin Pop
  """
6352 895ecd9c Guido Trotter
  _OP_REQP = ['nodes']
6353 21a15682 Guido Trotter
  REQ_BGL = False
6354 21a15682 Guido Trotter
6355 21a15682 Guido Trotter
  def ExpandNames(self):
6356 21a15682 Guido Trotter
    self.needed_locks = {}
6357 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
6358 21a15682 Guido Trotter
    if not self.op.nodes:
6359 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6360 21a15682 Guido Trotter
    else:
6361 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
6362 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
6363 a8083063 Iustin Pop
6364 a8083063 Iustin Pop
  def CheckPrereq(self):
6365 21a15682 Guido Trotter
    """Check prerequisites.
6366 a8083063 Iustin Pop

6367 a8083063 Iustin Pop
    """
6368 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
6369 a8083063 Iustin Pop
6370 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6371 a8083063 Iustin Pop
    """Compute the list of all the exported system images.
6372 a8083063 Iustin Pop

6373 e4376078 Iustin Pop
    @rtype: dict
6374 e4376078 Iustin Pop
    @return: a dictionary with the structure node->(export-list)
6375 e4376078 Iustin Pop
        where export-list is a list of the instances exported on
6376 e4376078 Iustin Pop
        that node.
6377 a8083063 Iustin Pop

6378 a8083063 Iustin Pop
    """
6379 b04285f2 Guido Trotter
    rpcresult = self.rpc.call_export_list(self.nodes)
6380 b04285f2 Guido Trotter
    result = {}
6381 b04285f2 Guido Trotter
    for node in rpcresult:
6382 b04285f2 Guido Trotter
      if rpcresult[node].failed:
6383 b04285f2 Guido Trotter
        result[node] = False
6384 b04285f2 Guido Trotter
      else:
6385 b04285f2 Guido Trotter
        result[node] = rpcresult[node].data
6386 b04285f2 Guido Trotter
6387 b04285f2 Guido Trotter
    return result
6388 a8083063 Iustin Pop
6389 a8083063 Iustin Pop
6390 a8083063 Iustin Pop
class LUExportInstance(LogicalUnit):
6391 a8083063 Iustin Pop
  """Export an instance to an image in the cluster.
6392 a8083063 Iustin Pop

6393 a8083063 Iustin Pop
  """
6394 a8083063 Iustin Pop
  HPATH = "instance-export"
6395 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
6396 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "target_node", "shutdown"]
6397 6657590e Guido Trotter
  REQ_BGL = False
6398 6657590e Guido Trotter
6399 6657590e Guido Trotter
  def ExpandNames(self):
6400 6657590e Guido Trotter
    self._ExpandAndLockInstance()
6401 6657590e Guido Trotter
    # FIXME: lock only instance primary and destination node
6402 6657590e Guido Trotter
    #
6403 6657590e Guido Trotter
    # Sad but true, for now we have do lock all nodes, as we don't know where
6404 6657590e Guido Trotter
    # the previous export might be, and and in this LU we search for it and
6405 6657590e Guido Trotter
    # remove it from its current node. In the future we could fix this by:
6406 6657590e Guido Trotter
    #  - making a tasklet to search (share-lock all), then create the new one,
6407 6657590e Guido Trotter
    #    then one to remove, after
6408 5bbd3f7f Michael Hanselmann
    #  - removing the removal operation altogether
6409 6657590e Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6410 6657590e Guido Trotter
6411 6657590e Guido Trotter
  def DeclareLocks(self, level):
6412 6657590e Guido Trotter
    """Last minute lock declaration."""
6413 6657590e Guido Trotter
    # All nodes are locked anyway, so nothing to do here.
6414 a8083063 Iustin Pop
6415 a8083063 Iustin Pop
  def BuildHooksEnv(self):
6416 a8083063 Iustin Pop
    """Build hooks env.
6417 a8083063 Iustin Pop

6418 a8083063 Iustin Pop
    This will run on the master, primary node and target node.
6419 a8083063 Iustin Pop

6420 a8083063 Iustin Pop
    """
6421 a8083063 Iustin Pop
    env = {
6422 a8083063 Iustin Pop
      "EXPORT_NODE": self.op.target_node,
6423 a8083063 Iustin Pop
      "EXPORT_DO_SHUTDOWN": self.op.shutdown,
6424 a8083063 Iustin Pop
      }
6425 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
6426 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode(), self.instance.primary_node,
6427 a8083063 Iustin Pop
          self.op.target_node]
6428 a8083063 Iustin Pop
    return env, nl, nl
6429 a8083063 Iustin Pop
6430 a8083063 Iustin Pop
  def CheckPrereq(self):
6431 a8083063 Iustin Pop
    """Check prerequisites.
6432 a8083063 Iustin Pop

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

6435 a8083063 Iustin Pop
    """
6436 6657590e Guido Trotter
    instance_name = self.op.instance_name
6437 a8083063 Iustin Pop
    self.instance = self.cfg.GetInstanceInfo(instance_name)
6438 6657590e Guido Trotter
    assert self.instance is not None, \
6439 6657590e Guido Trotter
          "Cannot retrieve locked instance %s" % self.op.instance_name
6440 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
6441 a8083063 Iustin Pop
6442 6657590e Guido Trotter
    self.dst_node = self.cfg.GetNodeInfo(
6443 6657590e Guido Trotter
      self.cfg.ExpandNodeName(self.op.target_node))
6444 a8083063 Iustin Pop
6445 268b8e42 Iustin Pop
    if self.dst_node is None:
6446 268b8e42 Iustin Pop
      # This is wrong node name, not a non-locked node
6447 268b8e42 Iustin Pop
      raise errors.OpPrereqError("Wrong node name %s" % self.op.target_node)
6448 aeb83a2b Iustin Pop
    _CheckNodeOnline(self, self.dst_node.name)
6449 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, self.dst_node.name)
6450 a8083063 Iustin Pop
6451 b6023d6c Manuel Franceschini
    # instance disk type verification
6452 b6023d6c Manuel Franceschini
    for disk in self.instance.disks:
6453 b6023d6c Manuel Franceschini
      if disk.dev_type == constants.LD_FILE:
6454 b6023d6c Manuel Franceschini
        raise errors.OpPrereqError("Export not supported for instances with"
6455 b6023d6c Manuel Franceschini
                                   " file-based disks")
6456 b6023d6c Manuel Franceschini
6457 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
6458 a8083063 Iustin Pop
    """Export an instance to an image in the cluster.
6459 a8083063 Iustin Pop

6460 a8083063 Iustin Pop
    """
6461 a8083063 Iustin Pop
    instance = self.instance
6462 a8083063 Iustin Pop
    dst_node = self.dst_node
6463 a8083063 Iustin Pop
    src_node = instance.primary_node
6464 a8083063 Iustin Pop
    if self.op.shutdown:
6465 fb300fb7 Guido Trotter
      # shutdown the instance, but not the disks
6466 781de953 Iustin Pop
      result = self.rpc.call_instance_shutdown(src_node, instance)
6467 1fae010f Iustin Pop
      msg = result.RemoteFailMsg()
6468 1fae010f Iustin Pop
      if msg:
6469 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
6470 1fae010f Iustin Pop
                                 " node %s: %s" %
6471 1fae010f Iustin Pop
                                 (instance.name, src_node, msg))
6472 a8083063 Iustin Pop
6473 a8083063 Iustin Pop
    vgname = self.cfg.GetVGName()
6474 a8083063 Iustin Pop
6475 a8083063 Iustin Pop
    snap_disks = []
6476 a8083063 Iustin Pop
6477 998c712c Iustin Pop
    # set the disks ID correctly since call_instance_start needs the
6478 998c712c Iustin Pop
    # correct drbd minor to create the symlinks
6479 998c712c Iustin Pop
    for disk in instance.disks:
6480 998c712c Iustin Pop
      self.cfg.SetDiskID(disk, src_node)
6481 998c712c Iustin Pop
6482 084f05a5 Iustin Pop
    # per-disk results
6483 084f05a5 Iustin Pop
    dresults = []
6484 a8083063 Iustin Pop
    try:
6485 a97da6b7 Iustin Pop
      for idx, disk in enumerate(instance.disks):
6486 19d7f90a Guido Trotter
        # new_dev_name will be a snapshot of an lvm leaf of the one we passed
6487 19d7f90a Guido Trotter
        new_dev_name = self.rpc.call_blockdev_snapshot(src_node, disk)
6488 781de953 Iustin Pop
        if new_dev_name.failed or not new_dev_name.data:
6489 a97da6b7 Iustin Pop
          self.LogWarning("Could not snapshot disk/%d on node %s",
6490 a97da6b7 Iustin Pop
                          idx, src_node)
6491 19d7f90a Guido Trotter
          snap_disks.append(False)
6492 19d7f90a Guido Trotter
        else:
6493 19d7f90a Guido Trotter
          new_dev = objects.Disk(dev_type=constants.LD_LV, size=disk.size,
6494 781de953 Iustin Pop
                                 logical_id=(vgname, new_dev_name.data),
6495 781de953 Iustin Pop
                                 physical_id=(vgname, new_dev_name.data),
6496 19d7f90a Guido Trotter
                                 iv_name=disk.iv_name)
6497 19d7f90a Guido Trotter
          snap_disks.append(new_dev)
6498 a8083063 Iustin Pop
6499 a8083063 Iustin Pop
    finally:
6500 0d68c45d Iustin Pop
      if self.op.shutdown and instance.admin_up:
6501 0eca8e0c Iustin Pop
        result = self.rpc.call_instance_start(src_node, instance, None, None)
6502 dd279568 Iustin Pop
        msg = result.RemoteFailMsg()
6503 dd279568 Iustin Pop
        if msg:
6504 b9bddb6b Iustin Pop
          _ShutdownInstanceDisks(self, instance)
6505 dd279568 Iustin Pop
          raise errors.OpExecError("Could not start instance: %s" % msg)
6506 a8083063 Iustin Pop
6507 a8083063 Iustin Pop
    # TODO: check for size
6508 a8083063 Iustin Pop
6509 62c9ec92 Iustin Pop
    cluster_name = self.cfg.GetClusterName()
6510 74c47259 Iustin Pop
    for idx, dev in enumerate(snap_disks):
6511 19d7f90a Guido Trotter
      if dev:
6512 781de953 Iustin Pop
        result = self.rpc.call_snapshot_export(src_node, dev, dst_node.name,
6513 781de953 Iustin Pop
                                               instance, cluster_name, idx)
6514 781de953 Iustin Pop
        if result.failed or not result.data:
6515 a97da6b7 Iustin Pop
          self.LogWarning("Could not export disk/%d from node %s to"
6516 a97da6b7 Iustin Pop
                          " node %s", idx, src_node, dst_node.name)
6517 084f05a5 Iustin Pop
          dresults.append(False)
6518 084f05a5 Iustin Pop
        else:
6519 084f05a5 Iustin Pop
          dresults.append(True)
6520 e1bc0878 Iustin Pop
        msg = self.rpc.call_blockdev_remove(src_node, dev).RemoteFailMsg()
6521 e1bc0878 Iustin Pop
        if msg:
6522 a97da6b7 Iustin Pop
          self.LogWarning("Could not remove snapshot for disk/%d from node"
6523 a97da6b7 Iustin Pop
                          " %s: %s", idx, src_node, msg)
6524 084f05a5 Iustin Pop
      else:
6525 084f05a5 Iustin Pop
        dresults.append(False)
6526 a8083063 Iustin Pop
6527 781de953 Iustin Pop
    result = self.rpc.call_finalize_export(dst_node.name, instance, snap_disks)
6528 084f05a5 Iustin Pop
    fin_resu = True
6529 781de953 Iustin Pop
    if result.failed or not result.data:
6530 19d7f90a Guido Trotter
      self.LogWarning("Could not finalize export for instance %s on node %s",
6531 19d7f90a Guido Trotter
                      instance.name, dst_node.name)
6532 084f05a5 Iustin Pop
      fin_resu = False
6533 a8083063 Iustin Pop
6534 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
6535 a8083063 Iustin Pop
    nodelist.remove(dst_node.name)
6536 a8083063 Iustin Pop
6537 a8083063 Iustin Pop
    # on one-node clusters nodelist will be empty after the removal
6538 a8083063 Iustin Pop
    # if we proceed the backup would be removed because OpQueryExports
6539 a8083063 Iustin Pop
    # substitutes an empty list with the full cluster node list.
6540 a8083063 Iustin Pop
    if nodelist:
6541 72737a7f Iustin Pop
      exportlist = self.rpc.call_export_list(nodelist)
6542 a8083063 Iustin Pop
      for node in exportlist:
6543 781de953 Iustin Pop
        if exportlist[node].failed:
6544 781de953 Iustin Pop
          continue
6545 781de953 Iustin Pop
        if instance.name in exportlist[node].data:
6546 72737a7f Iustin Pop
          if not self.rpc.call_export_remove(node, instance.name):
6547 19d7f90a Guido Trotter
            self.LogWarning("Could not remove older export for instance %s"
6548 19d7f90a Guido Trotter
                            " on node %s", instance.name, node)
6549 084f05a5 Iustin Pop
    return fin_resu, dresults
6550 5c947f38 Iustin Pop
6551 5c947f38 Iustin Pop
6552 9ac99fda Guido Trotter
class LURemoveExport(NoHooksLU):
6553 9ac99fda Guido Trotter
  """Remove exports related to the named instance.
6554 9ac99fda Guido Trotter

6555 9ac99fda Guido Trotter
  """
6556 9ac99fda Guido Trotter
  _OP_REQP = ["instance_name"]
6557 3656b3af Guido Trotter
  REQ_BGL = False
6558 3656b3af Guido Trotter
6559 3656b3af Guido Trotter
  def ExpandNames(self):
6560 3656b3af Guido Trotter
    self.needed_locks = {}
6561 3656b3af Guido Trotter
    # We need all nodes to be locked in order for RemoveExport to work, but we
6562 3656b3af Guido Trotter
    # don't need to lock the instance itself, as nothing will happen to it (and
6563 3656b3af Guido Trotter
    # we can remove exports also for a removed instance)
6564 3656b3af Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
6565 9ac99fda Guido Trotter
6566 9ac99fda Guido Trotter
  def CheckPrereq(self):
6567 9ac99fda Guido Trotter
    """Check prerequisites.
6568 9ac99fda Guido Trotter
    """
6569 9ac99fda Guido Trotter
    pass
6570 9ac99fda Guido Trotter
6571 9ac99fda Guido Trotter
  def Exec(self, feedback_fn):
6572 9ac99fda Guido Trotter
    """Remove any export.
6573 9ac99fda Guido Trotter

6574 9ac99fda Guido Trotter
    """
6575 9ac99fda Guido Trotter
    instance_name = self.cfg.ExpandInstanceName(self.op.instance_name)
6576 9ac99fda Guido Trotter
    # If the instance was not found we'll try with the name that was passed in.
6577 9ac99fda Guido Trotter
    # This will only work if it was an FQDN, though.
6578 9ac99fda Guido Trotter
    fqdn_warn = False
6579 9ac99fda Guido Trotter
    if not instance_name:
6580 9ac99fda Guido Trotter
      fqdn_warn = True
6581 9ac99fda Guido Trotter
      instance_name = self.op.instance_name
6582 9ac99fda Guido Trotter
6583 72737a7f Iustin Pop
    exportlist = self.rpc.call_export_list(self.acquired_locks[
6584 72737a7f Iustin Pop
      locking.LEVEL_NODE])
6585 9ac99fda Guido Trotter
    found = False
6586 9ac99fda Guido Trotter
    for node in exportlist:
6587 781de953 Iustin Pop
      if exportlist[node].failed:
6588 25361b9a Iustin Pop
        self.LogWarning("Failed to query node %s, continuing" % node)
6589 781de953 Iustin Pop
        continue
6590 781de953 Iustin Pop
      if instance_name in exportlist[node].data:
6591 9ac99fda Guido Trotter
        found = True
6592 781de953 Iustin Pop
        result = self.rpc.call_export_remove(node, instance_name)
6593 781de953 Iustin Pop
        if result.failed or not result.data:
6594 9a4f63d1 Iustin Pop
          logging.error("Could not remove export for instance %s"
6595 9a4f63d1 Iustin Pop
                        " on node %s", instance_name, node)
6596 9ac99fda Guido Trotter
6597 9ac99fda Guido Trotter
    if fqdn_warn and not found:
6598 9ac99fda Guido Trotter
      feedback_fn("Export not found. If trying to remove an export belonging"
6599 9ac99fda Guido Trotter
                  " to a deleted instance please use its Fully Qualified"
6600 9ac99fda Guido Trotter
                  " Domain Name.")
6601 9ac99fda Guido Trotter
6602 9ac99fda Guido Trotter
6603 5c947f38 Iustin Pop
class TagsLU(NoHooksLU):
6604 5c947f38 Iustin Pop
  """Generic tags LU.
6605 5c947f38 Iustin Pop

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

6608 5c947f38 Iustin Pop
  """
6609 5c947f38 Iustin Pop
6610 8646adce Guido Trotter
  def ExpandNames(self):
6611 8646adce Guido Trotter
    self.needed_locks = {}
6612 8646adce Guido Trotter
    if self.op.kind == constants.TAG_NODE:
6613 5c947f38 Iustin Pop
      name = self.cfg.ExpandNodeName(self.op.name)
6614 5c947f38 Iustin Pop
      if name is None:
6615 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid node name (%s)" %
6616 3ecf6786 Iustin Pop
                                   (self.op.name,))
6617 5c947f38 Iustin Pop
      self.op.name = name
6618 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = name
6619 5c947f38 Iustin Pop
    elif self.op.kind == constants.TAG_INSTANCE:
6620 8f684e16 Iustin Pop
      name = self.cfg.ExpandInstanceName(self.op.name)
6621 5c947f38 Iustin Pop
      if name is None:
6622 3ecf6786 Iustin Pop
        raise errors.OpPrereqError("Invalid instance name (%s)" %
6623 3ecf6786 Iustin Pop
                                   (self.op.name,))
6624 5c947f38 Iustin Pop
      self.op.name = name
6625 8646adce Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = name
6626 8646adce Guido Trotter
6627 8646adce Guido Trotter
  def CheckPrereq(self):
6628 8646adce Guido Trotter
    """Check prerequisites.
6629 8646adce Guido Trotter

6630 8646adce Guido Trotter
    """
6631 8646adce Guido Trotter
    if self.op.kind == constants.TAG_CLUSTER:
6632 8646adce Guido Trotter
      self.target = self.cfg.GetClusterInfo()
6633 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_NODE:
6634 8646adce Guido Trotter
      self.target = self.cfg.GetNodeInfo(self.op.name)
6635 8646adce Guido Trotter
    elif self.op.kind == constants.TAG_INSTANCE:
6636 8646adce Guido Trotter
      self.target = self.cfg.GetInstanceInfo(self.op.name)
6637 5c947f38 Iustin Pop
    else:
6638 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("Wrong tag type requested (%s)" %
6639 3ecf6786 Iustin Pop
                                 str(self.op.kind))
6640 5c947f38 Iustin Pop
6641 5c947f38 Iustin Pop
6642 5c947f38 Iustin Pop
class LUGetTags(TagsLU):
6643 5c947f38 Iustin Pop
  """Returns the tags of a given object.
6644 5c947f38 Iustin Pop

6645 5c947f38 Iustin Pop
  """
6646 5c947f38 Iustin Pop
  _OP_REQP = ["kind", "name"]
6647 8646adce Guido Trotter
  REQ_BGL = False
6648 5c947f38 Iustin Pop
6649 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6650 5c947f38 Iustin Pop
    """Returns the tag list.
6651 5c947f38 Iustin Pop

6652 5c947f38 Iustin Pop
    """
6653 5d414478 Oleksiy Mishchenko
    return list(self.target.GetTags())
6654 5c947f38 Iustin Pop
6655 5c947f38 Iustin Pop
6656 73415719 Iustin Pop
class LUSearchTags(NoHooksLU):
6657 73415719 Iustin Pop
  """Searches the tags for a given pattern.
6658 73415719 Iustin Pop

6659 73415719 Iustin Pop
  """
6660 73415719 Iustin Pop
  _OP_REQP = ["pattern"]
6661 8646adce Guido Trotter
  REQ_BGL = False
6662 8646adce Guido Trotter
6663 8646adce Guido Trotter
  def ExpandNames(self):
6664 8646adce Guido Trotter
    self.needed_locks = {}
6665 73415719 Iustin Pop
6666 73415719 Iustin Pop
  def CheckPrereq(self):
6667 73415719 Iustin Pop
    """Check prerequisites.
6668 73415719 Iustin Pop

6669 73415719 Iustin Pop
    This checks the pattern passed for validity by compiling it.
6670 73415719 Iustin Pop

6671 73415719 Iustin Pop
    """
6672 73415719 Iustin Pop
    try:
6673 73415719 Iustin Pop
      self.re = re.compile(self.op.pattern)
6674 73415719 Iustin Pop
    except re.error, err:
6675 73415719 Iustin Pop
      raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
6676 73415719 Iustin Pop
                                 (self.op.pattern, err))
6677 73415719 Iustin Pop
6678 73415719 Iustin Pop
  def Exec(self, feedback_fn):
6679 73415719 Iustin Pop
    """Returns the tag list.
6680 73415719 Iustin Pop

6681 73415719 Iustin Pop
    """
6682 73415719 Iustin Pop
    cfg = self.cfg
6683 73415719 Iustin Pop
    tgts = [("/cluster", cfg.GetClusterInfo())]
6684 8646adce Guido Trotter
    ilist = cfg.GetAllInstancesInfo().values()
6685 73415719 Iustin Pop
    tgts.extend([("/instances/%s" % i.name, i) for i in ilist])
6686 8646adce Guido Trotter
    nlist = cfg.GetAllNodesInfo().values()
6687 73415719 Iustin Pop
    tgts.extend([("/nodes/%s" % n.name, n) for n in nlist])
6688 73415719 Iustin Pop
    results = []
6689 73415719 Iustin Pop
    for path, target in tgts:
6690 73415719 Iustin Pop
      for tag in target.GetTags():
6691 73415719 Iustin Pop
        if self.re.search(tag):
6692 73415719 Iustin Pop
          results.append((path, tag))
6693 73415719 Iustin Pop
    return results
6694 73415719 Iustin Pop
6695 73415719 Iustin Pop
6696 f27302fa Iustin Pop
class LUAddTags(TagsLU):
6697 5c947f38 Iustin Pop
  """Sets a tag on a given object.
6698 5c947f38 Iustin Pop

6699 5c947f38 Iustin Pop
  """
6700 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6701 8646adce Guido Trotter
  REQ_BGL = False
6702 5c947f38 Iustin Pop
6703 5c947f38 Iustin Pop
  def CheckPrereq(self):
6704 5c947f38 Iustin Pop
    """Check prerequisites.
6705 5c947f38 Iustin Pop

6706 5c947f38 Iustin Pop
    This checks the type and length of the tag name and value.
6707 5c947f38 Iustin Pop

6708 5c947f38 Iustin Pop
    """
6709 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6710 f27302fa Iustin Pop
    for tag in self.op.tags:
6711 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6712 5c947f38 Iustin Pop
6713 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6714 5c947f38 Iustin Pop
    """Sets the tag.
6715 5c947f38 Iustin Pop

6716 5c947f38 Iustin Pop
    """
6717 5c947f38 Iustin Pop
    try:
6718 f27302fa Iustin Pop
      for tag in self.op.tags:
6719 f27302fa Iustin Pop
        self.target.AddTag(tag)
6720 5c947f38 Iustin Pop
    except errors.TagError, err:
6721 3ecf6786 Iustin Pop
      raise errors.OpExecError("Error while setting tag: %s" % str(err))
6722 5c947f38 Iustin Pop
    try:
6723 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6724 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6725 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6726 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6727 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6728 5c947f38 Iustin Pop
6729 5c947f38 Iustin Pop
6730 f27302fa Iustin Pop
class LUDelTags(TagsLU):
6731 f27302fa Iustin Pop
  """Delete a list of tags from a given object.
6732 5c947f38 Iustin Pop

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

6740 5c947f38 Iustin Pop
    This checks that we have the given tag.
6741 5c947f38 Iustin Pop

6742 5c947f38 Iustin Pop
    """
6743 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6744 f27302fa Iustin Pop
    for tag in self.op.tags:
6745 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6746 f27302fa Iustin Pop
    del_tags = frozenset(self.op.tags)
6747 f27302fa Iustin Pop
    cur_tags = self.target.GetTags()
6748 f27302fa Iustin Pop
    if not del_tags <= cur_tags:
6749 f27302fa Iustin Pop
      diff_tags = del_tags - cur_tags
6750 f27302fa Iustin Pop
      diff_names = ["'%s'" % tag for tag in diff_tags]
6751 f27302fa Iustin Pop
      diff_names.sort()
6752 f27302fa Iustin Pop
      raise errors.OpPrereqError("Tag(s) %s not found" %
6753 f27302fa Iustin Pop
                                 (",".join(diff_names)))
6754 5c947f38 Iustin Pop
6755 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6756 5c947f38 Iustin Pop
    """Remove the tag from the object.
6757 5c947f38 Iustin Pop

6758 5c947f38 Iustin Pop
    """
6759 f27302fa Iustin Pop
    for tag in self.op.tags:
6760 f27302fa Iustin Pop
      self.target.RemoveTag(tag)
6761 5c947f38 Iustin Pop
    try:
6762 5c947f38 Iustin Pop
      self.cfg.Update(self.target)
6763 5c947f38 Iustin Pop
    except errors.ConfigurationError:
6764 3ecf6786 Iustin Pop
      raise errors.OpRetryError("There has been a modification to the"
6765 3ecf6786 Iustin Pop
                                " config file and the operation has been"
6766 3ecf6786 Iustin Pop
                                " aborted. Please retry.")
6767 06009e27 Iustin Pop
6768 0eed6e61 Guido Trotter
6769 06009e27 Iustin Pop
class LUTestDelay(NoHooksLU):
6770 06009e27 Iustin Pop
  """Sleep for a specified amount of time.
6771 06009e27 Iustin Pop

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

6775 06009e27 Iustin Pop
  """
6776 06009e27 Iustin Pop
  _OP_REQP = ["duration", "on_master", "on_nodes"]
6777 fbe9022f Guido Trotter
  REQ_BGL = False
6778 06009e27 Iustin Pop
6779 fbe9022f Guido Trotter
  def ExpandNames(self):
6780 fbe9022f Guido Trotter
    """Expand names and set required locks.
6781 06009e27 Iustin Pop

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

6784 06009e27 Iustin Pop
    """
6785 fbe9022f Guido Trotter
    self.needed_locks = {}
6786 06009e27 Iustin Pop
    if self.op.on_nodes:
6787 fbe9022f Guido Trotter
      # _GetWantedNodes can be used here, but is not always appropriate to use
6788 fbe9022f Guido Trotter
      # this way in ExpandNames. Check LogicalUnit.ExpandNames docstring for
6789 fbe9022f Guido Trotter
      # more information.
6790 06009e27 Iustin Pop
      self.op.on_nodes = _GetWantedNodes(self, self.op.on_nodes)
6791 fbe9022f Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = self.op.on_nodes
6792 fbe9022f Guido Trotter
6793 fbe9022f Guido Trotter
  def CheckPrereq(self):
6794 fbe9022f Guido Trotter
    """Check prerequisites.
6795 fbe9022f Guido Trotter

6796 fbe9022f Guido Trotter
    """
6797 06009e27 Iustin Pop
6798 06009e27 Iustin Pop
  def Exec(self, feedback_fn):
6799 06009e27 Iustin Pop
    """Do the actual sleep.
6800 06009e27 Iustin Pop

6801 06009e27 Iustin Pop
    """
6802 06009e27 Iustin Pop
    if self.op.on_master:
6803 06009e27 Iustin Pop
      if not utils.TestDelay(self.op.duration):
6804 06009e27 Iustin Pop
        raise errors.OpExecError("Error during master delay test")
6805 06009e27 Iustin Pop
    if self.op.on_nodes:
6806 72737a7f Iustin Pop
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
6807 06009e27 Iustin Pop
      if not result:
6808 06009e27 Iustin Pop
        raise errors.OpExecError("Complete failure from rpc call")
6809 06009e27 Iustin Pop
      for node, node_result in result.items():
6810 781de953 Iustin Pop
        node_result.Raise()
6811 781de953 Iustin Pop
        if not node_result.data:
6812 06009e27 Iustin Pop
          raise errors.OpExecError("Failure during rpc call to node %s,"
6813 781de953 Iustin Pop
                                   " result: %s" % (node, node_result.data))
6814 d61df03e Iustin Pop
6815 d61df03e Iustin Pop
6816 d1c2dd75 Iustin Pop
class IAllocator(object):
6817 d1c2dd75 Iustin Pop
  """IAllocator framework.
6818 d61df03e Iustin Pop

6819 d1c2dd75 Iustin Pop
  An IAllocator instance has three sets of attributes:
6820 d6a02168 Michael Hanselmann
    - cfg that is needed to query the cluster
6821 d1c2dd75 Iustin Pop
    - input data (all members of the _KEYS class attribute are required)
6822 d1c2dd75 Iustin Pop
    - four buffer attributes (in|out_data|text), that represent the
6823 d1c2dd75 Iustin Pop
      input (to the external script) in text and data structure format,
6824 d1c2dd75 Iustin Pop
      and the output from it, again in two formats
6825 d1c2dd75 Iustin Pop
    - the result variables from the script (success, info, nodes) for
6826 d1c2dd75 Iustin Pop
      easy usage
6827 d61df03e Iustin Pop

6828 d61df03e Iustin Pop
  """
6829 29859cb7 Iustin Pop
  _ALLO_KEYS = [
6830 d1c2dd75 Iustin Pop
    "mem_size", "disks", "disk_template",
6831 8cc7e742 Guido Trotter
    "os", "tags", "nics", "vcpus", "hypervisor",
6832 d1c2dd75 Iustin Pop
    ]
6833 29859cb7 Iustin Pop
  _RELO_KEYS = [
6834 29859cb7 Iustin Pop
    "relocate_from",
6835 29859cb7 Iustin Pop
    ]
6836 d1c2dd75 Iustin Pop
6837 72737a7f Iustin Pop
  def __init__(self, lu, mode, name, **kwargs):
6838 72737a7f Iustin Pop
    self.lu = lu
6839 d1c2dd75 Iustin Pop
    # init buffer variables
6840 d1c2dd75 Iustin Pop
    self.in_text = self.out_text = self.in_data = self.out_data = None
6841 d1c2dd75 Iustin Pop
    # init all input fields so that pylint is happy
6842 29859cb7 Iustin Pop
    self.mode = mode
6843 29859cb7 Iustin Pop
    self.name = name
6844 d1c2dd75 Iustin Pop
    self.mem_size = self.disks = self.disk_template = None
6845 d1c2dd75 Iustin Pop
    self.os = self.tags = self.nics = self.vcpus = None
6846 a0add446 Iustin Pop
    self.hypervisor = None
6847 29859cb7 Iustin Pop
    self.relocate_from = None
6848 27579978 Iustin Pop
    # computed fields
6849 27579978 Iustin Pop
    self.required_nodes = None
6850 d1c2dd75 Iustin Pop
    # init result fields
6851 d1c2dd75 Iustin Pop
    self.success = self.info = self.nodes = None
6852 29859cb7 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6853 29859cb7 Iustin Pop
      keyset = self._ALLO_KEYS
6854 29859cb7 Iustin Pop
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6855 29859cb7 Iustin Pop
      keyset = self._RELO_KEYS
6856 29859cb7 Iustin Pop
    else:
6857 29859cb7 Iustin Pop
      raise errors.ProgrammerError("Unknown mode '%s' passed to the"
6858 29859cb7 Iustin Pop
                                   " IAllocator" % self.mode)
6859 d1c2dd75 Iustin Pop
    for key in kwargs:
6860 29859cb7 Iustin Pop
      if key not in keyset:
6861 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Invalid input parameter '%s' to"
6862 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6863 d1c2dd75 Iustin Pop
      setattr(self, key, kwargs[key])
6864 29859cb7 Iustin Pop
    for key in keyset:
6865 d1c2dd75 Iustin Pop
      if key not in kwargs:
6866 d1c2dd75 Iustin Pop
        raise errors.ProgrammerError("Missing input parameter '%s' to"
6867 d1c2dd75 Iustin Pop
                                     " IAllocator" % key)
6868 d1c2dd75 Iustin Pop
    self._BuildInputData()
6869 d1c2dd75 Iustin Pop
6870 d1c2dd75 Iustin Pop
  def _ComputeClusterData(self):
6871 d1c2dd75 Iustin Pop
    """Compute the generic allocator input data.
6872 d1c2dd75 Iustin Pop

6873 d1c2dd75 Iustin Pop
    This is the data that is independent of the actual operation.
6874 d1c2dd75 Iustin Pop

6875 d1c2dd75 Iustin Pop
    """
6876 72737a7f Iustin Pop
    cfg = self.lu.cfg
6877 e69d05fd Iustin Pop
    cluster_info = cfg.GetClusterInfo()
6878 d1c2dd75 Iustin Pop
    # cluster data
6879 d1c2dd75 Iustin Pop
    data = {
6880 77031881 Iustin Pop
      "version": constants.IALLOCATOR_VERSION,
6881 72737a7f Iustin Pop
      "cluster_name": cfg.GetClusterName(),
6882 e69d05fd Iustin Pop
      "cluster_tags": list(cluster_info.GetTags()),
6883 1325da74 Iustin Pop
      "enabled_hypervisors": list(cluster_info.enabled_hypervisors),
6884 d1c2dd75 Iustin Pop
      # we don't have job IDs
6885 d61df03e Iustin Pop
      }
6886 b57e9819 Guido Trotter
    iinfo = cfg.GetAllInstancesInfo().values()
6887 b57e9819 Guido Trotter
    i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
6888 6286519f Iustin Pop
6889 d1c2dd75 Iustin Pop
    # node data
6890 d1c2dd75 Iustin Pop
    node_results = {}
6891 d1c2dd75 Iustin Pop
    node_list = cfg.GetNodeList()
6892 8cc7e742 Guido Trotter
6893 8cc7e742 Guido Trotter
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6894 a0add446 Iustin Pop
      hypervisor_name = self.hypervisor
6895 8cc7e742 Guido Trotter
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6896 a0add446 Iustin Pop
      hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
6897 8cc7e742 Guido Trotter
6898 72737a7f Iustin Pop
    node_data = self.lu.rpc.call_node_info(node_list, cfg.GetVGName(),
6899 a0add446 Iustin Pop
                                           hypervisor_name)
6900 18640d69 Guido Trotter
    node_iinfo = self.lu.rpc.call_all_instances_info(node_list,
6901 18640d69 Guido Trotter
                       cluster_info.enabled_hypervisors)
6902 1325da74 Iustin Pop
    for nname, nresult in node_data.items():
6903 1325da74 Iustin Pop
      # first fill in static (config-based) values
6904 d1c2dd75 Iustin Pop
      ninfo = cfg.GetNodeInfo(nname)
6905 d1c2dd75 Iustin Pop
      pnr = {
6906 d1c2dd75 Iustin Pop
        "tags": list(ninfo.GetTags()),
6907 d1c2dd75 Iustin Pop
        "primary_ip": ninfo.primary_ip,
6908 d1c2dd75 Iustin Pop
        "secondary_ip": ninfo.secondary_ip,
6909 fc0fe88c Iustin Pop
        "offline": ninfo.offline,
6910 0b2454b9 Iustin Pop
        "drained": ninfo.drained,
6911 1325da74 Iustin Pop
        "master_candidate": ninfo.master_candidate,
6912 d1c2dd75 Iustin Pop
        }
6913 1325da74 Iustin Pop
6914 0d853843 Iustin Pop
      if not (ninfo.offline or ninfo.drained):
6915 1325da74 Iustin Pop
        nresult.Raise()
6916 1325da74 Iustin Pop
        if not isinstance(nresult.data, dict):
6917 1325da74 Iustin Pop
          raise errors.OpExecError("Can't get data for node %s" % nname)
6918 1325da74 Iustin Pop
        remote_info = nresult.data
6919 1325da74 Iustin Pop
        for attr in ['memory_total', 'memory_free', 'memory_dom0',
6920 1325da74 Iustin Pop
                     'vg_size', 'vg_free', 'cpu_total']:
6921 1325da74 Iustin Pop
          if attr not in remote_info:
6922 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' didn't return attribute"
6923 1325da74 Iustin Pop
                                     " '%s'" % (nname, attr))
6924 1325da74 Iustin Pop
          try:
6925 1325da74 Iustin Pop
            remote_info[attr] = int(remote_info[attr])
6926 1325da74 Iustin Pop
          except ValueError, err:
6927 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' returned invalid value"
6928 1325da74 Iustin Pop
                                     " for '%s': %s" % (nname, attr, err))
6929 1325da74 Iustin Pop
        # compute memory used by primary instances
6930 1325da74 Iustin Pop
        i_p_mem = i_p_up_mem = 0
6931 1325da74 Iustin Pop
        for iinfo, beinfo in i_list:
6932 1325da74 Iustin Pop
          if iinfo.primary_node == nname:
6933 1325da74 Iustin Pop
            i_p_mem += beinfo[constants.BE_MEMORY]
6934 1325da74 Iustin Pop
            if iinfo.name not in node_iinfo[nname].data:
6935 1325da74 Iustin Pop
              i_used_mem = 0
6936 1325da74 Iustin Pop
            else:
6937 1325da74 Iustin Pop
              i_used_mem = int(node_iinfo[nname].data[iinfo.name]['memory'])
6938 1325da74 Iustin Pop
            i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
6939 1325da74 Iustin Pop
            remote_info['memory_free'] -= max(0, i_mem_diff)
6940 1325da74 Iustin Pop
6941 1325da74 Iustin Pop
            if iinfo.admin_up:
6942 1325da74 Iustin Pop
              i_p_up_mem += beinfo[constants.BE_MEMORY]
6943 1325da74 Iustin Pop
6944 1325da74 Iustin Pop
        # compute memory used by instances
6945 1325da74 Iustin Pop
        pnr_dyn = {
6946 1325da74 Iustin Pop
          "total_memory": remote_info['memory_total'],
6947 1325da74 Iustin Pop
          "reserved_memory": remote_info['memory_dom0'],
6948 1325da74 Iustin Pop
          "free_memory": remote_info['memory_free'],
6949 1325da74 Iustin Pop
          "total_disk": remote_info['vg_size'],
6950 1325da74 Iustin Pop
          "free_disk": remote_info['vg_free'],
6951 1325da74 Iustin Pop
          "total_cpus": remote_info['cpu_total'],
6952 1325da74 Iustin Pop
          "i_pri_memory": i_p_mem,
6953 1325da74 Iustin Pop
          "i_pri_up_memory": i_p_up_mem,
6954 1325da74 Iustin Pop
          }
6955 1325da74 Iustin Pop
        pnr.update(pnr_dyn)
6956 1325da74 Iustin Pop
6957 d1c2dd75 Iustin Pop
      node_results[nname] = pnr
6958 d1c2dd75 Iustin Pop
    data["nodes"] = node_results
6959 d1c2dd75 Iustin Pop
6960 d1c2dd75 Iustin Pop
    # instance data
6961 d1c2dd75 Iustin Pop
    instance_data = {}
6962 338e51e8 Iustin Pop
    for iinfo, beinfo in i_list:
6963 d1c2dd75 Iustin Pop
      nic_data = [{"mac": n.mac, "ip": n.ip, "bridge": n.bridge}
6964 d1c2dd75 Iustin Pop
                  for n in iinfo.nics]
6965 d1c2dd75 Iustin Pop
      pir = {
6966 d1c2dd75 Iustin Pop
        "tags": list(iinfo.GetTags()),
6967 1325da74 Iustin Pop
        "admin_up": iinfo.admin_up,
6968 338e51e8 Iustin Pop
        "vcpus": beinfo[constants.BE_VCPUS],
6969 338e51e8 Iustin Pop
        "memory": beinfo[constants.BE_MEMORY],
6970 d1c2dd75 Iustin Pop
        "os": iinfo.os,
6971 1325da74 Iustin Pop
        "nodes": [iinfo.primary_node] + list(iinfo.secondary_nodes),
6972 d1c2dd75 Iustin Pop
        "nics": nic_data,
6973 1325da74 Iustin Pop
        "disks": [{"size": dsk.size, "mode": dsk.mode} for dsk in iinfo.disks],
6974 d1c2dd75 Iustin Pop
        "disk_template": iinfo.disk_template,
6975 e69d05fd Iustin Pop
        "hypervisor": iinfo.hypervisor,
6976 d1c2dd75 Iustin Pop
        }
6977 88ae4f85 Iustin Pop
      pir["disk_space_total"] = _ComputeDiskSize(iinfo.disk_template,
6978 88ae4f85 Iustin Pop
                                                 pir["disks"])
6979 768f0a80 Iustin Pop
      instance_data[iinfo.name] = pir
6980 d61df03e Iustin Pop
6981 d1c2dd75 Iustin Pop
    data["instances"] = instance_data
6982 d61df03e Iustin Pop
6983 d1c2dd75 Iustin Pop
    self.in_data = data
6984 d61df03e Iustin Pop
6985 d1c2dd75 Iustin Pop
  def _AddNewInstance(self):
6986 d1c2dd75 Iustin Pop
    """Add new instance data to allocator structure.
6987 d61df03e Iustin Pop

6988 d1c2dd75 Iustin Pop
    This in combination with _AllocatorGetClusterData will create the
6989 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
6990 d61df03e Iustin Pop

6991 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
6992 d1c2dd75 Iustin Pop
    done.
6993 d61df03e Iustin Pop

6994 d1c2dd75 Iustin Pop
    """
6995 d1c2dd75 Iustin Pop
    data = self.in_data
6996 d1c2dd75 Iustin Pop
6997 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(self.disk_template, self.disks)
6998 d1c2dd75 Iustin Pop
6999 27579978 Iustin Pop
    if self.disk_template in constants.DTS_NET_MIRROR:
7000 27579978 Iustin Pop
      self.required_nodes = 2
7001 27579978 Iustin Pop
    else:
7002 27579978 Iustin Pop
      self.required_nodes = 1
7003 d1c2dd75 Iustin Pop
    request = {
7004 d1c2dd75 Iustin Pop
      "type": "allocate",
7005 d1c2dd75 Iustin Pop
      "name": self.name,
7006 d1c2dd75 Iustin Pop
      "disk_template": self.disk_template,
7007 d1c2dd75 Iustin Pop
      "tags": self.tags,
7008 d1c2dd75 Iustin Pop
      "os": self.os,
7009 d1c2dd75 Iustin Pop
      "vcpus": self.vcpus,
7010 d1c2dd75 Iustin Pop
      "memory": self.mem_size,
7011 d1c2dd75 Iustin Pop
      "disks": self.disks,
7012 d1c2dd75 Iustin Pop
      "disk_space_total": disk_space,
7013 d1c2dd75 Iustin Pop
      "nics": self.nics,
7014 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
7015 d1c2dd75 Iustin Pop
      }
7016 d1c2dd75 Iustin Pop
    data["request"] = request
7017 298fe380 Iustin Pop
7018 d1c2dd75 Iustin Pop
  def _AddRelocateInstance(self):
7019 d1c2dd75 Iustin Pop
    """Add relocate instance data to allocator structure.
7020 298fe380 Iustin Pop

7021 d1c2dd75 Iustin Pop
    This in combination with _IAllocatorGetClusterData will create the
7022 d1c2dd75 Iustin Pop
    correct structure needed as input for the allocator.
7023 d61df03e Iustin Pop

7024 d1c2dd75 Iustin Pop
    The checks for the completeness of the opcode must have already been
7025 d1c2dd75 Iustin Pop
    done.
7026 d61df03e Iustin Pop

7027 d1c2dd75 Iustin Pop
    """
7028 72737a7f Iustin Pop
    instance = self.lu.cfg.GetInstanceInfo(self.name)
7029 27579978 Iustin Pop
    if instance is None:
7030 27579978 Iustin Pop
      raise errors.ProgrammerError("Unknown instance '%s' passed to"
7031 27579978 Iustin Pop
                                   " IAllocator" % self.name)
7032 27579978 Iustin Pop
7033 27579978 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
7034 27579978 Iustin Pop
      raise errors.OpPrereqError("Can't relocate non-mirrored instances")
7035 27579978 Iustin Pop
7036 2a139bb0 Iustin Pop
    if len(instance.secondary_nodes) != 1:
7037 2a139bb0 Iustin Pop
      raise errors.OpPrereqError("Instance has not exactly one secondary node")
7038 2a139bb0 Iustin Pop
7039 27579978 Iustin Pop
    self.required_nodes = 1
7040 dafc7302 Guido Trotter
    disk_sizes = [{'size': disk.size} for disk in instance.disks]
7041 dafc7302 Guido Trotter
    disk_space = _ComputeDiskSize(instance.disk_template, disk_sizes)
7042 27579978 Iustin Pop
7043 d1c2dd75 Iustin Pop
    request = {
7044 2a139bb0 Iustin Pop
      "type": "relocate",
7045 d1c2dd75 Iustin Pop
      "name": self.name,
7046 27579978 Iustin Pop
      "disk_space_total": disk_space,
7047 27579978 Iustin Pop
      "required_nodes": self.required_nodes,
7048 29859cb7 Iustin Pop
      "relocate_from": self.relocate_from,
7049 d1c2dd75 Iustin Pop
      }
7050 27579978 Iustin Pop
    self.in_data["request"] = request
7051 d61df03e Iustin Pop
7052 d1c2dd75 Iustin Pop
  def _BuildInputData(self):
7053 d1c2dd75 Iustin Pop
    """Build input data structures.
7054 d61df03e Iustin Pop

7055 d1c2dd75 Iustin Pop
    """
7056 d1c2dd75 Iustin Pop
    self._ComputeClusterData()
7057 d61df03e Iustin Pop
7058 d1c2dd75 Iustin Pop
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
7059 d1c2dd75 Iustin Pop
      self._AddNewInstance()
7060 d1c2dd75 Iustin Pop
    else:
7061 d1c2dd75 Iustin Pop
      self._AddRelocateInstance()
7062 d61df03e Iustin Pop
7063 d1c2dd75 Iustin Pop
    self.in_text = serializer.Dump(self.in_data)
7064 d61df03e Iustin Pop
7065 72737a7f Iustin Pop
  def Run(self, name, validate=True, call_fn=None):
7066 d1c2dd75 Iustin Pop
    """Run an instance allocator and return the results.
7067 298fe380 Iustin Pop

7068 d1c2dd75 Iustin Pop
    """
7069 72737a7f Iustin Pop
    if call_fn is None:
7070 72737a7f Iustin Pop
      call_fn = self.lu.rpc.call_iallocator_runner
7071 298fe380 Iustin Pop
7072 72737a7f Iustin Pop
    result = call_fn(self.lu.cfg.GetMasterNode(), name, self.in_text)
7073 781de953 Iustin Pop
    result.Raise()
7074 298fe380 Iustin Pop
7075 781de953 Iustin Pop
    if not isinstance(result.data, (list, tuple)) or len(result.data) != 4:
7076 8d528b7c Iustin Pop
      raise errors.OpExecError("Invalid result from master iallocator runner")
7077 8d528b7c Iustin Pop
7078 781de953 Iustin Pop
    rcode, stdout, stderr, fail = result.data
7079 8d528b7c Iustin Pop
7080 8d528b7c Iustin Pop
    if rcode == constants.IARUN_NOTFOUND:
7081 8d528b7c Iustin Pop
      raise errors.OpExecError("Can't find allocator '%s'" % name)
7082 8d528b7c Iustin Pop
    elif rcode == constants.IARUN_FAILURE:
7083 38206f3c Iustin Pop
      raise errors.OpExecError("Instance allocator call failed: %s,"
7084 38206f3c Iustin Pop
                               " output: %s" % (fail, stdout+stderr))
7085 8d528b7c Iustin Pop
    self.out_text = stdout
7086 d1c2dd75 Iustin Pop
    if validate:
7087 d1c2dd75 Iustin Pop
      self._ValidateResult()
7088 298fe380 Iustin Pop
7089 d1c2dd75 Iustin Pop
  def _ValidateResult(self):
7090 d1c2dd75 Iustin Pop
    """Process the allocator results.
7091 538475ca Iustin Pop

7092 d1c2dd75 Iustin Pop
    This will process and if successful save the result in
7093 d1c2dd75 Iustin Pop
    self.out_data and the other parameters.
7094 538475ca Iustin Pop

7095 d1c2dd75 Iustin Pop
    """
7096 d1c2dd75 Iustin Pop
    try:
7097 d1c2dd75 Iustin Pop
      rdict = serializer.Load(self.out_text)
7098 d1c2dd75 Iustin Pop
    except Exception, err:
7099 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: %s" % str(err))
7100 d1c2dd75 Iustin Pop
7101 d1c2dd75 Iustin Pop
    if not isinstance(rdict, dict):
7102 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: not a dict")
7103 538475ca Iustin Pop
7104 d1c2dd75 Iustin Pop
    for key in "success", "info", "nodes":
7105 d1c2dd75 Iustin Pop
      if key not in rdict:
7106 d1c2dd75 Iustin Pop
        raise errors.OpExecError("Can't parse iallocator results:"
7107 d1c2dd75 Iustin Pop
                                 " missing key '%s'" % key)
7108 d1c2dd75 Iustin Pop
      setattr(self, key, rdict[key])
7109 538475ca Iustin Pop
7110 d1c2dd75 Iustin Pop
    if not isinstance(rdict["nodes"], list):
7111 d1c2dd75 Iustin Pop
      raise errors.OpExecError("Can't parse iallocator results: 'nodes' key"
7112 d1c2dd75 Iustin Pop
                               " is not a list")
7113 d1c2dd75 Iustin Pop
    self.out_data = rdict
7114 538475ca Iustin Pop
7115 538475ca Iustin Pop
7116 d61df03e Iustin Pop
class LUTestAllocator(NoHooksLU):
7117 d61df03e Iustin Pop
  """Run allocator tests.
7118 d61df03e Iustin Pop

7119 d61df03e Iustin Pop
  This LU runs the allocator tests
7120 d61df03e Iustin Pop

7121 d61df03e Iustin Pop
  """
7122 d61df03e Iustin Pop
  _OP_REQP = ["direction", "mode", "name"]
7123 d61df03e Iustin Pop
7124 d61df03e Iustin Pop
  def CheckPrereq(self):
7125 d61df03e Iustin Pop
    """Check prerequisites.
7126 d61df03e Iustin Pop

7127 d61df03e Iustin Pop
    This checks the opcode parameters depending on the director and mode test.
7128 d61df03e Iustin Pop

7129 d61df03e Iustin Pop
    """
7130 298fe380 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
7131 d61df03e Iustin Pop
      for attr in ["name", "mem_size", "disks", "disk_template",
7132 d61df03e Iustin Pop
                   "os", "tags", "nics", "vcpus"]:
7133 d61df03e Iustin Pop
        if not hasattr(self.op, attr):
7134 d61df03e Iustin Pop
          raise errors.OpPrereqError("Missing attribute '%s' on opcode input" %
7135 d61df03e Iustin Pop
                                     attr)
7136 d61df03e Iustin Pop
      iname = self.cfg.ExpandInstanceName(self.op.name)
7137 d61df03e Iustin Pop
      if iname is not None:
7138 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' already in the cluster" %
7139 d61df03e Iustin Pop
                                   iname)
7140 d61df03e Iustin Pop
      if not isinstance(self.op.nics, list):
7141 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'nics'")
7142 d61df03e Iustin Pop
      for row in self.op.nics:
7143 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
7144 d61df03e Iustin Pop
            "mac" not in row or
7145 d61df03e Iustin Pop
            "ip" not in row or
7146 d61df03e Iustin Pop
            "bridge" not in row):
7147 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
7148 d61df03e Iustin Pop
                                     " 'nics' parameter")
7149 d61df03e Iustin Pop
      if not isinstance(self.op.disks, list):
7150 d61df03e Iustin Pop
        raise errors.OpPrereqError("Invalid parameter 'disks'")
7151 d61df03e Iustin Pop
      for row in self.op.disks:
7152 d61df03e Iustin Pop
        if (not isinstance(row, dict) or
7153 d61df03e Iustin Pop
            "size" not in row or
7154 d61df03e Iustin Pop
            not isinstance(row["size"], int) or
7155 d61df03e Iustin Pop
            "mode" not in row or
7156 d61df03e Iustin Pop
            row["mode"] not in ['r', 'w']):
7157 d61df03e Iustin Pop
          raise errors.OpPrereqError("Invalid contents of the"
7158 d61df03e Iustin Pop
                                     " 'disks' parameter")
7159 8901997e Iustin Pop
      if not hasattr(self.op, "hypervisor") or self.op.hypervisor is None:
7160 8cc7e742 Guido Trotter
        self.op.hypervisor = self.cfg.GetHypervisorType()
7161 298fe380 Iustin Pop
    elif self.op.mode == constants.IALLOCATOR_MODE_RELOC:
7162 d61df03e Iustin Pop
      if not hasattr(self.op, "name"):
7163 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing attribute 'name' on opcode input")
7164 d61df03e Iustin Pop
      fname = self.cfg.ExpandInstanceName(self.op.name)
7165 d61df03e Iustin Pop
      if fname is None:
7166 d61df03e Iustin Pop
        raise errors.OpPrereqError("Instance '%s' not found for relocation" %
7167 d61df03e Iustin Pop
                                   self.op.name)
7168 d61df03e Iustin Pop
      self.op.name = fname
7169 29859cb7 Iustin Pop
      self.relocate_from = self.cfg.GetInstanceInfo(fname).secondary_nodes
7170 d61df03e Iustin Pop
    else:
7171 d61df03e Iustin Pop
      raise errors.OpPrereqError("Invalid test allocator mode '%s'" %
7172 d61df03e Iustin Pop
                                 self.op.mode)
7173 d61df03e Iustin Pop
7174 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_OUT:
7175 298fe380 Iustin Pop
      if not hasattr(self.op, "allocator") or self.op.allocator is None:
7176 d61df03e Iustin Pop
        raise errors.OpPrereqError("Missing allocator name")
7177 298fe380 Iustin Pop
    elif self.op.direction != constants.IALLOCATOR_DIR_IN:
7178 d61df03e Iustin Pop
      raise errors.OpPrereqError("Wrong allocator test '%s'" %
7179 d61df03e Iustin Pop
                                 self.op.direction)
7180 d61df03e Iustin Pop
7181 d61df03e Iustin Pop
  def Exec(self, feedback_fn):
7182 d61df03e Iustin Pop
    """Run the allocator test.
7183 d61df03e Iustin Pop

7184 d61df03e Iustin Pop
    """
7185 29859cb7 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
7186 72737a7f Iustin Pop
      ial = IAllocator(self,
7187 29859cb7 Iustin Pop
                       mode=self.op.mode,
7188 29859cb7 Iustin Pop
                       name=self.op.name,
7189 29859cb7 Iustin Pop
                       mem_size=self.op.mem_size,
7190 29859cb7 Iustin Pop
                       disks=self.op.disks,
7191 29859cb7 Iustin Pop
                       disk_template=self.op.disk_template,
7192 29859cb7 Iustin Pop
                       os=self.op.os,
7193 29859cb7 Iustin Pop
                       tags=self.op.tags,
7194 29859cb7 Iustin Pop
                       nics=self.op.nics,
7195 29859cb7 Iustin Pop
                       vcpus=self.op.vcpus,
7196 8cc7e742 Guido Trotter
                       hypervisor=self.op.hypervisor,
7197 29859cb7 Iustin Pop
                       )
7198 29859cb7 Iustin Pop
    else:
7199 72737a7f Iustin Pop
      ial = IAllocator(self,
7200 29859cb7 Iustin Pop
                       mode=self.op.mode,
7201 29859cb7 Iustin Pop
                       name=self.op.name,
7202 29859cb7 Iustin Pop
                       relocate_from=list(self.relocate_from),
7203 29859cb7 Iustin Pop
                       )
7204 d61df03e Iustin Pop
7205 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_IN:
7206 d1c2dd75 Iustin Pop
      result = ial.in_text
7207 298fe380 Iustin Pop
    else:
7208 d1c2dd75 Iustin Pop
      ial.Run(self.op.allocator, validate=False)
7209 d1c2dd75 Iustin Pop
      result = ial.out_text
7210 298fe380 Iustin Pop
    return result