Statistics
| Branch: | Tag: | Revision:

root / lib / mcpu.py @ abc1f2ce

History | View | Annotate | Download (12.4 kB)

1 2f31098c Iustin Pop
#
2 a8083063 Iustin Pop
#
3 a8083063 Iustin Pop
4 a8083063 Iustin Pop
# Copyright (C) 2006, 2007 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 a8083063 Iustin Pop
"""Module implementing the logic behind the cluster operations
23 a8083063 Iustin Pop

24 a8083063 Iustin Pop
This module implements the logic for doing operations in the cluster. There
25 a8083063 Iustin Pop
are two kinds of classes defined:
26 a8083063 Iustin Pop
  - logical units, which know how to deal with their specific opcode only
27 a8083063 Iustin Pop
  - the processor, which dispatches the opcodes to their logical units
28 a8083063 Iustin Pop

29 a8083063 Iustin Pop
"""
30 a8083063 Iustin Pop
31 a8083063 Iustin Pop
32 a8083063 Iustin Pop
from ganeti import opcodes
33 a8083063 Iustin Pop
from ganeti import constants
34 a8083063 Iustin Pop
from ganeti import errors
35 a8083063 Iustin Pop
from ganeti import rpc
36 a8083063 Iustin Pop
from ganeti import cmdlib
37 a8083063 Iustin Pop
from ganeti import ssconf
38 0fbbf897 Iustin Pop
from ganeti import logger
39 04864530 Guido Trotter
from ganeti import locking
40 a8083063 Iustin Pop
41 7c0d6283 Michael Hanselmann
42 a8083063 Iustin Pop
class Processor(object):
43 a8083063 Iustin Pop
  """Object which runs OpCodes"""
44 a8083063 Iustin Pop
  DISPATCH_TABLE = {
45 a8083063 Iustin Pop
    # Cluster
46 a8083063 Iustin Pop
    opcodes.OpDestroyCluster: cmdlib.LUDestroyCluster,
47 a8083063 Iustin Pop
    opcodes.OpQueryClusterInfo: cmdlib.LUQueryClusterInfo,
48 a8083063 Iustin Pop
    opcodes.OpVerifyCluster: cmdlib.LUVerifyCluster,
49 a8083063 Iustin Pop
    opcodes.OpDumpClusterConfig: cmdlib.LUDumpClusterConfig,
50 07bd8a51 Iustin Pop
    opcodes.OpRenameCluster: cmdlib.LURenameCluster,
51 f4d4e184 Iustin Pop
    opcodes.OpVerifyDisks: cmdlib.LUVerifyDisks,
52 0cc05d44 Manuel Franceschini
    opcodes.OpSetClusterParams: cmdlib.LUSetClusterParams,
53 a8083063 Iustin Pop
    # node lu
54 a8083063 Iustin Pop
    opcodes.OpAddNode: cmdlib.LUAddNode,
55 a8083063 Iustin Pop
    opcodes.OpQueryNodes: cmdlib.LUQueryNodes,
56 dcb93971 Michael Hanselmann
    opcodes.OpQueryNodeVolumes: cmdlib.LUQueryNodeVolumes,
57 a8083063 Iustin Pop
    opcodes.OpRemoveNode: cmdlib.LURemoveNode,
58 a8083063 Iustin Pop
    # instance lu
59 a8083063 Iustin Pop
    opcodes.OpCreateInstance: cmdlib.LUCreateInstance,
60 fe7b0351 Michael Hanselmann
    opcodes.OpReinstallInstance: cmdlib.LUReinstallInstance,
61 a8083063 Iustin Pop
    opcodes.OpRemoveInstance: cmdlib.LURemoveInstance,
62 decd5f45 Iustin Pop
    opcodes.OpRenameInstance: cmdlib.LURenameInstance,
63 a8083063 Iustin Pop
    opcodes.OpActivateInstanceDisks: cmdlib.LUActivateInstanceDisks,
64 a8083063 Iustin Pop
    opcodes.OpShutdownInstance: cmdlib.LUShutdownInstance,
65 a8083063 Iustin Pop
    opcodes.OpStartupInstance: cmdlib.LUStartupInstance,
66 bf6929a2 Alexander Schreiber
    opcodes.OpRebootInstance: cmdlib.LURebootInstance,
67 a8083063 Iustin Pop
    opcodes.OpDeactivateInstanceDisks: cmdlib.LUDeactivateInstanceDisks,
68 a8083063 Iustin Pop
    opcodes.OpReplaceDisks: cmdlib.LUReplaceDisks,
69 a8083063 Iustin Pop
    opcodes.OpFailoverInstance: cmdlib.LUFailoverInstance,
70 a8083063 Iustin Pop
    opcodes.OpConnectConsole: cmdlib.LUConnectConsole,
71 a8083063 Iustin Pop
    opcodes.OpQueryInstances: cmdlib.LUQueryInstances,
72 a8083063 Iustin Pop
    opcodes.OpQueryInstanceData: cmdlib.LUQueryInstanceData,
73 7767bbf5 Manuel Franceschini
    opcodes.OpSetInstanceParams: cmdlib.LUSetInstanceParams,
74 8729e0d7 Iustin Pop
    opcodes.OpGrowDisk: cmdlib.LUGrowDisk,
75 a8083063 Iustin Pop
    # os lu
76 a8083063 Iustin Pop
    opcodes.OpDiagnoseOS: cmdlib.LUDiagnoseOS,
77 a8083063 Iustin Pop
    # exports lu
78 a8083063 Iustin Pop
    opcodes.OpQueryExports: cmdlib.LUQueryExports,
79 a8083063 Iustin Pop
    opcodes.OpExportInstance: cmdlib.LUExportInstance,
80 9ac99fda Guido Trotter
    opcodes.OpRemoveExport: cmdlib.LURemoveExport,
81 5c947f38 Iustin Pop
    # tags lu
82 5c947f38 Iustin Pop
    opcodes.OpGetTags: cmdlib.LUGetTags,
83 73415719 Iustin Pop
    opcodes.OpSearchTags: cmdlib.LUSearchTags,
84 f27302fa Iustin Pop
    opcodes.OpAddTags: cmdlib.LUAddTags,
85 f27302fa Iustin Pop
    opcodes.OpDelTags: cmdlib.LUDelTags,
86 06009e27 Iustin Pop
    # test lu
87 06009e27 Iustin Pop
    opcodes.OpTestDelay: cmdlib.LUTestDelay,
88 d61df03e Iustin Pop
    opcodes.OpTestAllocator: cmdlib.LUTestAllocator,
89 a8083063 Iustin Pop
    }
90 a8083063 Iustin Pop
91 f1048938 Iustin Pop
  def __init__(self, context):
92 a8083063 Iustin Pop
    """Constructor for Processor
93 a8083063 Iustin Pop

94 1a8c0ce1 Iustin Pop
    Args:
95 1a8c0ce1 Iustin Pop
     - feedback_fn: the feedback function (taking one string) to be run when
96 1a8c0ce1 Iustin Pop
                    interesting events are happening
97 a8083063 Iustin Pop
    """
98 1c901d13 Guido Trotter
    self.context = context
99 f1048938 Iustin Pop
    self._feedback_fn = None
100 04864530 Guido Trotter
    self.exclusive_BGL = False
101 a8083063 Iustin Pop
102 36c381d7 Guido Trotter
  def _ExecLU(self, lu):
103 36c381d7 Guido Trotter
    """Logical Unit execution sequence.
104 36c381d7 Guido Trotter

105 36c381d7 Guido Trotter
    """
106 36c381d7 Guido Trotter
    write_count = self.context.cfg.write_count
107 36c381d7 Guido Trotter
    lu.CheckPrereq()
108 36c381d7 Guido Trotter
    hm = HooksMaster(rpc.call_hooks_runner, self, lu)
109 36c381d7 Guido Trotter
    h_results = hm.RunPhase(constants.HOOKS_PHASE_PRE)
110 36c381d7 Guido Trotter
    lu.HooksCallBack(constants.HOOKS_PHASE_PRE, h_results,
111 36c381d7 Guido Trotter
                     self._feedback_fn, None)
112 36c381d7 Guido Trotter
    try:
113 36c381d7 Guido Trotter
      result = lu.Exec(self._feedback_fn)
114 36c381d7 Guido Trotter
      h_results = hm.RunPhase(constants.HOOKS_PHASE_POST)
115 36c381d7 Guido Trotter
      result = lu.HooksCallBack(constants.HOOKS_PHASE_POST, h_results,
116 36c381d7 Guido Trotter
                                self._feedback_fn, result)
117 36c381d7 Guido Trotter
    finally:
118 36c381d7 Guido Trotter
      # FIXME: This needs locks if not lu_class.REQ_BGL
119 36c381d7 Guido Trotter
      if write_count != self.context.cfg.write_count:
120 36c381d7 Guido Trotter
        hm.RunConfigUpdate()
121 36c381d7 Guido Trotter
122 36c381d7 Guido Trotter
    return result
123 36c381d7 Guido Trotter
124 68adfdb2 Guido Trotter
  def _LockAndExecLU(self, lu, level):
125 68adfdb2 Guido Trotter
    """Execute a Logical Unit, with the needed locks.
126 68adfdb2 Guido Trotter

127 68adfdb2 Guido Trotter
    This is a recursive function that starts locking the given level, and
128 68adfdb2 Guido Trotter
    proceeds up, till there are no more locks to acquire. Then it executes the
129 68adfdb2 Guido Trotter
    given LU and its opcodes.
130 68adfdb2 Guido Trotter

131 68adfdb2 Guido Trotter
    """
132 68adfdb2 Guido Trotter
    if level in lu.needed_locks:
133 fb8dcb62 Guido Trotter
      # This gives a chance to LUs to make last-minute changes after acquiring
134 fb8dcb62 Guido Trotter
      # locks at any preceding level.
135 fb8dcb62 Guido Trotter
      lu.DeclareLocks(level)
136 3977a4c1 Guido Trotter
      needed_locks = lu.needed_locks[level]
137 3977a4c1 Guido Trotter
      share = lu.share_locks[level]
138 68adfdb2 Guido Trotter
      # This is always safe to do, as we can't acquire more/less locks than
139 68adfdb2 Guido Trotter
      # what was requested.
140 68adfdb2 Guido Trotter
      lu.needed_locks[level] = self.context.glm.acquire(level,
141 3977a4c1 Guido Trotter
                                                        needed_locks,
142 3977a4c1 Guido Trotter
                                                        shared=share)
143 68adfdb2 Guido Trotter
      try:
144 68adfdb2 Guido Trotter
        result = self._LockAndExecLU(lu, level + 1)
145 68adfdb2 Guido Trotter
      finally:
146 68adfdb2 Guido Trotter
        if lu.needed_locks[level]:
147 68adfdb2 Guido Trotter
          self.context.glm.release(level)
148 68adfdb2 Guido Trotter
    else:
149 68adfdb2 Guido Trotter
      result = self._ExecLU(lu)
150 68adfdb2 Guido Trotter
151 68adfdb2 Guido Trotter
    return result
152 68adfdb2 Guido Trotter
153 f1048938 Iustin Pop
  def ExecOpCode(self, op, feedback_fn):
154 a8083063 Iustin Pop
    """Execute an opcode.
155 a8083063 Iustin Pop

156 a8083063 Iustin Pop
    Args:
157 c99a3cc0 Manuel Franceschini
      op: the opcode to be executed
158 a8083063 Iustin Pop

159 a8083063 Iustin Pop
    """
160 a8083063 Iustin Pop
    if not isinstance(op, opcodes.OpCode):
161 3ecf6786 Iustin Pop
      raise errors.ProgrammerError("Non-opcode instance passed"
162 3ecf6786 Iustin Pop
                                   " to ExecOpcode")
163 a8083063 Iustin Pop
164 f1048938 Iustin Pop
    self._feedback_fn = feedback_fn
165 a8083063 Iustin Pop
    lu_class = self.DISPATCH_TABLE.get(op.__class__, None)
166 a8083063 Iustin Pop
    if lu_class is None:
167 3ecf6786 Iustin Pop
      raise errors.OpCodeUnknown("Unknown opcode")
168 a8083063 Iustin Pop
169 c6868e1d Guido Trotter
    if lu_class.REQ_WSSTORE:
170 c6868e1d Guido Trotter
      sstore = ssconf.WritableSimpleStore()
171 c6868e1d Guido Trotter
    else:
172 c6868e1d Guido Trotter
      sstore = ssconf.SimpleStore()
173 c6868e1d Guido Trotter
174 04864530 Guido Trotter
    # Acquire the Big Ganeti Lock exclusively if this LU requires it, and in a
175 04864530 Guido Trotter
    # shared fashion otherwise (to prevent concurrent run with an exclusive LU.
176 984f7c32 Guido Trotter
    self.context.glm.acquire(locking.LEVEL_CLUSTER, [locking.BGL],
177 04864530 Guido Trotter
                             shared=not lu_class.REQ_BGL)
178 fe482621 Iustin Pop
    try:
179 04864530 Guido Trotter
      self.exclusive_BGL = lu_class.REQ_BGL
180 77b657a3 Guido Trotter
      lu = lu_class(self, op, self.context, sstore)
181 d465bdc8 Guido Trotter
      lu.ExpandNames()
182 68adfdb2 Guido Trotter
      assert lu.needed_locks is not None, "needed_locks not set by LU"
183 04e1bfaf Guido Trotter
      result = self._LockAndExecLU(lu, locking.LEVEL_INSTANCE)
184 04864530 Guido Trotter
    finally:
185 984f7c32 Guido Trotter
      self.context.glm.release(locking.LEVEL_CLUSTER)
186 04864530 Guido Trotter
      self.exclusive_BGL = False
187 6a4aa7c1 Iustin Pop
188 a8083063 Iustin Pop
    return result
189 a8083063 Iustin Pop
190 1a8c0ce1 Iustin Pop
  def ChainOpCode(self, op):
191 a8083063 Iustin Pop
    """Chain and execute an opcode.
192 a8083063 Iustin Pop

193 a8083063 Iustin Pop
    This is used by LUs when they need to execute a child LU.
194 a8083063 Iustin Pop

195 a8083063 Iustin Pop
    Args:
196 a8083063 Iustin Pop
     - opcode: the opcode to be executed
197 a8083063 Iustin Pop

198 a8083063 Iustin Pop
    """
199 a8083063 Iustin Pop
    if not isinstance(op, opcodes.OpCode):
200 3ecf6786 Iustin Pop
      raise errors.ProgrammerError("Non-opcode instance passed"
201 3ecf6786 Iustin Pop
                                   " to ExecOpcode")
202 a8083063 Iustin Pop
203 a8083063 Iustin Pop
    lu_class = self.DISPATCH_TABLE.get(op.__class__, None)
204 a8083063 Iustin Pop
    if lu_class is None:
205 3ecf6786 Iustin Pop
      raise errors.OpCodeUnknown("Unknown opcode")
206 a8083063 Iustin Pop
207 04864530 Guido Trotter
    if lu_class.REQ_BGL and not self.exclusive_BGL:
208 04864530 Guido Trotter
      raise errors.ProgrammerError("LUs which require the BGL cannot"
209 04864530 Guido Trotter
                                   " be chained to granular ones.")
210 04864530 Guido Trotter
211 64381ad7 Guido Trotter
    assert lu_class.REQ_BGL, "ChainOpCode is still BGL-only"
212 64381ad7 Guido Trotter
213 c6868e1d Guido Trotter
    if lu_class.REQ_WSSTORE:
214 c6868e1d Guido Trotter
      sstore = ssconf.WritableSimpleStore()
215 c6868e1d Guido Trotter
    else:
216 c6868e1d Guido Trotter
      sstore = ssconf.SimpleStore()
217 c6868e1d Guido Trotter
218 f97a6b10 Iustin Pop
    #do_hooks = lu_class.HPATH is not None
219 77b657a3 Guido Trotter
    lu = lu_class(self, op, self.context, sstore)
220 a8083063 Iustin Pop
    lu.CheckPrereq()
221 a8083063 Iustin Pop
    #if do_hooks:
222 2395c322 Iustin Pop
    #  hm = HooksMaster(rpc.call_hooks_runner, self, lu)
223 1fce5219 Guido Trotter
    #  h_results = hm.RunPhase(constants.HOOKS_PHASE_PRE)
224 1fce5219 Guido Trotter
    #  lu.HooksCallBack(constants.HOOKS_PHASE_PRE,
225 1fce5219 Guido Trotter
    #                   h_results, self._feedback_fn, None)
226 1a8c0ce1 Iustin Pop
    result = lu.Exec(self._feedback_fn)
227 a8083063 Iustin Pop
    #if do_hooks:
228 1fce5219 Guido Trotter
    #  h_results = hm.RunPhase(constants.HOOKS_PHASE_POST)
229 1fce5219 Guido Trotter
    #  result = lu.HooksCallBack(constants.HOOKS_PHASE_POST,
230 1fce5219 Guido Trotter
    #                   h_results, self._feedback_fn, result)
231 a8083063 Iustin Pop
    return result
232 a8083063 Iustin Pop
233 0fbbf897 Iustin Pop
  def LogStep(self, current, total, message):
234 0fbbf897 Iustin Pop
    """Log a change in LU execution progress.
235 0fbbf897 Iustin Pop

236 0fbbf897 Iustin Pop
    """
237 0fbbf897 Iustin Pop
    logger.Debug("Step %d/%d %s" % (current, total, message))
238 0fbbf897 Iustin Pop
    self._feedback_fn("STEP %d/%d %s" % (current, total, message))
239 0fbbf897 Iustin Pop
240 5bfac263 Iustin Pop
  def LogWarning(self, message, hint=None):
241 0fbbf897 Iustin Pop
    """Log a warning to the logs and the user.
242 0fbbf897 Iustin Pop

243 0fbbf897 Iustin Pop
    """
244 0fbbf897 Iustin Pop
    logger.Error(message)
245 0fbbf897 Iustin Pop
    self._feedback_fn(" - WARNING: %s" % message)
246 5bfac263 Iustin Pop
    if hint:
247 5bfac263 Iustin Pop
      self._feedback_fn("      Hint: %s" % hint)
248 0fbbf897 Iustin Pop
249 0fbbf897 Iustin Pop
  def LogInfo(self, message):
250 0fbbf897 Iustin Pop
    """Log an informational message to the logs and the user.
251 0fbbf897 Iustin Pop

252 0fbbf897 Iustin Pop
    """
253 0fbbf897 Iustin Pop
    logger.Info(message)
254 0fbbf897 Iustin Pop
    self._feedback_fn(" - INFO: %s" % message)
255 0fbbf897 Iustin Pop
256 a8083063 Iustin Pop
257 a8083063 Iustin Pop
class HooksMaster(object):
258 a8083063 Iustin Pop
  """Hooks master.
259 a8083063 Iustin Pop

260 a8083063 Iustin Pop
  This class distributes the run commands to the nodes based on the
261 a8083063 Iustin Pop
  specific LU class.
262 a8083063 Iustin Pop

263 a8083063 Iustin Pop
  In order to remove the direct dependency on the rpc module, the
264 a8083063 Iustin Pop
  constructor needs a function which actually does the remote
265 a8083063 Iustin Pop
  call. This will usually be rpc.call_hooks_runner, but any function
266 a8083063 Iustin Pop
  which behaves the same works.
267 a8083063 Iustin Pop

268 a8083063 Iustin Pop
  """
269 2395c322 Iustin Pop
  def __init__(self, callfn, proc, lu):
270 a8083063 Iustin Pop
    self.callfn = callfn
271 2395c322 Iustin Pop
    self.proc = proc
272 a8083063 Iustin Pop
    self.lu = lu
273 a8083063 Iustin Pop
    self.op = lu.op
274 a8083063 Iustin Pop
    self.env, node_list_pre, node_list_post = self._BuildEnv()
275 a8083063 Iustin Pop
    self.node_list = {constants.HOOKS_PHASE_PRE: node_list_pre,
276 a8083063 Iustin Pop
                      constants.HOOKS_PHASE_POST: node_list_post}
277 a8083063 Iustin Pop
278 a8083063 Iustin Pop
  def _BuildEnv(self):
279 a8083063 Iustin Pop
    """Compute the environment and the target nodes.
280 a8083063 Iustin Pop

281 a8083063 Iustin Pop
    Based on the opcode and the current node list, this builds the
282 a8083063 Iustin Pop
    environment for the hooks and the target node list for the run.
283 a8083063 Iustin Pop

284 a8083063 Iustin Pop
    """
285 a8083063 Iustin Pop
    env = {
286 a8083063 Iustin Pop
      "PATH": "/sbin:/bin:/usr/sbin:/usr/bin",
287 a8083063 Iustin Pop
      "GANETI_HOOKS_VERSION": constants.HOOKS_VERSION,
288 a8083063 Iustin Pop
      "GANETI_OP_CODE": self.op.OP_ID,
289 a8083063 Iustin Pop
      "GANETI_OBJECT_TYPE": self.lu.HTYPE,
290 6a4aa7c1 Iustin Pop
      "GANETI_DATA_DIR": constants.DATA_DIR,
291 a8083063 Iustin Pop
      }
292 a8083063 Iustin Pop
293 9a395a76 Iustin Pop
    if self.lu.HPATH is not None:
294 9a395a76 Iustin Pop
      lu_env, lu_nodes_pre, lu_nodes_post = self.lu.BuildHooksEnv()
295 9a395a76 Iustin Pop
      if lu_env:
296 9a395a76 Iustin Pop
        for key in lu_env:
297 9a395a76 Iustin Pop
          env["GANETI_" + key] = lu_env[key]
298 9a395a76 Iustin Pop
    else:
299 9a395a76 Iustin Pop
      lu_nodes_pre = lu_nodes_post = []
300 a8083063 Iustin Pop
301 4167825b Iustin Pop
    return env, frozenset(lu_nodes_pre), frozenset(lu_nodes_post)
302 4167825b Iustin Pop
303 4167825b Iustin Pop
  def _RunWrapper(self, node_list, hpath, phase):
304 4167825b Iustin Pop
    """Simple wrapper over self.callfn.
305 4167825b Iustin Pop

306 4167825b Iustin Pop
    This method fixes the environment before doing the rpc call.
307 4167825b Iustin Pop

308 4167825b Iustin Pop
    """
309 4167825b Iustin Pop
    env = self.env.copy()
310 4167825b Iustin Pop
    env["GANETI_HOOKS_PHASE"] = phase
311 4167825b Iustin Pop
    env["GANETI_HOOKS_PATH"] = hpath
312 f97a6b10 Iustin Pop
    if self.lu.sstore is not None:
313 f97a6b10 Iustin Pop
      env["GANETI_CLUSTER"] = self.lu.sstore.GetClusterName()
314 f97a6b10 Iustin Pop
      env["GANETI_MASTER"] = self.lu.sstore.GetMasterNode()
315 a8083063 Iustin Pop
316 4167825b Iustin Pop
    env = dict([(str(key), str(val)) for key, val in env.iteritems()])
317 a8083063 Iustin Pop
318 4167825b Iustin Pop
    return self.callfn(node_list, hpath, phase, env)
319 a8083063 Iustin Pop
320 a8083063 Iustin Pop
  def RunPhase(self, phase):
321 a8083063 Iustin Pop
    """Run all the scripts for a phase.
322 a8083063 Iustin Pop

323 a8083063 Iustin Pop
    This is the main function of the HookMaster.
324 a8083063 Iustin Pop

325 b07a6922 Guido Trotter
    Args:
326 b07a6922 Guido Trotter
      phase: the hooks phase to run
327 b07a6922 Guido Trotter

328 b07a6922 Guido Trotter
    Returns:
329 b07a6922 Guido Trotter
      the result of the hooks multi-node rpc call
330 b07a6922 Guido Trotter

331 a8083063 Iustin Pop
    """
332 a8083063 Iustin Pop
    if not self.node_list[phase]:
333 9a395a76 Iustin Pop
      # empty node list, we should not attempt to run this as either
334 9a395a76 Iustin Pop
      # we're in the cluster init phase and the rpc client part can't
335 9a395a76 Iustin Pop
      # even attempt to run, or this LU doesn't do hooks at all
336 a8083063 Iustin Pop
      return
337 4167825b Iustin Pop
    hpath = self.lu.HPATH
338 4167825b Iustin Pop
    results = self._RunWrapper(self.node_list[phase], hpath, phase)
339 a8083063 Iustin Pop
    if phase == constants.HOOKS_PHASE_PRE:
340 a8083063 Iustin Pop
      errs = []
341 a8083063 Iustin Pop
      if not results:
342 3ecf6786 Iustin Pop
        raise errors.HooksFailure("Communication failure")
343 a8083063 Iustin Pop
      for node_name in results:
344 a8083063 Iustin Pop
        res = results[node_name]
345 a8083063 Iustin Pop
        if res is False or not isinstance(res, list):
346 2395c322 Iustin Pop
          self.proc.LogWarning("Communication failure to node %s" % node_name)
347 2395c322 Iustin Pop
          continue
348 a8083063 Iustin Pop
        for script, hkr, output in res:
349 a8083063 Iustin Pop
          if hkr == constants.HKR_FAIL:
350 a8083063 Iustin Pop
            output = output.strip().encode("string_escape")
351 a8083063 Iustin Pop
            errs.append((node_name, script, output))
352 a8083063 Iustin Pop
      if errs:
353 3ecf6786 Iustin Pop
        raise errors.HooksAbort(errs)
354 b07a6922 Guido Trotter
    return results
355 6a4aa7c1 Iustin Pop
356 6a4aa7c1 Iustin Pop
  def RunConfigUpdate(self):
357 6a4aa7c1 Iustin Pop
    """Run the special configuration update hook
358 6a4aa7c1 Iustin Pop

359 6a4aa7c1 Iustin Pop
    This is a special hook that runs only on the master after each
360 6a4aa7c1 Iustin Pop
    top-level LI if the configuration has been updated.
361 6a4aa7c1 Iustin Pop

362 6a4aa7c1 Iustin Pop
    """
363 6a4aa7c1 Iustin Pop
    phase = constants.HOOKS_PHASE_POST
364 6a4aa7c1 Iustin Pop
    hpath = constants.HOOKS_NAME_CFGUPDATE
365 6a4aa7c1 Iustin Pop
    if self.lu.sstore is None:
366 6a4aa7c1 Iustin Pop
      raise errors.ProgrammerError("Null sstore on config update hook")
367 6a4aa7c1 Iustin Pop
    nodes = [self.lu.sstore.GetMasterNode()]
368 6a4aa7c1 Iustin Pop
    results = self._RunWrapper(nodes, hpath, phase)