Statistics
| Branch: | Tag: | Revision:

root / lib / cmdlib.py @ 29921401

History | View | Annotate | Download (250.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 a8083063 Iustin Pop
    This needs to be overriden 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 4be4691d Iustin Pop
      - CheckPrereq is run after we have aquired 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 67fc3042 Iustin Pop
                          bep, hvp, hypervisor):
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 5e3d3eb3 Guido Trotter
  @param nics: list of tuples (ip, mac, mode, link) representing
475 5e3d3eb3 Guido Trotter
      the NICs the instance has
476 2c2690c9 Iustin Pop
  @type disk_template: string
477 2c2690c9 Iustin Pop
  @param disk_template: the distk 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 67fc3042 Iustin Pop
  @type hypervisor: string
485 67fc3042 Iustin Pop
  @param hypervisor: 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 67fc3042 Iustin Pop
    "INSTANCE_HYPERVISOR": hypervisor,
505 396e1b78 Michael Hanselmann
  }
506 396e1b78 Michael Hanselmann
507 396e1b78 Michael Hanselmann
  if nics:
508 396e1b78 Michael Hanselmann
    nic_count = len(nics)
509 62f0dd02 Guido Trotter
    for idx, (ip, mac, mode, link) 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 2c2690c9 Iustin Pop
      env["INSTANCE_NIC%d_MAC" % idx] = mac
514 62f0dd02 Guido Trotter
      env["INSTANCE_NIC%d_MODE" % idx] = mode
515 62f0dd02 Guido Trotter
      env["INSTANCE_NIC%d_LINK" % idx] = link
516 62f0dd02 Guido Trotter
      if mode == constants.NIC_MODE_BRIDGED:
517 62f0dd02 Guido Trotter
        env["INSTANCE_NIC%d_BRIDGE" % idx] = link
518 396e1b78 Michael Hanselmann
  else:
519 396e1b78 Michael Hanselmann
    nic_count = 0
520 396e1b78 Michael Hanselmann
521 396e1b78 Michael Hanselmann
  env["INSTANCE_NIC_COUNT"] = nic_count
522 396e1b78 Michael Hanselmann
523 2c2690c9 Iustin Pop
  if disks:
524 2c2690c9 Iustin Pop
    disk_count = len(disks)
525 2c2690c9 Iustin Pop
    for idx, (size, mode) in enumerate(disks):
526 2c2690c9 Iustin Pop
      env["INSTANCE_DISK%d_SIZE" % idx] = size
527 2c2690c9 Iustin Pop
      env["INSTANCE_DISK%d_MODE" % idx] = mode
528 2c2690c9 Iustin Pop
  else:
529 2c2690c9 Iustin Pop
    disk_count = 0
530 2c2690c9 Iustin Pop
531 2c2690c9 Iustin Pop
  env["INSTANCE_DISK_COUNT"] = disk_count
532 2c2690c9 Iustin Pop
533 67fc3042 Iustin Pop
  for source, kind in [(bep, "BE"), (hvp, "HV")]:
534 67fc3042 Iustin Pop
    for key, value in source.items():
535 67fc3042 Iustin Pop
      env["INSTANCE_%s_%s" % (kind, key)] = value
536 67fc3042 Iustin Pop
537 396e1b78 Michael Hanselmann
  return env
538 396e1b78 Michael Hanselmann
539 f9b10246 Guido Trotter
def _NICListToTuple(lu, nics):
540 62f0dd02 Guido Trotter
  """Build a list of nic information tuples.
541 62f0dd02 Guido Trotter

542 f9b10246 Guido Trotter
  This list is suitable to be passed to _BuildInstanceHookEnv or as a return
543 f9b10246 Guido Trotter
  value in LUQueryInstanceData.
544 62f0dd02 Guido Trotter

545 62f0dd02 Guido Trotter
  @type lu:  L{LogicalUnit}
546 62f0dd02 Guido Trotter
  @param lu: the logical unit on whose behalf we execute
547 62f0dd02 Guido Trotter
  @type nics: list of L{objects.NIC}
548 62f0dd02 Guido Trotter
  @param nics: list of nics to convert to hooks tuples
549 62f0dd02 Guido Trotter

550 62f0dd02 Guido Trotter
  """
551 62f0dd02 Guido Trotter
  hooks_nics = []
552 62f0dd02 Guido Trotter
  c_nicparams = lu.cfg.GetClusterInfo().nicparams[constants.PP_DEFAULT]
553 62f0dd02 Guido Trotter
  for nic in nics:
554 62f0dd02 Guido Trotter
    ip = nic.ip
555 62f0dd02 Guido Trotter
    mac = nic.mac
556 62f0dd02 Guido Trotter
    filled_params = objects.FillDict(c_nicparams, nic.nicparams)
557 62f0dd02 Guido Trotter
    mode = filled_params[constants.NIC_MODE]
558 62f0dd02 Guido Trotter
    link = filled_params[constants.NIC_LINK]
559 62f0dd02 Guido Trotter
    hooks_nics.append((ip, mac, mode, link))
560 62f0dd02 Guido Trotter
  return hooks_nics
561 396e1b78 Michael Hanselmann
562 338e51e8 Iustin Pop
def _BuildInstanceHookEnvByObject(lu, instance, override=None):
563 ecb215b5 Michael Hanselmann
  """Builds instance related env variables for hooks from an object.
564 ecb215b5 Michael Hanselmann

565 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
566 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
567 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
568 e4376078 Iustin Pop
  @param instance: the instance for which we should build the
569 e4376078 Iustin Pop
      environment
570 e4376078 Iustin Pop
  @type override: dict
571 e4376078 Iustin Pop
  @param override: dictionary with key/values that will override
572 e4376078 Iustin Pop
      our values
573 e4376078 Iustin Pop
  @rtype: dict
574 e4376078 Iustin Pop
  @return: the hook environment dictionary
575 e4376078 Iustin Pop

576 ecb215b5 Michael Hanselmann
  """
577 67fc3042 Iustin Pop
  cluster = lu.cfg.GetClusterInfo()
578 67fc3042 Iustin Pop
  bep = cluster.FillBE(instance)
579 67fc3042 Iustin Pop
  hvp = cluster.FillHV(instance)
580 396e1b78 Michael Hanselmann
  args = {
581 396e1b78 Michael Hanselmann
    'name': instance.name,
582 396e1b78 Michael Hanselmann
    'primary_node': instance.primary_node,
583 396e1b78 Michael Hanselmann
    'secondary_nodes': instance.secondary_nodes,
584 ecb215b5 Michael Hanselmann
    'os_type': instance.os,
585 0d68c45d Iustin Pop
    'status': instance.admin_up,
586 338e51e8 Iustin Pop
    'memory': bep[constants.BE_MEMORY],
587 338e51e8 Iustin Pop
    'vcpus': bep[constants.BE_VCPUS],
588 f9b10246 Guido Trotter
    'nics': _NICListToTuple(lu, instance.nics),
589 2c2690c9 Iustin Pop
    'disk_template': instance.disk_template,
590 2c2690c9 Iustin Pop
    'disks': [(disk.size, disk.mode) for disk in instance.disks],
591 67fc3042 Iustin Pop
    'bep': bep,
592 67fc3042 Iustin Pop
    'hvp': hvp,
593 67fc3042 Iustin Pop
    'hypervisor': instance.hypervisor,
594 396e1b78 Michael Hanselmann
  }
595 396e1b78 Michael Hanselmann
  if override:
596 396e1b78 Michael Hanselmann
    args.update(override)
597 396e1b78 Michael Hanselmann
  return _BuildInstanceHookEnv(**args)
598 396e1b78 Michael Hanselmann
599 396e1b78 Michael Hanselmann
600 ec0292f1 Iustin Pop
def _AdjustCandidatePool(lu):
601 ec0292f1 Iustin Pop
  """Adjust the candidate pool after node operations.
602 ec0292f1 Iustin Pop

603 ec0292f1 Iustin Pop
  """
604 ec0292f1 Iustin Pop
  mod_list = lu.cfg.MaintainCandidatePool()
605 ec0292f1 Iustin Pop
  if mod_list:
606 ec0292f1 Iustin Pop
    lu.LogInfo("Promoted nodes to master candidate role: %s",
607 ee513a66 Iustin Pop
               ", ".join(node.name for node in mod_list))
608 ec0292f1 Iustin Pop
    for name in mod_list:
609 ec0292f1 Iustin Pop
      lu.context.ReaddNode(name)
610 ec0292f1 Iustin Pop
  mc_now, mc_max = lu.cfg.GetMasterCandidateStats()
611 ec0292f1 Iustin Pop
  if mc_now > mc_max:
612 ec0292f1 Iustin Pop
    lu.LogInfo("Note: more nodes are candidates (%d) than desired (%d)" %
613 ec0292f1 Iustin Pop
               (mc_now, mc_max))
614 ec0292f1 Iustin Pop
615 ec0292f1 Iustin Pop
616 b165e77e Guido Trotter
def _CheckNicsBridgesExist(lu, target_nics, target_node,
617 b165e77e Guido Trotter
                               profile=constants.PP_DEFAULT):
618 b165e77e Guido Trotter
  """Check that the brigdes needed by a list of nics exist.
619 b165e77e Guido Trotter

620 b165e77e Guido Trotter
  """
621 b165e77e Guido Trotter
  c_nicparams = lu.cfg.GetClusterInfo().nicparams[profile]
622 b165e77e Guido Trotter
  paramslist = [objects.FillDict(c_nicparams, nic.nicparams)
623 b165e77e Guido Trotter
                for nic in target_nics]
624 b165e77e Guido Trotter
  brlist = [params[constants.NIC_LINK] for params in paramslist
625 b165e77e Guido Trotter
            if params[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED]
626 b165e77e Guido Trotter
  if brlist:
627 b165e77e Guido Trotter
    result = lu.rpc.call_bridges_exist(target_node, brlist)
628 4c4e4e1e Iustin Pop
    result.Raise("Error checking bridges on destination node '%s'" %
629 4c4e4e1e Iustin Pop
                 target_node, prereq=True)
630 b165e77e Guido Trotter
631 b165e77e Guido Trotter
632 b165e77e Guido Trotter
def _CheckInstanceBridgesExist(lu, instance, node=None):
633 bf6929a2 Alexander Schreiber
  """Check that the brigdes needed by an instance exist.
634 bf6929a2 Alexander Schreiber

635 bf6929a2 Alexander Schreiber
  """
636 b165e77e Guido Trotter
  if node is None:
637 29921401 Iustin Pop
    node = instance.primary_node
638 b165e77e Guido Trotter
  _CheckNicsBridgesExist(lu, instance.nics, node)
639 bf6929a2 Alexander Schreiber
640 bf6929a2 Alexander Schreiber
641 a8083063 Iustin Pop
class LUDestroyCluster(NoHooksLU):
642 a8083063 Iustin Pop
  """Logical unit for destroying the cluster.
643 a8083063 Iustin Pop

644 a8083063 Iustin Pop
  """
645 a8083063 Iustin Pop
  _OP_REQP = []
646 a8083063 Iustin Pop
647 a8083063 Iustin Pop
  def CheckPrereq(self):
648 a8083063 Iustin Pop
    """Check prerequisites.
649 a8083063 Iustin Pop

650 a8083063 Iustin Pop
    This checks whether the cluster is empty.
651 a8083063 Iustin Pop

652 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
653 a8083063 Iustin Pop

654 a8083063 Iustin Pop
    """
655 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
656 a8083063 Iustin Pop
657 a8083063 Iustin Pop
    nodelist = self.cfg.GetNodeList()
658 db915bd1 Michael Hanselmann
    if len(nodelist) != 1 or nodelist[0] != master:
659 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d node(s) in"
660 3ecf6786 Iustin Pop
                                 " this cluster." % (len(nodelist) - 1))
661 db915bd1 Michael Hanselmann
    instancelist = self.cfg.GetInstanceList()
662 db915bd1 Michael Hanselmann
    if instancelist:
663 3ecf6786 Iustin Pop
      raise errors.OpPrereqError("There are still %d instance(s) in"
664 3ecf6786 Iustin Pop
                                 " this cluster." % len(instancelist))
665 a8083063 Iustin Pop
666 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
667 a8083063 Iustin Pop
    """Destroys the cluster.
668 a8083063 Iustin Pop

669 a8083063 Iustin Pop
    """
670 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
671 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
672 4c4e4e1e Iustin Pop
    result.Raise("Could not disable the master role")
673 70d9e3d8 Iustin Pop
    priv_key, pub_key, _ = ssh.GetUserFiles(constants.GANETI_RUNAS)
674 70d9e3d8 Iustin Pop
    utils.CreateBackup(priv_key)
675 70d9e3d8 Iustin Pop
    utils.CreateBackup(pub_key)
676 140aa4a8 Iustin Pop
    return master
677 a8083063 Iustin Pop
678 a8083063 Iustin Pop
679 d8fff41c Guido Trotter
class LUVerifyCluster(LogicalUnit):
680 a8083063 Iustin Pop
  """Verifies the cluster status.
681 a8083063 Iustin Pop

682 a8083063 Iustin Pop
  """
683 d8fff41c Guido Trotter
  HPATH = "cluster-verify"
684 d8fff41c Guido Trotter
  HTYPE = constants.HTYPE_CLUSTER
685 e54c4c5e Guido Trotter
  _OP_REQP = ["skip_checks"]
686 d4b9d97f Guido Trotter
  REQ_BGL = False
687 d4b9d97f Guido Trotter
688 d4b9d97f Guido Trotter
  def ExpandNames(self):
689 d4b9d97f Guido Trotter
    self.needed_locks = {
690 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
691 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
692 d4b9d97f Guido Trotter
    }
693 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
694 a8083063 Iustin Pop
695 25361b9a Iustin Pop
  def _VerifyNode(self, nodeinfo, file_list, local_cksum,
696 6d2e83d5 Iustin Pop
                  node_result, feedback_fn, master_files,
697 cc9e1230 Guido Trotter
                  drbd_map, vg_name):
698 a8083063 Iustin Pop
    """Run multiple tests against a node.
699 a8083063 Iustin Pop

700 112f18a5 Iustin Pop
    Test list:
701 e4376078 Iustin Pop

702 a8083063 Iustin Pop
      - compares ganeti version
703 a8083063 Iustin Pop
      - checks vg existance and size > 20G
704 a8083063 Iustin Pop
      - checks config file checksum
705 a8083063 Iustin Pop
      - checks ssh to other nodes
706 a8083063 Iustin Pop

707 112f18a5 Iustin Pop
    @type nodeinfo: L{objects.Node}
708 112f18a5 Iustin Pop
    @param nodeinfo: the node to check
709 e4376078 Iustin Pop
    @param file_list: required list of files
710 e4376078 Iustin Pop
    @param local_cksum: dictionary of local files and their checksums
711 e4376078 Iustin Pop
    @param node_result: the results from the node
712 e4376078 Iustin Pop
    @param feedback_fn: function used to accumulate results
713 112f18a5 Iustin Pop
    @param master_files: list of files that only masters should have
714 6d2e83d5 Iustin Pop
    @param drbd_map: the useddrbd minors for this node, in
715 6d2e83d5 Iustin Pop
        form of minor: (instance, must_exist) which correspond to instances
716 6d2e83d5 Iustin Pop
        and their running status
717 cc9e1230 Guido Trotter
    @param vg_name: Ganeti Volume Group (result of self.cfg.GetVGName())
718 098c0958 Michael Hanselmann

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

847 a8083063 Iustin Pop
    This function checks to see if the required block devices are
848 a8083063 Iustin Pop
    available on the instance's node.
849 a8083063 Iustin Pop

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

888 a8083063 Iustin Pop
    The .os, .swap and backup volumes are ignored. All other volumes are
889 a8083063 Iustin Pop
    reported as unknown.
890 a8083063 Iustin Pop

891 a8083063 Iustin Pop
    """
892 a8083063 Iustin Pop
    bad = False
893 a8083063 Iustin Pop
894 a8083063 Iustin Pop
    for node in node_vol_is:
895 a8083063 Iustin Pop
      for volume in node_vol_is[node]:
896 a8083063 Iustin Pop
        if node not in node_vol_should or volume not in node_vol_should[node]:
897 a8083063 Iustin Pop
          feedback_fn("  - ERROR: volume %s on node %s should not exist" %
898 a8083063 Iustin Pop
                      (volume, node))
899 a8083063 Iustin Pop
          bad = True
900 a8083063 Iustin Pop
    return bad
901 a8083063 Iustin Pop
902 a8083063 Iustin Pop
  def _VerifyOrphanInstances(self, instancelist, node_instance, feedback_fn):
903 a8083063 Iustin Pop
    """Verify the list of running instances.
904 a8083063 Iustin Pop

905 a8083063 Iustin Pop
    This checks what instances are running but unknown to the cluster.
906 a8083063 Iustin Pop

907 a8083063 Iustin Pop
    """
908 a8083063 Iustin Pop
    bad = False
909 a8083063 Iustin Pop
    for node in node_instance:
910 a8083063 Iustin Pop
      for runninginstance in node_instance[node]:
911 a8083063 Iustin Pop
        if runninginstance not in instancelist:
912 a8083063 Iustin Pop
          feedback_fn("  - ERROR: instance %s on node %s should not exist" %
913 a8083063 Iustin Pop
                          (runninginstance, node))
914 a8083063 Iustin Pop
          bad = True
915 a8083063 Iustin Pop
    return bad
916 a8083063 Iustin Pop
917 2b3b6ddd Guido Trotter
  def _VerifyNPlusOneMemory(self, node_info, instance_cfg, feedback_fn):
918 2b3b6ddd Guido Trotter
    """Verify N+1 Memory Resilience.
919 2b3b6ddd Guido Trotter

920 2b3b6ddd Guido Trotter
    Check that if one single node dies we can still start all the instances it
921 2b3b6ddd Guido Trotter
    was primary for.
922 2b3b6ddd Guido Trotter

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

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

953 a8083063 Iustin Pop
    """
954 e54c4c5e Guido Trotter
    self.skip_set = frozenset(self.op.skip_checks)
955 e54c4c5e Guido Trotter
    if not constants.VERIFY_OPTIONAL_CHECKS.issuperset(self.skip_set):
956 e54c4c5e Guido Trotter
      raise errors.OpPrereqError("Invalid checks to be skipped specified")
957 a8083063 Iustin Pop
958 d8fff41c Guido Trotter
  def BuildHooksEnv(self):
959 d8fff41c Guido Trotter
    """Build hooks env.
960 d8fff41c Guido Trotter

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

964 d8fff41c Guido Trotter
    """
965 d8fff41c Guido Trotter
    all_nodes = self.cfg.GetNodeList()
966 35e994e9 Iustin Pop
    env = {
967 35e994e9 Iustin Pop
      "CLUSTER_TAGS": " ".join(self.cfg.GetClusterInfo().GetTags())
968 35e994e9 Iustin Pop
      }
969 35e994e9 Iustin Pop
    for node in self.cfg.GetAllNodesInfo().values():
970 35e994e9 Iustin Pop
      env["NODE_TAGS_%s" % node.name] = " ".join(node.GetTags())
971 35e994e9 Iustin Pop
972 d8fff41c Guido Trotter
    return env, [], all_nodes
973 d8fff41c Guido Trotter
974 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
975 a8083063 Iustin Pop
    """Verify integrity of cluster, performing various test on nodes.
976 a8083063 Iustin Pop

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

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

1234 e4376078 Iustin Pop
    @param phase: one of L{constants.HOOKS_PHASE_POST} or
1235 e4376078 Iustin Pop
        L{constants.HOOKS_PHASE_PRE}; it denotes the hooks phase
1236 e4376078 Iustin Pop
    @param hooks_results: the results of the multi-node hooks rpc call
1237 e4376078 Iustin Pop
    @param feedback_fn: function used send feedback back to the caller
1238 e4376078 Iustin Pop
    @param lu_result: previous Exec result
1239 e4376078 Iustin Pop
    @return: the new Exec result, based on the previous result
1240 e4376078 Iustin Pop
        and hook results
1241 d8fff41c Guido Trotter

1242 d8fff41c Guido Trotter
    """
1243 38206f3c Iustin Pop
    # We only really run POST phase hooks, and are only interested in
1244 38206f3c Iustin Pop
    # their results
1245 d8fff41c Guido Trotter
    if phase == constants.HOOKS_PHASE_POST:
1246 d8fff41c Guido Trotter
      # Used to change hooks' output to proper indentation
1247 d8fff41c Guido Trotter
      indent_re = re.compile('^', re.M)
1248 d8fff41c Guido Trotter
      feedback_fn("* Hooks Results")
1249 d8fff41c Guido Trotter
      if not hooks_results:
1250 d8fff41c Guido Trotter
        feedback_fn("  - ERROR: general communication failure")
1251 d8fff41c Guido Trotter
        lu_result = 1
1252 d8fff41c Guido Trotter
      else:
1253 d8fff41c Guido Trotter
        for node_name in hooks_results:
1254 d8fff41c Guido Trotter
          show_node_header = True
1255 d8fff41c Guido Trotter
          res = hooks_results[node_name]
1256 4c4e4e1e Iustin Pop
          msg = res.fail_msg
1257 3fb4f740 Iustin Pop
          if msg:
1258 0a66c968 Iustin Pop
            if res.offline:
1259 0a66c968 Iustin Pop
              # no need to warn or set fail return value
1260 0a66c968 Iustin Pop
              continue
1261 3fb4f740 Iustin Pop
            feedback_fn("    Communication failure in hooks execution: %s" %
1262 3fb4f740 Iustin Pop
                        msg)
1263 d8fff41c Guido Trotter
            lu_result = 1
1264 d8fff41c Guido Trotter
            continue
1265 3fb4f740 Iustin Pop
          for script, hkr, output in res.payload:
1266 d8fff41c Guido Trotter
            if hkr == constants.HKR_FAIL:
1267 d8fff41c Guido Trotter
              # The node header is only shown once, if there are
1268 d8fff41c Guido Trotter
              # failing hooks on that node
1269 d8fff41c Guido Trotter
              if show_node_header:
1270 d8fff41c Guido Trotter
                feedback_fn("  Node %s:" % node_name)
1271 d8fff41c Guido Trotter
                show_node_header = False
1272 d8fff41c Guido Trotter
              feedback_fn("    ERROR: Script %s failed, output:" % script)
1273 d8fff41c Guido Trotter
              output = indent_re.sub('      ', output)
1274 d8fff41c Guido Trotter
              feedback_fn("%s" % output)
1275 d8fff41c Guido Trotter
              lu_result = 1
1276 d8fff41c Guido Trotter
1277 d8fff41c Guido Trotter
      return lu_result
1278 d8fff41c Guido Trotter
1279 a8083063 Iustin Pop
1280 2c95a8d4 Iustin Pop
class LUVerifyDisks(NoHooksLU):
1281 2c95a8d4 Iustin Pop
  """Verifies the cluster disks status.
1282 2c95a8d4 Iustin Pop

1283 2c95a8d4 Iustin Pop
  """
1284 2c95a8d4 Iustin Pop
  _OP_REQP = []
1285 d4b9d97f Guido Trotter
  REQ_BGL = False
1286 d4b9d97f Guido Trotter
1287 d4b9d97f Guido Trotter
  def ExpandNames(self):
1288 d4b9d97f Guido Trotter
    self.needed_locks = {
1289 d4b9d97f Guido Trotter
      locking.LEVEL_NODE: locking.ALL_SET,
1290 d4b9d97f Guido Trotter
      locking.LEVEL_INSTANCE: locking.ALL_SET,
1291 d4b9d97f Guido Trotter
    }
1292 d4b9d97f Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
1293 2c95a8d4 Iustin Pop
1294 2c95a8d4 Iustin Pop
  def CheckPrereq(self):
1295 2c95a8d4 Iustin Pop
    """Check prerequisites.
1296 2c95a8d4 Iustin Pop

1297 2c95a8d4 Iustin Pop
    This has no prerequisites.
1298 2c95a8d4 Iustin Pop

1299 2c95a8d4 Iustin Pop
    """
1300 2c95a8d4 Iustin Pop
    pass
1301 2c95a8d4 Iustin Pop
1302 2c95a8d4 Iustin Pop
  def Exec(self, feedback_fn):
1303 2c95a8d4 Iustin Pop
    """Verify integrity of cluster disks.
1304 2c95a8d4 Iustin Pop

1305 29d376ec Iustin Pop
    @rtype: tuple of three items
1306 29d376ec Iustin Pop
    @return: a tuple of (dict of node-to-node_error, list of instances
1307 29d376ec Iustin Pop
        which need activate-disks, dict of instance: (node, volume) for
1308 29d376ec Iustin Pop
        missing volumes
1309 29d376ec Iustin Pop

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

1367 07bd8a51 Iustin Pop
  """
1368 07bd8a51 Iustin Pop
  HPATH = "cluster-rename"
1369 07bd8a51 Iustin Pop
  HTYPE = constants.HTYPE_CLUSTER
1370 07bd8a51 Iustin Pop
  _OP_REQP = ["name"]
1371 07bd8a51 Iustin Pop
1372 07bd8a51 Iustin Pop
  def BuildHooksEnv(self):
1373 07bd8a51 Iustin Pop
    """Build hooks env.
1374 07bd8a51 Iustin Pop

1375 07bd8a51 Iustin Pop
    """
1376 07bd8a51 Iustin Pop
    env = {
1377 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1378 07bd8a51 Iustin Pop
      "NEW_NAME": self.op.name,
1379 07bd8a51 Iustin Pop
      }
1380 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1381 07bd8a51 Iustin Pop
    return env, [mn], [mn]
1382 07bd8a51 Iustin Pop
1383 07bd8a51 Iustin Pop
  def CheckPrereq(self):
1384 07bd8a51 Iustin Pop
    """Verify that the passed name is a valid one.
1385 07bd8a51 Iustin Pop

1386 07bd8a51 Iustin Pop
    """
1387 89e1fc26 Iustin Pop
    hostname = utils.HostInfo(self.op.name)
1388 07bd8a51 Iustin Pop
1389 bcf043c9 Iustin Pop
    new_name = hostname.name
1390 bcf043c9 Iustin Pop
    self.ip = new_ip = hostname.ip
1391 d6a02168 Michael Hanselmann
    old_name = self.cfg.GetClusterName()
1392 d6a02168 Michael Hanselmann
    old_ip = self.cfg.GetMasterIP()
1393 07bd8a51 Iustin Pop
    if new_name == old_name and new_ip == old_ip:
1394 07bd8a51 Iustin Pop
      raise errors.OpPrereqError("Neither the name nor the IP address of the"
1395 07bd8a51 Iustin Pop
                                 " cluster has changed")
1396 07bd8a51 Iustin Pop
    if new_ip != old_ip:
1397 937f983d Guido Trotter
      if utils.TcpPing(new_ip, constants.DEFAULT_NODED_PORT):
1398 07bd8a51 Iustin Pop
        raise errors.OpPrereqError("The given cluster IP address (%s) is"
1399 07bd8a51 Iustin Pop
                                   " reachable on the network. Aborting." %
1400 07bd8a51 Iustin Pop
                                   new_ip)
1401 07bd8a51 Iustin Pop
1402 07bd8a51 Iustin Pop
    self.op.name = new_name
1403 07bd8a51 Iustin Pop
1404 07bd8a51 Iustin Pop
  def Exec(self, feedback_fn):
1405 07bd8a51 Iustin Pop
    """Rename the cluster.
1406 07bd8a51 Iustin Pop

1407 07bd8a51 Iustin Pop
    """
1408 07bd8a51 Iustin Pop
    clustername = self.op.name
1409 07bd8a51 Iustin Pop
    ip = self.ip
1410 07bd8a51 Iustin Pop
1411 07bd8a51 Iustin Pop
    # shutdown the master IP
1412 d6a02168 Michael Hanselmann
    master = self.cfg.GetMasterNode()
1413 781de953 Iustin Pop
    result = self.rpc.call_node_stop_master(master, False)
1414 4c4e4e1e Iustin Pop
    result.Raise("Could not disable the master role")
1415 07bd8a51 Iustin Pop
1416 07bd8a51 Iustin Pop
    try:
1417 55cf7d83 Iustin Pop
      cluster = self.cfg.GetClusterInfo()
1418 55cf7d83 Iustin Pop
      cluster.cluster_name = clustername
1419 55cf7d83 Iustin Pop
      cluster.master_ip = ip
1420 55cf7d83 Iustin Pop
      self.cfg.Update(cluster)
1421 ec85e3d5 Iustin Pop
1422 ec85e3d5 Iustin Pop
      # update the known hosts file
1423 ec85e3d5 Iustin Pop
      ssh.WriteKnownHostsFile(self.cfg, constants.SSH_KNOWN_HOSTS_FILE)
1424 ec85e3d5 Iustin Pop
      node_list = self.cfg.GetNodeList()
1425 ec85e3d5 Iustin Pop
      try:
1426 ec85e3d5 Iustin Pop
        node_list.remove(master)
1427 ec85e3d5 Iustin Pop
      except ValueError:
1428 ec85e3d5 Iustin Pop
        pass
1429 ec85e3d5 Iustin Pop
      result = self.rpc.call_upload_file(node_list,
1430 ec85e3d5 Iustin Pop
                                         constants.SSH_KNOWN_HOSTS_FILE)
1431 ec85e3d5 Iustin Pop
      for to_node, to_result in result.iteritems():
1432 6f7d4e75 Iustin Pop
        msg = to_result.fail_msg
1433 6f7d4e75 Iustin Pop
        if msg:
1434 6f7d4e75 Iustin Pop
          msg = ("Copy of file %s to node %s failed: %s" %
1435 6f7d4e75 Iustin Pop
                 (constants.SSH_KNOWN_HOSTS_FILE, to_node, msg))
1436 6f7d4e75 Iustin Pop
          self.proc.LogWarning(msg)
1437 ec85e3d5 Iustin Pop
1438 07bd8a51 Iustin Pop
    finally:
1439 781de953 Iustin Pop
      result = self.rpc.call_node_start_master(master, False)
1440 4c4e4e1e Iustin Pop
      msg = result.fail_msg
1441 b726aff0 Iustin Pop
      if msg:
1442 86d9d3bb Iustin Pop
        self.LogWarning("Could not re-enable the master role on"
1443 b726aff0 Iustin Pop
                        " the master, please restart manually: %s", msg)
1444 07bd8a51 Iustin Pop
1445 07bd8a51 Iustin Pop
1446 8084f9f6 Manuel Franceschini
def _RecursiveCheckIfLVMBased(disk):
1447 8084f9f6 Manuel Franceschini
  """Check if the given disk or its children are lvm-based.
1448 8084f9f6 Manuel Franceschini

1449 e4376078 Iustin Pop
  @type disk: L{objects.Disk}
1450 e4376078 Iustin Pop
  @param disk: the disk to check
1451 e4376078 Iustin Pop
  @rtype: booleean
1452 e4376078 Iustin Pop
  @return: boolean indicating whether a LD_LV dev_type was found or not
1453 8084f9f6 Manuel Franceschini

1454 8084f9f6 Manuel Franceschini
  """
1455 8084f9f6 Manuel Franceschini
  if disk.children:
1456 8084f9f6 Manuel Franceschini
    for chdisk in disk.children:
1457 8084f9f6 Manuel Franceschini
      if _RecursiveCheckIfLVMBased(chdisk):
1458 8084f9f6 Manuel Franceschini
        return True
1459 8084f9f6 Manuel Franceschini
  return disk.dev_type == constants.LD_LV
1460 8084f9f6 Manuel Franceschini
1461 8084f9f6 Manuel Franceschini
1462 8084f9f6 Manuel Franceschini
class LUSetClusterParams(LogicalUnit):
1463 8084f9f6 Manuel Franceschini
  """Change the parameters of the cluster.
1464 8084f9f6 Manuel Franceschini

1465 8084f9f6 Manuel Franceschini
  """
1466 8084f9f6 Manuel Franceschini
  HPATH = "cluster-modify"
1467 8084f9f6 Manuel Franceschini
  HTYPE = constants.HTYPE_CLUSTER
1468 8084f9f6 Manuel Franceschini
  _OP_REQP = []
1469 c53279cf Guido Trotter
  REQ_BGL = False
1470 c53279cf Guido Trotter
1471 3994f455 Iustin Pop
  def CheckArguments(self):
1472 4b7735f9 Iustin Pop
    """Check parameters
1473 4b7735f9 Iustin Pop

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

1497 8084f9f6 Manuel Franceschini
    """
1498 8084f9f6 Manuel Franceschini
    env = {
1499 d6a02168 Michael Hanselmann
      "OP_TARGET": self.cfg.GetClusterName(),
1500 8084f9f6 Manuel Franceschini
      "NEW_VG_NAME": self.op.vg_name,
1501 8084f9f6 Manuel Franceschini
      }
1502 d6a02168 Michael Hanselmann
    mn = self.cfg.GetMasterNode()
1503 8084f9f6 Manuel Franceschini
    return env, [mn], [mn]
1504 8084f9f6 Manuel Franceschini
1505 8084f9f6 Manuel Franceschini
  def CheckPrereq(self):
1506 8084f9f6 Manuel Franceschini
    """Check prerequisites.
1507 8084f9f6 Manuel Franceschini

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

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

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

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

1620 28eddce5 Guido Trotter
  @param lu: calling logical unit
1621 28eddce5 Guido Trotter
  @param additional_nodes: list of nodes not in the config to distribute to
1622 28eddce5 Guido Trotter

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

1658 afee0879 Iustin Pop
  This is a very simple LU.
1659 afee0879 Iustin Pop

1660 afee0879 Iustin Pop
  """
1661 afee0879 Iustin Pop
  _OP_REQP = []
1662 afee0879 Iustin Pop
  REQ_BGL = False
1663 afee0879 Iustin Pop
1664 afee0879 Iustin Pop
  def ExpandNames(self):
1665 afee0879 Iustin Pop
    self.needed_locks = {
1666 afee0879 Iustin Pop
      locking.LEVEL_NODE: locking.ALL_SET,
1667 afee0879 Iustin Pop
    }
1668 afee0879 Iustin Pop
    self.share_locks[locking.LEVEL_NODE] = 1
1669 afee0879 Iustin Pop
1670 afee0879 Iustin Pop
  def CheckPrereq(self):
1671 afee0879 Iustin Pop
    """Check prerequisites.
1672 afee0879 Iustin Pop

1673 afee0879 Iustin Pop
    """
1674 afee0879 Iustin Pop
1675 afee0879 Iustin Pop
  def Exec(self, feedback_fn):
1676 afee0879 Iustin Pop
    """Redistribute the configuration.
1677 afee0879 Iustin Pop

1678 afee0879 Iustin Pop
    """
1679 afee0879 Iustin Pop
    self.cfg.Update(self.cfg.GetClusterInfo())
1680 28eddce5 Guido Trotter
    _RedistributeAncillaryFiles(self)
1681 afee0879 Iustin Pop
1682 afee0879 Iustin Pop
1683 b9bddb6b Iustin Pop
def _WaitForSync(lu, instance, oneshot=False, unlock=False):
1684 a8083063 Iustin Pop
  """Sleep and poll for an instance's disk to sync.
1685 a8083063 Iustin Pop

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

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

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

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

1813 6bf01bbb Guido Trotter
    """
1814 6bf01bbb Guido Trotter
1815 1f9430d6 Iustin Pop
  @staticmethod
1816 1f9430d6 Iustin Pop
  def _DiagnoseByOS(node_list, rlist):
1817 1f9430d6 Iustin Pop
    """Remaps a per-node return list into an a per-os per-node dictionary
1818 1f9430d6 Iustin Pop

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

1822 e4376078 Iustin Pop
    @rtype: dict
1823 5fcc718f Iustin Pop
    @return: a dictionary with osnames as keys and as value another map, with
1824 255dcebd Iustin Pop
        nodes as keys and tuples of (path, status, diagnose) as values, eg::
1825 e4376078 Iustin Pop

1826 255dcebd Iustin Pop
          {"debian-etch": {"node1": [(/usr/lib/..., True, ""),
1827 255dcebd Iustin Pop
                                     (/srv/..., False, "invalid api")],
1828 255dcebd Iustin Pop
                           "node2": [(/srv/..., True, "")]}
1829 e4376078 Iustin Pop
          }
1830 1f9430d6 Iustin Pop

1831 1f9430d6 Iustin Pop
    """
1832 1f9430d6 Iustin Pop
    all_os = {}
1833 a6ab004b Iustin Pop
    # we build here the list of nodes that didn't fail the RPC (at RPC
1834 a6ab004b Iustin Pop
    # level), so that nodes with a non-responding node daemon don't
1835 a6ab004b Iustin Pop
    # make all OSes invalid
1836 a6ab004b Iustin Pop
    good_nodes = [node_name for node_name in rlist
1837 4c4e4e1e Iustin Pop
                  if not rlist[node_name].fail_msg]
1838 83d92ad8 Iustin Pop
    for node_name, nr in rlist.items():
1839 4c4e4e1e Iustin Pop
      if nr.fail_msg or not nr.payload:
1840 1f9430d6 Iustin Pop
        continue
1841 255dcebd Iustin Pop
      for name, path, status, diagnose in nr.payload:
1842 255dcebd Iustin Pop
        if name not in all_os:
1843 1f9430d6 Iustin Pop
          # build a list of nodes for this os containing empty lists
1844 1f9430d6 Iustin Pop
          # for each node in node_list
1845 255dcebd Iustin Pop
          all_os[name] = {}
1846 a6ab004b Iustin Pop
          for nname in good_nodes:
1847 255dcebd Iustin Pop
            all_os[name][nname] = []
1848 255dcebd Iustin Pop
        all_os[name][node_name].append((path, status, diagnose))
1849 1f9430d6 Iustin Pop
    return all_os
1850 a8083063 Iustin Pop
1851 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
1852 a8083063 Iustin Pop
    """Compute the list of OSes.
1853 a8083063 Iustin Pop

1854 a8083063 Iustin Pop
    """
1855 a6ab004b Iustin Pop
    valid_nodes = [node for node in self.cfg.GetOnlineNodeList()]
1856 94a02bb5 Iustin Pop
    node_data = self.rpc.call_os_diagnose(valid_nodes)
1857 94a02bb5 Iustin Pop
    pol = self._DiagnoseByOS(valid_nodes, node_data)
1858 1f9430d6 Iustin Pop
    output = []
1859 83d92ad8 Iustin Pop
    for os_name, os_data in pol.items():
1860 1f9430d6 Iustin Pop
      row = []
1861 1f9430d6 Iustin Pop
      for field in self.op.output_fields:
1862 1f9430d6 Iustin Pop
        if field == "name":
1863 1f9430d6 Iustin Pop
          val = os_name
1864 1f9430d6 Iustin Pop
        elif field == "valid":
1865 255dcebd Iustin Pop
          val = utils.all([osl and osl[0][1] for osl in os_data.values()])
1866 1f9430d6 Iustin Pop
        elif field == "node_status":
1867 255dcebd Iustin Pop
          # this is just a copy of the dict
1868 1f9430d6 Iustin Pop
          val = {}
1869 255dcebd Iustin Pop
          for node_name, nos_list in os_data.items():
1870 255dcebd Iustin Pop
            val[node_name] = nos_list
1871 1f9430d6 Iustin Pop
        else:
1872 1f9430d6 Iustin Pop
          raise errors.ParameterError(field)
1873 1f9430d6 Iustin Pop
        row.append(val)
1874 1f9430d6 Iustin Pop
      output.append(row)
1875 1f9430d6 Iustin Pop
1876 1f9430d6 Iustin Pop
    return output
1877 a8083063 Iustin Pop
1878 a8083063 Iustin Pop
1879 a8083063 Iustin Pop
class LURemoveNode(LogicalUnit):
1880 a8083063 Iustin Pop
  """Logical unit for removing a node.
1881 a8083063 Iustin Pop

1882 a8083063 Iustin Pop
  """
1883 a8083063 Iustin Pop
  HPATH = "node-remove"
1884 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
1885 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
1886 a8083063 Iustin Pop
1887 a8083063 Iustin Pop
  def BuildHooksEnv(self):
1888 a8083063 Iustin Pop
    """Build hooks env.
1889 a8083063 Iustin Pop

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

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

1905 a8083063 Iustin Pop
    This checks:
1906 a8083063 Iustin Pop
     - the node exists in the configuration
1907 a8083063 Iustin Pop
     - it does not have primary or secondary instances
1908 a8083063 Iustin Pop
     - it's not the master
1909 a8083063 Iustin Pop

1910 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
1911 a8083063 Iustin Pop

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

1935 a8083063 Iustin Pop
    """
1936 a8083063 Iustin Pop
    node = self.node
1937 9a4f63d1 Iustin Pop
    logging.info("Stopping the node daemon and removing configs from node %s",
1938 9a4f63d1 Iustin Pop
                 node.name)
1939 a8083063 Iustin Pop
1940 d8470559 Michael Hanselmann
    self.context.RemoveNode(node.name)
1941 a8083063 Iustin Pop
1942 0623d351 Iustin Pop
    result = self.rpc.call_node_leave_cluster(node.name)
1943 4c4e4e1e Iustin Pop
    msg = result.fail_msg
1944 0623d351 Iustin Pop
    if msg:
1945 0623d351 Iustin Pop
      self.LogWarning("Errors encountered on the remote node while leaving"
1946 0623d351 Iustin Pop
                      " the cluster: %s", msg)
1947 c8a0948f Michael Hanselmann
1948 eb1742d5 Guido Trotter
    # Promote nodes to master candidate as needed
1949 ec0292f1 Iustin Pop
    _AdjustCandidatePool(self)
1950 eb1742d5 Guido Trotter
1951 a8083063 Iustin Pop
1952 a8083063 Iustin Pop
class LUQueryNodes(NoHooksLU):
1953 a8083063 Iustin Pop
  """Logical unit for querying nodes.
1954 a8083063 Iustin Pop

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

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

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

2113 dcb93971 Michael Hanselmann
  """
2114 dcb93971 Michael Hanselmann
  _OP_REQP = ["nodes", "output_fields"]
2115 21a15682 Guido Trotter
  REQ_BGL = False
2116 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance")
2117 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("node")
2118 21a15682 Guido Trotter
2119 21a15682 Guido Trotter
  def ExpandNames(self):
2120 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2121 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2122 21a15682 Guido Trotter
                       selected=self.op.output_fields)
2123 21a15682 Guido Trotter
2124 21a15682 Guido Trotter
    self.needed_locks = {}
2125 21a15682 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
2126 21a15682 Guido Trotter
    if not self.op.nodes:
2127 e310b019 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = locking.ALL_SET
2128 21a15682 Guido Trotter
    else:
2129 21a15682 Guido Trotter
      self.needed_locks[locking.LEVEL_NODE] = \
2130 21a15682 Guido Trotter
        _GetWantedNodes(self, self.op.nodes)
2131 dcb93971 Michael Hanselmann
2132 dcb93971 Michael Hanselmann
  def CheckPrereq(self):
2133 dcb93971 Michael Hanselmann
    """Check prerequisites.
2134 dcb93971 Michael Hanselmann

2135 dcb93971 Michael Hanselmann
    This checks that the fields required are valid output fields.
2136 dcb93971 Michael Hanselmann

2137 dcb93971 Michael Hanselmann
    """
2138 21a15682 Guido Trotter
    self.nodes = self.acquired_locks[locking.LEVEL_NODE]
2139 dcb93971 Michael Hanselmann
2140 dcb93971 Michael Hanselmann
  def Exec(self, feedback_fn):
2141 dcb93971 Michael Hanselmann
    """Computes the list of nodes and their attributes.
2142 dcb93971 Michael Hanselmann

2143 dcb93971 Michael Hanselmann
    """
2144 a7ba5e53 Iustin Pop
    nodenames = self.nodes
2145 72737a7f Iustin Pop
    volumes = self.rpc.call_node_volumes(nodenames)
2146 dcb93971 Michael Hanselmann
2147 dcb93971 Michael Hanselmann
    ilist = [self.cfg.GetInstanceInfo(iname) for iname
2148 dcb93971 Michael Hanselmann
             in self.cfg.GetInstanceList()]
2149 dcb93971 Michael Hanselmann
2150 dcb93971 Michael Hanselmann
    lv_by_node = dict([(inst, inst.MapLVsByNode()) for inst in ilist])
2151 dcb93971 Michael Hanselmann
2152 dcb93971 Michael Hanselmann
    output = []
2153 dcb93971 Michael Hanselmann
    for node in nodenames:
2154 10bfe6cb Iustin Pop
      nresult = volumes[node]
2155 10bfe6cb Iustin Pop
      if nresult.offline:
2156 10bfe6cb Iustin Pop
        continue
2157 4c4e4e1e Iustin Pop
      msg = nresult.fail_msg
2158 10bfe6cb Iustin Pop
      if msg:
2159 10bfe6cb Iustin Pop
        self.LogWarning("Can't compute volume data on node %s: %s", node, msg)
2160 37d19eb2 Michael Hanselmann
        continue
2161 37d19eb2 Michael Hanselmann
2162 10bfe6cb Iustin Pop
      node_vols = nresult.payload[:]
2163 dcb93971 Michael Hanselmann
      node_vols.sort(key=lambda vol: vol['dev'])
2164 dcb93971 Michael Hanselmann
2165 dcb93971 Michael Hanselmann
      for vol in node_vols:
2166 dcb93971 Michael Hanselmann
        node_output = []
2167 dcb93971 Michael Hanselmann
        for field in self.op.output_fields:
2168 dcb93971 Michael Hanselmann
          if field == "node":
2169 dcb93971 Michael Hanselmann
            val = node
2170 dcb93971 Michael Hanselmann
          elif field == "phys":
2171 dcb93971 Michael Hanselmann
            val = vol['dev']
2172 dcb93971 Michael Hanselmann
          elif field == "vg":
2173 dcb93971 Michael Hanselmann
            val = vol['vg']
2174 dcb93971 Michael Hanselmann
          elif field == "name":
2175 dcb93971 Michael Hanselmann
            val = vol['name']
2176 dcb93971 Michael Hanselmann
          elif field == "size":
2177 dcb93971 Michael Hanselmann
            val = int(float(vol['size']))
2178 dcb93971 Michael Hanselmann
          elif field == "instance":
2179 dcb93971 Michael Hanselmann
            for inst in ilist:
2180 dcb93971 Michael Hanselmann
              if node not in lv_by_node[inst]:
2181 dcb93971 Michael Hanselmann
                continue
2182 dcb93971 Michael Hanselmann
              if vol['name'] in lv_by_node[inst][node]:
2183 dcb93971 Michael Hanselmann
                val = inst.name
2184 dcb93971 Michael Hanselmann
                break
2185 dcb93971 Michael Hanselmann
            else:
2186 dcb93971 Michael Hanselmann
              val = '-'
2187 dcb93971 Michael Hanselmann
          else:
2188 3ecf6786 Iustin Pop
            raise errors.ParameterError(field)
2189 dcb93971 Michael Hanselmann
          node_output.append(str(val))
2190 dcb93971 Michael Hanselmann
2191 dcb93971 Michael Hanselmann
        output.append(node_output)
2192 dcb93971 Michael Hanselmann
2193 dcb93971 Michael Hanselmann
    return output
2194 dcb93971 Michael Hanselmann
2195 dcb93971 Michael Hanselmann
2196 a8083063 Iustin Pop
class LUAddNode(LogicalUnit):
2197 a8083063 Iustin Pop
  """Logical unit for adding node to the cluster.
2198 a8083063 Iustin Pop

2199 a8083063 Iustin Pop
  """
2200 a8083063 Iustin Pop
  HPATH = "node-add"
2201 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2202 a8083063 Iustin Pop
  _OP_REQP = ["node_name"]
2203 a8083063 Iustin Pop
2204 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2205 a8083063 Iustin Pop
    """Build hooks env.
2206 a8083063 Iustin Pop

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

2209 a8083063 Iustin Pop
    """
2210 a8083063 Iustin Pop
    env = {
2211 0e137c28 Iustin Pop
      "OP_TARGET": self.op.node_name,
2212 a8083063 Iustin Pop
      "NODE_NAME": self.op.node_name,
2213 a8083063 Iustin Pop
      "NODE_PIP": self.op.primary_ip,
2214 a8083063 Iustin Pop
      "NODE_SIP": self.op.secondary_ip,
2215 a8083063 Iustin Pop
      }
2216 a8083063 Iustin Pop
    nodes_0 = self.cfg.GetNodeList()
2217 a8083063 Iustin Pop
    nodes_1 = nodes_0 + [self.op.node_name, ]
2218 a8083063 Iustin Pop
    return env, nodes_0, nodes_1
2219 a8083063 Iustin Pop
2220 a8083063 Iustin Pop
  def CheckPrereq(self):
2221 a8083063 Iustin Pop
    """Check prerequisites.
2222 a8083063 Iustin Pop

2223 a8083063 Iustin Pop
    This checks:
2224 a8083063 Iustin Pop
     - the new node is not already in the config
2225 a8083063 Iustin Pop
     - it is resolvable
2226 a8083063 Iustin Pop
     - its parameters (single/dual homed) matches the cluster
2227 a8083063 Iustin Pop

2228 a8083063 Iustin Pop
    Any errors are signalled by raising errors.OpPrereqError.
2229 a8083063 Iustin Pop

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

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

2383 b31c8676 Iustin Pop
  """
2384 b31c8676 Iustin Pop
  HPATH = "node-modify"
2385 b31c8676 Iustin Pop
  HTYPE = constants.HTYPE_NODE
2386 b31c8676 Iustin Pop
  _OP_REQP = ["node_name"]
2387 b31c8676 Iustin Pop
  REQ_BGL = False
2388 b31c8676 Iustin Pop
2389 b31c8676 Iustin Pop
  def CheckArguments(self):
2390 b31c8676 Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2391 b31c8676 Iustin Pop
    if node_name is None:
2392 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2393 b31c8676 Iustin Pop
    self.op.node_name = node_name
2394 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'master_candidate')
2395 3a5ba66a Iustin Pop
    _CheckBooleanOpField(self.op, 'offline')
2396 c9d443ea Iustin Pop
    _CheckBooleanOpField(self.op, 'drained')
2397 c9d443ea Iustin Pop
    all_mods = [self.op.offline, self.op.master_candidate, self.op.drained]
2398 c9d443ea Iustin Pop
    if all_mods.count(None) == 3:
2399 b31c8676 Iustin Pop
      raise errors.OpPrereqError("Please pass at least one modification")
2400 c9d443ea Iustin Pop
    if all_mods.count(True) > 1:
2401 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Can't set the node into more than one"
2402 c9d443ea Iustin Pop
                                 " state at the same time")
2403 b31c8676 Iustin Pop
2404 b31c8676 Iustin Pop
  def ExpandNames(self):
2405 b31c8676 Iustin Pop
    self.needed_locks = {locking.LEVEL_NODE: self.op.node_name}
2406 b31c8676 Iustin Pop
2407 b31c8676 Iustin Pop
  def BuildHooksEnv(self):
2408 b31c8676 Iustin Pop
    """Build hooks env.
2409 b31c8676 Iustin Pop

2410 b31c8676 Iustin Pop
    This runs on the master node.
2411 b31c8676 Iustin Pop

2412 b31c8676 Iustin Pop
    """
2413 b31c8676 Iustin Pop
    env = {
2414 b31c8676 Iustin Pop
      "OP_TARGET": self.op.node_name,
2415 b31c8676 Iustin Pop
      "MASTER_CANDIDATE": str(self.op.master_candidate),
2416 3a5ba66a Iustin Pop
      "OFFLINE": str(self.op.offline),
2417 c9d443ea Iustin Pop
      "DRAINED": str(self.op.drained),
2418 b31c8676 Iustin Pop
      }
2419 b31c8676 Iustin Pop
    nl = [self.cfg.GetMasterNode(),
2420 b31c8676 Iustin Pop
          self.op.node_name]
2421 b31c8676 Iustin Pop
    return env, nl, nl
2422 b31c8676 Iustin Pop
2423 b31c8676 Iustin Pop
  def CheckPrereq(self):
2424 b31c8676 Iustin Pop
    """Check prerequisites.
2425 b31c8676 Iustin Pop

2426 b31c8676 Iustin Pop
    This only checks the instance list against the existing names.
2427 b31c8676 Iustin Pop

2428 b31c8676 Iustin Pop
    """
2429 3a5ba66a Iustin Pop
    node = self.node = self.cfg.GetNodeInfo(self.op.node_name)
2430 b31c8676 Iustin Pop
2431 c9d443ea Iustin Pop
    if ((self.op.master_candidate == False or self.op.offline == True or
2432 c9d443ea Iustin Pop
         self.op.drained == True) and node.master_candidate):
2433 3a5ba66a Iustin Pop
      # we will demote the node from master_candidate
2434 3a26773f Iustin Pop
      if self.op.node_name == self.cfg.GetMasterNode():
2435 3a26773f Iustin Pop
        raise errors.OpPrereqError("The master node has to be a"
2436 c9d443ea Iustin Pop
                                   " master candidate, online and not drained")
2437 3e83dd48 Iustin Pop
      cp_size = self.cfg.GetClusterInfo().candidate_pool_size
2438 3a5ba66a Iustin Pop
      num_candidates, _ = self.cfg.GetMasterCandidateStats()
2439 3e83dd48 Iustin Pop
      if num_candidates <= cp_size:
2440 3e83dd48 Iustin Pop
        msg = ("Not enough master candidates (desired"
2441 3e83dd48 Iustin Pop
               " %d, new value will be %d)" % (cp_size, num_candidates-1))
2442 3a5ba66a Iustin Pop
        if self.op.force:
2443 3e83dd48 Iustin Pop
          self.LogWarning(msg)
2444 3e83dd48 Iustin Pop
        else:
2445 3e83dd48 Iustin Pop
          raise errors.OpPrereqError(msg)
2446 3e83dd48 Iustin Pop
2447 c9d443ea Iustin Pop
    if (self.op.master_candidate == True and
2448 c9d443ea Iustin Pop
        ((node.offline and not self.op.offline == False) or
2449 c9d443ea Iustin Pop
         (node.drained and not self.op.drained == False))):
2450 c9d443ea Iustin Pop
      raise errors.OpPrereqError("Node '%s' is offline or drained, can't set"
2451 949bdabe Iustin Pop
                                 " to master_candidate" % node.name)
2452 3a5ba66a Iustin Pop
2453 b31c8676 Iustin Pop
    return
2454 b31c8676 Iustin Pop
2455 b31c8676 Iustin Pop
  def Exec(self, feedback_fn):
2456 b31c8676 Iustin Pop
    """Modifies a node.
2457 b31c8676 Iustin Pop

2458 b31c8676 Iustin Pop
    """
2459 3a5ba66a Iustin Pop
    node = self.node
2460 b31c8676 Iustin Pop
2461 b31c8676 Iustin Pop
    result = []
2462 c9d443ea Iustin Pop
    changed_mc = False
2463 b31c8676 Iustin Pop
2464 3a5ba66a Iustin Pop
    if self.op.offline is not None:
2465 3a5ba66a Iustin Pop
      node.offline = self.op.offline
2466 3a5ba66a Iustin Pop
      result.append(("offline", str(self.op.offline)))
2467 c9d443ea Iustin Pop
      if self.op.offline == True:
2468 c9d443ea Iustin Pop
        if node.master_candidate:
2469 c9d443ea Iustin Pop
          node.master_candidate = False
2470 c9d443ea Iustin Pop
          changed_mc = True
2471 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to offline"))
2472 c9d443ea Iustin Pop
        if node.drained:
2473 c9d443ea Iustin Pop
          node.drained = False
2474 c9d443ea Iustin Pop
          result.append(("drained", "clear drained status due to offline"))
2475 3a5ba66a Iustin Pop
2476 b31c8676 Iustin Pop
    if self.op.master_candidate is not None:
2477 b31c8676 Iustin Pop
      node.master_candidate = self.op.master_candidate
2478 c9d443ea Iustin Pop
      changed_mc = True
2479 b31c8676 Iustin Pop
      result.append(("master_candidate", str(self.op.master_candidate)))
2480 56aa9fd5 Iustin Pop
      if self.op.master_candidate == False:
2481 56aa9fd5 Iustin Pop
        rrc = self.rpc.call_node_demote_from_mc(node.name)
2482 4c4e4e1e Iustin Pop
        msg = rrc.fail_msg
2483 0959c824 Iustin Pop
        if msg:
2484 0959c824 Iustin Pop
          self.LogWarning("Node failed to demote itself: %s" % msg)
2485 b31c8676 Iustin Pop
2486 c9d443ea Iustin Pop
    if self.op.drained is not None:
2487 c9d443ea Iustin Pop
      node.drained = self.op.drained
2488 82e12743 Iustin Pop
      result.append(("drained", str(self.op.drained)))
2489 c9d443ea Iustin Pop
      if self.op.drained == True:
2490 c9d443ea Iustin Pop
        if node.master_candidate:
2491 c9d443ea Iustin Pop
          node.master_candidate = False
2492 c9d443ea Iustin Pop
          changed_mc = True
2493 c9d443ea Iustin Pop
          result.append(("master_candidate", "auto-demotion due to drain"))
2494 c9d443ea Iustin Pop
        if node.offline:
2495 c9d443ea Iustin Pop
          node.offline = False
2496 c9d443ea Iustin Pop
          result.append(("offline", "clear offline status due to drain"))
2497 c9d443ea Iustin Pop
2498 b31c8676 Iustin Pop
    # this will trigger configuration file update, if needed
2499 b31c8676 Iustin Pop
    self.cfg.Update(node)
2500 b31c8676 Iustin Pop
    # this will trigger job queue propagation or cleanup
2501 c9d443ea Iustin Pop
    if changed_mc:
2502 3a26773f Iustin Pop
      self.context.ReaddNode(node)
2503 b31c8676 Iustin Pop
2504 b31c8676 Iustin Pop
    return result
2505 b31c8676 Iustin Pop
2506 b31c8676 Iustin Pop
2507 f5118ade Iustin Pop
class LUPowercycleNode(NoHooksLU):
2508 f5118ade Iustin Pop
  """Powercycles a node.
2509 f5118ade Iustin Pop

2510 f5118ade Iustin Pop
  """
2511 f5118ade Iustin Pop
  _OP_REQP = ["node_name", "force"]
2512 f5118ade Iustin Pop
  REQ_BGL = False
2513 f5118ade Iustin Pop
2514 f5118ade Iustin Pop
  def CheckArguments(self):
2515 f5118ade Iustin Pop
    node_name = self.cfg.ExpandNodeName(self.op.node_name)
2516 f5118ade Iustin Pop
    if node_name is None:
2517 f5118ade Iustin Pop
      raise errors.OpPrereqError("Invalid node name '%s'" % self.op.node_name)
2518 f5118ade Iustin Pop
    self.op.node_name = node_name
2519 f5118ade Iustin Pop
    if node_name == self.cfg.GetMasterNode() and not self.op.force:
2520 f5118ade Iustin Pop
      raise errors.OpPrereqError("The node is the master and the force"
2521 f5118ade Iustin Pop
                                 " parameter was not set")
2522 f5118ade Iustin Pop
2523 f5118ade Iustin Pop
  def ExpandNames(self):
2524 f5118ade Iustin Pop
    """Locking for PowercycleNode.
2525 f5118ade Iustin Pop

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

2529 f5118ade Iustin Pop
    """
2530 f5118ade Iustin Pop
    self.needed_locks = {}
2531 f5118ade Iustin Pop
2532 f5118ade Iustin Pop
  def CheckPrereq(self):
2533 f5118ade Iustin Pop
    """Check prerequisites.
2534 f5118ade Iustin Pop

2535 f5118ade Iustin Pop
    This LU has no prereqs.
2536 f5118ade Iustin Pop

2537 f5118ade Iustin Pop
    """
2538 f5118ade Iustin Pop
    pass
2539 f5118ade Iustin Pop
2540 f5118ade Iustin Pop
  def Exec(self, feedback_fn):
2541 f5118ade Iustin Pop
    """Reboots a node.
2542 f5118ade Iustin Pop

2543 f5118ade Iustin Pop
    """
2544 f5118ade Iustin Pop
    result = self.rpc.call_node_powercycle(self.op.node_name,
2545 f5118ade Iustin Pop
                                           self.cfg.GetHypervisorType())
2546 4c4e4e1e Iustin Pop
    result.Raise("Failed to schedule the reboot")
2547 f5118ade Iustin Pop
    return result.payload
2548 f5118ade Iustin Pop
2549 f5118ade Iustin Pop
2550 a8083063 Iustin Pop
class LUQueryClusterInfo(NoHooksLU):
2551 a8083063 Iustin Pop
  """Query cluster configuration.
2552 a8083063 Iustin Pop

2553 a8083063 Iustin Pop
  """
2554 a8083063 Iustin Pop
  _OP_REQP = []
2555 642339cf Guido Trotter
  REQ_BGL = False
2556 642339cf Guido Trotter
2557 642339cf Guido Trotter
  def ExpandNames(self):
2558 642339cf Guido Trotter
    self.needed_locks = {}
2559 a8083063 Iustin Pop
2560 a8083063 Iustin Pop
  def CheckPrereq(self):
2561 a8083063 Iustin Pop
    """No prerequsites needed for this LU.
2562 a8083063 Iustin Pop

2563 a8083063 Iustin Pop
    """
2564 a8083063 Iustin Pop
    pass
2565 a8083063 Iustin Pop
2566 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2567 a8083063 Iustin Pop
    """Return cluster config.
2568 a8083063 Iustin Pop

2569 a8083063 Iustin Pop
    """
2570 469f88e1 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
2571 a8083063 Iustin Pop
    result = {
2572 a8083063 Iustin Pop
      "software_version": constants.RELEASE_VERSION,
2573 a8083063 Iustin Pop
      "protocol_version": constants.PROTOCOL_VERSION,
2574 a8083063 Iustin Pop
      "config_version": constants.CONFIG_VERSION,
2575 a8083063 Iustin Pop
      "os_api_version": constants.OS_API_VERSION,
2576 a8083063 Iustin Pop
      "export_version": constants.EXPORT_VERSION,
2577 a8083063 Iustin Pop
      "architecture": (platform.architecture()[0], platform.machine()),
2578 469f88e1 Iustin Pop
      "name": cluster.cluster_name,
2579 469f88e1 Iustin Pop
      "master": cluster.master_node,
2580 02691904 Alexander Schreiber
      "default_hypervisor": cluster.default_hypervisor,
2581 469f88e1 Iustin Pop
      "enabled_hypervisors": cluster.enabled_hypervisors,
2582 29921401 Iustin Pop
      "hvparams": dict([(hvname, cluster.hvparams[hvname])
2583 29921401 Iustin Pop
                        for hvname in cluster.enabled_hypervisors]),
2584 469f88e1 Iustin Pop
      "beparams": cluster.beparams,
2585 1094acda Guido Trotter
      "nicparams": cluster.nicparams,
2586 4b7735f9 Iustin Pop
      "candidate_pool_size": cluster.candidate_pool_size,
2587 7a56b411 Guido Trotter
      "master_netdev": cluster.master_netdev,
2588 7a56b411 Guido Trotter
      "volume_group_name": cluster.volume_group_name,
2589 7a56b411 Guido Trotter
      "file_storage_dir": cluster.file_storage_dir,
2590 a8083063 Iustin Pop
      }
2591 a8083063 Iustin Pop
2592 a8083063 Iustin Pop
    return result
2593 a8083063 Iustin Pop
2594 a8083063 Iustin Pop
2595 ae5849b5 Michael Hanselmann
class LUQueryConfigValues(NoHooksLU):
2596 ae5849b5 Michael Hanselmann
  """Return configuration values.
2597 a8083063 Iustin Pop

2598 a8083063 Iustin Pop
  """
2599 a8083063 Iustin Pop
  _OP_REQP = []
2600 642339cf Guido Trotter
  REQ_BGL = False
2601 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet()
2602 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet("cluster_name", "master_node", "drain_flag")
2603 642339cf Guido Trotter
2604 642339cf Guido Trotter
  def ExpandNames(self):
2605 642339cf Guido Trotter
    self.needed_locks = {}
2606 a8083063 Iustin Pop
2607 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
2608 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
2609 ae5849b5 Michael Hanselmann
                       selected=self.op.output_fields)
2610 ae5849b5 Michael Hanselmann
2611 a8083063 Iustin Pop
  def CheckPrereq(self):
2612 a8083063 Iustin Pop
    """No prerequisites.
2613 a8083063 Iustin Pop

2614 a8083063 Iustin Pop
    """
2615 a8083063 Iustin Pop
    pass
2616 a8083063 Iustin Pop
2617 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2618 a8083063 Iustin Pop
    """Dump a representation of the cluster config to the standard output.
2619 a8083063 Iustin Pop

2620 a8083063 Iustin Pop
    """
2621 ae5849b5 Michael Hanselmann
    values = []
2622 ae5849b5 Michael Hanselmann
    for field in self.op.output_fields:
2623 ae5849b5 Michael Hanselmann
      if field == "cluster_name":
2624 3ccafd0e Iustin Pop
        entry = self.cfg.GetClusterName()
2625 ae5849b5 Michael Hanselmann
      elif field == "master_node":
2626 3ccafd0e Iustin Pop
        entry = self.cfg.GetMasterNode()
2627 3ccafd0e Iustin Pop
      elif field == "drain_flag":
2628 3ccafd0e Iustin Pop
        entry = os.path.exists(constants.JOB_QUEUE_DRAIN_FILE)
2629 ae5849b5 Michael Hanselmann
      else:
2630 ae5849b5 Michael Hanselmann
        raise errors.ParameterError(field)
2631 3ccafd0e Iustin Pop
      values.append(entry)
2632 ae5849b5 Michael Hanselmann
    return values
2633 a8083063 Iustin Pop
2634 a8083063 Iustin Pop
2635 a8083063 Iustin Pop
class LUActivateInstanceDisks(NoHooksLU):
2636 a8083063 Iustin Pop
  """Bring up an instance's disks.
2637 a8083063 Iustin Pop

2638 a8083063 Iustin Pop
  """
2639 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2640 f22a8ba3 Guido Trotter
  REQ_BGL = False
2641 f22a8ba3 Guido Trotter
2642 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2643 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2644 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2645 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2646 f22a8ba3 Guido Trotter
2647 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2648 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2649 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2650 a8083063 Iustin Pop
2651 a8083063 Iustin Pop
  def CheckPrereq(self):
2652 a8083063 Iustin Pop
    """Check prerequisites.
2653 a8083063 Iustin Pop

2654 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2655 a8083063 Iustin Pop

2656 a8083063 Iustin Pop
    """
2657 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2658 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2659 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2660 43017d26 Iustin Pop
    _CheckNodeOnline(self, self.instance.primary_node)
2661 a8083063 Iustin Pop
2662 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2663 a8083063 Iustin Pop
    """Activate the disks.
2664 a8083063 Iustin Pop

2665 a8083063 Iustin Pop
    """
2666 b9bddb6b Iustin Pop
    disks_ok, disks_info = _AssembleInstanceDisks(self, self.instance)
2667 a8083063 Iustin Pop
    if not disks_ok:
2668 3ecf6786 Iustin Pop
      raise errors.OpExecError("Cannot activate block devices")
2669 a8083063 Iustin Pop
2670 a8083063 Iustin Pop
    return disks_info
2671 a8083063 Iustin Pop
2672 a8083063 Iustin Pop
2673 b9bddb6b Iustin Pop
def _AssembleInstanceDisks(lu, instance, ignore_secondaries=False):
2674 a8083063 Iustin Pop
  """Prepare the block devices for an instance.
2675 a8083063 Iustin Pop

2676 a8083063 Iustin Pop
  This sets up the block devices on all nodes.
2677 a8083063 Iustin Pop

2678 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
2679 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
2680 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
2681 e4376078 Iustin Pop
  @param instance: the instance for whose disks we assemble
2682 e4376078 Iustin Pop
  @type ignore_secondaries: boolean
2683 e4376078 Iustin Pop
  @param ignore_secondaries: if true, errors on secondary nodes
2684 e4376078 Iustin Pop
      won't result in an error return from the function
2685 e4376078 Iustin Pop
  @return: False if the operation failed, otherwise a list of
2686 e4376078 Iustin Pop
      (host, instance_visible_name, node_visible_name)
2687 e4376078 Iustin Pop
      with the mapping from node devices to instance devices
2688 a8083063 Iustin Pop

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

2745 3ecf6786 Iustin Pop
  """
2746 b9bddb6b Iustin Pop
  disks_ok, dummy = _AssembleInstanceDisks(lu, instance,
2747 fe7b0351 Michael Hanselmann
                                           ignore_secondaries=force)
2748 fe7b0351 Michael Hanselmann
  if not disks_ok:
2749 b9bddb6b Iustin Pop
    _ShutdownInstanceDisks(lu, instance)
2750 fe7b0351 Michael Hanselmann
    if force is not None and not force:
2751 86d9d3bb Iustin Pop
      lu.proc.LogWarning("", hint="If the message above refers to a"
2752 86d9d3bb Iustin Pop
                         " secondary node,"
2753 86d9d3bb Iustin Pop
                         " you can retry the operation using '--force'.")
2754 3ecf6786 Iustin Pop
    raise errors.OpExecError("Disk consistency error")
2755 fe7b0351 Michael Hanselmann
2756 fe7b0351 Michael Hanselmann
2757 a8083063 Iustin Pop
class LUDeactivateInstanceDisks(NoHooksLU):
2758 a8083063 Iustin Pop
  """Shutdown an instance's disks.
2759 a8083063 Iustin Pop

2760 a8083063 Iustin Pop
  """
2761 a8083063 Iustin Pop
  _OP_REQP = ["instance_name"]
2762 f22a8ba3 Guido Trotter
  REQ_BGL = False
2763 f22a8ba3 Guido Trotter
2764 f22a8ba3 Guido Trotter
  def ExpandNames(self):
2765 f22a8ba3 Guido Trotter
    self._ExpandAndLockInstance()
2766 f22a8ba3 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
2767 f22a8ba3 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
2768 f22a8ba3 Guido Trotter
2769 f22a8ba3 Guido Trotter
  def DeclareLocks(self, level):
2770 f22a8ba3 Guido Trotter
    if level == locking.LEVEL_NODE:
2771 f22a8ba3 Guido Trotter
      self._LockInstancesNodes()
2772 a8083063 Iustin Pop
2773 a8083063 Iustin Pop
  def CheckPrereq(self):
2774 a8083063 Iustin Pop
    """Check prerequisites.
2775 a8083063 Iustin Pop

2776 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2777 a8083063 Iustin Pop

2778 a8083063 Iustin Pop
    """
2779 f22a8ba3 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
2780 f22a8ba3 Guido Trotter
    assert self.instance is not None, \
2781 f22a8ba3 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
2782 a8083063 Iustin Pop
2783 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
2784 a8083063 Iustin Pop
    """Deactivate the disks
2785 a8083063 Iustin Pop

2786 a8083063 Iustin Pop
    """
2787 a8083063 Iustin Pop
    instance = self.instance
2788 b9bddb6b Iustin Pop
    _SafeShutdownInstanceDisks(self, instance)
2789 a8083063 Iustin Pop
2790 a8083063 Iustin Pop
2791 b9bddb6b Iustin Pop
def _SafeShutdownInstanceDisks(lu, instance):
2792 155d6c75 Guido Trotter
  """Shutdown block devices of an instance.
2793 155d6c75 Guido Trotter

2794 155d6c75 Guido Trotter
  This function checks if an instance is running, before calling
2795 155d6c75 Guido Trotter
  _ShutdownInstanceDisks.
2796 155d6c75 Guido Trotter

2797 155d6c75 Guido Trotter
  """
2798 aca13712 Iustin Pop
  pnode = instance.primary_node
2799 4c4e4e1e Iustin Pop
  ins_l = lu.rpc.call_instance_list([pnode], [instance.hypervisor])[pnode]
2800 4c4e4e1e Iustin Pop
  ins_l.Raise("Can't contact node %s" % pnode)
2801 aca13712 Iustin Pop
2802 aca13712 Iustin Pop
  if instance.name in ins_l.payload:
2803 155d6c75 Guido Trotter
    raise errors.OpExecError("Instance is running, can't shutdown"
2804 155d6c75 Guido Trotter
                             " block devices.")
2805 155d6c75 Guido Trotter
2806 b9bddb6b Iustin Pop
  _ShutdownInstanceDisks(lu, instance)
2807 a8083063 Iustin Pop
2808 a8083063 Iustin Pop
2809 b9bddb6b Iustin Pop
def _ShutdownInstanceDisks(lu, instance, ignore_primary=False):
2810 a8083063 Iustin Pop
  """Shutdown block devices of an instance.
2811 a8083063 Iustin Pop

2812 a8083063 Iustin Pop
  This does the shutdown on all nodes of the instance.
2813 a8083063 Iustin Pop

2814 a8083063 Iustin Pop
  If the ignore_primary is false, errors on the primary node are
2815 a8083063 Iustin Pop
  ignored.
2816 a8083063 Iustin Pop

2817 a8083063 Iustin Pop
  """
2818 cacfd1fd Iustin Pop
  all_result = True
2819 a8083063 Iustin Pop
  for disk in instance.disks:
2820 a8083063 Iustin Pop
    for node, top_disk in disk.ComputeNodeTree(instance.primary_node):
2821 b9bddb6b Iustin Pop
      lu.cfg.SetDiskID(top_disk, node)
2822 781de953 Iustin Pop
      result = lu.rpc.call_blockdev_shutdown(node, top_disk)
2823 4c4e4e1e Iustin Pop
      msg = result.fail_msg
2824 cacfd1fd Iustin Pop
      if msg:
2825 cacfd1fd Iustin Pop
        lu.LogWarning("Could not shutdown block device %s on node %s: %s",
2826 cacfd1fd Iustin Pop
                      disk.iv_name, node, msg)
2827 a8083063 Iustin Pop
        if not ignore_primary or node != instance.primary_node:
2828 cacfd1fd Iustin Pop
          all_result = False
2829 cacfd1fd Iustin Pop
  return all_result
2830 a8083063 Iustin Pop
2831 a8083063 Iustin Pop
2832 9ca87a96 Iustin Pop
def _CheckNodeFreeMemory(lu, node, reason, requested, hypervisor_name):
2833 d4f16fd9 Iustin Pop
  """Checks if a node has enough free memory.
2834 d4f16fd9 Iustin Pop

2835 d4f16fd9 Iustin Pop
  This function check if a given node has the needed amount of free
2836 d4f16fd9 Iustin Pop
  memory. In case the node has less memory or we cannot get the
2837 d4f16fd9 Iustin Pop
  information from the node, this function raise an OpPrereqError
2838 d4f16fd9 Iustin Pop
  exception.
2839 d4f16fd9 Iustin Pop

2840 b9bddb6b Iustin Pop
  @type lu: C{LogicalUnit}
2841 b9bddb6b Iustin Pop
  @param lu: a logical unit from which we get configuration data
2842 e69d05fd Iustin Pop
  @type node: C{str}
2843 e69d05fd Iustin Pop
  @param node: the node to check
2844 e69d05fd Iustin Pop
  @type reason: C{str}
2845 e69d05fd Iustin Pop
  @param reason: string to use in the error message
2846 e69d05fd Iustin Pop
  @type requested: C{int}
2847 e69d05fd Iustin Pop
  @param requested: the amount of memory in MiB to check for
2848 9ca87a96 Iustin Pop
  @type hypervisor_name: C{str}
2849 9ca87a96 Iustin Pop
  @param hypervisor_name: the hypervisor to ask for memory stats
2850 e69d05fd Iustin Pop
  @raise errors.OpPrereqError: if the node doesn't have enough memory, or
2851 e69d05fd Iustin Pop
      we cannot check the node
2852 d4f16fd9 Iustin Pop

2853 d4f16fd9 Iustin Pop
  """
2854 9ca87a96 Iustin Pop
  nodeinfo = lu.rpc.call_node_info([node], lu.cfg.GetVGName(), hypervisor_name)
2855 4c4e4e1e Iustin Pop
  nodeinfo[node].Raise("Can't get data from node %s" % node, prereq=True)
2856 070e998b Iustin Pop
  free_mem = nodeinfo[node].payload.get('memory_free', None)
2857 d4f16fd9 Iustin Pop
  if not isinstance(free_mem, int):
2858 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Can't compute free memory on node %s, result"
2859 070e998b Iustin Pop
                               " was '%s'" % (node, free_mem))
2860 d4f16fd9 Iustin Pop
  if requested > free_mem:
2861 d4f16fd9 Iustin Pop
    raise errors.OpPrereqError("Not enough memory on node %s for %s:"
2862 070e998b Iustin Pop
                               " needed %s MiB, available %s MiB" %
2863 070e998b Iustin Pop
                               (node, reason, requested, free_mem))
2864 d4f16fd9 Iustin Pop
2865 d4f16fd9 Iustin Pop
2866 a8083063 Iustin Pop
class LUStartupInstance(LogicalUnit):
2867 a8083063 Iustin Pop
  """Starts an instance.
2868 a8083063 Iustin Pop

2869 a8083063 Iustin Pop
  """
2870 a8083063 Iustin Pop
  HPATH = "instance-start"
2871 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
2872 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "force"]
2873 e873317a Guido Trotter
  REQ_BGL = False
2874 e873317a Guido Trotter
2875 e873317a Guido Trotter
  def ExpandNames(self):
2876 e873317a Guido Trotter
    self._ExpandAndLockInstance()
2877 a8083063 Iustin Pop
2878 a8083063 Iustin Pop
  def BuildHooksEnv(self):
2879 a8083063 Iustin Pop
    """Build hooks env.
2880 a8083063 Iustin Pop

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

2883 a8083063 Iustin Pop
    """
2884 a8083063 Iustin Pop
    env = {
2885 a8083063 Iustin Pop
      "FORCE": self.op.force,
2886 a8083063 Iustin Pop
      }
2887 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
2888 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
2889 a8083063 Iustin Pop
    return env, nl, nl
2890 a8083063 Iustin Pop
2891 a8083063 Iustin Pop
  def CheckPrereq(self):
2892 a8083063 Iustin Pop
    """Check prerequisites.
2893 a8083063 Iustin Pop

2894 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
2895 a8083063 Iustin Pop

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

2948 a8083063 Iustin Pop
    """
2949 a8083063 Iustin Pop
    instance = self.instance
2950 a8083063 Iustin Pop
    force = self.op.force
2951 a8083063 Iustin Pop
2952 fe482621 Iustin Pop
    self.cfg.MarkInstanceUp(instance.name)
2953 fe482621 Iustin Pop
2954 a8083063 Iustin Pop
    node_current = instance.primary_node
2955 a8083063 Iustin Pop
2956 b9bddb6b Iustin Pop
    _StartInstanceDisks(self, instance, force)
2957 a8083063 Iustin Pop
2958 d04aaa2f Iustin Pop
    result = self.rpc.call_instance_start(node_current, instance,
2959 d04aaa2f Iustin Pop
                                          self.hvparams, self.beparams)
2960 4c4e4e1e Iustin Pop
    msg = result.fail_msg
2961 dd279568 Iustin Pop
    if msg:
2962 b9bddb6b Iustin Pop
      _ShutdownInstanceDisks(self, instance)
2963 dd279568 Iustin Pop
      raise errors.OpExecError("Could not start instance: %s" % msg)
2964 a8083063 Iustin Pop
2965 a8083063 Iustin Pop
2966 bf6929a2 Alexander Schreiber
class LURebootInstance(LogicalUnit):
2967 bf6929a2 Alexander Schreiber
  """Reboot an instance.
2968 bf6929a2 Alexander Schreiber

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

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

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

3002 bf6929a2 Alexander Schreiber
    This checks that the instance is in the cluster.
3003 bf6929a2 Alexander Schreiber

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

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

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

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

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

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

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

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

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

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

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

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

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

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

3181 decd5f45 Iustin Pop
  """
3182 decd5f45 Iustin Pop
  HPATH = "instance-rename"
3183 decd5f45 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3184 decd5f45 Iustin Pop
  _OP_REQP = ["instance_name", "new_name"]
3185 decd5f45 Iustin Pop
3186 decd5f45 Iustin Pop
  def BuildHooksEnv(self):
3187 decd5f45 Iustin Pop
    """Build hooks env.
3188 decd5f45 Iustin Pop

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

3191 decd5f45 Iustin Pop
    """
3192 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3193 decd5f45 Iustin Pop
    env["INSTANCE_NEW_NAME"] = self.op.new_name
3194 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
3195 decd5f45 Iustin Pop
    return env, nl, nl
3196 decd5f45 Iustin Pop
3197 decd5f45 Iustin Pop
  def CheckPrereq(self):
3198 decd5f45 Iustin Pop
    """Check prerequisites.
3199 decd5f45 Iustin Pop

3200 decd5f45 Iustin Pop
    This checks that the instance is in the cluster and is not running.
3201 decd5f45 Iustin Pop

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

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

3284 a8083063 Iustin Pop
  """
3285 a8083063 Iustin Pop
  HPATH = "instance-remove"
3286 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3287 5c54b832 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_failures"]
3288 cf472233 Guido Trotter
  REQ_BGL = False
3289 cf472233 Guido Trotter
3290 cf472233 Guido Trotter
  def ExpandNames(self):
3291 cf472233 Guido Trotter
    self._ExpandAndLockInstance()
3292 cf472233 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3293 cf472233 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3294 cf472233 Guido Trotter
3295 cf472233 Guido Trotter
  def DeclareLocks(self, level):
3296 cf472233 Guido Trotter
    if level == locking.LEVEL_NODE:
3297 cf472233 Guido Trotter
      self._LockInstancesNodes()
3298 a8083063 Iustin Pop
3299 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3300 a8083063 Iustin Pop
    """Build hooks env.
3301 a8083063 Iustin Pop

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

3304 a8083063 Iustin Pop
    """
3305 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3306 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()]
3307 a8083063 Iustin Pop
    return env, nl, nl
3308 a8083063 Iustin Pop
3309 a8083063 Iustin Pop
  def CheckPrereq(self):
3310 a8083063 Iustin Pop
    """Check prerequisites.
3311 a8083063 Iustin Pop

3312 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3313 a8083063 Iustin Pop

3314 a8083063 Iustin Pop
    """
3315 cf472233 Guido Trotter
    self.instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3316 cf472233 Guido Trotter
    assert self.instance is not None, \
3317 cf472233 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3318 a8083063 Iustin Pop
3319 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3320 a8083063 Iustin Pop
    """Remove the instance.
3321 a8083063 Iustin Pop

3322 a8083063 Iustin Pop
    """
3323 a8083063 Iustin Pop
    instance = self.instance
3324 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3325 9a4f63d1 Iustin Pop
                 instance.name, instance.primary_node)
3326 a8083063 Iustin Pop
3327 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(instance.primary_node, instance)
3328 4c4e4e1e Iustin Pop
    msg = result.fail_msg
3329 1fae010f Iustin Pop
    if msg:
3330 1d67656e Iustin Pop
      if self.op.ignore_failures:
3331 1fae010f Iustin Pop
        feedback_fn("Warning: can't shutdown instance: %s" % msg)
3332 1d67656e Iustin Pop
      else:
3333 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3334 1fae010f Iustin Pop
                                 " node %s: %s" %
3335 1fae010f Iustin Pop
                                 (instance.name, instance.primary_node, msg))
3336 a8083063 Iustin Pop
3337 9a4f63d1 Iustin Pop
    logging.info("Removing block devices for instance %s", instance.name)
3338 a8083063 Iustin Pop
3339 b9bddb6b Iustin Pop
    if not _RemoveDisks(self, instance):
3340 1d67656e Iustin Pop
      if self.op.ignore_failures:
3341 1d67656e Iustin Pop
        feedback_fn("Warning: can't remove instance's disks")
3342 1d67656e Iustin Pop
      else:
3343 1d67656e Iustin Pop
        raise errors.OpExecError("Can't remove instance's disks")
3344 a8083063 Iustin Pop
3345 9a4f63d1 Iustin Pop
    logging.info("Removing instance %s out of cluster config", instance.name)
3346 a8083063 Iustin Pop
3347 a8083063 Iustin Pop
    self.cfg.RemoveInstance(instance.name)
3348 cf472233 Guido Trotter
    self.remove_locks[locking.LEVEL_INSTANCE] = instance.name
3349 a8083063 Iustin Pop
3350 a8083063 Iustin Pop
3351 a8083063 Iustin Pop
class LUQueryInstances(NoHooksLU):
3352 a8083063 Iustin Pop
  """Logical unit for querying instances.
3353 a8083063 Iustin Pop

3354 a8083063 Iustin Pop
  """
3355 ec79568d Iustin Pop
  _OP_REQP = ["output_fields", "names", "use_locking"]
3356 7eb9d8f7 Guido Trotter
  REQ_BGL = False
3357 a2d2e1a7 Iustin Pop
  _FIELDS_STATIC = utils.FieldSet(*["name", "os", "pnode", "snodes",
3358 5b460366 Iustin Pop
                                    "admin_state",
3359 a2d2e1a7 Iustin Pop
                                    "disk_template", "ip", "mac", "bridge",
3360 638c6349 Guido Trotter
                                    "nic_mode", "nic_link",
3361 a2d2e1a7 Iustin Pop
                                    "sda_size", "sdb_size", "vcpus", "tags",
3362 a2d2e1a7 Iustin Pop
                                    "network_port", "beparams",
3363 8aec325c Iustin Pop
                                    r"(disk)\.(size)/([0-9]+)",
3364 8aec325c Iustin Pop
                                    r"(disk)\.(sizes)", "disk_usage",
3365 638c6349 Guido Trotter
                                    r"(nic)\.(mac|ip|mode|link)/([0-9]+)",
3366 638c6349 Guido Trotter
                                    r"(nic)\.(bridge)/([0-9]+)",
3367 638c6349 Guido Trotter
                                    r"(nic)\.(macs|ips|modes|links|bridges)",
3368 8aec325c Iustin Pop
                                    r"(disk|nic)\.(count)",
3369 a2d2e1a7 Iustin Pop
                                    "serial_no", "hypervisor", "hvparams",] +
3370 a2d2e1a7 Iustin Pop
                                  ["hv/%s" % name
3371 a2d2e1a7 Iustin Pop
                                   for name in constants.HVS_PARAMETERS] +
3372 a2d2e1a7 Iustin Pop
                                  ["be/%s" % name
3373 a2d2e1a7 Iustin Pop
                                   for name in constants.BES_PARAMETERS])
3374 a2d2e1a7 Iustin Pop
  _FIELDS_DYNAMIC = utils.FieldSet("oper_state", "oper_ram", "status")
3375 31bf511f Iustin Pop
3376 a8083063 Iustin Pop
3377 7eb9d8f7 Guido Trotter
  def ExpandNames(self):
3378 31bf511f Iustin Pop
    _CheckOutputFields(static=self._FIELDS_STATIC,
3379 31bf511f Iustin Pop
                       dynamic=self._FIELDS_DYNAMIC,
3380 dcb93971 Michael Hanselmann
                       selected=self.op.output_fields)
3381 a8083063 Iustin Pop
3382 7eb9d8f7 Guido Trotter
    self.needed_locks = {}
3383 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_INSTANCE] = 1
3384 7eb9d8f7 Guido Trotter
    self.share_locks[locking.LEVEL_NODE] = 1
3385 7eb9d8f7 Guido Trotter
3386 57a2fb91 Iustin Pop
    if self.op.names:
3387 57a2fb91 Iustin Pop
      self.wanted = _GetWantedInstances(self, self.op.names)
3388 7eb9d8f7 Guido Trotter
    else:
3389 57a2fb91 Iustin Pop
      self.wanted = locking.ALL_SET
3390 7eb9d8f7 Guido Trotter
3391 ec79568d Iustin Pop
    self.do_node_query = self._FIELDS_STATIC.NonMatching(self.op.output_fields)
3392 ec79568d Iustin Pop
    self.do_locking = self.do_node_query and self.op.use_locking
3393 57a2fb91 Iustin Pop
    if self.do_locking:
3394 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted
3395 57a2fb91 Iustin Pop
      self.needed_locks[locking.LEVEL_NODE] = []
3396 57a2fb91 Iustin Pop
      self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3397 7eb9d8f7 Guido Trotter
3398 7eb9d8f7 Guido Trotter
  def DeclareLocks(self, level):
3399 57a2fb91 Iustin Pop
    if level == locking.LEVEL_NODE and self.do_locking:
3400 7eb9d8f7 Guido Trotter
      self._LockInstancesNodes()
3401 7eb9d8f7 Guido Trotter
3402 7eb9d8f7 Guido Trotter
  def CheckPrereq(self):
3403 7eb9d8f7 Guido Trotter
    """Check prerequisites.
3404 7eb9d8f7 Guido Trotter

3405 7eb9d8f7 Guido Trotter
    """
3406 57a2fb91 Iustin Pop
    pass
3407 069dcc86 Iustin Pop
3408 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3409 a8083063 Iustin Pop
    """Computes the list of nodes and their attributes.
3410 a8083063 Iustin Pop

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

3634 a8083063 Iustin Pop
  """
3635 a8083063 Iustin Pop
  HPATH = "instance-failover"
3636 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3637 a8083063 Iustin Pop
  _OP_REQP = ["instance_name", "ignore_consistency"]
3638 c9e5c064 Guido Trotter
  REQ_BGL = False
3639 c9e5c064 Guido Trotter
3640 c9e5c064 Guido Trotter
  def ExpandNames(self):
3641 c9e5c064 Guido Trotter
    self._ExpandAndLockInstance()
3642 c9e5c064 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
3643 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3644 c9e5c064 Guido Trotter
3645 c9e5c064 Guido Trotter
  def DeclareLocks(self, level):
3646 c9e5c064 Guido Trotter
    if level == locking.LEVEL_NODE:
3647 c9e5c064 Guido Trotter
      self._LockInstancesNodes()
3648 a8083063 Iustin Pop
3649 a8083063 Iustin Pop
  def BuildHooksEnv(self):
3650 a8083063 Iustin Pop
    """Build hooks env.
3651 a8083063 Iustin Pop

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

3654 a8083063 Iustin Pop
    """
3655 a8083063 Iustin Pop
    env = {
3656 a8083063 Iustin Pop
      "IGNORE_CONSISTENCY": self.op.ignore_consistency,
3657 a8083063 Iustin Pop
      }
3658 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
3659 d6a02168 Michael Hanselmann
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3660 a8083063 Iustin Pop
    return env, nl, nl
3661 a8083063 Iustin Pop
3662 a8083063 Iustin Pop
  def CheckPrereq(self):
3663 a8083063 Iustin Pop
    """Check prerequisites.
3664 a8083063 Iustin Pop

3665 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
3666 a8083063 Iustin Pop

3667 a8083063 Iustin Pop
    """
3668 c9e5c064 Guido Trotter
    self.instance = instance = self.cfg.GetInstanceInfo(self.op.instance_name)
3669 c9e5c064 Guido Trotter
    assert self.instance is not None, \
3670 c9e5c064 Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
3671 a8083063 Iustin Pop
3672 338e51e8 Iustin Pop
    bep = self.cfg.GetClusterInfo().FillBE(instance)
3673 a1f445d3 Iustin Pop
    if instance.disk_template not in constants.DTS_NET_MIRROR:
3674 2a710df1 Michael Hanselmann
      raise errors.OpPrereqError("Instance's disk layout is not"
3675 a1f445d3 Iustin Pop
                                 " network mirrored, cannot failover.")
3676 2a710df1 Michael Hanselmann
3677 2a710df1 Michael Hanselmann
    secondary_nodes = instance.secondary_nodes
3678 2a710df1 Michael Hanselmann
    if not secondary_nodes:
3679 2a710df1 Michael Hanselmann
      raise errors.ProgrammerError("no secondary node but using "
3680 abdf0113 Iustin Pop
                                   "a mirrored disk template")
3681 2a710df1 Michael Hanselmann
3682 2a710df1 Michael Hanselmann
    target_node = secondary_nodes[0]
3683 7527a8a4 Iustin Pop
    _CheckNodeOnline(self, target_node)
3684 733a2b6a Iustin Pop
    _CheckNodeNotDrained(self, target_node)
3685 d27776f0 Iustin Pop
    if instance.admin_up:
3686 d27776f0 Iustin Pop
      # check memory requirements on the secondary node
3687 d27776f0 Iustin Pop
      _CheckNodeFreeMemory(self, target_node, "failing over instance %s" %
3688 d27776f0 Iustin Pop
                           instance.name, bep[constants.BE_MEMORY],
3689 d27776f0 Iustin Pop
                           instance.hypervisor)
3690 d27776f0 Iustin Pop
    else:
3691 d27776f0 Iustin Pop
      self.LogInfo("Not checking memory on the secondary node as"
3692 d27776f0 Iustin Pop
                   " instance will not be started")
3693 3a7c308e Guido Trotter
3694 a8083063 Iustin Pop
    # check bridge existance
3695 b165e77e Guido Trotter
    _CheckInstanceBridgesExist(self, instance, node=target_node)
3696 a8083063 Iustin Pop
3697 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
3698 a8083063 Iustin Pop
    """Failover an instance.
3699 a8083063 Iustin Pop

3700 a8083063 Iustin Pop
    The failover is done by shutting it down on its present node and
3701 a8083063 Iustin Pop
    starting it on the secondary.
3702 a8083063 Iustin Pop

3703 a8083063 Iustin Pop
    """
3704 a8083063 Iustin Pop
    instance = self.instance
3705 a8083063 Iustin Pop
3706 a8083063 Iustin Pop
    source_node = instance.primary_node
3707 a8083063 Iustin Pop
    target_node = instance.secondary_nodes[0]
3708 a8083063 Iustin Pop
3709 a8083063 Iustin Pop
    feedback_fn("* checking disk consistency between source and target")
3710 a8083063 Iustin Pop
    for dev in instance.disks:
3711 abdf0113 Iustin Pop
      # for drbd, these are drbd over lvm
3712 b9bddb6b Iustin Pop
      if not _CheckDiskConsistency(self, dev, target_node, False):
3713 0d68c45d Iustin Pop
        if instance.admin_up and not self.op.ignore_consistency:
3714 3ecf6786 Iustin Pop
          raise errors.OpExecError("Disk %s is degraded on target node,"
3715 3ecf6786 Iustin Pop
                                   " aborting failover." % dev.iv_name)
3716 a8083063 Iustin Pop
3717 a8083063 Iustin Pop
    feedback_fn("* shutting down instance on source node")
3718 9a4f63d1 Iustin Pop
    logging.info("Shutting down instance %s on node %s",
3719 9a4f63d1 Iustin Pop
                 instance.name, source_node)
3720 a8083063 Iustin Pop
3721 781de953 Iustin Pop
    result = self.rpc.call_instance_shutdown(source_node, instance)
3722 4c4e4e1e Iustin Pop
    msg = result.fail_msg
3723 1fae010f Iustin Pop
    if msg:
3724 24a40d57 Iustin Pop
      if self.op.ignore_consistency:
3725 86d9d3bb Iustin Pop
        self.proc.LogWarning("Could not shutdown instance %s on node %s."
3726 1fae010f Iustin Pop
                             " Proceeding anyway. Please make sure node"
3727 1fae010f Iustin Pop
                             " %s is down. Error details: %s",
3728 1fae010f Iustin Pop
                             instance.name, source_node, source_node, msg)
3729 24a40d57 Iustin Pop
      else:
3730 1fae010f Iustin Pop
        raise errors.OpExecError("Could not shutdown instance %s on"
3731 1fae010f Iustin Pop
                                 " node %s: %s" %
3732 1fae010f Iustin Pop
                                 (instance.name, source_node, msg))
3733 a8083063 Iustin Pop
3734 a8083063 Iustin Pop
    feedback_fn("* deactivating the instance's disks on source node")
3735 b9bddb6b Iustin Pop
    if not _ShutdownInstanceDisks(self, instance, ignore_primary=True):
3736 3ecf6786 Iustin Pop
      raise errors.OpExecError("Can't shut down the instance's disks.")
3737 a8083063 Iustin Pop
3738 a8083063 Iustin Pop
    instance.primary_node = target_node
3739 a8083063 Iustin Pop
    # distribute new instance config to the other nodes
3740 b6102dab Guido Trotter
    self.cfg.Update(instance)
3741 a8083063 Iustin Pop
3742 12a0cfbe Guido Trotter
    # Only start the instance if it's marked as up
3743 0d68c45d Iustin Pop
    if instance.admin_up:
3744 12a0cfbe Guido Trotter
      feedback_fn("* activating the instance's disks on target node")
3745 9a4f63d1 Iustin Pop
      logging.info("Starting instance %s on node %s",
3746 9a4f63d1 Iustin Pop
                   instance.name, target_node)
3747 12a0cfbe Guido Trotter
3748 b9bddb6b Iustin Pop
      disks_ok, dummy = _AssembleInstanceDisks(self, instance,
3749 12a0cfbe Guido Trotter
                                               ignore_secondaries=True)
3750 12a0cfbe Guido Trotter
      if not disks_ok:
3751 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3752 12a0cfbe Guido Trotter
        raise errors.OpExecError("Can't activate the instance's disks")
3753 a8083063 Iustin Pop
3754 12a0cfbe Guido Trotter
      feedback_fn("* starting the instance on the target node")
3755 0eca8e0c Iustin Pop
      result = self.rpc.call_instance_start(target_node, instance, None, None)
3756 4c4e4e1e Iustin Pop
      msg = result.fail_msg
3757 dd279568 Iustin Pop
      if msg:
3758 b9bddb6b Iustin Pop
        _ShutdownInstanceDisks(self, instance)
3759 dd279568 Iustin Pop
        raise errors.OpExecError("Could not start instance %s on node %s: %s" %
3760 dd279568 Iustin Pop
                                 (instance.name, target_node, msg))
3761 a8083063 Iustin Pop
3762 a8083063 Iustin Pop
3763 53c776b5 Iustin Pop
class LUMigrateInstance(LogicalUnit):
3764 53c776b5 Iustin Pop
  """Migrate an instance.
3765 53c776b5 Iustin Pop

3766 53c776b5 Iustin Pop
  This is migration without shutting down, compared to the failover,
3767 53c776b5 Iustin Pop
  which is done with shutdown.
3768 53c776b5 Iustin Pop

3769 53c776b5 Iustin Pop
  """
3770 53c776b5 Iustin Pop
  HPATH = "instance-migrate"
3771 53c776b5 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
3772 53c776b5 Iustin Pop
  _OP_REQP = ["instance_name", "live", "cleanup"]
3773 53c776b5 Iustin Pop
3774 53c776b5 Iustin Pop
  REQ_BGL = False
3775 53c776b5 Iustin Pop
3776 53c776b5 Iustin Pop
  def ExpandNames(self):
3777 53c776b5 Iustin Pop
    self._ExpandAndLockInstance()
3778 53c776b5 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
3779 53c776b5 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
3780 53c776b5 Iustin Pop
3781 53c776b5 Iustin Pop
  def DeclareLocks(self, level):
3782 53c776b5 Iustin Pop
    if level == locking.LEVEL_NODE:
3783 53c776b5 Iustin Pop
      self._LockInstancesNodes()
3784 53c776b5 Iustin Pop
3785 53c776b5 Iustin Pop
  def BuildHooksEnv(self):
3786 53c776b5 Iustin Pop
    """Build hooks env.
3787 53c776b5 Iustin Pop

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

3790 53c776b5 Iustin Pop
    """
3791 53c776b5 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance)
3792 2c2690c9 Iustin Pop
    env["MIGRATE_LIVE"] = self.op.live
3793 2c2690c9 Iustin Pop
    env["MIGRATE_CLEANUP"] = self.op.cleanup
3794 53c776b5 Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.secondary_nodes)
3795 53c776b5 Iustin Pop
    return env, nl, nl
3796 53c776b5 Iustin Pop
3797 53c776b5 Iustin Pop
  def CheckPrereq(self):
3798 53c776b5 Iustin Pop
    """Check prerequisites.
3799 53c776b5 Iustin Pop

3800 53c776b5 Iustin Pop
    This checks that the instance is in the cluster.
3801 53c776b5 Iustin Pop

3802 53c776b5 Iustin Pop
    """
3803 53c776b5 Iustin Pop
    instance = self.cfg.GetInstanceInfo(
3804 53c776b5 Iustin Pop
      self.cfg.ExpandInstanceName(self.op.instance_name))
3805 53c776b5 Iustin Pop
    if instance is None:
3806 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' not known" %
3807 53c776b5 Iustin Pop
                                 self.op.instance_name)
3808 53c776b5 Iustin Pop
3809 53c776b5 Iustin Pop
    if instance.disk_template != constants.DT_DRBD8:
3810 53c776b5 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout is not"
3811 53c776b5 Iustin Pop
                                 " drbd8, cannot migrate.")
3812 53c776b5 Iustin Pop
3813 53c776b5 Iustin Pop
    secondary_nodes = instance.secondary_nodes
3814 53c776b5 Iustin Pop
    if not secondary_nodes:
3815 733a2b6a Iustin Pop
      raise errors.ConfigurationError("No secondary node but using"
3816 733a2b6a Iustin Pop
                                      " drbd8 disk template")
3817 53c776b5 Iustin Pop
3818 53c776b5 Iustin Pop
    i_be = self.cfg.GetClusterInfo().FillBE(instance)
3819 53c776b5 Iustin Pop
3820 53c776b5 Iustin Pop
    target_node = secondary_nodes[0]
3821 53c776b5 Iustin Pop
    # check memory requirements on the secondary node
3822 53c776b5 Iustin Pop
    _CheckNodeFreeMemory(self, target_node, "migrating instance %s" %
3823 53c776b5 Iustin Pop
                         instance.name, i_be[constants.BE_MEMORY],
3824 53c776b5 Iustin Pop
                         instance.hypervisor)
3825 53c776b5 Iustin Pop
3826 53c776b5 Iustin Pop
    # check bridge existance
3827 b165e77e Guido Trotter
    _CheckInstanceBridgesExist(self, instance, node=target_node)
3828 53c776b5 Iustin Pop
3829 53c776b5 Iustin Pop
    if not self.op.cleanup:
3830 733a2b6a Iustin Pop
      _CheckNodeNotDrained(self, target_node)
3831 53c776b5 Iustin Pop
      result = self.rpc.call_instance_migratable(instance.primary_node,
3832 53c776b5 Iustin Pop
                                                 instance)
3833 4c4e4e1e Iustin Pop
      result.Raise("Can't migrate, please use failover", prereq=True)
3834 53c776b5 Iustin Pop
3835 53c776b5 Iustin Pop
    self.instance = instance
3836 53c776b5 Iustin Pop
3837 53c776b5 Iustin Pop
  def _WaitUntilSync(self):
3838 53c776b5 Iustin Pop
    """Poll with custom rpc for disk sync.
3839 53c776b5 Iustin Pop

3840 53c776b5 Iustin Pop
    This uses our own step-based rpc call.
3841 53c776b5 Iustin Pop

3842 53c776b5 Iustin Pop
    """
3843 53c776b5 Iustin Pop
    self.feedback_fn("* wait until resync is done")
3844 53c776b5 Iustin Pop
    all_done = False
3845 53c776b5 Iustin Pop
    while not all_done:
3846 53c776b5 Iustin Pop
      all_done = True
3847 53c776b5 Iustin Pop
      result = self.rpc.call_drbd_wait_sync(self.all_nodes,
3848 53c776b5 Iustin Pop
                                            self.nodes_ip,
3849 53c776b5 Iustin Pop
                                            self.instance.disks)
3850 53c776b5 Iustin Pop
      min_percent = 100
3851 53c776b5 Iustin Pop
      for node, nres in result.items():
3852 4c4e4e1e Iustin Pop
        nres.Raise("Cannot resync disks on node %s" % node)
3853 0959c824 Iustin Pop
        node_done, node_percent = nres.payload
3854 53c776b5 Iustin Pop
        all_done = all_done and node_done
3855 53c776b5 Iustin Pop
        if node_percent is not None:
3856 53c776b5 Iustin Pop
          min_percent = min(min_percent, node_percent)
3857 53c776b5 Iustin Pop
      if not all_done:
3858 53c776b5 Iustin Pop
        if min_percent < 100:
3859 53c776b5 Iustin Pop
          self.feedback_fn("   - progress: %.1f%%" % min_percent)
3860 53c776b5 Iustin Pop
        time.sleep(2)
3861 53c776b5 Iustin Pop
3862 53c776b5 Iustin Pop
  def _EnsureSecondary(self, node):
3863 53c776b5 Iustin Pop
    """Demote a node to secondary.
3864 53c776b5 Iustin Pop

3865 53c776b5 Iustin Pop
    """
3866 53c776b5 Iustin Pop
    self.feedback_fn("* switching node %s to secondary mode" % node)
3867 53c776b5 Iustin Pop
3868 53c776b5 Iustin Pop
    for dev in self.instance.disks:
3869 53c776b5 Iustin Pop
      self.cfg.SetDiskID(dev, node)
3870 53c776b5 Iustin Pop
3871 53c776b5 Iustin Pop
    result = self.rpc.call_blockdev_close(node, self.instance.name,
3872 53c776b5 Iustin Pop
                                          self.instance.disks)
3873 4c4e4e1e Iustin Pop
    result.Raise("Cannot change disk to secondary on node %s" % node)
3874 53c776b5 Iustin Pop
3875 53c776b5 Iustin Pop
  def _GoStandalone(self):
3876 53c776b5 Iustin Pop
    """Disconnect from the network.
3877 53c776b5 Iustin Pop

3878 53c776b5 Iustin Pop
    """
3879 53c776b5 Iustin Pop
    self.feedback_fn("* changing into standalone mode")
3880 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_disconnect_net(self.all_nodes, self.nodes_ip,
3881 53c776b5 Iustin Pop
                                               self.instance.disks)
3882 53c776b5 Iustin Pop
    for node, nres in result.items():
3883 4c4e4e1e Iustin Pop
      nres.Raise("Cannot disconnect disks node %s" % node)
3884 53c776b5 Iustin Pop
3885 53c776b5 Iustin Pop
  def _GoReconnect(self, multimaster):
3886 53c776b5 Iustin Pop
    """Reconnect to the network.
3887 53c776b5 Iustin Pop

3888 53c776b5 Iustin Pop
    """
3889 53c776b5 Iustin Pop
    if multimaster:
3890 53c776b5 Iustin Pop
      msg = "dual-master"
3891 53c776b5 Iustin Pop
    else:
3892 53c776b5 Iustin Pop
      msg = "single-master"
3893 53c776b5 Iustin Pop
    self.feedback_fn("* changing disks into %s mode" % msg)
3894 53c776b5 Iustin Pop
    result = self.rpc.call_drbd_attach_net(self.all_nodes, self.nodes_ip,
3895 53c776b5 Iustin Pop
                                           self.instance.disks,
3896 53c776b5 Iustin Pop
                                           self.instance.name, multimaster)
3897 53c776b5 Iustin Pop
    for node, nres in result.items():
3898 4c4e4e1e Iustin Pop
      nres.Raise("Cannot change disks config on node %s" % node)
3899 53c776b5 Iustin Pop
3900 53c776b5 Iustin Pop
  def _ExecCleanup(self):
3901 53c776b5 Iustin Pop
    """Try to cleanup after a failed migration.
3902 53c776b5 Iustin Pop

3903 53c776b5 Iustin Pop
    The cleanup is done by:
3904 53c776b5 Iustin Pop
      - check that the instance is running only on one node
3905 53c776b5 Iustin Pop
        (and update the config if needed)
3906 53c776b5 Iustin Pop
      - change disks on its secondary node to secondary
3907 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
3908 53c776b5 Iustin Pop
      - disconnect from the network
3909 53c776b5 Iustin Pop
      - change disks into single-master mode
3910 53c776b5 Iustin Pop
      - wait again until disks are fully synchronized
3911 53c776b5 Iustin Pop

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

3968 6906a9d8 Guido Trotter
    """
3969 6906a9d8 Guido Trotter
    target_node = self.target_node
3970 6906a9d8 Guido Trotter
    try:
3971 6906a9d8 Guido Trotter
      self._EnsureSecondary(target_node)
3972 6906a9d8 Guido Trotter
      self._GoStandalone()
3973 6906a9d8 Guido Trotter
      self._GoReconnect(False)
3974 6906a9d8 Guido Trotter
      self._WaitUntilSync()
3975 6906a9d8 Guido Trotter
    except errors.OpExecError, err:
3976 6906a9d8 Guido Trotter
      self.LogWarning("Migration failed and I can't reconnect the"
3977 6906a9d8 Guido Trotter
                      " drives: error '%s'\n"
3978 6906a9d8 Guido Trotter
                      "Please look and recover the instance status" %
3979 6906a9d8 Guido Trotter
                      str(err))
3980 6906a9d8 Guido Trotter
3981 6906a9d8 Guido Trotter
  def _AbortMigration(self):
3982 6906a9d8 Guido Trotter
    """Call the hypervisor code to abort a started migration.
3983 6906a9d8 Guido Trotter

3984 6906a9d8 Guido Trotter
    """
3985 6906a9d8 Guido Trotter
    instance = self.instance
3986 6906a9d8 Guido Trotter
    target_node = self.target_node
3987 6906a9d8 Guido Trotter
    migration_info = self.migration_info
3988 6906a9d8 Guido Trotter
3989 6906a9d8 Guido Trotter
    abort_result = self.rpc.call_finalize_migration(target_node,
3990 6906a9d8 Guido Trotter
                                                    instance,
3991 6906a9d8 Guido Trotter
                                                    migration_info,
3992 6906a9d8 Guido Trotter
                                                    False)
3993 4c4e4e1e Iustin Pop
    abort_msg = abort_result.fail_msg
3994 6906a9d8 Guido Trotter
    if abort_msg:
3995 6906a9d8 Guido Trotter
      logging.error("Aborting migration failed on target node %s: %s" %
3996 6906a9d8 Guido Trotter
                    (target_node, abort_msg))
3997 6906a9d8 Guido Trotter
      # Don't raise an exception here, as we stil have to try to revert the
3998 6906a9d8 Guido Trotter
      # disk status, even if this step failed.
3999 6906a9d8 Guido Trotter
4000 53c776b5 Iustin Pop
  def _ExecMigration(self):
4001 53c776b5 Iustin Pop
    """Migrate an instance.
4002 53c776b5 Iustin Pop

4003 53c776b5 Iustin Pop
    The migrate is done by:
4004 53c776b5 Iustin Pop
      - change the disks into dual-master mode
4005 53c776b5 Iustin Pop
      - wait until disks are fully synchronized again
4006 53c776b5 Iustin Pop
      - migrate the instance
4007 53c776b5 Iustin Pop
      - change disks on the new secondary node (the old primary) to secondary
4008 53c776b5 Iustin Pop
      - wait until disks are fully synchronized
4009 53c776b5 Iustin Pop
      - change disks into single-master mode
4010 53c776b5 Iustin Pop

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

4096 53c776b5 Iustin Pop
    """
4097 53c776b5 Iustin Pop
    self.feedback_fn = feedback_fn
4098 53c776b5 Iustin Pop
4099 53c776b5 Iustin Pop
    self.source_node = self.instance.primary_node
4100 53c776b5 Iustin Pop
    self.target_node = self.instance.secondary_nodes[0]
4101 53c776b5 Iustin Pop
    self.all_nodes = [self.source_node, self.target_node]
4102 53c776b5 Iustin Pop
    self.nodes_ip = {
4103 53c776b5 Iustin Pop
      self.source_node: self.cfg.GetNodeInfo(self.source_node).secondary_ip,
4104 53c776b5 Iustin Pop
      self.target_node: self.cfg.GetNodeInfo(self.target_node).secondary_ip,
4105 53c776b5 Iustin Pop
      }
4106 53c776b5 Iustin Pop
    if self.op.cleanup:
4107 53c776b5 Iustin Pop
      return self._ExecCleanup()
4108 53c776b5 Iustin Pop
    else:
4109 53c776b5 Iustin Pop
      return self._ExecMigration()
4110 53c776b5 Iustin Pop
4111 53c776b5 Iustin Pop
4112 428958aa Iustin Pop
def _CreateBlockDev(lu, node, instance, device, force_create,
4113 428958aa Iustin Pop
                    info, force_open):
4114 428958aa Iustin Pop
  """Create a tree of block devices on a given node.
4115 a8083063 Iustin Pop

4116 a8083063 Iustin Pop
  If this device type has to be created on secondaries, create it and
4117 a8083063 Iustin Pop
  all its children.
4118 a8083063 Iustin Pop

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

4121 428958aa Iustin Pop
  @param lu: the lu on whose behalf we execute
4122 428958aa Iustin Pop
  @param node: the node on which to create the device
4123 428958aa Iustin Pop
  @type instance: L{objects.Instance}
4124 428958aa Iustin Pop
  @param instance: the instance which owns the device
4125 428958aa Iustin Pop
  @type device: L{objects.Disk}
4126 428958aa Iustin Pop
  @param device: the device to create
4127 428958aa Iustin Pop
  @type force_create: boolean
4128 428958aa Iustin Pop
  @param force_create: whether to force creation of this device; this
4129 428958aa Iustin Pop
      will be change to True whenever we find a device which has
4130 428958aa Iustin Pop
      CreateOnSecondary() attribute
4131 428958aa Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
4132 428958aa Iustin Pop
      (this will be represented as a LVM tag)
4133 428958aa Iustin Pop
  @type force_open: boolean
4134 428958aa Iustin Pop
  @param force_open: this parameter will be passes to the
4135 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
4136 428958aa Iustin Pop
      whether we run on primary or not, and it affects both
4137 428958aa Iustin Pop
      the child assembly and the device own Open() execution
4138 428958aa Iustin Pop

4139 a8083063 Iustin Pop
  """
4140 a8083063 Iustin Pop
  if device.CreateOnSecondary():
4141 428958aa Iustin Pop
    force_create = True
4142 796cab27 Iustin Pop
4143 a8083063 Iustin Pop
  if device.children:
4144 a8083063 Iustin Pop
    for child in device.children:
4145 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, child, force_create,
4146 428958aa Iustin Pop
                      info, force_open)
4147 a8083063 Iustin Pop
4148 428958aa Iustin Pop
  if not force_create:
4149 796cab27 Iustin Pop
    return
4150 796cab27 Iustin Pop
4151 de12473a Iustin Pop
  _CreateSingleBlockDev(lu, node, instance, device, info, force_open)
4152 de12473a Iustin Pop
4153 de12473a Iustin Pop
4154 de12473a Iustin Pop
def _CreateSingleBlockDev(lu, node, instance, device, info, force_open):
4155 de12473a Iustin Pop
  """Create a single block device on a given node.
4156 de12473a Iustin Pop

4157 de12473a Iustin Pop
  This will not recurse over children of the device, so they must be
4158 de12473a Iustin Pop
  created in advance.
4159 de12473a Iustin Pop

4160 de12473a Iustin Pop
  @param lu: the lu on whose behalf we execute
4161 de12473a Iustin Pop
  @param node: the node on which to create the device
4162 de12473a Iustin Pop
  @type instance: L{objects.Instance}
4163 de12473a Iustin Pop
  @param instance: the instance which owns the device
4164 de12473a Iustin Pop
  @type device: L{objects.Disk}
4165 de12473a Iustin Pop
  @param device: the device to create
4166 de12473a Iustin Pop
  @param info: the extra 'metadata' we should attach to the device
4167 de12473a Iustin Pop
      (this will be represented as a LVM tag)
4168 de12473a Iustin Pop
  @type force_open: boolean
4169 de12473a Iustin Pop
  @param force_open: this parameter will be passes to the
4170 821d1bd1 Iustin Pop
      L{backend.BlockdevCreate} function where it specifies
4171 de12473a Iustin Pop
      whether we run on primary or not, and it affects both
4172 de12473a Iustin Pop
      the child assembly and the device own Open() execution
4173 de12473a Iustin Pop

4174 de12473a Iustin Pop
  """
4175 b9bddb6b Iustin Pop
  lu.cfg.SetDiskID(device, node)
4176 7d81697f Iustin Pop
  result = lu.rpc.call_blockdev_create(node, device, device.size,
4177 428958aa Iustin Pop
                                       instance.name, force_open, info)
4178 4c4e4e1e Iustin Pop
  result.Raise("Can't create block device %s on"
4179 4c4e4e1e Iustin Pop
               " node %s for instance %s" % (device, node, instance.name))
4180 a8083063 Iustin Pop
  if device.physical_id is None:
4181 0959c824 Iustin Pop
    device.physical_id = result.payload
4182 a8083063 Iustin Pop
4183 a8083063 Iustin Pop
4184 b9bddb6b Iustin Pop
def _GenerateUniqueNames(lu, exts):
4185 923b1523 Iustin Pop
  """Generate a suitable LV name.
4186 923b1523 Iustin Pop

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

4189 923b1523 Iustin Pop
  """
4190 923b1523 Iustin Pop
  results = []
4191 923b1523 Iustin Pop
  for val in exts:
4192 b9bddb6b Iustin Pop
    new_id = lu.cfg.GenerateUniqueID()
4193 923b1523 Iustin Pop
    results.append("%s%s" % (new_id, val))
4194 923b1523 Iustin Pop
  return results
4195 923b1523 Iustin Pop
4196 923b1523 Iustin Pop
4197 b9bddb6b Iustin Pop
def _GenerateDRBD8Branch(lu, primary, secondary, size, names, iv_name,
4198 ffa1c0dc Iustin Pop
                         p_minor, s_minor):
4199 a1f445d3 Iustin Pop
  """Generate a drbd8 device complete with its children.
4200 a1f445d3 Iustin Pop

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

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

4287 3ecf6786 Iustin Pop
  """
4288 a0c3fea1 Michael Hanselmann
  return "originstname+%s" % instance.name
4289 a0c3fea1 Michael Hanselmann
4290 a0c3fea1 Michael Hanselmann
4291 b9bddb6b Iustin Pop
def _CreateDisks(lu, instance):
4292 a8083063 Iustin Pop
  """Create all disks for an instance.
4293 a8083063 Iustin Pop

4294 a8083063 Iustin Pop
  This abstracts away some work from AddInstance.
4295 a8083063 Iustin Pop

4296 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4297 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4298 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4299 e4376078 Iustin Pop
  @param instance: the instance whose disks we should create
4300 e4376078 Iustin Pop
  @rtype: boolean
4301 e4376078 Iustin Pop
  @return: the success of the creation
4302 a8083063 Iustin Pop

4303 a8083063 Iustin Pop
  """
4304 a0c3fea1 Michael Hanselmann
  info = _GetInstanceInfoText(instance)
4305 428958aa Iustin Pop
  pnode = instance.primary_node
4306 a0c3fea1 Michael Hanselmann
4307 0f1a06e3 Manuel Franceschini
  if instance.disk_template == constants.DT_FILE:
4308 0f1a06e3 Manuel Franceschini
    file_storage_dir = os.path.dirname(instance.disks[0].logical_id[1])
4309 428958aa Iustin Pop
    result = lu.rpc.call_file_storage_dir_create(pnode, file_storage_dir)
4310 0f1a06e3 Manuel Franceschini
4311 4c4e4e1e Iustin Pop
    result.Raise("Failed to create directory '%s' on"
4312 4c4e4e1e Iustin Pop
                 " node %s: %s" % (file_storage_dir, pnode))
4313 0f1a06e3 Manuel Franceschini
4314 24991749 Iustin Pop
  # Note: this needs to be kept in sync with adding of disks in
4315 24991749 Iustin Pop
  # LUSetInstanceParams
4316 a8083063 Iustin Pop
  for device in instance.disks:
4317 9a4f63d1 Iustin Pop
    logging.info("Creating volume %s for instance %s",
4318 9a4f63d1 Iustin Pop
                 device.iv_name, instance.name)
4319 a8083063 Iustin Pop
    #HARDCODE
4320 428958aa Iustin Pop
    for node in instance.all_nodes:
4321 428958aa Iustin Pop
      f_create = node == pnode
4322 428958aa Iustin Pop
      _CreateBlockDev(lu, node, instance, device, f_create, info, f_create)
4323 a8083063 Iustin Pop
4324 a8083063 Iustin Pop
4325 b9bddb6b Iustin Pop
def _RemoveDisks(lu, instance):
4326 a8083063 Iustin Pop
  """Remove all disks for an instance.
4327 a8083063 Iustin Pop

4328 a8083063 Iustin Pop
  This abstracts away some work from `AddInstance()` and
4329 a8083063 Iustin Pop
  `RemoveInstance()`. Note that in case some of the devices couldn't
4330 1d67656e Iustin Pop
  be removed, the removal will continue with the other ones (compare
4331 a8083063 Iustin Pop
  with `_CreateDisks()`).
4332 a8083063 Iustin Pop

4333 e4376078 Iustin Pop
  @type lu: L{LogicalUnit}
4334 e4376078 Iustin Pop
  @param lu: the logical unit on whose behalf we execute
4335 e4376078 Iustin Pop
  @type instance: L{objects.Instance}
4336 e4376078 Iustin Pop
  @param instance: the instance whose disks we should remove
4337 e4376078 Iustin Pop
  @rtype: boolean
4338 e4376078 Iustin Pop
  @return: the success of the removal
4339 a8083063 Iustin Pop

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

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

4389 74409b12 Iustin Pop
  This function abstract the hypervisor parameter validation to be
4390 74409b12 Iustin Pop
  used in both instance create and instance modify.
4391 74409b12 Iustin Pop

4392 74409b12 Iustin Pop
  @type lu: L{LogicalUnit}
4393 74409b12 Iustin Pop
  @param lu: the logical unit for which we check
4394 74409b12 Iustin Pop
  @type nodenames: list
4395 74409b12 Iustin Pop
  @param nodenames: the list of nodes on which we should check
4396 74409b12 Iustin Pop
  @type hvname: string
4397 74409b12 Iustin Pop
  @param hvname: the name of the hypervisor we should use
4398 74409b12 Iustin Pop
  @type hvparams: dict
4399 74409b12 Iustin Pop
  @param hvparams: the parameters which we need to check
4400 74409b12 Iustin Pop
  @raise errors.OpPrereqError: if the parameters are not valid
4401 74409b12 Iustin Pop

4402 74409b12 Iustin Pop
  """
4403 74409b12 Iustin Pop
  hvinfo = lu.rpc.call_hypervisor_validate_params(nodenames,
4404 74409b12 Iustin Pop
                                                  hvname,
4405 74409b12 Iustin Pop
                                                  hvparams)
4406 74409b12 Iustin Pop
  for node in nodenames:
4407 781de953 Iustin Pop
    info = hvinfo[node]
4408 68c6f21c Iustin Pop
    if info.offline:
4409 68c6f21c Iustin Pop
      continue
4410 4c4e4e1e Iustin Pop
    info.Raise("Hypervisor parameter validation failed on node %s" % node)
4411 74409b12 Iustin Pop
4412 74409b12 Iustin Pop
4413 a8083063 Iustin Pop
class LUCreateInstance(LogicalUnit):
4414 a8083063 Iustin Pop
  """Create an instance.
4415 a8083063 Iustin Pop

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

4428 7baf741d Guido Trotter
    """
4429 7baf741d Guido Trotter
    node_full = self.cfg.ExpandNodeName(node)
4430 7baf741d Guido Trotter
    if node_full is None:
4431 7baf741d Guido Trotter
      raise errors.OpPrereqError("Unknown node %s" % node)
4432 7baf741d Guido Trotter
    return node_full
4433 7baf741d Guido Trotter
4434 7baf741d Guido Trotter
  def ExpandNames(self):
4435 7baf741d Guido Trotter
    """ExpandNames for CreateInstance.
4436 7baf741d Guido Trotter

4437 7baf741d Guido Trotter
    Figure out the right locks for instance creation.
4438 7baf741d Guido Trotter

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

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

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

4664 a8083063 Iustin Pop
    """
4665 a8083063 Iustin Pop
    env = {
4666 2c2690c9 Iustin Pop
      "ADD_MODE": self.op.mode,
4667 a8083063 Iustin Pop
      }
4668 a8083063 Iustin Pop
    if self.op.mode == constants.INSTANCE_IMPORT:
4669 2c2690c9 Iustin Pop
      env["SRC_NODE"] = self.op.src_node
4670 2c2690c9 Iustin Pop
      env["SRC_PATH"] = self.op.src_path
4671 2c2690c9 Iustin Pop
      env["SRC_IMAGES"] = self.src_images
4672 396e1b78 Michael Hanselmann
4673 2c2690c9 Iustin Pop
    env.update(_BuildInstanceHookEnv(
4674 2c2690c9 Iustin Pop
      name=self.op.instance_name,
4675 396e1b78 Michael Hanselmann
      primary_node=self.op.pnode,
4676 396e1b78 Michael Hanselmann
      secondary_nodes=self.secondaries,
4677 4978db17 Iustin Pop
      status=self.op.start,
4678 ecb215b5 Michael Hanselmann
      os_type=self.op.os_type,
4679 338e51e8 Iustin Pop
      memory=self.be_full[constants.BE_MEMORY],
4680 338e51e8 Iustin Pop
      vcpus=self.be_full[constants.BE_VCPUS],
4681 f9b10246 Guido Trotter
      nics=_NICListToTuple(self, self.nics),
4682 2c2690c9 Iustin Pop
      disk_template=self.op.disk_template,
4683 2c2690c9 Iustin Pop
      disks=[(d["size"], d["mode"]) for d in self.disks],
4684 67fc3042 Iustin Pop
      bep=self.be_full,
4685 67fc3042 Iustin Pop
      hvp=self.hv_full,
4686 67fc3042 Iustin Pop
      hypervisor=self.op.hypervisor,
4687 396e1b78 Michael Hanselmann
    ))
4688 a8083063 Iustin Pop
4689 d6a02168 Michael Hanselmann
    nl = ([self.cfg.GetMasterNode(), self.op.pnode] +
4690 a8083063 Iustin Pop
          self.secondaries)
4691 a8083063 Iustin Pop
    return env, nl, nl
4692 a8083063 Iustin Pop
4693 a8083063 Iustin Pop
4694 a8083063 Iustin Pop
  def CheckPrereq(self):
4695 a8083063 Iustin Pop
    """Check prerequisites.
4696 a8083063 Iustin Pop

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

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

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

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

5008 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
5009 a8083063 Iustin Pop

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

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

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

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

5129 a8083063 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5130 a8083063 Iustin Pop

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

5149 a8083063 Iustin Pop
    This checks that the instance is in the cluster.
5150 a8083063 Iustin Pop

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

5211 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5212 e4376078 Iustin Pop

5213 e4376078 Iustin Pop
      1. for each disk to be replaced:
5214 e4376078 Iustin Pop

5215 e4376078 Iustin Pop
        1. create new LVs on the target node with unique names
5216 e4376078 Iustin Pop
        1. detach old LVs from the drbd device
5217 e4376078 Iustin Pop
        1. rename old LVs to name_replaced.<time_t>
5218 e4376078 Iustin Pop
        1. rename new LVs to old LVs
5219 e4376078 Iustin Pop
        1. attach the new LVs (with the old names now) to the drbd device
5220 e4376078 Iustin Pop

5221 e4376078 Iustin Pop
      1. wait for sync across all devices
5222 e4376078 Iustin Pop

5223 e4376078 Iustin Pop
      1. for each modified disk:
5224 e4376078 Iustin Pop

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

5227 a9e0c397 Iustin Pop
    Failures are not very well handled.
5228 cff90b79 Iustin Pop

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

5399 a9e0c397 Iustin Pop
    The algorithm for replace is quite complicated:
5400 a9e0c397 Iustin Pop
      - for all disks of the instance:
5401 a9e0c397 Iustin Pop
        - create new LVs on the new node with same names
5402 a9e0c397 Iustin Pop
        - shutdown the drbd device on the old secondary
5403 a9e0c397 Iustin Pop
        - disconnect the drbd network on the primary
5404 a9e0c397 Iustin Pop
        - create the drbd device on the new secondary
5405 a9e0c397 Iustin Pop
        - network attach the drbd on the primary, using an artifice:
5406 a9e0c397 Iustin Pop
          the drbd code for Attach() will connect to the network if it
5407 a9e0c397 Iustin Pop
          finds a device which is connected to the good local disks but
5408 a9e0c397 Iustin Pop
          not network enabled
5409 a9e0c397 Iustin Pop
      - wait for sync across all devices
5410 a9e0c397 Iustin Pop
      - remove all disks from the old secondary
5411 a9e0c397 Iustin Pop

5412 a9e0c397 Iustin Pop
    Failures are not very well handled.
5413 0834c866 Iustin Pop

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

5585 a9e0c397 Iustin Pop
    This dispatches the disk replacement to the appropriate handler.
5586 a9e0c397 Iustin Pop

5587 a9e0c397 Iustin Pop
    """
5588 a9e0c397 Iustin Pop
    instance = self.instance
5589 22985314 Guido Trotter
5590 22985314 Guido Trotter
    # Activate the instance disks if we're replacing them on a down instance
5591 0d68c45d Iustin Pop
    if not instance.admin_up:
5592 b9bddb6b Iustin Pop
      _StartInstanceDisks(self, instance, True)
5593 22985314 Guido Trotter
5594 7e9366f7 Iustin Pop
    if self.op.mode == constants.REPLACE_DISK_CHG:
5595 7e9366f7 Iustin Pop
      fn = self._ExecD8Secondary
5596 a9e0c397 Iustin Pop
    else:
5597 7e9366f7 Iustin Pop
      fn = self._ExecD8DiskOnly
5598 22985314 Guido Trotter
5599 22985314 Guido Trotter
    ret = fn(feedback_fn)
5600 22985314 Guido Trotter
5601 22985314 Guido Trotter
    # Deactivate the instance disks if we're replacing them on a down instance
5602 0d68c45d Iustin Pop
    if not instance.admin_up:
5603 b9bddb6b Iustin Pop
      _SafeShutdownInstanceDisks(self, instance)
5604 22985314 Guido Trotter
5605 22985314 Guido Trotter
    return ret
5606 a9e0c397 Iustin Pop
5607 a8083063 Iustin Pop
5608 8729e0d7 Iustin Pop
class LUGrowDisk(LogicalUnit):
5609 8729e0d7 Iustin Pop
  """Grow a disk of an instance.
5610 8729e0d7 Iustin Pop

5611 8729e0d7 Iustin Pop
  """
5612 8729e0d7 Iustin Pop
  HPATH = "disk-grow"
5613 8729e0d7 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5614 6605411d Iustin Pop
  _OP_REQP = ["instance_name", "disk", "amount", "wait_for_sync"]
5615 31e63dbf Guido Trotter
  REQ_BGL = False
5616 31e63dbf Guido Trotter
5617 31e63dbf Guido Trotter
  def ExpandNames(self):
5618 31e63dbf Guido Trotter
    self._ExpandAndLockInstance()
5619 31e63dbf Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5620 f6d9a522 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5621 31e63dbf Guido Trotter
5622 31e63dbf Guido Trotter
  def DeclareLocks(self, level):
5623 31e63dbf Guido Trotter
    if level == locking.LEVEL_NODE:
5624 31e63dbf Guido Trotter
      self._LockInstancesNodes()
5625 8729e0d7 Iustin Pop
5626 8729e0d7 Iustin Pop
  def BuildHooksEnv(self):
5627 8729e0d7 Iustin Pop
    """Build hooks env.
5628 8729e0d7 Iustin Pop

5629 8729e0d7 Iustin Pop
    This runs on the master, the primary and all the secondaries.
5630 8729e0d7 Iustin Pop

5631 8729e0d7 Iustin Pop
    """
5632 8729e0d7 Iustin Pop
    env = {
5633 8729e0d7 Iustin Pop
      "DISK": self.op.disk,
5634 8729e0d7 Iustin Pop
      "AMOUNT": self.op.amount,
5635 8729e0d7 Iustin Pop
      }
5636 338e51e8 Iustin Pop
    env.update(_BuildInstanceHookEnvByObject(self, self.instance))
5637 8729e0d7 Iustin Pop
    nl = [
5638 d6a02168 Michael Hanselmann
      self.cfg.GetMasterNode(),
5639 8729e0d7 Iustin Pop
      self.instance.primary_node,
5640 8729e0d7 Iustin Pop
      ]
5641 8729e0d7 Iustin Pop
    return env, nl, nl
5642 8729e0d7 Iustin Pop
5643 8729e0d7 Iustin Pop
  def CheckPrereq(self):
5644 8729e0d7 Iustin Pop
    """Check prerequisites.
5645 8729e0d7 Iustin Pop

5646 8729e0d7 Iustin Pop
    This checks that the instance is in the cluster.
5647 8729e0d7 Iustin Pop

5648 8729e0d7 Iustin Pop
    """
5649 31e63dbf Guido Trotter
    instance = self.cfg.GetInstanceInfo(self.op.instance_name)
5650 31e63dbf Guido Trotter
    assert instance is not None, \
5651 31e63dbf Guido Trotter
      "Cannot retrieve locked instance %s" % self.op.instance_name
5652 6b12959c Iustin Pop
    nodenames = list(instance.all_nodes)
5653 6b12959c Iustin Pop
    for node in nodenames:
5654 7527a8a4 Iustin Pop
      _CheckNodeOnline(self, node)
5655 7527a8a4 Iustin Pop
5656 31e63dbf Guido Trotter
5657 8729e0d7 Iustin Pop
    self.instance = instance
5658 8729e0d7 Iustin Pop
5659 8729e0d7 Iustin Pop
    if instance.disk_template not in (constants.DT_PLAIN, constants.DT_DRBD8):
5660 8729e0d7 Iustin Pop
      raise errors.OpPrereqError("Instance's disk layout does not support"
5661 8729e0d7 Iustin Pop
                                 " growing.")
5662 8729e0d7 Iustin Pop
5663 ad24e046 Iustin Pop
    self.disk = instance.FindDisk(self.op.disk)
5664 8729e0d7 Iustin Pop
5665 72737a7f Iustin Pop
    nodeinfo = self.rpc.call_node_info(nodenames, self.cfg.GetVGName(),
5666 72737a7f Iustin Pop
                                       instance.hypervisor)
5667 8729e0d7 Iustin Pop
    for node in nodenames:
5668 781de953 Iustin Pop
      info = nodeinfo[node]
5669 4c4e4e1e Iustin Pop
      info.Raise("Cannot get current information from node %s" % node)
5670 070e998b Iustin Pop
      vg_free = info.payload.get('vg_free', None)
5671 8729e0d7 Iustin Pop
      if not isinstance(vg_free, int):
5672 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Can't compute free disk space on"
5673 8729e0d7 Iustin Pop
                                   " node %s" % node)
5674 781de953 Iustin Pop
      if self.op.amount > vg_free:
5675 8729e0d7 Iustin Pop
        raise errors.OpPrereqError("Not enough disk space on target node %s:"
5676 8729e0d7 Iustin Pop
                                   " %d MiB available, %d MiB required" %
5677 781de953 Iustin Pop
                                   (node, vg_free, self.op.amount))
5678 8729e0d7 Iustin Pop
5679 8729e0d7 Iustin Pop
  def Exec(self, feedback_fn):
5680 8729e0d7 Iustin Pop
    """Execute disk grow.
5681 8729e0d7 Iustin Pop

5682 8729e0d7 Iustin Pop
    """
5683 8729e0d7 Iustin Pop
    instance = self.instance
5684 ad24e046 Iustin Pop
    disk = self.disk
5685 6b12959c Iustin Pop
    for node in instance.all_nodes:
5686 8729e0d7 Iustin Pop
      self.cfg.SetDiskID(disk, node)
5687 72737a7f Iustin Pop
      result = self.rpc.call_blockdev_grow(node, disk, self.op.amount)
5688 4c4e4e1e Iustin Pop
      result.Raise("Grow request failed to node %s" % node)
5689 8729e0d7 Iustin Pop
    disk.RecordGrow(self.op.amount)
5690 8729e0d7 Iustin Pop
    self.cfg.Update(instance)
5691 6605411d Iustin Pop
    if self.op.wait_for_sync:
5692 cd4d138f Guido Trotter
      disk_abort = not _WaitForSync(self, instance)
5693 6605411d Iustin Pop
      if disk_abort:
5694 86d9d3bb Iustin Pop
        self.proc.LogWarning("Warning: disk sync-ing has not returned a good"
5695 86d9d3bb Iustin Pop
                             " status.\nPlease check the instance.")
5696 8729e0d7 Iustin Pop
5697 8729e0d7 Iustin Pop
5698 a8083063 Iustin Pop
class LUQueryInstanceData(NoHooksLU):
5699 a8083063 Iustin Pop
  """Query runtime instance data.
5700 a8083063 Iustin Pop

5701 a8083063 Iustin Pop
  """
5702 57821cac Iustin Pop
  _OP_REQP = ["instances", "static"]
5703 a987fa48 Guido Trotter
  REQ_BGL = False
5704 ae5849b5 Michael Hanselmann
5705 a987fa48 Guido Trotter
  def ExpandNames(self):
5706 a987fa48 Guido Trotter
    self.needed_locks = {}
5707 a987fa48 Guido Trotter
    self.share_locks = dict(((i, 1) for i in locking.LEVELS))
5708 a987fa48 Guido Trotter
5709 a987fa48 Guido Trotter
    if not isinstance(self.op.instances, list):
5710 a987fa48 Guido Trotter
      raise errors.OpPrereqError("Invalid argument type 'instances'")
5711 a987fa48 Guido Trotter
5712 a987fa48 Guido Trotter
    if self.op.instances:
5713 a987fa48 Guido Trotter
      self.wanted_names = []
5714 a987fa48 Guido Trotter
      for name in self.op.instances:
5715 a987fa48 Guido Trotter
        full_name = self.cfg.ExpandInstanceName(name)
5716 a987fa48 Guido Trotter
        if full_name is None:
5717 f57c76e4 Iustin Pop
          raise errors.OpPrereqError("Instance '%s' not known" % name)
5718 a987fa48 Guido Trotter
        self.wanted_names.append(full_name)
5719 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = self.wanted_names
5720 a987fa48 Guido Trotter
    else:
5721 a987fa48 Guido Trotter
      self.wanted_names = None
5722 a987fa48 Guido Trotter
      self.needed_locks[locking.LEVEL_INSTANCE] = locking.ALL_SET
5723 a987fa48 Guido Trotter
5724 a987fa48 Guido Trotter
    self.needed_locks[locking.LEVEL_NODE] = []
5725 a987fa48 Guido Trotter
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5726 a987fa48 Guido Trotter
5727 a987fa48 Guido Trotter
  def DeclareLocks(self, level):
5728 a987fa48 Guido Trotter
    if level == locking.LEVEL_NODE:
5729 a987fa48 Guido Trotter
      self._LockInstancesNodes()
5730 a8083063 Iustin Pop
5731 a8083063 Iustin Pop
  def CheckPrereq(self):
5732 a8083063 Iustin Pop
    """Check prerequisites.
5733 a8083063 Iustin Pop

5734 a8083063 Iustin Pop
    This only checks the optional instance list against the existing names.
5735 a8083063 Iustin Pop

5736 a8083063 Iustin Pop
    """
5737 a987fa48 Guido Trotter
    if self.wanted_names is None:
5738 a987fa48 Guido Trotter
      self.wanted_names = self.acquired_locks[locking.LEVEL_INSTANCE]
5739 a8083063 Iustin Pop
5740 a987fa48 Guido Trotter
    self.wanted_instances = [self.cfg.GetInstanceInfo(name) for name
5741 a987fa48 Guido Trotter
                             in self.wanted_names]
5742 a987fa48 Guido Trotter
    return
5743 a8083063 Iustin Pop
5744 a8083063 Iustin Pop
  def _ComputeDiskStatus(self, instance, snode, dev):
5745 a8083063 Iustin Pop
    """Compute block device status.
5746 a8083063 Iustin Pop

5747 a8083063 Iustin Pop
    """
5748 57821cac Iustin Pop
    static = self.op.static
5749 57821cac Iustin Pop
    if not static:
5750 57821cac Iustin Pop
      self.cfg.SetDiskID(dev, instance.primary_node)
5751 57821cac Iustin Pop
      dev_pstatus = self.rpc.call_blockdev_find(instance.primary_node, dev)
5752 9854f5d0 Iustin Pop
      if dev_pstatus.offline:
5753 9854f5d0 Iustin Pop
        dev_pstatus = None
5754 9854f5d0 Iustin Pop
      else:
5755 4c4e4e1e Iustin Pop
        dev_pstatus.Raise("Can't compute disk status for %s" % instance.name)
5756 9854f5d0 Iustin Pop
        dev_pstatus = dev_pstatus.payload
5757 57821cac Iustin Pop
    else:
5758 57821cac Iustin Pop
      dev_pstatus = None
5759 57821cac Iustin Pop
5760 a1f445d3 Iustin Pop
    if dev.dev_type in constants.LDS_DRBD:
5761 a8083063 Iustin Pop
      # we change the snode then (otherwise we use the one passed in)
5762 a8083063 Iustin Pop
      if dev.logical_id[0] == instance.primary_node:
5763 a8083063 Iustin Pop
        snode = dev.logical_id[1]
5764 a8083063 Iustin Pop
      else:
5765 a8083063 Iustin Pop
        snode = dev.logical_id[0]
5766 a8083063 Iustin Pop
5767 57821cac Iustin Pop
    if snode and not static:
5768 a8083063 Iustin Pop
      self.cfg.SetDiskID(dev, snode)
5769 72737a7f Iustin Pop
      dev_sstatus = self.rpc.call_blockdev_find(snode, dev)
5770 9854f5d0 Iustin Pop
      if dev_sstatus.offline:
5771 9854f5d0 Iustin Pop
        dev_sstatus = None
5772 9854f5d0 Iustin Pop
      else:
5773 4c4e4e1e Iustin Pop
        dev_sstatus.Raise("Can't compute disk status for %s" % instance.name)
5774 9854f5d0 Iustin Pop
        dev_sstatus = dev_sstatus.payload
5775 a8083063 Iustin Pop
    else:
5776 a8083063 Iustin Pop
      dev_sstatus = None
5777 a8083063 Iustin Pop
5778 a8083063 Iustin Pop
    if dev.children:
5779 a8083063 Iustin Pop
      dev_children = [self._ComputeDiskStatus(instance, snode, child)
5780 a8083063 Iustin Pop
                      for child in dev.children]
5781 a8083063 Iustin Pop
    else:
5782 a8083063 Iustin Pop
      dev_children = []
5783 a8083063 Iustin Pop
5784 a8083063 Iustin Pop
    data = {
5785 a8083063 Iustin Pop
      "iv_name": dev.iv_name,
5786 a8083063 Iustin Pop
      "dev_type": dev.dev_type,
5787 a8083063 Iustin Pop
      "logical_id": dev.logical_id,
5788 a8083063 Iustin Pop
      "physical_id": dev.physical_id,
5789 a8083063 Iustin Pop
      "pstatus": dev_pstatus,
5790 a8083063 Iustin Pop
      "sstatus": dev_sstatus,
5791 a8083063 Iustin Pop
      "children": dev_children,
5792 b6fdf8b8 Iustin Pop
      "mode": dev.mode,
5793 a8083063 Iustin Pop
      }
5794 a8083063 Iustin Pop
5795 a8083063 Iustin Pop
    return data
5796 a8083063 Iustin Pop
5797 a8083063 Iustin Pop
  def Exec(self, feedback_fn):
5798 a8083063 Iustin Pop
    """Gather and return data"""
5799 a8083063 Iustin Pop
    result = {}
5800 338e51e8 Iustin Pop
5801 338e51e8 Iustin Pop
    cluster = self.cfg.GetClusterInfo()
5802 338e51e8 Iustin Pop
5803 a8083063 Iustin Pop
    for instance in self.wanted_instances:
5804 57821cac Iustin Pop
      if not self.op.static:
5805 57821cac Iustin Pop
        remote_info = self.rpc.call_instance_info(instance.primary_node,
5806 57821cac Iustin Pop
                                                  instance.name,
5807 57821cac Iustin Pop
                                                  instance.hypervisor)
5808 4c4e4e1e Iustin Pop
        remote_info.Raise("Error checking node %s" % instance.primary_node)
5809 7ad1af4a Iustin Pop
        remote_info = remote_info.payload
5810 57821cac Iustin Pop
        if remote_info and "state" in remote_info:
5811 57821cac Iustin Pop
          remote_state = "up"
5812 57821cac Iustin Pop
        else:
5813 57821cac Iustin Pop
          remote_state = "down"
5814 a8083063 Iustin Pop
      else:
5815 57821cac Iustin Pop
        remote_state = None
5816 0d68c45d Iustin Pop
      if instance.admin_up:
5817 a8083063 Iustin Pop
        config_state = "up"
5818 0d68c45d Iustin Pop
      else:
5819 0d68c45d Iustin Pop
        config_state = "down"
5820 a8083063 Iustin Pop
5821 a8083063 Iustin Pop
      disks = [self._ComputeDiskStatus(instance, None, device)
5822 a8083063 Iustin Pop
               for device in instance.disks]
5823 a8083063 Iustin Pop
5824 a8083063 Iustin Pop
      idict = {
5825 a8083063 Iustin Pop
        "name": instance.name,
5826 a8083063 Iustin Pop
        "config_state": config_state,
5827 a8083063 Iustin Pop
        "run_state": remote_state,
5828 a8083063 Iustin Pop
        "pnode": instance.primary_node,
5829 a8083063 Iustin Pop
        "snodes": instance.secondary_nodes,
5830 a8083063 Iustin Pop
        "os": instance.os,
5831 0b13832c Guido Trotter
        # this happens to be the same format used for hooks
5832 0b13832c Guido Trotter
        "nics": _NICListToTuple(self, instance.nics),
5833 a8083063 Iustin Pop
        "disks": disks,
5834 e69d05fd Iustin Pop
        "hypervisor": instance.hypervisor,
5835 24838135 Iustin Pop
        "network_port": instance.network_port,
5836 24838135 Iustin Pop
        "hv_instance": instance.hvparams,
5837 338e51e8 Iustin Pop
        "hv_actual": cluster.FillHV(instance),
5838 338e51e8 Iustin Pop
        "be_instance": instance.beparams,
5839 338e51e8 Iustin Pop
        "be_actual": cluster.FillBE(instance),
5840 a8083063 Iustin Pop
        }
5841 a8083063 Iustin Pop
5842 a8083063 Iustin Pop
      result[instance.name] = idict
5843 a8083063 Iustin Pop
5844 a8083063 Iustin Pop
    return result
5845 a8083063 Iustin Pop
5846 a8083063 Iustin Pop
5847 7767bbf5 Manuel Franceschini
class LUSetInstanceParams(LogicalUnit):
5848 a8083063 Iustin Pop
  """Modifies an instances's parameters.
5849 a8083063 Iustin Pop

5850 a8083063 Iustin Pop
  """
5851 a8083063 Iustin Pop
  HPATH = "instance-modify"
5852 a8083063 Iustin Pop
  HTYPE = constants.HTYPE_INSTANCE
5853 24991749 Iustin Pop
  _OP_REQP = ["instance_name"]
5854 1a5c7281 Guido Trotter
  REQ_BGL = False
5855 1a5c7281 Guido Trotter
5856 24991749 Iustin Pop
  def CheckArguments(self):
5857 24991749 Iustin Pop
    if not hasattr(self.op, 'nics'):
5858 24991749 Iustin Pop
      self.op.nics = []
5859 24991749 Iustin Pop
    if not hasattr(self.op, 'disks'):
5860 24991749 Iustin Pop
      self.op.disks = []
5861 24991749 Iustin Pop
    if not hasattr(self.op, 'beparams'):
5862 24991749 Iustin Pop
      self.op.beparams = {}
5863 24991749 Iustin Pop
    if not hasattr(self.op, 'hvparams'):
5864 24991749 Iustin Pop
      self.op.hvparams = {}
5865 24991749 Iustin Pop
    self.op.force = getattr(self.op, "force", False)
5866 24991749 Iustin Pop
    if not (self.op.nics or self.op.disks or
5867 24991749 Iustin Pop
            self.op.hvparams or self.op.beparams):
5868 24991749 Iustin Pop
      raise errors.OpPrereqError("No changes submitted")
5869 24991749 Iustin Pop
5870 24991749 Iustin Pop
    # Disk validation
5871 24991749 Iustin Pop
    disk_addremove = 0
5872 24991749 Iustin Pop
    for disk_op, disk_dict in self.op.disks:
5873 24991749 Iustin Pop
      if disk_op == constants.DDM_REMOVE:
5874 24991749 Iustin Pop
        disk_addremove += 1
5875 24991749 Iustin Pop
        continue
5876 24991749 Iustin Pop
      elif disk_op == constants.DDM_ADD:
5877 24991749 Iustin Pop
        disk_addremove += 1
5878 24991749 Iustin Pop
      else:
5879 24991749 Iustin Pop
        if not isinstance(disk_op, int):
5880 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk index")
5881 24991749 Iustin Pop
      if disk_op == constants.DDM_ADD:
5882 24991749 Iustin Pop
        mode = disk_dict.setdefault('mode', constants.DISK_RDWR)
5883 6ec66eae Iustin Pop
        if mode not in constants.DISK_ACCESS_SET:
5884 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk access mode '%s'" % mode)
5885 24991749 Iustin Pop
        size = disk_dict.get('size', None)
5886 24991749 Iustin Pop
        if size is None:
5887 24991749 Iustin Pop
          raise errors.OpPrereqError("Required disk parameter size missing")
5888 24991749 Iustin Pop
        try:
5889 24991749 Iustin Pop
          size = int(size)
5890 24991749 Iustin Pop
        except ValueError, err:
5891 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid disk size parameter: %s" %
5892 24991749 Iustin Pop
                                     str(err))
5893 24991749 Iustin Pop
        disk_dict['size'] = size
5894 24991749 Iustin Pop
      else:
5895 24991749 Iustin Pop
        # modification of disk
5896 24991749 Iustin Pop
        if 'size' in disk_dict:
5897 24991749 Iustin Pop
          raise errors.OpPrereqError("Disk size change not possible, use"
5898 24991749 Iustin Pop
                                     " grow-disk")
5899 24991749 Iustin Pop
5900 24991749 Iustin Pop
    if disk_addremove > 1:
5901 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one disk add or remove operation"
5902 24991749 Iustin Pop
                                 " supported at a time")
5903 24991749 Iustin Pop
5904 24991749 Iustin Pop
    # NIC validation
5905 24991749 Iustin Pop
    nic_addremove = 0
5906 24991749 Iustin Pop
    for nic_op, nic_dict in self.op.nics:
5907 24991749 Iustin Pop
      if nic_op == constants.DDM_REMOVE:
5908 24991749 Iustin Pop
        nic_addremove += 1
5909 24991749 Iustin Pop
        continue
5910 24991749 Iustin Pop
      elif nic_op == constants.DDM_ADD:
5911 24991749 Iustin Pop
        nic_addremove += 1
5912 24991749 Iustin Pop
      else:
5913 24991749 Iustin Pop
        if not isinstance(nic_op, int):
5914 24991749 Iustin Pop
          raise errors.OpPrereqError("Invalid nic index")
5915 24991749 Iustin Pop
5916 24991749 Iustin Pop
      # nic_dict should be a dict
5917 24991749 Iustin Pop
      nic_ip = nic_dict.get('ip', None)
5918 24991749 Iustin Pop
      if nic_ip is not None:
5919 5c44da6a Guido Trotter
        if nic_ip.lower() == constants.VALUE_NONE:
5920 24991749 Iustin Pop
          nic_dict['ip'] = None
5921 24991749 Iustin Pop
        else:
5922 24991749 Iustin Pop
          if not utils.IsValidIP(nic_ip):
5923 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid IP address '%s'" % nic_ip)
5924 5c44da6a Guido Trotter
5925 cd098c41 Guido Trotter
      nic_bridge = nic_dict.get('bridge', None)
5926 cd098c41 Guido Trotter
      nic_link = nic_dict.get('link', None)
5927 cd098c41 Guido Trotter
      if nic_bridge and nic_link:
5928 29921401 Iustin Pop
        raise errors.OpPrereqError("Cannot pass 'bridge' and 'link'"
5929 29921401 Iustin Pop
                                   " at the same time")
5930 cd098c41 Guido Trotter
      elif nic_bridge and nic_bridge.lower() == constants.VALUE_NONE:
5931 cd098c41 Guido Trotter
        nic_dict['bridge'] = None
5932 cd098c41 Guido Trotter
      elif nic_link and nic_link.lower() == constants.VALUE_NONE:
5933 cd098c41 Guido Trotter
        nic_dict['link'] = None
5934 cd098c41 Guido Trotter
5935 5c44da6a Guido Trotter
      if nic_op == constants.DDM_ADD:
5936 5c44da6a Guido Trotter
        nic_mac = nic_dict.get('mac', None)
5937 5c44da6a Guido Trotter
        if nic_mac is None:
5938 5c44da6a Guido Trotter
          nic_dict['mac'] = constants.VALUE_AUTO
5939 5c44da6a Guido Trotter
5940 5c44da6a Guido Trotter
      if 'mac' in nic_dict:
5941 5c44da6a Guido Trotter
        nic_mac = nic_dict['mac']
5942 24991749 Iustin Pop
        if nic_mac not in (constants.VALUE_AUTO, constants.VALUE_GENERATE):
5943 24991749 Iustin Pop
          if not utils.IsValidMac(nic_mac):
5944 24991749 Iustin Pop
            raise errors.OpPrereqError("Invalid MAC address %s" % nic_mac)
5945 5c44da6a Guido Trotter
        if nic_op != constants.DDM_ADD and nic_mac == constants.VALUE_AUTO:
5946 5c44da6a Guido Trotter
          raise errors.OpPrereqError("'auto' is not a valid MAC address when"
5947 5c44da6a Guido Trotter
                                     " modifying an existing nic")
5948 5c44da6a Guido Trotter
5949 24991749 Iustin Pop
    if nic_addremove > 1:
5950 24991749 Iustin Pop
      raise errors.OpPrereqError("Only one NIC add or remove operation"
5951 24991749 Iustin Pop
                                 " supported at a time")
5952 24991749 Iustin Pop
5953 1a5c7281 Guido Trotter
  def ExpandNames(self):
5954 1a5c7281 Guido Trotter
    self._ExpandAndLockInstance()
5955 74409b12 Iustin Pop
    self.needed_locks[locking.LEVEL_NODE] = []
5956 74409b12 Iustin Pop
    self.recalculate_locks[locking.LEVEL_NODE] = constants.LOCKS_REPLACE
5957 74409b12 Iustin Pop
5958 74409b12 Iustin Pop
  def DeclareLocks(self, level):
5959 74409b12 Iustin Pop
    if level == locking.LEVEL_NODE:
5960 74409b12 Iustin Pop
      self._LockInstancesNodes()
5961 a8083063 Iustin Pop
5962 a8083063 Iustin Pop
  def BuildHooksEnv(self):
5963 a8083063 Iustin Pop
    """Build hooks env.
5964 a8083063 Iustin Pop

5965 a8083063 Iustin Pop
    This runs on the master, primary and secondaries.
5966 a8083063 Iustin Pop

5967 a8083063 Iustin Pop
    """
5968 396e1b78 Michael Hanselmann
    args = dict()
5969 338e51e8 Iustin Pop
    if constants.BE_MEMORY in self.be_new:
5970 338e51e8 Iustin Pop
      args['memory'] = self.be_new[constants.BE_MEMORY]
5971 338e51e8 Iustin Pop
    if constants.BE_VCPUS in self.be_new:
5972 61be6ba4 Iustin Pop
      args['vcpus'] = self.be_new[constants.BE_VCPUS]
5973 d8dcf3c9 Guido Trotter
    # TODO: export disk changes. Note: _BuildInstanceHookEnv* don't export disk
5974 d8dcf3c9 Guido Trotter
    # information at all.
5975 d8dcf3c9 Guido Trotter
    if self.op.nics:
5976 d8dcf3c9 Guido Trotter
      args['nics'] = []
5977 d8dcf3c9 Guido Trotter
      nic_override = dict(self.op.nics)
5978 62f0dd02 Guido Trotter
      c_nicparams = self.cluster.nicparams[constants.PP_DEFAULT]
5979 d8dcf3c9 Guido Trotter
      for idx, nic in enumerate(self.instance.nics):
5980 d8dcf3c9 Guido Trotter
        if idx in nic_override:
5981 d8dcf3c9 Guido Trotter
          this_nic_override = nic_override[idx]
5982 d8dcf3c9 Guido Trotter
        else:
5983 d8dcf3c9 Guido Trotter
          this_nic_override = {}
5984 d8dcf3c9 Guido Trotter
        if 'ip' in this_nic_override:
5985 d8dcf3c9 Guido Trotter
          ip = this_nic_override['ip']
5986 d8dcf3c9 Guido Trotter
        else:
5987 d8dcf3c9 Guido Trotter
          ip = nic.ip
5988 d8dcf3c9 Guido Trotter
        if 'mac' in this_nic_override:
5989 d8dcf3c9 Guido Trotter
          mac = this_nic_override['mac']
5990 d8dcf3c9 Guido Trotter
        else:
5991 d8dcf3c9 Guido Trotter
          mac = nic.mac
5992 62f0dd02 Guido Trotter
        if idx in self.nic_pnew:
5993 62f0dd02 Guido Trotter
          nicparams = self.nic_pnew[idx]
5994 62f0dd02 Guido Trotter
        else:
5995 62f0dd02 Guido Trotter
          nicparams = objects.FillDict(c_nicparams, nic.nicparams)
5996 62f0dd02 Guido Trotter
        mode = nicparams[constants.NIC_MODE]
5997 62f0dd02 Guido Trotter
        link = nicparams[constants.NIC_LINK]
5998 62f0dd02 Guido Trotter
        args['nics'].append((ip, mac, mode, link))
5999 d8dcf3c9 Guido Trotter
      if constants.DDM_ADD in nic_override:
6000 d8dcf3c9 Guido Trotter
        ip = nic_override[constants.DDM_ADD].get('ip', None)
6001 d8dcf3c9 Guido Trotter
        mac = nic_override[constants.DDM_ADD]['mac']
6002 62f0dd02 Guido Trotter
        nicparams = self.nic_pnew[constants.DDM_ADD]
6003 62f0dd02 Guido Trotter
        mode = nicparams[constants.NIC_MODE]
6004 62f0dd02 Guido Trotter
        link = nicparams[constants.NIC_LINK]
6005 62f0dd02 Guido Trotter
        args['nics'].append((ip, mac, mode, link))
6006 d8dcf3c9 Guido Trotter
      elif constants.DDM_REMOVE in nic_override:
6007 d8dcf3c9 Guido Trotter
        del args['nics'][-1]
6008 d8dcf3c9 Guido Trotter
6009 338e51e8 Iustin Pop
    env = _BuildInstanceHookEnvByObject(self, self.instance, override=args)
6010 6b12959c Iustin Pop
    nl = [self.cfg.GetMasterNode()] + list(self.instance.all_nodes)
6011 a8083063 Iustin Pop
    return env, nl, nl
6012 a8083063 Iustin Pop
6013 0329617a Guido Trotter
  def _GetUpdatedParams(self, old_params, update_dict,
6014 0329617a Guido Trotter
                        default_values, parameter_types):
6015 0329617a Guido Trotter
    """Return the new params dict for the given params.
6016 0329617a Guido Trotter

6017 0329617a Guido Trotter
    @type old_params: dict
6018 0329617a Guido Trotter
    @type old_params: old parameters
6019 0329617a Guido Trotter
    @type update_dict: dict
6020 0329617a Guido Trotter
    @type update_dict: dict containing new parameter values,
6021 0329617a Guido Trotter
                       or constants.VALUE_DEFAULT to reset the
6022 0329617a Guido Trotter
                       parameter to its default value
6023 0329617a Guido Trotter
    @type default_values: dict
6024 0329617a Guido Trotter
    @param default_values: default values for the filled parameters
6025 0329617a Guido Trotter
    @type parameter_types: dict
6026 0329617a Guido Trotter
    @param parameter_types: dict mapping target dict keys to types
6027 0329617a Guido Trotter
                            in constants.ENFORCEABLE_TYPES
6028 0329617a Guido Trotter
    @rtype: (dict, dict)
6029 0329617a Guido Trotter
    @return: (new_parameters, filled_parameters)
6030 0329617a Guido Trotter

6031 0329617a Guido Trotter
    """
6032 0329617a Guido Trotter
    params_copy = copy.deepcopy(old_params)
6033 0329617a Guido Trotter
    for key, val in update_dict.iteritems():
6034 0329617a Guido Trotter
      if val == constants.VALUE_DEFAULT:
6035 0329617a Guido Trotter
        try:
6036 0329617a Guido Trotter
          del params_copy[key]
6037 0329617a Guido Trotter
        except KeyError:
6038 0329617a Guido Trotter
          pass
6039 0329617a Guido Trotter
      else:
6040 0329617a Guido Trotter
        params_copy[key] = val
6041 0329617a Guido Trotter
    utils.ForceDictType(params_copy, parameter_types)
6042 0329617a Guido Trotter
    params_filled = objects.FillDict(default_values, params_copy)
6043 0329617a Guido Trotter
    return (params_copy, params_filled)
6044 0329617a Guido Trotter
6045 a8083063 Iustin Pop
  def CheckPrereq(self):
6046 a8083063 Iustin Pop
    """Check prerequisites.
6047 a8083063 Iustin Pop

6048 a8083063 Iustin Pop
    This only checks the instance list against the existing names.
6049 a8083063 Iustin Pop

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

6640 5c947f38 Iustin Pop
  """
6641 5c947f38 Iustin Pop
  _OP_REQP = ["kind", "name"]
6642 8646adce Guido Trotter
  REQ_BGL = False
6643 5c947f38 Iustin Pop
6644 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6645 5c947f38 Iustin Pop
    """Returns the tag list.
6646 5c947f38 Iustin Pop

6647 5c947f38 Iustin Pop
    """
6648 5d414478 Oleksiy Mishchenko
    return list(self.target.GetTags())
6649 5c947f38 Iustin Pop
6650 5c947f38 Iustin Pop
6651 73415719 Iustin Pop
class LUSearchTags(NoHooksLU):
6652 73415719 Iustin Pop
  """Searches the tags for a given pattern.
6653 73415719 Iustin Pop

6654 73415719 Iustin Pop
  """
6655 73415719 Iustin Pop
  _OP_REQP = ["pattern"]
6656 8646adce Guido Trotter
  REQ_BGL = False
6657 8646adce Guido Trotter
6658 8646adce Guido Trotter
  def ExpandNames(self):
6659 8646adce Guido Trotter
    self.needed_locks = {}
6660 73415719 Iustin Pop
6661 73415719 Iustin Pop
  def CheckPrereq(self):
6662 73415719 Iustin Pop
    """Check prerequisites.
6663 73415719 Iustin Pop

6664 73415719 Iustin Pop
    This checks the pattern passed for validity by compiling it.
6665 73415719 Iustin Pop

6666 73415719 Iustin Pop
    """
6667 73415719 Iustin Pop
    try:
6668 73415719 Iustin Pop
      self.re = re.compile(self.op.pattern)
6669 73415719 Iustin Pop
    except re.error, err:
6670 73415719 Iustin Pop
      raise errors.OpPrereqError("Invalid search pattern '%s': %s" %
6671 73415719 Iustin Pop
                                 (self.op.pattern, err))
6672 73415719 Iustin Pop
6673 73415719 Iustin Pop
  def Exec(self, feedback_fn):
6674 73415719 Iustin Pop
    """Returns the tag list.
6675 73415719 Iustin Pop

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

6694 5c947f38 Iustin Pop
  """
6695 f27302fa Iustin Pop
  _OP_REQP = ["kind", "name", "tags"]
6696 8646adce Guido Trotter
  REQ_BGL = False
6697 5c947f38 Iustin Pop
6698 5c947f38 Iustin Pop
  def CheckPrereq(self):
6699 5c947f38 Iustin Pop
    """Check prerequisites.
6700 5c947f38 Iustin Pop

6701 5c947f38 Iustin Pop
    This checks the type and length of the tag name and value.
6702 5c947f38 Iustin Pop

6703 5c947f38 Iustin Pop
    """
6704 5c947f38 Iustin Pop
    TagsLU.CheckPrereq(self)
6705 f27302fa Iustin Pop
    for tag in self.op.tags:
6706 f27302fa Iustin Pop
      objects.TaggableObject.ValidateTag(tag)
6707 5c947f38 Iustin Pop
6708 5c947f38 Iustin Pop
  def Exec(self, feedback_fn):
6709 5c947f38 Iustin Pop
    """Sets the tag.
6710 5c947f38 Iustin Pop

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

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

6735 5c947f38 Iustin Pop
    This checks that we have the given tag.
6736 5c947f38 Iustin Pop

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

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

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

6770 06009e27 Iustin Pop
  """
6771 06009e27 Iustin Pop
  _OP_REQP = ["duration", "on_master", "on_nodes"]
6772 fbe9022f Guido Trotter
  REQ_BGL = False
6773 06009e27 Iustin Pop
6774 fbe9022f Guido Trotter
  def ExpandNames(self):
6775 fbe9022f Guido Trotter
    """Expand names and set required locks.
6776 06009e27 Iustin Pop

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

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

6791 fbe9022f Guido Trotter
    """
6792 06009e27 Iustin Pop
6793 06009e27 Iustin Pop
  def Exec(self, feedback_fn):
6794 06009e27 Iustin Pop
    """Do the actual sleep.
6795 06009e27 Iustin Pop

6796 06009e27 Iustin Pop
    """
6797 06009e27 Iustin Pop
    if self.op.on_master:
6798 06009e27 Iustin Pop
      if not utils.TestDelay(self.op.duration):
6799 06009e27 Iustin Pop
        raise errors.OpExecError("Error during master delay test")
6800 06009e27 Iustin Pop
    if self.op.on_nodes:
6801 72737a7f Iustin Pop
      result = self.rpc.call_test_delay(self.op.on_nodes, self.op.duration)
6802 06009e27 Iustin Pop
      for node, node_result in result.items():
6803 4c4e4e1e Iustin Pop
        node_result.Raise("Failure during rpc call to node %s" % node)
6804 d61df03e Iustin Pop
6805 d61df03e Iustin Pop
6806 d1c2dd75 Iustin Pop
class IAllocator(object):
6807 d1c2dd75 Iustin Pop
  """IAllocator framework.
6808 d61df03e Iustin Pop

6809 d1c2dd75 Iustin Pop
  An IAllocator instance has three sets of attributes:
6810 d6a02168 Michael Hanselmann
    - cfg that is needed to query the cluster
6811 d1c2dd75 Iustin Pop
    - input data (all members of the _KEYS class attribute are required)
6812 d1c2dd75 Iustin Pop
    - four buffer attributes (in|out_data|text), that represent the
6813 d1c2dd75 Iustin Pop
      input (to the external script) in text and data structure format,
6814 d1c2dd75 Iustin Pop
      and the output from it, again in two formats
6815 d1c2dd75 Iustin Pop
    - the result variables from the script (success, info, nodes) for
6816 d1c2dd75 Iustin Pop
      easy usage
6817 d61df03e Iustin Pop

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

6863 d1c2dd75 Iustin Pop
    This is the data that is independent of the actual operation.
6864 d1c2dd75 Iustin Pop

6865 d1c2dd75 Iustin Pop
    """
6866 72737a7f Iustin Pop
    cfg = self.lu.cfg
6867 e69d05fd Iustin Pop
    cluster_info = cfg.GetClusterInfo()
6868 d1c2dd75 Iustin Pop
    # cluster data
6869 d1c2dd75 Iustin Pop
    data = {
6870 77031881 Iustin Pop
      "version": constants.IALLOCATOR_VERSION,
6871 72737a7f Iustin Pop
      "cluster_name": cfg.GetClusterName(),
6872 e69d05fd Iustin Pop
      "cluster_tags": list(cluster_info.GetTags()),
6873 1325da74 Iustin Pop
      "enabled_hypervisors": list(cluster_info.enabled_hypervisors),
6874 d1c2dd75 Iustin Pop
      # we don't have job IDs
6875 d61df03e Iustin Pop
      }
6876 b57e9819 Guido Trotter
    iinfo = cfg.GetAllInstancesInfo().values()
6877 b57e9819 Guido Trotter
    i_list = [(inst, cluster_info.FillBE(inst)) for inst in iinfo]
6878 6286519f Iustin Pop
6879 d1c2dd75 Iustin Pop
    # node data
6880 d1c2dd75 Iustin Pop
    node_results = {}
6881 d1c2dd75 Iustin Pop
    node_list = cfg.GetNodeList()
6882 8cc7e742 Guido Trotter
6883 8cc7e742 Guido Trotter
    if self.mode == constants.IALLOCATOR_MODE_ALLOC:
6884 a0add446 Iustin Pop
      hypervisor_name = self.hypervisor
6885 8cc7e742 Guido Trotter
    elif self.mode == constants.IALLOCATOR_MODE_RELOC:
6886 a0add446 Iustin Pop
      hypervisor_name = cfg.GetInstanceInfo(self.name).hypervisor
6887 8cc7e742 Guido Trotter
6888 72737a7f Iustin Pop
    node_data = self.lu.rpc.call_node_info(node_list, cfg.GetVGName(),
6889 a0add446 Iustin Pop
                                           hypervisor_name)
6890 18640d69 Guido Trotter
    node_iinfo = self.lu.rpc.call_all_instances_info(node_list,
6891 18640d69 Guido Trotter
                       cluster_info.enabled_hypervisors)
6892 1325da74 Iustin Pop
    for nname, nresult in node_data.items():
6893 1325da74 Iustin Pop
      # first fill in static (config-based) values
6894 d1c2dd75 Iustin Pop
      ninfo = cfg.GetNodeInfo(nname)
6895 d1c2dd75 Iustin Pop
      pnr = {
6896 d1c2dd75 Iustin Pop
        "tags": list(ninfo.GetTags()),
6897 d1c2dd75 Iustin Pop
        "primary_ip": ninfo.primary_ip,
6898 d1c2dd75 Iustin Pop
        "secondary_ip": ninfo.secondary_ip,
6899 fc0fe88c Iustin Pop
        "offline": ninfo.offline,
6900 0b2454b9 Iustin Pop
        "drained": ninfo.drained,
6901 1325da74 Iustin Pop
        "master_candidate": ninfo.master_candidate,
6902 d1c2dd75 Iustin Pop
        }
6903 1325da74 Iustin Pop
6904 1325da74 Iustin Pop
      if not ninfo.offline:
6905 4c4e4e1e Iustin Pop
        nresult.Raise("Can't get data for node %s" % nname)
6906 4c4e4e1e Iustin Pop
        node_iinfo[nname].Raise("Can't get node instance info from node %s" %
6907 4c4e4e1e Iustin Pop
                                nname)
6908 070e998b Iustin Pop
        remote_info = nresult.payload
6909 1325da74 Iustin Pop
        for attr in ['memory_total', 'memory_free', 'memory_dom0',
6910 1325da74 Iustin Pop
                     'vg_size', 'vg_free', 'cpu_total']:
6911 1325da74 Iustin Pop
          if attr not in remote_info:
6912 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' didn't return attribute"
6913 1325da74 Iustin Pop
                                     " '%s'" % (nname, attr))
6914 070e998b Iustin Pop
          if not isinstance(remote_info[attr], int):
6915 1325da74 Iustin Pop
            raise errors.OpExecError("Node '%s' returned invalid value"
6916 070e998b Iustin Pop
                                     " for '%s': %s" %
6917 070e998b Iustin Pop
                                     (nname, attr, remote_info[attr]))
6918 1325da74 Iustin Pop
        # compute memory used by primary instances
6919 1325da74 Iustin Pop
        i_p_mem = i_p_up_mem = 0
6920 1325da74 Iustin Pop
        for iinfo, beinfo in i_list:
6921 1325da74 Iustin Pop
          if iinfo.primary_node == nname:
6922 1325da74 Iustin Pop
            i_p_mem += beinfo[constants.BE_MEMORY]
6923 2fa74ef4 Iustin Pop
            if iinfo.name not in node_iinfo[nname].payload:
6924 1325da74 Iustin Pop
              i_used_mem = 0
6925 1325da74 Iustin Pop
            else:
6926 2fa74ef4 Iustin Pop
              i_used_mem = int(node_iinfo[nname].payload[iinfo.name]['memory'])
6927 1325da74 Iustin Pop
            i_mem_diff = beinfo[constants.BE_MEMORY] - i_used_mem
6928 1325da74 Iustin Pop
            remote_info['memory_free'] -= max(0, i_mem_diff)
6929 1325da74 Iustin Pop
6930 1325da74 Iustin Pop
            if iinfo.admin_up:
6931 1325da74 Iustin Pop
              i_p_up_mem += beinfo[constants.BE_MEMORY]
6932 1325da74 Iustin Pop
6933 1325da74 Iustin Pop
        # compute memory used by instances
6934 1325da74 Iustin Pop
        pnr_dyn = {
6935 1325da74 Iustin Pop
          "total_memory": remote_info['memory_total'],
6936 1325da74 Iustin Pop
          "reserved_memory": remote_info['memory_dom0'],
6937 1325da74 Iustin Pop
          "free_memory": remote_info['memory_free'],
6938 1325da74 Iustin Pop
          "total_disk": remote_info['vg_size'],
6939 1325da74 Iustin Pop
          "free_disk": remote_info['vg_free'],
6940 1325da74 Iustin Pop
          "total_cpus": remote_info['cpu_total'],
6941 1325da74 Iustin Pop
          "i_pri_memory": i_p_mem,
6942 1325da74 Iustin Pop
          "i_pri_up_memory": i_p_up_mem,
6943 1325da74 Iustin Pop
          }
6944 1325da74 Iustin Pop
        pnr.update(pnr_dyn)
6945 1325da74 Iustin Pop
6946 d1c2dd75 Iustin Pop
      node_results[nname] = pnr
6947 d1c2dd75 Iustin Pop
    data["nodes"] = node_results
6948 d1c2dd75 Iustin Pop
6949 d1c2dd75 Iustin Pop
    # instance data
6950 d1c2dd75 Iustin Pop
    instance_data = {}
6951 338e51e8 Iustin Pop
    for iinfo, beinfo in i_list:
6952 a9fe7e8f Guido Trotter
      nic_data = []
6953 a9fe7e8f Guido Trotter
      for nic in iinfo.nics:
6954 a9fe7e8f Guido Trotter
        filled_params = objects.FillDict(
6955 a9fe7e8f Guido Trotter
            cluster_info.nicparams[constants.PP_DEFAULT],
6956 a9fe7e8f Guido Trotter
            nic.nicparams)
6957 a9fe7e8f Guido Trotter
        nic_dict = {"mac": nic.mac,
6958 a9fe7e8f Guido Trotter
                    "ip": nic.ip,
6959 a9fe7e8f Guido Trotter
                    "mode": filled_params[constants.NIC_MODE],
6960 a9fe7e8f Guido Trotter
                    "link": filled_params[constants.NIC_LINK],
6961 a9fe7e8f Guido Trotter
                   }
6962 a9fe7e8f Guido Trotter
        if filled_params[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
6963 a9fe7e8f Guido Trotter
          nic_dict["bridge"] = filled_params[constants.NIC_LINK]
6964 a9fe7e8f Guido Trotter
        nic_data.append(nic_dict)
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 d1c2dd75 Iustin Pop
    data = self.in_text
7072 298fe380 Iustin Pop
7073 72737a7f Iustin Pop
    result = call_fn(self.lu.cfg.GetMasterNode(), name, self.in_text)
7074 4c4e4e1e Iustin Pop
    result.Raise("Failure while running the iallocator script")
7075 8d528b7c Iustin Pop
7076 87f5c298 Iustin Pop
    self.out_text = result.payload
7077 d1c2dd75 Iustin Pop
    if validate:
7078 d1c2dd75 Iustin Pop
      self._ValidateResult()
7079 298fe380 Iustin Pop
7080 d1c2dd75 Iustin Pop
  def _ValidateResult(self):
7081 d1c2dd75 Iustin Pop
    """Process the allocator results.
7082 538475ca Iustin Pop

7083 d1c2dd75 Iustin Pop
    This will process and if successful save the result in
7084 d1c2dd75 Iustin Pop
    self.out_data and the other parameters.
7085 538475ca Iustin Pop

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

7110 d61df03e Iustin Pop
  This LU runs the allocator tests
7111 d61df03e Iustin Pop

7112 d61df03e Iustin Pop
  """
7113 d61df03e Iustin Pop
  _OP_REQP = ["direction", "mode", "name"]
7114 d61df03e Iustin Pop
7115 d61df03e Iustin Pop
  def CheckPrereq(self):
7116 d61df03e Iustin Pop
    """Check prerequisites.
7117 d61df03e Iustin Pop

7118 d61df03e Iustin Pop
    This checks the opcode parameters depending on the director and mode test.
7119 d61df03e Iustin Pop

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

7175 d61df03e Iustin Pop
    """
7176 29859cb7 Iustin Pop
    if self.op.mode == constants.IALLOCATOR_MODE_ALLOC:
7177 72737a7f Iustin Pop
      ial = IAllocator(self,
7178 29859cb7 Iustin Pop
                       mode=self.op.mode,
7179 29859cb7 Iustin Pop
                       name=self.op.name,
7180 29859cb7 Iustin Pop
                       mem_size=self.op.mem_size,
7181 29859cb7 Iustin Pop
                       disks=self.op.disks,
7182 29859cb7 Iustin Pop
                       disk_template=self.op.disk_template,
7183 29859cb7 Iustin Pop
                       os=self.op.os,
7184 29859cb7 Iustin Pop
                       tags=self.op.tags,
7185 29859cb7 Iustin Pop
                       nics=self.op.nics,
7186 29859cb7 Iustin Pop
                       vcpus=self.op.vcpus,
7187 8cc7e742 Guido Trotter
                       hypervisor=self.op.hypervisor,
7188 29859cb7 Iustin Pop
                       )
7189 29859cb7 Iustin Pop
    else:
7190 72737a7f Iustin Pop
      ial = IAllocator(self,
7191 29859cb7 Iustin Pop
                       mode=self.op.mode,
7192 29859cb7 Iustin Pop
                       name=self.op.name,
7193 29859cb7 Iustin Pop
                       relocate_from=list(self.relocate_from),
7194 29859cb7 Iustin Pop
                       )
7195 d61df03e Iustin Pop
7196 298fe380 Iustin Pop
    if self.op.direction == constants.IALLOCATOR_DIR_IN:
7197 d1c2dd75 Iustin Pop
      result = ial.in_text
7198 298fe380 Iustin Pop
    else:
7199 d1c2dd75 Iustin Pop
      ial.Run(self.op.allocator, validate=False)
7200 d1c2dd75 Iustin Pop
      result = ial.out_text
7201 298fe380 Iustin Pop
    return result