Statistics
| Branch: | Tag: | Revision:

root / lib / opcodes.py @ ec44d893

History | View | Annotate | Download (18.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
"""OpCodes module
23 a8083063 Iustin Pop

24 a8083063 Iustin Pop
This module implements the data structures which define the cluster
25 a8083063 Iustin Pop
operations - the so-called opcodes.
26 a8083063 Iustin Pop

27 0e46916d Iustin Pop
Every operation which modifies the cluster state is expressed via
28 0e46916d Iustin Pop
opcodes.
29 a8083063 Iustin Pop

30 a8083063 Iustin Pop
"""
31 a8083063 Iustin Pop
32 a8083063 Iustin Pop
# this are practically structures, so disable the message about too
33 a8083063 Iustin Pop
# few public methods:
34 a8083063 Iustin Pop
# pylint: disable-msg=R0903
35 a8083063 Iustin Pop
36 df458e0b Iustin Pop
37 0e46916d Iustin Pop
class BaseOpCode(object):
38 df458e0b Iustin Pop
  """A simple serializable object.
39 df458e0b Iustin Pop

40 0e46916d Iustin Pop
  This object serves as a parent class for OpCode without any custom
41 0e46916d Iustin Pop
  field handling.
42 0e46916d Iustin Pop

43 df458e0b Iustin Pop
  """
44 a8083063 Iustin Pop
  __slots__ = []
45 a8083063 Iustin Pop
46 a8083063 Iustin Pop
  def __init__(self, **kwargs):
47 a7399f66 Iustin Pop
    """Constructor for BaseOpCode.
48 a7399f66 Iustin Pop

49 a7399f66 Iustin Pop
    The constructor takes only keyword arguments and will set
50 a7399f66 Iustin Pop
    attributes on this object based on the passed arguments. As such,
51 a7399f66 Iustin Pop
    it means that you should not pass arguments which are not in the
52 a7399f66 Iustin Pop
    __slots__ attribute for this class.
53 a7399f66 Iustin Pop

54 a7399f66 Iustin Pop
    """
55 a8083063 Iustin Pop
    for key in kwargs:
56 a8083063 Iustin Pop
      if key not in self.__slots__:
57 df458e0b Iustin Pop
        raise TypeError("Object %s doesn't support the parameter '%s'" %
58 3ecf6786 Iustin Pop
                        (self.__class__.__name__, key))
59 a8083063 Iustin Pop
      setattr(self, key, kwargs[key])
60 a8083063 Iustin Pop
61 df458e0b Iustin Pop
  def __getstate__(self):
62 a7399f66 Iustin Pop
    """Generic serializer.
63 a7399f66 Iustin Pop

64 a7399f66 Iustin Pop
    This method just returns the contents of the instance as a
65 a7399f66 Iustin Pop
    dictionary.
66 a7399f66 Iustin Pop

67 a7399f66 Iustin Pop
    @rtype:  C{dict}
68 a7399f66 Iustin Pop
    @return: the instance attributes and their values
69 a7399f66 Iustin Pop

70 a7399f66 Iustin Pop
    """
71 df458e0b Iustin Pop
    state = {}
72 df458e0b Iustin Pop
    for name in self.__slots__:
73 df458e0b Iustin Pop
      if hasattr(self, name):
74 df458e0b Iustin Pop
        state[name] = getattr(self, name)
75 df458e0b Iustin Pop
    return state
76 df458e0b Iustin Pop
77 df458e0b Iustin Pop
  def __setstate__(self, state):
78 a7399f66 Iustin Pop
    """Generic unserializer.
79 a7399f66 Iustin Pop

80 a7399f66 Iustin Pop
    This method just restores from the serialized state the attributes
81 a7399f66 Iustin Pop
    of the current instance.
82 a7399f66 Iustin Pop

83 a7399f66 Iustin Pop
    @param state: the serialized opcode data
84 a7399f66 Iustin Pop
    @type state:  C{dict}
85 a7399f66 Iustin Pop

86 a7399f66 Iustin Pop
    """
87 df458e0b Iustin Pop
    if not isinstance(state, dict):
88 df458e0b Iustin Pop
      raise ValueError("Invalid data to __setstate__: expected dict, got %s" %
89 df458e0b Iustin Pop
                       type(state))
90 df458e0b Iustin Pop
91 df458e0b Iustin Pop
    for name in self.__slots__:
92 df458e0b Iustin Pop
      if name not in state:
93 df458e0b Iustin Pop
        delattr(self, name)
94 df458e0b Iustin Pop
95 df458e0b Iustin Pop
    for name in state:
96 df458e0b Iustin Pop
      setattr(self, name, state[name])
97 df458e0b Iustin Pop
98 df458e0b Iustin Pop
99 0e46916d Iustin Pop
class OpCode(BaseOpCode):
100 a7399f66 Iustin Pop
  """Abstract OpCode.
101 a7399f66 Iustin Pop

102 a7399f66 Iustin Pop
  This is the root of the actual OpCode hierarchy. All clases derived
103 a7399f66 Iustin Pop
  from this class should override OP_ID.
104 a7399f66 Iustin Pop

105 a7399f66 Iustin Pop
  @cvar OP_ID: The ID of this opcode. This should be unique amongst all
106 20777413 Iustin Pop
               children of this class.
107 20777413 Iustin Pop
  @ivar dry_run: Whether the LU should be run in dry-run mode, i.e. just
108 20777413 Iustin Pop
                 the check steps
109 a7399f66 Iustin Pop

110 a7399f66 Iustin Pop
  """
111 df458e0b Iustin Pop
  OP_ID = "OP_ABSTRACT"
112 154b9580 Balazs Lecz
  __slots__ = ["dry_run"]
113 df458e0b Iustin Pop
114 df458e0b Iustin Pop
  def __getstate__(self):
115 df458e0b Iustin Pop
    """Specialized getstate for opcodes.
116 df458e0b Iustin Pop

117 a7399f66 Iustin Pop
    This method adds to the state dictionary the OP_ID of the class,
118 a7399f66 Iustin Pop
    so that on unload we can identify the correct class for
119 a7399f66 Iustin Pop
    instantiating the opcode.
120 a7399f66 Iustin Pop

121 a7399f66 Iustin Pop
    @rtype:   C{dict}
122 a7399f66 Iustin Pop
    @return:  the state as a dictionary
123 a7399f66 Iustin Pop

124 df458e0b Iustin Pop
    """
125 0e46916d Iustin Pop
    data = BaseOpCode.__getstate__(self)
126 df458e0b Iustin Pop
    data["OP_ID"] = self.OP_ID
127 df458e0b Iustin Pop
    return data
128 df458e0b Iustin Pop
129 df458e0b Iustin Pop
  @classmethod
130 00abdc96 Iustin Pop
  def LoadOpCode(cls, data):
131 df458e0b Iustin Pop
    """Generic load opcode method.
132 df458e0b Iustin Pop

133 a7399f66 Iustin Pop
    The method identifies the correct opcode class from the dict-form
134 a7399f66 Iustin Pop
    by looking for a OP_ID key, if this is not found, or its value is
135 a7399f66 Iustin Pop
    not available in this module as a child of this class, we fail.
136 a7399f66 Iustin Pop

137 a7399f66 Iustin Pop
    @type data:  C{dict}
138 a7399f66 Iustin Pop
    @param data: the serialized opcode
139 a7399f66 Iustin Pop

140 df458e0b Iustin Pop
    """
141 df458e0b Iustin Pop
    if not isinstance(data, dict):
142 df458e0b Iustin Pop
      raise ValueError("Invalid data to LoadOpCode (%s)" % type(data))
143 df458e0b Iustin Pop
    if "OP_ID" not in data:
144 df458e0b Iustin Pop
      raise ValueError("Invalid data to LoadOpcode, missing OP_ID")
145 df458e0b Iustin Pop
    op_id = data["OP_ID"]
146 df458e0b Iustin Pop
    op_class = None
147 363acb1e Iustin Pop
    if op_id in OP_MAPPING:
148 363acb1e Iustin Pop
      op_class = OP_MAPPING[op_id]
149 363acb1e Iustin Pop
    else:
150 df458e0b Iustin Pop
      raise ValueError("Invalid data to LoadOpCode: OP_ID %s unsupported" %
151 df458e0b Iustin Pop
                       op_id)
152 df458e0b Iustin Pop
    op = op_class()
153 df458e0b Iustin Pop
    new_data = data.copy()
154 df458e0b Iustin Pop
    del new_data["OP_ID"]
155 df458e0b Iustin Pop
    op.__setstate__(new_data)
156 df458e0b Iustin Pop
    return op
157 df458e0b Iustin Pop
158 60dd1473 Iustin Pop
  def Summary(self):
159 60dd1473 Iustin Pop
    """Generates a summary description of this opcode.
160 60dd1473 Iustin Pop

161 60dd1473 Iustin Pop
    """
162 60dd1473 Iustin Pop
    # all OP_ID start with OP_, we remove that
163 60dd1473 Iustin Pop
    txt = self.OP_ID[3:]
164 60dd1473 Iustin Pop
    field_name = getattr(self, "OP_DSC_FIELD", None)
165 60dd1473 Iustin Pop
    if field_name:
166 60dd1473 Iustin Pop
      field_value = getattr(self, field_name, None)
167 60dd1473 Iustin Pop
      txt = "%s(%s)" % (txt, field_value)
168 60dd1473 Iustin Pop
    return txt
169 60dd1473 Iustin Pop
170 a8083063 Iustin Pop
171 afee0879 Iustin Pop
# cluster opcodes
172 afee0879 Iustin Pop
173 b5f5fae9 Luca Bigliardi
class OpPostInitCluster(OpCode):
174 b5f5fae9 Luca Bigliardi
  """Post cluster initialization.
175 b5f5fae9 Luca Bigliardi

176 b5f5fae9 Luca Bigliardi
  This opcode does not touch the cluster at all. Its purpose is to run hooks
177 b5f5fae9 Luca Bigliardi
  after the cluster has been initialized.
178 b5f5fae9 Luca Bigliardi

179 b5f5fae9 Luca Bigliardi
  """
180 b5f5fae9 Luca Bigliardi
  OP_ID = "OP_CLUSTER_POST_INIT"
181 154b9580 Balazs Lecz
  __slots__ = []
182 b5f5fae9 Luca Bigliardi
183 b5f5fae9 Luca Bigliardi
184 a8083063 Iustin Pop
class OpDestroyCluster(OpCode):
185 a7399f66 Iustin Pop
  """Destroy the cluster.
186 a7399f66 Iustin Pop

187 a7399f66 Iustin Pop
  This opcode has no other parameters. All the state is irreversibly
188 a7399f66 Iustin Pop
  lost after the execution of this opcode.
189 a7399f66 Iustin Pop

190 a7399f66 Iustin Pop
  """
191 a8083063 Iustin Pop
  OP_ID = "OP_CLUSTER_DESTROY"
192 154b9580 Balazs Lecz
  __slots__ = []
193 a8083063 Iustin Pop
194 a8083063 Iustin Pop
195 a8083063 Iustin Pop
class OpQueryClusterInfo(OpCode):
196 fdc267f4 Iustin Pop
  """Query cluster information."""
197 a8083063 Iustin Pop
  OP_ID = "OP_CLUSTER_QUERY"
198 154b9580 Balazs Lecz
  __slots__ = []
199 a8083063 Iustin Pop
200 a8083063 Iustin Pop
201 a8083063 Iustin Pop
class OpVerifyCluster(OpCode):
202 a7399f66 Iustin Pop
  """Verify the cluster state.
203 a7399f66 Iustin Pop

204 a7399f66 Iustin Pop
  @type skip_checks: C{list}
205 a7399f66 Iustin Pop
  @ivar skip_checks: steps to be skipped from the verify process; this
206 a7399f66 Iustin Pop
                     needs to be a subset of
207 a7399f66 Iustin Pop
                     L{constants.VERIFY_OPTIONAL_CHECKS}; currently
208 a7399f66 Iustin Pop
                     only L{constants.VERIFY_NPLUSONE_MEM} can be passed
209 a7399f66 Iustin Pop

210 a7399f66 Iustin Pop
  """
211 a8083063 Iustin Pop
  OP_ID = "OP_CLUSTER_VERIFY"
212 154b9580 Balazs Lecz
  __slots__ = ["skip_checks", "verbose", "error_codes",
213 154b9580 Balazs Lecz
               "debug_simulate_errors"]
214 a8083063 Iustin Pop
215 a8083063 Iustin Pop
216 150e978f Iustin Pop
class OpVerifyDisks(OpCode):
217 150e978f Iustin Pop
  """Verify the cluster disks.
218 150e978f Iustin Pop

219 150e978f Iustin Pop
  Parameters: none
220 150e978f Iustin Pop

221 5188ab37 Iustin Pop
  Result: a tuple of four elements:
222 150e978f Iustin Pop
    - list of node names with bad data returned (unreachable, etc.)
223 a7399f66 Iustin Pop
    - dict of node names with broken volume groups (values: error msg)
224 150e978f Iustin Pop
    - list of instances with degraded disks (that should be activated)
225 b63ed789 Iustin Pop
    - dict of instances with missing logical volumes (values: (node, vol)
226 b63ed789 Iustin Pop
      pairs with details about the missing volumes)
227 150e978f Iustin Pop

228 b63ed789 Iustin Pop
  In normal operation, all lists should be empty. A non-empty instance
229 b63ed789 Iustin Pop
  list (3rd element of the result) is still ok (errors were fixed) but
230 b63ed789 Iustin Pop
  non-empty node list means some node is down, and probably there are
231 b63ed789 Iustin Pop
  unfixable drbd errors.
232 150e978f Iustin Pop

233 150e978f Iustin Pop
  Note that only instances that are drbd-based are taken into
234 150e978f Iustin Pop
  consideration. This might need to be revisited in the future.
235 150e978f Iustin Pop

236 150e978f Iustin Pop
  """
237 150e978f Iustin Pop
  OP_ID = "OP_CLUSTER_VERIFY_DISKS"
238 154b9580 Balazs Lecz
  __slots__ = []
239 150e978f Iustin Pop
240 150e978f Iustin Pop
241 60975797 Iustin Pop
class OpRepairDiskSizes(OpCode):
242 60975797 Iustin Pop
  """Verify the disk sizes of the instances and fixes configuration
243 60975797 Iustin Pop
  mimatches.
244 60975797 Iustin Pop

245 60975797 Iustin Pop
  Parameters: optional instances list, in case we want to restrict the
246 60975797 Iustin Pop
  checks to only a subset of the instances.
247 60975797 Iustin Pop

248 60975797 Iustin Pop
  Result: a list of tuples, (instance, disk, new-size) for changed
249 60975797 Iustin Pop
  configurations.
250 60975797 Iustin Pop

251 60975797 Iustin Pop
  In normal operation, the list should be empty.
252 60975797 Iustin Pop

253 60975797 Iustin Pop
  @type instances: list
254 60975797 Iustin Pop
  @ivar instances: the list of instances to check, or empty for all instances
255 60975797 Iustin Pop

256 60975797 Iustin Pop
  """
257 60975797 Iustin Pop
  OP_ID = "OP_CLUSTER_REPAIR_DISK_SIZES"
258 60975797 Iustin Pop
  __slots__ = ["instances"]
259 60975797 Iustin Pop
260 60975797 Iustin Pop
261 ae5849b5 Michael Hanselmann
class OpQueryConfigValues(OpCode):
262 ae5849b5 Michael Hanselmann
  """Query cluster configuration values."""
263 ae5849b5 Michael Hanselmann
  OP_ID = "OP_CLUSTER_CONFIG_QUERY"
264 154b9580 Balazs Lecz
  __slots__ = ["output_fields"]
265 a8083063 Iustin Pop
266 a8083063 Iustin Pop
267 07bd8a51 Iustin Pop
class OpRenameCluster(OpCode):
268 a7399f66 Iustin Pop
  """Rename the cluster.
269 a7399f66 Iustin Pop

270 a7399f66 Iustin Pop
  @type name: C{str}
271 a7399f66 Iustin Pop
  @ivar name: The new name of the cluster. The name and/or the master IP
272 a7399f66 Iustin Pop
              address will be changed to match the new name and its IP
273 a7399f66 Iustin Pop
              address.
274 a7399f66 Iustin Pop

275 a7399f66 Iustin Pop
  """
276 07bd8a51 Iustin Pop
  OP_ID = "OP_CLUSTER_RENAME"
277 60dd1473 Iustin Pop
  OP_DSC_FIELD = "name"
278 154b9580 Balazs Lecz
  __slots__ = ["name"]
279 07bd8a51 Iustin Pop
280 07bd8a51 Iustin Pop
281 12515db7 Manuel Franceschini
class OpSetClusterParams(OpCode):
282 a7399f66 Iustin Pop
  """Change the parameters of the cluster.
283 a7399f66 Iustin Pop

284 a7399f66 Iustin Pop
  @type vg_name: C{str} or C{None}
285 a7399f66 Iustin Pop
  @ivar vg_name: The new volume group name or None to disable LVM usage.
286 a7399f66 Iustin Pop

287 a7399f66 Iustin Pop
  """
288 12515db7 Manuel Franceschini
  OP_ID = "OP_CLUSTER_SET_PARAMS"
289 154b9580 Balazs Lecz
  __slots__ = [
290 4b7735f9 Iustin Pop
    "vg_name",
291 4b7735f9 Iustin Pop
    "enabled_hypervisors",
292 4b7735f9 Iustin Pop
    "hvparams",
293 4b7735f9 Iustin Pop
    "beparams",
294 5af3da74 Guido Trotter
    "nicparams",
295 4b7735f9 Iustin Pop
    "candidate_pool_size",
296 4b7735f9 Iustin Pop
    ]
297 12515db7 Manuel Franceschini
298 12515db7 Manuel Franceschini
299 afee0879 Iustin Pop
class OpRedistributeConfig(OpCode):
300 afee0879 Iustin Pop
  """Force a full push of the cluster configuration.
301 afee0879 Iustin Pop

302 afee0879 Iustin Pop
  """
303 afee0879 Iustin Pop
  OP_ID = "OP_CLUSTER_REDIST_CONF"
304 154b9580 Balazs Lecz
  __slots__ = []
305 afee0879 Iustin Pop
306 07bd8a51 Iustin Pop
# node opcodes
307 07bd8a51 Iustin Pop
308 a8083063 Iustin Pop
class OpRemoveNode(OpCode):
309 a7399f66 Iustin Pop
  """Remove a node.
310 a7399f66 Iustin Pop

311 a7399f66 Iustin Pop
  @type node_name: C{str}
312 a7399f66 Iustin Pop
  @ivar node_name: The name of the node to remove. If the node still has
313 a7399f66 Iustin Pop
                   instances on it, the operation will fail.
314 a7399f66 Iustin Pop

315 a7399f66 Iustin Pop
  """
316 a8083063 Iustin Pop
  OP_ID = "OP_NODE_REMOVE"
317 60dd1473 Iustin Pop
  OP_DSC_FIELD = "node_name"
318 154b9580 Balazs Lecz
  __slots__ = ["node_name"]
319 a8083063 Iustin Pop
320 a8083063 Iustin Pop
321 a8083063 Iustin Pop
class OpAddNode(OpCode):
322 a7399f66 Iustin Pop
  """Add a node to the cluster.
323 a7399f66 Iustin Pop

324 a7399f66 Iustin Pop
  @type node_name: C{str}
325 a7399f66 Iustin Pop
  @ivar node_name: The name of the node to add. This can be a short name,
326 a7399f66 Iustin Pop
                   but it will be expanded to the FQDN.
327 a7399f66 Iustin Pop
  @type primary_ip: IP address
328 a7399f66 Iustin Pop
  @ivar primary_ip: The primary IP of the node. This will be ignored when the
329 a7399f66 Iustin Pop
                    opcode is submitted, but will be filled during the node
330 a7399f66 Iustin Pop
                    add (so it will be visible in the job query).
331 a7399f66 Iustin Pop
  @type secondary_ip: IP address
332 a7399f66 Iustin Pop
  @ivar secondary_ip: The secondary IP of the node. This needs to be passed
333 a7399f66 Iustin Pop
                      if the cluster has been initialized in 'dual-network'
334 a7399f66 Iustin Pop
                      mode, otherwise it must not be given.
335 a7399f66 Iustin Pop
  @type readd: C{bool}
336 a7399f66 Iustin Pop
  @ivar readd: Whether to re-add an existing node to the cluster. If
337 a7399f66 Iustin Pop
               this is not passed, then the operation will abort if the node
338 a7399f66 Iustin Pop
               name is already in the cluster; use this parameter to 'repair'
339 a7399f66 Iustin Pop
               a node that had its configuration broken, or was reinstalled
340 a7399f66 Iustin Pop
               without removal from the cluster.
341 a7399f66 Iustin Pop

342 a7399f66 Iustin Pop
  """
343 a8083063 Iustin Pop
  OP_ID = "OP_NODE_ADD"
344 60dd1473 Iustin Pop
  OP_DSC_FIELD = "node_name"
345 154b9580 Balazs Lecz
  __slots__ = ["node_name", "primary_ip", "secondary_ip", "readd"]
346 a8083063 Iustin Pop
347 a8083063 Iustin Pop
348 a8083063 Iustin Pop
class OpQueryNodes(OpCode):
349 a8083063 Iustin Pop
  """Compute the list of nodes."""
350 a8083063 Iustin Pop
  OP_ID = "OP_NODE_QUERY"
351 154b9580 Balazs Lecz
  __slots__ = ["output_fields", "names", "use_locking"]
352 a8083063 Iustin Pop
353 a8083063 Iustin Pop
354 dcb93971 Michael Hanselmann
class OpQueryNodeVolumes(OpCode):
355 dcb93971 Michael Hanselmann
  """Get list of volumes on node."""
356 dcb93971 Michael Hanselmann
  OP_ID = "OP_NODE_QUERYVOLS"
357 154b9580 Balazs Lecz
  __slots__ = ["nodes", "output_fields"]
358 dcb93971 Michael Hanselmann
359 dcb93971 Michael Hanselmann
360 9e5442ce Michael Hanselmann
class OpQueryNodeStorage(OpCode):
361 9e5442ce Michael Hanselmann
  """Get information on storage for node(s)."""
362 9e5442ce Michael Hanselmann
  OP_ID = "OP_NODE_QUERY_STORAGE"
363 154b9580 Balazs Lecz
  __slots__ = [
364 9e5442ce Michael Hanselmann
    "nodes",
365 9e5442ce Michael Hanselmann
    "storage_type",
366 9e5442ce Michael Hanselmann
    "name",
367 9e5442ce Michael Hanselmann
    "output_fields",
368 9e5442ce Michael Hanselmann
    ]
369 9e5442ce Michael Hanselmann
370 9e5442ce Michael Hanselmann
371 efb8da02 Michael Hanselmann
class OpModifyNodeStorage(OpCode):
372 099c52ad Iustin Pop
  """Modifies the properies of a storage unit"""
373 efb8da02 Michael Hanselmann
  OP_ID = "OP_NODE_MODIFY_STORAGE"
374 154b9580 Balazs Lecz
  __slots__ = [
375 efb8da02 Michael Hanselmann
    "node_name",
376 efb8da02 Michael Hanselmann
    "storage_type",
377 efb8da02 Michael Hanselmann
    "name",
378 efb8da02 Michael Hanselmann
    "changes",
379 efb8da02 Michael Hanselmann
    ]
380 efb8da02 Michael Hanselmann
381 efb8da02 Michael Hanselmann
382 76aef8fc Michael Hanselmann
class OpRepairNodeStorage(OpCode):
383 76aef8fc Michael Hanselmann
  """Repairs the volume group on a node."""
384 76aef8fc Michael Hanselmann
  OP_ID = "OP_REPAIR_NODE_STORAGE"
385 76aef8fc Michael Hanselmann
  OP_DSC_FIELD = "node_name"
386 154b9580 Balazs Lecz
  __slots__ = [
387 76aef8fc Michael Hanselmann
    "node_name",
388 76aef8fc Michael Hanselmann
    "storage_type",
389 76aef8fc Michael Hanselmann
    "name",
390 7e9c6a78 Iustin Pop
    "ignore_consistency",
391 76aef8fc Michael Hanselmann
    ]
392 76aef8fc Michael Hanselmann
393 76aef8fc Michael Hanselmann
394 b31c8676 Iustin Pop
class OpSetNodeParams(OpCode):
395 b31c8676 Iustin Pop
  """Change the parameters of a node."""
396 b31c8676 Iustin Pop
  OP_ID = "OP_NODE_SET_PARAMS"
397 b31c8676 Iustin Pop
  OP_DSC_FIELD = "node_name"
398 154b9580 Balazs Lecz
  __slots__ = [
399 b31c8676 Iustin Pop
    "node_name",
400 b31c8676 Iustin Pop
    "force",
401 b31c8676 Iustin Pop
    "master_candidate",
402 3a5ba66a Iustin Pop
    "offline",
403 c9d443ea Iustin Pop
    "drained",
404 b31c8676 Iustin Pop
    ]
405 b31c8676 Iustin Pop
406 f5118ade Iustin Pop
407 f5118ade Iustin Pop
class OpPowercycleNode(OpCode):
408 f5118ade Iustin Pop
  """Tries to powercycle a node."""
409 f5118ade Iustin Pop
  OP_ID = "OP_NODE_POWERCYCLE"
410 f5118ade Iustin Pop
  OP_DSC_FIELD = "node_name"
411 154b9580 Balazs Lecz
  __slots__ = [
412 f5118ade Iustin Pop
    "node_name",
413 f5118ade Iustin Pop
    "force",
414 f5118ade Iustin Pop
    ]
415 f5118ade Iustin Pop
416 7ffc5a86 Michael Hanselmann
417 7ffc5a86 Michael Hanselmann
class OpEvacuateNode(OpCode):
418 7ffc5a86 Michael Hanselmann
  """Relocate secondary instances from a node."""
419 7ffc5a86 Michael Hanselmann
  OP_ID = "OP_NODE_EVACUATE"
420 7ffc5a86 Michael Hanselmann
  OP_DSC_FIELD = "node_name"
421 154b9580 Balazs Lecz
  __slots__ = [
422 7ffc5a86 Michael Hanselmann
    "node_name", "remote_node", "iallocator",
423 7ffc5a86 Michael Hanselmann
    ]
424 7ffc5a86 Michael Hanselmann
425 7ffc5a86 Michael Hanselmann
426 80cb875c Michael Hanselmann
class OpMigrateNode(OpCode):
427 80cb875c Michael Hanselmann
  """Migrate all instances from a node."""
428 80cb875c Michael Hanselmann
  OP_ID = "OP_NODE_MIGRATE"
429 80cb875c Michael Hanselmann
  OP_DSC_FIELD = "node_name"
430 154b9580 Balazs Lecz
  __slots__ = [
431 80cb875c Michael Hanselmann
    "node_name",
432 80cb875c Michael Hanselmann
    "live",
433 80cb875c Michael Hanselmann
    ]
434 80cb875c Michael Hanselmann
435 80cb875c Michael Hanselmann
436 a8083063 Iustin Pop
# instance opcodes
437 a8083063 Iustin Pop
438 a8083063 Iustin Pop
class OpCreateInstance(OpCode):
439 fdc267f4 Iustin Pop
  """Create an instance."""
440 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_CREATE"
441 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
442 154b9580 Balazs Lecz
  __slots__ = [
443 47804ec9 Guido Trotter
    "instance_name", "os_type", "force_variant",
444 47804ec9 Guido Trotter
    "pnode", "disk_template", "snode", "mode",
445 08db7c5c Iustin Pop
    "disks", "nics",
446 08db7c5c Iustin Pop
    "src_node", "src_path", "start",
447 5f23e043 Iustin Pop
    "wait_for_sync", "ip_check", "name_check",
448 dc936b49 Manuel Franceschini
    "file_storage_dir", "file_driver",
449 6785674e Iustin Pop
    "iallocator",
450 6785674e Iustin Pop
    "hypervisor", "hvparams", "beparams",
451 4f05fd3b Iustin Pop
    "dry_run",
452 3b6d8c9b Iustin Pop
    ]
453 a8083063 Iustin Pop
454 a8083063 Iustin Pop
455 fe7b0351 Michael Hanselmann
class OpReinstallInstance(OpCode):
456 fdc267f4 Iustin Pop
  """Reinstall an instance's OS."""
457 fe7b0351 Michael Hanselmann
  OP_ID = "OP_INSTANCE_REINSTALL"
458 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
459 154b9580 Balazs Lecz
  __slots__ = ["instance_name", "os_type", "force_variant"]
460 fe7b0351 Michael Hanselmann
461 fe7b0351 Michael Hanselmann
462 a8083063 Iustin Pop
class OpRemoveInstance(OpCode):
463 a8083063 Iustin Pop
  """Remove an instance."""
464 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_REMOVE"
465 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
466 154b9580 Balazs Lecz
  __slots__ = [
467 fc1baca9 Michael Hanselmann
    "instance_name",
468 fc1baca9 Michael Hanselmann
    "ignore_failures",
469 fc1baca9 Michael Hanselmann
    "shutdown_timeout",
470 fc1baca9 Michael Hanselmann
    ]
471 a8083063 Iustin Pop
472 a8083063 Iustin Pop
473 decd5f45 Iustin Pop
class OpRenameInstance(OpCode):
474 decd5f45 Iustin Pop
  """Rename an instance."""
475 decd5f45 Iustin Pop
  OP_ID = "OP_INSTANCE_RENAME"
476 154b9580 Balazs Lecz
  __slots__ = [
477 4f05fd3b Iustin Pop
    "instance_name", "ignore_ip", "new_name",
478 4f05fd3b Iustin Pop
    ]
479 decd5f45 Iustin Pop
480 decd5f45 Iustin Pop
481 a8083063 Iustin Pop
class OpStartupInstance(OpCode):
482 fdc267f4 Iustin Pop
  """Startup an instance."""
483 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_STARTUP"
484 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
485 154b9580 Balazs Lecz
  __slots__ = [
486 4f05fd3b Iustin Pop
    "instance_name", "force", "hvparams", "beparams",
487 4f05fd3b Iustin Pop
    ]
488 a8083063 Iustin Pop
489 a8083063 Iustin Pop
490 a8083063 Iustin Pop
class OpShutdownInstance(OpCode):
491 fdc267f4 Iustin Pop
  """Shutdown an instance."""
492 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_SHUTDOWN"
493 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
494 154b9580 Balazs Lecz
  __slots__ = ["instance_name", "timeout"]
495 a8083063 Iustin Pop
496 a8083063 Iustin Pop
497 bf6929a2 Alexander Schreiber
class OpRebootInstance(OpCode):
498 bf6929a2 Alexander Schreiber
  """Reboot an instance."""
499 eeb3a5f9 Iustin Pop
  OP_ID = "OP_INSTANCE_REBOOT"
500 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
501 154b9580 Balazs Lecz
  __slots__ = [
502 17c3f802 Guido Trotter
    "instance_name", "reboot_type", "ignore_secondaries", "shutdown_timeout",
503 4f05fd3b Iustin Pop
    ]
504 bf6929a2 Alexander Schreiber
505 bf6929a2 Alexander Schreiber
506 a8083063 Iustin Pop
class OpReplaceDisks(OpCode):
507 fdc267f4 Iustin Pop
  """Replace the disks of an instance."""
508 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_REPLACE_DISKS"
509 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
510 154b9580 Balazs Lecz
  __slots__ = [
511 4f05fd3b Iustin Pop
    "instance_name", "remote_node", "mode", "disks", "iallocator",
512 4f05fd3b Iustin Pop
    ]
513 a8083063 Iustin Pop
514 a8083063 Iustin Pop
515 a8083063 Iustin Pop
class OpFailoverInstance(OpCode):
516 a8083063 Iustin Pop
  """Failover an instance."""
517 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_FAILOVER"
518 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
519 154b9580 Balazs Lecz
  __slots__ = [
520 17c3f802 Guido Trotter
    "instance_name", "ignore_consistency", "shutdown_timeout",
521 17c3f802 Guido Trotter
    ]
522 a8083063 Iustin Pop
523 a8083063 Iustin Pop
524 53c776b5 Iustin Pop
class OpMigrateInstance(OpCode):
525 53c776b5 Iustin Pop
  """Migrate an instance.
526 53c776b5 Iustin Pop

527 53c776b5 Iustin Pop
  This migrates (without shutting down an instance) to its secondary
528 53c776b5 Iustin Pop
  node.
529 53c776b5 Iustin Pop

530 2f907a8c Iustin Pop
  @ivar instance_name: the name of the instance
531 53c776b5 Iustin Pop

532 53c776b5 Iustin Pop
  """
533 53c776b5 Iustin Pop
  OP_ID = "OP_INSTANCE_MIGRATE"
534 ee69c97f Iustin Pop
  OP_DSC_FIELD = "instance_name"
535 154b9580 Balazs Lecz
  __slots__ = ["instance_name", "live", "cleanup"]
536 53c776b5 Iustin Pop
537 53c776b5 Iustin Pop
538 313bcead Iustin Pop
class OpMoveInstance(OpCode):
539 313bcead Iustin Pop
  """Move an instance.
540 313bcead Iustin Pop

541 313bcead Iustin Pop
  This move (with shutting down an instance and data copying) to an
542 313bcead Iustin Pop
  arbitrary node.
543 313bcead Iustin Pop

544 313bcead Iustin Pop
  @ivar instance_name: the name of the instance
545 313bcead Iustin Pop
  @ivar target_node: the destination node
546 313bcead Iustin Pop

547 313bcead Iustin Pop
  """
548 313bcead Iustin Pop
  OP_ID = "OP_INSTANCE_MOVE"
549 313bcead Iustin Pop
  OP_DSC_FIELD = "instance_name"
550 154b9580 Balazs Lecz
  __slots__ = [
551 17c3f802 Guido Trotter
    "instance_name", "target_node", "shutdown_timeout",
552 154b9580 Balazs Lecz
    ]
553 313bcead Iustin Pop
554 313bcead Iustin Pop
555 a8083063 Iustin Pop
class OpConnectConsole(OpCode):
556 fdc267f4 Iustin Pop
  """Connect to an instance's console."""
557 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_CONSOLE"
558 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
559 154b9580 Balazs Lecz
  __slots__ = ["instance_name"]
560 a8083063 Iustin Pop
561 a8083063 Iustin Pop
562 a8083063 Iustin Pop
class OpActivateInstanceDisks(OpCode):
563 fdc267f4 Iustin Pop
  """Activate an instance's disks."""
564 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_ACTIVATE_DISKS"
565 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
566 154b9580 Balazs Lecz
  __slots__ = ["instance_name", "ignore_size"]
567 a8083063 Iustin Pop
568 a8083063 Iustin Pop
569 a8083063 Iustin Pop
class OpDeactivateInstanceDisks(OpCode):
570 fdc267f4 Iustin Pop
  """Deactivate an instance's disks."""
571 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_DEACTIVATE_DISKS"
572 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
573 154b9580 Balazs Lecz
  __slots__ = ["instance_name"]
574 a8083063 Iustin Pop
575 a8083063 Iustin Pop
576 bd315bfa Iustin Pop
class OpRecreateInstanceDisks(OpCode):
577 bd315bfa Iustin Pop
  """Deactivate an instance's disks."""
578 bd315bfa Iustin Pop
  OP_ID = "OP_INSTANCE_RECREATE_DISKS"
579 bd315bfa Iustin Pop
  OP_DSC_FIELD = "instance_name"
580 154b9580 Balazs Lecz
  __slots__ = ["instance_name", "disks"]
581 bd315bfa Iustin Pop
582 bd315bfa Iustin Pop
583 a8083063 Iustin Pop
class OpQueryInstances(OpCode):
584 a8083063 Iustin Pop
  """Compute the list of instances."""
585 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_QUERY"
586 154b9580 Balazs Lecz
  __slots__ = ["output_fields", "names", "use_locking"]
587 a8083063 Iustin Pop
588 a8083063 Iustin Pop
589 a8083063 Iustin Pop
class OpQueryInstanceData(OpCode):
590 a8083063 Iustin Pop
  """Compute the run-time status of instances."""
591 a8083063 Iustin Pop
  OP_ID = "OP_INSTANCE_QUERY_DATA"
592 154b9580 Balazs Lecz
  __slots__ = ["instances", "static"]
593 a8083063 Iustin Pop
594 a8083063 Iustin Pop
595 7767bbf5 Manuel Franceschini
class OpSetInstanceParams(OpCode):
596 a8083063 Iustin Pop
  """Change the parameters of an instance."""
597 7767bbf5 Manuel Franceschini
  OP_ID = "OP_INSTANCE_SET_PARAMS"
598 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
599 154b9580 Balazs Lecz
  __slots__ = [
600 24991749 Iustin Pop
    "instance_name",
601 338e51e8 Iustin Pop
    "hvparams", "beparams", "force",
602 24991749 Iustin Pop
    "nics", "disks",
603 973d7867 Iustin Pop
    ]
604 a8083063 Iustin Pop
605 a8083063 Iustin Pop
606 8729e0d7 Iustin Pop
class OpGrowDisk(OpCode):
607 8729e0d7 Iustin Pop
  """Grow a disk of an instance."""
608 8729e0d7 Iustin Pop
  OP_ID = "OP_INSTANCE_GROW_DISK"
609 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
610 154b9580 Balazs Lecz
  __slots__ = [
611 4f05fd3b Iustin Pop
    "instance_name", "disk", "amount", "wait_for_sync",
612 4f05fd3b Iustin Pop
    ]
613 8729e0d7 Iustin Pop
614 8729e0d7 Iustin Pop
615 a8083063 Iustin Pop
# OS opcodes
616 a8083063 Iustin Pop
class OpDiagnoseOS(OpCode):
617 a8083063 Iustin Pop
  """Compute the list of guest operating systems."""
618 a8083063 Iustin Pop
  OP_ID = "OP_OS_DIAGNOSE"
619 154b9580 Balazs Lecz
  __slots__ = ["output_fields", "names"]
620 a8083063 Iustin Pop
621 7c0d6283 Michael Hanselmann
622 a8083063 Iustin Pop
# Exports opcodes
623 a8083063 Iustin Pop
class OpQueryExports(OpCode):
624 a8083063 Iustin Pop
  """Compute the list of exported images."""
625 a8083063 Iustin Pop
  OP_ID = "OP_BACKUP_QUERY"
626 154b9580 Balazs Lecz
  __slots__ = ["nodes", "use_locking"]
627 a8083063 Iustin Pop
628 7c0d6283 Michael Hanselmann
629 a8083063 Iustin Pop
class OpExportInstance(OpCode):
630 a8083063 Iustin Pop
  """Export an instance."""
631 a8083063 Iustin Pop
  OP_ID = "OP_BACKUP_EXPORT"
632 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
633 154b9580 Balazs Lecz
  __slots__ = [
634 17c3f802 Guido Trotter
    "instance_name", "target_node", "shutdown", "shutdown_timeout",
635 17c3f802 Guido Trotter
    ]
636 5c947f38 Iustin Pop
637 0a7bed64 Michael Hanselmann
638 9ac99fda Guido Trotter
class OpRemoveExport(OpCode):
639 9ac99fda Guido Trotter
  """Remove an instance's export."""
640 9ac99fda Guido Trotter
  OP_ID = "OP_BACKUP_REMOVE"
641 60dd1473 Iustin Pop
  OP_DSC_FIELD = "instance_name"
642 154b9580 Balazs Lecz
  __slots__ = ["instance_name"]
643 5c947f38 Iustin Pop
644 0a7bed64 Michael Hanselmann
645 5c947f38 Iustin Pop
# Tags opcodes
646 5c947f38 Iustin Pop
class OpGetTags(OpCode):
647 5c947f38 Iustin Pop
  """Returns the tags of the given object."""
648 5c947f38 Iustin Pop
  OP_ID = "OP_TAGS_GET"
649 60dd1473 Iustin Pop
  OP_DSC_FIELD = "name"
650 154b9580 Balazs Lecz
  __slots__ = ["kind", "name"]
651 5c947f38 Iustin Pop
652 5c947f38 Iustin Pop
653 73415719 Iustin Pop
class OpSearchTags(OpCode):
654 73415719 Iustin Pop
  """Searches the tags in the cluster for a given pattern."""
655 73415719 Iustin Pop
  OP_ID = "OP_TAGS_SEARCH"
656 60dd1473 Iustin Pop
  OP_DSC_FIELD = "pattern"
657 154b9580 Balazs Lecz
  __slots__ = ["pattern"]
658 73415719 Iustin Pop
659 73415719 Iustin Pop
660 f27302fa Iustin Pop
class OpAddTags(OpCode):
661 f27302fa Iustin Pop
  """Add a list of tags on a given object."""
662 5c947f38 Iustin Pop
  OP_ID = "OP_TAGS_SET"
663 154b9580 Balazs Lecz
  __slots__ = ["kind", "name", "tags"]
664 5c947f38 Iustin Pop
665 5c947f38 Iustin Pop
666 f27302fa Iustin Pop
class OpDelTags(OpCode):
667 f27302fa Iustin Pop
  """Remove a list of tags from a given object."""
668 5c947f38 Iustin Pop
  OP_ID = "OP_TAGS_DEL"
669 154b9580 Balazs Lecz
  __slots__ = ["kind", "name", "tags"]
670 06009e27 Iustin Pop
671 06009e27 Iustin Pop
672 06009e27 Iustin Pop
# Test opcodes
673 06009e27 Iustin Pop
class OpTestDelay(OpCode):
674 06009e27 Iustin Pop
  """Sleeps for a configured amount of time.
675 06009e27 Iustin Pop

676 06009e27 Iustin Pop
  This is used just for debugging and testing.
677 06009e27 Iustin Pop

678 06009e27 Iustin Pop
  Parameters:
679 06009e27 Iustin Pop
    - duration: the time to sleep
680 06009e27 Iustin Pop
    - on_master: if true, sleep on the master
681 06009e27 Iustin Pop
    - on_nodes: list of nodes in which to sleep
682 06009e27 Iustin Pop

683 06009e27 Iustin Pop
  If the on_master parameter is true, it will execute a sleep on the
684 06009e27 Iustin Pop
  master (before any node sleep).
685 06009e27 Iustin Pop

686 06009e27 Iustin Pop
  If the on_nodes list is not empty, it will sleep on those nodes
687 06009e27 Iustin Pop
  (after the sleep on the master, if that is enabled).
688 06009e27 Iustin Pop

689 06009e27 Iustin Pop
  As an additional feature, the case of duration < 0 will be reported
690 06009e27 Iustin Pop
  as an execution error, so this opcode can be used as a failure
691 06009e27 Iustin Pop
  generator. The case of duration == 0 will not be treated specially.
692 06009e27 Iustin Pop

693 06009e27 Iustin Pop
  """
694 06009e27 Iustin Pop
  OP_ID = "OP_TEST_DELAY"
695 60dd1473 Iustin Pop
  OP_DSC_FIELD = "duration"
696 154b9580 Balazs Lecz
  __slots__ = ["duration", "on_master", "on_nodes"]
697 d61df03e Iustin Pop
698 d61df03e Iustin Pop
699 d61df03e Iustin Pop
class OpTestAllocator(OpCode):
700 d61df03e Iustin Pop
  """Allocator framework testing.
701 d61df03e Iustin Pop

702 d61df03e Iustin Pop
  This opcode has two modes:
703 d61df03e Iustin Pop
    - gather and return allocator input for a given mode (allocate new
704 d61df03e Iustin Pop
      or replace secondary) and a given instance definition (direction
705 d61df03e Iustin Pop
      'in')
706 d61df03e Iustin Pop
    - run a selected allocator for a given operation (as above) and
707 d61df03e Iustin Pop
      return the allocator output (direction 'out')
708 d61df03e Iustin Pop

709 d61df03e Iustin Pop
  """
710 d61df03e Iustin Pop
  OP_ID = "OP_TEST_ALLOCATOR"
711 60dd1473 Iustin Pop
  OP_DSC_FIELD = "allocator"
712 154b9580 Balazs Lecz
  __slots__ = [
713 d61df03e Iustin Pop
    "direction", "mode", "allocator", "name",
714 d61df03e Iustin Pop
    "mem_size", "disks", "disk_template",
715 8cc7e742 Guido Trotter
    "os", "tags", "nics", "vcpus", "hypervisor",
716 d61df03e Iustin Pop
    ]
717 363acb1e Iustin Pop
718 76aef8fc Michael Hanselmann
719 363acb1e Iustin Pop
OP_MAPPING = dict([(v.OP_ID, v) for v in globals().values()
720 363acb1e Iustin Pop
                   if (isinstance(v, type) and issubclass(v, OpCode) and
721 363acb1e Iustin Pop
                       hasattr(v, "OP_ID"))])